/*zero*/
*{
    padding: 0;
    margin: 0;
    border: 0;
}
*,*:before,*:after{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

body{
    font-family: "Manrope", sans-serif;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}

body.lock{
    overflow: hidden;
}
body{
    background: #161C24;
}
/*--------------------*/
.container{
    width: 100%;
    max-width: 1662px;
    margin: 0 auto;
    padding: 0 15px;
}
h1,h2,h3,h4{
    font-family: "Manrope", sans-serif;
}
p{
    font-family: "Manrope", sans-serif;
    font-weight: 400;
}
.btn{
    padding: 6px 16px;
    border-radius: 8px;
    border: 1px solid #22B8CF;
    background: #22B8CF;
 
    color: #FFF;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height:  171.429% ;
    display: inline-block;
    transition: 0.5s;
}
.btn:hover{
    background-color: #fff;
    color: #22B8CF;
}


/*--- header ---*/
#header{
    position: absolute;
    top: 0;
    width: 100%;
    background: #161C24;
}
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding-top: 28px;
    padding-bottom: 28px;
}
.header-burger{
    display: none;
}
.menu-item-mob{
    display: none;
}
.menu{
    display: flex;
}
.menu-item{
    margin-left: 48px;
    color: #919EAB;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
    transition: 0.5s;
    position: relative;
}
.menu-item:first-child{
    margin: 0px;
}
.menu-item span{
    display: none;
    position: absolute;
    left: -14px;
    height: 6px;
    line-height: 0;
    top: 50%;
    transform: translateY(-50%);
}
.logo img{
    width: 100%;
    max-width: 250px;
}

.logopc{
    display: block;
}
.logomob{
    display: none;
}
.menu-item:hover{
    color: #fff;
}
.menu-item:hover span{
    display: block;
}
@media(max-width:1550px){
    .header-wrap{
        padding-left:15px;
        padding-right:15px;
    }
}
@media(max-width:1150px){
    .header-wrap {
        padding-left: 15px;
        padding-right: 15px;
    }
    .menu-item{
        margin-left: 20px;
    }
}
@media(max-width:900px){
    #header {
        background: transparent;
    }
    .logopc{
        display: none;
    }
    .logomob{
        display: block;
    }
    .header-burger{
        display: block;
        position: relative;
        z-index: 99;
    }
    .header .logo {
        position: relative;
        z-index: 99;
    }
    .close{
        display: none;
    }
    .header-mail{
        display: none;
    }
    .menu{
        position: fixed;
        width: 100%;
        height: auto;
        padding: 60px 0px;
        flex-direction: column;
        top: 0;
        left: 0;
        align-items: center;
        justify-content: center;
        transform: translate(-200vw, 0px);
        transition: 0.4s;
        background: #ffff;
        z-index: 2;
        height: 100vh;
    }
    .menu-item-mob{
        display: block;
    }
    .menu-active{
        transform: translate(0vw, 0px);
    }
    .menu-item{
        margin: 0px;
        margin-bottom: 38px;
    }
    .menu-item:first-child{
        margin: 0px;
        margin-bottom: 38px;
    }
    .menu-item:last-child{
        margin-bottom: 0px;
    	margin-top: 14px;
    }
    .header-wrap{
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .menu-wrap{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .menu-item-mob.btn-v1{
        color:#fff;
    }
}



/*--- hero ---*/
.hero{
    background: url(./img/hero_n.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    min-height: 692px;
}
.hero-inner{
    padding-top: 252px;
    padding-bottom: 144px;  
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-inner h1{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    margin-bottom: 24px;
    color: #FFF;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
}

.hero-inner p{
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    margin-bottom: 80px;
    color: #FFF;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 175%;
    opacity: 0.72;
}
.form-sub{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 8px;
    background: rgba(145, 158, 171, 0.20);
    backdrop-filter: blur(4px);
    padding: 8px;
    position: relative;
    height: 64px;
}
.form-sub .btn{
    position: absolute;
    right: 8px;
    top: 8px;
    padding: 11px 22px;
}
.form-sub svg{
    position: absolute;
    top: 20px;
    left: 22px;
}
.form-input-input{
    width: 50%;
    margin-left: 46px;
    height: 26px;
    margin-top: 11px;
    color: #919EAB;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 0px;
    text-align: left;
    background: transparent;
}
.form-sub input::placeholder{
    color: #919EAB;
}


/*--- services ---*/
.services{
    padding: 120px 0;
    background: #212B36;
}

.services h2{
    margin-bottom: 25px;
    color: #FFF;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 133.333%;
}
.services .container > p{
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    margin-bottom: 40px;
    color: #919EAB;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
}
.services .wrap{
    display: flex;
    flex-wrap: wrap;
    gap:32px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.services .wrap .item{ 
    width: calc(33% - 18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    background: #161C24;
    padding: 40px 32px;
    box-shadow: -8px 8px 24px -4px rgba(0, 0, 0, 0.10);
}
.services .wrap .item img{
    margin-bottom: 40px;
}
.services .wrap .item  h4{
    color: #FFF;
    text-align: center;
    font-family: Barlow;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 155.556%;
    margin-bottom: 8px;
}
.services .wrap .item p{
    color: #475467;
    color: #919EAB;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 185.714%;
}


/*--- image with text ---*/
#about{
    background: #212B36;
}
.image-with-text{
    padding: 120px 0;
}
.image-with-text .wrap{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.image-with-text .wrap img{
    width: 100%;
    max-width: 666px;
    object-fit: cover;
    border-radius: 12px;
}
.image-with-text .wrap .text{
    width: 100%;
    max-width: 802px;
}

.image-with-text .wrap h4{
    margin-bottom: 24px;
    color: #FFF;
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 133.333%;
}
.image-with-text .wrap h5{
    margin-bottom: 24px;
    color: #22B8CF;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 175%;
}
.image-with-text .wrap p{
    margin-bottom: 40px;
    color: #919EAB;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
}
.image-with-text .wrap .btn-next{
   display: inline-block;
   transition: 0.5s;
}
.image-with-text .wrap .btn-next .wrap{
    padding: 11px 22px;
    border-radius: 8px;
     border: 1px solid rgba(145, 158, 171, 0.32);
     display: flex;
     align-items: center;
     gap: 8px;
     color: #FFF;
     font-family: "Manrope", sans-serif;
     font-size: 15px;
     font-style: normal;
     font-weight: 600;
     line-height: 173.333%;
     transition: 0.5s;
 }
 .image-with-text .wrap .btn-next .wrap svg path{
    transition: 0.5s;
 }
 .image-with-text .wrap .btn-next:hover .wrap{
    border: 1px solid #22B8CF;
    color: #22B8CF;
 }
 .image-with-text .wrap .btn-next:hover .wrap svg path{
    fill:#22B8CF;
 }

/*--- achievements ---*/
.testimonials{
    padding: 120px 0;
    background: rgba(145, 158, 171, 0.12);
}
.testimonials h2{
    margin-bottom: 80px;
    color: #FFF;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 133.333%;
}
.testimonials .item .wrap{
    width: 100%;
    max-width: 936px;
    margin: 0 auto;
}
.testimonials .item .text{
    display: flex;
    gap: 63px;
    align-items: flex-start;
}
.testimonials .item .text p{
    color: #FFF;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 36px;
    width: 100%;
    max-width: 651px;
}
.testimonials .item .text .image{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonials .item .text .image img{
    margin-bottom: 20px;
    border-radius: 50%;
}
.testimonials .item .text .image h4{
    color: #FFF;
    font-family: Barlow;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}
.testimonials .item .text .image p{
    color: #919EAB;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.testimonials .inner{
    padding-bottom: 85px;
}
.testimonials .swiper-pagination{
    bottom: 0px;
}
.swiper-pagination-bullet{
    background: #22B8CF;
}
.swiper-button-next:after, .swiper-button-prev:after{
    display: none;
}
.swiper-button-next, .swiper-button-prev{
    top:75px;
}


/*--- contact ---*/
.contact-form{
    padding: 120px 0; 
    background: url(./img/BG.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-form .container > h2{
    margin-bottom: 64px;
    color: #22B8CF;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
}
.contact-form .links{
    width: 100%;
    max-width: 666px;
    margin: 0 auto;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.contact-form .links .link{
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-form .links .link a{
    color: #FFF;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    transition: 0.5s;
}
.contact-form .links .link a:hover{
    color: #22B8CF;
}

.contact-form .form{
    width: 100%;
    max-width: 666px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-form .form .form-inputs{
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-form .form .form-inputs .input-area{
    width: 100%;
}
.contact-form .form .form-inputs .input-area input, .contact-form .form .form-inputs .input-area textarea{
    padding: 14px 12px;
    width: 100%;
    border-radius: 8px;
    background: rgba(145, 158, 171, 0.20);
    color: #919EAB;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.contact-form .form .form-inputs .input-area textarea{
    min-height: 140px;
    resize: none;
}
.contact-form .form .form-inputs .input-area input::placeholder, .contact-form .form .form-inputs .input-area textarea::placeholder{
    color: #919EAB;
}
.contact-form .form .btn{
    padding: 11px 33px;
}


/*--- footer ---*/
footer{
    padding: 80px 0 32px 0;
}
footer .top{
    padding-bottom: 54px;
    border-bottom: 1px solid var(--Gray-600, #475467);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}
footer .top .wrap{
    display: flex;
    gap: 122px;
    align-items: center;
}
footer .top .wrap a{
    color: #919EAB;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 175%;
    transition: 0.5s;
}
footer .top .wrap a:hover{
    color: #22B8CF;
}

footer .bottom{
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .bottom p{
    color: #919EAB;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 184.615%;
}
footer .bottom .wrap{
    display: flex;
    align-items: center;
    gap: 24px;
}
footer .bottom .wrap a{
    color: #919EAB;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 184.615%;
    transition: 0.5s;
}
footer .top .wrap a:hover, footer .bottom .wrap a:hover{
    color: #22B8CF;
}
@media(max-width:1250px){
    .image-with-text .wrap{
        flex-direction: column;
        gap: 48px;
    }
    .image-with-text .wrap img{
        width: 100%;
    }
    .reversed.image-with-text .wrap{
        flex-direction: column-reverse;
    }
}
@media(max-width:1100px){
    .services .wrap .item{
        width: calc(50% - 18px);
    }
}
@media(max-width:900px){
    .logomob{
        max-width: 210px !important;
    }
    .menu{
        background: url(./img/hero_n-mob-bg.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .menu-wrap{
        width: 100%;
        padding: 0 16px;
    }
    .menu-wrap a{
        margin-bottom: 38px;
        color: #fff;
        font-size: 16px;
        line-height:  150%;
    }
    .menu-item:last-child{
        width: 100%;
        margin-top: 2px;
        text-align: center;
        color:#fff;
    }
    .header-wrap{
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .hero{
        margin: 0px;
        background: url(./img/hero_n-mob-bg.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: unset;
    }
    .hero-inner{
        background: transparent;
        padding-top: 120px;
        padding-bottom: 95px;
    }
    .hero-inner h1{
        margin-bottom: 24px;
        font-size: 40px;
        line-height: 122.222%;
    }
    .hero-inner p{
        margin-bottom: 40px;
        font-size: 16px;
        line-height: 28px;
    }
    .hero-inner .btn{
        width: 100%;
        text-align: center;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
    }
    .form-sub{
        height: auto;
        padding: 0px;
        background: transparent;
        backdrop-filter: none;
    }
    .form-sub .form-inputs{
        padding: 2px 14px;
        border-radius: 8px;
        background: rgba(145, 158, 171, 0.20);
        backdrop-filter: blur(4px);
        margin-bottom: 22px;
        height: 56px;
    }
    .form-sub .form-input-input{
        margin-left: 46px;
        width: 80%;
        color: #F4F6F8;
        font-family: "Manrope", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        height: 30px;
    }

    .services{
        padding: 80px 0 64px 0;
    }
    .services h2{
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 24px;
    }
    .services .container > p{
        font-size: 16px;
        margin-bottom: 64px;
        line-height: 155.556%;
    }
    .services .wrap{
        padding: 0px;
        gap: 30px;
    }
    .services .wrap .item{
        width: 100%;
    }
    .services .wrap .item h4{
        font-size: 17px;
    }
    .services .wrap .item p{
        font-weight: 700;
    }



    .image-with-text{
        padding:64px 0;
    }
    .image-with-text .wrap{
        gap: 64px;
    }
    .image-with-text .wrap h4{
        margin-bottom: 24px;
        font-size: 32px;
        font-weight: 700;
        line-height: 42px; 
        text-align: center;
    }
    .image-with-text .wrap p{
        margin-bottom: 32px;
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }
    .image-with-text .wrap .btn{
        width: 100%;
        text-align: center;
    }
    .image-with-text .wrap .btn-next{
        width: 100%;
    }
    .image-with-text .wrap .btn-next .wrap{
        flex-direction: row;
        justify-content: center;
    }
    .image-with-text .wrap h5{
        text-align: center;
    }
    #why.image-with-text .btn-next .wrap{
        flex-direction: row !important;
    }


    .testimonials{
        padding: 64px 0;
    }
    .testimonials h2{
        margin-bottom: 64px;
        font-size: 32px;
        line-height: 42px; /* 126.667% */
    }
    .testimonials .inner{
        padding-bottom: 69px;
    }
    .swiper-button-next, .swiper-button-prev{
        display: none;
    }
    .testimonials .item .text{
        flex-direction: column;
        align-items: center;
    }
    .testimonials .item .text p{
        text-align: center;
        font-size: 16px;
        line-height: 28px; 
    }
    .testimonials .item .text{
        gap: 40px;
    }




    .contact-form{
        padding: 80px 0;
    }
    .contact-form .container >h2{
        font-size: 40px;
        margin-bottom: 24px;
        margin-left: -16px;
        margin-right: -16px;
    }
    .contact-form .form .btn{
        width: 100%;
    }
    .contact-form .links{
        margin-bottom: 40px;
    }
    .map.link{
        margin-left: 10px;
    }
    .map.link svg{
        width: 24px;
    }
    .map.link a{
        width: calc(100% - 24px);
    }
    .contact-form .links{
        column-gap: 20px;
        justify-content: space-between;
    }
    .contact-form .links .link a{
        font-size: 16px;
    }




    footer{
        padding: 64px 0 24px 0;
    }
    footer .top{
        padding-bottom: 24px;
        align-items: center;
        border:none;
        gap: 24px;
    }
    footer .top img {
        max-width: 262px;
    }
    footer .top .wrap{
        flex-wrap: wrap;
        row-gap: 24px;
       justify-content: center;
    }
    footer .top .wrap a{
        width: 100%;
        text-align: center;
        color: #464141;
    }
    footer .bottom{
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 0px;
    }
}

@media(max-width:500px){
    .image-with-text .wrap img{
        height: 100%;
        max-height: 330px;
        object-fit: cover;
        border-radius: 24px;
    }
}
.element-animation {
    opacity: 0;
    transform: translateY(50px);
}

.element-animation.element-show {
    opacity: 1;
    transition: all 0.5s;
    transform: translateY(0%);
}




.inners-pages{
    margin-top: 120px;
}
.inners-pages h1{
    font-family: "Manrope", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    color: #fff;
    margin-bottom: 20px;
}
.inners-pages p{
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
}
.inners-pages b{
    color: #fff;
    font-size: 16px;
}
.inners-pages h3{
    margin-bottom: 20px;
    color: #fff;
    font-size: 20px;
}
@media(max-width:900px){
    .inner-body .menu{
        top: 60px;
        height: calc(100vh - 60px);
    }
    .inners-pages{
        margin-top: 80px;
    }
    .inners-pages h1{
        font-size: 34px;
    }
    .inners-pages h3{
        font-size: 18px;
    }
}






  
  .swift-up-text span {
    display: inline-block;
  }
  
  .swift-up-text span i {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.7s ease-in-out forwards;
    font-style: normal;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  .services .wrap .item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }
  
  .services .wrap .item.active {
    opacity: 1;
    transform: translateY(0);
  }
   



  
  .image-with-text .wrap img {
    opacity: 0;
    transform: translateY(00px);
 
  }

  .image-with-text .wrap img.active {

    animation: fadeInUps 1.7s ease-in-out forwards;
  }
  @keyframes fadeInUps {
    0% {
      opacity: 1;
      transform: scale(1);
    }
  
    50%{
        opacity: 1;
        transform: scale(1.1);
    }
   
    100%{
        opacity: 1;
        transform: scale(1);
    }
  }
.image-with-text  .inner-wrap{
    overflow: hidden;
}





@media(min-width:990px){
    .services .wrap .item{
        position: relative;
    }


    .services .wrap .item:after,
    .services .wrap .item:before {
      content: "";
      display: block;
      position: absolute;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      border: 4px solid transparent;
      border-radius: 8px;
      width: 0;
      height: 0;
    }
    
    .services .wrap .item:after {
      top: 0;
      left: 0;
      -webkit-transition: border-color 0s ease-in 0.8s, width 0.2s ease-in 0.6s,
        height 0.2s ease-in 0.4s;
      -o-transition: border-color 0s ease-in 0.8s, width 0.2s ease-in 0.6s,
        height 0.2s ease-in 0.4s;
      transition: border-color 0s ease-in 0.8s, width 0.2s ease-in 0.6s,
        height 0.2s ease-in 0.4s;
    }
    
    .services .wrap .item:before {
      bottom: 0;
      right: 0;
      -webkit-transition: border-color 0s ease-in 0.4s, width 0.2s ease-in 0.2s,
        height 0.2s ease-in;
      -o-transition: border-color 0s ease-in 0.4s, width 0.2s ease-in 0.2s,
        height 0.2s ease-in;
      transition: border-color 0s ease-in 0.4s, width 0.2s ease-in 0.2s,
        height 0.2s ease-in;
    }
    
    .services .wrap .item:hover:after,
    .services .wrap .item:hover:before {
      width: 100%;
      height: 100%;
    }
    
    .services .wrap .item:hover:after {
      border-top-color: #22B8CF;
      border-right-color: #22B8CF;
      -webkit-transition: width 0.2s ease-out, height 0.2s ease-out 0.2s;
      -o-transition: width 0.2s ease-out, height 0.2s ease-out 0.2s;
      transition: width 0.2s ease-out, height 0.2s ease-out 0.2s;
    }
    
    .services .wrap .item:hover:before {
      border-bottom-color: #22B8CF;
      border-left-color: #22B8CF;
      -webkit-transition: border-color 0s ease-out 0.4s, width 0.2s ease-out 0.4s,
        height 0.2s ease-out 0.6s;
      -o-transition: border-color 0s ease-out 0.4s, width 0.2s ease-out 0.4s,
        height 0.2s ease-out 0.6s;
      transition: border-color 0s ease-out 0.4s, width 0.2s ease-out 0.4s,
        height 0.2s ease-out 0.6s;
    }

}


/*--- popup ---*/
.blocked{
    overflow: hidden;
}
.services .wrap .item{
    cursor: pointer;
}
.popup-item-text{
    display: none !important;
    opacity: 0 !important;
}
.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 28, 36, 0.8);
    z-index: 22;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    padding: 0 20px;
}
.popup.active{
    display: flex;
}
.popup-inner{
    width: 100%;
    max-width: 800px;
}
.popup-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 16px;
    background: #212B36;
    padding: 40px 32px;
    box-shadow: -8px 8px 24px -4px rgba(0, 0, 0, 0.10);
    position: relative;
}
.popup-wrapper svg{
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.popup-wrapper h3{
    color: #FFF;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 155.556%;
    margin-bottom: 8px;
}
.popup-wrapper p{
    color: #919EAB;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 185.714%;
    margin-bottom: 15px;
}
.popup-wrapper p:last-child{
    margin-bottom: 0px;
}
@media(max-width:600px){
    .popup{
        overflow: scroll;
        padding: 30px 20px;
        align-items: flex-start;
    }
    .popup-wrapper svg{
        right: 15px;
        top: 15px;
    }
}


/*--- popup ---*/

.modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 28, 36, 0.8);
    z-index: 22;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    padding: 0 20px;
}
.modal.active{
    display: flex;
}
.modal-inner{
    width: 100%;
    max-width: 600px;
    background: transparent;
}
.modal-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 32px;
    background: #161C24;
    padding: 60px 32px 40px;
    box-shadow: -8px 8px 24px -4px rgba(0, 0, 0, 0.10);
    position: relative;
}
.modal-wrapper .close-modal{
    position: absolute;
    right: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}
.modal-wrapper h2{
    color: #22B8CF;
    text-align: center;
    font-family: 'Manrope';
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25em;
    margin-bottom: 32px;
}

.modal .links {
    gap: 12px;
    margin-bottom: 32px;
}
.modal .links .link a {
    font-size: 12px;
    line-height: 16px;
}
.modal .form .form-inputs {
    gap: 10px;
    margin-bottom: 32px;
}

.overflow-hidden {
    overflow: hidden;
}

@media(max-width:900px){
    .modal{
        overflow: scroll;
        padding: 30px 20px;
        align-items: flex-start;
    }
    .modal-wrapper .close-modal {
        right: 15px;
        top: 15px;
        width: 24px;
        height: 24px;
    }
    .modal-inner {
        padding: 0;
    }
    .modal-wrapper {
        border-radius: 20px;
        padding: 60px 16px 32px;
        border: 1px solid #22B8CF;
    }
}

@media(max-width:600px){
    .modal{
        overflow: scroll;
        padding: 30px 20px;
        align-items: flex-start;
    }
}
