/* variables */
:root {
    --main-black-color: #161616;
    --main-orange: #FA6714;
    --main-gray: #EDEDED;
    --header-height: 74px;
    --header-mobile-height: 50px;
    --transition-duration-time: 0.3s;
    --animation-duration-time: 2s;
    --headings-main-font: 'Playfair Display', serif;
    --texts-main-font: 'Montserrat', sans-serif;
  }
/* variables */

*{
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
}
body{
    font-family: var(--texts-main-font);
    font-weight: 400;
    font-size: 16px;
    overflow-x: hidden;
}
.container{
    width: 100%;
    max-width: 1520px;
    padding: 0 16px;
    margin: 0 auto;
}
/* header start */
.header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--main-black-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 3;
}
.header-inner{
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    width: 189px;
    height: 61px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.nav{
    display: flex;
    justify-content: space-between;
    list-style: none;
}
.menu-item{
    font-family: var(--texts-main-font);
    font-weight: 500;
    margin: 0 20px;
    flex-shrink: 0;
}
.menu-item:last-child{
    margin-right: 0;
}
.menu-item a{
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    transition: var(--transition-duration-time);
    font-size: 14px;
}
.menu-item a:hover{
    color: #cccccc;
}
.header-menu-btn{
    width: 18px;
    height: 12px;
    justify-content: center;
    align-items: center;
    display: none;
}
.burger-menu-btn{
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: 0s;
}
.burger-menu-btn:before{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: -5px;
    left: 0;
    transition: var(--transition-duration-time);
}
.burger-menu-btn:after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 5px;
    left: 0;
    transition: var(--transition-duration-time);
}
@media screen and (max-width: 1391px){
    .menu-item{
        font-size: 16px;
        margin: 0 15px;
    }
}
@media screen and (max-width: 1305px){
    .menu-item{
        font-size: 14px;
        margin: 0 12px;
    }
}
@media screen and (max-width: 1152px){
    .header-nav-active{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #071C35;
        transition: var(--transition-duration-time);
        z-index: 10;
    }
    .nav{
        display: none;
    }
    .header-nav-active .nav{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .menu-item{
        font-size: 16px;
        margin: 10px 0;
    }
    .header-menu-btn{
        display: flex;
    }
    .header-menu-btn-active{
        position: relative;
        z-index: 11;
    }
    .header-menu-btn-active .burger-menu-btn{
        background-color: transparent;
    }
    .header-menu-btn-active .burger-menu-btn:before{
        top: 0;
        transform: rotate(45deg);
    }
    .header-menu-btn-active .burger-menu-btn:after{
        top: 0;
        transform: rotate(-45deg);
    }
    .header-logo-menu-active{
        position: relative;
        z-index: 11;
    }
}

@media screen and (max-width: 521px){
    .header{
        height: var(--header-mobile-height);
    }
    .header-logo{
        width: 119px;
        height: 38px;
    }
    .header-menu-btn{
        margin-right: 3px;
    }
}
/* header end */
/* main start */
.main{
    padding-top: var(--header-height);
    overflow: hidden;
}
@media screen and (max-width: 521px){
    .main{
        padding-top: var(--header-mobile-height);
    }
}
/* main end */ 
/* hero banner home page */
.hero-banner{
    min-height: calc(100vh - var(--header-height));
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    background-size: 0%;
}
.hero-banner-video{
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    bottom: 0;
    z-index: -1;
    background-repeat: no-repeat;
    width: 100%;
}
.hero-banner:after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/video-bg-2.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.85;
    z-index: -1;
}
.hero-banner-inner{
    width: 100%;
    display: flex;
}
.hero-banner-inner.hero-banner-inner-centered{
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hero-banner-inner-text-wrapper{
    max-width: 582px;
    padding: 149px 0 58px 0;
}
.hero-banner-sub-text{
    font-family: var(--texts-main-font);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 19px;
}
.hero-banner-heading{
    max-width: 559px;
    text-align: center;
    font-size: 75px;
    line-height: 75px;
    font-family: var(--headings-main-font);
    font-weight: 500;
    color: #fff;
    margin: 0 auto;
    padding-bottom: 40px;
    letter-spacing: -1.5px;
}
.hero-banner-btn{
    font-family: var(--texts-main-font);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 199px;
    height: 51px;
    background-color: var(--main-orange);
    border: 2px solid var(--main-orange);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-duration-time);
    margin: 0 auto;
}
.hero-banner-btn:hover{
    background-color: transparent;
}
.trusted-brands{
    padding-top: 61px;
}
.trusted-brands-inner{
    max-width: 100vw;
    overflow: hidden;
}
.trusted-brands-heading{
    font-family: var(--texts-main-font);
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    position: relative;
    color: #fff;
}
.trusted-brands-heading:before{
    content: '';
    display: block;
    max-width: 29.05%;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: -10px;
    margin-top: -1px;
}
.trusted-brands-heading:after{
    content: '';
    display: block;
    max-width: 29.05%;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: -10px;
    margin-top: -1px;
}
.trusted-brands-wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 17px 0;
    max-width: 1117px;
    overflow: hidden;
}
.trusted-brands-single{
    display: inline-block;
    width: 185px;
    height: 56px;
    background-position: center center;
    background-size: auto;
    background-repeat: no-repeat;
    margin: 0 2px;
    outline: none;
    flex-shrink: 0;
}

.trusted-brands .desktop-only {
    display: block;
}
.trusted-brands .mobile-only {
    display: none;
}

.trusted-brands-slider{
    width: 100%;
    overflow-x: scroll;
    display: flex;
    scrollbar-color: transparent transparent;
}
.trusted-brands-slider::-webkit-scrollbar {
    display: none;
}
.slick-list{
    overflow: hidden;
    max-width: 100%;
}
.slick-track{
    display: flex;
}
@media (max-height: 750px) {
    .hero-banner-inner-text-wrapper{
        padding: 65px 0 58px 0;
    }
}
@media (max-height: 720px) {
    .hero-banner-inner-text-wrapper{
        padding: 45px 0 40px 0;
    }
}
@media (max-height: 712px) {
    .hero-banner-inner-text-wrapper{
        padding: 45px 0 30px 0;
    }
}
@media screen and (max-width: 1200px){
    .hero-banner-video {
        height: 100%;
        width: unset;
    }
}
@media screen and (max-width: 1281px){
    .hero-banner-inner-text-wrapper{
        padding: 60px 0 35px 0;
    }
    .hero-banner{
        min-height: 665px;
    }
}

@media screen and (max-width: 1025px){
    .trusted-brands-heading:before{
        max-width: 24%;
    }
    .trusted-brands-heading:after{
        max-width: 24%;
    }
    .hero-banner-heading{
        font-size: 60px;
    }
}
@media screen and (max-width: 769px){
    .trusted-brands-heading:before{
        max-width: 17%;
    }
    .trusted-brands-heading:after{
        max-width: 17%;
    }
    .hero-banner-heading{
        font-size: 54px;
        max-width: 425px;
    }
}
@media screen and (max-width: 637px){
    .trusted-brands-heading:before{
        display: none;
    }
    .trusted-brands-heading:after{
        max-width: 100%;
        bottom: -16px;
        left: 0;
        top: auto;
    }
    .trusted-brands-wrapper{
        padding: 30px 0;
    }
} 
@media screen and (max-width: 521px){
    .hero-banner{
        min-height: 520px;
        background-size: cover;
    }
    .hero-banner-video{
        display: none;
    }
    .hero-banner-inner-text-wrapper{
        padding: 131px 0 50px 0;
    }
    .hero-banner-sub-text{
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 9px;
    }
    .hero-banner-heading{
        font-size: 30px;
        line-height: 32px;
        max-width: 270px;
        padding-bottom: 15px;
        letter-spacing: 0;
    }
    .hero-banner-btn{
        font-size: 12px;
        width: 112px;
        height: 32px;
    }
    .trusted-brands{
        padding-top: 57px;
    }
    .trusted-brands-single{
        width: 80px;
        height: 32px;
        background-size: 80%;
        margin: 0;
    }
    .trusted-brands .desktop-only {
        display: none;
    }
    .trusted-brands .mobile-only {
        display: block;
    }
    .trusted-brands-slider{
        padding-left: 15px;
        padding-right: 25px;
    }
    .trusted-brands-heading{
        font-size: 13px;
    }
    .trusted-brands-heading:after{
        max-width: 288px;
        bottom: -16px;
        left: 50%;
        margin-left: -144px;
    }
    .trusted-brands-wrapper{
        padding: 29px 0 20px 0;
    }
}  
/* hero banner home page */
/* Our mission start */
.our-mission{
    min-height: 704px;
    position: relative;
    overflow: hidden;
    background-image: url('../img/Our-mission-bg.svg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.our-mission:before{
    content: '';
    display: block;
    width: 973px;
    height: 259px;
    position: absolute;
    bottom: -10px;
    left: -15px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/compressed/value.png');
}
.our-mission:after{
    content: '';
    display: block;
    width: 1075px;
    height: 264px;
    position: absolute;
    top: -72px;
    right: -7px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/compressed/driven.png');
}
.our-mission-background{
    width: 100%;
    height: 100%;
    position: relative;
}
.our-mission-inner{
    text-align: center;
    padding: 155px 0 15px 0;
    position: relative;
    z-index: 1;
}
.our-mission-heading{
    font-family: var(--headings-main-font);
    font-weight: 500;
    color: var(--main-black-color);
    font-size: 60px;
    line-height: 65px;
    margin-bottom: 110px;
}
.our-mission-text{
    font-size: 40px;
    line-height: 55px;
    max-width: 796px;
    margin: 0 auto;
    position: relative;
}
.our-mission-text:before{
    content: '';
    display: block;
    width: 72px;
    height: 10px;
    background-color: var(--main-orange);
    position: absolute;
    top: -55px;
    left: 50%;
    margin-left: -36px;
}
.our-mission-text:after{
    content: '';
    display: block;
    width: 72px;
    height: 10px;
    background-color: var(--main-orange);
    position: absolute;
    bottom: -47px;
    left: 50%;
    margin-left: -36px;
}
.our-mission-text b{
    font-family: var(--texts-main-font);
    font-weight: 700;
}
@media screen and (max-width: 821px){
    .our-mission-heading{
        font-size: 50px;
        line-height: 55px;
    }
    .our-mission-text{
        font-size: 30px;
        line-height: 40px;
    }
}
@media screen and (max-width: 769px){
    .our-mission{
        min-height: 540px;
    }
    .our-mission:after{
        width: 530px;
        height: 200px;
    }
    .our-mission:before{
        width: 490px;
        height: 150px;
    }
    .our-mission-inner{
        padding: 100px 0 15px 0;
    }
}
@media screen and (max-width: 426px){
    .our-mission{
        min-height: 395px;
    }
    .our-mission-inner{
        padding: 73px 0 15px 0;
    }
    .our-mission-heading{
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 46px;
    }
    .our-mission-text{
        font-size: 22px;
        line-height: 30px;
        max-width: 288px;
    }
    .our-mission-text:before{
        width: 64px;
        margin-left: -32px;
        height: 8px;
        top: -25px;
    }
    .our-mission-text:after{
        width: 64px;
        margin-left: -32px;
        height: 8px;
        bottom: -23px;
    }
}
/* Our mission end */
/* Services start */
.services{
    min-height: 1024px;
    background-image: url('../img/services-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.services-inner{
    padding: 101px 0 20px 0;
}
.services-inner-subtext{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.services-inner-heading{
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    position: relative;
}
.services-inner-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -30px;
    left: 50%;
    margin-left: -50px;
}
.services-cards-wrapper{
    display: flex;
    justify-content: space-between;
    padding-top: 103px;
}
.services-single-card{
    width: 100%;
    max-width: 464px;
    min-width: 288px;
    height: fit-content;
    min-height: 592px;
    color: var(--main-black-color);
    border-radius: 25px;
    padding: 2.8% 2.2%;
    animation-duration: var(--animation-duration-time);
}
.services-single-card:first-child{
    background-color: #FEB5B5;
    margin-right: 30px;
}
.services-single-card:nth-child(2){
    background-color: #C2E5F4;
}
.services-single-card:nth-child(2n){
    margin-right: 30px;
}
.services-single-card:nth-child(3){
    background-color: #FFDDA9;
}
.services-single-card:nth-child(3n+3){
    margin-right: 0;
}

.services-single-card-icon-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    padding: 0 10px;
    min-height: 63px;
}
.services-single-card-icon{
    width: auto;
    height: auto;
}
.service-single-cart-inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 18px;
    min-height: 443px;
}
.service-single-cart-inner-texts{
    display: flex;
    flex-direction: column;
}
.services-single-card-heading{
    font-family: var(--headings-main-font);
    font-size: 34px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 15px;
}
.services-single-card-subheading{
    font-family: var(--headings-main-font);
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 31px;
}
.services-single-card-text{
    font-size: 16px;
    line-height: 32px;
}
.services-single-card-learn-more-btn{
    text-decoration: none;
    text-transform: uppercase;
    color: var(--main-black-color);
    padding-left: 24px;
    letter-spacing: 0.5px;
    position: relative;
}
.services-single-card-learn-more-btn:after{
    content: '';
    display: block;
    width: 116px;
    height: 1px;
    background-color: var(--main-black-color);
    transition: var(--transition-duration-time);
    position: absolute;
    bottom: -3px;
    left: 24px;
    opacity: 0;
}
.services-single-card-learn-more-btn:hover:after{
    opacity: 1;
}
.services-single-card-learn-more-btn:before{
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 2px;
    top: 50%;
    margin-top: -7px;
    background-image: url('../img/icons/learn-more-btn-ico.svg');
    background-position: center center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 1281px){
    .services-single-card{
        min-height: 615px;
    } 
}
@media screen and (max-width: 1225px){
    .services-single-card{
        min-height: 565px;
        margin-bottom: 20px;
    } 
    .services-single-card:first-child{
        background-color: #FEB5B5;
        margin-right: 0;
    }
    .services-single-card:nth-child(2n){
        margin-right: 0;
    }
    .services-cards-wrapper{
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
}
@media screen and (max-width: 821px){
    .services-inner-heading{
        font-size: 50px;
        line-height: 55px;
    }
    .services-inner{
        padding: 75px 0 20px 0;
    }
    .services-single-card{
        min-height: fit-content;
        padding-bottom: 25px;
    }
    .service-single-cart-inner{
        min-height: 400px;
    }
}
@media screen and (max-width: 426px){
    .services-inner{
        padding: 64px 0 41px 0;
    }
    .services-inner-subtext{
        font-size: 15px;
        line-height: 18px;
        text-align: left;
        margin-bottom: 17px;
    }
    .services-inner-heading{
        font-size: 26px;
        line-height: 30px;
        text-align: left;
    }
    .services-inner-heading:after{
        left: 0;
        margin-left: 0;
        bottom: -30px;
    }
    .services-cards-wrapper{
        padding-top: 77px;
    }
    .services-single-card{
        padding: 0;
        margin-bottom: 24px;
    }
    .service-single-cart-inner{
        padding: 16px 23px;
    }
    .services-single-card-heading{
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 10px;
    }
    .services-single-card-subheading{
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 23px;
    }
    .services-single-card-text{
        font-size: 13px;
        line-height: 25px;
    }
    .services-single-card-learn-more-btn{
        font-size: 15px;
        margin-top: 27px;
        margin-bottom: 11px;
    }
    .services-single-card-icon-wrapper{
        min-height: auto;
        padding-top: 32px;
        padding-left: 33px;
    }
    .services-single-card-icon{
        width: 44px;
    }
}
/* Services end */
/* Our Works start */
.our-works-inner{
    padding: 197px 0 100px 0;
}
.our-works-subtext{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--main-black-color);
    text-transform: uppercase;
    margin-bottom: 26px;
}
.our-works-heading{
    max-width: 730px;
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
}
.our-works-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -22px;
    left: 50%;
    margin-left: -50px;
}
.works-inner-wrapper{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 85px;
}
.single-project-card{
    width: 100%;
    max-width: 704px;
    animation-duration: var(--animation-duration-time);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 101px;
    outline: none;
}

.single-project-card > a {
    text-decoration: none;
}

.single-project-card > a.tile-link {
    width: 100%;
}

.single-project-card a, .single-project-card a:visited, .single-project-card a:hover, .single-project-card a:active {
  color: inherit;
}

.single-project-card:nth-child(2n+1){
    margin-right: 25px;
}
.single-project-banner{
    width: 100%;
    height: 440px;
    margin-bottom: 32px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.country-label{
    color: var(--main-black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    background-color: #fff;
}
.single-project-title{
    font-size: 16px;
    line-height: 18px;
    color: var(--main-black-color);
    margin-bottom: 7px;
    text-align: center;
}

.single-project-description{
    font-family: var(--headings-main-font);
    font-weight: 500;
    font-size: 34px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 50px;
}
.view-project-btn{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--main-black-color);
    position: relative;
    padding-left: 23px;
}
.view-project-btn:after{
    content: '';
    display: block;
    width: 125px;
    height: 1px;
    background-color: var(--main-black-color);
    transition: var(--transition-duration-time);
    position: absolute;
    bottom: -3px;
    left: 24px;
    opacity: 0;
}
.view-project-btn:hover:after{
    opacity: 1;
}
.view-project-btn:before{
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 2px;
    top: 50%;
    margin-top: -7px;
    background-image: url('../img/icons/learn-more-btn-ico.svg');
    background-position: center center;
    background-repeat: no-repeat;
}
.projects-slider-arrows{
    display: none;
}
.view-all-projects-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--texts-main-font);
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    background-color: var(--main-orange);
    border: 2px solid var(--main-orange);
    padding: 8px 40px 8px 40px;
    min-width: 321px;
    width: fit-content;
    height: 51px;
    margin: 0 auto;
    transition: var(--transition-duration-time);
}
.view-all-projects-btn:hover{
    background-color: transparent;
    color: var(--main-black-color);
}
.single-project-card:last-child{
    margin-bottom: 50px;
}
@media screen and (max-width: 1466px){
    .single-project-card{
        max-width: 49%;
    }
    .single-project-banner{
        height: 440px;
        background-size: cover;
    }
}
@media screen and (max-width: 1387px){
    .single-project-card{
        max-width: 48%;
    }
    .single-project-banner{
        height: 405px;
    }
}
@media screen and (max-width: 1281px){
    .single-project-banner{
        height: 365px;
    }
    .single-project-card{
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 1182px){
    .single-project-banner{
        height: 355px;
    }
}
@media screen and (max-width: 1026px){
    .our-works-inner{
        padding: 100px 0 75px 0;
    }
    .single-project-card{
        max-width: 704px;
        margin: 0 200px;
    }
    .single-project-card:nth-child(2n+1){
        margin-right: 0;
    }
    .single-project-banner{
        height: 440px;
    }
    .projects-slider-arrows{
        padding-top: 25px;
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
    }
    .projects-slider-arrows .slick-arrow{
        font-size: 0;
        color: transparent;
        width: 35px;
        height: 35px;
        border: none;
        outline: none;
        border-radius: 50%;
        background-image: url('../img/icons/slider-arrow.svg');
        background-position: center;
        background-position-x: 44%;
        background-repeat: no-repeat;
        background-color: var(--main-orange);
    }
    .projects-slider-arrows .slick-arrow.slick-next{
        transform: rotate(180deg);
    }
    .projects-slider-arrows .slick-arrow.slick-disabled{
        opacity: 0.5;
    }
}
@media screen and (max-width: 821px){
    .our-works-heading{
        font-size: 50px;
        line-height: 55px;
    }
}
@media screen and (max-width: 769px){
    .our-works-inner{
        padding: 88px 0 75px 0;
    }
    .single-project-card{
        max-width: 528px;
    }
    .single-project-banner{
        height: 330px;
    }
}
@media screen and (max-width: 576px){
    .single-project-card{
        max-width: 420px;
    }
    .single-project-banner{
        height: 260px;
    }
    .single-project-description{
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 30px;
    }
    .projects-slider-arrows{
        max-width: 96px;
    }
}
@media screen and (max-width: 426px){
    .our-works-subtext{
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .our-works-heading{
        font-size: 26px;
        line-height: 30px;
        width: 288px;
    }
    .our-works-heading:after{
        left: 50%;
        margin-left: -50px;
        bottom: -10px;
    }
    .works-inner-wrapper{
        padding-top: 50px;
    }
    .single-project-card{
        max-width: 288px;
    }
    .single-project-banner{
        height: 180px;
        margin-bottom: 23px;
    }
    .country-label{
        font-size: 12px;
    }
    .single-project-title{
        font-size: 13px;
        margin-bottom: 8px;
    }
    .single-project-banner{
        font-size: 13px;
        line-height: 16px;
    }
    .single-project-description{
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 27px;
    }
    .view-project-btn{
        font-size: 15px;
    }
    .projects-slider-arrows{
        padding-top: 6px;
    }
    .view-all-projects-btn{
        min-width: fit-content;
        font-size: 15px;
    }
}
/* Our Works end */
/* CTA block start */
.cta-block{
    min-height: 570px;
    padding: 110px 0 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-block-inner{
    min-height: 440px;
    width: 100%;
    max-width: 1104px;
    background-image: url('../img/cta-bg.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    border-radius: 15px;
}
.cta-block-inner:before{
    content: '';
    display: block;
    width: 556px;
    height: 570px;
    background-image: url('../img/DOTS.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    margin-top: -280px;
    margin-left: -278px;
}
.cta-block-texts{
    padding-top: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cta-block-subheading{
    text-transform: uppercase;
    font-family: var(--texts-main-font);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
}
.cta-block-heading{
    font-family: var(--headings-main-font);
    font-size: 50px;
    line-height: 58px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 62px;
    max-width: 750px;
    text-align: center;
}
.cta-block-btn{
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--main-orange);
    border: 2px solid var(--main-orange);
    padding: 12px 39px;
    font-size: 18px;
    font-family: var(--texts-main-font);
    font-weight: 500;
    transition: var(--transition-duration-time);
}
.cta-block-btn:hover{
    background-color: transparent;
}
@media screen and (max-width: 1181px){
    .cta-block-texts{
        padding-top: 0;
    }
    .cta-block-inner{
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 335px;
        max-width: 750px;
    }
    .cta-block-inner:before{
        height: 426px;
        width: 444px;
        margin-top: -210px;
        margin-left: -222px;
    }
}
@media screen and (max-width: 769px){
    .cta-block{
        padding: 30px 0 50px 0;
    }
    .cta-block-inner{
        max-width: 90%;
    }
}
@media screen and (max-width: 531px){
    .cta-block-inner{
        width: 340px;
        height: 406px;
    }
    .cta-block-inner:before{
        height: 510px;
        width: 500px;
        margin-top: -255px;
        margin-left: -250px;
    }
    .cta-block-subheading{
        font-size: 13px;
    }
    .cta-block-heading{
        font-size: 25px;
        line-height: 28px;
    }
    .cta-block-btn{
        font-size: 12px;
    }
}
@media screen and (max-width: 426px){
    .cta-block-inner{
        width: 100%;
        max-width: 100%;
        height: 406px;
        align-items: flex-start;
    }
    .cta-block-inner:before{
        height: 496px;
        width: 424px;
        margin-top: -248px;
        margin-left: -212px;
        background-image: url('../img/dots-mobile.svg');
    }
    .cta-block-texts{
        padding-top: 112px;
    }
    .cta-block-subheading{
        margin-bottom: 18px;
    }
    .cta-block-heading{
        max-width: 215px;
        text-align: center;
        margin-bottom: 38px;
    }
    .cta-block-btn{
        padding: 9px 19px;
    }
}
@media screen and (max-width: 321px){
    .cta-block-inner:before{
        height: 496px;
        width: 320px;
        margin-top: -248px;
        margin-left: -160px;

    }
}
/* CTA block end */

/* CEO block start */
.ceo-information-block{
    padding: 150px 0 0 0;
}
.ceo-information-block-inner{
    margin-top: 78px;
    background-color: var(--main-gray);
    padding-bottom: 100px;
}
.ceo-information-photo-wrapper{
    margin-top: -78px;
    width: 100%;
    height: fit-content;
    max-width: 485px;
    max-height: 664px;
    position: relative;
    z-index: 1;
}
.ceo-information-photo-wrapper:before{
    content: '';
    display: block;
    z-index: -1;
    width: 541px;
    height: 333px;
    position: absolute;
    bottom: -207px;
    left: -87px;
    background-image: url('../img/DOTS2.svg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.ceo-information-photo{
    width: 485px;
    height: auto;
}
.ceo-information-inner-wrapper{
    width: 100%;
    max-width: 1135px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.ceo-information-text-wrapper{
    width: 100%;
    max-width: 552px;
    padding-top: 74px;
}
.ceo-information-heading{
    font-family: var(--headings-main-font);
    font-weight: 500;
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 30px;
}
.ceo-information-text{
    font-family: var(--texts-main-font);
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 32px;
}
.ceo-information-text b{
    font-size: 18px;
    line-height: 35px;
    font-family: var(--texts-main-font);
    font-weight: 700;
}
.ceo-information-author-name{
    margin: 45px 0 8px 0;
    font-family: var(--headings-main-font);
    font-weight: 500;
    font-size: 25px;
    padding-left: 18px;
    position: relative;
}
.ceo-information-author-name:before{
    content: '';
    display: inline-block;
    background-color: var(--main-black-color);
    width: 9px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 19px;
}
.ceo-information-author-title{
    font-family: var(--texts-main-font);
    font-size: 20px;
    line-height: 27px;
}
@media screen and (max-width: 1281px){
    .ceo-information-photo-wrapper{
        max-width: fit-content;
    }
    .ceo-information-photo{
        width: 385px;
    }
}
@media screen and (max-width: 989px){
    .ceo-information-photo{
        width: 325px;
    }
}
@media screen and (max-width: 919px){
    .ceo-information-inner-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .ceo-information-photo-wrapper:before{
        display: none;
    }
    .ceo-information-text-wrapper{
        max-width: 80%;
    }
    .ceo-information-text{
        max-width: 100%;
    }
}
@media screen and (max-width: 426px){
    .ceo-information-block{
        padding: 26px 0 0 0;
    }
    .ceo-information-block-inner{
        padding-bottom: 45px;
    }
    .ceo-information-photo{
        width: 288px;
    }
    .ceo-information-photo-wrapper{
        margin-top: -64px;
    }
    .ceo-information-text-wrapper{
        padding-top: 38px;
        max-width: 288px;
    }
    .ceo-information-heading{
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 27px;
    }
    .ceo-information-text{
        font-size: 13px;
        line-height: 25px;
        margin-bottom: 27px;
    }
    .ceo-information-text b{
        font-size: 13px;
        line-height: 25px;
    }
    .ceo-information-author-name{
        font-size: 18px;
        margin: 47px 0 3px 0;
        padding-left: 14px;
    }
    .ceo-information-author-name:before{
        width: 7px;
        left: 1px;
        top: 13px;
    }
    .ceo-information-author-title{
        font-size: 13px;
        line-height: 25px;
    }
}
/* CEO block end */
/* Statistics block start  */
.statistics{
    min-height: 496px;
    background-image: url('../img/statistics-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.statistics-inner{
    padding: 70px 0 25px 0;
}
.statistics-inner-heading{
    font-family: var(--headings-main-font);
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    position: relative;
}
.statistics-inner-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -32px;
    left: 50%;
    margin-left: -50px;
}
.statistics-inner-cards{
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-top: 62px;
    max-width: 920px;
    margin: 0 auto;
}
.statistics-single-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
    width: 100%;
    text-align: center;
}
.statistics-single-card-percent{
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: #fff;
}
.statistics-single-card-name{
    margin-top: 22px;
    max-width: 235px;
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    position: relative;
    min-height: 57px;
}
.statistics-single-card-name:after{
    content: '';
    display: block;
    width: 95px;
    height: 76px;
    background-image: url(../img/DOTS-small.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: -106px;
    left: 50%;
    margin-left: -47px;
}
.statistics-single-card-name.statistics-single-card-name-second:after{
    background-image: url(../img/DOTS-small2.svg);
}
.statistics-single-card-name.statistics-single-card-name-third:after{
    background-image: url(../img/DOTS-small3.svg);
}
@media screen and (max-width: 769px){
    .statistics-single-card-percent{
        font-size: 45px;
        line-height: 50px;
    }
    .statistics-single-card-name{
        font-size: 18px;
        line-height: 22px;
    }
}
@media screen and (max-width: 645px){
    .statistics-inner{
        padding: 67px 0 39px 0;
    }
    .statistics-inner-cards{
        padding-top: 58px;
    }
    .statistics-single-card{
        min-height: 219px;
    }
    .statistics-single-card-name:after{
        bottom: -66px;
    }
    .statistics-single-card-name.statistics-single-card-name-second:after{
        bottom: -87px;
    }
    .statistics-inner-heading{
        font-size: 26px;
        line-height: 30px;
    }
    .statistics-inner-heading:after{
        bottom: -21px;
    }
    .statistics-inner-cards{
        flex-direction: column;
        align-items: center;
    }
}
/* Statistics block end  */
/* Reviews block start */
.reviews-inner{
    padding: 195px 0 110px 0;
}
.reviews-subheading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--main-black-color);
    text-transform: uppercase;
    margin-bottom: 28px;
}
.reviews-heading{
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.reviews-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -21px;
    left: 50%;
    margin-left: -50px;
}
.reviews-slider-wrapper{
    width: 100%;
    max-width: 1140px;
    min-height: 472px;
    margin: 0 auto;
    overflow: visible;
    position: relative;
    padding-top: 100px;
}
.reviews-slider-wrapper:after{
    content: '';
    display: block;
    width: 50vw;
    min-height: 472px;
    background: rgb(59,96,141);
    background: linear-gradient(131deg, rgba(59,96,141,1) 0%, rgba(7,28,53,1) 95%);
    mix-blend-mode: multiply;
    opacity: 0.95;
    position: absolute;
    right: -29.5vw;
    top: 36px;
    z-index: 0;
}
.reviews-slider{
    width: 100%;
    display: flex;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.reviews-slider .slick-track{
    display: flex;
}
.reviews-slider .slick-list{
    overflow: visible;
    max-width: 100%;
}
.reviews-slider-arrows {
    margin-top: 26px;
    display: flex;
    justify-content: space-between;
    width: 94px;
    padding-left: 3px;
}
.reviews-slider-arrows .slick-arrow{
    font-size: 0;
    color: transparent;
    width: 35px;
    height: 35px;
    border: none;
    outline: none;
    border-radius: 50%;
    background-image: url('../img/icons/slider-arrow.svg');
    background-position: center;
    background-position-x: 44%;
    background-repeat: no-repeat;
    background-color: var(--main-orange);
    cursor: pointer;
    transition: var(--transition-duration-time);
}
.reviews-slider-arrows .slick-arrow.slick-next{
    transform: rotate(180deg);
}
.reviews-slider-arrows .slick-arrow:hover{
    opacity: 0.5;
}
.reviews-slider-arrows .slick-arrow.slick-disabled{
    opacity: 0.5;
}
.reviews-single-card{
    margin-right: 32px;
    width: 100%;
    max-width: 455px;
    min-height: 344px;
    display: flex;
    flex-direction: column;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.08);
    padding: 34px 31px;
    flex-shrink: 0;
    position: relative;
}
.reviews-single-card.slick-current{
    position: relative;
}
.reviews-single-card.slick-current:before{
    content: '';
    display: block;
    min-height: 404px;
    width: 50vw;
    background-color: #fff;
    z-index: 2;
    position: absolute;
    left: -51vw;
    top: -45px;
}
.author-info-wrapper{
    width: 100%;
    display: flex;
    height: 64px;
    margin-bottom: 33px;
}
.author-photo{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.author-info{
    display: flex;
    flex-direction: column;
    height: 64px;
    justify-content: center;
    padding-left: 16px;
}
.author-name{
    color: #000;
    font-family: var(--headings-main-font);
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    margin-bottom: 18px;
    position: relative;
}
.author-name:after{
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    background-color: var(--main-orange);
    position: absolute;
    left: 1px;
    bottom: -10px;
}
.author-title{
    font-family: var(--texts-main-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    background: linear-gradient(167deg, rgba(59,96,141,1) 0%, rgba(7,28,53,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.review-text{
    font-size: 15px;
    line-height: 22px;
}
@media screen and (max-width: 1281px){
    .reviews-slider-wrapper:after{
        right: -10vw;
    }
}
@media screen and (max-width: 1169px){
    .reviews-slider-wrapper{
        max-width: 90%;
    }
}
@media screen and (max-width: 1025px){
    .reviews-inner{
        padding: 88px 0 80px 0;
    }
}
@media screen and (max-width: 821px){
    .reviews-heading{
        font-size: 50px;
        line-height: 55px;
    }
    .reviews-slider-arrows .slick-arrow:hover{
        opacity: 1;
    }
}
@media screen and (max-width: 541px){
    .reviews-slider-wrapper{
        padding-top: 43px;
    }
    .reviews-slider-wrapper:after{
        top: 19px;
        right: -75px;
        width: 60vw;
    }
    .reviews-single-card{
        max-width: 288px;
        min-height: 272px;
        padding: 17px 18px;
    }
    .author-info-wrapper{
        margin-bottom: 9px;
    }
    .author-info{
        height: 58px;
    }
    .author-photo{
        width: 56px;
        height: 56px;
    }
    .author-name{
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 14px;
    }
    .author-name:after{
        width: 21px;
        left: -1px;
        bottom: -8px;
    }
    .author-title{
        font-size: 13px;
    }
    .review-text{
        font-size: 13px;
        line-height: 20px;
    }
    .reviews-single-card.slick-current:before{
        min-height: 384px;
    }
}
@media screen and (max-width: 426px){
    .reviews-subheading{
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .reviews-heading{
        font-size: 26px;
        line-height: 30px;
        width: 288px;
    }
    .reviews-heading:after{
        left: 50%;
        margin-left: -50px;
        bottom: -10px;
    }
    .reviews-slider-wrapper{
        padding-top: 36px;
        min-height: auto;
        max-width: 288px;
    }
    .reviews-slider-wrapper:after{
        top: 12px;
        right: -108px;
        min-height: 420px;
    }
    .reviews-slider-arrows{
        margin-top: 29px;
        width: 102px;
        padding-left: 6px;
    }
}
@media screen and (max-width: 321px){
    .reviews-slider-wrapper:after{
        right: -93px;
    }
}
/* Reviews block end */
/* Service details start */
.service-details{
    background-image: url('../img/DECO-3.svg');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
.service-details-inner{
    padding: 70px 0 110px 0;
}
.service-details-subheading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--main-black-color);
    text-transform: uppercase;
    margin-bottom: 20px;    
}
.service-details-heading{
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.service-details-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -21px;
    left: 50%;
    margin-left: -50px;
}
.service-detail-cards{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 59px;
    max-width: 1079px;
    margin: 0 auto;
}
.service-detail-card{
    width: 100%;
    max-width: 304px;
    display: flex;
    flex-direction: column;
    position: relative;
    animation-duration: var(--animation-duration-time);
}
.service-detail-card:before{
    content: '';
    width: 135px;
    height: 170px;
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}
.service-detail-card:nth-child(1):before{
    background-image: url('../img/icons/1.svg');
    left: -73px;
    top: 119px;
}
.service-detail-card:nth-child(2):before{
    background-image: url('../img/icons/2.svg');
    left: -53px;
    top: 119px;
}
.service-detail-card:nth-child(3):before{
    background-image: url('../img/icons/3.svg');
    left: -63px;
    top: 139px;
}
.service-detail-card-image{
    width: 164px;
    height: 164px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
}
.service-detail-card-heading{
    font-family: var(--headings-main-font);
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
    color: var(--main-black-color);
    margin: 17px 0 15px 0;
}
.service-detail-card-text{
    font-size: 16px;
    line-height: 32px;
}
@media screen and (max-width: 1025px){
    .service-details{
        background-image: none;
    }
    .service-detail-cards{
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .service-detail-card{
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 821px){
    .service-details-heading{
        font-size: 50px;
        line-height: 55px;
    }
}
@media screen and (max-width: 541px){
    .service-details-subheading{
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .service-details-heading{
        font-size: 26px;
        line-height: 30px;
        width: 288px;
    }
    .service-details-heading:after{
        left: 50%;
        margin-left: -50px;
        bottom: -10px;
    }
    .service-detail-card-heading{
        font-size: 22px;
        line-height: 28px;
        text-align: center;
        margin: 0 0 6px 0;
    }
    .service-detail-card-text{
        font-size: 13px;
        line-height: 25px;
        text-align: center;
    }
    .service-details-inner{
        padding: 14px 0 100px 0;
    }
    .service-detail-cards{
        padding-top: 7px;
    }
    .service-detail-card{
        margin-bottom: 42px;
    }
    .service-detail-card:before{
        background-size: contain;
    }
    .service-detail-card:nth-child(1):before{
        width: 67px;
        height: 94px;
        left: -7px;
        top: 109px;
    }
    .service-detail-card:nth-child(2):before{
        width: 77px;
        height: 95px;
        left: -1px;
        top: 119px;
    }
    .service-detail-card:nth-child(3):before{
        width: 77px;
        height: 126px;
        left: -4px;
        top: 100px;
    }
}
@media screen and (max-width: 426px){
    .service-detail-card{
        max-width: 288px;
    } 
}
/* Service details end  */
/* Technologies block start */
.technologies-block-inner{
    padding: 156px 0 100px 0;
}
.technologies-block-subheading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--main-black-color);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.technologies-block-heading{
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.technologies-block-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -16px;
    left: 50%;
    margin-left: -50px;
}
.technologies-block-cards{
    padding-top: 132px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
}
.technologies-block-card{
    width: 100%;
    max-width: 224px;
    display: flex;
    flex-direction: column;
    animation-duration: var(--animation-duration-time);
}
.technologies-block-card.technologies-block-card-big{
    max-width: 419px;
}
.technologies-card-list-wrapper{
    width: 100%;
    min-height: 440px;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.12);
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.technologies-card-heading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
    padding: 0 0 5px 22px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
}
.technologies-card-heading:before{
    content: '';
    width: 198px;
    height: 181px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../img/icons/technologies-card-heading-bg.png');
    position: absolute;
    left: 50%;
    margin-left: -103px;
    top: 50%;
    margin-top: -80px;
    z-index: -1;
}
.technologies-card-list{
    height: 100%;
    padding-top: 129px;
    min-width: 224px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.technologies-card-list-item{
    font-family: var(--texts-main-font);
    font-weight: 500;
    color: var(--main-black-color);
    font-size: 22px;
    line-height: 26px;
    position: relative;
    margin-bottom: 48px;
    text-align: center;
}
.technologies-card-list-item:after{
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background-color: #d9d9d9;
    position: absolute;
    left: 50%;
    margin-left: -18px;
    bottom: -24px;
}
.technologies-card-list-item:last-child:after{
    display: none;
}
@media screen and (max-width: 1281px){
    .technologies-block-cards{
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .technologies-block-card{
        margin-bottom: 75px;
    }
}
@media screen and (max-width: 769px){
    .technologies-block-inner{
        padding: 40px 0 20px 0;
    }
    .technologies-block-cards{
        padding-top: 0;
    }
    .technologies-block-card{
        margin: 0 150px 0 150px;
    }
    .technologies-block-cards .slick-list{
        padding-top: 70px !important;
        padding-bottom: 40px !important;
    }
    .technologies-block-cards-arrows{
        display: flex;
        width: 96px;
        justify-content: space-between;
        margin: 0 auto; 
    }
    .technologies-block-cards-arrows .slick-arrow{
        font-size: 0;
        color: transparent;
        width: 35px;
        height: 35px;
        border: none;
        outline: none;
        border-radius: 50%;
        background-image: url('../img/icons/slider-arrow.svg');
        background-position: center;
        background-position-x: 44%;
        background-repeat: no-repeat;
        background-color: var(--main-orange);
        cursor: pointer;
        transition: var(--transition-duration-time);
    }
    .technologies-block-cards-arrows .slick-arrow.slick-next{
        transform: rotate(180deg);
    }
    .technologies-block-cards-arrows .slick-arrow.slick-disabled{
        opacity: 0.5;
    }
    .technologies-card-list{
        padding-top: 100px;
    }
    .technologies-card-list-wrapper{
        min-height: 419px;
    }
}
@media screen and (max-width: 821px){
    .technologies-block-heading{
        font-size: 50px;
        line-height: 55px;
    }
}
@media screen and (max-width: 541px){
    .technologies-block-subheading{
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .technologies-block-heading{
        font-size: 26px;
        line-height: 30px;
        width: 288px;
    }
    .technologies-block-heading:after{
        left: 50%;
        margin-left: -50px;
        bottom: -13px;
    }
    .technologies-card-list{
        min-width: 240px;
    }
    .technologies-block-card-big .technologies-card-list{
        min-width: 145px;
    }
    .technologies-block-card.technologies-block-card-big{
        max-width: 315px;
    }
    .technologies-card-heading{
        font-size: 16px;
    }
    .technologies-card-heading:before{
        width: 176px;
        height: 160px;
        margin-top: -70px;
        margin-left: -92px;
    }
    .technologies-card-list-item{
        font-size: 15px;
        margin-bottom: 24px;
    }
    .technologies-card-list-item:after{
        bottom: -12px;
    }
    .technologies-card-list-wrapper{
        min-height: 315px;
    }
    .technologies-card-list-wrapper{
        box-shadow: 0 0 10px rgb(0 0 0 / 12%);
    }
    .technologies-card-list{
        padding-top: 112px;
    }
}
@media screen and (max-width: 376px){
    .technologies-block-card.technologies-block-card-big .technologies-card-list-wrapper{
        justify-content: space-evenly;
    }
    .technologies-block-card-big .technologies-card-list{
        min-width: 110px;
    }
    .technologies-block-card.technologies-block-card-big{
        max-width: 260px;
    }
}
/* Technologies block end */
/* Team block start */
.team-block{
    padding: 238px 0 100px 0;
}
.team-block-subheading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--main-black-color);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.team-block-heading{
    max-width: 700px;
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.team-block-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -37px;
    left: 50%;
    margin-left: -50px;
}
.team-block-inner{
    margin: 0 auto;
    max-width: 1133px;
    height: 782px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/map.svg');
    position: relative;
    z-index: 1;
    animation-duration: var(--animation-duration-time);
}
.team-block-inner:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #FFFFFF 26.56%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}
.team-block-map-heading{
    font-family: var(--headings-main-font);
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    margin-bottom: 20px;
}
.team-block-map-heading span{
    font-size: 32px;
    color: var(--main-orange);
}
.team-block-map-subheading{
    font-size: 20px;
    line-height: 35px;
    color: #868686;
    text-align: center;
}
.team-block-map{
    padding-top: 56px;
}
.team-block-points{
    position: relative;
}
.team-block-point{
    display: flex;
    justify-content: center;
    padding-top: 17px;
    position: absolute;
    width: 156px;
    height: 70px;
    z-index: 1;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/icons/team-block-map-point-bg.svg');
    animation-duration: var(--animation-duration-time);
}
.team-block-point:after{
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--main-orange);
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -7px;
}
.team-block-point-text{
    font-family: var(--headings-main-font);
    font-size: 22px;
    font-weight: 500;
    color: var(--main-black-color);
    position: relative;
}
.team-block-point:nth-child(1){
    left: 183px; 
    top: 37px;
}
.team-block-point:nth-child(2){
    top: 152px; 
    left: 350px;
}
.team-block-point:nth-child(3){
    top: 125px; 
    right: 352px;
}
.team-block-point:nth-child(4){
    top: 342px; 
    right: 455px;
}
@media screen and (max-width: 1189px){
    .team-block-map{
        padding-top: 30px;
    }
    .team-block-inner{
        max-width: 760px;
    }
    .team-block-point:nth-child(1){
        top: 2px;
        left: 61px;
    }
    .team-block-point:nth-child(2){
        top: 89px;
        left: 191px;
    }
    .team-block-point:nth-child(3){
        top: 83px;
        right: 193px;
    }
    .team-block-point:nth-child(4){
        top: 240px;
        right: 280px;
    }
}
@media screen and (max-width: 821px){
    .team-block-heading{
        font-size: 50px;
        line-height: 55px;
    }
}
@media screen and (max-width: 769px){
    .team-block-inner{
        max-width: 520px;
    }
    .team-block-point{
        width: 80px;
        height: 32px;
        padding-top: 6px;
    }
    .team-block-point:after{
        width: 8px;
        height: 8px;
        margin-left: -2px;
        bottom: -15px;
    }
    .team-block-point-text{
        font-size: 13px;
    }
    .team-block-point:nth-child(1){
        top: 9px;
        left: 56px;
    }
    .team-block-point:nth-child(2){
        top: 90px;
        left: 128px;
    }
    .team-block-point:nth-child(3){
        top: 53px;
        right: 136px;
    }
    .team-block-point:nth-child(4){
        top: 152px;
        right: 207px;
    }
}
@media screen and (max-width: 541px){
    .team-block{
        padding: 55px 0 40px 0;
    }
    .team-block-subheading{
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 18px;
    }
    .team-block-heading{
        font-size: 26px;
        line-height: 30px;
        width: 288px;
    }
    .team-block-heading:after{
        left: 50%;
        margin-left: -50px;
        bottom: -19px;
    }
    .team-block-point:nth-child(1){
        top: 110px;
        left: 56px;
    }
    .team-block-point:nth-child(2){
        top: 185px;
        left: 131px;
    }
    .team-block-point:nth-child(3){
        top: 159px;
        right: 130px;
    }
    .team-block-point:nth-child(4){
        top: 256px;
        right: 207px;
    }
}
@media screen and (max-width: 425px){
    .team-block{
        padding: 55px 0 0 0;
    }
    .team-block-map{
        padding-top: 22px;
    }
    .team-block-map-heading{
        font-size: 15px;
        line-height: 25px;
        max-width: 288px;
        margin: 0 auto;
    }
    .team-block-map-heading span{
        font-size: 20px;
    }
    .team-block-map-subheading{
        font-size: 13px;
        max-width: 288px;
        margin: 0 auto;
    }
    .team-block-inner{
        max-width: 100%;
        height: 516px;
    }
    .team-block-point:nth-child(1){
        top: 7px;
        left: 35px;
    }
    .team-block-point:nth-child(2){
        top: 70px;
        left: 99px;
    }
    .team-block-point:nth-child(3){
        top: 40px;
        right: 104px;
    }
    .team-block-point:nth-child(4){
        top: 133px;
        right: 166px;
    }
}
@media screen and (max-width: 376px){
    .team-block-point:nth-child(1){
        top: 7px;
        left: 26px;
    }
    .team-block-point:nth-child(2){
        top: 65px;
        left: 80px;
    }
    .team-block-point:nth-child(3){
        top: 40px;
        right: 85px;
    }
    .team-block-point:nth-child(4){
        top: 117px;
        right: 141px;
    }
}
@media screen and (max-width: 321px){
    .team-block-point:nth-child(1){
        top: 7px;
        left: 17px;
    }
    .team-block-point:nth-child(2){
        top: 53px;
        left: 64px;
    }
    .team-block-point:nth-child(3){
        top: 30px;
        right: 68px;
    }
    .team-block-point:nth-child(4){
        top: 102px;
        right: 114px;
    }
}
/* Team block end */
/* Reviews widget start */
.reviews-widget{
    padding: 93px 0 100px 0;
    background-color: #FAFAFA;
}
.reviews-widget-heading{
    font-family: var(--headings-main-font);
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.reviews-widget-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -28px;
    left: 50%;
    margin-left: -50px;
}
@media screen and (max-width: 541px){
    .reviews-widget{
        padding: 66px 0 40px 0;
    }
    .reviews-widget-heading{
        font-size: 26px;
        line-height: 30px;
        width: 288px;
    }
    .reviews-widget-heading:after{
        left: 50%;
        margin-left: -50px;
        bottom: -14px;
    }
}
/* Reviews widget end */
/* CTA block with double bg start */
.cta-block.cta-block-doted-bg{
    padding: 218px 0 93px 0;
    position: relative;
    z-index: 1;
}
.cta-block-doted-bg:after{
    content: '';
    width: 100%;
    height: 289px;
    background-color: #071C35;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -2;
}
.cta-block-doted-bg:before{
    content: '';
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/CTA-DECO.svg');
    background-position: center center;
    background-size: cover;
    z-index: -2;
}
@media screen and (max-width: 541px){
    .cta-block.cta-block-doted-bg{
        padding: 140px 0 93px 0;
    }
}
/* CTA block with double bg end */
/* footer start */
.footer{
    min-height: 269px;
    height: fit-content;
    background-color: #071C35;
}
.footer-inner{
    padding: 48px 0 15px 0;
}
.footer-logo{
    width: 189px;
    height: 61px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    margin: 0 auto;
}
.footer-address{
    display: block;
    width: fit-content;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    position: relative;
    padding-left: 20px;
    text-align: center;
    margin: 0 auto;
    padding-top: 42px;
}
.footer-address:before{
    content: '';
    width: 14px;
    height: 20px;
    background-image: url('../img/icons/address-ico.svg');
    background-position: center center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 40px;
}
.footer-socials{
    width: fit-content;
    margin: 0 auto;
    padding-top: 21px;
    display: flex;
    flex-direction: column;
}
.footer-social{
    font-size: 16px;
    padding-left: 18px;
    margin-bottom: 10px;
    position: relative;
    color: #fff;
    text-decoration: none;
} 
.footer-social:before{
    content: '';
    width: 14px;
    height: 12px;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: -1px;
    top: 50%;
    margin-top: -8px;
}
.footer-social-linkedin:before{
    background-image: url('../img/icons/linkedin-ico.svg');
}
.footer-bottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright{
    font-size: 14px;
    line-height: 17px;
    color: #9a9a9a;
}
.footer-privacy-link{
   font-size: 14px;
   line-height: 17px;
   color: #9a9a9a;
   text-decoration: none;
}
@media screen and (max-width: 541px){
    .footer-inner{
        padding: 20px 0 15px 0;
    }
    .footer-logo{
        width: 137px;
        height: 45px;
    }
    .footer-address{
        max-width: 211px;
        font-size: 14px;
        line-height: 16px;
        padding-top: 54px;
    }
    .footer-address:before{
        left: 50%;
        margin-left: -7px;
        top: 30px;
    }
    .footer-bottom{
        flex-direction: column;
        padding: 37px 0 13px 0;
    }
    .footer-socials{
        padding-top: 31px;
    }
    .footer-copyright{
        margin-bottom: 6px;
    }
}
/* footer end */


/* landing page start */
/* Hero banner start */
.hero-banner.hero-banner-landing{
    background-size: cover;
}
.hero-banner.hero-banner-landing:after{
    display: none;
}
.hero-banner-inner.hero-banner-inner-full-width{
    flex-direction: column;
}
.hero-banner-inner-full-width .trusted-brands{
    max-width: 1117px;
    margin: 0 auto;
    padding-top: 39px;
}
.hero-banner-inner-full-width .trusted-brands .desktop-only {
    display: block;
}
.hero-banner-inner-full-width .trusted-brands .mobile-only {
    display: none;
}

.hero-banner-inner-full-width .hero-banner-inner-text-wrapper{
    max-width: 100%;
    padding: 105px 0 58px 0;
}
.hero-banner-inner-texts{
    width: 100%;
    max-width: 100%;
    padding-left: 13%;
    position: relative;
}
.hero-banner-inner-texts:after{
    content: '';
    display: block;
    width: 800px;
    height: 800px;
    position: absolute;
    right: -48px;
    top: -139px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/compressed/hero-banner-landing3-min.png');
}
.hero-banner-inner-texts .hero-banner-heading{
    max-width: 570px;
    text-align: left;
    margin: 0;
}
.hero-banner-inner-texts .hero-banner-sub-text{
    text-align: left;
    margin-bottom: 11px;
}
.hero-banner-inner-texts .hero-banner-btn{
    margin: 0;
    width: 234px;
}
@media screen and (max-width: 1367px){
    .hero-banner-inner-texts{
        padding-left: 4%;
    }
}
@media screen and (max-width: 1209px){
    .hero-banner-inner-texts{
        padding-left: 0;
    }
    .hero-banner-inner-texts:after{
        width: 600px;
        height: 600px;
        right: 0;
        top: -100px;
    }
}
@media screen and (max-width: 1025px){
    .hero-banner-inner-texts:after{
        width: 500px;
        height: 500px;
    }
}
@media screen and (max-width: 769px){
    .hero-banner-inner-texts .hero-banner-heading{
        max-width: 500px;
        text-align: center;
    }
    .hero-banner-inner-texts{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-banner-inner-texts .hero-banner-sub-text{
        text-align: center;
    }
    .hero-banner-inner-full-width .hero-banner-inner-text-wrapper{
        padding: 35px 0 280px 0;
    }
    .hero-banner-inner-texts:after{
        width: 360px;
        height: 360px;
        top: 425px;
        left: 50%;
        margin-left: -180px;
    }

    .hero-banner-inner-full-width .trusted-brands .desktop-only {
        display: none;
    }
    .hero-banner-inner-full-width .trusted-brands .mobile-only {
        display: block;
    }
    
}
@media screen and (max-width: 521px){
    .hero-banner-inner-full-width .hero-banner-inner-text-wrapper{
        padding: 26px 0 170px 0;
    }
    .hero-banner-inner-texts .hero-banner-sub-text{
        margin-bottom: 9px;
    }
    .hero-banner-inner-texts .hero-banner-heading{
        max-width: 288px;
        text-align: center;
        letter-spacing: 1.5px;
    }
    .hero-banner-inner-texts .hero-banner-btn{
        min-width: 135px;
    }
    .hero-banner-inner-texts:after{
        width: 260px;
        height: 260px;
        top: 185px;
        left: 50%;
        margin-left: -130px;
    }
}
/* Hero banner end */
/* Team enhancement start */
.team-enhancement{
    background-color: #f9f9f9;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}
.team-enhancement:before{
    content: '';
    display: block;
    width: 973px;
    height: 259px;
    position: absolute;
    bottom: -10px;
    left: -15px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/compressed/value-for-bg.png');
}
.team-enhancement:after{
    content: '';
    display: block;
    width: 1075px;
    height: 264px;
    position: absolute;
    top: -72px;
    right: -7px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/compressed/driven-for-bg.png');
}
.team-enhancement-inner{
    padding-top: 142px;
    display: flex;
    justify-content: center;
}
.team-enhancement-heading{
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: var(--main-black-color);
    position: relative;
    max-width: 522px;
    z-index: 1;
}
.team-enhancement-heading:after{
    content: '';
    display: block;
    width: 321px;
    height: 5px;
    background-color: var(--main-orange);
    position: absolute;
    top: 40px;
    right: -253px;
    z-index: 1;
}
.team-enhancement-texts{
    width: 100%;
    max-width: 600px;
    padding: 76px 0 0 29px;
}
.team-enhancement-text{
    font-size: 16px;
    line-height: 32px;
}
@media screen and (max-width: 1100px){
    .team-enhancement-heading:after{
        right: -300px;
    }
}
@media screen and (max-width: 881px){
    .team-enhancement-inner{
        flex-direction: column;
    }
    .team-enhancement-texts{
        padding: 50px 0 0 0;
    }
    .team-enhancement-heading:after{
        display: none;
    }
    .team-enhancement-heading:before{
        content: '';
        display: block;
        width: 100px;
        height: 3px;
        background-color: var(--main-orange);
        position: absolute;
        bottom: -15px;
        left: 0;
    }
}
@media screen and (max-width: 521px){
    .team-enhancement-inner{
        padding: 75px 0 75px 0;
    }
    .team-enhancement-heading{
        font-size: 26px;
        line-height: 30px;
        max-width: 288px;
    }
    .team-enhancement-heading:before{
        bottom: -22px;
    }
    .team-enhancement-texts{
        padding: 42px 0 0 0;
    }
    .team-enhancement-text{
        font-size: 13px;
        line-height: 25px;
    }
    .team-enhancement{
        min-height: fit-content;
    }
}
@media screen and (max-width: 376px){
    .team-enhancement-texts{
        max-width: 288px;
    }
}
/* Team enhancement end */
/* Benefits block start */
.benefits{
    background-image: url('../img/compressed/DECO-1.png'); 
    background-position-x: right;
    background-position-y: -440px;
    background-repeat: no-repeat;
    position: relative;
}
.benefits:after{
    content: '';
    display: block;
    position: absolute;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/compressed/Team.png');
    width: 559px;
    height: 280px;
    right: 8px;
    top: 590px;
    z-index: -1;
}
.benefits:before{
    content: '';
    display: block;
    position: absolute;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/compressed/enhance.png');
    width: 901px;
    height: 280px;
    bottom: 470px;
    left: -3px;
    z-index: -1;
}
.benefits-inner{
    padding: 147px 0 0 0;
}
.benefits-subheading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--main-black-color);
    text-transform: uppercase;
    margin-bottom: 19px;
}
.benefits-heading{
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
}
.benefits-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -14px;
    left: 50%;
    margin-left: -50px;
}
.benefits-inner-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 82px;
}
.benefits-single{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 940px;
    margin-bottom: 171px;
}
.benefits-single-reverse{
    flex-direction: row-reverse;
}
.benefits-single-heading{
    font-family: var(--headings-main-font);
    font-size: 40px;
    line-height: 45px;
    font-weight: 500;
    color: var(--main-black-color);
    margin-bottom: 25px;
}
.benefits-single-texts{
    max-width: 454px;
    animation-duration: var(--animation-duration-time);
}
.benefits-single-text{
    font-family: var(--texts-main-font);
    font-size: 18px;
    line-height: 27px;
}
.benefits-single-image-wrapper{
    width: fit-content;
    max-width: 331px;
    max-height: 335px;
    animation-duration: 3s;
}
.benefits-single-image{
    width: 100%;
    height: auto;
}
@media screen and (max-width: 769px){
    .benefits:after{
        display: none;
    }
    .benefits:before{
        display: none;
    }
    .benefits-inner{
        padding: 55px 0 55px 0;
    }
    .benefits-single-image-wrapper{
        max-width: 252px;
        max-height: 229px;
        flex-shrink: 0;
    }
}
@media screen and (max-width: 637px){
    .benefits-single{
        flex-direction: column;
        align-items: center;
    }
    .benefits-single-texts{
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 426px){
    .benefits-inner{
        padding: 73px 0 7px 0;
    }
    .benefits-subheading{
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 6px;
    }
    .benefits-heading{
        font-size: 26px;
        line-height: 30px;
    }
    .benefits-heading:after{
        bottom: -3px;
    }
    .benefits-inner-wrapper{
        padding-top: 37px;
    }
    .benefits-single{
        max-width: 288px;
        margin-bottom: 58px;
    }
    .benefits-single-texts{
        margin-bottom: 30px;
    }
    .benefits-single-image-wrapper{
        max-width: 219px;
    }
    .benefits-single-heading{
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 6px;
    }
    .benefits-single-text{
        font-size: 13px;
        line-height: 25px;
    }
}
/* Benefits block end */
/* Team augmentation block start */
.team-augmentation{
    min-height: 812px;
    display: flex;
    align-items: center;
    position: relative;
}
.team-augmentation:before{
    content: '';
    width: 1552px;
    height: 1552px;
    position: absolute;
    z-index: 0;
    background-image: url('../img/compressed/DECO-2.png');
    background-repeat: no-repeat;
    top: -750px;
    left: 0;
}
.team-augmentation-inner{
    width: 100%;
    height: 678px;
    overflow: visible;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../img/team-augmentation-bg.jpg');
}
.team-augmentation-inner-container{
    width: 100%;
    max-width: 1138px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.team-augmentation-inner-container:before{
    content: '';
    display: block;
    width: 688px;
    height: 334px;
    background-image: url('../img/team-augmentation-dots.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -202px;
    margin-left: -220px;
}
.team-augmentation-heading{
    max-width: 370px;
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
    margin-top: -112px;
    margin-left: 2px;
}
.team-augmentation-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -29px;
    left: 0;
}
.team-augmentation-cards{
    width: 100%;
    max-width: 718px;
    display: flex;
    justify-content: space-between;
}
.team-augmentation-cards-inner-wrapper{
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: 100%;
}
.team-augmentation-cards-inner-wrapper:nth-child(1){
    margin-top: -78px;
}
.team-augmentation-cards-inner-wrapper:nth-child(2){
    margin-top: 84px;
}
.team-augmentation-cards-inner-wrapper:nth-child(1) .team-augmentation-card:nth-child(1){
    margin-left: 47px;
    animation-duration: var(--animation-duration-time);
}
.team-augmentation-cards-inner-wrapper:nth-child(1) .team-augmentation-card:nth-child(2){
    animation-duration: 2.5s;
}
.team-augmentation-cards-inner-wrapper:nth-child(2) .team-augmentation-card:nth-child(1){
    margin-left: 40px;
    margin-bottom: 35px;
    animation-duration: 3s;
}
.team-augmentation-cards-inner-wrapper:nth-child(2) .team-augmentation-card:nth-child(2){
    margin-left: -5px;
    animation-duration: 3s;
}
.team-augmentation-cards-inner-wrapper:nth-child(1) .team-augmentation-card:nth-child(1):before{
    background-image: url('../img/icons/Union1.svg');
}
.team-augmentation-cards-inner-wrapper:nth-child(1) .team-augmentation-card:nth-child(2):before{
    background-image: url('../img/icons/Union2.svg');
}
.team-augmentation-cards-inner-wrapper:nth-child(2) .team-augmentation-card:nth-child(1):before{
    background-image: url('../img/icons/Union3.svg');
}
.team-augmentation-cards-inner-wrapper:nth-child(2) .team-augmentation-card:nth-child(2):before{
    background-image: url('../img/icons/Union4.svg');
}

.team-augmentation-cards-inner-wrapper:nth-child(1) .team-augmentation-card:nth-child(1) .team-augmentation-card-text-wrapper{
    background-color: #C2E5F4;
}
.team-augmentation-cards-inner-wrapper:nth-child(1) .team-augmentation-card:nth-child(2) .team-augmentation-card-text-wrapper{
    background-color: #FEB5B5;
}
.team-augmentation-cards-inner-wrapper:nth-child(2) .team-augmentation-card:nth-child(1) .team-augmentation-card-text-wrapper{
    background-color: #FFDDA9;
}
.team-augmentation-cards-inner-wrapper:nth-child(2) .team-augmentation-card:nth-child(2) .team-augmentation-card-text-wrapper{
    background-color: #CEF2BE;
}
.team-augmentation-card{
    max-width: 320px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 17px;
}
.team-augmentation-card:before{
    content: '';
    display: block;
    z-index: 1;
    width: 100%;
    height: 83px;
    position: absolute;
    top: 2px;
    left: 0;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.team-augmentation-card-icon-wrapper{
   width: 112px;
   height: 112px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center; 
   margin-bottom: -56px;
   z-index: 2;
}
.team-augmentation-card-text-wrapper{
    padding: 50px 0 40px 0;
    border-radius: 16px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-augmentation-card-heading{
    font-family: var(--headings-main-font);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: var(--main-black-color);
    max-width: 240px;
    width: 100%;
    margin-bottom: 9px;
}
.team-augmentation-card-text{
    font-size: 18px;
    line-height: 27px;
    max-width: 240px;
}
@media screen and (max-width: 1169px){
    .team-augmentation{
        min-height: auto;
    }
    .team-augmentation-inner{
        height: auto;
    }
    .team-augmentation-inner-container{
        flex-direction: column;
        padding: 50px 0 50px 0;
    }
    .team-augmentation-heading{
        margin-top: 0;
        margin-left: 0;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    .team-augmentation-heading:after{
        left: 50%;
        margin-left: -50px;
    }
    .team-augmentation-cards{
        margin-top: 170px;
    }
    .team-augmentation-inner-container:before{
        margin-top: -48px;
        margin-left: -344px;
    }
}
@media screen and (max-width: 768px){
    .team-augmentation-cards{
        margin-top: 65px;
    }
    .team-augmentation-cards{
        max-width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .team-augmentation-cards-inner-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .team-augmentation-cards-inner-wrapper:nth-child(1){
        margin-top: 0;
    }
    .team-augmentation-cards-inner-wrapper:nth-child(2){
        margin-top: 0;
    }
    .team-augmentation-cards-inner-wrapper:nth-child(1) .team-augmentation-card:nth-child(1){
        margin-left: 0;
    }
    .team-augmentation-cards-inner-wrapper:nth-child(2) .team-augmentation-card:nth-child(1){
        margin-left: 0;
        margin-bottom: 0;
    }
    .team-augmentation-cards-inner-wrapper:nth-child(2) .team-augmentation-card:nth-child(2){
        margin-left: 0;
    }
    .team-augmentation-card{
        margin-bottom: 20px !important;
    }
}
@media screen and (max-width: 541px){
    .team-augmentation-inner{
        overflow: hidden;
    }
    .team-augmentation-heading{
        font-size: 38px;
        line-height: 48px;
    }
}
@media screen and (max-width: 426px){
    .team-augmentation:before{
        display: none;
    }
    .team-augmentation-heading{
        font-size: 26px;
        line-height: 30px;
        text-align: left;
        max-width: 288px;
    }
    .team-augmentation-heading:after{
        left: 0;
        margin-left: 0;
        bottom: -12px;
    }
    .team-augmentation-inner-container:before{
        display: none;
    }
    .team-augmentation-card{
        width: 240px;
        margin-bottom: 13px !important;
    }
    .team-augmentation-card:after{
        content: '';
        display: block;
        z-index: -1;
        position: absolute;
        width: 320px;
        height: 90px;
        background-image: url('../img/compressed/team-augmentation-mobile-dots.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        top: 50%;
        left: 50%;
        margin-top: -29px;
        margin-left: -160px;
    }
    .team-augmentation-card-heading{
        font-size: 16px;
        line-height: 25px;
        text-align: center;
    }   
    .team-augmentation-card-text{
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        max-width: 208px;
    }
    .team-augmentation-inner-container{
        padding: 0 16px;
    }
    .team-augmentation-inner{
        padding: 60px 0 60px 0;
    }
    .team-augmentation-cards{
        margin-top: 28px;
    }
    .team-augmentation-card-text-wrapper{
        padding: 35px 0 43px 0;
    }
}
/* Team augmentation block end */
/* Market advantages start */
.market-advantages-inner{
    max-width: 1133px;
    width: 100%;
    margin: 0 auto;
    padding: 144px 0 160px 0;
}
.market-advantages-subheading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--main-black-color);
    text-transform: uppercase;
    margin-bottom: 26px;
}
.market-advantages-heading{
    max-width: 730px;
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
}
.market-advantages-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -22px;
    left: 50%;
    margin-left: -50px;
}
.market-advantages-inner-wrapper{
    padding-top: 54px;
}
.market-advantages-inner-heading{
    font-family: var(--headings-main-font);
    color: var(--main-orange);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 17px;
}
.market-advantages-inner-subheading{
    max-width: 935px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 27px;
    color: var(--main-black-color);
    text-align: center;
}
.market-advantages-inner-cards{
    width: 100%;
    /* min-height: 242px; */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* margin-top: 85px; */
    margin-top: 35px;
    position: relative;
}
/* .market-advantages-inner-cards:before{
    content: '';
    display: block;
    width: 460px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -230px;
    margin-top: -178px;
    background-image: url('../img/compressed/market-advantages-dots-min.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
} */
.market-advantages-inner-card{
    width: 100%;
    max-width: 264px;
    height: 140px;
    border-radius: 15px;
    background-color: var(--main-gray);
    transition: var(--transition-duration-time);
    padding: 20px 13px 0 21px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.market-advantages-card-title{
    max-width: 204px;
    font-family: var(--headings-main-font);
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    color: var(--main-black-color);
    transition: var(--transition-duration-time);
}
.market-advantages-card-icon-wrapper{
    width: 100%;
    display: flex;
    position: relative;
    height: 56px;
}
.market-advantages-card-icon-dafault{
    position: absolute;
    right: 0;
    bottom: 13px;
    transition: var(--transition-duration-time);
    opacity: 1;
}
.market-advantages-card-icon-hovered{
    position: absolute;
    right: 0;
    bottom: 13px;
    transition: var(--transition-duration-time);
    opacity: 0;
}
.market-advantages-inner-card-active{
    height: 160px;
    background: linear-gradient(131.07deg, #3B608D 2.5%, #071C35 101.25%);
}
.market-advantages-inner-card-active .market-advantages-card-title{
    color: #fff;
}
.market-advantages-inner-card-active .market-advantages-card-icon-dafault{
    opacity: 0;
}
.market-advantages-inner-card-active .market-advantages-card-icon-hovered{
    opacity: 1;
}
.market-advantages-inner-card:hover{
    height: 160px;
    background: linear-gradient(131.07deg, #3B608D 2.5%, #071C35 101.25%);
}
.market-advantages-inner-card:hover .market-advantages-card-title{
    color: #fff;
}
.market-advantages-inner-card:hover .market-advantages-card-icon-dafault{
    opacity: 0;
}
.market-advantages-inner-card:hover .market-advantages-card-icon-hovered{
    opacity: 1;
}
.market-advantages-after-texts-wrapper{
    /* padding-top: 129px; */
    padding-top: 100px;
    max-width: 605px;
    margin: 0 auto;
    position: relative;
    min-height: 323px;
    height: fit-content;
}
.market-advantages-after-texts-wrapper:before{
    content: '';
    width: 476px;
    height: 6px;
    background: linear-gradient(131.07deg, #3B608D 2.5%, #071C35 101.25%);
    display: block;
    position: absolute;
    /* top: 85px; */
    top: 55px;
    left: 50%;
    margin-left: -238px;
}
.market-advantages-after-texts{
    display: none;
    max-width: 605px;
    height: 0;
    opacity: 0;
    transition: var(--transition-duration-time);
}
.market-advantages-after-texts-active{
    height: fit-content;
    display: block;
    opacity: 1;

    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.market-advantages-after-heading{
    font-family: var(--headings-main-font);
    color: var(--main-orange);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 17px;
}
.market-advantages-after-text{
    margin: 0 auto;
    font-size: 18px;
    line-height: 27px;
    color: var(--main-black-color);
    text-align: center;
    margin-bottom: 66px;
}
.market-advantages-btn{
    font-family: var(--texts-main-font);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 212px;
    height: 52px;
    background-color: var(--main-orange);
    border: 2px solid var(--main-orange);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-duration-time);
    margin: 0 auto;
}
.market-advantages-btn:hover{
    background-color: transparent;
    color: var(--main-black-color);
}
@media screen and (max-width: 1129px){
    .market-advantages-inner{
        padding: 60px 0 90px 0;
    }
    .market-advantages-inner-cards:before{
        height: 160px;
        margin-top: -111px;
    }
    .market-advantages-inner-cards{
        min-height: 160px;
    }
    .market-advantages-inner-card{
        max-width: 225px;
        height: 145px;
    }
    .market-advantages-inner-card:hover{
        height: 135px;
    }
}
@media screen and (max-width: 969px){
    .market-advantages-inner-card{
        flex-shrink: 0;
        margin-right: 35px;
    }
}
@media screen and (max-width: 541px){
    .market-advantages-inner{
        padding: 71px 0 71px 0;
    }
    .market-advantages-subheading{
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 9px;
    }
    .market-advantages-heading{
        font-size: 26px;
        line-height: 30px;
    }
    .market-advantages-heading:after{
        bottom: -13px;
    }
    .market-advantages-inner-wrapper{
        padding-top: 37px;
    }
    .market-advantages-inner-heading{
        font-size: 20px;
        line-height: 25px;
        max-width: 288px;
        margin: 0 auto;
    }
    .market-advantages-inner-subheading{
        max-width: 288px;
        margin: 0 auto;
        padding-top: 9px;
    }
    .market-advantages-inner-cards{
        min-height: 132px;
        margin-top: 0;
    }
    .market-advantages-after-texts{
        padding-top: 50px;
        margin-top: 20px;
    }
    .market-advantages-after-heading{
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 8px;
    }
    .market-advantages-after-text{
        font-size: 13px;
        line-height: 25px;
        max-width: 288px;
        margin: 0 auto;
        padding-bottom: 32px;
    }
    .market-advantages-card-icon-wrapper{
        display: none;
    }
    .market-advantages-inner-card{
        width: 120px;
        height: 83px;
        margin-right: 16px;
        padding: 0 10px 0 10px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .market-advantages-inner-card:hover{
        height: 83px;
    }
    .market-advantages-card-title{
        font-size: 13px;
        line-height: 20px;
        font-weight: 500;
        text-align: center;
    }
    .market-advantages-inner-cards:before{
        display: none;
    }
    .market-advantages-after-texts:before{
        width: 200px;
        margin-left: -100px;
        top: 27px;
    }
    .market-advantages-btn{
        font-size: 12px;
        width: 120px;
        height: 32px;
    }
    .market-advantages-after-texts-wrapper:before{
        width: 200px;
        margin-left: -100px;
        top: 27px;
    }
    .market-advantages-after-texts-wrapper{
        padding-top: 0;
        min-height: 300px;
    }
}
/* Market advantages end */
/* Process Block start */
.process-block{
    background-color: #EDEDED;
}
.process-block-inner{
    padding: 132px 0 50px 0;
}
.process-block-subheading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--main-black-color);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.process-block-heading{
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
}
.process-block-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -15px;
    left: 50%;
    margin-left: -50px;
}
.process-block-subtext{
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    margin-top: 40px;
}
.process-block-rows{
    padding-top: 17px;
    max-width: 1135px;
    margin: 0 auto;
}
.process-blocks-wrapper{
    max-width: 1135px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.block-bg{
    position: absolute;
    display: block;
    z-index: 0;
    top: 108px;
    left: 47px;
    width: 1088px;
    height: 0;
    max-height: 1665px;
    background-image: url('../img/process-block-bg-vector.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.process-block-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 165px;
    margin-bottom: 79px;
}
.process-block-row:nth-child(2n){
    flex-direction: row-reverse;
    padding-left: 0;
    padding-right: 30px;
}
.process-block-row:nth-child(3){
    padding-left: 0;
}
.process-block-row:nth-child(4){
    padding-right: 102px;
}
.process-block-row-texts{
    width: 100%;
    max-width: 455px;
}
.process-block-row:nth-child(1) .process-block-row-texts{
    margin-top: -45px;
}
.process-block-row:nth-child(3) .process-block-row-texts{
    margin-top: 33px;
}
.process-block-row:nth-child(4) .process-block-row-texts{
    margin-top: 113px;
}
.process-block-row:nth-child(3) .process-block-row-image-wrapper{
    padding-right: 80px;
    padding-top: 15px;
}
.process-block-row-heading{
    font-family: var(--headings-main-font);
    font-size: 40px;
    line-height: 44px;
    font-weight: 500;
    color: var(--main-black-color);
    margin-bottom: 16px;
}
.process-block-row-text{
    font-size: 18px;
    line-height: 27px;
}
.process-block-row-image-wrapper{
    max-width: 537px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.process-block-row:nth-child(2n) .process-block-row-image-wrapper{
    justify-content: flex-start;
}
.process-block-row-image{
    width: auto;
    height: auto;
}
@media screen and (max-width: 1169px){
    .process-block-rows{
        max-width: 660px;
        overflow: visible;
    }
    .process-block-row-image-wrapper{
        max-width: 246px;
        flex-shrink: 0;
    }
    .process-block-row-image{
        width: 100%;
    }
    .process-block-row{
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .process-block-row:nth-child(2n){
        padding-right: 0;   
    }
    .process-block-row:nth-child(1) .process-block-row-texts{
        margin-top: 0;
    }
    .process-block-row:nth-child(3) .process-block-row-texts{
        margin-top: 0;
    }
    .process-block-row:nth-child(3) .process-block-row-image-wrapper{
        padding-top: 0;
        padding-right: 0;
    }
    .process-block-row:nth-child(4) .process-block-row-texts{
        margin-top: 0;
    }
    .process-block-row-texts{
        max-width: 300px;
    }
    .block-bg{
        display: none;
    }
    .process-block-row-heading{
        font-size: 30px;
        line-height: 35px;
    }
    .process-block-row-text{
        font-size: 16px;
        line-height: 25px;
    }
}
@media screen and (max-width: 647px){
    .process-block-row{
        flex-direction: column;
        margin-bottom: 40px;
    }
    .process-block-row:nth-child(2n){
        flex-direction: column; 
    }
    .process-block-row-texts{
        margin-bottom: 20px;
    }
    .process-block-row:nth-child(2n) .process-block-row-image-wrapper{
        align-items: center;
        justify-content: center;
    }
}
@media screen and (max-width: 541px){
    .process-block-inner{
        padding: 72px 0 15px 0;
    }
    .process-block-subheading{
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 9px;
    }
    .process-block-heading{
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 32px;
    }
    .process-block-heading:after{
        bottom: -13px;
    }
    .process-block-subtext{
        max-width: 288px;
        font-size: 13px;
        line-height: 25px;
        margin: 0 auto;
    }
    .process-block-row-heading{
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 7px;
    }
    .process-block-row-text{
        font-size: 13px;
        line-height: 25px;
    }
    .process-block-rows{
        padding-top: 41px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .process-block-row{
        max-width: 288px;
        margin-bottom: 68px;
    }
    .process-block-row-image-wrapper{
        max-width: 222px;
    }
    .process-block-row-texts{
        margin-bottom: 30px;
    }
}
.technologies-block-langing .technologies-block-cards{
    max-width: 1138px;
}
/* Process Block end */
/* CTA Landing block start */
.cta-landing{
    padding: 120px 0 145px 0;
}
.cta-landing-inner{
    width: 100%;
    max-width: 1104px;
    height: 440px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}
.cta-landing-inner:after{
    content: '';
    display: block;
    width: 477px;
    height: 439px;
    position: absolute;
    right: -29px;
    bottom: -118px;
    background-image: url('../img/CTA-landing.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}
.cta-landing-inner:before{
    content: '';
    display: block;
    width: 556px;
    height: 570px;
    position: absolute;
    top: -61px;
    left: 71px;
    background-image: url('../img/compressed/CTA-landing-dots.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}
.cta-landing-inner-wrapper{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/compressed/CTA-landing-bg.png');
    padding: 85px 15px 15px 72px;
    border-radius: 25px;
}
.cta-landing-subheading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.cta-landing-heading{
    font-family: var(--headings-main-font);
    font-size: 50px;
    line-height: 58px;
    font-weight: 500;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
}

.cta-landing-heading span{
    color: var(--main-orange);
}
.cta-landing-btn{
    font-family: var(--texts-main-font);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 212px;
    height: 52px;
    background-color: var(--main-orange);
    border: 2px solid var(--main-orange);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-duration-time);
    margin-top: 53px;
}
.cta-landing-btn:hover{
    background-color: transparent;
}
@media screen and (max-width: 1185px){
    .cta-landing-inner{
        max-width: 935px;
        height: 405px;
    }
    .cta-landing-inner:after{
        width: 330px;
        height: 300px;
        right: -12px;
        bottom: -60px;
    }
}
@media screen and (max-width: 769px){
    .cta-landing-inner-wrapper{
        padding: 35px 15px 15px 30px;
        max-width: 95%;
        margin: 0 auto;
    }
    .cta-landing-heading{
        font-size: 40px;
        line-height: 48px;
    }
}
@media screen and (max-width: 541px){
    .cta-landing-inner{
        max-width: 290px;
    }
    .cta-landing-inner-wrapper{
        max-width: 100%;
        padding: 43px 0 15px 0;
    }
    .cta-landing-inner:before{
        left: 50%;
        margin-left: -200px;
        top: 50%;
        margin-top: -254px;
        width: 400px;
        height: 420px;
    }
    .cta-landing-subheading{
        font-size: 13px;
        line-height: 16px;
        text-align: center;
        font-weight: 400;
        margin-bottom: 16px;
    }
    .cta-landing-heading{
        max-width: 240px;
        font-size: 25px;
        line-height: 28px;
        text-align: center;
        margin-bottom: 30px;
    }
    .cta-landing-inner:after{
        width: 240px;
        height: 230px;
        background-size: contain;
        bottom: -79px;
        right: 23px;
    }
    .cta-landing-btn{
        width: 120px;
        height: 32px;
        font-size: 12px;
        font-weight: 600;
        margin: 0 auto;
    }
}
/* CTA Landing block end */
/* FAQ block start */
.faq-section-inner{
    padding: 133px 0 25px 0;
}
.faq-section-heading{
    /* max-width: 615px; */
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    margin: 0 auto;
}
.faq-questions-wrapper{
    max-width: 1134px;
    width: 100%;
    margin: 0 auto;
    padding-top: 69px;
}
.faq-question{
    width: 100%;
    padding: 0 0 29px 0;
    border-bottom: 1px solid #E7E7E7;
    margin-bottom: 23px;
}
.faq-question:last-child{
    border-bottom: none;
}
.question{
    width: 100%;
    max-width: 1065px;
    font-size: 18px;
    line-height: 24px;
    color: var(--main-black-color);
    font-weight: 500;
    position: relative;
}
.faq-btn{
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: -62px;
    top: 50%;
    margin-top: -12px;
}
.faq-btn:before{
    content: '';
    width: 20px;
    height: 3px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1.4px;
    background-color: var(--main-orange);
}
.faq-btn:after{
    content: '';
    width: 20px;
    height: 3px;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1.4px;
    transform: rotate(90deg);
    background-color: var(--main-orange);
    transition: var(--transition-duration-time);
    opacity: 1;
}
.answer{
    width: 100%;
    max-width: 1065px;
    display: block;
    font-size: 16px;
    line-height: 28px;
    color: var(--main-black-color);
    font-weight: 400;
    max-height: 0;
    transition: var(--transition-duration-time);
    overflow: hidden;
    padding-top: 0;
}
.faq-question-active .answer{
    padding-top: 28px;
    max-height: 500px;
    height: fit-content;
}
.faq-question-active .faq-btn:after{
    opacity: 0;
}
@media screen and (max-width: 1174px){
    .question{
        max-width: 98%;
    }
    .faq-btn{
        right: 0;
    }
}
@media screen and (max-width: 1025px){
    .question{
        max-width: 95%;
    }
    .faq-btn{
        right: -25px;
    }
}
@media screen and (max-width: 541px){
    .faq-section-inner{
        padding: 3px 0 100px 0;
    }
    .faq-section-heading{
        font-size: 26px;
        line-height: 30px;
        max-width: 200px;
    }
    .question{
        font-size: 14px;
        line-height: 18px;
        max-width: 257px;
    }
    .faq-question{
        padding: 0 0 16px 0;
        margin-bottom: 16px;
    }
    .faq-questions-wrapper{
        max-width: 288px;
        padding-top: 43px;
    }
    .answer{
        font-size: 13px;
        line-height: 22px;
    }
    .faq-question-active .answer{
        padding-top: 14px;
    }
}
/* FAQ block end */
/* Comparison Table Block start */
.comparison-table-block{
    background-image: url('../img/compressed/table-DECO.png');
    background-position-x: center;
    background-position-y: 560%;
    background-repeat: no-repeat;
}
.comparison-table-inner{
    padding: 155px 0 200px 0;
}
.comparison-table-subheading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--main-black-color);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.comparison-table-heading{
    max-width: 1025px;
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: var(--main-black-color);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    margin: 0 auto;
}
.comparison-table-heading:after{
    content: '';
    display: block;
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--main-orange);
    bottom: -15px;
    left: 50%;
    margin-left: -50px;
}
.comparison-table{
    padding-top: 78px;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}
.comparison-table thead td{
    font-family: var(--headings-main-font);
    font-size: 25px;
    font-weight: 500;
    padding: 0;
    justify-content: center;
}
.comparison-table thead td{
    border: 1px solid #fff;
}
.comparison-table thead td:first-child{
    border-top: none;
    border-left: none;
}
.comparison-table thead th{
    font-family: var(--headings-main-font);
    font-size: 25px;
    font-weight: 500;
    padding: 0;
    justify-content: center;
}
.comparison-table thead th{
    border: 1px solid #fff;
}
.comparison-table thead th:first-child{
    border-top: none;
    border-left: none;
}
.comparison-table tbody tr th:nth-child(2){
    padding-left: 0;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
    border-left: none;
    border-right: none;
}
.comparison-table tbody tr th:nth-child(3){
    padding-left: 0;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
}
.comparison-table tbody tr td:nth-child(2){
    padding-left: 0;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
    border-left: none;
    border-right: none;
}
.comparison-table tbody tr td:nth-child(3){
    padding-left: 0;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
}
.comparison-table tbody tr td:nth-child(2) p{
    max-width: 275px;
    text-align: center;
}
.comparison-table tbody tr td:nth-child(3) p{
    max-width: 275px;
    text-align: center;
}
.comparison-table tr th{
    max-width: 340px;
    width: 100%;
}
.comparison-table tr th:first-child{
    max-width: 454px;
}
.comparison-table tbody tr td{
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
.comparison-table tr td{
    max-width: 340px;
    width: 100%;
}
.comparison-table tr td:first-child{
    max-width: 454px;
}
tr{
    display: flex;
    width: 100%;
}
th{
    width: 100%;
    max-width: 454px;
    min-height: 109px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    font-family: var(--texts-main-font);
    color: var(--main-black-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
}
td{
    width: 100%;
    max-width: 454px;
    min-height: 109px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    font-family: var(--texts-main-font);
    color: var(--main-black-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
}
.comparison-table-mobile{
    display: none;
}
@media screen and (max-width: 769px){
    .comparison-table tr td{
        max-width: 30%;
        min-height: 65px;
        font-size: 13px;
    }
    .comparison-table tr td:first-child{
        max-width: 40%;
    }
    .comparison-table tbody tr td:nth-child(2){
        font-size: 13px;
    }
    .comparison-table tbody tr td:nth-child(3){
        font-size: 13px;
    }
    .comparison-table tr th{
        max-width: 30%;
        min-height: 36px;
        font-size: 13px;
    }
    .comparison-table tr th:first-child{
        max-width: 40%;
    }
    .comparison-table tbody tr th:nth-child(2){
        font-size: 13px;
    }
    .comparison-table tbody tr th:nth-child(3){
        font-size: 13px;
    }
    .comparison-table-block{
        background-position-y: center;
    }
    .comparison-table tr td img{
        max-width: 25px;
        max-height: 25px;
    }
    .comparison-table tr td{
        min-height: 36px;
        font-size: 12px;
        line-height: 18px;
    }
    .comparison-table tbody tr td:nth-child(2){
        font-size: 12px;
        line-height: 18px;
    }
    .comparison-table tbody tr td:nth-child(3){
        font-size: 12px;
        line-height: 18px;
    }
    .comparison-table td{
        padding: 0 5px 0 5px;
    }
}

@media screen and (max-width: 541px){
    
    .comparison-table tr th{
        min-height: 36px;
        font-size: 12px;
        line-height: 18px;
    }
    .comparison-table-heading{
        font-size: 26px;
        line-height: 30px;
    }
    .comparison-table-subheading{
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .comparison-table{
        display: none;
    }
    .comparison-table-heading{
        max-width: 288px;
    }
    .comparison-table-mobile{
        display: block;
        max-width: 288px;
        margin: 0 auto;
        padding-top: 53px;
    }
    .comparison-table-mobile-heading{
        font-size: 22px;
        line-height: 28px;
        font-family: var(--headings-main-font);
        font-weight: 500;
        color: var(--main-black-color);
        text-align: center;
        margin-bottom: 23px;
    }
    .comparison-table-mobile-section-heading{
        font-size: 15px;
        line-height: 18px;
        font-family: var(--texts-main-font);
        font-weight: 600;
        color: var(--main-black-color);
        max-width: 256px;
        margin-bottom: 6px;
    }
    .comparison-table-mobile-section-text{
        font-size: 15px;
        line-height: 18px;
        max-width: 256px;
        color: var(--main-black-color);
    }
    .comparison-table-mobile-section-text img{
        max-width: 25px;
        max-height: 25px;
    }
    .comparison-table-mobile-section{
        padding: 24px 0 24px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border: 1px solid #fff;
    }
    .comparison-table-mobile-section-with-image{
        flex-direction: row;
        padding: 24px 15px 24px 15px;
    }
    .comparison-table-mobile-section-with-image .comparison-table-mobile-section-text{
        max-width: 224px;
    }
    .comparison-table-mobile-section-with-image .comparison-table-mobile-section-heading{
        max-width: 224px;
    }
    .comparison-table-mobile-block{
        margin-bottom: 55px;
    }
    .comparison-table-inner{
        padding: 155px 0 60px 0;
    }
}
/* Comparison Table Block end */
/* Case study block start */
.case-study-block{
    background: linear-gradient(208.82deg, #3B608D -30.85%, #071C35 101.16%);
}
.case-study-block-inner{
    padding: 120px 0 120px 0;
}
.case-study-single{
    width: 100%;
    display: flex;
    margin-bottom: 200px;
    padding-right: 5%;
}
.case-study-single:last-child{
    margin-bottom: 20px;
}
.case-study-single-reverse{
    flex-direction: row-reverse;
    padding-right: 0;
    padding-left: 5%;
}
.case-study-image-wrapper{
    width: 100%;
    max-width: 877px;
    max-height: 644px;
    margin-right: 194px;
}
.case-study-single-reverse .case-study-image-wrapper{
    margin-right: 0;
    margin-left: 194px;
}
.case-study-img{
    width: auto;
    max-width: 100%;
    height: auto;
}
.case-study-texts-wrapper{
    max-width: 453px;
    display: flex;
    flex-direction: column;
    padding-top: 97px;
}
.case-study-subheading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 19px;
}
.case-study-heading{
    font-family: var(--headings-main-font);
    font-size: 60px;
    line-height: 65px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
}
.case-study-underheading{
    font-family: var(--texts-main-font);
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 24px;
}
.case-study-text{
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}
.case-study-btn{
    font-family: var(--texts-main-font);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 197px;
    height: 52px;
    background-color: var(--main-orange);
    border: 2px solid var(--main-orange);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-duration-time);
    margin-top: 46px;
}
.case-study-btn:hover{
    background-color: transparent;
    color: #fff;
}
@media screen and (max-width: 1367px){
    .case-study-block-inner{
        padding: 100px 0 100px 0;
    }
    .case-study-texts-wrapper{
        padding-top: 0;
    }
    .case-study-single{
        align-items: center;
    }
}
@media screen and (max-width: 1125px){
    .case-study-image-wrapper{
        max-width: 465px;
        flex-shrink: 0;
        margin-right: 0;
    }
    .case-study-single{
        justify-content: space-between;
    }
    .case-study-single-reverse .case-study-image-wrapper{
        margin-left: 0;
    }
    .case-study-subheading{
        font-size: 16px;
    }
    .case-study-heading{
        font-size: 40px;
        line-height: 45px;
    }
    .case-study-underheading{
        font-size: 18px;
        line-height: 26px;
    }
}
@media screen and (max-width: 1025px){
    .case-study-single{
        flex-direction: column;
        align-items: center;
        padding-right: 0;
        margin-bottom: 50px;
    }
    .case-study-single.case-study-single-reverse {
        padding-left: 0;
    }
    .case-study-texts-wrapper{
        max-width: 465px;
        padding-top: 25px;
    }
}
@media screen and (max-width: 541px){
    .case-study-block-inner{
        padding: 80px 0 88px 0;
    }
    .case-study-image-wrapper{
        max-width: 288px;
        max-height: 208px;
    }
    .case-study-texts-wrapper{
        max-width: 288px;
        padding-top: 44px;
    }
    .case-study-subheading{
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 9px;
    }
    .case-study-heading{
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 23px;
    }
    .case-study-underheading{
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 8px;
    }
    .case-study-text{
        font-size: 13px;
        line-height: 20px;
    }
    .case-study-btn{
        margin-top: 40px;
        font-size: 12px;
        width: 111px;
        height: 32px;
    }
    .case-study-single{
        margin-bottom: 112px;
    }
    .case-study-single:last-child{
        margin-bottom: 0;
    }
}
/* Case study block end */
/* Reviews by Clutch block start */
.reviews-by-clutch{
    min-height: 616px;
    background-color: #FAFAFA;
}
@media screen and (max-width: 541px){
    .reviews-by-clutch{
        min-height: 440px;
    } 
}
/* Reviews by Clutch block end  */
/* CTA Landing With Double Bg block start */
.cta-landing.cta-landing-double-bg{
    padding: 257px 0 113px 0;
    position: relative;
    background-image: url('../img/compressed/CTA-landing-double-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
}
.cta-landing.cta-landing-double-bg:after{
    content: '';
    z-index: 0;
    width: 100%;
    height: 289px;
    background-color: #071C35;
    position: absolute;
    left: 0;
    bottom: 0;
}
@media screen and (max-width: 541px){
    .cta-landing.cta-landing-double-bg{
        padding: 112px 0 102px 0;
    }
}

/* CTA Landing With Double Bg block end */
/* landing page start */

.video-wrapper {
    position: relative;
    width: 100%;
    height: 90vh;
}

.video-cover, .play-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 2;
}

.video-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.video-play-button {
	position: absolute;
    z-index: 3;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
	border: 0 !important;
	color: white;
	background-color: #161616;
	font-family: var(--texts-main-font);
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 199px;
	height: 51px;
	background-color: var(--main-orange);
	border: 2px solid var(--main-orange) !important;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	text-transform: uppercase;
	transition: var(--transition-duration-time);
}

.video-play-button:hover {
  background-color: transparent;
}

.iframe-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    z-index: 1; 
}

.video-title {
	transform: translate(-44%, -70%);
	position: absolute;
	top: 40%;
	left: 49%;
	width: 350px;
	font-size:36px;
	font-family: var(--headings-main-font);
	text-align: center;
	color: #fff;
	z-index: 3;
}

@media screen and (max-width: 521px){
	.iframe-video {
		height: 40vh;
	}
	.video-wrapper {
		height: 40vh; /* Adjust height as necessary */
	}
	.video-title {
		transform: translate(-49%, -70%);
	}
	.video-play-button {
		top: 65%;
	}
	.video-title {
		font-size:26px;
	}
	.video-play-button {
		font-size: 12px;
		width: 112px;
		height: 32px;
	}
}
