:root{
    --white: #ffffff;
    --black: #000000;
    --green: #0BFF14;
    --gray: #999999;
    --primaryblue: #1AB4AF;
    --whitedimmed: #C8DBE1;

}

html, body{
    background-color: var(--black);
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    border: none;
    min-width: 320px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    scrollbar-width: none;
    overflow-x: hidden;
    
}


section, .sectiondiv{
    margin-bottom: 3em;
    margin-top: 3em;
}

@media screen and (min-width: 768px) {
    section, .sectiondiv{
        margin-top: 5em;
        margin-bottom: 5em;
    }
}

*::after, *::before{
    box-sizing: border-box;
}



body img, body video{
    pointer-events: none;
}

.pointerevent{
    pointer-events: all;
}

@media only screen and (min-width: 500px){
    .call-enabled-a{
        pointer-events: none;
    } 
}

[data-hidden]{
    opacity: 0;
}

@keyframes opahide{
    to{
        opacity: 0;
    }
}

/*ANIMATED INTRO LOGO*/
.animated-logo-section{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: #000000;
    z-index: 13;
}

@keyframes filllogo{
    from{
        fill: #ffffff00;
    }
    to{
        fill: #1BD4CF ;
    };
}
@keyframes lineanimate{
    to{
        stroke-dashoffset: 0;
    };
}

#anilogowrapper svg{
    animation: filllogo 0.5s forwards 2s;
}

@media screen and (max-width: 600px) {
    #anilogowrapper svg{
        scale: 0.7;
    }   
}

#anilogowrapper svg path {
    stroke-dashoffset: -950;
    stroke-dasharray: 950;
    animation: lineanimate 2s forwards;
}

/* MASKING SHAPE */
.shape-mask {
    top: 0px;
    left: 0px;
    z-index: 11;
    width: 100vw;
}
.shape-mask img{
    width: 100%;
}


/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* H  E  A  D  E  R */
header{
    position: fixed;
    margin-top: 0px;
    background: #00000000;
    z-index: 12;
}

header .logo{
    width: 7rem;
}

/* Dropdown for Mobile - Navlinks for Desktop */
.navlinks-and-enquirebtn-container{
    padding: 2em 0.3em;
    border-radius: 0px 0px 0px 20px;
    background: #000000;
    height: 70vh;
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 58px;
    right: -50vw;
    max-width: 230px;
    max-height: 550px;
    min-width: 120px;
    z-index: 10;
   
}

@keyframes slidein{
    0%{
        transform: translateX(50vw);
    }
    10%{
        transform: translateX(45vw);
    }
    20%{
        transform: translateX(40vw);
    }
    30%{
        transform: translateX(35vw);
    }
    40%{
        transform: translateX(30vw);
    }
    50%{
        transform: translateX(25vw);
    }
    60%{
        transform: translateX(20vw);
    }
    70%{
        transform: translateX(15vw);
    }
    80%{
        transform: translateX(10vw);
    }
    90%{
        transform: translateX(5vw);
    }
    100%{
        transform: translateX(0vw);
    }
}
.animate{
    animation: slidein 0.1s ease-in;
}
.animate-reverse{
    animation: slidein 0.1s ease-in reverse;
}

/* ----------------------------------------------------------------*/
/* Nav Links */
.nav-links-container{
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 2em;

}
.nav-links-container a{
    text-decoration: none;
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 0px; /* 0% */

}
.nav-links-container a:hover{
    text-decoration: underline;
    text-underline-offset: 6px;
    color: #e8e8e8;

}
/*------------------------------------------------------------------*/
/* Lang Change Button */
.lang-change-btn{
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #305155;
    color: #ffffff;
    width: 44px;
    height: 26px;
    padding: 0.6px 4px;
    border-radius: 13px;
    box-shadow: 0px 1px 0.8px 0px #000 inset;
    scale: 0.9;  
}
.lang-change-btn:hover{
    cursor: pointer;
}
.lang-btn-text{
    color: #FFF;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Poppins;
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
    line-height: 0px; /* 0% */

}
.lang-change-btn .circle{
    position: absolute;
    top: 12%;
    right: 7%;
    background: linear-gradient(#ffffff,#919090);
    height: 78%;
    width: 45%;
    border-radius: 50%;
    filter: drop-shadow(-0.4px 0.2px 0px #979797);

}
.circle .glow-light{
    position: absolute;
    top: 20%;
    right: 25%;
    height: 10%;
    width: 10%;
    border-radius: 50%;
    background: linear-gradient(to right, #0BFF14, #2aa52e );
    box-shadow: 0px 0px 2px 0.5px #0BFF14;
}
/*--------------------------------------------------------------------------*/
/* Burger Button */
.burger-btn{
    position: relative;
    margin-left: 1.5em;
}
.burger-icon, .x-icon{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
}
.burger-icon hr, .x-icon hr{
    margin: 0px 0px;
    border: 0px solid #ffffff;
    background: #ffffff;
    height: 3px;
    width: 30px;
    opacity: 1;
}
.x-icon{
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;

}
.x-icon hr:first-child{
    transform-origin: top left;
    transform: rotate(45deg);
    width: 25px;
}
.x-icon hr:last-child{
    transform-origin: bottom left;
    transform: rotate(-45deg);
    width: 25px;
}

/*---------------------------------------------------------------------------*/
/* Enquire Button */
.enquire-btn{
    position: relative;
    border: none;
    width: 60%;
    padding: 14px 18px;
    min-width: 135px;
    border: none;
    background: #FFF;
    font-family: "Urbanist", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #000;
    font-size: 0.8em;
    line-height: 0px; /* 0% */
    letter-spacing: 0.9px;
    transition: color 0.5s, transform 0.2s, background-color 0.2s;
    overflow: hidden;
    z-index: 1;  
}
.enquire-btn:active {
    transform: translateY(3px);
}

/*--------------------------------------------------------------------------*/
/* Header Media Queries */
@media only screen and (min-width: 768px){

    /* Dropdown for Mobile - Navlinks for Desktop */
    .navlinks-and-enquirebtn-container{
        padding: 0em 0em;
        border-radius: 0px;
        background: none;
        height: fit-content;
        width: fit-content;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-width: fit-content;
        min-width: auto;
        position: static;
        z-index: 11;
    }

    /* Nav Links */
    .nav-links-container{
    height: fit-content;
    width: fit-content;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;

    }
    .nav-links-container a{
    font-size: 0.9em;
    }

    .nav-links-container a:hover{
    text-decoration: underline;
    text-underline-offset: 6px;
    color: #e8e8e8;

    }

    #burgerbtn{
        display: none;
    }

    /* Enquire Button */
    .enquire-btn{
        font-size: 0.8em;

    }
    .enquire-btn:hover{
        color: var(--white);
        transition: color 1s;
        cursor: pointer;
    }
    
    .enquire-btn::before {
        content: "";
        position: absolute;
        background:linear-gradient(to right, #1d1d1d, #000000f0 50%);
        opacity: 0;
        top: 0px;
        left: -90px;
        width: 110%;
        height: 100%;
        z-index: -1; 
    }
    .enquire-btn:hover::before {
        opacity: 1;  
        transition: transform 0.3s;
        transform: translateX(90px);
    }
    
}
/*******************************************************************************************************************/

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* LANG ALERT */
.lang-alert{
    position: fixed;
    background: #000000;
    border: 1px solid #838588;
    border-radius: 10px;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 3em;
    z-index: 15;
    display: none;
}
.lang-alert span{
    color: #838588;
    font-family: "Poppins";
}
.lang-alert hr{
    background: #838588;
    height: 1px;
    width: 100%;
    border: none;
}
/* **************************************************************************************************************** */

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* LANG CHANGE INFROM */
.lang-change-inform{
    width: 200px;
    z-index: 11;
    top: 120px;
    right: 100px;
    position: fixed;
    opacity: 0;
}
/* **************************************************************************************************************** */


/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* H E R O  S E C T I O N */
#herosection{
    padding: 5em 0px 4em;
    position: relative;
}

#herosection::before{
    position: absolute;
    top: 0px;
    right: 0px;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../assets/bg-images/svg-bg.svg);
    background-repeat: no-repeat;
    background-position-y: -1vh;
    opacity: 0.8;
}
#herosection::after{
    position: absolute;
    top: 0px;
    left: 0px;
    content: "";
    width: 100%;
    height: 101%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 58.6%, rgba(0, 0, 0, 0.40) 70.6%, rgba(0, 0, 0, 0.60) 90.6%, #000 100%);
}

.circles-lines{
    top: 0px;
    left: -5vw;
    width: 90%;
    z-index: 1;
    opacity: 0.7;
}
.clouds{
    top: 20vh;
    right: -8vw;
    width: 90%;
    z-index: 2;
}
/*-----------------------------------------------------------------------------*/

.hero-content-wrapper{
    z-index: 3;
    margin: 0px auto;
}
.heroimg-and-line-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
}
.hero-woman-img{
    width: 180px;
    padding-left: 0px;
    margin-bottom: -20px;
}
.heroimg-and-line-wrapper hr{
    border: none;
    opacity: 1;
    width: 200px;
    height: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, #19212D 0%, #526C93 100%);
}
/*------------------------------------------------------------------------------*/

.animatedbean{
    scale: 0.6;
}

.animatedbean svg rect{
    stroke: #ffffff;
    stroke-width: 1.89286;
    fill: #475f6faa;

}
.animatedbean svg line{
    stroke: #ffffff;
    stroke-width: 2;
    stroke-dasharray: 3.79 3.79;
}

.animatedbean-and-herotitle-wrapper h1{
    color: #FFF;
    font-family: "Poppins", serif;
    font-size: 10vw;
    font-style: normal;
    font-weight: 500;
    line-height: 12vw; /* 100% */

}

/*---------------------------------------------------------------------*/
.hero-text-and-buttons-wrapper p{
    color: var(--whitedimmed);
    text-align: center;
    font-family: "Grape Nuts";
    font-size: 120%;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.64px;

}

.explore-services-btn{
    text-decoration: none;
    overflow: hidden;
    padding: 12px 22px;
    border-radius: 6px;
    background: #FFF;
    color: #000;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Urbanist;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}
.explore-services-btn span{
    z-index: 1;
}
.svg-graphics-wrapper{
    width: 45%;
    left: 0px;
    top: 0px;
}

.consult-now-btn{
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 6px;
    background: #0BFF14;
    color: #000;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Urbanist;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}
.explore-services-btn:hover{
    background: linear-gradient(190deg, #ffffff, #a2a2a2);
    scale: 1.03;
}
.consult-now-btn:hover{
    background: linear-gradient(190deg, #15c224,#04ff00);
    scale: 1.03;
}
.explore-services-btn:active, .consult-now-btn:active{
    transform: translateY(3px);
}

@keyframes arrowsslide{
    0%{
        fill: #EBEBEB;
    }
    100%{
        fill: rgba(134, 157, 216, 0.392);
    }
}
.explore-services-btn svg:nth-child(1){
    animation: arrowsslide 0.5s infinite ease-in;
}
.explore-services-btn svg:nth-child(2){
    animation: arrowsslide 1s infinite 1s ease-in;
}
.explore-services-btn svg:nth-child(3){
    animation: arrowsslide 1.5s infinite 1.5s ease-in;
}

/*--------------------------------------------------------------*/
@media only screen and (min-width: 768px){
    #herosection::before{
        background-position-x: right;
    }

    .circles-lines{
        left: -3vw;
        width: 45%;
    }
    .clouds{
        top: 5vh;
        right: -4vw;
        opacity: 0.9;
        width: auto;
    }
    .heroimg-and-line-wrapper hr{
        width: 250px;
    }
    .hero-woman-img{
        width: 200px;
    }

    .animatedbean-and-herotitle-wrapper h1{
        font-size: 60px;
        line-height: 68px;
    
    }
    .hero-text-and-buttons-wrapper p{
        font-size: 25px;
        line-height: 35px;
        letter-spacing: 0.64px;
    }
    .explore-services-btn, .consult-now-btn{
        scale: 1;
    }
    
}
@media only screen and (min-width: 992px){

    .heroimg-and-line-wrapper hr{
        width: 300px;
    }
    .hero-woman-img{
        width: 250px;
    }
    .animatedbean-and-herotitle-wrapper{
        padding-top: 7em;
    }

    .animatedbean-and-herotitle-wrapper h1{
        font-size: 65px;
        line-height: 75px;
    
    }
    .hero-text-and-buttons-wrapper p{
        font-size: 30px;
        line-height: 40px; /* 125% */
        letter-spacing: 0.64px;
    
    }
 
}

/************************************************************************************************************************************/

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* F R A U D    B A N K    S E C T I O N */
.fraud-bank-section{
    background: #000000;
    position: relative;
    margin: 3em 0px 4em;
}
.fraud-bank-section div{
    background: var(--black);
    position: relative;
    scrollbar-width: none;
    
}
.mySwiper, .mySwiper2 {
    background: var(--black);
    margin-top: 2.5rem;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        white 10%,
        white 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      white 10%,
      white 90%,
      transparent 100%
    );
}

.fraud-bank-section .swiper-wrapper {
    transition-timing-function: linear;
    align-items: center;
}

.fraud-bank-section .swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px;
    height: 50px;
    min-width: 190px;
    max-width: 230px;
    color: #ffffff;
    text-align: center;
    font-family: "Poppins", serif;
    font-style: normal;
    font-size: 10px;
    font-weight: 500;
    border: solid 1px #ffffff;
    border-radius: 7px;
    opacity: 0.3;
}
@media screen and (min-width: 768px){
    .fraud-bank-section{
        margin: 4em 0px 6em;
    }
}
@media screen and (min-width: 992px){
    .fraud-bank-section{
        margin: 4em 0px 6em;
    }
    .mySwiper, .mySwiper2 {
        max-width: 80%;
        margin-top: 2.5rem;
    }
    
}


/***********************************************************************************************************************************/

/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* A B O U T  U S */

/* Summary */
.summary{
    background: url(../assets/bg-images/nec-name-bg.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 50%;
}
.summarytitle{
    color: #FFF;
    background-color: #0F0F0F;
    font-family: Poppins;
    font-size: 22.5px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 125% */
    max-width: 500px;
}
.p-text-wrapper p{
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 172.222% */

}
.p-text-wrapper p:nth-child(2){
    color: #98C5EC;
}
.shield-wrapper img{
    max-width: 50px;
}


@media only screen and (min-width: 768px){
    .summarytitle{
        font-size: 35px;
        line-height: 60px;
    }
    .p-text-wrapper p{
        font-size: 22px;
        line-height: 45px;
    }
    .shield-wrapper img{
        max-width: 150px;
    }
    
}
@media only screen and (min-width: 992px) {
    .summary{
        background-position: center;
        background-size: 50%;
    }
    .shield-wrapper img{
        max-width: 230px;
    }
    
}
/*---------------------------------------------------------*/
/* About */
.about{
    background: url(../assets/bg-images/black-circles-bg.svg);
    background-repeat: no-repeat;
    background-position: 50px 10px;
}
.info-icon{
    width: 25px;
}
.logo-title-wrapper div h2{
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}
.about .p-container p{
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.554px; /* 178.462% */

}
.about .p-container p:nth-child(1){
    background: #112D4E;
    box-shadow: 0px 3.359px 3.359px 0px rgba(0, 0, 0, 0.25);
}
.about .p-container p:nth-child(2){
    background: #111;
    box-shadow: 0px 3.359px 3.359px 0px rgba(0, 0, 0, 0.25);
}
.about .p-container p:nth-child(3){
    background: var(--primaryblue);
    box-shadow: 0px 3.359px 3.359px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 768px) {
    .about{
        background-position: 0px 90px;
    }
    .info-icon{
        width: 40px;
    }
    .logo-title-wrapper div h2{
        font-size: 30px;
    }
    .about .p-container p{
        font-size: 18px;
        line-height: 33px; /* 178.462% */
    
    }
    
}
@media screen and (min-width: 992px) {
    .about{
        margin-top: 100px !important;
        background-size: 700px;
        background-position: 50px 10px;
    }
    .about .logo-title-wrapper .framed-lion{
        width: 180px;
    }
    .info-icon{
        width: 42px;
        margin-right: 20px;
    }
    .logo-title-wrapper div h2{
        font-size: 35px;
    }
    .about .p-container p{
        font-size: 20px;
        line-height: 32px;
    
    }
    
}
/*-----------------------------------------------------*/
/*Vision and Mission*/
.v-and-m div h3{
    color: #FFF;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;

}
.v-and-m div img{
    width: 28px;
}
.v-and-m div p{
    color: #6F6F6F;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28.788px;

}
@media screen and (min-width: 768px) {
    .v-and-m div h3{
        font-size: 20px;
    }
    .v-and-m div img{
        width: 30px;
    }
    .v-and-m div p{
        font-size: 16px;
    
    }
  
}
@media screen and (min-width: 992px) {
    .v-and-m{
        margin: 4em auto 4em;
    }
    .v-and-m div h3{
        font-size: 30px;
        margin-right: 2em !important;
    }
    .v-and-m div img{
        width: 30px;
    }
    .v-and-m div p{
        font-size: 18px;
        line-height: 28px;
    
    }

}
/*---------------------------------------------------*/
/* Our Values */
.our-values h3{
    color: var(--primaryblue);

}
.our-values h4{
    color: #000000;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 228.696% */

}
.our-values .card-wrapper .card{
    height: 350px;
    max-width: 250px;
    width: 46%;
    border: none;
    border-radius: 10px;

}
.focus{
    background: var(--primaryblue);
    transition: scale 0.5s;
    scale: 1.08;
    z-index: 2;
}

.our-values .card-wrapper .card img{
    width: 30px;
    
}
.our-values .card-wrapper .card p{
    color: #161515e0;
    text-align: center;
    font-family: Poppins;
    font-size: 13.042px;
    font-style: normal;
    font-weight: 400;
    line-height: 21.737px; /* 166.667% */

}

@media screen and (min-width: 768px) {
    .our-values .card-wrapper .card{
        width: 40%;
    
    }
    .our-values .card-wrapper .card img{
        width: 40px;
        
    }
    .our-values h4{
        font-size: 18px;
        line-height: 20px;
    
    }
    .our-values .card-wrapper .card p{
        padding: 0.5em;
        font-size: 15.5px;
        line-height: 22px;
    }

}
@media screen and (min-width: 992px) {
    .focus{
        scale: 1.05;
    }

}

/******************************************************************************************************************************/

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* O U R  S E V I C E S */
#servicessection-sw{
    display: none;
}
/* top title + text */
.services-section{
    margin: 3em auto 1em;
}
.services-section .title-icon-wrapper h2{
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 0px;
}
.services-section .title-icon-wrapper img{
    width: 25px;
}
.services-section .sub-title{
    color: #575757;
    text-align: center;
    font-size: 14px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */

}
.services-section .slide-lr-text{
    color: #8a8a8a51;
    font-size: 14px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */

}

/* -------------------------------------------------- */
/* containers */
.service-cards-wrapper{
    margin: 4em auto 0em;
}
.service-cards-wrapper .swiper{
    width: 100%;
    height: 630px;
}
.service-cards-wrapper .mySwiper4, .service-cards-wrapper .mySwiper5{
    height: 435px;
    margin: 7em auto 0em;
}
.service-cards-wrapper .swiper-wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: space-between;
}

/* card */
.service-cards-wrapper .service-card{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
    padding-top: 4em;
    /* width: 330px; */
    height: 560px;
    border-radius: 6px;
    border: 1px solid #595A5A;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    min-width: 300px;
}
.service-cards-wrapper .service-card-sm{
    width: 310px;
    height: 375px;
}
.service-cards-wrapper .service-card:hover{
    background: #305155 !important;
    cursor: pointer;
    border-color: #04fbf3;
}
.service-cards-wrapper .service-card-sm:hover{
    background: #305155 !important;
    cursor: pointer;
    scale: 1.03;
    transition: all 0.3s;
    border-color: #04fbf3;
}

/* card content */
.service-cards-wrapper .service-card h3{
    align-self: flex-start;
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 137.5% */
}
.service-cards-wrapper .service-card p{
    margin: 2em auto 3em;
    text-align: left;
    color: #B5B5B5;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 166.667% */
}
.service-cards-wrapper .service-card a{
    position: absolute;
    right: 30px;
    bottom: 30px;
    align-self: flex-end;
}
.service-cards-wrapper .service-card a img:hover{
    transform: rotate(55deg);
    transition: all 1s;

}

/* next prev btn */
.service-cards-wrapper .swiper-button-prev, .service-cards-wrapper .swiper-button-next{
    color: #2ca8aa;
}
/* bulletin */
.service-cards-wrapper .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-family: Poppins, serif;
    font-size: 12px;
    color: #ffffff;
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.service-cards-wrapper .swiper-pagination-bullet-active {
    color: #ffffff;
    background: var(--primaryblue);
}


@media screen and (min-width: 768px){
    .services-section{
        margin-top: 8em;
        margin-bottom: 6em;
    }

    /*swiper containers */
    .service-cards-wrapper .swiper{
        width: 90%;
        height: 630px;
    }
    .service-cards-wrapper .mySwiper4, .service-cards-wrapper .mySwiper5{
        height: 485px;
        margin: 8em auto;
    
    }

    /* section header */
    .services-section .title-icon-wrapper h2{
        font-size: 28px;
        margin-right: 6em;
    }
    .services-section .title-icon-wrapper img{
        width: 30px;
    }
    .services-section .sub-title{
        width: 80%;
        font-size: 18px;
        line-height: 28px; /* 162.5% */
    
    }
    .services-section .slide-lr-text{
        font-size: 16px;
        line-height: 26px; /* 162.5% */
    
    }

    /* card */
    .service-cards-wrapper .service-card{
        width: 390px;
        height: 560px;

    }
    .service-cards-wrapper .service-card-sm{
        width: 310px;
        height: 395px;

    }


    /* Card Content */
    .service-cards-wrapper .service-card h3{
        font-size: 17px;
        line-height: 27px; /* 137.5% */
    }
    .service-cards-wrapper .service-card p{
        font-size: 13px;
        line-height: 23px; /* 166.667% */
    }

    
}

@media screen and (min-width: 992px){
    .services-section{
        margin-top: 10em;
        margin-bottom: 8em;
    }
    /*Swiper Container */
    .service-cards-wrapper .swiper{
        width: 80%;
        max-width: calc((560*3)+60);
        height: 630px;
    }
    .service-cards-wrapper .mySwiper4{
        display: flex;
        justify-content: center;
        padding: 1em;
        width: 80%;
        height: 800px;
        margin: 7em auto;
    } 
    .service-cards-wrapper .mySwiper5{
        display: flex;
        justify-content: center;
        padding: 1em;
        width: 80%;
        height: 1190px;
        margin: 7em auto;
    
    }
    /* Cards Size */
    .service-cards-wrapper .service-card{
        height: 560px;    
    }
    .service-cards-wrapper .service-card-sm{
        width: 350px;
        height: 335px;
    }

}

@media screen and (min-width: 1280px){
    /*Swiper Container */
    .service-cards-wrapper .swiper{
        width: 90%;
    }
    .service-cards-wrapper .mySwiper4{
        width: 95%;
    } 
    .service-cards-wrapper .mySwiper5{
        width: 95%;
    }

}
@media screen and (min-width: 1440px){
    /*Swiper Container */
    .service-cards-wrapper .swiper{
        width: 80%;
    }
    .service-cards-wrapper .mySwiper4{
        width: 80%;
    } 
    .service-cards-wrapper .mySwiper5{
        width: 80%;
    }

}
/* ************************************************************************************************************************** */

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* I L L U M I N A T I O N */
.illumination-wrapper{
    margin-top: -10em;
    background-color: var(--black);
    width: 100vw;
    height: 50vh;
    margin-bottom: 10em;
}
.illumination-wrapper img{
    opacity: 0.5;
}
.illumination{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at var(--x) var(--y),
        transparent 10%,
        rgb(0, 0, 0) 25%
    );
}
/* ************************************************************************************************************************** */

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* W O R K I N G  P R O C E S S */
.working-process h2{
    color: #FFF;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
}
.working-process-img-wrapper img{
    width: 100%;
}
.why-choose-us img{
    width: 100%;

}
@media screen and (min-width: 768px) {
    .working-process h2{
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 2em !important;
    }
    
}
@media screen and (min-width: 992px) {
    .working-process h2{
        font-size: 42px;
        line-height: 52px;
    }
    .working-process-img-wrapper img{
        width: 80%;
    }
    .why-choose-us img{
        width: 80%;
    
    }
    
}
/* ************************************************************************************************************************** */

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* CTA 1 */
.cta1-title span:first-child{
    color: #F2F1FA;
    font-family: Poppins;
}
.cta1-title span:last-child{
    color: var(--primaryblue);
    font-family: Poppins;
}
.cta1-p1{
    color: #2F2E41;
    font-family: Poppins;
}
.cta1-p2{
    color:#9795B5;
    font-family: Poppins;
}
.chatmockdiv img{
    width: 140%;
    max-width: 500px;
}
.cta1-textbtn-div img{
    max-width: 350px;
}
.chat-now-btn, .call-now-btn{
    display: flex;
    padding: 1.6% 8%;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--black);
    font-family: Poppins, serif;
}
.chat-now-btn img, .call-now-btn img{
    width: 20px;
}
.chat-now-btn{
    border-radius: 5px;
    background: #0BFF14;

}
.call-now-btn{
    border-radius: 5px;
    background: #1BD4CF;
}
.chat-now-btn:hover{
    background: linear-gradient(190deg,#0BFF14, #4ea338);
    scale: 1.03;
}
.call-now-btn:hover{
    background: linear-gradient(190deg, #ade1df, #04fbf3);
    scale: 1.03;
}
.chat-now-btn:active, .call-now-btn:active{
    transform: translateY(2px);
}

@media screen and (max-width: 768px){
    .cta1-textbtn-div img{
        max-width: 200px;
    }
    .chat-now-btn, .call-now-btn{
        padding: 12px 65px;
    }
    
}

/* ************************************************************************************************************************* */

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* TESTIMONY SECTION */
.ts-content-wrapper h2{
    color: #FFF;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    line-height: 80px; /* 166.667% */

}
.reviewer-img{
    max-width: 55px;
}
.testimony-card{
    padding: 3em 2em 2em;
    background-color: #111;
    margin-bottom: 1em;
    border-radius: 10px;
    border: 2.58px solid #1B1D1D;
    background: #000;
    max-width: 400px;
    min-width: 300px;
    height: 400px;
}
.testimony-card .card-header{
    margin-bottom: 2em;
}
.reviewer-name{
    color: rgba(241, 243, 246, 0.47);
    font-family: Poppins;
}
.review-text{
    color: rgba(241, 243, 246, 0.47);
    font-family: Poppins;
}

@media screen and (min-width: 992px){
    .testimony-section .swiper-wrapper {
        transition-timing-function: linear;
        align-items: center;
    }
    .mySwiper6 {
        background: var(--black);
        max-width: 98%;
        margin-top: 2.5rem;
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
           white 10%,
           white 90%,
           transparent 100%
     
         );
        mask-image: linear-gradient(
          to right,
          transparent 0%,
          white 10%,
          white 90%,
          transparent 100%
        );

    }
}
@media screen and (min-width: 1400px){
    .mySwiper6 {
        max-width: 85%;
    }
}
/* ********************************************************************************************************************* */

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* FAQ SECTION */
.to-top{
    position: absolute;
    bottom: -30px;
    right: 3%;
    background: #1b1b1b63;
    width: 50px;
    height: 50px;
}
.to-top img{
    transform: rotate(-90deg);
    opacity: 0.5;
}
.to-top:hover{
    background: #0F0F0F;
    transition: all 0.5s;
    scale: 0.8;
}
.faq{
    margin-top: 3.5em;
}
.faq h2{
    color: #ffffff;
    margin-bottom: 1.5em;
    letter-spacing: 5px;
}
.faq .faq-sub-title{
    color: #646D76;
    text-align: center;
    font-family: Poppins;
    font-weight: 400;
    width: 90%;
    margin-bottom: 2em;
}
.faq .faq-wrapper{
    width: 100%;
}
.faq .question-wrapper{
    border-radius: 10px;
    border: 1px solid #575757;
    background: #000000;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}
.faq .question{
    color: #afafafc6;
    font-family: Poppins;
    font-weight: 500;
}
.reveal-chevron-icon{
    opacity: 0.5;
}
.faq .answer{
    margin-top: -10px;
    border-radius: 0px 0px 10px 10px;
    background: #D3DAE1;
    width: 96%;  
    color: #000;
    font-family: Poppins;
    font-weight: 400;
    display: none;
}

@keyframes slideDown {
    from{
        will-change: transform;
        transform: translateY(-45px);
    } 
    to{
        will-change: transform;
        transform: translateY(10px);
    } 
}

.faq .answer{
    animation: slideDown 0.2s linear;
}

@media screen and (min-width: 768px){
    .faq .faq-sub-title{
        width: 70%;
    }
    
}
/* ********************************************************************************************************************* */

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* CT2 SECTION */
.cta2-content-wrapper hr{
    border: none;
    height: 5px;
    width: 100%;
    background: #1BD4CF;
}
.cta2-img{
    width: 100%;
}
.call-icon-gif{
    width: 60px;
}
  
.consult-now-btn2{
    margin-top: 3.5em;
    max-width: 260px;
    transition: all 0.5s;
    background: linear-gradient(190deg, #04fbf3, #15c224);
}
.consult-now-btn2:hover{
    background: linear-gradient(190deg, #15c224, #04fbf3);
}
.white-color{
    color: #ffffff;
}
.blue-text{
    color: var(--primaryblue);
}

/* ********************************************************************************************************************* */

/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* FOOTER */
footer{
    background: rgba(30, 30, 30, 0.60);
}

.footer-main-wrapper{
    background-color: #04fbf300;
    height: 70vh;
    z-index: 0; 
}

.footer-content-wrapper div{
    z-index: 5;
}
address span{
    color: #1BD4CF;
    font-family: "Grape Nuts";
    font-style: normal;
    font-weight: 400;
}
.footer-logo{
    min-width: 150px;
    width: 30%;
    max-width: 400px;
}

.title-and-links-wrapper span{
    color: #1BD4CF;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
}
.title-and-links-wrapper a{
    color: #1BD4CF;
    text-align: center;
    font-family: Poppins;
    font-style: normal;
    font-weight: 400;
}
.title-and-links-wrapper a:hover{
    scale: 1.05;
}
.copyright-text span{
    color: #1BD4CF;
    font-family: Poppins;
    font-style: normal;
    font-weight: 300;
}

/* backgrounds-logos-devtag */
.f-bg{
    transform: rotate(95deg);
    width: 120%;
    right: -20%;
    bottom: 4%;
    z-index: 0;
}
.footer-nec-name{
    transform: rotate(90deg);
    width: 55%;
    right: -2%;
    bottom: 28%;
    z-index: 2;
    opacity: 0.85;
}
.dev-tag{
    width: 194px;
    left: -10px;
    bottom: 10%;
    z-index: 7;
}
.flame-logo{
    width: 100px;
    right: 5%;
    bottom: 10%;
    z-index: 7;
}
.dual-lion-logo{
    min-width: 300px;
    width: 18%;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%);
    z-index: 4;
    opacity: 0.5;
}




@media screen and (min-width: 768px){
    footer{
        min-height: 70vh ;
        padding-top: 5rem !important;
    }

}

@media screen and (min-width: 992px){
    .f-bg{
        transform: rotate(0deg);
        width: 60%;
        right: -50px;
        bottom: 4%;
    }
    .footer-nec-name{
        transform: rotate(0deg);
        width: 35%;
        right: 5%;
        bottom: 28%;
    }

}

@media screen and (max-width: 500px){
    footer{
        height: 155vh;
        padding-top: 2.5em;
    }

    .f-bg{
        scale: 1.2;
        bottom: -300px;
    }
    .footer-nec-name{
        width: 135%;
        right: -20%;
        bottom: 28%;
    }

    .dev-tag{
        width: 150px;
        bottom: -110%;
    }
    .flame-logo{
        bottom: -90%;
    }
    .dual-lion-logo{
        min-width: 180px;
    }

}

/* ********************************************************************************************************************* */




  