/* Banner Section */
.bnr-sec {
    padding: 248px 0 90px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position:relative;
    overflow:hidden;
}

.bnr-sec .container {
    max-width: 1620px;
}

.bnr-blk {
    display: flex;
    justify-content: flex-end;
    gap: 0;
}

.bnr-lft .text-heading {
    text-transform: inherit;
    margin-bottom: 35px;
}

.bnr-lft {
    width: 62.6%;
}

.bnr-lft p {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: -0.4px;
    margin-bottom: 55px;
    max-width: 900px;
}

.bnt-rgt {
    width: 33.3%;
    position: relative;
    padding-top: 92px;
}

.bnr-wp-gif {
    width: 75px;
    height: 75px;
    position: absolute;
    top: 51.1%;
    left: 15.5%;
}

.bnr-wp-gif img {
    width: 100%;
    display: block;
}

.bnr-btn-blk {
    display: flex;
    justify-content: start;
    gap: 20px;
}

.bnr-start-btn {
    position: relative;
    padding-right: 70px;
}

.bnr-nice-logo-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    width: 62px;
    height: 62px;
    background-color: #00359E;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.4s ease, opacity 0.2s ease;
}

.bnr-start-btn::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    top: 0;
    right: 0;
    background-color: #286FFE;
    outline: 2px solid #fff;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    transition: opacity 0s;
}

.bnr-start-btn:not(:has(.bnr-nice-logo-btn))::before {
    display: none;
}

.bnr-start-btn:not(:has(.bnr-nice-logo-btn)){
    padding-right: 0;
}

.bnr-start-btn:hover::before {
    opacity: 1;
    transition: opacity 1s ease-in;
}

.bnr-start-btn:hover .bnr-nice-logo-btn {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.bnr-rgt-img {
    margin-left: -70px;
}

.bnr-rgt-img img {
    width: 100%;
    display: block;
}


.hero-content{
    position:relative;
    z-index:5;
    /* padding:150px 0; */
}

.overlay{
    position:absolute;
    inset:0;
    background: radial-gradient(50% 57.94% at 50% 57.94%, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    z-index: 2;
}

.hero-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    background: repeating-linear-gradient(90deg, rgba(51, 51, 51, 0.03) 0px, rgba(51, 51, 51, 0.03) 5px, transparent 5px, transparent 136px), repeating-linear-gradient(0deg, rgba(51, 51, 51, 0.03) 0px, rgba(51, 51, 51, 0.03) 5px, transparent 5px, transparent 136px);
    background-color: #fff;
}

.grid-svg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    display: none;  
}

.line{
    position:absolute;
    width:3px;
    height:180px;
    background:linear-gradient( to bottom, #1D49C3, #1d49c300 );
    filter:blur(2px);
    animation:dropReverse 9s linear infinite;
}

.line::before{
    content:"";
    position:absolute;
    top:-8px;
    left:50%;
    transform:translateX(-50%);
    width:11px;
    height:11px;
    border-radius:50%;
    filter:blur(2px);
    background:#1b67ff;
    box-shadow: 0 0 10px #1b67ff, 0 0 20px #1b67ff, 0 0 40px #1b67ff;
}

.line1 { left: 28.6%; animation-delay: 0s; }
.line2 {  left: 50.1%;  animation-delay: 2s; }
.line3{  left: 71.5%;  animation-delay:4s; }


@keyframes dropReverse{
    0%{
        transform: translateY(calc(100vh + 250px));
        opacity: 0;
    }

    10%{
        opacity: 1;
    }

    90%{
        opacity: 1;
    }

    100%{
        transform: translateY(-220px);
        opacity: 0;
    }
}



@media screen and (min-width:1801px) {
    .bnr-start-btn a.cmn-btn, .bnr-view-btn .cmn-btn {padding: 19px 45px;}
}

/* Banner Responsive */
@media screen and (max-width:1800px) {
    .bnr-sec {
        padding: 210px 0 85px;
    }

    .bnr-rgt-img {
        margin-left: -65px;
    }

    .bnr-sec .container {
        max-width: 1520px;
    }

    .bnr-lft .text-heading {
        margin-bottom: 32px;
    }

    .bnr-lft p {
        font-size: 19px;
        margin-bottom: 50px;
        max-width: 850px;
    }
}

@media screen and (max-width:1680px) {
    .bnr-sec {
        padding: 190px 0 80px;
    }

    .bnr-sec .container {
        max-width: 1420px;
    }

    .bnr-lft .text-heading {
        margin-bottom: 29px;
    }

    .bnr-lft p {
        font-size: 18px;
        max-width: 820px;
        margin-bottom: 45px;
    }

    .bnt-rgt {
        padding-top: 80px;
    }

    .bnr-rgt-img {
        margin-left: -82px;
    }

    .bnr-wp-gif {
        width: 70px;
        left: 10.5%;
    }

    .bnr-btn-blk {
        gap: 18px;
    }

    .bnr-start-btn {
        padding-right: 60px;
    }

    .bnr-nice-logo-btn {
        width: 52px;
        height: 52px;
    }

    .bnr-start-btn::before {
        width: 7px;
        height: 7px;
    }
    /* :root{
        --grid:120px;
    } */

    .line{
        height: 140px;
    }

}

@media screen and (max-width:1550px) {
    .bnr-sec {
        padding: 170px 0 75px;
    }

    .bnr-sec .container {
        max-width: 1320px;
    }

    .bnr-lft p {
        font-size: 17px;
        max-width: 770px;
        margin-bottom: 35px;
        letter-spacing: -0.2px;
    }

    .bnt-rgt {
        padding-top: 70px;
    }

    .bnr-rgt-img {
        margin-left: -81px;
    }

    .bnr-wp-gif {
        width: 62px;
    }

    .bnr-btn-blk {
        gap: 16px;
    }

    .bnr-start-btn {
        padding-right: 60px;
    }

    .bnr-nice-logo-btn {
        width: 50px;
        height: 50px;
    }

    .bnr-start-btn::before {
        width: 7px;
        height: 7px;
    }

    .bnr-lft .text-heading {
        margin-bottom: 27px;
    }
}

@media screen and (max-width:1440px) {
    .bnr-sec {
        padding: 150px 0 70px;
    }

    .bnr-sec .container {
        max-width: 1220px;
    }

    .bnr-lft .text-heading {
        margin-bottom: 25px;
    }

    .bnr-lft p {
        font-size: 16px;
        max-width: 750px;
        margin-bottom: 30px;
        letter-spacing: -0.1px;
    }

    .bnt-rgt {
        padding-top: 68px;
    }

    .bnr-rgt-img {
        margin-left: -60px;
    }

    .bnr-wp-gif {
        width: 54px;
        left: 12.5%;
    }

    .bnr-btn-blk {
        gap: 16px;
    }

    .bnr-start-btn {
        padding-right: 55px;
    }

    .bnr-nice-logo-btn {
        width: 47px;
        height: 47px;
    }

    .bnr-start-btn::before {
        width: 6px;
        height: 6px;
    }

    .line::before{
        width: 9px;
        height: 9px;
    }
    .line{
        height: 130px;
    }
}

@media screen and (max-width:1366px) {
    .bnr-sec {
        padding: 135px 0 60px;
    }

    .bnr-sec .container {
        max-width: 1120px;
    }

    .bnr-lft p {
        font-size: 15px;
        margin-bottom: 25px;
        max-width: 720px;
    }

    .bnt-rgt {
        padding-top: 64px;
    }

    .bnr-wp-gif {
        width: 52px;
        top: 51%;
        left: 14.5%;
    }

    .bnr-rgt-img {
        margin-left: -47px;
    }

    .bnr-btn-blk {
        gap: 16px;
    }

    .bnr-start-btn {
        padding-right: 52px;
    }

    .bnr-nice-logo-btn {
        width: 46px;
        height: 46px;
    }

    .bnr-start-btn::before {
        width: 6px;
        height: 6px;
    }

    .bnr-lft .text-heading {
        margin-bottom: 23px;
    }
}

@media screen and (max-width:1280px) {
    .bnr-sec {
        padding: 135px 0 55px;
    }

    .bnr-sec .container {
        max-width: 980px;
    }

    .bnr-lft p {
        font-size: 14px;
        max-width: 550px;
        margin-bottom: 20px;
    }

    .bnt-rgt {
        padding-top: 59px;
    }

    .bnr-rgt-img {
        margin-left: -39px;
    }

    .bnr-wp-gif {
        width: 45px;
        top: 52%;
    }

    .bnr-btn-blk {
        gap: 16px;
    }

    .bnr-lft .text-heading {
        margin-bottom: 21px;
    }

    .bnr-start-btn {
        padding-right: 47px;
    }

    .bnr-nice-logo-btn {
        width: 40px;
        height: 40px;
    }

    .bnr-start-btn::before {
        width: 5px;
        height: 5px;
    }

    .bnr-nice-logo-btn img {
        transform: scale(0.8);
    }

}

@media screen and (max-width:1024px) {
    .bnr-sec {
        padding: 175px 0px 60px 0;
        background-image: none;
    }

    .bnr-sec .container {
        max-width: 720px;
    }

    .bnr-blk {
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }

    .bnt-rgt {
        padding-top: 0;
        width: 100%;
        max-width: 450px;
    }

    .bnr-rgt-img {
        margin-left: 0;
    }

    .bnr-lft .text-heading {
        margin-bottom: 18px;
        text-align: center;
    }

    .bnr-lft {
        width: 100%;
        max-width: 700px;
    }

    h1.text-heading.bnr-hdg br {
        display: none;
    }

    .bnr-lft p {
        font-size: 16px;
        text-align: center;
        max-width: 100%;
        line-height: 1.6;
    }

    .bnr-btn-blk {
        gap: 15px;
        justify-content: center;
    }

    .bnr-nice-logo-btn {
        width: 44px;
        height: 44px;
    }

    .bnr-start-btn {
        padding-right: 50px;
    }

    .bnr-start-btn::before {
        top: 0px;
        right: 0;
    }

    .bnr-wp-gif {
        width: 45px;
        top: 42%;
        left: 25%;
    }
}

@media screen and (max-width:768px) {
    .bnr-sec {
        /* padding: 30px 0; */
        padding: 175px 0 30px 0;
    }

    .bnr-sec .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .bnr-lft p {
        font-size: 15px;
        line-height: 1.5;
    }

    .bnr-nice-logo-btn {
        width: 42px;
        height: 42px;
    }

    .bnr-start-btn {
        padding-right: 48px;
        padding-right: 0 !important;
    }
    .bnr-nice-logo-btn{display: none !important;}
}

@media screen and (max-width:480px) {
    .bnr-blk {
        gap: 25px;
    }

    .bnr-lft p {
        font-size: 14px;
    }

    /* .bnr-btn-blk { gap: 15px; flex-direction: column-reverse; margin: auto !important; width: 100%; max-width: 200px; } */

    .bnr-btn-blk { gap: 10px; width: 100%; align-items: center; }

    .bnr-start-btn {
        padding-right: 45px;
        width: max-content;
    }

    .bnr-nice-logo-btn {
        width: 37px;
        height: 37px;
    }

    .bnr-wp-gif {
        width: 11%;
        top: 40%;
        left: 24%;
    }

    .bnr-btn-blk a.cmn-btn { font-size: 14px; padding: 10px 11px; }
    .bnr-lft .text-heading{margin-bottom: 10px;}
}



/* Awards Sec */
.awards-sec {
    padding: 30px 0 40px;
    background-color: #F5FAFF;
}

.awards-sec .container {
    max-width: 100%;
    padding: 0 30px;
}

.awards-main-blk {
    display: flex;
    align-items: center;
    gap: 10px;
}

.awards-slider {
    flex: 1;
    overflow: hidden;
}

.awards-blk {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: marquee 30s linear infinite;
    position: relative;
    z-index: 1;
}

.awards-img {
    background-color: #fff;
    border-radius: 8px;
    width: 402px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.awards-img img {
    display: block;
    width: 100%;
    height: auto;
}

.awards-blk:hover {
    animation-play-state: paused;
}

.our-work-blk {
    width: max-content;
}

.our-work-blk a {
    padding: 35px 65px 35px 25px;
    background: linear-gradient(to top, #286FFE 0%, #00359E 100%);
    border-radius: 8px;
    color: #fff;
    display: inline-block;
    font-family: 'Plus Jakarta Sans';
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    position: relative;
}

.our-work-blk a:hover {
    background: linear-gradient(to bottom, #286FFE 0%, #00359E 100%);
}

.our-work-blk a::before {
    position: absolute;
    content: "";
    background-image: url(../images/our-work-arr.webp);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: right center;
    top: 0;
    bottom: 0;
    right: 25px;
    left: 0;
    pointer-events: none;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        /* transform: translateX(-100%); */
        transform: translateX(-128%);
    }
}

/* Awards Responsive */
@media screen and (max-width:1800px) {
    .our-work-blk a {
        padding: 30px 60px 30px 22px;
        font-size: 19px;
    }

    .our-work-blk a::before {
        background-size: 20px 20px;
        right: 25px;
    }

    .awards-img {
        width: 380px;
    }
}

@media screen and (max-width:1680px) {
    .our-work-blk a {
        padding: 27px 57px 27px 20px;
        font-size: 18px;
    }

    .our-work-blk a::before {
        background-size: 18px 18px;
        right: 23px;
    }

    .awards-img {
        width: 360px;
    }
}

@media screen and (max-width:1551px) {
    .our-work-blk a {
        padding: 25px 55px 25px 20px;
    }

    .awards-img {
        width: 340px;
    }
}

@media screen and (max-width:1441px) {
    .awards-sec {
        padding: 25px 0 35px;
    }

    .our-work-blk a {
        padding: 23px 52px 23px 20px;
        font-size: 17px;
    }

    .our-work-blk a::before {
        background-size: 16px 16px;
        right: 20px;
    }

    .awards-img {
        width: 310px;
    }
}

@media screen and (max-width:1280px) {
    .awards-sec {
        padding: 17px 0 25px;
    }

    .our-work-blk a {
        padding: 18px 45px 18px 17px;
        font-size: 15px;
    }

    .our-work-blk a::before {
        background-size: 14px 14px;
        right: 18px;
        top: 3px;
    }

    .awards-img {
        width: 280px;
    }
}

@media screen and (max-width:1024px) {
    .awards-sec {
        padding: 15px 0 20px;
    }

    .awards-blk {
        gap: 10px;
    }

    .awards-img {
        width: 100%;
        max-width: 200px;
    }

    .our-work-blk a {
        padding: 15px 40px 15px 15px;
        font-size: 14px;
    }

    .our-work-blk a::before {
        right: 15px;
    }

    .awards-sec .container {
        padding: 0 10px;
    }
}

@media screen and (max-width:768px) {
    .our-work-blk a {
        padding: 13px 30px 15px 12px;
    }

    .our-work-blk a::before {
        right: 10px;
        background-size: 12px 12px;
        top: 0;
    }
}



/* Home About Section */

.hm-about-sec {
    padding: 110px 0 176px;
    position: relative;
    background-color: #F5FAFF;
    z-index: 1;
}

.hm-about-sec .container {
    max-width: 1780px;
    width: 100%;
    margin: auto;
}

.hm-about-sec::before {
    position: absolute;
    content: '';
    background-color: #fff;
    border-radius: 20px;
    width: calc(100% - 40px);
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
    pointer-events: none;
}

.about-list {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 20px;
}

.about-rit {
    width: 36.7%;
    position: relative;
}

.about-lft {
    width: 55.6%;
    padding-left: 60px;
    border-left: 1px solid rgb(29 73 195 / 20%);
    padding-top: 67px;
    margin-bottom: 0;
}

.about-lft .text-heading {
    margin-bottom: 37px;
    text-transform: unset;
}

.about-lft .about-lft-para {
    font-size: 22px;
    line-height: 1.72;
    letter-spacing: 0;
    color: #000;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans';
}

.about-lft .about-lft-para:last-child {
    margin-bottom: 0;
}

.about-rit-img {
    width: 64.9%;
    margin: auto;
}

.about-rit .sub-heading {
    margin-bottom: 96px;
}

.about-floating-btn {
    font-family: 'Plus Jakarta Sans';
    background: #DAD7FF;
    width: max-content;
    display: inline-block;
    padding: 14px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    color: #000;
    position: absolute;
    height: max-content;
    top: 56px;
    right: 0;
    right: 36px;
    will-change: transform;
}

.about-floating-btn.about-floating-btn-two {
    background: #DFF2F9;
    top: auto;
    bottom: -20px;
    left: -71px;
    animation: none;
    will-change: transform;
}

.about-floating-btn::before,
.about-floating-btn.about-floating-btn-two::before {
    content: "";
    position: absolute;
    width: 48px;
    height: 43px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.about-floating-btn::before {
    background-image: url(../images/about-float-arw.webp);
    bottom: -18px;
    left: -36px;
}

.about-floating-btn.about-floating-btn-two::before {
    background-image: url(../images/about-float-btm-arw.webp);
    top: -16px;
    right: -39px;
    left: auto;
}

.about-rit:hover .about-floating-btn {
    animation: floatTop 2s linear infinite;
}

.about-rit:hover .about-floating-btn.about-floating-btn-two {
    animation: floatBottom 2s linear infinite;
}


/* Top Button Movement */
@keyframes floatTop { 
    0% { transform: translate(0, 0); } 25% { transform: translate(20px, -15px); } 50% { transform: translate(40px, 0); } 75% { transform: translate(20px, 15px); } 100% { transform: translate(0, 0); } 
}

/* Bottom Button Movement - Opposite Direction */

@keyframes floatBottom {
    0% { transform: translate(0, 0); } 25% { transform: translate(-20px, 15px); } 50% { transform: translate(-40px, 0); } 75% { transform: translate(-20px, -15px); } 100% { transform: translate(0, 0); }
}

/* About Sec Responsive */

@media screen and (max-width:1900px) {
    .hm-about-sec .container {
        max-width: 1700px;
    }

    .hm-about-sec .text-heading {
        font-size: 67px;
    }
}

@media screen and (max-width:1800px) {
    .hm-about-sec {
        padding: 110px 0 160px;
    }

    .hm-about-sec .container {
        max-width: 1600px;
    }

    .hm-about-sec .text-heading {
        font-size: 62px;
    }

    .about-rit .sub-heading {
        margin-bottom: 88px;
    }

    .about-floating-btn {
        padding: 13px 40px;
        font-size: 16px;
        top: 56px;
        right: 18px;
    }

    .about-floating-btn::before {
        bottom: -17px;
        left: -31px;
    }

    .about-floating-btn.about-floating-btn-two {
        bottom: -35px;
        left: -40px;
    }

    .about-lft .about-lft-para {
        font-size: 20px;
    }

    .about-lft {
        padding-left: 48px;
        padding-top: 55px;
    }

    .about-floating-btn::before,
    .about-floating-btn.about-floating-btn-two::before {
        width: 41px;
    }

    .about-floating-btn.about-floating-btn-two::before {
        top: -15px;
        right: -32px;
    }

    .about-list {
        gap: 25px;
    }
}

@media screen and (max-width:1680px) {
    .hm-about-sec {
        padding: 100px 0 150px;
    }

    .hm-about-sec .container {
        max-width: 1500px;
    }

    .about-lft .about-lft-para {
        font-size: 21px;
    }

    .about-list {
        gap: 28px;
    }

    .about-floating-btn {
        font-size: 16px;
        padding: 12px 35px;
        top: 36px;
        right: 13px;
    }

    .about-floating-btn::before {
        bottom: -15px;
        left: -28px;
        width: 39px;
        height: 37px;
    }

    .about-floating-btn.about-floating-btn-two {
        left: -40px;
    }

    .about-lft {
            padding-left: 50px;
        padding-top: 51px;
    }

    .hm-about-sec .text-heading {
        font-size: 56px;
        margin-bottom: 33px;
    }

    .about-lft .about-lft-para {
        font-size: 18px;
    }

    .about-rit .sub-heading {
        margin-bottom: 65px;
    }

    .about-floating-btn::before,
    .about-floating-btn.about-floating-btn-two::before {
        width: 38px;
    }

}

@media screen and (max-width:1550px) {
    .hm-about-sec {
        padding: 90px 0 130px;
    }

    .hm-about-sec .container {
        max-width: 1400px;
    }

    .about-lft .text-heading {
        margin-bottom: 31px;
        font-size: 52px;
    }

    .about-lft {
        padding-left: 45px;
        padding-top: 55px;
    }

    .about-lft .about-lft-para {
        font-size: 17px;
    }

    .about-floating-btn {
        font-size: 15px;
        padding: 12px 30px;
        right: 13px;
    }

    .about-floating-btn.about-floating-btn-two {
        left: -30px;
    }

    .about-floating-btn::before,
    .about-floating-btn.about-floating-btn-two::before {
        width: 35px;
    }

    .about-floating-btn::before {
        bottom: -16px;
        left: -25px;
    }

    .about-floating-btn.about-floating-btn-two::before {
        top: -16px;
        right: -29px;
    }

    .about-rit .sub-heading {
        margin-bottom: 53px;
    }

}

@media screen and (max-width:1440px) {
    .hm-about-sec {
        padding: 80px 0 110px;
    }

    .about-list {
        gap: 45px;
    }

    .hm-about-sec .container {
        max-width: 1300px;
    }

    .about-lft {
        padding-left: 40px;
        padding-top: 52px;
    }

    .about-lft .text-heading {
        margin-bottom: 29px;
        font-size: 48px;
    }

    .about-lft .about-lft-para {
        font-size: 16px;
    }

    .about-floating-btn {
        padding: 10px 25px;
        right: -3px;
        top: 30px;
    }

    .about-floating-btn::before {
        bottom: -15px;
        left: -25px;
    }

    .about-floating-btn {
        font-size: 14px;
    }

    .about-floating-btn::before,
    .about-floating-btn.about-floating-btn-two::before {
        width: 35px;
    }

    .about-floating-btn::before {
        bottom: -19px;
        left: -30px;
    }

    .about-floating-btn.about-floating-btn-two::before {
        top: -17px;
        right: -31px;
    }

    .about-floating-btn.about-floating-btn-two {
        left: -25px;
        bottom: -26px;
    }

    .about-rit {
        width: 34%;
    }

    .about-rit .sub-heading {
        margin-bottom: 52px;
    }
}

@media screen and (max-width:1366px) {
    .hm-about-sec {
        padding: 70px 0 90px;
    }

    .hm-about-sec .container {
        max-width: 1200px;
    }

    .about-lft {
        padding-left: 35px;
        padding-top: 50px;
    }

    .about-floating-btn {
        padding: 10px 24px;
        right: -1px;
        top: 31px;
    }

    .about-rit .sub-heading {
        margin-bottom: 50px;
    }

    .about-floating-btn.about-floating-btn-two {
        left: -44px;
        bottom: -14px;
    }

    .about-floating-btn::before,
    .about-floating-btn.about-floating-btn-two::before {
        width: 33px;
    }

    .about-floating-btn.about-floating-btn-two::before {
        top: -18px;
        right: -26px;
    }

    .about-floating-btn::before {
        bottom: -16px;
        left: -24px;
    }


}

@media screen and (max-width:1280px) {
    .hm-about-sec {
        padding: 60px 0 80px;
    }

    .about-lft .text-heading {
        margin-bottom: 23px;
        font-size: 37px;
    }

    .hm-about-sec .container {
        max-width: 980px;
    }

    .about-lft .about-lft-para {
        font-size: 14px;
    }

    .about-lft {
        padding-left: 25px;
        padding-top: 48px;
    }

    .about-floating-btn {
        padding: 10px 20px;
        right: -7px;
        top: 30px;
        font-size: 13px;
    }

    .about-floating-btn.about-floating-btn-two {
        left: -10px;
        bottom: -18px;
    }

    .about-floating-btn::before,
    .about-floating-btn.about-floating-btn-two::before {
        width: 30px;
    }

    .about-floating-btn::before {
        bottom: -14px;
        left: -22px;
    }

    .about-floating-btn.about-floating-btn-two::before {
        top: -18px;
        right: -24px;
    }

    .about-rit .sub-heading {
        margin-bottom: 50px;
    }

    .about-list {
        gap: 45px;
        padding: 0 20px 0 0;
    }

}

@media screen and (max-width:1024px) {
    .hm-about-sec {
        padding: 60px 0;
    }

    .hm-about-sec::before {
        border-radius: 0;
    }

    .hm-about-sec .container {
        max-width: 720px;
    }

    .about-list {
        flex-direction: column;
        align-items: center;
        gap: 110px;
        padding: 0 20px;
    }

    .about-lft {
        padding: 0;
        width: 100%;
        border: none;
        text-align: center;
    }

    .about-lft .about-lft-para {
        font-size: 16px;
    }

    .about-rit {
        width: 100%;
        max-width: 420px;
    }

    .about-floating-btn {
        /* padding: 12px 45px;
        right: -50px; */
        padding: 12px 30px;
        right: -30px;
        top: 30px;
        font-size: 15px;
    }


    .about-floating-btn.about-floating-btn-two {
        /* left: -70px;
        bottom: -70px; */
        left: -60px;
        bottom: -60px;
    }

    .about-floating-btn::before,
    .about-floating-btn.about-floating-btn-two::before {
        width: 38px;
    }

    .about-floating-btn::before {
        bottom: -18px;
        left: -28px;
    }

    .about-floating-btn.about-floating-btn-two::before {
        top: -17px;
        right: -28px;
    }

    .about-rit-img { width: 56%;}

}

@media screen and (max-width:768px) {
    .hm-about-sec .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .hm-about-sec {
        padding: 50px 0 30px;
    }

    .about-lft .about-lft-para {
        font-size: 15px;
        line-height: 1.5;
    }

    .about-lft .text-heading {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .about-list {
        gap: 100px;
        padding: 0 10px;
    }

    .about-rit:hover .about-floating-btn {
        animation: none;
    }

    .about-rit:hover .about-floating-btn.about-floating-btn-two {
        animation: none;
    }

    .about-floating-btn {
        /* padding: 10px 30px; */
        padding: 10px 23px;
        right: 0px;
        font-size: 14px;
    }

    .about-floating-btn.about-floating-btn-two {
        left: 0;
    }

    .about-floating-btn::before,
    .about-floating-btn.about-floating-btn-two::before {
        width: 34px;
    }

    .about-floating-btn.about-floating-btn-two::before {
        top: -16px;
        right: -27px;
    }

    .about-floating-btn::before {
        bottom: -19px;
        left: -26px;
    }

    .about-rit-img { width: 40%; }
    
}

@media screen and (max-width:480px) {
    /* .about-floating-btn {
        padding: 8px 20px;
        right: 0px;
        font-size: 13px;
        top: 52px;
    } */

    .about-floating-btn { padding: 7px 16px; right: 0px; font-size: 12px; top: 52px; }

    .about-floating-btn.about-floating-btn-two {
        /* bottom: -55px; */
        bottom: -40px;
    }

    .about-floating-btn::before,
    .about-floating-btn.about-floating-btn-two::before {
        width: 30px;
    }

    .about-floating-btn::before,
    .about-floating-btn.about-floating-btn-two::before {
        width: 30px;
        width: 22px;    
    }

    .about-floating-btn::before {
        bottom: -20px;
        left: -22px;
    }


    .about-floating-btn.about-floating-btn-two::before {
        top: -16px;
        right: -24px;
    }

    .about-floating-btn::before {
    bottom: -13px;
    left: -22px;
}

    .about-list {
        gap: 90px;
        padding: 0 13px;
    }

    .about-lft .about-lft-para {
        font-size: 14px;
    }

    .about-rit .sub-heading {
        margin: 0 auto 70px;
    }
}


/* Home trust section */


.hm-trust-sec {
    padding: 77px 0px 95px;
    background: repeating-linear-gradient(90deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 4px, transparent 1px, transparent 79.7px), repeating-linear-gradient(0deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 2px, transparent 4px, transparent 79.8px);
    background-color: #fff;
    margin-top: 2px;
}

.hm-trust-sec .container {
    max-width: 1760px;
    margin: auto;
    width: 100%;
}

.trust-list {
    display: flex;
    justify-content: center;
    margin-bottom: 97px;
}

.trust-blk {
    padding: 0 0 0 77px;
}

.trust-lft {
    width: 43%;
    overflow: hidden;
}

.trust-rit {
    width: 57.2%;
    position: relative;
}

.trust-loop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    width: max-content;
    animation: scrollLoop 20s linear infinite;
    overflow: hidden;
    background: rgb(245 250 255 / 50%);
    padding: 30px 0;
    border: 1px solid rgb(29 73 195 / 10%);
    margin-bottom: 76px;
}

.trust-loop:hover {
    animation-play-state: paused;
}

.tl-title {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0px;
    color: #000;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    padding-right: 72px;
}

.tl-title::before {
    position: absolute;
    content: '';
    background-image: url(../images/trust-title-slide-arw.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 30px;
    height: 30px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.trust-title-blk {
    padding: 78px 30px 78px 55px;
    background: rgb(245 250 255 / 50%);
    width: 97.7%;
    border: 1px solid #1d49c31a;
}

.trust-title {
    font-family: 'Mona Sans';
    font-weight: 800;
    font-size: 40px;
    line-height: 1.33;
    letter-spacing: 0px;
    color: #000;
    margin-bottom: 23px;
}

.trust-title strong {
    color: #0040C1;
    font-weight: inherit;
}

.trust-para {
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: 0px;
    color: #000;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    margin: 0;
    margin-bottom: 0px;
    padding-left: 25px;
    border-left: 1px solid #0040C1;
    width: 70%;
}

.trusted-agencies {
    width: 243px;
    height: 163px;
    place-content: center;
    background: #f5faff80;
    border: 1px solid #1d49c31a;
    position: unset;
}

.trusted-agencies img {
    opacity: 50%;
}

.trusted-agencies:hover img {
    opacity: 100%;
}

.trusted-agencies img{width: 100% !important;    height: 100%;
    object-fit: cover;}

.trusted-agencies.logo1 img {
    width: 62.4%;
    margin: auto;
}

.trusted-agencies.logo2 img {
    width: 62.4%;
    margin: auto;
}

.trusted-agencies.logo3 img {
    width: 83%;
    margin: auto;
}

.trusted-agencies.logo4 img {
    width: 59.9%;
    margin: auto;
}

.trusted-agencies.logo5 img {
    width: 57%;
    margin: auto;
}

.trusted-agencies.logo6 img {
    width: 62.3%;
    margin: auto;
}

/* .trusted-agencies.logo1 {top: 0px; left: 8%; }
.trusted-agencies.logo2 {right: 15.5%; top: 0px; }
.trusted-agencies.logo3 {left: 25.2%; margin: auto; top: 0; bottom: 0; }
.trusted-agencies.logo4 {top: 0; bottom: 0; right: 0; margin: auto; }
.trusted-agencies.logo5 {bottom: 0; left: 0; }
.trusted-agencies.logo6 {right: 24%; bottom: 0; margin: auto; } */
.trust-btm-blk {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    width: 100%;
    max-width: 1001px;
    margin: 0 auto;
}

.trust-graph-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
    width: 30.3%;
}

.trust-graph-title {
    font-family: 'Mona Sans';
    font-weight: 600;
    color: #000;
    line-height: 1;
    letter-spacing: 0px;
    font-size: 15px;
}

.ftr-left-cnt p {
    letter-spacing: 0px;
}

.trust-graph-title strong {
    color: #0040C1;
    font-weight: 800;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0px;
    display: block;
}

.trust-graph-img {
    width: 35.8%;
}

.trust-row {
    width: 100%;
    max-width: 720px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 75px !important;
}

.trust-row:first-child {
    margin: 0 auto;
    margin-left: 80px;
}

.trust-row:nth-child(2) {
    margin: 0 0 0 auto;
}

.trust-row:last-child {
    margin: 0 auto 0 0 !important;
}

@keyframes scrollLoop {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}

/*Trusted Section  */
@media screen and (max-width:1800px) {
    .hm-trust-sec {
        padding: 70px 0px;
        background: repeating-linear-gradient(90deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 4px, transparent 1px, transparent 75.2px), repeating-linear-gradient(0deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 2px, transparent 4px, transparent 79px);
    }

    .trust-row:first-child {
        margin: 0 auto;
        margin-left: 75px;
    }

    .trust-row {
        max-width: 700px;
        margin-bottom: 70px !important;
    }

    .hm-trust-sec .container {
        max-width: 1600px;
    }

    .trust-blk {
        padding: 0 0 0 65px;
    }

    .trust-title-blk {
        padding: 70px 28px 80px 50px;
    }

    .trust-title {
        font-size: 37px;
        margin-bottom: 21px;
    }

    .trust-para {
        font-size: 20px;
        padding-left: 22px;
    }

    .trust-loop {
        gap: 32px;
        padding: 28px 0;
        margin-bottom: 65px;
    }

    .tl-title {
        font-size: 21px;
        padding-right: 70px;
    }

    .trust-list {
        margin-bottom: 85px;
    }

    .trusted-agencies {
        width: 230px;
        height: 150px;
    }

    .trust-graph-item {
        gap: 35px;
    }

}

@media screen and (max-width:1680px) {
    .hm-trust-sec .container {
        max-width: 1500px;
    }

    .tl-title {
        font-size: 19px;
        padding-right: 60px;
    }

    .tl-title::before {
        width: 25px;
        height: 25px;
    }

    .trust-loop {
        gap: 32px;
        padding: 25px 0;
        margin-bottom: 60px;
    }

    .trust-title-blk {
        padding: 60px 24px 70px 43px;
    }

    .trust-title {
        font-size: 35px;
        margin-bottom: 19px;
    }

    .trust-row:first-child {
        margin-left: 70px;
    }

    .trust-row {
        max-width: 630px;
        margin-bottom: 65px !important;
    }

    .trust-blk {
        padding: 0 0 0 60px;
    }

    .trust-para {
        font-size: 18px;
        padding-left: 20px;
    }

    .trusted-agencies {
        width: 220px;
        height: 140px;
    }

    .trust-graph-item {
        gap: 32px;
    }

    .trust-graph-title strong {
        font-size: 28px;
    }

    .trust-graph-title {
        font-size: 14px;
    }

    .trust-btm-blk {
        gap: 38px;
    }

    .hm-trust-sec {
        background: repeating-linear-gradient(90deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 4px, transparent 1px, transparent 69.4px), repeating-linear-gradient(0deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 2px, transparent 4px, transparent 74.2px);
    }

}

@media screen and (max-width:1550px) {
    .hm-trust-sec .container {
        max-width: 1400px;
    }

    .trust-blk {
        padding: 0 0 0 55px;
    }

    .trust-loop {
        gap: 30px;
        padding: 23px 0;
        margin-bottom: 55px;
    }

    .trust-title {
        font-size: 33px;
        margin-bottom: 18px;
    }

    .tl-title {
        font-size: 18px;
        padding-right: 55px;
    }

    .tl-title::before {
        width: 22px;
        height: 22px;
    }

    .trust-title-blk {
        padding: 55px 22px 65px 37px;
    }

    .trust-row:first-child {
        margin-left: 65px;
    }

    .trust-row {
        max-width: 590px;
        margin-bottom: 57px !important;
    }

    .trust-list {
        margin-bottom: 80px;
    }

    .trust-para {
        font-size: 17px;
    }

    .trusted-agencies {
        width: 200px;
        height: 130px;
    }

    .trust-graph-item {
        gap: 28px;
    }

    .trust-graph-title strong {
        font-size: 26px;
    }

    .hm-trust-sec {
        background: repeating-linear-gradient(90deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 4px, transparent 1px, transparent 64.8px), repeating-linear-gradient(0deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 2px, transparent 4px, transparent 67.3px);
    }
}

@media screen and (max-width:1440px) {
    .hm-trust-sec {
        background: repeating-linear-gradient(90deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 4px, transparent 1px, transparent 61.7px), repeating-linear-gradient(0deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 2px, transparent 4px, transparent 63.2px);
        padding: 65px 0px;
    }

    .hm-trust-sec .container {
        max-width: 1300px;
    }

    .trust-title {
        font-size: 30px;
        letter-spacing: 0.3px;
        margin-bottom: 16px;
    }

    .trust-para {
        font-size: 16px;
    }

    .trust-title-blk {
        padding: 50px 21px 60px 35px;
    }

    .trusted-agencies {
        width: 190px;
        height: 120px;
    }

    .trust-blk {
        padding: 0 0 0 50px;
    }

    .trust-row:first-child {
        margin-left: 60px;
    }

    .trust-row {
        max-width: 540px;
        margin-bottom: 55px !important;
    }

    .trust-graph-title strong {
        font-size: 22px;
    }

    .trust-graph-item {
        gap: 25px;
    }

    .trust-list {
        margin-bottom: 75px;
    }
}

@media screen and (max-width:1366px) {
    .hm-trust-sec {
        background: repeating-linear-gradient(90deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 4px, transparent 1px, transparent 57.4px), repeating-linear-gradient(0deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 2px, transparent 4px, transparent 60px);
        padding: 65px 0px;
    }

    .hm-trust-sec .container {
        max-width: 1200px;
    }

    .trust-blk {
        padding: 0 0 0 45px;
    }

    .tl-title {
        font-size: 16px;
        padding-right: 50px;
    }

    .trust-loop {
        gap: 25px;
        padding: 20px 0;
        margin-bottom: 45px;
    }

    .trust-title-blk {
        padding: 45px 18px 55px 29px;
    }

    .trust-title {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .trust-row:first-child {
        margin-left: 26px;
    }

    .trust-row {
        max-width: 520px;
        margin-bottom: 44px !important;
    }

    .trust-para {
        font-size: 15px;
        padding-left: 18px;
    }

    .trusted-agencies {
        width: 180px;
        height: 115px;
    }

    .trust-list {
        margin-bottom: 70px;
    }

    .trust-btm-blk {
        gap: 34px;
    }


}

@media screen and (max-width:1280px) {
    .hm-trust-sec {
        background: repeating-linear-gradient(90deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 4px, transparent 1px, transparent 52.9px), repeating-linear-gradient(0deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 2px, transparent 4px, transparent 56.6px);
        padding: 60px 0px;
    }

    .hm-trust-sec .container {
        max-width: 1100px;
    }

    .trust-para {
        font-size: 14px;
        padding-left: 16px;
        width: 75%;
    }

    .trust-title {
        font-size: 25px;
        margin-bottom: 12px;
    }

    .trusted-agencies {
        width: 160px;
        height: 100px;
    }

    .trust-row:first-child {
        margin-left: 24px;
    }

    .trust-row {
        max-width: 470px;
        margin-bottom: 42px !important;
    }

    .trust-list {
        margin-bottom: 65px;
    }

    .trust-graph-item {
        gap: 22px;
    }

    .tl-title::before {
        width: 20px;
        height: 20px;
    }

    .trust-btm-blk {
        gap: 32px;
    }

    .trust-title-blk {
        padding: 45px 19px 55px 26px;
    }


}

@media screen and (max-width:1180px) {
    .hm-trust-sec {
        background: repeating-linear-gradient(90deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 4px, transparent 1px, transparent 45.9px), repeating-linear-gradient(0deg, rgb(51 51 51 / 3%) 0px, rgb(51 51 51 / 3%) 2px, transparent 4px, transparent 43.3px);
        padding: 60px 0px;
    }

    .hm-trust-sec .container {
        max-width: 980px;
    }

    .tl-title {
        font-size: 15px;
        padding-right: 45px;
    }

    .tl-title::before {
        width: 18px;
        height: 18px;
    }

    .trust-loop {
        gap: 22px;
        padding: 18px 0;
        margin-bottom: 40px;
    }

    .trust-title-blk {
        padding: 40px 17px 50px 24px;
    }

    .trust-row {
        max-width: 440px;
        margin-bottom: 40px !important;
    }

    .trust-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .trust-para {
        font-size: 14px;
        padding-left: 14px;
        width: 81%;
    }

    .trust-title {
        font-size: 22px;
        margin-bottom: 11px;
    }

    .trust-graph-item {
        gap: 20px;
    }

    .trust-btm-blk {
        gap: 30px;
    }

    .trusted-agencies {
        width: 150px;
        height: 90px;
    }

    .trust-graph-title {
        font-size: 13px;
    }

}

@media screen and (max-width:1024px) {
    .hm-trust-sec .container {
        max-width: 720px;
        padding: 0 20px;
    }


    .hm-trust-sec{padding: 50px 0;}

    .trust-list {
        margin-bottom: 35px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .trust-lft {
        width: 100%;
        overflow: hidden;
    }

    .trust-loop {
        gap: 20px;
        padding: 16px 0;
        margin-bottom: 30px;
    }

    .trust-title-blk {
        padding: 30px;
        width: 100%;
    }

    .trust-title {
        font-size: 30px;
        margin-bottom: 15px;
        text-align: center;
    }

    .trust-para {
        font-size: 15px;
        padding-left: 0;
        width: 100%;
        border: 0px;
        text-align: center;
    }

    .trust-title-blk {
        padding: 30px;
        width: 100%;
        margin-bottom: 30px;
    }

    .trusted-agencies {
        width: 160px;
        height: 115px;
    }

    .trust-rit {
        width: 100%;
        display: flex;
        position: relative;
        flex-wrap: wrap;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }

    .trusted-agencies img {
        opacity: 1;
    }

    .trust-btm-blk {
        gap: 20px;
        justify-content: center;
    }

    .trust-blk {
        padding: 0px;
    }

    .trust-graph-item {
        gap: 16px;
        width: fit-content;
    }

    .trust-row {
        max-width: 100%;
        margin: 0 !important;
        justify-content: center;
        gap: 20px;
    }

    .trust-row:last-child {
        margin: 0 !important;
    }
}

@media screen and (max-width:768px) {
    .hm-trust-sec .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .trust-title-blk {
        padding: 15px;
        margin-bottom: 25px;
    }

    .trust-title {
        font-size: 20px;
        margin-bottom: 13px;
    }
    .trust-graph-item {
        gap: 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .trust-graph-img{width: 88%;}
    .trust-graph-img img{margin: 0 auto;}

    .hm-trust-sec{padding: 40px 0;}
}

@media screen and (max-width: 480px) {
    .trust-btm-blk {
        gap: 12px;
    }
    .trust-graph-img { width: 78%; }
}

/* Delivery Process Sec */

section.delivery-process {
    padding: 0 10px;
}


.delivey-process-sec {
    background-color: #C2E0FF;
    border-radius: 40px;
    padding: 77px 0 85px;
}

.delivey-process-sec .container {
    max-width: 100%;
    padding: 0px 2.8%;
}


.process-top-cnt {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.process-top-cnt .text-heading {
/*     font-size: 80px; */
/*     margin-bottom: 20px; */
    text-transform: inherit;
}

.process-top-cnt .text-heading {
/*     font-size: 80px; */
		font-size: 70px;

    margin-bottom: 20px;
}

.process-top-cnt .text-heading strong {
/*     display: block;
    color: #000; */
	display: unset; color: #0040c1; 
	
}

.process-top-cnt p {
    margin-bottom: 37px;
}

.delivery-process-blk {
    display: flex;
    justify-content: flex-start;
    gap: 9px;
    flex-wrap: wrap;
    counter-reset: process-counter;
}

.delivery-process-itm {
    width: 19.5%;
    background-color: #fff;
    padding: 26px 30px 140px 39px;
    border-radius: 20px;
    counter-increment: process-counter;
}

.delivery-process-itm::before {
    content: counter(process-counter, decimal-leading-zero);
    font-family: 'Mona Sans';
    font-size: 90px;
    font-weight: 400;
    line-height: 0.9;
    color: #D2D2D2;
    margin-bottom: 0;
    display: block;
    height: auto;
}

.process-title {
    font-family: 'Mona Sans';
    font-weight: 800;
    font-size: 22px;
    line-height: 1.45;
    color: #1D60E4;
    margin-bottom: 6px;
}

.delivery-process-itm:hover {
    background-image: linear-gradient(to top, #286ffe, #2260e5, #1951cd, #0f43b5, #00359e);
}

.delivery-process-itm:hover .process-title,
.delivery-process-itm:hover p {
    color: #fff;
}

.delivery-process-itm:hover .process-num::before {
    color: #d2d2d2;
}

.delivery-process-itm p {
    font-size: 16px;
    line-height: 2.1;
}

.delivery-process-itm p:last-child {
    margin: 0;
}

/* Delivery Process Sec Responsive */

@media screen and (max-width:1841px) {
    .delivery-process-blk {
        gap: 10px;
    }
}

@media screen and (max-width:1800px) {
    .delivey-process-sec {
        padding: 45px 0 90px;
    }

    .process-top-cnt .text-heading {
/*         font-size: 72px; */
		        font-size: 68px;

    }

    .process-top-cnt {
        max-width: 1250px;
    }

    .process-top-cnt p {
        margin-bottom: 50px;
    }

    .delivery-process-itm {
        padding: 35px 22px 60px 23px;
    }

    .delivery-process-itm::before {
        font-size: 80px;
    }

    .process-title {
        font-size: 20px;
    }

    .delivery-process-blk {
        gap: 8px;
    }

    .delivey-process-sec .container {
        padding: 0 50px 0 45px;
    }
}

@media screen and (max-width:1680px) {
    .delivey-process-sec {
        padding: 45px 0 80px;
    }

    .process-top-cnt .text-heading {
/*         font-size: 67px; */
		font-size: 60px;
    }

    .process-top-cnt {
        max-width: 1150px;
    }

    .process-top-cnt p {
        margin-bottom: 50px;
    }

    /* .delivery-process-blk {
        gap: 10px;
    } */

    .delivery-process-itm {
        padding: 30px 19px 52px 19px;
    }

    .delivery-process-itm::before {
        font-size: 74px;
    }

    .process-title {
        font-size: 19px;
    }

    .delivey-process-sec .container {
        padding: 0 45px 0 40px;
    }

    .delivery-process-itm p {
        font-size: 15px;
        line-height: 2;
    }
}

@media screen and (max-width:1550px) {
    .delivey-process-sec {
        padding: 40px 0 70px;
        border-radius: 35px;
    }

    .delivey-process-sec .container {
        padding: 0 40px 0 35px;
    }

    .process-top-cnt .text-heading {
/*         font-size: 65px; */
		        font-size: 60px;
        margin-bottom: 16px;
    }

    .process-top-cnt p {
        margin-bottom: 42px;
    }

    .process-top-cnt {
        max-width: 1040px;
    }

    .delivery-process-itm {
        padding: 25px 15px 45px 15px;
        border-radius: 17px;
    }

    .delivery-process-itm::before {
        font-size: 70px;
    }

    .process-title {
        font-size: 18px;
    }

    .delivery-process-itm p {
        font-size: 14px;
        line-height: 1.9;
    }
}

@media screen and (max-width:1440px) {
    .delivey-process-sec {
        padding: 40px 0 60px;
        border-radius: 30px;
    }

    .delivey-process-sec .container {
        padding: 0 35px 0 30px;
    }

    .process-top-cnt .text-heading {
/*         font-size: 62px; */
                font-size: 54px;
		margin-bottom: 14px;
		
    }

    .process-top-cnt {
        max-width: 980px;
    }

    .process-top-cnt p {
        margin-bottom: 35px;
    }

    .delivery-process-blk {
        gap: 8px;
    }

    .delivery-process-itm::before {
        font-size: 66px;
    }

    .delivery-process-itm {
        padding: 25px 15px 40px 15px;
        width: 19.4%;
    }

    .process-title {
        font-size: 17px;
    }
}

@media screen and (max-width:1366px) {
    .delivey-process-sec {
        padding: 35px 0 50px;
        border-radius: 28px;
    }

    .delivey-process-sec .container {
        padding: 0 30px 0 25px;
    }

    .process-top-cnt .text-heading {
/*         font-size: 58px; */
                font-size: 48px;
		margin-bottom: 14px;
		
    }

    .process-top-cnt {
        max-width: 920px;
    }

    .delivery-process-itm::before {
        font-size: 62px;
    }

    .process-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .delivery-process-itm p {
        line-height: 1.8;
    }
}

@media screen and (max-width:1280px) {
    .delivey-process-sec {
        padding: 30px 0 40px;
        border-radius: 25px;
    }

    .process-top-cnt .text-heading {
/*         font-size: 50px; */
		font-size: 40px;
        margin-bottom: 12px;
    }

    .process-top-cnt {
        max-width: 870px;
    }

    .process-top-cnt p {
        margin-bottom: 30px;
    }

    .delivery-process-blk {
        gap: 7px;
    }

    .delivey-process-sec .container {
        padding: 0 20px 0 15px;
    }

    .delivery-process-itm::before {
        font-size: 55px;
    }

    .delivery-process-itm {
        padding: 20px 12px 35px 12px;
        border-radius: 15px;
    }

    .delivery-process-itm p {
        font-size: 13px;
    }

    .process-title {
        font-size: 14px;
    }
}

@media screen and (max-width:1024px) {
    .delivey-process-sec {
        padding: 30px 0;
    }

    .process-top-cnt .text-heading {
/*         font-size: 46px; */
		font-size: 35px;
        margin-bottom: 15px;
    }

    .process-top-cnt {
        max-width: 100%;
    }

    .delivery-process-itm {
        width: 32%;
        padding: 30px 20px 50px 20px;
    }

    .process-title {
        font-size: 18px;
    }

    .delivery-process-itm::before {
        font-size: 60px;
    }

    .delivery-process-itm p {
        font-size: 14px;
    }

    .delivery-process-blk {
        justify-content: center;
    }
    .process-top-cnt p{margin-bottom: 20px;}

}

@media screen and (max-width:768px) {

    .delivey-process-sec{border-radius: 15px;}
    .delivery-process-blk.owl-carousel .owl-stage {
        display: flex;
    }

    .delivery-process-itm {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    height: 100%;
}

    .process-top-cnt .text-heading strong {
        display: inline;
    }

    .process-top-cnt .text-heading {
/*         font-size: 38px; */
		        font-size: 30px;
    }

    .process-title {
        font-size: 18px;
    }

    .delivery-process-itm::before {
        /* font-size: 66px; */
        font-size: 45px;
        content: attr(data-count);
    }

    .delivery-process-itm p {
        line-height: 1.5;
    }

    .delivery-process-blk.owl-carousel .owl-dots.disabled {
        display: block;
    }

    .delivery-process-blk.owl-carousel .owl-dots {
        text-align: center;
        margin: 20px auto 0;
    }

    .delivery-process-blk.owl-carousel .owl-dot {
        background-color: #0040C1;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        margin: 0 3px;
    }

    .delivery-process-blk.owl-carousel .owl-dot.active {
        background-color: #286ffe;
    }
    .delivery-process-blk {
    max-width: 320px;
    margin: 0 auto;
}
}

@media screen and (max-width:480px) {
    .process-top-cnt .text-heading {
/*         font-size: 32px; */
		        font-size: 25px
    }

    .delivery-process-blk.owl-carousel .owl-dots { margin: 10px auto 0; }
    .process-top-cnt .text-heading {  margin-bottom: 10px; }
}



/* Our Service Section */
.hmour-services-section .sub-heading {
    margin: auto;
    margin-bottom: 5px
}

.hmour-services-section .text-heading {
    margin-bottom: 45px;
    text-align: center;
}

.hmour-services-section {
    padding: 100px 0 120px;
    background-color: #fff;
}

.our-services-section {
    padding: 120px 0;
}

.our-servces-lst {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.servces-title {
    font-size: 33px;
    font-family: 'Mona Sans';
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #000;
}
.servces-title a{
    line-height: 1.1;
    display: block;
}

.our-servces-para {
    margin: 0 0 72px;
}

.our-servces-content p {
    font-size: 18px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
    margin: 0 0px;
    opacity: 0;
    color: #000;
}

.our-servces-btn a {
    font-size: 18px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.3;
    text-decoration: none;
    opacity: 0;
    color: #1D49C3;
}

/* Hover animation Image */
.our-servces-item {
    position: relative;
    overflow: hidden;
    width: 32%;
    padding: 41px 25px 35px 50px;
    background-color: #F5FAFF;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.our-servces-item .image {
    position: absolute;
    bottom: 40px;
    left: 0;
    transform: translateX(0%) rotate(0deg);
    transition: all 0.4s ease-in-out;
    right: 0;
    margin: auto;
    width: 109px;
}

.our-servces-item .image.wordpress {
    width: 17.4%;
}

.our-servces-item .image.shopify {
    width: 14.3%;
}

.our-servces-item .image.webflow {
    width: 16.2%;
}

.our-servces-item .image.cms {
    width: 24.5%;
}

.our-servces-item .image.duda {
    width: 20.3%;
}

.our-servces-item .image.seo {
    width: 19.3%;
}

/* .our-servces-item .image.ios-android{width:22.9% ;} */

.our-servces-item:hover .image img {
    display: block;
    /* width: 100%; */
    width: auto;
}

/* Hover */
.our-servces-item:hover {
    border: 1px solid #0641b8;
}

.our-servces-item:hover .our-servces-btn a,
.our-servces-item:hover .our-servces-content p {
    opacity: 1;
}

.our-servces-btn a:hover{
    color: #000;
}

.our-servces-item:hover .image {
    left: 90%;
    bottom: 10px;
    transform: translateX(-70%) rotate(0deg);
}

.our-servces-item:hover .servces-title {
    color: #0040C1;
}

.our-servces-item.no-para {
    min-height: 300px;
    padding-bottom: 7%;
}
.our-servces-item.no-para .our-servces-btn {
    position: absolute;
    bottom: 20%;
}
/* Services Sec Responsive */

/* Services Sec Responsive */

@media screen and (max-width:1680px) {
    .hmour-services-section .container {
        max-width: 1400px;
    }

    .hmour-services-section {
        padding: 90px 0 100px;
    }

    .hmour-services-section .text-heading {
        margin-bottom: 40px;
    }

    .our-servces-lst {
        gap: 26px;
    }

    .our-servces-item {
        padding: 45px 25px 27px;
    }

    .servces-title {
        font-size: 28px;
        margin: 0 0 17px;
    }

    .our-servces-btn a {
        font-size: 17px;
    }

    .our-servces-content p {
        font-size: 17px;
    }

    .our-servces-para {
        margin: 0 0 68px;
    }
}

@media screen and (max-width:1550px) {
    .hmour-services-section .container {
        max-width: 1300px;
    }

    .hmour-services-section {
        padding: 80px 0 90px;
    }

    .hmour-services-section .text-heading {
        margin-bottom: 35px;
    }

    .our-servces-lst {
        gap: 24px;
    }

    .our-servces-item {
        padding: 40px 20px 25px;
    }

    .servces-title {
        font-size: 25px;
    }

    .our-servces-content p {
        font-size: 17px;
    }

    .our-servces-para {
        margin: 0 0 64px;
    }

    .our-servces-item.no-para { min-height: 280px; }
}

@media screen and (max-width:1440px) {
    .hmour-services-section .container {
        max-width: 1200px;
    }

    .hmour-services-section {
        padding: 65px 0 75px;
    }

    .our-servces-lst {
        gap: 22px;
    }

    .our-servces-item {
        padding: 35px 17px 23px;
    }

    .servces-title {
        font-size: 23px;
        margin: 0 0 15px;
    }

    .our-servces-content p {
        font-size: 15px;
    }

    .our-servces-btn a {
        font-size: 16px;
    }

    .our-servces-para {
        margin: 0 0 60px;
    }

    .our-servces-item.no-para { min-height: 250px; }
}

@media screen and (max-width:1366px) {
    .hmour-services-section .container {
        max-width: 1100px;
    }

    .hmour-services-section {
        padding: 55px 0 65px;
    }

    .hmour-services-section .text-heading {
        margin-bottom: 30px;
    }

    .our-servces-lst {
        gap: 21px;
    }

    .our-servces-para {
        margin: 0 0 55px;
    }

    .our-servces-item.no-para { min-height: 220px; }
}

@media screen and (max-width:1280px) {
    .hmour-services-section .container {
        max-width: 960px;
    }

    .hmour-services-section {
        padding: 40px 0 55px;
    }

    .our-servces-lst {
        gap: 18px;
    }

    .our-servces-item {
        padding: 30px 15px 20px;
    }

    .servces-title {
        font-size: 20px;
        margin: 0 0 12px;
    }

    .our-servces-content p {
        font-size: 14px;
    }

    .our-servces-btn a {
        font-size: 14px;
    }

    .our-servces-para {
        margin: 0 0 50px;
    }

    .hmour-services-section .text-heading {
        margin-bottom: 25px;
    }
}

@media screen and (max-width:1024px) {
    .hmour-services-section .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .our-servces-lst {
        gap: 14px;
        justify-content: center;
        /* align-items: center; */
    }

    .hmour-services-section {
        padding: 50px 0;
    }

    .our-servces-item {
        padding: 35px 25px;
        width: 100%;
        max-width: 320px;
        height: auto;
        transition: none;
    }

    .our-servces-lst.owl-carousel .owl-stage {
        display: flex;
    }

    .our-servces-btn a {
        bottom: 20px;
        font-size: 16px;
    }

    .our-servces-content p {
        font-size: 15px;
    }

    .our-servces-item .image.ios-android {
        bottom: 15%;
    }

    .servces-title {
        font-size: 23px;
    }

    .our-servces-lst.owl-carousel .owl-dots {
        text-align: center;
        margin: 20px auto 0;
    }

    .our-servces-lst.owl-carousel .owl-dot {
        background-color: #0040C1;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        margin: 0 3px;
    }

    .our-servces-lst.owl-carousel .owl-dot.active {
        background-color: #286ffe;
    }

    .our-servces-para {
        margin: 0 0 40px;
    }

    .image {
        width: 60px !important;
    }
}

@media screen and (max-width:768px) {
    .hmour-services-section {
        padding: 40px 0;
    }

    .image { width: 45px !important; }
    .our-servces-item { padding: 25px 20px; border: 1px solid #0641b8;     border-radius: 15px;}
    .servces-title{font-size: 22px;}
    .our-servces-content p{font-size: 14px;}
    .our-servces-para { margin: 0 0 25px; }

    .our-servces-item .our-servces-btn a, .our-servces-item .our-servces-content p { opacity: 1; }
    .our-servces-item .image { left: 90%; bottom: 10px; transform: translateX(-70%) rotate(0deg); }

    .our-servces-item.no-para {
    min-height: 180px;
}
}

@media screen and (max-width:480px) {
    .image { width: 35px !important; }
    .servces-title{font-size: 21px;}
    .our-servces-item { padding: 20px 15px; }
    /* .our-servces-para { margin: 0 0 20px; } */

    .text-heading br { display: none !important; }

    .our-servces-item.no-para { min-height: 160px; }
}



/* Our Speciality Scetion */

.hmour-speciality-section .sub-heading {
    margin-bottom: 7px;
}

.our-speciality-contn-blk {
    display: flex;
    justify-content: space-between;
    margin: 0 0 50px;
    align-items: start;
}

.our-speciality-left {
    width: 51%;
    padding-top: 18px;
}

.our-speciality-top {
    margin-bottom: 32px;
}

.our-speciality-top .text-heading {
    margin-bottom: 15px;
    line-height: 1.14;
}

.speciality-left-contnt {
    font-size: 20px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.speciality-left-lst ul {
    list-style: none;
    margin: 0;
}

.speciality-left-lst ul li {
    font-size: 24px;
    font-family: 'Mona Sans';
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.1;
    color: #000;
    margin: 0 0 24px;
    position: relative;
    padding-left: 0;
    padding: 10px 5px;
}

.speciality-left-lst ul li:last-child {
    margin: 0;
}

.speciality-left-lst ul li:hover {
    padding-left: 90px;
    color: #0040C1;
}

.speciality-left-lst ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 40px;
    background: url("../images/moving-arr.webp") repeat-x;
    background-size: contain;
    animation: marqueeArrow 0.5s linear infinite;
    display: none;
}

@keyframes marqueeArrow {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 40px 0;
    }
}

.speciality-left-lst ul li:hover:before {
    display: block;
}


.our-speciality-rite {
    width: 46.6%;
    background-color: #F5FAFF;
    padding: 30px 45px 30px 30px;
    border-radius: 0;
    border: 1px solid #0040c11a;
}

.speciality-title {
    font-size: 36px;
    font-family: 'Mona Sans';
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
    color: #000 ;
    margin: 0 0 10px;
    text-align: center;
    background-color: #fff;
    padding: 20px 40px 20px 50px;
    border-radius: 10px;
}

.speciality-title strong{
    color: #0040C1;
}

.speciality-img-blk {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    margin-bottom: 35px;
}

.speciality-img-itm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.speciality-img-lst {
    background-color: #fff;
    padding: 28px 26px;
    width: 28%;
    border-radius: 10px;
}

.speciality-img-lst .speciality-img-itm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 11px;
    padding: 0 0 28px;
    border-bottom: 1px solid #C2E0FF;
    margin: 0 0 26px;
}

.speciality-img-lst .speciality-img-itm:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.speciality-img {
    filter: grayscale(100%);
    width: 26px;
}

.speciality-img-lst .speciality-img-itm:hover .speciality-img {
    filter: grayscale(0%);
}

.speciality-img img {
    width: 100%;
    display: block;
}

.rite-migration-itm {
    width: 32%;
    position: relative;
    z-index: 0;
    margin-top: 6%;
}

.rite-migration-title {
    text-align: center;
    font-size: 15px;
    font-family: 'Mona Sans';
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.3;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    position: relative;
    /* background-image: url(https://www.nicedigitals.com/nicedigitalsdev/wp-content/uploads/2026/06/migration-rotate-img.gif);
    background-size: cover; */
}
.rite-migration-title:before {
    position: absolute;
    content: "";
    inset: 0;
    background-color: #fff;
    z-index: -1;
    border-radius: 100%;
    width: calc(100% - 14%);
    height: calc(100% - 14%);
    margin: auto;
}

.rite-migration-title strong {
    display: block;
    color: #1D49C3;
    font-weight: inherit;
}

.rite-migration-img {
    width: 100%;
    position: relative;
    z-index: 0;
}

.rite-migration-img img {
    width: 100%;
    display: block;
}

.speciality-img-lst.hover-roller .speciality-img-itm {
    flex-direction: column;
    padding: 0;
    border: 0;
}

.destination-platform {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 33px 35px 33px;
}

.speciality-gif {
    height: 90px;
    width: 90px;
    margin: 0 auto 5px;
}

.speciality-gif img {
    display: block;
    width: 100%;
}

.destination-platform .speciality-text {
    margin-bottom: 30px;
    text-align: center;
}

.speciality-img-lst.hover-roller .speciality-contnt-lst ul {
    list-style: none;
}

.speciality-contnt-lst ul li {
    padding-left: 20px;
    margin: 0 0 10px;
    position: relative;
    z-index: 0;
}

.speciality-btm-contnt-lst {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
}

.speciality-text {
    font-size: 15px;
    font-family: 'Mona Sans';
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
    margin-bottom: 0;
    color: #000;
}

.migration-process-item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 20px;
}

.migration-process-item:last-child {
    margin: 0;
}

.migration-process-title {
    font-family: 'Mona Sans';
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #000;
}

.speciality-btm-itm .speciality-btm-count {
    font-size: 13px;
    font-family: 'Mona Sans';
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
    width: 68%;
}

.speciality-btm-itm .speciality-btm-count span.count {
    display: block;
    font-size: 24px;
    color: #0040C1;
    font-weight: 800;
}

.speciality-btm-itm .speciality-btm-count span.label {
    font-size: 13px;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans';
}

.speciality-btm-itm {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 35.4%;
    border-right: 1px solid #c2e0ffb3;
}

.speciality-btm-itm:last-child {
    border: none;
}

.speciality-btm-img {
    width: 50px;
    height: 50px;
    padding: 11px;
    background-color: #F5FAFF;
    border-radius: 50%;
}

/* Migrate bottom content */
.migrate-bottom-blk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F5FAFF;
    padding: 24px 56px;
}

.migrate-bottom-left-blk {
    display: flex;
    justify-content: flex-start;
    gap: 44px;
    width: 68%;
    align-items: center;
}

.migrate-bottom-gif {
    width: 16.9%;
}

.migrate-bottom-gif img {
    width: 100%;
    display: block;
}

.migrate-bottom-contnt {
    padding-top: 22px;
}

/*.migrate-bottom-contnt {width: 56%; }*/
.migrate-bottom-contnt .text-heading {
    font-size: 36px;
    margin: 0 0 3px;
    text-transform: inherit;
}

.migrate-bottom-contnt p {
    font-size: 22px;
    /* font-family: 'Mona Sans'; */
    font-family: var(--bodyFont);
    ;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
    color: #000;
    margin: 0;
}

.migrate-bottom-btn .cmn-btn {
    padding: 17px 20px;
    letter-spacing: 0;
}

/* .migrate-bottom-btn a.cmn-btn:hover {
    background-color: #fff;
    color: #00359E;
    border-color: #00359E;
} */

.migration-gif {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}




/* Our Speciality Responsive */

@media screen and (max-width:1800px) {}

@media screen and (max-width:1680px) {
    .hmour-speciality-section .container {
        max-width: 1400px;
    }

    .speciality-title {
        font-size: 28px;
        padding: 20px 40px;
    }

    .speciality-img-lst {
        padding: 25px 20px;
    }

    .migration-process-item {
        margin-bottom: 17px;
    }

    .speciality-gif {
        height: 80px;
        width: 80px;
        ;
    }

    .destination-platform {
        padding: 15px 30px 30px;
    }

    .rite-migration-title {
        width: 180px;
        height: 180px;
    }

    .speciality-img-lst .speciality-img-itm {
        padding: 0 0 25px;
        margin: 0 0 25px;
    }

    .speciality-left-lst ul li {
        font-size: 21px;
        margin: 0 0 30px;
    }

    .speciality-left-lst ul li:hover {
        padding-left: 100px;
    }

    .speciality-left-lst ul li::before {
        width: 80px;
        height: 32px;
    }

    .our-speciality-top {
        margin-bottom: 30px;
    }

    .sub-heading {
        margin: 0 0 20px;
    }

}

@media screen and (max-width:1550px) {
    .hmour-speciality-section .container {
        max-width: 1300px;
    }

    .speciality-left-contnt {
        font-size: 18px;
    }

    .speciality-left-lst ul li {
        font-size: 20px;
        margin: 0 0 26px;
    }

    .speciality-left-lst ul li::before {
        height: 28px;
    }

    .speciality-title {
        font-size: 24px;
        padding: 18px 35px;
        margin: 0 0 15px;
    }

    .speciality-img-lst .speciality-img-itm {
        padding: 0 0 22px;
        margin: 0 0 22px;
    }

    .speciality-img-lst {
        padding: 25px 17px;
    }

    .speciality-text {
        font-size: 14px;
    }

    .destination-platform {
        padding: 15px 25px 30px;
    }

    .migration-process-item {
        margin-bottom: 14px;
    }

    .speciality-gif {
        height: 70px;
        width: 70px;
    }

    .speciality-btm-img {
        width: 40px;
        height: 40px;
        padding: 9px;
    }

    .speciality-btm-itm .speciality-btm-count span.count {
        font-size: 21px;
    }

    .our-speciality-rite {
        padding: 30px 26px;
    }

    .speciality-img-blk {
        margin-bottom: 25px;
    }

    .speciality-btm-itm .speciality-btm-count span.label {
        font-size: 11px;
    }

    .speciality-btm-itm .speciality-btm-count span.count {
        font-size: 20px;
    }

}

@media screen and (max-width:1440px) {
    .hmour-speciality-section .container {
        max-width: 1200px;
    }

    .speciality-title {
        font-size: 22px;
    }

    .our-speciality-rite {
        padding: 30px 22px;
    }

    .speciality-img-lst {
        padding: 25px 15px;
    }

    .speciality-img {
        width: 22px;
    }

    .speciality-text {
        font-size: 14px;
    }

    .rite-migration-title {
        width: 160px;
        height: 160px;
    }

    .destination-platform {
        padding: 15px 25px 25px;
    }

    .speciality-gif {
        height: 60px;
        width: 60px;
    }

    .migration-process-item {
        gap: 8px;
    }

    .speciality-left-lst ul li:hover {
        padding-left: 80px;
    }

    .speciality-left-lst ul li::before {
        height: 26px;
        width: 70px;
    }

    .speciality-left-lst ul li {
        font-size: 19px;
        margin: 0 0 24px;
    }

    .speciality-left-contnt {
        font-size: 16px;
    }

    .speciality-btm-itm .speciality-btm-count {
        font-size: 13px;
        width: 80%;
    }

    .speciality-btm-contnt-lst {
        padding: 15px 10px;
        border-radius: 10px;
    }

    .speciality-btm-img {
        width: 37px;
        height: 37px;
        padding: 7px;
    }

    .speciality-btm-itm .speciality-btm-count span.count {
        font-size: 18px;
    }

    .speciality-btm-itm .speciality-btm-count span.label {
        font-size: 11px;
    }


}

@media screen and (max-width:1366px) {
    .hmour-speciality-section .container {
        max-width: 1100px;
    }

    .speciality-left-contnt {
        font-size: 15px;
    }

    .our-speciality-top {
        margin-bottom: 25px;
    }

    .speciality-left-lst ul li::before {
        height: 23px;
        width: 50px;
    }

    .speciality-left-lst ul li:hover {
        padding-left: 58px;
    }

    .speciality-left-lst ul li {
        font-size: 18px;
    }

    .speciality-title {
        font-size: 20px;
    }

    .our-speciality-rite {
        padding: 30px 20px;
    }

    .speciality-img-lst {
        padding: 25px 15px;
    }

    .speciality-img {
        width: 20px;
    }

    .speciality-text {
        font-size: 13px;
    }

    .rite-migration-title {
        width: 150px;
        height: 150px;
        font-size: 14px;
    }

    .destination-platform {
        padding: 15px 20px 25px;
    }

    .migration-process-item {
        gap: 8px;
    }

    .migration-process-title {
        font-size: 13px;
    }

    .speciality-img-blk {
        margin-bottom: 20px;
    }

    .speciality-btm-itm {
        display: flex;
        align-items: center;
        gap: 6px;
        width: 31%;
        border-right: 1px solid #c2e0ffb3;
    }

    .speciality-btm-contnt-lst {
        padding: 10px;
        border-radius: 10px;
    }

}

@media screen and (max-width:1280px) {
    .hmour-speciality-section .container {
        max-width: 960px;
    }

    .our-speciality-left {
        width: 48%;
    }

    .speciality-left-contnt {
        font-size: 15px;
    }

    .speciality-left-lst ul li {
        font-size: 16px;
        margin: 0 0 20px;
    }

    .speciality-left-lst ul li:hover {
        padding-left: 50px;
    }

    .speciality-left-lst ul li::before {
        height: 20px;
        width: 40px;
    }

    .our-speciality-rite {
        padding: 25px 20px;
        width: 50%;
    }

    .speciality-title {
        font-size: 18px;
    }

    .speciality-img-lst {
        padding: 25px 13px;
    }

    .speciality-img-lst .speciality-img-itm {
        padding: 0 0 20px;
        margin: 0 0 20px;
    }

    .speciality-text {
        font-size: 12px;
    }

    .rite-migration-title {
        width: 140px;
        height: 140px;
        font-size: 14px;
    }

    .destination-platform .speciality-text {
        margin-bottom: 15px;
    }

    .destination-platform {
        padding: 15px 20px 20px;
    }
}

@media screen and (max-width:1024px) {
    .hmour-speciality-section .container {
        max-width: 720px;
    }

    .speciality-left-lst ul li {
        font-size: 16px;
        margin: 0 0 10px;
        padding: 5px 5px 5px 25px;
        background: url("../images/moving-arr.webp") repeat-x;
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 20px;
    }

    .speciality-left-lst ul li:hover {
        background-image: none;
    }

    .our-speciality-contn-blk {
        display: flex;
        justify-content: center;
        margin: 0 0 50px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .our-speciality-left {
        width: 100%;
        max-width: 600px;
    }

    .our-speciality-rite {
        padding: 25px 20px;
        width: 100%;
        max-width: 600px;
    }

    .rite-migration-title {
        width: 170px;
        height: 170px;
        font-size: 14px;
    }

    .speciality-title {
        font-size: 18px;
        padding: 15px 15px;
    }
}

@media screen and (max-width:768px) {
    .hmour-speciality-section .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .speciality-left-lst {
        padding-right: 20px;
    }

    .speciality-img-blk {
        margin-bottom: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .speciality-img-lst {
        padding: 25px 30px;
        width: 100%;
        order: 1;
    }

    .rite-migration-itm {
        width: 100%;
        position: relative;
        z-index: 0;
        order: 3;
        max-width: 140px;
        margin: 0 auto;
    }

    .destination-platform {
        padding: 15px 20px 20px;
        width: 100%;
        order: 2;
    }

    .rite-migration-title {
        width: 140px;
        height: 140px;
        font-size: 14px;
    }

    .speciality-img {
        width: 25px;
    }

    .speciality-text {
        font-size: 15px;
    }

    .speciality-gif {
        height: 70px;
        width: 70px;
    }

    .destination-platform .speciality-text {
        font-size: 20px;
    }

    .migration-process-title {
        font-size: 15px;
    }

    .speciality-img-lst .speciality-img-itm {
        gap: 12px;
    }

    .speciality-btm-itm {
        width: 100%;
        border-right: 1px solid #c2e0ffb3;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media screen and (max-width:550px) {
    .migrate-bottom-left-blk {
        width: 100%;
        gap: 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .migrate-bottom-gif {
        width: 100%;
        max-width: 80px;
    }

    .speciality-img {
        width: 22px;
    }

    .speciality-text {
        font-size: 14px;
    }

    .speciality-btm-contnt-lst {
        border-radius: 10px;
        flex-direction: column;
        gap: 10px;
        max-width: 300px;
        margin: 0 auto;
    }

    .speciality-btm-itm {
        border: 2px solid #c2e0ffb3;
        padding: 10px;
        border-radius: 10px;
    }

    .speciality-btm-itm:last-child {
        border: 2px solid #c2e0ffb3;
    }

    .speciality-btm-itm .speciality-btm-count span.count {
        font-size: 20px;
    }

    .speciality-btm-itm .speciality-btm-count span.label {
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {
    .speciality-left-lst ul li {
        font-size: 15px;
    }
}



/* Web Development Services Section */

.webdev-services-sec {
    padding: 125px 0 106px;
}

.webdev-services-sec .webdev-serv-headings {
    width: 89%;
    margin: 0 auto 45px;
}

.webdev-services-sec .webdev-serv-headings .text-heading {
    margin: 0px;
    text-align: center;
}

.webdev-services-sec .tabs-block {
    display: flex;
    justify-content: space-between;
}

.webdev-services-sec .tab-btn-group {
    width: 55%;
    background-color: #F5FAFF;
    padding: 15px 33px 15px 20px;
    border-radius: 20px;
}

.webdev-services-sec .tab-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10px 38px 20px;
    position: relative;
    cursor: pointer;
}

.webdev-services-sec .tab-btn:before {
    position: absolute;
    content: "";
    border-bottom: 1px solid rgb(40 111 254 / 20%);
    width: 91%;
    right: 0;
    bottom: 0;
}

.webdev-services-sec .tab-btn:last-child:before {
    display: none;
}

.webdev-services-sec .tab-btn-cnt {
    width: 63.7%;
    position: relative;
    display: flex;
    align-items: start;
    gap: 25px;
}

/*.webdev-services-sec .tab-btn-cnt:before{position: absolute;content: "";background-image: url("../images/tab-btn-bef.webp");background-repeat: no-repeat;background-position: center;background-size: contain;width: 29px;height: 29px;left: 0;top: 5px;display: none;}*/
.webdev-services-sec .tab-btn-title {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0px;
    font-family: var(--headingFont);
    font-weight: 500;
    color: #000;
}

.webdev-services-sec .tab-btn-cnt p {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0px;
    font-family: var(--bodyFont);
    font-weight: 500;
    color: #000;
    margin: 0px;
    display: none;
}

.webdev-services-sec .tab-pane {
    display: none;
}

.webdev-services-sec .tab-pane.tab-pane-active {
    display: block;
}

.webdev-services-sec .tab-btn-img {
    width: 32.1%;
}

.webdev-services-sec .tab-btn-img img {
    width: 100%;
    display: block;
    border-radius: 20px;
    height: 80px;
    object-fit: cover;
    object-position: center;
}

.webdev-services-sec .tab-btn.tab-btn-active {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 15%);
}

.webdev-services-sec .tab-btn.tab-btn-active:before {
    display: none;
}

.webdev-services-sec .tab-btn.tab-btn-active .tab-btn-cnt:before {
    display: block;
}

.webdev-services-sec .tab-btn.tab-btn-active .tab-btn-cnt p {
    display: block;
}

.webdev-services-sec .tab-btn.tab-btn-active .tab-btn-title {
    margin-bottom: 10px;
    color: #00359E;
}

.webdev-services-sec .tab-btn.tab-btn-active .tab-btn-img img {
    height: auto;
}

.webdev-services-sec .tab-content-area {
    width: 43.4%;
    text-align: center;
    background-color: #F5FAFF;
    padding: 15px;
    border-radius: 20px;
    padding: 80px 15px 0;
}

.webdev-services-sec .tab-cnt-title {
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 0px;
    font-family: var(--headingFont);
    font-weight: 800;
    color: #00359E;
    margin-bottom: 30px;
}

.webdev-services-sec .tab-cnt-img {
    width: 58.3%;
    margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #CCDEFF;
}

.webdev-services-sec .tab-cnt-img img {
    width: 100%;
    display: block;
    border-radius: 70px;
}

.webdev-serv-headings .sub-heading {
    margin: 0 auto 15px;
}

.tab-tick-img {
    width: 29px;
}

.tab-tick-img img {
    opacity: 0;
    width: 100%;
    display: block;
}

.tab-btn.tab-btn-active .tab-tick-img img {
    opacity: 1;
}

.tab-btn-title-cnt {
    width: 89%;
}


@media screen and (max-width: 1680px) {
    .webdev-services-sec .container {
        max-width: 1400px;
    }

    .webdev-services-sec .webdev-serv-headings .text-heading {
        font-size: 55px;
    }

    .webdev-services-sec .tab-cnt-title {
        font-size: 30px;
    }

    .webdev-services-sec .tab-content-area {
        padding: 65px 15px 0;
    }

    .webdev-services-sec .tab-btn {
        padding: 25px 10px 25px 25px;
    }

    .webdev-services-sec .tab-cnt-img img {
        border-radius: 50px;
    }

    .migrate-bottom-contnt .text-heading {
        font-size: 32px;
    }

    .migrate-bottom-blk {
        padding: 40px 60px;
    }

    .migrate-bottom-contnt p {
        font-size: 21px;
    }

    .migrate-bottom-btn .cmn-btn {
        font-size: 22px;
    }


}

@media screen and (max-width: 1550px) {
    .webdev-services-sec .container {
        max-width: 1300px;
    }

    .webdev-services-sec {
        padding: 80px 0 100px;
    }

    .webdev-services-sec .webdev-serv-headings .text-heading {
        font-size: 46px;
    }

    .webdev-services-sec .tab-btn-title {
        font-size: 26px;
    }

    .webdev-services-sec .tab-cnt-img img {
        border-radius: 40px;
    }

    .migrate-bottom-contnt .text-heading {
        font-size: 28px;
    }

    .migrate-bottom-gif {
        width: 18%;
    }

    .migrate-bottom-contnt p {
        font-size: 20px;
    }

    .migrate-bottom-blk {
        padding: 40px 50px;
    }

    .migrate-bottom-btn .cmn-btn {
        font-size: 20px;
    }

}

@media screen and (max-width: 1440px) {
    .webdev-services-sec .container {
        max-width: 1200px;
    }

    .webdev-services-sec {
        padding: 70px 0;
    }

    .webdev-services-sec .tab-btn-group {
        width: 52%;
    }

    .webdev-services-sec .tab-content-area {
        width: 43.4%;
        padding: 60px 15px 0;
    }

    .webdev-services-sec .tab-btn-title {
        font-size: 22px;
    }

    .webdev-services-sec .tab-btn-cnt {
        gap: 10px;
        width: 60%;
    }

    .webdev-services-sec .tab-btn-img {
        width: 37%;
    }

    .webdev-services-sec .tab-btn {
        padding: 22px 10px 22px 20px;
    }

    .webdev-services-sec .tab-btn-cnt p {
        line-height: 1.6;
    }

    .webdev-services-sec .tab-cnt-title {
        font-size: 28px;
    }

    .webdev-services-sec .tab-cnt-img {
        width: 60.5%;
        margin: 0 auto 30px;
        padding-bottom: 30px;
    }

    .webdev-services-sec .webdev-serv-headings .text-heading {
        font-size: 42px;
    }

    .migrate-bottom-blk {
        padding: 35px 40px;
    }

    .migrate-bottom-contnt .text-heading {
        font-size: 26px;
    }

    .migrate-bottom-contnt p {
        font-size: 19px;
    }

    .migrate-bottom-btn .cmn-btn {
        font-size: 18px;
    }

    .migrate-bottom-left-blk {
        width: 69%;
    }

}

@media screen and (max-width: 1366px) {
    .webdev-services-sec .container {
        max-width: 1100px;
    }

    .webdev-services-sec {
        padding: 60px 0;
    }

    .webdev-services-sec .webdev-serv-headings .text-heading {
        font-size: 38px;
    }

    .webdev-services-sec .tab-btn {
        padding: 20px 10px 20px 20px;
    }

    .tab-tick-img {
        width: 24px;
    }

    .webdev-services-sec .tab-btn-title {
        font-size: 20px;
    }

    .webdev-services-sec .tab-btn-cnt p {
        font-size: 14px;
    }

    .webdev-services-sec .tab-btn-img img {
        border-radius: 15px;
    }

    .webdev-services-sec .tab-content-area {
        padding: 50px 15px 0;
    }

    .webdev-services-sec .tab-cnt-img img {
        border-radius: 30px;
    }


    .migrate-bottom-left-blk {
        width: 71%;
        gap: 10px;
    }

    .migrate-bottom-contnt .text-heading {
        font-size: 25px;
    }

    .migrate-bottom-contnt p {
        font-size: 18px;
    }

    .migrate-bottom-btn .cmn-btn {
        font-size: 15px;
    }

}

@media screen and (max-width: 1280px) {
    .webdev-services-sec .container {
        max-width: 960px;
    }

    .webdev-services-sec .webdev-serv-headings .text-heading {
        font-size: 32px;
    }

    .webdev-services-sec {
        padding: 50px 0;
    }

    .webdev-services-sec .tab-btn-group {
        width: 54%;
    }

    .webdev-services-sec .tab-btn {
        padding: 15px 10px 15px 15px;
    }

    .tab-tick-img {
        width: 22px;
    }

    .webdev-services-sec .tab-btn-title {
        font-size: 20px;
    }

    .webdev-services-sec .tab-btn-cnt p {
        font-size: 13px;
        line-height: 1.5;
    }

    .webdev-services-sec .tab-content-area {
        padding: 45px 15px 0;
    }

    .webdev-services-sec .tab-cnt-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .webdev-services-sec .tab-cnt-img img {
        border-radius: 20px;
    }

    .webdev-services-sec .tab-btn-cnt p {
        font-size: 13px;
    }

    .tab-btn-title-cnt {
        width: 100%;
    }


    .migrate-bottom-blk {
        padding: 30px;
    }

    .migrate-bottom-contnt .text-heading {
        font-size: 22px;
    }

    .migrate-bottom-contnt p {
        font-size: 16px;
    }

    .migrate-bottom-btn .cmn-btn {
        font-size: 13px;
        letter-spacing: 0.2px;
    }


}

@media screen and (max-width: 1024px) {
    .webdev-services-sec .container {
        max-width: 720px;
    }

    .webdev-services-sec {
        padding: 40px 0;
    }

    .webdev-services-sec .webdev-serv-headings .text-heading {
        font-size: 26px;
        max-width: 500px;
        margin: 0 auto;
    }

    .webdev-services-sec .tabs-block {
        display: flex;
        justify-content: space-between;
        flex-direction: column-reverse;
        align-items: center;
    }

    .webdev-services-sec .tab-content-area {
        padding: 20px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    .webdev-services-sec .tab-cnt-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .webdev-services-sec .tab-cnt-img {
        width: 100%;
        margin: 0 auto 10px;
        padding-bottom: 10px;
        max-width: 185px;
    }

    .webdev-services-sec .tab-btn-group {
        width: 100%;
        max-width: 95%;
        margin: 0 auto;
        border-radius: 10px;
    }

    .webdev-services-sec .tab-btn-cnt {
        gap: 10px;
        width: 65%;
    }

    .webdev-services-sec .tab-btn-img {
        width: 30%;
    }

    .webdev-services-sec .tab-btn-img img {
        height: 60px;
    }

    .webdev-services-sec .tab-btn-title {
        font-size: 17px;
    }

    .webdev-services-sec .tab-btn.tab-btn-active .tab-btn-title {
        margin-bottom: 5px;
    }

    .webdev-services-sec .tab-btn.tab-btn-active {
        border-radius: 10px;
    }

    .explore-btn a.cmn-btn {
        font-size: 12px;
        padding: 15px 20px;
        letter-spacing: 0.5px;
        border-radius: 10px;
    }


    .migrate-bottom-blk {
        padding: 30px;
        flex-direction: column;
        gap: 20px;
    }

    .migrate-bottom-left-blk {
        width: 100%;
        gap: 10px;
    }

    .migrate-bottom-gif {
        width: 100%;
        max-width: 80px;
    }
    .migrate-bottom-contnt { padding-top: 0; }

}

@media screen and (max-width: 768px) {
    .webdev-services-sec .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .webdev-services-sec .tab-btn-cnt {
        width: 100%;
    }

    .webdev-services-sec .tab-btn-img {
        display: none;
    }

    .tab-tick-img {
        width: 26px;
    }

    .webdev-services-sec .webdev-serv-headings .text-heading {
        font-size: 24px;
    }

    .webdev-services-sec .webdev-serv-headings {
        width: 100%;
        margin: 0 auto 20px;
    }

    .webdev-services-sec .webdev-serv-headings .text-heading {
        max-width: 100%;
    }

}

@media screen and (max-width: 480px) {
    .migrate-bottom-blk {
        padding: 30px 20px;
        padding: 25px 14px;
    }

    .migrate-bottom-contnt .text-heading {
        font-size: 21px;
    }

    .migrate-bottom-btn .cmn-btn {
        font-size: 14px;
        letter-spacing: 0;
        padding: 15px;
    }

    .webdev-services-sec .webdev-serv-headings .text-heading {
        font-size: 23px;
        line-height: 1.2;
    }

    .webdev-services-sec .tab-btn {
    padding: 12px;
}

    .webdev-services-sec .tab-btn-cnt {
 
       gap: 7px;}

       .tab-tick-img {
    width: 24px;
}

.webdev-services-sec .tab-btn-group{max-width: 100%; padding: 15px;}

}

/* Why choose section */

.hm-whychoose-sec {
    padding: 115px 0;
    background-color: #fff;
}

.hm-choose-headings .text-heading {
    text-transform: inherit;
    margin-bottom: 30px;
}

.hm-whychoose-sec .container {
    max-width: 1280px;
}

.hm-whychoose-sec .hm-choose-headings {
    margin-bottom: 60px;
    text-align: center;
}

.hm-whychoose-sec p {
    margin: 0px;
    line-height: 1.1;
}

.whychoose-blk {
    counter-reset: my-sec-counter;
    position: relative;
}

.whychoose-blk:before {
    position: absolute;
    content: "";
    background-color: rgb(153 153 153 / 48%);
    width: 2px;
    height: 83%;
    left: 0;
    top: 0;
    bottom: 0;
    right: -35px;
    margin: auto;
    transition: 0.5s;
}

.whychoose-blk .whychoose-itm {
    display: flex;
    justify-content: flex-end;
    gap: 0 220px;
    align-items: center;
}

.whychoose-blk .whychoose-itm:nth-child(even) {
    flex-direction: row-reverse;
}

.whychoose-blk .whychoose-itm .whychoose-itm-title {
    font-size: 40px;
    font-family: var(--headingFont);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0px;
    color: var(--black);
    margin-bottom: 5px;
}

.whychoose-itm .whychoose-img {
    width: 39%;
    position: relative;
}

.whychoose-itm:last-child .whychoose-img:before {
    display: none;
}

.whychoose-itm:nth-child(even) .whychoose-img:before {
    right: -32%;
    left: auto;
}


.whychoose-itm.active .whychoose-img img{
    animation: hoverOpacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes hoverOpacity{
    0%{
        opacity:1;
    }
    60%{
        opacity:.8;
    }
    100%{
        opacity:1;
    }
}

.whychoose-itm .whychoose-img img {
    width: 100%;
    display: block;
    border-radius: 20px;
    transition: opacity .4s ease;
}

.whychoose-itm .whychoose-cnt {
    width: 38.7%;
    text-align: right;
    position: relative;
}

.whychoose-itm:nth-child(even) .whychoose-cnt {
    text-align: left;
}

.whychoose-itm .whychoose-cnt:before {
    position: absolute;
    content: "" counter(my-sec-counter, decimal-leading-zero);
    counter-increment: my-sec-counter;
    font-size: 16px;
    line-height: 1;
    right: -26.5%;
    font-family: var(--headingFont);
    font-weight: 600;
    padding: 7px 20px;
    background-color: #C2E0FF;
    border-radius: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: max-content;
}

.whychoose-itm:nth-child(even) .whychoose-cnt:before {
    left: -19.5%;
    right: auto;
}

.whychoose-itm .whychoose-img:before {
    position: absolute;
    content: "";
    background-color: rgb(153 153 153 / 48%);
    width: 2px;
    height: 0;
    left: -25%;
    top: 54%;
    transition: 0.5s;
}

.whychoose-itm.active .whychoose-img:before {
    background-color: #00359E;
    height: 98%;
}

.whychoose-itm.active .whychoose-cnt:before {
    background-image: linear-gradient(to bottom, #00359E, #286FFE);
    color: #fff;
}

.hm-choose-headings .sub-heading {
    margin: 0 auto 28px;
}



.hm-whychoose-sec .whychoose-itm-title-cont {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans';
}

/* Why Choose Sec Responsive */

@media screen and (max-width:1550px) {
    .hm-whychoose-sec {
        padding: 95px 0;
    }
}

@media screen and (max-width:1366px) {
    .hm-whychoose-sec {
        padding: 60px 0;
    }

    .hm-whychoose-sec .container {
        max-width: 1180px;
    }

    .hm-whychoose-sec .hm-choose-headings {
        margin-bottom: 45px;
    }

    .whychoose-blk .whychoose-itm {
        gap: 0 200px;
    }

    .whychoose-itm .whychoose-cnt:before {
        font-size: 15px;
        padding: 7px 18px;
    }

    .whychoose-blk:before {
        right: -32px;
    }

    .whychoose-blk .whychoose-itm .whychoose-itm-title {
        font-size: 33px;
    }

    .whychoose-itm:nth-child(even) .whychoose-cnt:before {
        left: -17.5%;
    }
}

@media screen and (max-width:1280px) {
    .hm-whychoose-sec {
        padding: 50px 0;
    }

    .hm-whychoose-sec .container {
        max-width: 960px;
    }

    .hm-whychoose-sec .hm-choose-headings {
        margin-bottom: 40px;
    }

    .whychoose-blk .whychoose-itm {
        gap: 0 180px;
    }

    .whychoose-blk .whychoose-itm .whychoose-itm-title {
        font-size: 30px;
    }

    .whychoose-itm .whychoose-cnt:before {
        right: -33.7%;
    }

    .whychoose-itm:nth-child(even) .whychoose-cnt:before {
        left: -22.5%;
    }

    .whychoose-itm:nth-child(even) .whychoose-img:before {
        right: -33%;
        left: auto;
    }

    .whychoose-itm .whychoose-img:before {
        left: -24%;

    }
}

@media screen and (max-width:1024px) {
    .hm-whychoose-sec {
        padding: 30px 0 0;
    }

    .hm-whychoose-sec .container {
        max-width: 720px;
    }

    .whychoose-blk .whychoose-itm {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
        height: 100%;
        justify-content: flex-start;
        align-items: start;
        background-color: #286ffe;
        border-radius: 20px;
    }

    .whychoose-itm .whychoose-img {
        width: 100%;
        margin-top: auto;
    }

    .whychoose-itm .whychoose-cnt:before, .whychoose-itm.active .whychoose-cnt:before {
        left: 0;
        margin: 0;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        font-size: 14px;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000000 !important;
        background: #d6e4fd !important;
        content: attr(data-count);
    }

    .whychoose-itm .whychoose-cnt {
        width: 100%;
        text-align: left;
    }

    .whychoose-blk:before {
        display: none;
    }

    .whychoose-blk.owl-carousel .owl-stage {
        display: flex;
    }

    .whychoose-blk.owl-carousel .owl-stage-outer {
        padding: 0 2px 0;
    }

    .whychoose-blk .whychoose-itm .whychoose-itm-title {
        font-size: 24px;
        margin: 0 0 15px;
        min-height: 50px;
        color: #fff;
        width: 100%;
        padding-left: 50px;
    }

    .whychoose-blk.owl-carousel .owl-dots.disabled {
        display: block;
    }

    .whychoose-blk.owl-carousel .owl-dots {
        text-align: center;
        margin: 20px auto 0;
    }

    .whychoose-blk.owl-carousel .owl-dot {
        background-color: #0040C1;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        margin: 0 3px;
    }

    .whychoose-blk.owl-carousel .owl-dot.active {
        background-color: #286ffe;
    }

    .hm-whychoose-sec .whychoose-itm-title-cont{
        font-size: 16px;
        color: #fff;
        margin-bottom: 0;
    }
    .hm-choose-headings .text-heading br{display: none;}
    .whychoose-itm .whychoose-img img{border-radius: 15px;}
    
}

@media screen and (max-width:768px) {
    .whychoose-itm .whychoose-cnt:before {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .hm-whychoose-sec p {
        line-height: 1.4;
    }

    .hm-choose-headings .text-heading{margin-bottom: 15px !important; font-size: 28px;}
    .hm-whychoose-sec .hm-choose-headings{margin-bottom: 25px;}
    .hm-whychoose-sec .whychoose-itm-title-cont{font-size: 15px;}

    .whychoose-blk .whychoose-itm .whychoose-itm-title{font-size: 20px; padding-left: 45px;}

    .whychoose-blk .whychoose-itm {
        gap: 15px;
        padding: 25px 12px;
        border-radius: 15px;
        min-height: 40px;
    }
}

@media screen and (max-width:480px) {
    .hm-whychoose-sec .hm-choose-headings { margin-bottom: 15px; }
}


/* HomePage FAQ's Section Starts */

.hm-faqs-sec {
    padding: 70px 0 100px;
}

.home .hm-faqs-sec {
    background-image: linear-gradient(180deg, transparent 36%, #F5FAFF 20%, transparent);
}


.hm-faqs-sec .sub-heading {
    margin: 0 auto 13px;
}

.hm-faqs-sec .container {
    max-width: 1280px;
}

.hm-faqs-sec .text-heading {
    margin-bottom: 55px;
    text-align: center;
}

/* Wrapper */

.hm-faqs-sec .faq-wrapper {
    display: flex;
    flex-wrap: nowrap;
    /* prevent wrapping */
    gap: 11px;
    align-items: stretch;
}

/* Default card */

.hm-faqs-sec .faq-section {
    flex: 1;
    min-width: 0;
    padding: 110px 20px;
    background-color: #C2E0FF;
    border-radius: 20px;
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s all ease-in-out;
}

/* Shrink inactive cards when one is active */

.hm-faqs-sec .faq-wrapper.active .faq-section:not(.faq-active) {
    flex: .85;
}

/* Expanded card */

.hm-faqs-sec .faq-section.faq-active {
    flex: 2.1;
    background-image: linear-gradient(to bottom, #00359E, #286FFE);
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 10px;
    padding: 30px 40px;
    justify-content: center;
    align-items: start;
}

/* Heading */

.hm-faqs-sec .faq-heading {
    font-size: 24px;
    line-height: 1.25;
    font-family: var(--bodyFont);
    font-weight: 500;
    color: #000;
    text-align: center;
    border-bottom: 1px solid transparent;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* Active heading */

.hm-faqs-sec .faq-section.faq-active .faq-heading {
    font-size: 30px;
    color: #fff;
    text-align: left;
    border-bottom-color: rgba(255, 255, 255, .4);
}

/* Content hidden by default */

.hm-faqs-sec .faq-content {
    display: none;
}

.hm-faqs-sec .faq-content p, .hm-faqs-sec .faq-content li {
    font-size: 18px;
    line-height: 1.55;
    font-family: var(--bodyFont);
    font-weight: 500;
    color: #fff;
}

.hm-faqs-sec .faq-content li{
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.hm-faqs-sec .faq-content li::before{
    background: #fff;
    width: 10px;
    height: 10px;
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 11px;
    border-radius: 10px;
}

.hm-faqs-sec .faq-content p:last-child, .hm-faqs-sec .faq-content li:last-child {
    margin-bottom: 0;
}

/* Show content when active */

.hm-faqs-sec .faq-section.faq-active .faq-content {
    display: block;
}

/* Plus button */

.hm-faqs-sec .faq-expand-btn {
    position: relative;
    left: 0;
    right: 0;
    /* margin: auto; */
    bottom: 0;
    width: 60px;
    background: #fff;
    border-radius: 50%;
    height: 60px;
}

.hm-faqs-sec .faq-expand-btn::before {
    position: absolute;
    content: '+';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    font-size: 55px;
    text-align: center;
    line-height: 0.8;
    color: #000;
    margin: auto;
    cursor: pointer;
    top: 0;
    bottom: 0;
}

/* Hide plus on active card */

.hm-faqs-sec .faq-section.faq-active .faq-expand-btn {
    display: none;
}

/* Responsive */

@media screen and (max-width: 1024px) {
    .hm-faqs-sec .faq-wrapper {
        flex-wrap: wrap;
    }

    .hm-faqs-sec .faq-section,
    .hm-faqs-sec .faq-section.faq-active,
    .hm-faqs-sec .faq-wrapper.active .faq-section:not(.faq-active) {
        flex: 0 0 calc(48% - 5px) !important;
    }
}

@media screen and (max-width: 767px) {

    .hm-faqs-sec .faq-section,
    .hm-faqs-sec .faq-section.faq-active,
    .hm-faqs-sec .faq-wrapper.active .faq-section:not(.faq-active) {
        flex: 0 0 100% !important;
    }
}


/* Faq's Sec Responsive */

@media screen and (max-width:1366px) {
    .hm-faqs-sec {
        padding: 60px 0 80px;
    }

    .hm-faqs-sec .container {
        max-width: 1180px;
    }

    .hm-faqs-sec .text-heading {
        margin-bottom: 35px;
    }

    .hm-faqs-sec .faq-section {
        padding: 80px 25px;
        min-height: 460px;
    }

    .hm-faqs-sec .faq-heading {
        font-size: 22px;
    }

    .hm-faqs-sec .faq-section.faq-active .faq-heading {
        font-size: 27px;
    }

    .hm-faqs-sec .faq-content p, .hm-faqs-sec .faq-content li {
        font-size: 16px;
    }

    .hm-faqs-sec .faq-section.faq-active {
        padding-left: 35px;
        padding-right: 44px;
    }

    .hm-faqs-sec .faq-expand-btn {
        width: 55px;
        height: 55px;
        bottom: 20%;
    }

    .hm-faqs-sec .faq-expand-btn::before {
        font-size: 50px;
    }
}

@media screen and (max-width:1280px) {
    .hm-faqs-sec {
        padding: 50px 0 60px;
    }

    .hm-faqs-sec .container {
        max-width: 960px;
    }

    .hm-faqs-sec .text-heading {
        margin-bottom: 30px;
    }

    .hm-faqs-sec .faq-section {
        padding: 65px 20px;
        min-height: 400px;
    }

    .hm-faqs-sec .faq-heading {
        font-size: 19px;
    }

    .hm-faqs-sec .faq-expand-btn {
        width: 50px;
        height: 50px;
        bottom: 13%;
    }

    .hm-faqs-sec .faq-expand-btn::before {
        font-size: 45px;
    }

    .hm-faqs-sec .faq-section.faq-active {
        padding-left: 30px;
        padding-right: 38px;
    }

    .hm-faqs-sec .faq-section.faq-active .faq-heading {
        font-size: 22px;
    }

    .hm-faqs-sec .faq-content p, .hm-faqs-sec .faq-content li {
        font-size: 15px;
    }
}

@media screen and (max-width:1024px) {
    .hm-faqs-sec {
        padding: 40px 0;
    }

    .hm-faqs-sec .container {
        max-width: 720px;
    }

    .hm-faqs-sec .faq-section {
        padding: 60px 20px;
        min-height: 410px;
        min-width: 240px;
    }

    .hm-faqs-sec .faq-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hm-faqs-sec .faq-heading {
        font-size: 24px;
    }

    .hm-faqs-sec .faq-section.faq-active .faq-heading {
        font-size: 24px;
    }

    .hm-faqs-sec .faq-expand-btn {
        width: 55px;
        height: 55px;
        bottom: 25%;
    }

    .hm-faqs-sec .faq-expand-btn::before {
        font-size: 50px;
    }
}

@media screen and (max-width:768px) {
    .hm-faqs-sec .text-heading {
        margin-bottom: 25px;
    }

    .hm-faqs-sec .container {
        max-width: 100%;
    }

    .hm-faqs-sec .faq-section {
        padding: 40px 30px;
        min-height: 350px;
        max-width: 320px;
    }

    .hm-faqs-sec .faq-heading {
        font-size: 22px;
    }

    .hm-faqs-sec .faq-section.faq-active .faq-heading {
        font-size: 22px;
    }
}

@media screen and (max-width:480px) {
    .hm-faqs-sec .faq-expand-btn {
        width: 50px;
        height: 50px;
        bottom: 0;
    }

    .hm-faqs-sec .faq-expand-btn::before {
        font-size: 46px;
    }

    .hm-faqs-sec .faq-section.faq-active {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hm-faqs-sec .faq-section {
        padding: 30px 15px;
        min-height: 100%;
    }
}


/* Home Blog Section Starts */
.hm-blog-sec {
    padding: 60px 0;
}

.hm-blog-sec .hm-blog-blk {
    flex-wrap: wrap;
    display: flex;
}

.hm-blog-sec .hmblg-item {
    background: #ccc;
    width: 32%;
    padding: 20px;
    margin: 0 0.5%;
}

.hm-blog-sec .hmblgcnt h3 {
    font-size: 26px;
    margin: 0 0 15px 0;
    color: #000;
    line-height: 1;
}

.hm-blog-sec .hmblgcnt p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 20px 0px;
}

.hm-blog-sec .hmpost_btn {
    margin: 20px 0 10px 0;
}

.hm-blog-sec .hmpost_btn a {
    font-size: 18px;
    display: inline-block;
    color: #fff;
}

.hm-blog-sec .hmnews-btn {
    text-align: center;
    margin: 30px 0 0 0;
}

.hm-blog-sec .hmnews-btn a {
    background-color: #eee;
}

.hm-blog-sec .hmnews-btn a:hover {
    background-color: #000;
}


/* HomePage Form Section Starts */


.hm-form-sec {
    padding: 50px 0;
    background-color: #ccc;
}

p.gform_required_legend {
    display: none;
}

.gfield input.large,
.gfield textarea.large {
    font-family: 'Wix Madefor Text' !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    color: #000000 !important;
    letter-spacing: 0px !important;
    line-height: 1 !important;
    padding: 20px 30px !important;
    border: 0;
    outline: 0;
    height: auto;
    border-radius: 0 !important;
    background-color: #fff !important;
}

.gform_title {
    display: none;
}

.gchoice {
    text-align: right;
    width: fit-content;
    margin: 0 0 0 auto;
}

.gfield textarea.large {
    height: 140px !important;
    resize: none;
    min-height: auto !important;
}

.gfield input::placeholder,
.gfield textarea::placeholder {
    color: #000;
}

.gform_wrapper .gfield_error [aria-invalid=true] {
    border: none !important;
}

.form-links a,
.gfield-choice-input+label {
    font-family: 'Wix Madefor Text' !important;
    font-weight: 400;
    font-size: 16px !important;
    line-height: 1;
    letter-spacing: 0px;
    color: #fff !important;
}

.form-links {
    color: #fff;
}

.form-links a {
    cursor: pointer;
    text-decoration: none;
}

.form-links a:hover {
    color: #8ca3b7 !important;
}

.gform_wrapper .top_label input[type="checkbox"] {
    margin: 0px 0px 0px 13px !important;
    width: 15px !important;
    height: 15px !important;
}

.gform-theme--foundation {
    display: grid;
    --gf-form-gap-y: 15px;
    --gf-form-gap-y: 18px;
}

#field_submit,
.gform-theme--foundation .gform_footer {
    display: flex;
    justify-content: center;
}

/* .gform_footer input[type="submit"] {
    padding: 18px 58px !important;
    font-family: 'Wix Madefor Text' !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    border-radius: 55px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    background: #000;
    color: #fff !important;
    border: 2px solid #0000;
    margin: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    cursor: pointer !important;
    transition: 0.3s !important;
} */

.gform_footer input[type="submit"]:hover {
    background: #000;
}

.leave-blank {
    display: none;
}

.gchoice.gchoice_1_12_1 input {
    width: 15px;
    height: 15px;
}

.popup {
    max-width: 60%;
}

div#popup-container {
    position: relative;
}

div#validation_message_6_12 {
    left: 80px;
    top: 7px;
}

.gform_wrapper .gform_validation_errors {
    display: none;
}

.gform_wrapper .gfield {
    position: relative;
}

#myPopup.show {
    display: block;
    visibility: visible;
    z-index: 99;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.gform_wrapper .gfield .validation_message.gfield_validation_message,
.gform_wrapper .gfield .instruction.validation_message {
    position: absolute;
    top: 4px;
    background: none;
    padding: 0px;
    line-height: 1;
    color: #ff0000;
    font-size: 13px;
    right: 10px;
    font-weight: 500;
    width: auto;
    border: none;
    pointer-events: none;
    margin: 0;
}

.gform_wrapper .gfield .instruction.validation_message {
    bottom: 8px;
    top: inherit !important;
}

fieldset .gfield_description.validation_message.gfield_validation_message {
    top: inherit !important;
    bottom: -13px;
}

.popup {
    max-width: 100%;
}

.gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

#myPopup.show {
    position: absolute;
    z-index: 5;
    padding: 10px;
    display: none;
    margin: 0;
}

.formpopuptext {
    transition: transform .15s ease-out .15s;
    pointer-events: none;
    text-align: center;
    border: 1px solid rgb(22 80 41);
    background: #fff;
    font-size: 14px;
    color: #000 !important;
    line-height: 1.5;
    max-width: 650px;
    padding: 10px;
    position: absolute;
    z-index: 5;
    display: none;
}

.gform_wrapper.gravity-theme .gform_footer {
    margin: 0;
    padding: 13px 0 0 0;
    justify-content: center;
}


/* Footer Project Section */
.ftr-project-sec .container {
    max-width: 1510px;
    width: 100%;
    margin: auto;
}

.project-heading {
    font-size: 114px;
    font-family: var(--headingFont);
    font-weight: 600;
    line-height: 1.1;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: -0.9px;
    margin: 0 0 55px;
}

.project-contnt-blk {
    display: flex;
    justify-content: space-between;
    align-items: end;
    background-color: #286FFE;
    padding: 79px 110px 72px;
    border-radius: 45px;
    position: relative;
}

.project-contnt .text-heading {
    font-size: 80px;
    font-weight: 800;
    font-family: 'Mona Sans';
    color: #fff;
    /* margin: 0 0 11px; */
    margin: 0;
    width: 85.5%;
    text-transform: inherit;
}

.project-heading-btn a {
    background-image: url(../images/project-sec-arow-icn.webp);
    background-position: center;
    /* background-size: 24px; */
    background-repeat: no-repeat;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    display: inline-block;
    width: 51px;
    height: 51px;
}

.project-top-cont {
    display: flex;
    justify-content: start;
    align-items: end;
    gap: 10px;
    margin-bottom: 25px;
}

.project-heading-btn a:hover {
    background-image: url(../images/project-sce-arow-hvr-iocn.webp);
    background-color: #1452CF;
}

.project-contnt {
    position: relative;
    z-index: 0;
    width: 73%;
}

.project-contnt p {
    font-size: 24px;
    font-family: var(--bodyFont);
    font-weight: 500;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
    padding-left: 5px;
}

.project-contnt-btn .cmn-btn {
    background-color: #fff;
    color: #1452CF;
    font-size: 20px;
    padding: 13px 44px;
    transition-duration: 0s;
    border: 4px solid #fff;
}

.project-contnt-btn a.cmn-btn:hover {
    background-color: #fff;
    border-color: #1452CF;
    color: #1452CF;
}

.project-contnt-btn {
    padding-bottom: 25px;
    padding-right: 10px;
}

.word-wrap {
    position: relative;
    display: inline-block;
    height: 1em;
    overflow: hidden;
    vertical-align: bottom;
}

#changing-word {
    display: inline-block;
    transform: translateY(100%);
}

@media screen and (max-width:1680px) {
    .ftr-project-sec .container {
        max-width: 1400px;
    }

    .project-heading {
        font-size: 104px;
        margin: 0 0 50px;
    }

    .project-contnt-blk {
        padding: 70px 90px 110px;
        border-radius: 45px;
    }

    .project-contnt .text-heading {
        font-size: 72px;
        width: 81.5%;
    }

    .project-contnt p {
        font-size: 22px;
        padding-left: 8px;
    }

    .project-heading-btn a {
        background-size: 21px;
        width: 48px;
        height: 48px;
        padding: 14px;
    }

    .project-contnt-btn .cmn-btn {
        font-size: 19px;
        padding: 13px 42px;
    }

    .project-contnt-btn {
        padding-right: 9px;
    }
}

@media screen and (max-width:1550px) {
    .ftr-project-sec .container {
        max-width: 1300px;
    }

    .project-heading {
        font-size: 98px;
        margin: 0 0 45px;
    }

    .project-contnt-blk {
        padding: 62px 80px 95px;
        border-radius: 40px;
    }

    .project-contnt .text-heading {
        font-size: 67px;
    }

    .project-top-cont {
        gap: 9px;
        margin-bottom: 10px;
    }

    .project-contnt p {
        font-size: 20px;
        padding-left: 7px;
    }

    .project-heading-btn a {
        background-size: 19px;
        width: 45px;
        height: 45px;
        padding: 14px;
    }

    .project-contnt-btn .cmn-btn {
        font-size: 18px;
        padding: 12px 39px;
    }

    .project-contnt-btn {
        padding-right: 8px;
    }

}

@media screen and (max-width:1440px) {
    .ftr-project-sec .container {
        max-width: 1200px;
    }

    .project-heading {
        font-size: 83px;
        margin: 0 0 41px;
    }

    .project-contnt-blk {
        padding: 56px 60px 88px;
        border-radius: 35px;
    }

    .project-contnt .text-heading {
        font-size: 59px;
    }

    .project-contnt p {
        font-size: 18px;
        padding-left: 5px;
    }

    .project-heading-btn a {
        background-size: 18px;
        width: 42px;
        height: 42px;
        padding: 14px;
    }

    .project-contnt-btn .cmn-btn {
        font-size: 17px;
        padding: 12px 36px;
    }

    .project-contnt-btn {
        padding-right: 7px;
        padding-bottom: 4px;
    }
}

@media screen and (max-width:1367px) {
    .ftr-project-sec .container {
        max-width: 1100px;
    }

    .project-heading {
        font-size: 81px;
        margin: 0 0 38px;
    }

    .project-contnt-blk {
        padding: 48px 53px 77px;
        border-radius: 32px;
    }

    .project-contnt .text-heading {
        font-size: 57px;
        width: 79%;
    }

    .project-heading-btn a {
        background-size: 16px;
        width: 38px;
        height: 38px;
        padding: 13px;
    }

    .project-top-cont {
        gap: 8px;
        margin-bottom: 9px;
    }

    .project-contnt p {
        font-size: 17px;
        padding-left: 4px;
    }

    .project-contnt-btn .cmn-btn {
        font-size: 16px;
        padding: 12px 34px;
    }

}

@media screen and (max-width:1280px) {
    .ftr-project-sec .container {
        max-width: 980px;
    }

    .project-heading {
        font-size: 74px;
        margin: 0 0 31px;
    }

    .project-contnt-blk {
        padding: 43px 43px 63px;
        border-radius: 27px;
    }

    .project-contnt .text-heading {
        font-size: 51px;
    }

    .project-contnt p {
        font-size: 16px;
        padding-left: 3px;
    }

    .project-heading-btn a {
        background-size: 15px;
        width: 35px;
        height: 35px;
        padding: 9px;
    }

    .project-contnt-btn .cmn-btn {
        font-size: 15px;
        letter-spacing: 0.2px;
        padding: 12px 32px;
    }

    .project-contnt-btn {
        padding: 0;
    }

}

@media screen and (max-width:1024px) {
    .ftr-project-sec .container {
        max-width: 720px;
    }

    .project-contnt-blk {
        padding: 30px 40px;
        border-radius: 25px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .project-contnt .text-heading {
        text-align: center;
        font-size: 40px;
        width: 100%;
    }

    .project-heading-btn a {
        background-size: 14px;
        width: 30px;
        height: 30px;
        padding: 9px;
    }

    .project-top-cont {
        margin-bottom: 15px;
    }

    .project-contnt p {
        font-size: 15px;
        line-height: 1.3;
        text-align: center;
    }

    .project-heading {
        font-size: 55px;
        margin: 0 0 20px;
    }

    .project-contnt-btn .cmn-btn {
        font-size: 14px;
        padding: 15px 20px;
    }

    .project-heading-btn a {
        display: none;
    }
}

@media screen and (max-width:768px) {
    .ftr-project-sec .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .project-contnt-blk {
        padding: 20px;
        border-radius: 20px;
        gap: 20px;
    }

    .project-heading {
        font-size: 33px;
        margin: 0 0 20px;
    }

    .project-contnt-btn .cmn-btn {
        font-size: 14px;
        padding: 15px 20px;
    }

    .project-contnt .text-heading {
        text-align: center;
        font-size: 23px;
        letter-spacing: 0px;
    }

    .project-top-cont {
        margin-bottom: 10px;
    }

    .project-contnt-btn .cmn-btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .project-contnt {
        width: 100%;
    }
}





/* Testimonials Section */
.hm-testimonials {
    padding-bottom: 121px;
}

.hm-testimonials .container {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
}

.hm-testimonials .text-heading {
    text-align: center;
    font-family: 'poppins';
    margin-bottom: 32px;
	line-height: 1.2;
}

.hm-testimonials .sub-heading {
    margin: 0 auto 0px;
}

.hm-testi-slide-blk {
    position: relative;
    width: 100%;
    height: 660px;
    overflow: hidden;
    border-radius: 20px;
}

.hm-testi-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 95%;
    border-radius: 20px;
    transition: all .6s cubic-bezier(.2, .8, .2, 1);
    z-index: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 69px 110px;
    height: 100%;
}

.hm-testi-item-cont {
    width: 77.8%;
    margin: auto;
}

/* .hm-testi-item:nth-child(3n+1) {
    background: #DAD7FF;
}

.hm-testi-item:nth-child(3n+2) {
    background: #DFF2F9;
}

.hm-testi-item:nth-child(3n) {
    background: #C2E0FF;
} */

.hm-testi-item.purple{
    background:#DAD7FF;
}

.hm-testi-item.blue{
    background:#DFF2F9;
}

.hm-testi-item.sky{
    background:#C2E0FF;
}

.hm-testi-item.active {
    width: 95%;
    z-index: 3;
    transform: translateX(0);
}

.hm-testi-item.prev1 {
    width: 95%;
    right: 0;
    left: auto;
    z-index: 2;
    transform: translateX(-2.5%);
}

.hm-testi-item.next1 {
    width: 90%;
    right: 0;
    left: auto;
    z-index: 1;
    transform: translateX(0);
}

.hm-testi-star {
    width: 64px;
    height: 46px;
    background-image: url(../images/testi-quote.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    margin-bottom: 36px;
}

.hm-testi-item .testi-cnt {
    font-size: 53px;
    color: #000;
    margin: 0 0 45px;
    font-weight: 800;
    line-height: 1.24;
    font-family: 'Mona Sans';
    letter-spacing: 0px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hm-testi-item .testi-title {
    font-size: 26px;
    color: #000;
    line-height: 1;
    margin: 0;
    letter-spacing: 0px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
}

.hm-testi-slide-blk .next {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: none;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s;
    font-family: 'Plus Jakarta Sans';
}

@media screen and (max-width:1800px) {
    .hm-testi-slide-blk {
        height: 630px;
    }

    .hm-testi-star {
        width: 60px;
        height: 43px;
        margin-bottom: 35px;
    }

    .hm-testi-item .testi-cnt {
        font-size: 50px;
        margin: 0 0 22px;
    }

    .hm-testi-item .testi-title {
        font-size: 25px;
    }

    .hm-testi-slide-blk .next {
        width: 110px;
        height: 110px;
        font-size: 24px;
    }

}


@media screen and (max-width:1680px) {
    .hm-testi-item {
        padding: 70px;
    }

    .hm-testi-slide-blk {
        height: 610px;
    }

    .hm-testi-item .testi-cnt {
        font-size: 47px;
        margin: 0 0 20px;
    }

    .hm-testi-slide-blk .next {
        width: 100px;
        height: 100px;
        font-size: 22px;
    }

    .hm-testi-item .testi-title {
        font-size: 24px;
    }

    .hm-testimonials .text-heading {
        margin-bottom: 35px;
    }

}

@media screen and (max-width:1550px) {
    .hm-testi-item {
        padding: 65px;
    }

    .hm-testi-slide-blk {
        height: 580px;
    }

    .hm-testi-item .testi-cnt {
        font-size: 44px;
    }

    .hm-testi-slide-blk .next {
        width: 95px;
        height: 95px;
        font-size: 21px;
    }

    .hm-testi-item .testi-title {
        font-size: 23px;
    }

    .hm-testimonials .text-heading {
        margin-bottom: 32px;
    }

    .hm-testimonials {
        padding-bottom: 100px;
    }
}

@media screen and (max-width:1440px) {
    .hm-testi-item {
        padding: 60px;
    }

    .hm-testi-slide-blk {
        height: 540px;
    }

    .hm-testi-item .testi-cnt {
        font-size: 40px;
        margin-bottom: 18px;
    }

    .hm-testi-slide-blk .next {
        width: 90px;
        height: 90px;
        font-size: 20px;
    }

    .hm-testi-item .testi-title {
        font-size: 22px;
    }

    .hm-testimonials .text-heading {
        margin-bottom: 30px;
    }

    .hm-testimonials {
        padding-bottom: 90px;
    }
}

@media screen and (max-width:1366px) {
    .hm-testi-item {
        padding: 55px;
    }

    .hm-testi-slide-blk {
        height: 500px;
    }

    .hm-testi-item .testi-cnt {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .hm-testi-slide-blk .next {
        width: 85px;
        height: 85px;
        font-size: 19px;
    }

    .hm-testi-item .testi-title {
        font-size: 21px;
    }

    .hm-testimonials .text-heading {
        margin-bottom: 28px;
    }

    .hm-testimonials {
        padding-bottom: 75px;
    }
}

@media screen and (max-width:1280px) {
    .hm-testi-item {
        padding: 50px;
    }

    .hm-testi-slide-blk {
        height: 460px;
    }

    .hm-testi-item .testi-cnt {
        font-size: 32px;
        margin-bottom: 17px;
    }

    .hm-testi-slide-blk .next {
        width: 80px;
        height: 80px;
        font-size: 18px;
    }

    .hm-testi-item .testi-title {
        font-size: 20px;
    }

    .hm-testimonials .text-heading {
        margin-bottom: 26px;
    }

    .hm-testimonials {
        padding-bottom: 60px;
    }

}

@media screen and (max-width:1180px) {
    .hm-testi-item {
        padding: 45px;
    }

    .hm-testi-slide-blk {
        height: 440px;
    }

    .hm-testi-item .testi-cnt {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .hm-testi-slide-blk .next {
        width: 75px;
        height: 75px;
        font-size: 17px;
    }

    .hm-testi-item .testi-title {
        font-size: 19px;
    }

    .hm-testimonials .text-heading {
        margin-bottom: 24px;
    }


}

@media screen and (max-width:1024px) {
    .hm-testi-item {
        padding: 35px;
    }

    .hm-testi-item .testi-cnt {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hm-testi-slide-blk .next {
        width: 70px;
        height: 70px;
        font-size: 16px;
    }

    .hm-testi-slide-blk .next {
        display: none;
    }

    .hm-testi-slide-blk {
        height: 350px;
    }

    .hm-testi-star {
        width: 50px;
        height: 34px;
        margin-bottom: 20px;
    }

    .hm-testi-item .testi-cnt {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .hm-testi-item-cont {
        width: 100%;
        margin: auto;
    }

    .hm-testi-item .testi-title {
        font-size: 18px;
    }

    .hm-testi-item.prev1 {
        width: 100%;
        transform: translateX(0%);
    }

    .hm-testi-item.active {
        transform: translateX(0);
        width: 100%;
    }

    .hm-testi-item.next1 {
        width: 100%;
        transform: translateX(0);
    }

    .hm-testi-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        margin-top: 25px;
    }

    .hm-testi-dots .dot {
        text-align: center;
        margin: 20px auto 0;
    }

    .hm-testi-dots .dot {
        background-color: #0040C1;
        height: 10px;
        width: 10px;
        border-radius: 50%;
        margin: 0 3px;
    }

    .hm-testi-dots .dot.active {
        background-color: #286ffe;
    }

    .hm-testimonials .text-heading {
        margin-bottom: 22px;
    }

    .hm-testimonials {
        padding-bottom: 50px;
    }

}

@media screen and (max-width:768px) {
    .hm-testi-item {
        padding: 35px;
    }

    .hm-testi-slide-blk {
        height: 250px;
        border-radius: 10px !important;
    }

    .hm-testi-item .testi-cnt {
        font-size: 18px;
    }

    .hm-testi-item .testi-title {
        font-size: 16px;
    }

    .hm-testi-star {
        width: 35px;
        height: 23px;
        margin-bottom: 15px;
    }

    .hm-testi-item {
        padding: 25px;
        border-radius: 10px;
    }

    .hm-testi-dots {
        gap: 2px;
        margin-top: 18px;
    }

    .hm-testimonials .text-heading {
        margin-bottom: 20px;
    }

    .hm-testimonials .sub-heading {
        margin-bottom: 20px;
    }

    .hm-testimonials {
        padding-bottom: 40px;
    }

}

@media screen and (max-width:480px) {
    .hm-testimonials .container {
        padding: 0 10px;
    }

    .hm-testi-slide-blk {
        height: 200px;
        border-radius: 10px !important;
    }

    .hm-testi-item {
        padding: 20px;
    }

    .hm-testi-item .testi-cnt {
        font-size: 16px;
        margin-bottom: 13px;
    }

    .hm-testi-item .testi-title {
        font-size: 14px;
    }
}






