@import url("../fonts/stylesheet.css");
/*font-family: 'proxima_novablack';  'proxima_novaregular', 'proxima_novabold', 'proxima_novasemibold', 'proxima_novathin', 'proxima_novaextrabold'*/
:root {
    --blue: #0062ce;
    --darkBlue: #0051ab;
    --black: #000000;
    --gray: #5a7184;
    --sky: #009e98;
    --darkSky: #078e89;
    --yellow: #fbcf18;
    --darkYellow: #deb50c;
    --lightRed: #ff513d;
    --secondaryRed: #ff6e6e;
    --darkRed: #ef1919;
}

button:focus,
input:focus {
    outline: 0;
}

body {
    font-size: 14px;
    color: var(--black);
    font-family: "proxima_novaregular";
}

h1,
h2,
h3,
h4 {
    font-family: "proxima_novabold";
}

img {
    max-width: 100%;
}

.wrapper {
    position: relative;
}

.logo img {
    max-width: 100%;
}

.logo {
    width: 178px;
}

/*.container{max-width:1200px}*/
.middle {
    overflow: hidden;
    min-height: 500px;
}

.header {
    padding: 25px 0 25px 0;
    transition: all 0.1s linear;
}

.header .container {
    max-width: 1800px;
}

.headerFix {
    box-shadow: 0 0 5px #0c6d4740;
    padding: 5px 0 5px 0;
    position: fixed;
    background: #fff;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 11;
}

.headerFix + .middle {
    padding-top: 110px;
}

.whiteLogo {
    display: none;
}

.logo img {
    max-width: 100%;
}

.headerRightLinks .email {
    display: inline-block;
    vertical-align: middle;
    color: var(--black);
    font-size: 16px;
    position: relative;
    padding-left: 30px;
    margin-right: 20px;
}

.headerRightLinks .email:before {
    content: "";
    width: 20px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 3px;
    background: url(../images/sprite.webp) no-repeat -19px -228px;
    transition: all 0.2s linear;
    filter: invert(1);
}

.headerRightLinks .email:hover {
    text-decoration: none;
}

.headerRightLinks .email:hover:before {
    left: 3px;
}

.skyBtn {
    border-radius: 0;
    background: #ff513d;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-family: "proxima_novabold";
    padding: 15px 25px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
}

.skyBtn:hover {
    text-decoration: none;
    color: #fff;
}

.redBtn {
    border-radius: 0;
    background: radial-gradient(50% 50% at 50% 50%, #ff2e16 0%, #ff513d 100%);
    border: 0;
    color: #fff;
    font-size: 18px;
    font-family: "proxima_novabold";
    padding: 20px 40px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
}

.redBtn:hover {
    text-decoration: none;
    color: #fff;
}

.skyBtn span {
    position: relative;
}

.skyBtn:before {
    content: "";
    background: #ef4747;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    transition: width 0.2s linear;
}

.skyBtn:hover:before {
    width: 100%;
}

.blueBtn {
    border-radius: 0;
    background: var(--blue);
    border: 0;
    color: #fff;
    font-size: 14px;
    font-family: "proxima_novabold";
    padding: 15px 25px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
}

.blueBtn:hover {
    text-decoration: none;
    color: #fff;
}

.blueBtn span {
    position: relative;
}

.blueBtn:before {
    content: "";
    background: var(--darkBlue);
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    transition: width 0.2s linear;
}

.blueBtn:hover:before {
    width: 100%;
}

.whiteBtn {
    border-radius: 0;
    background: #fff;
    border: 0;
    color: var(--secondaryRed);
    font-size: 14px;
    font-family: "proxima_novabold";
    padding: 15px 25px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
}

.whiteBtn:hover {
    text-decoration: none;
    color: #fff;
}

.whiteBtn span {
    position: relative;
}

.whiteBtn:before {
    content: "";
    background: var(--darkRed);
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    transition: width 0.2s linear;
}

.whiteBtn:hover:before {
    width: 100%;
}

.yellowBtn {
    border-radius: 0;
    background: var(--yellow);
    border: 0;
    color: var(--black);
    font-size: 14px;
    font-family: "proxima_novabold";
    padding: 15px 25px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
}

.yellowBtn:hover {
    text-decoration: none;
    color: var(--black);
}

.yellowBtn span {
    position: relative;
}

.yellowBtn:before {
    content: "";
    background: var(--darkYellow);
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    transition: width 0.2s linear;
}

.yellowBtn:hover:before {
    width: 100%;
}

.yellowBorderBtn {
    border-radius: 0;
    background: 0;
    border: solid 1px var(--yellow);
    color: var(--yellow);
    font-size: 14px;
    font-family: "proxima_novabold";
    padding: 15px 25px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
}

.yellowBorderBtn:hover {
    text-decoration: none;
    color: var(--black);
}

.yellowBorderBtn span {
    position: relative;
}

.yellowBorderBtn:before {
    content: "";
    background: var(--yellow);
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    transition: width 0.2s linear;
}

.yellowBorderBtn:hover:before {
    width: 100%;
}

.arrowTextLink {
    font-size: 14px;
    font-family: "proxima_novabold";
    display: inline-block;
    padding: 0 30px 0 0;
    position: relative;
    color: #fff;
    text-transform: uppercase;
}

.arrowTextLink:before {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    right: 2px;
    top: 2px;
    background: url(../images/sprite.webp) no-repeat -98px -8px;
    transition: all 0.1s linear;
}

.arrowTextLink:hover {
    text-decoration: none;
    color: #fff;
}

.arrowTextLink:hover:before {
    right: 4px;
}

.mainNav {
    position: relative;
    text-align: center;
}

.mobileNavBtn:focus {
    outline: 0;
    box-shadow: none;
}

.mobileNavBtn {
    display: none;
    border: 0;
    cursor: pointer;
    margin-top: 1px;
    float: right;
    width: 22px;
    height: 18px;
    border-radius: 0;
    background: 0;
    position: relative;
    z-index: 101;
    transition: right 0.3s linear;
}

.mobileNavBtn span {
    width: 100%;
    left: 0;
    top: 7px;
    height: 2px;
    background: var(--sky);
    position: absolute;
    transition: all 0.3s linear;
}

.mobileNavBtn span:nth-child(2) {
    top: 0;
}

.mobileNavBtn span:nth-child(3) {
    top: 14px;
}

.openNav {
    overflow: hidden;
}

.openNav .mobileNavBtn span {
    background: var(--sky);
}

.openNav .mobileNavBtn span:nth-child(2) {
    display: none;
}

.openNav .mobileNavBtn span:nth-child(1) {
    transform: rotate(45deg);
}

.openNav .mobileNavBtn span:nth-child(3) {
    transform: rotate(-45deg);
    top: 7px;
}

@media (min-width: 1024px) {
    .navigation > ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .navigation > ul > li {
        display: inline-block;
        vertical-align: middle;
        line-height: 1;
        margin: 0;
        padding: 21px 10px;
    }

    .navigation > ul > li > a {
        color: var(--black);
        display: inline-block;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        font-family: "proxima_novabold";
    }

    .navigation > ul > li > a:hover {
        color: var(--sky);
        text-decoration: none;
    }

    .navigation > ul > .hasChild:hover > a {
        color: var(--sky);
    }

    .overLay {
        display: none;
    }

    .navigation > ul > li > a.whiteBtn {
        border-radius: 8px;
        background: #fff;
        padding: 14px 30px 16px 30px;
        color: var(--blue);
    }

    .navigation > ul > li > a.whiteBtn:hover {
        background: var(--darkBlue);
        color: #fff;
    }

    .hasChild > a:after {
        content: "";
        width: 5px;
        height: 5px;
        display: inline-block;
        vertical-align: 4px;
        margin-left: 7px;
        border-right: solid 1px var(--black);
        border-bottom: solid 1px var(--black);
        transform: rotate(45deg);
    }

    .hasChild:hover > a:after {
        border-right-color: var(--sky);
        border-bottom-color: var(--sky);
    }

    .subMenu {
        box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
        display: block;
        left: -15px;
        top: 90%;
        list-style: none;
        margin: 20px 0 0;
        opacity: 0;
        padding: 5px 0;
        position: absolute;
        visibility: hidden;
        width: 140px;
        z-index: 13;
        text-align: left;
        background: var(--sky);
        border-radius: 5px;
    }

    .subMenu li a {
        color: #fff;
        display: block;
        font-size: 14px;
        padding: 8px 15px;
        transition: all 0.15s linear;
        text-decoration: none;
    }

    li.hasChild:hover .subMenu {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        transition: all 0.5s ease;
    }

    .subMenu li a:hover {
        background-color: var(--darkSky);
        color: #fff;
    }

    .openMegaMenu .mainNav,
    .openMegaMenu .mainNav,
    .openMegaMenu .col {
        position: inherit;
    }

    .openMegaMenu {
        background: #fff;
    }

    .megaMenu {
        background: #fff;
        position: absolute;
        left: 0;
        top: 80px;
        width: 100%;
        text-align: left;
        padding: 50px 0 10px 0;
        display: none;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        z-index: 1;
    }

    .headerFix .megaMenu {
        top: 59px;
    }

    .megaMenu h3 {
        margin: 0 0 20px 0;
        font-size: 30px;
        font-family: "proxima_novabold";
    }

    .megaMenu h3 a {
        color: var(--black);
    }

    .megaMenu .desc {
        margin: 0 0 30px 0;
        font-size: 18px;
        line-height: 1.6;
    }

    .megaMenu .desc a {
        color: var(--black);
    }

    .megaMenu .desc a:hover {
        color: var(--sky);
        text-decoration: none;
    }

    .megaMenu .container {
        max-width: 1300px;
    }

    .blankEle {
        height: 25px;
        margin: 0 !important;
    }

    .transparentHeader .header {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 11;
        background: transparent;
    }

    .transparentHeader .headerFix + .middle {
        padding-top: 0;
    }

    .transparentHeader ul > li > a {
        color: #fff;
    }

    .transparentHeader .hasChild > a:after {
        border-right-color: #fff;
        border-bottom-color: #fff;
    }

    .transparentHeader .email {
        color: #fff;
    }

    .transparentHeader .whiteLogo {
        display: inline-block;
    }

    .transparentHeader .blueLogo {
        display: none;
    }
}

.overLay {
    transition: all 0.3s linear;
}

@media (max-width: 1025px) {
    .logo a {
        vertical-align: middle;
    }

    .logo img {
        max-width: 200px;
    }

    .header {
        padding: 10px 0;
    }

    .mobileNavBtn {
        display: inline-block;
    }

    .navMain {
        text-align: right;
        position: relative;
        margin: 7px 15px 3px 0;
        display: inline-block;
        width: 100%;
    }

    .navigation {
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
        bottom: 0;
        background: #fff;
        z-index: 100;
        max-height: 100%;
        overflow-y: auto;
        right: -105%;
        transition: all 0.2s linear;
        text-transform: uppercase;
        height: 100%;
        display: flex;
    }

    .openNav .navigation {
        right: 0;
    }

    .navigation > ul {
        margin: 70px auto 30px auto;
        padding: 10px 0 10px 0;
        list-style: none;
        max-height: calc(100% - 100px);
        overflow-x: auto;
        text-align: left;
        width: 100%;
    }

    .navigation > ul > li {
        font-size: 18px;
    }

    .navigation > ul > li > a {
        padding: 10px 20px 10px 20px;
        display: block;
        color: var(--black);
    }

    .navigation > ul > li > a:hover {
        text-decoration: none;
    }

    .navigation > ul > li > a.orangeBtn {
        background: transparent;
        color: #fff;
        font-size: 22px;
    }

    .navigation a.orangeBtn .arrow {
        display: none;
    }

    .openNav .overLay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--blue);
        z-index: 11;
    }

    li.hasChild {
        position: relative;
    }

    .subMenu {
        display: none;
        list-style: none;
        padding: 0 5px;
        background: #fff;
    }

    .subMenu li a {
        display: block;
        padding: 7px 16px;
        text-transform: capitalize;
        color: var(--black);
        font-size: 16px;
        text-decoration: none;
        font-family: "proxima_novasemibold";
    }

    li.hasChild > a:after {
        border: 1px solid var(--black);
        border-width: 0 0 2px 2px;
        content: "";
        position: relative;
        width: 8px;
        height: 8px;
        transform: rotate(225deg);
        display: inline-block;
        right: -10px;
        top: -2px;
        transition: all 0.3s linear;
    }

    li.hasChild.openSubMenu > a:after {
        transform: rotate(314deg);
    }

    .openMegaMenu {
        background: #fff;
    }

    .megaMenu {
        background: #fff;
        padding: 10px 0 0 7px;
        display: none;
    }

    .headerFix .megaMenu {
        top: 59px;
    }

    .megaMenu h3 {
        margin: 0 0 7px 0;
        font-size: 16px;
        font-family: "proxima_novabold";
    }

    .megaMenu h3 a {
        color: var(--black);
    }

    .megaMenu .desc {
        margin: 0 0 15px 0;
        font-size: 14px;
        line-height: 1.6;
    }

    .megaMenu .desc a {
        color: var(--black);
    }

    .megaMenu .desc a:hover {
        color: var(--black);
        text-decoration: none;
    }

    .blankEle {
        height: 5px;
        margin: 0 !important;
    }

    .logo a {
        position: relative;
        z-index: 101;
    }
}

.homeTopBanner {
    background: #9000d2 url(../images/gloweffect.svg) no-repeat center/cover;
    overflow: hidden;
    position: relative;
    padding-top: 50px;
}

.homeTopBannerText {
    margin: 0 auto 0 0;
    padding: 125px 0;
}

.homeTopBannerText .h1 {
    font-size: 90px;
    color: #fff;
    margin: 0 0 30px 0;
    font-family: "proxima_novaextrabold";
}

.homeTopBannerText .h1 span {
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff,
        -1px -1px #fff, 1px -1px #fff, -1px 1px #103083;
    color: #ff513d;
}

.homeTopBannerText .desc {
    font-size: 20px;
    color: #fff;
    margin: 0 0 30px 0;
}

.homeTopBannerPartnerLogos {
    padding: 10px 0 80px 0;
}

.homeTopBannerPartnerLogos .heading {
    position: relative;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 30px 10px 0;
    vertical-align: middle;
    padding-left: 50px;
    opacity: 0.7;
}

.homeTopBannerPartnerLogos .heading:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 40px;
    height: 1px;
    background: #fff;
}

.homeTopBannerPartnerLogos .partnerLogo {
    margin: 0 30px 10px 0;
    vertical-align: middle;
    display: inline-block;
    opacity: 0.7;
}

.homeTopBannerPartnerLogos .partnerLogo:hover {
    opacity: 1;
}

.homeTopBannerVideoBlock {
    text-align: center;
}

.homeTopBannerVideoBlock .videoIcon {
    display: inline-block;
    width: 116px;
    height: 116px;
    background: url(../images/video-play-icon.webp) no-repeat 0 0;
    transition: all 0.1s linear;
}

.homeTopBannerVideoBlock .videoIcon:hover {
    opacity: 0.8;
    transform: scale(0.95);
}

.homeTopTechSec {
    position: relative;
}

.homeTopTechSec .boxABg {
    background: var(--black) url(../images/lucenta-solutions-home-1.webp)
        no-repeat center / cover;
    position: relative;
    height: 100%;
    transition: all 0.2s linear;
}

.homeTopTechSec .boxABg:before {
    content: "";
    background: var(--black);
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
}

.homeTopTechSec .text {
    margin: 0 0 0 auto;
    padding: 40px;
    max-width: 520px;
    color: #fff;
    position: relative;
}

.homeTopTechSec h2 {
    font-size: 32px;
    margin: 0 0 20px 0;
}

.homeTopTechSec .desc {
    font-size: 18px;
    margin: 0 0 20px 0;
}

.homeTechBlueBox {
    background: var(--blue);
    color: #fff;
    padding: 20px;
    height: 100%;
    border-left: solid 1px #fff;
    border-bottom: solid 1px #fff;
    position: relative;
    height: 270px;
}

.homeTechBlueBox h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
    font-family: "proxima_novaextrabold";
}

.homeTechBlueBox h3 a {
    color: #fff;
    text-decoration: none;
}

.homeTechBlueBox .desc {
    font-size: 14px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.homeTechBlueBox .desc a {
    color: #fff;
}

.homeTechBlueBox .desc a:hover {
    color: var(--sky);
    text-decoration: none;
}

.homeTechBlueBox .arrowTextLink {
    position: absolute;
    left: 20px;
    bottom: 20px;
    transform: translate(0px, 30px);
    opacity: 0;
    transition: all 0.3s linear;
}

.homeTechBlueBox:hover {
    background: var(--darkBlue);
}

.homeTechBlueBox.lastBox {
    background: var(--sky);
    display: flex;
}

.homeTechBlueBox.lastBox .center {
    flex: 0 0 100%;
    padding-top: 15px;
}

.homeTechBlueBox.lastBox h3 {
    max-width: 270px;
}

.homeTechBlueBox .descB {
    font-size: 14px;
    margin: 0 0 40px 0;
    opacity: 0;
    height: 0;
    transition: all 0.3s linear;
}

.homeTechBlueBox .icon {
    display: inline-block;
    height: 56px;
    width: 58px;
    margin: 12px 0 20px 0;
    transition: all 0.3s linear;
    background: url(../images/web-development.webp) no-repeat 0 0;
}

.homeTechBlueBox:hover .icon {
    opacity: 0;
    height: 0;
    margin-bottom: 0;
}

.homeTechBlueBox:hover .descB {
    height: 90px;
    opacity: 1;
}

.homeTechBlueBox:hover .arrowTextLink {
    opacity: 1;
    transform: translate(0px, 0px);
}

.mobileAppDev .icon {
    background: url(../images/mobile-app.webp) no-repeat 0 0;
}

.crm .icon {
    background: url(../images/CRM.webp) no-repeat 0 0;
}

.e-comm .icon {
    background: url(../images/ecoom.webp) no-repeat 0 0;
}

.emerginTech .icon {
    background: url(../images/emerging.webp) no-repeat 0 0;
}

.homeIntroductingSec {
    position: relative;
    padding: 100px 0;
}

.homeIntroductingSec .text {
    font-family: "proxima_novasemibold";
    font-size: 24px;
    margin: 0 0 80px 0;
}

.homeIntroductingSec h2 {
    font-size: 56px;
    margin: 0 0 50px 0;
    font-family: "proxima_novaextrabold";
}

.stepBlock {
    position: relative;
    padding: 10px 0 10px 0;
}

.stepBlock .img {
    margin: 10px 0 20px 0;
}

.stepBlock h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    text-transform: uppercase;
}

.stepBlock .desc {
    font-size: 18px;
}

.stepBlock img {
    transition: transform 0.2s linear;
}

.stepBlock:hover img {
    transform: scale(0.95);
}

.homeIntroductingImg {
    transition: transform 0.2s linear;
}

.homeIntroductingImg:hover {
    transform: scale(0.95);
}

.tagline {
    position: relative;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--lightRed);
    margin: 0 30px 20px 0;
    vertical-align: middle;
    padding-left: 50px;
    font-family: "proxima_novabold";
    letter-spacing: 1px;
}

.tagline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 40px;
    height: 1px;
    background: var(--lightRed);
}

.countingSectionBg {
    position: relative;
    background: #f55858;
    padding: 50px 0;
}

.countingSectionBg .tagline {
    font-size: 24px;
    font-family: "proxima_novabold";
    color: #fff;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

.countingSectionBg .tagline:before {
    background: #fff;
    top: 16px;
}

.counterBlock {
    text-align: center;
    margin: 0 0 20px 0;
}

.counterBlock .count {
    font-size: 50px;
    color: #fff;
    line-height: 1.2;
    font-family: "proxima_novabold";
}

.counterBlock .desc {
    color: #fff;
    font-size: 16px;
    font-family: "proxima_novasemibold";
    text-transform: uppercase;
}

.homeSpecializeSec {
    padding: 100px 0;
}

.homeSpecializeSec h2 {
    font-size: 56px;
    margin: 0 0 50px 0;
    font-family: "proxima_novaextrabold";
}

.technologyTabSec {
    margin: 0 0 100px 0;
    position: relative;
    padding-right: 80px;
}

.technologyTabNav {
    list-style: none;
    padding: 0;
    margin: 0;
    pointer-events: none;
}

.technologyTabNav li {
    margin: 0 0 20px 0;
}

.technologyTabNav li a {
    text-transform: uppercase;
    font-size: 18px;
    position: relative;
    color: var(--black);
    overflow: hidden;
    display: inline-block;
}

.technologyTabNav li a:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 2px;
    width: 16px;
    height: 20px;
    background: url(../images/sprite.webp) no-repeat -25px -46px;
}

.technologyTabNav li a:hover,
.technologyTabNav li.active a {
    text-decoration: none;
    color: var(--sky);
}

.technologyTabNav li.active a {
    padding-left: 20px;
    font-family: "proxima_novabold";
}

.technologyTabNav li.active a:before {
    left: 0;
}

.technologyBlock h3 {
    font-size: 36px;
    margin: 0 0 30px 0;
    font-family: "proxima_novaextrabold";
}

.technologyBlock .desc {
    font-size: 18px;
    margin: 0 0 30px 0;
}

.technologyCounter {
    position: absolute;
    right: 20px;
    top: 40%;
    width: 50px;
    text-align: center;
}

.technologyCounter span {
    font-size: 20px;
    font-family: "proxima_novabold";
    display: inline-block;
    color: var(--black);
}

.technologyCounter .total {
    margin-top: 70px;
    position: relative;
    font-size: 16px;
    display: block;
}

.technologyCounter .total:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 5px);
    width: 1px;
    height: 60px;
    background: var(--black);
}

.scrollEleA {
    height: 2500px;
    position: relative;
}

.scrollEleA:after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 2500px;
}

.scrollEleB {
    position: sticky;
    top: 67px;
    width: calc(100% - 6px);
    vertical-align: top;
    display: inline-block;
    height: calc(100vh - 70px);
}

.technologyTabSec {
    max-width: 1170px;
    margin: 0 auto;
}

.homeSpecializeSec {
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.joinUsSec {
    background: var(--secondaryRed);
    padding: 40px 60px;
    color: #fff;
}

.joinUsSec h3 {
    font-size: 30px;
    margin: 0 0 10px 0;
    font-family: "proxima_novaextrabold";
}

.joinUsSec .desc {
    font-size: 18px;
    max-width: 700px;
}

.featuredWorkSec {
    position: relative;
    padding: 50px 0;
}

.featuredWorkSec .container {
    max-width: 1800px;
}

.featuredWorkSec h2 {
    font-size: 56px;
    margin: 0 0 50px 0;
    text-align: center;
    font-family: "proxima_novaextrabold";
}

.featureBoxRow {
    margin-left: -3px;
    margin-right: -3px;
}

.featureBoxRow div[class*="col"] {
    padding-left: 3px;
    padding-right: 3px;
    margin-bottom: 6px;
}

.featureBox {
    position: relative;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.featureBox .img {
    height: 490px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s linear;
}

.featureBox .textBlock {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 150px 50px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: top 0.3s linear;
    background: rgba(0, 0, 0, 0.5);
}

.featureBox .textBlock .featureLogo {
    position: absolute;
    top: 50px;
}

.featureBox .textBlock .desc {
    font-size: 18px;
    transform: translate(0px, 30px);
    opacity: 0;
    transition: all 0.3s linear;
}

.featureBox .textBlock .text {
    font-size: 14px;
    text-transform: uppercase;
    font-family: "proxima_novasemibold";
    transform: translate(0px, 30px);
    opacity: 0;
    transition: all 0.3s linear;
}

.featureBox .textBlock .text a {
    color: #fff;
}

.featureBox .textBlock .text a:hover {
    color: #fff;
}

.featureBox:hover .img {
    transform: scale(1.1);
}

.featureBox:hover .textBlock {
    background: rgba(0, 0, 0, 0.7);
}

.featureBox:hover .textBlock .desc {
    transform: translate(0px, 0px);
    opacity: 1;
}

.featureBox:hover .textBlock .text {
    transform: translate(0px, 0px);
    opacity: 1;
}

.industryWeServeSec {
    position: relative;
    padding: 50px 0;
    text-align: center;
}

.industryWeServeSec .container {
    max-width: 1830px;
}

.industryWeServeSec h2 {
    font-size: 56px;
    margin: 0 0 20px 0;
    text-align: center;
    font-family: "proxima_novaextrabold";
}

.industryWeServeSec .desc {
    font-size: 18px;
    margin: 0 auto 70px auto;
    max-width: 760px;
}

.industreiesBox {
    position: relative;
    overflow: hidden;
    background: #000;
    display: block;
}

.industreiesBox img {
    opacity: 0.8;
    transition: all 0.3s linear;
}

.industreiesBox h3 {
    color: #fff;
    font-size: 22px;
    margin: 0;
    font-family: "proxima_novaextrabold";
    position: absolute;
    bottom: 45px;
    left: 10px;
    width: calc(100% - 20px);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s linear;
}

.industreiesBox:hover img {
    opacity: 0.3;
    transform: scale(1.5);
}

.industreiesBox:hover h3 {
    bottom: calc(50% - 20px);
}

.industriesSlider {
    margin: 0 0 100px 0;
}

.industriesSlider .owl-dots {
    display: block;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: -50px;
    left: 0;
    width: 100%;
}

.owlNav.owl-carousel button.owl-dot {
    width: 8px;
    height: 8px;
    background: #c1c2c4;
    border-radius: 5px;
    margin: 5px 7px;
}

.owlNav.owl-carousel button.owl-dot.active {
    background: var(--yellow);
}

.owlNav.owl-carousel .owl-dot:focus {
    outline: 0;
}

.owlNav.owl-carousel .owl-nav button {
    background: #fff url(../images/sprite.webp) no-repeat -82px -41px;
    width: 48px;
    height: 48px;
    position: absolute;
    right: 50px;
    top: 40%;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    opacity: 0.8;
}

.owlNav.owl-carousel .owl-nav button.owl-prev {
    transform: rotate(180deg);
    left: 50px;
    right: inherit;
}

.owlNav.owl-carousel .owl-nav button span {
    display: none;
}

.owlNav.owl-carousel .owl-nav button:hover {
    opacity: 1;
}

.homeTestimonialSec {
    position: relative;
    text-align: center;
}

.homeTestimonialSec .container {
    max-width: 1830px;
}

.homeTestimonialBg h2 {
    font-size: 56px;
    margin: 0 0 10px 0;
    position: relative;
    color: #fff;
    font-family: "proxima_novaextrabold";
}

.homeTestimonialBg h2 span {
    position: relative;
}

.homeTestimonialBg h2:before {
    content: "";
    position: absolute;
    left: calc(50% - 80px);
    width: 160px;
    height: 140px;
    top: -30px;
    background: url(../images/testmonial-icon.webp) no-repeat 0 0;
    opacity: 0.2;
}

.homeTestimonialBg .descB {
    font-size: 16px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto 80px auto;
}

.homeTestimonialBg {
    background: #1c242e;
    padding: 100px 0;
}

.testmonailSlider {
    max-width: 830px;
    margin: 20px auto;
}

.testmonailItem {
    color: #fff;
}

.testmonailItem .desc {
    margin: 0 0 10px 0;
    min-height: 220px;
    font-size: 20px;
}

.testmonailItem .writerInfo {
    position: relative;
    padding-left: 50px;
    text-align: left;
    display: inline-block;
}

.testmonailItem .writerInfo:before {
    content: "";
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    top: 8px;
    background: url(../images/testmonial-icon.webp) no-repeat 0 0;
    background-size: auto 20px;
}

.testmonailItem .name {
    margin: 0 0 2px 0;
    font-size: 22px;
    font-family: "proxima_novabold";
}

.testmonailItem .position {
    font-size: 16px;
}

.testmonailItem .ratingBlock {
    margin: 0 0 20px 0;
}

.ratingView {
    width: 140px;
    height: 30px;
    display: inline-block;
    background: url(../images/star-rating-bg.webp) no-repeat 0 0 / 140px auto;
}

.ratingView .rate {
    background: url(../images/star-rating.webp) no-repeat 0 0 / 140px auto;
    display: inline-block;
    height: 30px;
}

.footerContactSec {
    background: #fff;
    box-shadow: -2px 10px 20px rgba(7, 85, 171, 0.15);
    position: relative;
    bottom: -40px;
    margin-bottom: -70px;
}

.footerContactLeft {
    height: 100%;
    background: url(../images/footer_contact_img_new.webp) no-repeat bottom 20px
        center;
    padding: 50px 40px 400px 40px;
}

.footerContactLeft h2 {
    font-size: 36px;
    margin: 0 0 10px 0;
    font-family: "proxima_novaextrabold";
}

.footerContactLeft .desc {
    font-size: 18px;
    text-transform: uppercase;
}

.footerContactBlueBg {
    background: var(--lightRed);
    padding: 60px 40px;
}

.footerContactBlueBg .textA {
    font-size: 18px;
    font-family: "proxima_novasemibold";
    color: #fff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.footerContactBlueBg .textB {
    font-size: 26px;
    font-family: "proxima_novabold";
    color: #fff;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    position: relative;
}

.footerContactBlueBg .textB:before {
    content: "";
    width: 50px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
}

/*form input field css*/
.inputfield {
    position: relative;
    margin: 10px 0px 25px 0px;
    display: inline-block;
    width: 100%;
}

.inputfield.icon:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 12px;
    width: 18px;
    height: 18px;
    background: url(../images/input-icons.webp) no-repeat -5px -5px;
}

.inputfield label {
    color: #fff;
    font-size: 16px;
    position: absolute;
    pointer-events: none;
    left: 6px;
    top: 10px;
    transition: all 0.2s linear;
    text-transform: uppercase;
    margin: 0px;
}

.inputfield .input {
    background: none;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-radius: 0px;
    padding: 0px 30px 0px 6px;
    font-size: 16px;
    height: 44px;
    width: 100%;
    transition: all 0.3s linear;
    color: #ffffff;
}

.inputfield .input:focus {
    border-bottom-color: var(--sky);
    outline: none;
}

.inputfield .input:focus ~ label {
    color: #ffffff;
    top: -6px;
    font-size: 12px;
}

.inputfield label.active {
    top: -6px;
    font-size: 12px;
}

.inputfield .error {
    position: absolute;
    top: -24px;
    right: 0;
    font-size: 12px;
    color: red;
    top: -16px;
    font-size: 11px;
    display: none;
}

.inputfield select.input option:first-child {
    display: none;
}

.inputfield select.input {
    padding-right: 30px;
    appearance: none;
    -webkit-appearance: none;
    background: transparent url("../images/drop-down.webp") no-repeat right 16px
        top 18px;
}

.inputfield textarea.input {
    padding-top: 10px;
    height: 80px;
}

.inputfield.icon label {
    left: 26px;
}

.inputfield.icon .input {
    padding-left: 26px;
}

.inputfield.email:before {
    background-position: -6px -34px;
}

.inputfield.number:before {
    background-position: -6px -67px;
}

.inputfield.skype:before {
    background-position: -5px -105px;
    width: 20px;
    height: 22px;
}

.inputfield.number .input {
    background-color: var(--lightRed);
    padding: 0px 1px 0px 26px;
    -webkit-appearance: none;
    appearance: none;
}

.checkboxInputRow {
    margin-bottom: 30px;
}

.checkboxInputRow .custom-control-label {
    color: #ffffff;
    font-size: 16px;
    padding: 3px 0px 0px 5px;
}

.checkboxInputRow .custom-control-label::before {
    border: solid 2px #ffffff;
    background: none;
    width: 20px;
    height: 20px;
}

.checkboxInputRow .custom-control {
    width: 100%;
    margin-top: 10px;
}

.checkboxInputRow .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
}

.checkboxInputRow .custom-control-label::after {
    width: 20px;
    height: 20px;
}

.capcha .countText {
    display: inline-block;
}

.capcha .countText span {
    display: inline-block;
    color: #ffffff;
    font-size: 18px;
}

.capcha .countText span:nth-child(2) {
    padding: 2px 8px;
}

.capcha .countText span:nth-child(4) {
    padding: 2px 10px;
}

.capcha .totalVal {
    background: none;
    border: solid 1px #ffffff;
    padding: 4px;
    width: 50px;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
}

.customFormOnWhite .capcha .countText span {
    color: #333;
}

.customFormOnWhite .capcha .totalVal {
    color: #333;
    border: solid 1px #ccc;
}

.footer {
    background: linear-gradient(100deg, #04193c, #120018);;
    padding: 230px 0px 20px 0px;
}

.footerLogo {
    margin: 0px 0px 40px 0px;
}

.footerLogo a {
    display: inline-block;
    max-width: 100%;
}

.copyRigtText {
    font-size: 16px;
    color: #898d93;
    margin: 0px 0px 30px 0px;
    text-align: center;
}

.footer h3 {
    margin: 0px 0px 20px 0px;
    font-size: 18px;
    color: rgb(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-family: "proxima_novasemibold";
}

.footerLink {
    margin: 0px 0px 0px 0px;
    list-style: none;
    padding: 0px;
}

.footerLink li {
    margin-bottom: 17px;
    font-size: 18px;
}

.footerLink a {
    color: #898d93;
    text-decoration: none;
}

.footerLink a:hover {
    color: #fff;
}

.footerSocil {
    list-style: none;
    padding: 0px;
    margin: 0px 0px 30px 0px;
}

.footerSocil li {
    display: inline-block;
    margin: 0px 20px 0px 0px;
}

.footerSocil li a {
    background: url(../images/social-icons.webp) no-repeat 2px 3px;
    width: 36px;
    height: 36px;
    display: block;
    border-radius: 50%;
}

.footerSocil li a.linkedin {
    background-position: -57px 1px;
}

.footerSocil li a.twitter {
    background-position: -120px 2px;
}

.footerSocil li a.print {
    background-position: -177px 2px;
}

.footerSocil li a:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.footerContactInfo {
    margin: 0px 0px 20px 0px;
    display: inline-block;
    width: 100%;
}

.footerContactInfo a {
    padding-left: 40px;
    margin-bottom: 20px;
    display: inline-block;
    color: #898d93;
    position: relative;
    font-family: "proxima_novabold";
    font-size: 18px;
    float: left;
    clear: left;
}

.footerContactInfo a:hover {
    text-decoration: none;
    color: #898d93;
    color: #ffffff;
}

.footerContactInfo a:before {
    content: "";
    width: 27px;
    height: 27px;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: -2px;
    background: url(../images/sprite.webp) no-repeat -14px -94px;
}

.footerContactInfo a:nth-child(2):before {
    background-position: -14px -142px;
}

.footerContactInfo a:nth-child(3):before {
    background:  url("../images/australia-flag.png") no-repeat;
    background-size: 35px 35px;
}

.footerContactInfo1 a:nth-child(1):before {
    background-position: -15px -183px;
    background-color: #fd4822;
}

/* .footerContactInfo a:nth-child(3):before {
    background-position: -14px -142px;
} */

.footerContactInfo1 {
    margin: 0px 0px 20px 0px;
    display: inline-block;
    width: 100%;
}

.footerContactInfo1 a {
    padding-left: 40px;
    margin-bottom: 20px;
    display: inline-block;
    color: #898d93;
    position: relative;
    font-family: "proxima_novabold";
    font-size: 18px;
    float: left;
    clear: left;
}

.footerContactInfo1 a:hover {
    text-decoration: none;
    color: #898d93;
    color: #ffffff;
}

.footerContactInfo1 a:before {
    content: "";
    width: 27px;
    height: 27px;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    top: -2px;
    background: url(../images/sprite.webp) no-repeat -14px -94px;
}

.footerContactInfo1 a:nth-child(1):before {
    background-position: -15px -183px;
    background-color: #fd4822;
}

.footerPartnerLogo {
    padding: 0px 0px 10px 0px;
    text-align: center;
}

.footerPartnerLogo a {
    display: inline-block;
    margin: 0px 70px 10px 0px;
    opacity: 0.5;
}

.footerPartnerLogo a:hover {
    opacity: 1;
}

.footerPartnerLogo a:last-child {
    margin-right: 0px;
}

.goTop {
    width: 51px;
    height: 51px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5) url(../images/sprite.webp) no-repeat -82px -83px;
    border-radius: 50%;
    display: none;
    z-index: 111;
}

.mobilesicky {
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 10;
    padding: 10px 5px;
    bottom: 0;
    background-color: #fff;
    box-shadow: 0 0 5px #6666665d;
    font-size: 11px;
    text-align: center;
}

.mobilesicky a {
    color: #444;
}

.mobilesicky a:hover {
    text-decoration: none;
}

.footerlogo {
    background-image: url(../images/sprite.webp);
    display: inline-block;
    position: relative;
}

.footerlogo.stickyfoot1 {
    background-position: -166px -8px;
    width: 50px;
    height: 21px;
}

.footerlogo.stickyfoot3 {
    background-position: -166px -106px;
    width: 50px;
    height: 21px;
}

.footerlogo.stickyfoot2 {
    background-position: -166px -57px;
    width: 50px;
    height: 21px;
}

.footerlogo.stickyfoot4 {
    background-position: -166px -157px;
    width: 50px;
    height: 21px;
}

.whatsappIcon {
    background-color: #4dc247;
    border-radius: 50%;
    height: 48px;
    width: 48px;
    position: relative;
    top: -20px;
    display: inline-block;
}

.whatsappIcon svg {
    fill: white;
    height: 48px;
    width: 48px;
}

.requestQuotePopup {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
    background: #0f1a43 url(../images/request-quote-bg.webp) no-repeat center /
        cover;
    z-index: 111;
    overflow-y: auto;
    display: none;
    transform: rotateX(90deg);
    transition: transform 0.3s linear;
}

.requestQuoteHead .container {
    max-width: 1800px;
}

.popUpLogo {
    display: inline-block;
    margin: 32px 0px;
}

.popUpClose {
    width: 22px;
    height: 22px;
    display: inline-block;
    background: url(../images/sprite.webp) no-repeat -178px -217px;
    cursor: pointer;
}

.openPopUp {
    overflow: hidden;
}

.openPopUp .requestQuotePopup {
    transform: rotateX(0deg);
}

.requestQuotePopup::-webkit-scrollbar {
    width: 5px;
}

.requestQuotePopup::-webkit-scrollbar-track {
    background: transparent;
}

.requestQuotePopup::-webkit-scrollbar-thumb {
    background: #888;
}

#popUpTestiSlider {
    margin: 20px 0px 40px 0px;
}

#popUpTestiSlider button.owl-dot {
    background-color: #ffffff;
    opacity: 0.5;
}

#popUpTestiSlider button.owl-dot.active {
    opacity: 1;
}

#popUpTestiSlider .owl-dots {
    margin-top: 20px;
}

/* show popUpTestiSliderMobile on mobile view  */
#popUpTestiSliderMobile {
    margin: 20px 0px 40px 0px;
}

#popUpTestiSliderMobile button.owl-dot {
    background-color: #ffffff;
    opacity: 0.5;
}

#popUpTestiSliderMobile button.owl-dot.active {
    opacity: 1;
}

#popUpTestiSliderMobile .owl-dots {
    margin-top: 20px;
}

/* show popUpTestiSliderMobile on mobile view  */

.popUpTestiMonailItem {
    color: #ffffff;
}

.popUpTestiMonailItem .text {
    margin: 0px 0px 30px 0px;
    font-size: 20px;
}

.popUpTestiMonailItem .writerInfo {
    position: relative;
    padding-left: 50px;
    text-align: left;
    display: inline-block;
}

.popUpTestiMonailItem .writerInfo:before {
    content: "";
    position: absolute;
    left: 0px;
    width: 30px;
    height: 30px;
    top: 8px;
    background: url(../images/testmonial-icon.webp) no-repeat 0px 0px;
    background-size: auto 20px;
}

.popUpTestiMonailItem .name {
    margin: 0px 0px 2px 0px;
    font-size: 22px;
    font-family: "proxima_novabold";
}

.popUpTestiMonailItem .position {
    font-size: 16px;
}

.popUpTestiMonailItem .ratingBlock {
    margin: 0px 0px 5px 0px;
}

.popUpRightBlock {
    background: #ffffff;
    padding: 30px 20px;
}

.popUpRightBlock h2 {
    font-size: 46px;
    font-family: "proxima_novaextrabold";
    margin: 0px 0px 5px 0px;
}

.popUpRightBlock .desc {
    font-size: 18px;
    margin: 0px 0px 20px 0px;
}

.customFormOnWhite .inputfield label {
    color: #000;
}

.customFormOnWhite .inputfield .input {
    color: var(--black);
    border-bottom: 1px solid #ccc;
}

.customFormOnWhite .inputfield.icon:before {
    background-image: url(../images/input-icons-w.webp);
}

.customFormOnWhite .inputfield .input:focus {
    border-bottom-color: var(--sky);
    outline: none;
}

.customFormOnWhite .inputfield .input:focus ~ label {
    color: var(--black);
    top: -6px;
    font-size: 12px;
}

.customFormOnWhite .inputfield label.active {
    top: -6px;
    font-size: 12px;
}

.customFormOnWhite .inputfield.number .input {
    background-color: #ffffff;
    padding: 0px 1px 0px 26px;
    -webkit-appearance: none;
    appearance: none;
}

.customFormOnWhite .custom-control-label {
    color: var(--black);
    font-size: 16px;
    padding: 3px 0px 0px 5px;
}

.customFormOnWhite .custom-control-label::before {
    border: solid 1px #cccc;
    background: none;
    width: 20px;
    height: 20px;
}

.animation {
    opacity: 0;
    transform: translate(0px, 20px);
    transition: all 0.5s linear;
}

.animation.ani {
    opacity: 1;
    transform: translate(0px, 0px);
}

@media (max-width: 1400px) and (min-width: 300px) {
  .homeTopBanner {
    min-height: 60vh !important;
  }
}

@media (min-width: 1350px) {
    .homePage .middle {
        overflow: hidden;
    }

    .testmonailSlider .owlNav.owl-carousel .owl-nav button {
        right: -100px;
    }

    .testmonailSlider .owlNav.owl-carousel .owl-nav button.owl-prev {
        left: -100px;
    }

    .goTop {
        bottom: 20px;
        right: 110px;
    }
}

@media (max-width: 1065px) {
    width: 160px;
}

@media (min-width: 1400px) {
    .homeIntroductingSec:before {
        content: "";
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background-color: var(--lightRed);
        position: absolute;
        top: -55px;
        left: -180px;
        border: 1px solid #fff;
    }

    .homeIntroductingSec:after {
        content: "";
        width: 200px;
        height: 400px;
        background: url(../images/lucenta-solutions-home-3.webp) no-repeat top
            right;
        position: absolute;
        top: calc(50% - 200px);
        right: -5px;
        filter: invert(1) hue-rotate(5deg);
    }

    .homeSpecializeSec {
        position: relative;
    }

    .homeSpecializeSec:before {
        content: "";
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background-color: var(--lightRed);
        position: absolute;
        top: 50%;
        left: -130px;
        z-index: 1;
    }

    .homeSpecializeSec:after {
        content: "";
        width: 240px;
        height: 240px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: -50px;
        border: solid 4px var(--secondaryRed);
        border-top-color: transparent;
        transform: rotate(50deg);
        z-index: 1;
    }

    .homeTestimonialSec {
        position: relative;
        margin-bottom: 100px;
    }

    .homeTestimonialSec:before {
        content: "";
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background-color: var(--lightRed);
        position: absolute;
        right: -130px;
        bottom: -100px;
    }

    .homeTestimonialSec:after {
        content: "";
        width: 240px;
        height: 240px;
        border-radius: 50%;
        position: absolute;
        bottom: 0;
        right: -90px;
        border: solid 4px var(--secondaryRed);
        border-top-color: transparent;
    }

    .homeTestimonialBg:after {
        content: "";
        width: 240px;
        height: 240px;
        border-radius: 50%;
        position: absolute;
        bottom: 50%;
        left: -110px;
        border: solid 4px var(--secondaryRed);
        border-top-color: transparent;
        transform: rotate(10deg);
    }

    .homeTechBlueBox.lastBox h3 {
        margin-bottom: 30px;
    }
}

@media (max-width: 1600px) {
    .homeTopBanner {
        padding-top: 65px;
        min-height: 100vh;
    }

    .homeTopBannerText .h1 {
        font-size: 70px;
    }

    .homeTopBannerText {
        padding: 125px 0 65px 0;
    }
}

@media (min-width: 1600px) {
    .homeIntroductingImg {
        margin: 0 0 0 -30px;
        max-width: 680px;
    }

    .navigation > ul > li {
        margin: 0 20px;
    }

    .homeTopBannerVideoBlock {
        width: calc(50vw - 220px);
    }

    .homeTopTechLeft {
        flex: 0 0 29%;
        max-width: 29%;
    }

    .homeTopTechRight {
        flex: 0 0 71%;
        max-width: 71%;
    }

    .homeTechBlueBox {
        padding: 35px;
    }

    .homeTechBlueBox .descB {
        font-size: 18px;
    }

    .homeTechBlueBox .arrowTextLink {
        left: 35px;
    }

    .technologyCounter {
        right: -200px;
    }
}

@media (min-width: 1025px) {
    .openPopUp {
        padding-right: 20px;
    }
}

@media (max-width: 1350px) {
    .headerRightLinks .email {
        display: none;
    }
}

@media (max-width: 1024px) {
    .homeTopBannerText {
        padding: 40px 0;
    }

    .homeTopBannerPartnerLogos {
        padding: 10px 0 40px 0;
    }

    .homeTopBannerText .h1 {
        margin: 0 0 30px 0;
        font-size: 44px;
    }

    .homeTopBannerText .desc {
        margin: 0 0 30px 0;
    }

    .homeTopBannerVideoBlock {
        text-align: center;
    }

    .homeTopBannerVideoBlock .videoIcon {
        width: 40px;
        height: 40px;
        background-size: 40px auto;
    }

    .homeIntroductingSec {
        padding: 50px 0;
    }

    .homeIntroductingSec .text {
        font-size: 18px;
        margin: 0 0 30px 0;
    }

    .homeIntroductingSec h2 {
        font-size: 46px;
        margin: 0 0 30px 0;
    }

    .scrollEleA {
        height: auto;
    }

    .scrollEleA:after {
        display: none;
    }

    .scrollEleB {
        position: relative;
        height: auto;
        top: 0;
    }

    .homeSpecializeSec {
        padding: 50px 15px 10px 15px;
        display: block;
        height: auto;
    }

    .technologyTabNav {
        pointer-events: inherit;
    }

    .homeSpecializeSec h2 {
        font-size: 46px;
        margin: 0 0 40px 0;
    }

    .featuredWorkSec h2 {
        font-size: 46px;
        margin: 0 0 30px 0;
    }

    .industryWeServeSec {
        padding: 0 0 50px 0;
    }

    .industryWeServeSec h2 {
        font-size: 46px;
    }

    .industryWeServeSec .desc {
        font-size: 16px;
        margin: 0 auto 30px auto;
    }

    .industriesSlider {
        margin: 0 0 50px 0;
    }

    .footerContactLeft {
        padding: 20px 20px 400px 20px;
        background-size: 90% auto;
    }

    .footerContactLeft h2 {
        font-size: 24px;
    }

    .footerContactSec {
        bottom: 0;
        margin: 30px 0;
    }

    .footerContactBlueBg {
        padding: 15px 15px;
    }

    .footer {
        padding: 60px 0 0 0;
    }
}

.desktop-whatsapp {
    position: fixed;
    right: 33px;
    bottom: 95px;
    z-index: 99;
    top: auto;
}

.tab-text ul li a {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tab-text ul li a img {
    margin-left: auto !important;
    margin-right: auto;
}

@media (max-width: 992px) {
    .footerContactLeft h2 {
        font-size: 23px !important;
    }

    .web-development-page .counterBlock .count {
        font-size: 29px;
    }

    .web-development-page h2 {
        font-size: 1.3rem !important;
        padding-top: 22px;
    }

    .web-development-page .mobAppDevBenefitBox h3 {
        font-size: 17px;
    }

    .web-development-page .mobAppDevBenefitBox .text {
        font-size: 16px;
    }

    .customFormOnWhite .inputfield label.active {
        font-size: 15px;
    }

    .web-development-page .nativeTabText li a {
        font-size: 17px;
    }

    .web-development-page .nativeTabBlock .textA {
        font-size: 16px;
    }

    .web-development-page .industryGrayBoxRow .lastBox h3 {
        font-size: 18px;
    }

    .php-development-pages .counterBlock .count {
        font-size: 30px;
    }

    .php-development-pages .lucena-row {
        display: block;
    }

    .php-development-pages .lucena-row .col-md-6 {
        max-width: 100%;
        text-align: center;
    }

    .php-development-pages .mobAppDevSecCText h2 {
        font-size: 23px;
        padding-top: 25px;
    }

    .php-development-pages .mobAppDevSecE h2 {
        font-size: 29px;
    }

    .row.port-row {
        flex-wrap: inherit;
    }

    .php-development-pages .portoflioItemText .textA {
        font-size: 15px;
    }

    .php-development-pages .portoflioItemText .textB p {
        font-size: 14px;
    }

    .php-development-pages .arrowTextLink {
        font-size: 14px;
        padding: 0 27px 0 0;
    }

    .php-development-pages .animation.ani {
        font-size: 26px !important;
    }

    .php-development-pages .mobAppGetReqTextBlock {
        padding-left: 94px;
        padding-top: 25px;
    }

    .php-development-pages .mobAppGetReqTextBlock h3 {
        font-size: 19px;
    }

    .php-development-pages .mobAppGetReqTextBlock .text {
        font-size: 15px;
        margin: 0px 0px 50px 0px;
    }

    .php-development-pages .mobAppDevBenefitBox h3 {
        padding-left: 60px;
        font-size: 18px;
    }

    .php-development-pages .mobAppDevBenefitBox .text {
        font-size: 15px;
    }

    .php-development-pages .industryGrayBoxRow .col-auto {
        margin-bottom: 30px;
        margin: 0 auto;
        margin-bottom: 26px;
    }

    .php-development-pages .workExpertiseBlock h3 {
        font-size: 20px;
        margin: 0px 0px 25px 0px;
        padding-bottom: 12px;
    }

    .mobile-app-page .lucena-row {
        display: block;
    }

    .mobile-app-page .lucena-row .col-md-6 {
        max-width: 100%;
        text-align: center;
    }

    .mobile-app-page .counterBlock .count {
        font-size: 2rem;
        color: #fff;
    }

    .mobile-app-page .mobAppDevSecE .row {
        -ms-flex-wrap: wrap;
        flex-wrap: inherit;
    }

    .mobile-app-page .portoflioItemText h2 {
        margin: 0px 0px 40px 0px;
        font-size: 27px;
    }

    .mobile-app-page .textB p {
        font-size: 14px;
    }

    .mobile-app-page .arrowTextLink {
        font-size: 12px;
        padding: 0 24px 0 0;
    }

    .mobile-app-page .animation.ani {
        font-size: 1.5rem !important;
    }

    .mobile-app-page .mobAppDevSecF .desc {
        font-size: 18px !important;
    }

    .mobile-app-page .mobAppGetReqTextBlock h3 {
        font-size: 23px;
    }

    .mobile-app-page .mobAppGetReqTextBlock .text p {
        font-size: 15px;
        margin: 0px 0px 15px 0px;
    }

    .mobile-app-page .mobAppDevSecF {
        padding: 30px 0px 49px 0px;
    }

    .mobile-app-page .mobAppDevSecG .desc {
        font-size: 18px !important;
    }

    .mobile-app-page .mobAppDevBenefitBox h3 {
        font-size: 17px;
    }

    .mobile-app-page .mobAppDevBenefitBox .text {
        font-size: 15px;
    }

    .mobile-app-page .industryGrayBoxRow .col-auto {
        margin: 0 auto;
        margin-bottom: 26px;
    }

    .mobile-app-page .footerContactLeft h2 {
        font-size: 21px;
    }

    .mobile-app-page .mobAppDevSecCText .desc {
        font-size: 18px !important;
    }

    .iphone-application-page .solutionsSectionC {
        padding: 0px 0px;
    }

    .iphone-application-page .solutionsSectionC h2 {
        font-size: 56px;
        margin: 0px 0px 0px 0px;
    }

    .iphone-application-page .solutionsSectionE h2 {
        font-size: 2rem;
        margin: 0px 0px 30px 0px;
        text-align: center;
    }

    .iphone-application-page .solutionsSectionE {
        padding: 0px 0px;
    }

    .iphone-application-page .solutionsIndustryBox h3 {
        margin: 0px 0px 15px 0px;
        font-size: 20px;
    }

    .iphone-application-page .solutionsIndustryBox .desc {
        font-size: 17px;
    }

    .iphone-application-page .mobAppDevSecE h2 {
        font-size: 32px;
        margin: 0px 0px 30px 0px !important;
    }

    .iphone-application-page .solutionsIndustryText h3 {
        font-size: 22px;
    }

    .iphone-application-page .solutionsIndustryText .desc {
        font-size: 15px;
    }

    .trending-js-page .counterBlock .count {
        font-size: 2rem;
    }

    .trending-js-page .lucena-row {
        display: block;
    }

    .trending-js-page .lucena-row .col-md-6 {
        max-width: 100%;
        text-align: center;
    }

    .trending-js-page .animation.ani {
        font-size: 24px;
    }

    .trending-js-page .mobAppDevSecCText .desc {
        font-size: 18px !important;
    }

    .trending-js-page .workExpertiseBlock h3 {
        font-size: 20px;
        margin: 0px 0px 25px 0px;
        padding-bottom: 13px;
    }

    .trending-js-page .portoflioItemText .visitWeb {
        margin-left: 15px;
    }

    .angularjs-development-page .workExpertiseBlock h3 {
        font-size: 20px;
        margin: 0px 0px 25px 0px;
        padding-bottom: 13px;
        text-align: center;
        display: block;
    }

    .angularjs-development-page .solutionsSectionE h2 {
        font-size: 2rem;
        margin: 0px 0px 16px 0px;
    }

    .angularjs-development-page .solutionsIndustryBox h3 {
        margin: 0px 0px 15px 0px;
        font-size: 16px;
    }

    .angularjs-development-page .solutionsIndustryBox .desc {
        font-size: 15px;
    }

    .angularjs-development-page .mobAppGetReqTextBlock h3 {
        font-size: 16px;
    }

    .nodejs-development-page .mobAppDevSecH {
        padding: 0px 0px 10px 0px;
    }

    .nodejs-development-page .row.industryGrayBoxRow h4 {
        margin-top: 0px !important;
        margin-right: 0px;
        text-align: center;
        justify-content: center;
        display: block;
        text-align: center;
        width: 100%;
        font-size: 20px;
    }

    .nodejs-development-page .mobAppDevSecH h2 {
        font-size: 56px;
        margin: 0px 0px 12px 0px;
        font-family: "proxima_novaextrabold";
        text-align: center;
    }

    .nodejs-development-page .col.lastBox.animation.ani {
        margin-top: 24px;
    }

    .nodejs-development-page h2 {
        font-size: 1.2rem !important;
    }

    .nodejs-development-page .mobile-app-page .animation.ani {
        font-size: 1.2rem !important;
    }

    .nodejs-development-page .animation.ani {
        font-size: 1.2rem !important;
    }

    .nodejs-development-page .desc.animation.ani {
        font-size: 15px !important;
    }

    .mobile-app-page .mobAppDevSecH h2 {
        font-size: 56px;
        margin: 0px 0px 21px 0px;
    }
}

@media (max-width: 767px) {
    .emerging-technologies-page .mobAppDevSecE h2 {
        font-size: 15px;
        margin: 0px 0px 0px 0px;
    }

    .nodejs-development-page .row.industryGrayBoxRow h4 {
        margin-top: 0px !important;
        margin-right: 0px;
        text-align: center;
        justify-content: center;
        display: block;
        text-align: center;
        width: 100%;
        font-size: 13px;
    }

    .trending-js-page .animation.ani {
        font-size: 1rem !important;
    }

    .trending-js-page .industryGrayBoxRow .lastBox h3 {
        font-size: 18px;
    }

    .iphone-application-page .mobAppDevSecE h2 {
        margin: 0px 0px 6px 0px !important;
    }

    .iphone-application-page .solutionsIndustryText .number {
        position: absolute;
        left: 25px;
        top: 35px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        line-height: 50px;
    }

    .iphone-application-page .animation.ani {
        font-size: 1rem !important;
    }

    .iphone-application-page .mobAppDevSecE {
        padding-bottom: 0px !important;
    }

    .mobile-app-page .counterBlock .desc {
        font-size: 13px;
    }

    .mobile-app-page .mobAppDevSecF {
        padding: 0px 0px 49px 0px;
    }

    .mobile-app-page .portoflioItemText h2 {
        margin: 0px 0px 12px 0px;
        font-size: 24px;
    }

    .mobile-app-page .mobAppDevSecE .row {
        display: block;
    }

    .workExpertiseBlock h3 {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .mobile-app-page .counterBlock .count {
        font-size: 1.5rem;
    }

    .php-development-pages .animation.ani {
        font-size: 19px !important;
    }

    .php-development-pages .workExpertiseBlock h3 {
        font-size: 16px;
    }

    .desktop-whatsapp {
        display: none;
    }

    .row.port-row.portfolioRow {
        display: block;
    }

    .php-development-pages .industryGrayBoxRow .lastBox h3 {
        font-size: 16px;
    }

    .portfolioRow:nth-child(2n) .porfolioImgFrame {
        margin-top: 15px;
    }

    .tech-text {
        font-size: 15px !important;
        padding: 0px 5px !important;
    }

    .Section .mobAppEleBB li.active div.tab-block a h4.tech-title {
        font-size: 15px !important;
    }

    .Section .mobAppEleBB li div.tab-block a h4.tech-title {
        text-align: center;
        color: black;
        font-size: 16px;
    }

    /*  .Section .mobAppEleBB li { padding: 12px 10px 0px 10px !important;}*/
    .footerContactBlueBg .textB {
        font-size: 17px;
    }

    .footerPartnerLogo img {
        max-width: 68% !important;
    }

    .footerLogo img {
        max-width: 80% !important;
        filter: grayscale(1) brightness(2.5);
    }

    .homeTopReviewSec {
        padding: 25px 0 10px 0 !important;
    }

    .goodfirms-row a img {
        max-width: 56%;
    }

    .inputfield.icon label {
        font-size: 14px;
    }

    .inputfield.number .input {
        font-size: 14px;
    }

    .inputfield label {
        color: #fff;
        font-size: 14px;
    }

    .footerContactLeft h2 {
        font-size: 21px;
        text-align: center;
    }

    .footerContactLeft .desc {
        font-size: 14px;
        text-align: center;
    }

    .Section {
        background: none;
        padding: 25px 0 46px 0 !important;
    }

    h2.tech-heading {
        text-align: center !important;
        font-size: 21px !important;
    }

    .blog-logo {
        display: inline-block;
        margin: 0 30px 5px 0 !important;
    }

    .homeTechBlueBox .arrowTextLink {
        position: inherit;
        left: 20px;
    }

    .headerRightLinks {
        display: none;
    }

    .row.goodfirms-row .col-lg-4.col-md-4 {
        margin-bottom: 50px;
    }

    .tab-text ul {
        display: flex;
        flex-wrap: wrap;
        padding-left: 0;
    }

    .tab-text ul li {
        width: 150px;
        padding: 0 20px;
    }

    .footerContactBlueBg {
        margin: 0 15px;
    }

    .footerContactLeft {
        background-size: auto;
    }

    .homeTopBannerVideoBlock {
        display: none;
    }

    .header .col-auto:nth-child(3) {
        display: none;
    }

    .homeTopBanner {
        padding-top: 10px;
    }

    .stepBlock h4 {
        margin: 0 0 10px 0;
        font-size: 15px;
    }

    .homeTechBlueBox h3 a {
        font-size: 16px;
    }

    .homeTechBlueBox .desc a {
        color: #fff;
        font-size: 14px;
    }

    .homeTechBlueBox.lastBox h3 {
        max-width: 100%;
        text-align: center;
    }

    .homeTopBannerText {
        padding: 30px 0;
    }

    .homeTopBannerPartnerLogos {
        padding: 10px 0 40px 0;
    }

    .homeTopBannerText .h1 {
        margin: 0 0 20px 0;
        font-size: 20px;
        text-align: center;
    }

    .homeTopBannerText .desc {
        margin: 0 0 20px 0;
        font-size: 14px;
        text-align: center;
    }

    .skyBtn {
        display: inline-block;
        text-transform: uppercase;
        position: relative;
        margin: 0 auto;
        display: flex;
        max-width: 211px;
        justify-content: center;
    }

    .sendEmailBtn {
        max-width: unset !important;
    }

    div.reviewtext {
        color: #fff;
        font-size: 20px;
        text-align: center;
    }

    .textB {
        display: block;
        justify-content: center;
    }

    div.reviewtext span {
        margin-bottom: 10px;
        display: block;
    }

    .homeTopBannerPartnerLogos .heading {
        margin: 0 0 20px 0;
        display: block;
    }

    .homeTopTechSec .text {
        padding: 30px 15px 15px 15px;
        margin: 0 auto;
    }

    .homeTopTechSec h2 {
        font-size: 18px;
        margin: 0 0 15px 0;
        text-align: center;
        margin: 0 auto;
    }

    .textB {
        display: block;
        justify-content: center;
        text-align: center !important;
    }

    .homeTechBlueBox {
        height: auto;
        padding: 20px 15px 15px 15px;
        border-left: none;
        text-align: center;
        margin-bottom: 2px;
        border-bottom: 0px;
    }

    .homeTechBlueBox .icon {
        display: none;
    }

    .homeTechBlueBox .desc {
        margin-bottom: 20px;
    }

    .homeTechBlueBox .descB {
        opacity: 1;
        height: auto;
        margin-bottom: 45px;
    }

    .homeIntroductingImg {
        margin-top: 20px;
    }

    .homeTechBlueBox .arrowTextLink {
        left: 15px;
        transform: translate(0px, 0px);
        opacity: 1;
    }

    .homeTechBlueBox.lastBox .center {
        padding-top: 0;
        padding-bottom: 5px;
    }

    .homeTechBlueBox h3 {
        font-size: 20px;
    }

    .homeIntroductingSec {
        padding: 30px 0;
        text-align: center;
    }

    .homeIntroductingSec .text {
        font-size: 14px;
        margin: 0 0 20px 0;
        font-family: "proxima_novaregular";
    }

    .homeIntroductingSec h2 {
        font-size: 20px;
        margin: 0 0 30px 0;
        text-align: center;
    }

    .stepBlock {
        padding: 0 0 20px 0;
        text-align: center;
    }

    .stepBlock .img {
        margin: 0 0 10px 0;
    }

    .stepBlock .desc {
        font-size: 14px;
    }

    .homeSpecializeSec {
        padding: 30px 15px 0 15px;
    }

    .homeSpecializeSec h2 {
        font-size: 26px;
        margin: 0 0 20px 0;
    }

    .technologyTabSec {
        margin: 0;
        padding-right: 0;
    }

    .technologyCounter {
        display: none;
    }

    .technologyTabNav li {
        margin-bottom: 5px;
    }

    .technologyTabNav li a {
        font-size: 16px;
    }

    .technologyBlock {
        padding-bottom: 20px;
    }

    .technologyBlock h3 {
        font-size: 22px;
        margin: 15px 0;
    }

    .technologyBlock .desc {
        font-size: 16px;
        margin: 0 0 10px 0;
    }

    .countingSectionBg {
        padding: 30px 0 10px 0;
    }

    .countingSectionBg .tagline {
        font-size: 16px;
    }

    .counterBlock {
        margin: 0 0 30px 0;
    }

    .counterBlock .count {
        font-size: 28px;
    }

    .counterBlock .desc {
        font-size: 13px;
    }

    .joinUsSec {
        padding: 20px 15px;
    }

    .joinUsSec h3 {
        font-size: 20px;
        margin: 0 0 10px 0;
    }

    .joinUsSec .desc {
        font-size: 16px;
        max-width: 700px;
        margin-bottom: 15px;
    }

    .featuredWorkSec {
        padding: 10px 0 30px 0;
    }

    .featuredWorkSec h2 {
        font-size: 26px;
        margin: 0 0 20px 0;
    }

    .featureBox .textBlock {
        background: rgba(0, 0, 0, 0.5);
        top: 0;
        padding: 120px 20px 20px 20px;
    }

    .featureBox .img {
        min-height: 350px;
    }

    .featureBox .textBlock .desc {
        transform: translate(0px, 0px);
        opacity: 1;
        font-size: 15px;
        text-align: center;
    }

    .feature.featureBox .textBlock .text {
        transform: translate(0px, 0px);
        opacity: 1;
    }

    .industryWeServeSec {
        padding: 0 0 10px 0;
    }

    .industryWeServeSec h2 {
        font-size: 26px;
        margin: 0 0 15px 0;
    }

    .industriesSlider .owl-dots {
        bottom: -35px;
    }

    .homeTestimonialBg {
        padding: 50px 15px 20px 15px;
    }

    .homeTestimonialBg h2 {
        font-size: 19px;
        margin: 0 0 10px 0;
    }

    .homeTestimonialBg h2:before {
        left: calc(50% - 40px);
        width: 80px;
        height: 70px;
        top: -15px;
        background-size: 70px auto;
    }

    .homeTestimonialBg .descB {
        font-size: 14px;
        margin: 0 auto 40px auto;
    }

    .testmonailItem .desc {
        font-size: 14px;
        margin: 0 0 30px 0;
        min-height: inherit;
    }

    .testmonailItem .position {
        font-size: 12px;
    }

    .testmonailSlider .owl-dots {
        padding-top: 20px;
    }

    .testmonailItem .name {
        font-size: 18px;
    }

    .testmonailItem .writerInfo {
        padding-left: 40px;
    }

    .customForm .whiteBtn {
        width: 100%;
        margin-top: 15px;
    }

    .footer {
        padding: 35px 0 0 0;
    }

    .footer h3 {
        margin: 0 0 20px 0;
        font-size: 15px;
    }

    .footBlock {
        display: none;
        padding: 0 0 10px 0;
    }

    .footBlockHead {
        position: relative;
    }

    .footBlockHead:after {
        content: "";
        width: 20px;
        height: 20px;
        position: absolute;
        right: 5px;
        top: 0;
        background: transparent url(../images/slider-arrow.webp) no-repeat 3px
            2px;
        transition: all 0.1s linear;
    }

    .openTab.footBlockHead:after {
        transform: rotate(90deg);
        top: -2px;
    }

    .footerLink {
        margin: 0 10px;
    }

    .footerLink li {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .footerLink a {
        color: #fff;
    }

    .footer .col-md-5 {
        order: 1;
    }

    .copyRigtText {
        display: block;
        margin: 0 0 25px 0;
    }

    .footerPartnerLogo {
        padding: 20px 0 20px 0;
    }

    .footerPartnerLogo a {
        margin: 0 0 30px 0;
        width: 49%;
    }

    .footerContactInfo {
        margin: 0 0 10px 0;
    }

    .footerContactInfo a {
        color: #fff;
        font-size: 15px;
    }

    .goTop {
        display: none !important;
    }

    .mobilesicky {
        display: block;
    }

    .customFormOnWhite .inputfield {
        margin: 10px 0 15px 0;
    }

    .customFormOnWhite .skyBtn {
        margin: 20px 0 0 0;
        width: 100%;
    }

    .popUpTestiMonailItem .text {
        font-size: 16px;
    }

    .popUpTestiMonailItem .name {
        font-size: 18px;
    }

    .popUpTestiMonailItem .position {
        font-size: 16px;
    }

    .popUpRightBlock {
        padding: 15px;
        margin-bottom: 20px;
    }

    .popUpRightBlock h2 {
        font-size: 20px;
        margin: 0 0 10px 0;
    }

    .popUpRightBlock .desc {
        font-size: 16px;
        margin: 0 0 20px 0;
    }

    /* mobile speed*/
    .animation {
        opacity: 1 !important;
        transform: translate(0px, 0px) !important;
        font-size: 1.5rem !important;
    }
}

.footer-main-logo {
    width: 178px;
}

@media (max-width: 1400px) {
    .homeTopBannerText .h1 {
        font-size: 3rem;
        line-height: normal;
    }

    .homeTopBannerText {
        margin: 0 auto 0 0;
        padding: 65px 0;
    }

    .homeIntroductingSec h2,
    .featuredWorkSec h2,
    .homeTestimonialBg h2 {
        font-size: 2.5rem;
        line-height: normal;
    }

    .homeIntroductingSec .text {
        font-size: 1.15rem;
    }
}

@media (max-width: 1250px) {
    .homeTopBanner {
        padding-top: 50px;
    }

    .homeTopBannerText .h1 {
        font-size: 2.5rem;
        line-height: normal;
    }

    .homeTopTechSec h2 {
        font-size: 1.5rem;
    }

    .homeIntroductingSec h2,
    .featuredWorkSec h2,
    .homeTestimonialBg h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .homeTopBannerText .h1 {
        font-size: 2rem;
    }

    .homeIntroductingSec h2,
    .featuredWorkSec h2,
    .homeTestimonialBg h2 {
        font-size: 1.5rem;
    }

    .copyRigtText {
        margin-bottom: 50px;
    }

    .footerPartnerLogo {
        padding: 10px 0 20px 0;
    }
}

.waiting-box {
    display: none;
    color: black;
    font-size: 1rem;
}

.waiting-img {
    margin-bottom: 1rem;
    margin-right: 10px;
}
