@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
*{
    font-family: 'Lexend', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


:root{

    --text-w-primary:#5479F5;
    --fz-v-24px: 24px;
}
body{
    overflow-x: hidden;
}
.fz-10{

    font-size: 10px;
}
.fz-11{

    font-size: 11px;
}
.fz-12{

    font-size: 12px;
}
.fz-13{

    font-size: 13px;
}
.fz-14{

    font-size: 14px;
}
.fz-15{

    font-size: 15px;
}
.fz-16{

    font-size: 16px;
}
.fz-17{

    font-size: 17px;
}
.fz-18{

    font-size: 18px;
}
.fz-19{

    font-size: 19px;
}
.fz-20{

    font-size: 20px;
}
.fw-100{
    font-weight: 100;
}
.fw-200{
    font-weight: 200;
}
.fw-300{
    font-weight: 300;
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-160{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-800{
    font-weight: 800;
}
.fw-900{
    font-weight: 900;
}
.w-80{
    width: 80%;
}

.mob-mt-80{
    margin-top: 80px;
}
.mob-mt-40{
    margin-top: 40px;
}

.web_primary_txt{
    color:#5479F5;

}

p{
    line-height: 30px;
}


.header-wrapper{
    padding: 16px 0;
    position: fixed;
    width: 100%;
    background: #000;
    z-index: 100;
    top: 0;
    transform: translateY(0);
    transition: 0.3s ease;
}
.non_sticky_header{
    transform: translateY(-100px);
}
.index--wrapper{
   position: relative;
   margin-top: 50px;
   /* background-image: url('./assets/bg-cytrust.webp');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat; */
}

/* .index--wrapper::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to top, #000000ad, transparent);
} */

.top_site_logo{
    width: 250px;
}

.link_container{
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    align-items: center;
}

.link_container li a{
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}




.connect_btn{
    border: none;
    background: #000000;
    color: #fff;
    border-radius: 25px;
    padding: 12px 22px;
    position: relative;
    overflow: hidden;
}
.connect_btn::before{
    content: '';
    position: absolute;
    top: 0;
    display: block;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-w-primary);
 
    transition: 0.3s;
    border-radius: 50%;
    transform: scaleX(0);
}
.connect_btn:hover::before{
    border-radius: 25px;
    transform: scaleX(1);
}
.vspl_btn{
    position: relative;
    z-index: 1;
}
.header_block{
    padding: 20px;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


 .integrated_tools_logo_container{
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
}


.integrated_tools_logo_container:hover .integrated_tools_logos-slide, .testimonial_card_block_container:hover .animation_forward, .testimonial_card_block_container:hover .animation_backword{
    animation-play-state: paused;
}

.integrated_tools_logos-slide img{
    height: 120px;
    margin: 0 30px;
}

.integrated_tools_logos-slide{

    display: inline-block;
    animation: 50s company_logo_slide infinite linear;
    position: relative;

}



.destimonial_card{
    width: 400px;
    height: 300px;
    border: 1px solid #F4F5F6;
    border-radius: 24px;
    padding: 24px;
    flex-shrink: 0;

}

.testimonial_card_block_container{
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow: hidden;
}

.testimonial_card_block{
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
   
}
.animation_forward{
    animation: 30s company_logo_slide infinite linear;
}

.animation_backword{
    transform: translateX(-100%);
    animation: 30s reverse_card infinite linear;
}

.destimonial_card p:not(.authr_txt){
    color: #83939C;
    font-size: 18px;
}

.authr_txt{
    color: #ADBBC2;
    font-size: 18px;
}


.w-70{
    width: 70%;
}

.hd_hdr_ind{
    line-height: 65px;
    font-size: 50px;
    text-transform: capitalize;
    font-weight: 500;
}



.hd_p_txt{
    line-height: 30px;
    padding-right: 60px;
    font-weight: 500;
    color:#b5b4bf;
    margin-top: 10px;
    margin-bottom: 30px;
}


.ml-auto{
    margin-left: auto;
}

.abt-card{

    padding: 20px;
    margin-top: 30px;
    transition: transform 0.5s, box-shadow 0.5s;
    background-color: #fff;
}

.abt-card:hover{

    transform: scale(1.01);
    border-radius: 15px;
    border: 1px solid #c1c1c15e;
    box-shadow: 0px 0px 17px 0px #dbdbdbdc;
}

.footer_link_container a{
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

footer{
    padding: 30px;
    background-color: #000;
}

.footer_logo_btn{
    background: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    position: relative;
}

.footer_logo_btn::before{
    content: '';
    position: absolute;
    top: 0;
    display: block;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-w-primary);
 
    transition: 0.3s;
    border-radius: 50%;
    transform: scaleX(0);
}

.footer_logo_btn:hover::before{
    border-radius: 10px;
    transform: scaleX(1);
}

.footer_logo_btn:hover .hwhite{

    color: #fff;
}
.footer_logo_btn:hover svg path{
    fill:#fff;
}
.footer_logo_btn:hover svg{
    stroke: #fff;
    fill: #fff;
}

.ftr_txt_p{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: left;

}
.footer_logo_container img{

    width: 400px;
}

.footer_container{

    display: flex;
    justify-content: space-between;
}

.footer_link_container{

    text-align: end;
}

.footer_social_link_container{
    display: flex;
    gap: 1rem;
}

.footer_divider{
    width: 100%;
    border-bottom: 1px solid #FFFFFF4D;

}

.footer_bottom_link_container{
    display: flex;
    justify-content: space-between;
}

.footer_bottom_link_container span a{
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.bs_container{
    background-color: #F6F6F6;
    padding: 100px 0px;
}

.fade_out_h{
    color:#4E616B;
}

.flipper_container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 80px;
}

.flipper {
    width: 400px;
    height: 450px;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
    flex-shrink: 0;
}

.filpper_layer1 {
    width: 100%;
    height: 100%;
    background-color: transparent;
    padding: 15px 30px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: 300ms ease-out;
    transform: rotateY(0);
    border: 1px solid #0000001A;
    border-radius: 40px;
}


.filpper_static {
    width: 100%;
    height: 100%;
    background-color: transparent;
    padding: 15px 30px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: 300ms ease-out;
    transform: rotateY(0);
    border: 1px solid #0000001A;
    border-radius: 40px;
}

.flipper_layer2 {
    position: absolute;
    padding: 15px 30px;
    height: 100%;
    width: 100%;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 40px;
    transition: 300ms ease-out;
    opacity: 0;
    transform: rotateY(180deg);
    top: 0;
    left: 0;
    border: 1px solid #0000001A;
    background-color: #5479F5;
    color: #fff;
    text-align: center;

}
/* .flipper:hover {
    width: 345px;
} */
.flipper:hover .filpper_layer1 {
    opacity: 0;
    transform: rotateY(180deg);
}
.flipper:hover .flipper_layer2 {
    transform: rotateY(0deg);
    opacity: 1;
}

.flipper_layer2:not(.consulting_ex_txt){

    display: flex;
    align-items: center;

}

.filpper_layer1 .flipper_content img{
    width: 100%;
}

.open-info{
    cursor: pointer;
}

.flipper_content{

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.variable-width .slick-slide{

    margin: 0 20px;
}

.variable-width{
    padding-left: 100px;
    padding-right: 20px;
}


.slick_nextbtn{
    position: absolute;
    z-index: 1;
    bottom: -50px;
    right: 100px;
    background: transparent;
    border: none;
    transform: rotate(180deg);

}

.slick_prevbtn{
    position: absolute;
    z-index: 1;
    bottom:  -50px;
    right: 50px;
    background: transparent;
    border: none;
   
}

.tslick_nextbtn{
    position: absolute;
    z-index: 1;
    bottom: -50px;
    background: transparent;
    border: none;
    transform: translateX(0%);
    left: 50%;

}

.tslick_prevbtn{
    position: absolute;
    z-index: 1;
    bottom:  -50px;
    background: transparent;
    border: none;
    transform: rotate(180deg) translateX(0%);
    right: 50%;
   
}

.slilder_hdr_nd_link{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 1rem;
}

.pr_txt_hdr{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize;

}

.mobile_menuicon{
    display: none;
    width: max-content;
}

#carouselExampleDark .carousel-control-next, #carouselExampleDark .carousel-control-prev{
    top: auto;
    bottom: -46px;
    width: max-content;

}

#carouselExampleDark .carousel-control-prev{
    transform: rotate(180deg);
    left: 48%;
}

#carouselExampleDark .carousel-control-next{
    left: 52%;
}
.gls_txt{
    padding: 10px;
    border-radius: 100px;
    border: 1px solid #D6D6D6;
    color: #0D0D0D;
}

.mt-150{

    margin-top: 150px;
}

.btn_toggle_container{
    background: #fff;
    padding: 20px;
    border-radius: 60px;
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.btn_toggle_container button{
    border: none;
    border-radius: 25px;
    background: none;
    position: relative;
    z-index: 1;
    width: 140px;
}

.btn_toggle_container1{
    background: #fff;
    padding: 18px;
    border-radius: 60px;
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.btn_toggle_container1 button{
    border: none;
    border-radius: 25px;
    background: none;
    position: relative;
    z-index: 1;
    width: 140px;
}
.active_toggle_button{
    color: #fff;
}

.btn_toggle_container::before{
    content: '';
    position: absolute;
    display: block;
    width: 140px;
    background-color: #5479F5;
    inset: 12px 14px;
    border-radius: 50px;
    padding: 14px 10px;
    transition: 0.3s;
}
.btn_toggle_container1::before{
    content: '';
    position: absolute;
    display: block;
    width: 140px;
    background-color: #5479F5;
    inset: 12px 14px;
    border-radius: 50px;
    padding: 14px 10px;
    transition: 0.3s;
}

.consulting_ex_txt p{
    font-size: 13px;
    text-align: left;
    line-height: 24px;
}
.consulting_ex_txt span{
    text-align: left;
}


.modal_content_container{
    padding: 40px;
}

.modal_summary_tab{
    width: max-content;
    padding: 4px 15px;
    background: #EEEEF0;
    border-radius: 40px;
}

.alignRight::before{

    left:172px;
    width: 150px;
}

.testimonials_image_slider img{

    height: 300px;
    width: auto;
}

.testimonials_image_slider{

    margin: 10px;
}

.variable-width-consulting{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.consulting_flliper:hover{

    height: 550px;

}


@keyframes company_logo_slide {

    form{

        transform: translateX(0);
    }

    to{
        transform: translateX(-100%);
    }

}


@keyframes reverse_card {
    form{

        transform: translateX(-100%);
    }

    to{
        transform: translateX(0%);
    }
}

.bg-block-trs{

    background-color:#F6F6F6;
    padding: 80px 0px;
    margin-top: 80px;
}

.link_indc_tg{
    position: relative;
}
.link_indc_tg::before{
    content: '';
    display: block;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: var(--text-w-primary);
    border-radius: 10px;
    transition: 0.3s;
    position: absolute;
}
.link_indc_tg:hover::before{
    width: 100%;
}
.link_indc_tg:hover{
    color: var(--text-w-primary);
}



.footer_contactus{
    color: #fff;
    text-decoration: none;
}





.mn_scroller{
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}


.tslick_nextbtn_slider{
    
    background: transparent;
    border: none;
    transform: translateX(0%);


}


.tslick_prevbtn_slider{
  
    background: transparent;
    border: none;
    transform: rotate(180deg) translateX(0%);

   
}
.slider_button_container{
    display: flex;
    justify-content: end;
}

.w-155{
    width: 155px;
}



@media screen and (max-width: 768px){


    .mobile_menuicon{
        display: block;
    }

    .link_block{
        position: absolute;
        width: 200px;
        background: #fff;
        height: 250px;
        top: 80px;
        right: 0;
        z-index: 3;
        padding: 11px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
        box-shadow: 0px 1px 4px 0px #c9c9c98f;

        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -o-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);

        transition: 0.3s;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        -moz-transition: 0.3s;

        -ms-transform-origin: top;
        -webkit-transform-origin: top;
        -moz-transform-origin: top;
        -o-transform-origin: top;
        transform-origin: top;

        opacity: 0;
  
       
    }

    .open_mobileMenu{

        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        opacity: 1;
    }

    .link_container {
        gap: 1rem;
        align-items: center;
        flex-direction: column;
    }

    .footer_container{
        flex-wrap: wrap;
        gap: 2rem;
    }
    .footer_bottom_link_container{
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer_logo_container img{
        width: 300px;
    }
   .variable-width{
    padding-left: 20px;
   }
   .index--wrapper{
    margin-top: 20px;
   }


}

@media screen and (max-width: 576px){
    
    .flipper{
        width: 325px;
        height: 450px;
    }
    .flipper_layer2{

        padding: 15px 18px;
    }
}




