@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: #F9F9F9;
    --card-bg: #F6F9FC;
    --card-border-color: #DDE6ED;
    --main-color: #373535;
    --second-color: #4D4D4D;
    --third-color: #8A9299;
    --btn-color: #FFFFFF;
    --btn-bg: #243C4E;
    --call-bg: #4BBD2E;
    --header_bottom_bg: #1E1E1E;
    --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);
}

.body._lock {
    overflow: hidden;
}
.body._lock main{
    filter: blur(1px);
}

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;
}

.block {
    margin-bottom: 70px;
}
.title {
    font-size: 24px;
    font-family: var(--inter-regular);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 140%;
}
.subtitle{
    color: var(--third-color);
    margin-bottom: 30px;
}
.btn{
    background: var(--btn-bg);
    color: var(--btn-color);
    font-family: var(--inter-medium);
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
}
.header__booking,
.header__top-text,
.header__top-tel_second{
    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/icon/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__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;
}

.header__menu._active .header__list>li:nth-child(5) {
    animation: header-links 1.5s forwards 0.6s;
    -webkit-animation: header-links 1.5s forwards 0.6s;
}
.header__menu._active .header__list>li:nth-child(6) {
    animation: header-links 1.8s forwards 0.6s;
    -webkit-animation: header-links 1.8s 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%);
    }
}
.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{
    padding-top: 280px;
    padding-bottom: 30px;
    background-image: url(../img/hero/hero_mb.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 70px;
}
.hero__box-text{
    padding: 25px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    background-color: rgba(30, 30, 30, 0.62);
    margin-bottom: 20px;
}
.hero__title{
    color: var(--btn-color);
    font-size: 24px;
    line-height: 200%;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.hero__text{
    color: #e5e5e5;
    font-weight: 500;
    line-height: 150%;
    font-family: var(--inter-medium);

}
.hero__call{
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.hero__call-link{
    display: block;
    width: 100%;
    padding: 8px 15px;
    color: var(--btn-color);
    font-weight: 500;
    font-family: var(--inter-medium);
    text-align: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.hero__call-link_whatsapp{
    background: var(--btn-bg);
}
.hero__call-link_tel{
    background: var(--call-bg);
}
.hero__form{
    display: none;
}

.rent__title{
    margin-bottom: 30px;
}
.rent__filter{
    margin-bottom: 20px;
}
.rent__filter-choice{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.rent__filter-item{
    color: var(--third-color);
    display: block;
    font-weight: 600px;
    font-family: var(--inter-medium);
    background: var(--card-border-color);
    padding: 4px 12px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.rent__filter-item_all{
    color: var(--second-color);
}
.hide{
    display: none;
    padding: 0;
    margin: 0;
    visibility: hidden;
    opacity: 0;
}
.rent__cards{
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    margin: 0 -10px;
}
.rent__card{
    width: calc(100%/1 - 10px);
    margin: 5px;
    position: relative;
    margin-bottom: 30px;
}
.rent__card-swiper{
    margin-bottom: 20px;
}
.rent__card-box-img{
    width: 100%;
    padding-top: 66.25%;
    position: relative;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    background: var(--card-bg);
    overflow: hidden;
}

.rent__card-img{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    
}

.swiper-pagination-bullet {
    opacity: 1;
    background: var(--third-color);
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--card-border-color);
}
.rent__card-title{
    font-family: var(--inter-medium);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 150%;
    letter-spacing: 0.2px;
}
.rent__card-body-car{
    color: var(--third-color);
    margin-bottom: 8px;
}
.rent__card-characteristics{
    margin-bottom: 20px;
}
.rent__card-characteristic{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 8px;
}
.rent__card-characteristic:last-child{
    margin-bottom: 0;
}
.rent__card-characteristic-item{
    color: var(--third-color);
}
.rent__card-characteristic-item:last-child{
    color: var(--main-color);
}
.rent__card-price{
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}
.rent__card-price-value{
    font-family: var(--inter-medium);
    font-weight: 600;
}
.rent__card-price-link{
    font-family: var(--inter-medium);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.services__title{
    margin-bottom: 10px;
}
.services__cards{
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    margin: 0 -10px;
}
.services__card{
    width: calc(100%/2 - 10px);
    margin: 5px;
    position: relative;
    margin-bottom: 30px;
}
.services__card-box-img{
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    padding-top: 66.25%;
    position: relative;
    background: var(--third-color);
    overflow: hidden;
}
.services__card-img{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
.services__card-title{
    font-family: var(--inter-medium);
}
.advantages__title{
    margin-bottom: 10px;
}
.advantages__cards{
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    margin: 0 -10px;
}
.advantages__card{
    width: calc(100%/1 - 10px);
    margin: 5px;
    padding: 13px;
    padding-left: 9px;
    position: relative;
    display: flex;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.advantages__card-img{
    width: 64px;
    height: 64px;
    object-fit: contain;
    object-position: center;
}
.advantages__card-info{
    flex: 1 1 auto;
}
.advantages__card-title{
    font-family: var(--inter-medium);
    font-weight: 600;
    margin-bottom: 4px;
}
.advantages__card-text{
    color: var(--third-color);
    font-family: var(--inter-medium);
}
.reviews__rating-row{
    margin-bottom: 20px;
}
.rating__box{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    
}
.rating__box-num{
    font-size: 50px;
}
.rating__box-stars{
    color: gold;
    font-size: 18px;
    line-height: 100%;
}
.rating__box-link{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.reviews__swiper-box-btn{
    display: none;
}
.reviews__card{
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.reviews__card-top{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.reviews__card-top-avatar{
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.reviews__card-top-stars{
    color: gold;
    font-size: 14px;
}
.reviews__card-text{
    margin-bottom: 10px;
}
.reviews__card-link{
    background-image: url(../img/icon/yamap.png.png);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 0 0;
    display: inline-block;
    padding-left: 28px;
    text-decoration: underline;
}
.reviews__pagination{
    padding: 0;
    margin: 0;
    margin-top: 15px;
    position: static;
}

.about__text{
    margin-bottom: 10px;
}
.about__text:last-child{
    margin-bottom: 0px;
}
.benefit__list-item{
    position: relative;
    margin-bottom: 10px;
    padding-left: 15px;
}
.benefit__list-item::after{
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--btn-bg);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.benefit__list-item:last-child{
    margin-bottom: 0px;
}
.conditions__mini-title{
    color: var(--btn-bg);
    font-family: var(--inter-medium);
    font-weight: 600;
    margin-bottom: 20px;
}
.conditions__cards{
    margin-bottom: 30px;
}
.conditions__card{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.conditions__card:last-child{
    margin-bottom: 00px;
}
.conditions__card-age,
.conditions__card-box-img{
    width: 64px;
    height: 64px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--btn-bg);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.conditions__card-age{
    color: var(--btn-color);
    font-family: var(--inter-medium);
    font-weight: 600;
    font-size: 30px;
}
.conditions__card-img{
    width: 100%;
}
.conditions__card-info-title{
    color: var(--third-color);
}
.conditions__card-info-text{
    color: var(--btn-bg);
    font-family: var(--inter-medium);
    font-weight: 500;
}
.conditions__docs{
    margin-bottom: 20px;
}
.conditions__docs-title{
    color: var(--btn-bg);
    font-family: var(--inter-medium);
    font-weight: 600;
    margin-bottom: 10px;
}
.conditions__docs-list-item{
    position: relative;
    margin-bottom: 10px;
    padding-left: 15px;
}
.conditions__docs-list-item:after{
    content: '';
    position: absolute;
    top: 7px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--btn-bg);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.conditions__docs-list-item:last-child{
    margin-bottom: 0px;
}
.conditions__link-agreement{
    color: var(--btn-bg);
    font-family: var(--inter-medium);
    padding-bottom: 2px;
    border-bottom: 2px dashed var(--second-color);
}
.faq{
    margin-bottom: 30px;
}
.faq__articles{
    padding: 15px 25px;
    background: var(--card-bg);
    border: 1px solid var(--card-border-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-bottom: 10px;
}
.faq__articles-header{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.faq__articles-title{
    color: var(--btn-bg);
    font-family: var(--inter-medium);
}
.faq__articles-title-box-img{
    display: flex;
    align-items: center;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.faq__articles-title-img{
    width: 13px;
    height: 13px;
    object-fit: contain;
    object-position: center;
}
.faq__articles .faq__box-text{
    padding-top: 10px;
    font-size: 14px;
    height: 0;
    visibility: hidden;
}
.faq__text{
    color: var(--second-color);
    font-size: 14px;
}
.faq__articles._active .faq__box-text{
    height: auto;
    visibility: visible;
}
.faq__articles._active .faq__articles-title-box-img{
   transform: rotate(180deg);
   -webkit-transform: rotate(180deg);
   -moz-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
   -o-transform: rotate(180deg);
}
.call{
    margin-bottom: 70px;
}
.call__wrapper{
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--card-border-color);
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.call__title{
    margin-bottom: 15px;
}
.call__text{
    color: var(--second-color);
    font-family: var(--inter-medium);
    margin-bottom: 20px;
}
.call__link-img{
    width: 35px;
    height: 35px;
    object-fit: contain;
    object-position: center;
}
.call__link-tel{
    padding-left: 5px;
    display: inline-block;
    color: var(--btn-bg);
    font-size: 20px;
    font-family: var(--inter-medium);
    font-weight: 600;
}
.call__links{
    display: flex;
    gap: 10px;
    align-items: center;
}
.footer{
    background: var(--btn-bg);
    padding: 40px 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__menu{
    display: none;
}
.footer__social-list{
    display: flex;
    gap: 8px;
}
.footer__social-link img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    object-position: center;
}
.footer__bottom-address{
    display:  flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 28px;
    background: url(../img/icon/geo-footer.svg) no-repeat;
    background-size: 18px 22.5px;
    background-position: 0 4px;
    margin-bottom: 20px;
}
.footer__bottom-address-link{
    color: var(--btn-color);
    font-size: 20px;
    font-family: var(--inter-medium);
}
.footer__bottom-tels{
    display:  flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 28px;
    background: url(../img/icon/tel-footer.svg) no-repeat;
    background-size: 22px 22px;
    background-position: 0 7px;
}
.footer__bottom-tel{
    color: var(--btn-color);
    font-size: 20px;
    font-family: var(--inter-medium);
    padding: 2px 0;
}
