body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    background: #F9F9F9;
}
body *{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}
ul{
    list-style: none;
}
.dn{
    display: none;
}
.df{
    display: flex;
}
.f-column{
    flex-direction: column;
}
.f-wrap{
    flex-wrap: wrap;
}
.a-center{
    align-items: center;
}
.j-center{
    justify-content: center;
}
.j-spc-btw{
    justify-content: space-between;
}
.a-end{
    align-items: flex-end;
}
.pr{
    position: relative;
}
.pa{
    position: absolute;
}
.container{
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    height: 100%;
}

header{
    height: 74px;
    background: rgba(27, 27, 27, 0.9);
    backdrop-filter: blur(30px);
    position: absolute;
    width: 100%;
    z-index: 1;
}
.navbar{
    height: 100%;
}
.menu{
    gap: 50px;
    height: 100%;
}
.menu__item{
    height: 100%;
}
.menu__link{
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    height: 100%;
    display: flex
;
    align-items: center;
}
.menu > .has-sub > .menu__link{
    padding-right: 16px;
    background: url('../img/arrow-down.svg') no-repeat right center;
}
.menu > .has-sub > .menu__link:hover + .menu__sub{
    display: flex;
}
.menu > .has-sub:hover > .menu__sub{
  display: flex;
}
.menu__sub{
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    width: 162px;
    top: 65px;
    z-index: 999;
    position: absolute;
    background: #fff;
    min-height: 249px;
    flex-direction: column;
    gap: 5px;
}
.menu__sub .menu__link{
    color: #1B1B1B;
    font-weight: 400;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
    border-left: 3px solid #fff;
    padding: 10px  20px;
}
.menu > .has-sub > .menu__sub > .menu__item > .menu__link:hover{
    background: #F6F6F6;
    border-left: 3px solid #1A5AFF;
    font-weight: 500;
    color: #1B1B1B;

}
.menu > .has-sub > .menu__sub > .has-sub:hover .menu__sub{
    display: flex;
    position: absolute;
    width: 291px;
    height: 249px;
    left: 162px;
    top: 0;
    gap: 15px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
.menu > .has-sub > .menu__sub .menu__sub  .menu__link{
    border: 0;
    color: #565656;
    font-weight: 400;
    font-size: 12px;
    padding: 0 20px;
}

.menu > .has-sub > .menu__sub > .has-sub:hover .menu__sub  .menu__link:hover{
    border: 0;
    color: #1B1B1B;
    font-weight: 500;
}
.navbar__right{
    gap: 10px;
}
.header__link{
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.1)
}
.header__link--whatsapp{
    background: url('../img/whatsapp.svg')  rgba(255, 255, 255, 0.13) no-repeat center;
}
.header__link--tg{
    background: url('../img/tg.svg')  rgba(255, 255, 255, 0.13) no-repeat center;
}
.header__link--vk{
    background: url('../img/vk.svg')  rgba(255, 255, 255, 0.13) no-repeat center;
}
.header__link--phone{
    width: 44px;
    height: 44px;
    background: url('../img/phone.svg') #1A5AFF no-repeat center;

}
.banner{
    height: 1024px;
    background: url('../img/banner.png') no-repeat center;
    background-size: cover;
    position: relative;
}
.banner:after{
    content: '';
    height: 469px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, #111111 0%, rgba(17, 17, 17, 0) 100%);
}
.banner__content{
    justify-content: flex-end;
    height: 100%;
    position: relative;
    z-index: 1;
    padding-bottom: 130px;
}
.banner__title{
    font-weight: 800;
    max-width: 802px;
    line-height: 1.1;
    font-size: 56px;
    color: #fff;
    margin-bottom: 30px;
}
.banner__text{
    max-width: 1005px;
    margin-bottom: 50px;
    font-weight: 400;
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
}
.section__title{
    color: #1B1B1B;
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
}
.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    height: 61px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    border-radius: 1000px;
    padding-left: 38px;
    padding-right: 72px;
    position: relative;
}
.btn__white{
    background: #fff;
    color: #000000;

}
.btn__blue{
    background: #1A5AFF;
    color: #fff;
}
.btn__blue:after{
    content: '';
    width: 45px;
    height: 45px;
    background: url('../img/arrow-blue-white.svg') no-repeat;
    position: absolute;
    right: 8px;
    top: 8px;
}
.btn__white:after{
    content: '';
    width: 45px;
    height: 45px;
    background: url('../img/arrow-blue.svg') no-repeat;
    position: absolute;
    right: 8px;
    top: 8px;
}
.btn__white--transparent{
    font-weight: 500;
    color: #fff;
    border: 2px solid #FFFFFF;
    background: rgba(255, 255, 255, 0.1);

}
.btn__white--transparent:after{
    content: '';
    width: 45px;
    height: 45px;
    background: url('../img/arrow-white.svg') no-repeat;
    position: absolute;
    right: 8px;
    top: 5px;
}
.banner__actions{
    gap: 20px;
}
.why-us{
    padding-top: 100px;
    padding-bottom: 70px;
    background: #fff;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}
.why-us__content{
    gap: 68px;
}
.why-us__left{
    max-width: 379px;
    width: 100%;
}
.why-us .section__title{
    display: flex;
    flex-direction: column;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: left;
}
.why-us .section__title span{
    background: #1A5AFF;
    border-radius: 30px;
    height: 55px;
    display: flex;
    padding: 0 11px;
    width: fit-content;
    color: #fff;
    line-height: 1;
}
.section__text{
    color: #616161;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 40px;
}
.why-us .btn__blue{
    max-width: 253px;
    width: 100%;
}
.why-us__right{
    gap: 18px;
}
.why-us__item{
    position: relative;
}
.why-us__number{
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 26px;
    top: 30px;
    left: 30px;
}
.why-us__title{
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    max-width: 219px;
    width: 100%;
    bottom: 30px;
    left: 30px;
    position: absolute;
    color: #fff;
}

.services{
    padding-top: 80px;
    padding-bottom: 70px;
}
.service__item{
    border-radius: 10px;
    padding: 40px 17px ;
    background: #FFFFFF;
}
.service__list{
    gap: 20px;
}
.service__item{
    width: calc(100%/3 - 14px);

    height: 100%;
    min-height: 363px;
}
.service__item--large{
    width: calc(100%/2 - 10px);
    min-height: 395px;
}
.service__type{
    height: 31px;
    padding-left: 13px;
    padding-right: 11px;
    background: #1A5AFF;
    border-radius: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 17px;
    width: fit-content;
}
.service__text ul{
    padding-left: 28px;
}
.service__text ul li{
    margin-bottom: 5px;
    color: #29282A;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    max-width: 290px;
    position: relative;
}
.service__text ul li:before{
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #1A5AFF;
    position: absolute;
    left: -13px;
    top: 5px;
}
.service__item .btn{
    margin-top: auto;
    width: 194px;
    border: 1px solid #CECECE;
    height: 53px;
}
.service__item .btn:after{
    width: 35px;
    height: 35px;
    background-size: 100%;
}
.service__item:last-child{
    background: #1A5AFF;
    border-radius: 30px;
    padding: 40px 30px;
}
.service__item:last-child .btn{
    width: 263px;
}
.service__title{
    max-width: 239px;
    width: 100%;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    line-height: 1.3;
}
.service__text p{
    max-width: 346px;
    width: 100%;
    color: #FFFFFFB2;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    font-family: 'Roboto', sans-serif;
}
.service__type--black{
    background: #1B1B1B;
}
.service__item--large:first-child{
    background: url('../img/s2.svg') #fff no-repeat bottom right;
}
.service__item--large:nth-child(2){
    background: url('../img/s1.png') #fff no-repeat bottom right;
}
.portfolio .section__title{
    margin-bottom: 15px;
}
.portfolio .section__text{
    text-align: center;
    color: #1B1B1B;
    margin-bottom: 50px;
}
.portfolio__title{
    text-align: center;
    margin-bottom: 30px;
    color: #1B1B1B;
    font-weight: 800;
    font-size: 28px;

}
.portfolio__title span{
    width: fit-content;
    color: #fff;
    padding-left: 6px;
    padding-right: 6px;
    background: #1A5AFF;
    border-radius: 30px;
    height: 32px;
}
.portfolio__list{
    gap: 20px;

}
.portfolio__item{
    width: calc(100%/2 - 10px);
    position: relative;
}
.portfolio__item--content{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: none;
    top: 0;
    left: 0;
}
.portfolio__item img{
    border-radius: 30px;
    object-fit: cover;
    height: 100%;
}
.portfolio__item:hover .portfolio__item--content{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    cursor: pointer;
}
.portfolio__item h3{
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.portfolio__item p{
    max-width: 491px;
    width: 100%;
    color: #D9D9D9;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
.btn__play{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 112px;
    height: 112px;
    background: url('../img/play.svg') no-repeat;
    transform: translate(-50%, -50%);
    padding: 0;
}
.portfolio__list{
    margin-bottom: 40px;
}
.portfolio__content > .btn{
    width: 237px;
    height: 53px;
    margin: 0 auto;
    border: 1px solid #CECECE;
    padding-right: 62px;
    white-space: nowrap;
}
.portfolio__content > .btn__white:after{
    width: 35px;
    height: 35px;
    background-size: 100%;
}
.portfolio__content{
    margin-bottom: 60px;
}
.portfolio__slider{
    width: 100%;
}
.portfolio__slider .portfolio__item:hover .portfolio__item--content{
    justify-content: flex-start;
}
.portfolio__slider .portfolio__item h3{
    margin-top: auto;
}
.portfolio__tag{
    height: 31px;
    display: flex;
    align-items: center;
    background: #FFFFFFCC;
    border-radius: 30px;
    width: fit-content;
    padding-right: 15px;
    color: #1B1B1B;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 28px;
}
.portfolio__tag span{
    width: 46px;
    height: 31px;
    border-radius: 30px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/tag.svg') #1B1B1B no-repeat center;
    margin-right: 5px;
}
.portfolio__slider .portfolio__item .btn__play{
    background: url('../img/play-vr.svg') no-repeat;
    width: 21px;
    background-size: 100% 100%;
    height: 24px;
    border-radius: 0;
}
.portfolio__content:last-child .btn__white {
    width: 287px;
}
.about{
    background: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}
.about__content{
    gap: 30px;
}
.about__left{
    max-width: 650px;
    width: 100%;
}
.about__right{
    max-width: calc(100% - 680px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about__right .section__title{
    text-align: left;
    margin-bottom: 10px;
}

.about__right p{
    margin-bottom: 10px;
    color: #454545;
    line-height: 1.3;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}
.about__right span{
    font-weight: 800;
    color: #fff;
    padding-left: 6px;
    padding-right: 6px;
    background: #1A5AFF;
    border-radius: 30px;
}
.about__text{
    margin-bottom: 40px;
}
.about__right .btn{
    width: 194px;
    height: 53px;
    border: 1px solid #CECECE;

}
.about__right .btn:after{
    width: 35px;
    height: 35px;
    background-size: 100%;
}
.steps{
    padding-top: 70px;
    padding-bottom: 70px;
}
.step__list{
    gap: 20px;
}
.step__item{
    width: calc(100%/3 - 14px);
    background: #fff;
    min-height: 275px;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.step__icon{
    width: 40px;
    height: 40px;
    background: url('../img/icon2.svg') no-repeat;
    margin-bottom: 20px;
}
.step__item:nth-child(2) .step__icon{
    background: url('../img/icon4.svg') no-repeat;
}
.step__item:nth-child(3) .step__icon{
    background: url('../img/icon3.svg') no-repeat;
}
.step__item:nth-child(4) .step__icon{
    background: url('../img/icon5.svg') no-repeat;
}
.step__item:nth-child(5) .step__icon{
    background: url('../img/icon6.svg') no-repeat;
}
.step__title{
    height: 31px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 30px;
    width: fit-content;
    background: #1A5AFF;
    margin-bottom: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}
.step__text{
    font-family: 'Roboto', sans-serif;
    color: #454545;
    font-weight: 400;
    font-size: 16px;

}
.step__time{
    margin-top: auto;
    padding-left: 25px;
    background: url('../img/icon1.svg') no-repeat left center;
    color: #616161;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    
}
.step__item:last-child{
    background: #1A5AFF;

}
.step__item:last-child .step__title{
    background: transparent;
    font-size: 28px;
    padding: 0;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    height: auto;
}
.step__item:last-child .step__text{
    color: #fff;
    line-height: 1.4;
    font-weight: 400;

}
.step__item:last-child .btn{
    margin-top: auto;
    width: 263px;
    height: 53px;
}
.step__item:last-child .btn:after{
    width: 35px;
    height: 35px;
    background-size: 100%   ;
}
.review{
    padding-top: 80px;
    padding-bottom: 70px;
}
.review__list{
    gap: 20px;
}
.review__item{
    width: calc(100%/3 - 14px);
    background: #fff;
    box-shadow: 0px 0px 20px 0px #0000000D;
    border-radius: 30px;
    padding: 30px;
}
.review__user{
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}
.review__user h3{
    color: #1B1B1B;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 3px;
}
.review__user p{
    color: #616161;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}
.review__img{
    width: 80px;
    height: 80px;
    border-radius: 100%;
}
.review__text{
    color: #454545;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
    margin-bottom: 58px;
}
.review__item .btn__white{
    width: fit-content;
    padding: 0 21px 0 0 ;
    height: 28px;
    font-weight: 500;
    font-size: 16px;
    color: #1B1B1B;
    background: url('../img/arrow-blue-nobg.svg') no-repeat right center;

}
.review__item .btn__white:after{
    display: none;
}
.partners{
    padding-bottom: 83px;
}
.partner__item{
    display: flex;
    align-items: center;
    height: 99px;
}
.contact{
    padding-top: 67px;
    padding-bottom: 120px;
}
.contact__content{
    box-shadow: 0px 0px 20px 0px #0000000D;
    background: #fff;
    border-radius: 30px;
    gap: 86px;
}
.contact__left{
    max-width: 588px;
    width: 100%;
    position: relative;
}
.contact__left img{
    position: absolute;
    bottom: 0;
}
.contact__right{
    max-width: 674px;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 90px;
}
.contact__right .section__title{
    max-width: 460px;
    width: 100%;
    text-align: left;
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 20px;
    color: #1B1B1B;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.contact__right .section__title span{
    color: #fff;
    border-radius: 30px;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    background: #1A5AFF;
    padding-left: 6px;
    padding-right: 6px;
    height: 48px;
}
.contact__right .section__text{
    color: #454545;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 30px;
    max-width: 554px;
}
.contact__right .section__text strong{
    font-weight: 700;
}
.form__input{
    border: 1px solid #CECECE;
    border-radius: 100px;
    height: 50px;
    width: 400px;
    padding: 15px 25px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    outline: none;
    margin-bottom: 15px;
}
.form .btn__blue{
    width: 230px;
    height: 53px;
    border: 1px solid #CECECE;

}
.form .btn__blue:after{
    width: 35px;
    height: 35px;
    background-size: 100%;
}
.form p{
    width: 227px;
    color: #95979A;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}
.form p a{
    font-weight: 500;
    text-decoration: underline;
    color: #95979A;
}
.form__row{
    gap: 25px;
}
.form__row:last-child{
    margin-top: 15px;
}
footer{
    background: #1B1B1B;
    padding-top: 49px;
    padding-bottom: 20px;
}
.footer__col:first-child{
    max-width: 231px;
    width: 100%;
    margin-right: 77px;
}
.footer__logo{
    margin-bottom: 15px;
    display: flex;
}
.footer__logo img{
    width: 177px;
}
.footer__text{
    color: #E2E2E2;
    font-weight: 300;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 20px;
}
.footer__text strong{
    font-weight: 500;
    color: #fff;
}
.yandex__link{
    gap: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}
.yandex__link img:first-child{
    margin-right: 5px;
}
.footer__top{
    padding-bottom: 45px;
    gap: 139px;
    justify-content: space-between;
}
.footer__bottom{
    padding-top: 20px;
    border-top: 1px solid #5C5C5C
}
.footer__title{
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer__menu{
    gap: 5px;
}
.footer__menu .footer__link{
    color: #D2D2D2;
    font-size: 14px;
    font-weight: 400;
}
.footer__col .btn{
    height: auto;
    padding-left: 0;
    padding-right: 20px;
    background: url('../img/arrow-white-nobg.svg') no-repeat right center;
    background-size: 13px 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    width: fit-content;
    justify-content: flex-end;
    margin-bottom: 6px;
}
.footer__tel{
    color: #fff;
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 5px;
    line-height: 28px;
    display: flex;
}
.footer__email{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
    display: flex;

}
.footer__socials{
    gap: 15px;
}
.social__item{
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 100%;
}
.footer__bottom .footer__link{
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-decoration: underline;
}
.copyright{
    width: 472px;
    text-align: center;
    color: #E2E2E2;
    font-weight: 300;
    font-size: 14px;
}
.modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.8);

    align-items: center;
    justify-content: center;
    z-index: 9999;

}
.modal__content{
    width: 400px;
    border-radius: 30px;
    background: #ffffff;
    padding: 40px 30px;
    position: relative;
}
.btn__close{
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #1B1B1B;
    box-shadow: 0px 0px 10px 0px #0000001A;
    padding: 0;
    top: -15px;
    right: -15px;
    cursor: pointer;
}
.modal__title{
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
    align-items: center;
}
.modal__title span{
    background: #1A5AFF;
    color: #fff;
    border-radius: 30px;
    padding-left: 6px;
    padding-right: 6px;
    height: 41px;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
}
.modal__text{
    text-align: center  ;
    color: #454545;
    font-weight: 400;
}
.modal__text strong {
    font-weight: 700;
}
.modal .form__input{
    width: 100%;
}
.form__row > div{
    width: 100%;
}
.form__row .btn{
    width: 100%;
    border: 1px solid #CECECE
}
.form__row{
    gap: 10px;
}
.form__row p{
    text-align: center;
}
.banner-about{
    background: url('../img/banner-about.png') no-repeat;
}
.banner-about .banner__title{
    max-width: 925px;
}
.who-we-are{
    padding-top: 80px;
    padding-bottom: 70px;
    background: #fff;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: 0px 0px 20px 0px #0000000D;

}
.who__images{
    gap: 20px;
}
.who__images img{
    border-radius: 30px;
}
.who__content .section__title{
    margin-bottom: 20px;
}
.who__content .section__text{
    max-width: 810px;
    margin: 0 auto 50px;
    text-align: center;
    color: #454545;
    line-height: 1;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
}
.mission .about__text{
    margin-bottom: 0;
}
.portfolio__actions{
    gap: 20px;
}
.portfolio__actions .btn{
    height: 53px;
    border: 1px solid #CECECE
}
.portfolio__actions .btn:after{
    width: 35px;
    height: 35px;
    background-size: 100%;
}
.portfolio__actions .btn__blue{
    width: 241px;
}
.banner-portfolio .banner__title{
    max-width: 1068px;
}
.tabs{
    gap: 20px;
}
.tab{
    gap: 20px;
    padding: 7px 30px 7px 7px;
    border: 1px solid #E8E8E8;
    background: #fff;
    font-weight: 400;
    cursor: pointer;
    color: #1C1C1C;
}
.tab__active{
    background: #1A5AFF;
    font-weight: 700;
    color: #fff;
}
.tab__icon{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #1A5AFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab__active .tab__icon{
    background: #fff;

}
.portfolio__page .portfolio{
    padding-top: 90px;
}
.portfolio__page .portfolio .section__title{
    margin-bottom: 39px;
}
.tabs{
    margin-bottom: 80px;
}
.portfolio__page .portfolio__title{
    font-size: 24px;
    margin-bottom: 0;
}
.btn__more{
    padding-left: 0;
    height: auto;
    color: #1B1B1B;
    font-weight: 500;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    padding-right: 21px;
    background: url('../img/arrow-black.svg') no-repeat right center;
}
.portfolio__top {
    margin-bottom: 32px;
}
.portfolio__page .portfolio__content{
    margin-bottom: 80px;
}
.contact-us{
    padding-top: 124px;
    background: transparent;
}
.contact-us .about__right .section__title{
    font-size: 24px;
    margin-bottom: 15px;
}
.contact-us .about__text{
    margin-bottom: 20px;
}
.contact-us .about__text p{
    color: #454545;
    font-weight: 400;
    font-family: Montserrat, sans-serif;
    margin-bottom: 0;
}
.contact__icon{
    width: 80px;
    height: 80px;
    background: #fff;
    box-shadow: 0px 0px 20px 0px #0000000D;
    border-radius: 20px;
}
.contact__info{
    gap: 20px;
    margin-bottom: 20px;
}
.contact__text p{
    font-family: Montserrat, sans-serif;
    margin-bottom: 5px;
    color: #1B1B1B;

}
.contact__text p:last-child{
    margin-bottom: 0;

    color: #1B1B1B;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
}
.contact__text  a{
    color: #454545;
    font-size: 16px;
    font-weight: 600;
}
.contact__link{
    width: 34px;
    height: 34px;
    border-radius: 100%;
    background: #1A5AFF;
    border: 1px solid #FFFFFF1A
}
.contact__socials{
    gap: 10px;
}
.map iframe{
    border: none;
    width: 100%;
    height: 520px;
    border-radius: 30px;
}
.single-service .portfolio__item{
    width: 100%;

}
.single-service{
    padding-top: 108px;
}
.single-service .portfolio__item--content, .single-service .portfolio__item:hover .portfolio__item--content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    cursor: pointer;
}
.single-service .portfolio__item h3{
    margin-top: auto;
    max-width: 806px;
    width: 100%;
    line-height: 1.1;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}
.single-service .portfolio__item{
    height: 500px;
}
.single-service .portfolio__item p{
    font-size: 20px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
}
.single-service .portfolio__item .btn__white{
    width: 253px;
}
.feature__list{
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 80px;
}
.feature__item{
    background: #1B1B1B;
    height: 400px;
    width: calc(100%/4 - 16px);
    border-radius: 30px;
    position: relative;
}
.feature__item:last-child{
    background: #1A5AFF;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}
.feature__title{
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
    font-size: 24px;
    position: absolute;
    top: 40px;

    left: 30px;
    text-align: left;
    font-family: Roboto, sans-serif;
    max-width: 239px;
}

.feature__title span{
    background: #1A5AFF;
    height: 28px;
    border-radius: 30px;

    padding-left: 3px;
    padding-right: 3px;
}
.feature__item:last-child .feature__title{
    position: relative;
    margin-bottom: 15px;
    top: unset;
    left: unset;

}
.feature__item:last-child p{
    color: #FFFFFFB2;
    font-weight: 400;
    font-family: Roboto, sans-serif;
    line-height: 1.3;
    max-width: 251px;

}
.feature__item:last-child .btn{
    margin-top: auto;
    border: 1px solid #CECECE;
    height: 53px;
}
.feature__item:last-child .btn:after{
    width: 35px;
    height: 35px;
    background-size: 100%;
}
.about__service .about__right{
    max-width: 426px;
    width: 100%;
}
.about__service .about__left{
    max-width: calc(100% - 446px);
    width: 100%;
}
.about__service{
    background: transparent;
}
.vr__item{
    background: #fff;
    border-radius: 30px;
    padding: 33px 45px 30px 35px;
    margin-bottom: 20px;
}
.vr__item:last-child{
    margin-bottom: 0;
}
.vr__icon{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #1A5AFF;

}
.vr__item h3{
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #1B1B1B;
}
.vr__item h3 span:last-child{
    background: transparent;
    height: auto;
    color: #1B1B1B;
    width: calc(100% - 60px);
    font-weight: 700;
    font-size: 24px;
}
.about__right .vr__text{
    margin-bottom: 0;
}
.about__service .about__left img{
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.vr-portfolio .portfolio__item:hover .portfolio__item--content {
    justify-content: flex-start;
}
.vr-portfolio .portfolio__item:hover  h3{
    margin-top: auto;
}
.accordion {
    background-color: #fff;
    border-radius: 10px;
    color: #444;
    cursor: pointer;
    padding: 25px 40px;
    width: 100%;
    border: none;
    text-align: left;
    font-family: Roboto, sans-serif;
    outline: none;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    transition: 0.4s;
    position: relative;

}
.accordion:after{
    content: '';
    width: 16px;
    height: 16px;
    background: url('../img/plus.svg') no-repeat;
    right: 40px;
    top: 31px;
    position: absolute;
}

.accordion.active, .accordion:hover {
    background-color: #1A5AFF;
    color: #fff;
}
.accordion.active:after, .accordion:hover:after{
    background: url('../img/close.svg') no-repeat;

}

.panel {
    padding: 20px 60px 40px;
    display: none;
    background-color: #fff;
    overflow: hidden;
    font-weight: 400;
    color: #454545;
    border-radius: 10px;
    font-family: Roboto, sans-serif;
    line-height: 28px;
}
.faq__item{
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
}
.panel h3{
    font-size: 16px;
    font-weight: 500;
}
.panel ol{
    padding-left: 30px;

}
.panel strong   {
    font-weight: 500;
}
.contact-service{
    padding-top: 150px;
}
.contact-service .contact__left{
    max-width: 674px;
}
.contact-service .contact__right{
    max-width: calc(100% - 674px);
}
.contact-service .contact__content{
    gap: 0;
}
.contact-service  .form__row .btn{
    width: 230px;
}
.contact-service  .form__row p{
    text-align: left;
}
.service__actions{
    gap: 20px;
}
.service-3d .portfolio__item--content h3{
    max-width: 100%;
}
.service-3d .portfolio__item{
    height: 720px;
}
.text-center{
    text-align: center;

}
.about__service--3d .section__text{
    color: #454545;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    max-width: 1118px;
    margin: 0 auto 50px;
}
.about__service--3d .section__title{
    margin-bottom: 20px;
}
.about__service--3d .about__left, .about__service--3d .about__right{
    max-width: calc(100%/2 - 10px);
}
.about__service--3d .about__content{
    gap: 20px;
}
.about__service--3d  .vr__icon{
    width: 5px;
    height: 5px;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
}
.about__service--3d .vr__item h3 span:last-child{
    font-size: 18px;
    padding-left: 0;
}
.about__service--3d .vr__item h3{
    position: relative;
    margin-bottom: 3px;
}
.about__service--3d  .vr__item{
    padding: 20px 30px;
    margin-bottom: 10px;
}
.about__service--3d  .vr__item:last-child{
    margin-bottom: 0;
}
.about__service--3d .about__right .vr__text{
    font-weight: 400;
    color: #454545;
    font-family: Montserrat, sans-serif;
}
.service-why{
    padding-bottom: 150px;
}
.service-why__item{
    background: #fff;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 20px;
    min-height: 229px;
}
.service-why__item:last-child{
    margin-bottom: 0;
}
.service-why__list{
    gap: 20px;
}
.service-why__middle, .service-why__left, .service-why__right{
    width: calc(100%/3 - 16px);
}
.service-why__icon{
    width: 50px;
    height: 50px;
    background:#1A5AFF ;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.service-why__item h3{
    color: #1B1B1B;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}
.service-why__item p{
    font-size: 16px;
    font-weight: 400;
    font-family: Roboto, sans-serif;
    line-height: 1.4;
    color: #454545;
}
.s3d-portfolio .section__title{
    margin-bottom: 50px;
}

.s3d-portfolio  .portfolio__actions .btn__blue{
    margin-top: 36px;
}
.navbar__center{
    height: 100%;
}