@font-face {
    font-family: Inter-Bold;
    src: url(../fonts/Inter-Bold.woff2);
}
@font-face {
    font-family: Inter-Medium;
    src: url(../fonts/Inter-Medium.woff2);
}
@font-face {
    font-family: Inter-Regular;
    src: url(../fonts/Inter-Regular.woff2);
}
@font-face {
    font-family: Inter-Light;
    src: url(../fonts/Inter-Light.woff2);
}



:root {
    --main-bg: #FFF;
    --card-border-color: #D9D9D9;
    --main-color: #373535;
    --second-color: #BDBDBD;
    --third-color: #8A9299;
    --btn-color: #FFFFFF;
    --btn-bg: #1B4B4D;
    --btn-bg-hover:#F3F66F;
    --call-bg: #F9F9F9;
    --green-color: #3ad912;
    --header_bottom_bg: #1B4B4D;
    --inter-bold: Inter-Bold, sans-serif;
    --inter-medium: Inter-Medium, sans-serif;
    --inter-regular: Inter-Regular, sans-serif;
    --inter-light: Inter-Light, sans-serif;
}


* {
    color: var(--main-color);
    font-family: var(--inter-regular);
    font-size: 16px;
    line-height: 137.5%;
}
*::selection {
    background: #6c6b6b12; /* Safari */
}
*::-moz-selection {
background: #6c6b6b12; /* Firefox */
}

::-webkit-scrollbar {
    background: var(--card-bg);
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #b5b5b5;
}


html {
    scroll-behavior: smooth;
}
body {
    background: var(--main-bg);
}
.block {
    padding-top: 70px;
}
.title,
.title > span{
    color: var(--main-color);
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
    font-family: var(--inter-medium);
    font-weight: 500;
    margin-bottom: 10px;
}
.title > span{
    color: var(--btn-bg);
}
.text{
    color: #8A9299;
    font-family: var(--inter-regular);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155.556%; 
}
.btn{
    display: inline-block;
    background: var(--btn-bg);
    color: var(--btn-color);
    font-size: 18px;
    font-family: var(--inter-medium);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.box-call-link{
    text-align: center;
}
.body._lock {
    overflow: hidden;
}
.body._lock main{
    filter: blur(1.5px);
    -webkit-filter: blur(1.5px);
}

a,
button,
.burger {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}

.main {
    flex: 1 1 auto;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1220px;
    padding: 0 10px;
    margin: 0 auto;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 3;
}

.header__booking,
.header__top-text{
    display: none;
}
.header__top{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.header__top._hide{
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
    margin: 10px;
}
.header__top-geo{
    color: var(--btn-color);
    background: url(../img/icons/header-geo.svg) no-repeat;
    background-position: 0 center;
    padding-left: 30px;
    line-height: 150%;
}
.header__top-tel{
    color: var(--btn-color);
    font-weight: 500;
}
.header__bottom{
    padding: 14px;
    background: var(--header_bottom_bg);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.header__logo{
    font-size: 20px;
    line-height: 33px;
    color: var(--call-bg);
    font-family: var(--inter-medium);
    font-weight: 500;
}
.header__bottom-mobile-block{
    display: flex;
    align-items: center;
    gap: 8px;
}
.header__social{
    display: flex;
    gap: 8px;
}
.header__social-link img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    object-position: center;
    
}
.header__menu {
    order: 3;
    flex: 0 0 100%;
    padding: 0px;
    height: 0;
    visibility: hidden;
}

.header__menu._active {
    padding: 50px 0 20px;
    height: auto;
    visibility: visible;
}
.header__list-item{
    display: block;
    color: var(--btn-color);
    padding: 10px 0;
    border-bottom: 1px solid #373535;
}
.header__menu._active .header__list > li {
    opacity: 0;
    transform: translateX(-30%);
    -webkit-transform: translateX(-30%);
    -moz-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    -o-transform: translateX(-30%);
}


.header__menu._active .header__list>li:nth-child(1) {
    animation: header-links 0.4s ease-in-out forwards;
    -webkit-animation: header-links 0.4s ease-in-out forwards;
}

.header__menu._active .header__list>li:nth-child(2) {
    animation: header-links 0.6s forwards 0.2s;
    -webkit-animation: header-links 0.6s forwards 0.2s;
}

.header__menu._active .header__list>li:nth-child(3) {
    animation: header-links 0.9s forwards 0.4s;
    -webkit-animation: header-links 0.9s forwards 0.4s;
}

.header__menu._active .header__list>li:nth-child(4) {
    animation: header-links 1.2s forwards 0.6s;
    -webkit-animation: header-links 1.2s forwards 0.6s;
}

@keyframes header-links {
    0% {
        opacity: 0;
        transform: translateX(-15%);
        -webkit-transform: translateX(-15%);
        -moz-transform: translateX(-15%);
        -ms-transform: translateX(-15%);
        -o-transform: translateX(-15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
    }
}
.header__social_pc{
    display: none;
}
.burger {
    padding: 5px;
    display: inline-block;
    cursor: pointer;
    z-index: 5;
    
}
.header__burger-body{
    width: 30px;
    height: 24px;
    position: relative;
}
.burger__line {
    width: 100%;
    height: 2.5px;
    position: absolute;
    left: 0;
    background-color: var(--btn-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.burger__line--1 {
    top: 0;
}

.burger__line--2,
.burger__line--3 {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.burger__line--4 {
    bottom: 0;
}

.burger._active .burger__line--1,
.burger._active .burger__line--4 {
    opacity: 0;
}

.burger._active .burger__line--2 {
    height: 2px;
    transform: translateY(50%) rotate(45deg);
    -webkit-transform: translateY(50%) rotate(45deg);
    -moz-transform: translateY(50%) rotate(45deg);
    -ms-transform: translateY(50%) rotate(45deg);
    -o-transform: translateY(50%) rotate(45deg);
}

.burger._active .burger__line--3 {
    height: 2px;
    transform: translateY(50%) rotate(-45deg);
    -webkit-transform: translateY(50%) rotate(-45deg);
    -moz-transform: translateY(50%) rotate(-45deg);
    -ms-transform: translateY(50%) rotate(-45deg);
    -o-transform: translateY(50%) rotate(-45deg);
}






.hero{
    background-image: url(../img/hero/hero_bg_mb.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.hero::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #00000033;
}

.hero__body{
    position: relative;
    padding-top: 280px;
    padding-bottom: 30px;
    z-index: 2;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.hero__blur {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.hero__blur::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c1c1c13e;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border: 0.5px solid #bdbdbd54;
    z-index: 2;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    box-shadow: 2px 2px 10px #bebebe47;
}
.hero__box {
    position: relative;
    z-index: 3;
    padding: 25px;
}
.hero__title,
.hero__title > span{
    color: var(--btn-color);
    font-size: 24px;
    font-family: var(--inter-bold);
    text-transform: uppercase;
}
.hero__title > span{
    color: var(--btn-bg-hover);
}
.hero__title {
    margin-bottom: 12px;
}
.hero__text{
    color: var(--call-bg);
    font-size: 18px;
    line-height: 140%;
}
.hero__form{
    display: none;
}
.hero__box-links{
    display: flex;
    gap: 15px;
}
.hero__link{
    text-align: center;
    width: 100%;
    display: block;
    padding: 8px 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    font-family: var(--inter-medium);
    font-weight: 500;
}
.hero__link_whatsapp{
    background: var(--btn-bg);
    color: var(--btn-color);
}
.hero__link_call{
    color: #555555;
    background: var(--call-bg);
}
.repair__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.repair__card {
    flex: 1 1 100%;
    text-align: center;
    background: var(--card-bg);
    padding: 12px;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
.repair__subtitle{
    margin-bottom: 20px;
}
.repair__card-title {
    color: var(--third-color);
    font-size: 18px;
    line-height: 26px;
    font-family: var(--inter-medium);
    font-weight: 500;
    margin-bottom: 20px;
}

.repair__card-box-img {
    width: 45%;
    padding-top: 45%;
    position: relative;
    margin: 0 auto;
    margin-bottom: 23px;
}

.repair__card-img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.repair__card-details {
    background: #b5b5b557;
    font-weight: 500;
    padding: 7px 14px;
    text-align: left;
    transition: all 0.9s;
    -webkit-transition: all 0.9s;
    -moz-transition: all 0.9s;
    -ms-transition: all 0.9s;
    -o-transition: all 0.9s;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.repair__card-summary {
    font-size: 16px;
    color:#5c5b5b;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}


.repair__card-list-item:first-child {
    margin-top: 3px;
}

.repair__card-list-item {
    margin-bottom: 3px;
    padding-left: 15px;
    position: relative;
    line-height: 150%;
    font-weight: 400;
    color: var(--third-color);
}

.repair__card-list-item::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--btn-color);
    top: 8px;
    left: 3px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.btn-box{
    text-align: center;
}
.brands__subtitle{
    margin-bottom: 15px;
}
.brands__wrapper{
    display: flex;
    margin-bottom: 25px;
}

.brands__slide-img:first-child{
    margin-bottom: 10px;
}
.brands__slide-img{
    display: block;
    background: var(--call-bg);
    padding: 10px 20px;
    width: 175px;
    height: 60px;
    object-fit: contain;
    object-position: center;
}

.brands__scrollbar{
    background: var(--call-bg);
    cursor: pointer;
}
.swiper-scrollbar-drag{
    background: var(--btn-bg);
}
.advantages__title{
    margin-bottom: 15px;
}
.advantages__cards{
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    margin: 0 -10px;
}
.advantages__card{
    width: calc(100%/1 - 10px);
    margin: 5px;
    gap: 10px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--card-border-color);
}
.advantages__card:last-child{
    border-bottom: none;
}
.advantages__card-img{
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
}
.advantages__card-title{
    color: #333;
    font-size: 20px;
    font-family: var(--inter-medium);
    font-weight: 500;
    line-height: 200%; 
    text-align: center;
}
.advantages__card-text{
    color: var(--third-color);
    font-size: 14px;
    text-align: center;
}
.steps{
    margin-bottom: 70px;
}
.steps__title{
    margin-bottom: 15px;
}
.steps__cards{
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    margin: 0 -10px;
}
.steps__card{
    width: calc(100%/1 - 10px);
    margin: 5px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}
.steps__card:last-child{
    margin-bottom: 0px;
}
.steps__card-num{
    width: 60px;
    height: 60px;
    border: 4px solid #EBEBEB;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 100%;
    color: var(--btn-color);
    font-size: 30px;
    background-color: var(--btn-bg);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.steps__card-title{
    font-size: 18px;
    line-height: 140%;
    font-family: var(--inter-medium);
    font-weight: 500;
    margin-bottom: 5px;
}
.steps__card-text{
    color: var(--third-color);
    font-size: 14px;
}
.footer{
    background: var(--header_bottom_bg);
    padding: 30px 0;
}
.footer__top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--btn-color);
}
.footer__bottom-tel{
    display: inline-block;
    padding: 5px 0;
    padding-left: 28px;
    background: url(../img/icons/tel.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 0 7px;
    color: var(--btn-color);
    font-size: 20px;
    font-family: var(--inter-medium);
    margin-bottom: 5px;
}
.footer__bottom-descriptor{
    color: var(--btn-color);
    font-size: 14px;
}
.footer__logo{
    font-size: 20px;
    line-height: 33px;
    color: var(--call-bg);
    font-family: var(--inter-medium);
    font-weight: 500;
}
.footer__btn{
    font-size: 16px;
    background: var(--call-bg);
    color: #555555;
}
.pop-up__form{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100vw;
    height: 100vh;
    display: none;
}

.pop-up__form._active{
    display: block;
}
.pop-up__form-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 150vh;
    background: #33333386;
    cursor: pointer;
}
.pop-up__form-wrapper{
    position: absolute;
    top: 30%;
    left: 50%;
    z-index: 5;
    transform: translate(-50%) ;
    -webkit-transform: translate(-50%) ;
    -moz-transform: translate(-50%) ;
    -ms-transform: translate(-50%) ;
    -o-transform: translate(-50%) ;
    min-width: 290px;
    max-width: 400px;
    background: var(--card-bg);
    padding: 15px 15px 35px;
}
.pop-up__form-close{
    display: block;
    text-align: right;
    font-size: 18px;
    color: var(--call-bg);
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}
.pop-up__form-input {
    color: #494949;
    padding: 16px 30px;
    font-size: 18px;
    color: var(--second-color);
    border:2px solid var(--swiper-btn-bg);
    margin-bottom: 10px;
    width: 100%;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.fixed_form-btn{
    color: var(--btn-color);
    font-size: 16px;
    padding: 16px 30px;
    width: 100%;
    background: var(--btn-bg);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.form-sent{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    display: none;
}
.form-sent._active{
    display: block;
}
.form-sent-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 150vh;
    background: #33333386;
    cursor: pointer;
}
.form-sent__body{
    background: var(--btn-color);
    position: fixed;
    top: 50%;
    left: 50%;
    text-align: center;
    padding: 25px;
    width: 280px;
    border: 2px solid var(--card-border-color);
    z-index: 6;
    transform: translate(-50%) ;
    -webkit-transform: translate(-50%) ;
    -moz-transform: translate(-50%) ;
    -ms-transform: translate(-50%) ;
    -o-transform: translate(-50%) ;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.form-sent__text{
    text-align: center;
    font-family: var(--inter-regular);
    font-size: 16px;
    margin-bottom: 10px;
    color: #494949;
}
.form-sent__ok{
    color: var(--btn-color);
    font-family: var(--outfit-regular);
    font-size: 18px;
    display: inline-block;
    padding: 2px 20px;
    background: var(--btn-bg);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}