:root {
    --pd75: 75px;
    --pd25: 25px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

html {
    box-sizing: border-box;
}

*, *:after, *:before {
    box-sizing:inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

.home {
    background-image: url(../images/home2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 0 0 25px 0;
    position: relative;
}

.home::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    column-gap: 10px;
}

.header__logo {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.header__logo__ico {
    width: 155px;
    margin: 0 10px 0 0;
}

.header__logo__ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__logo__content {
    display: flex;
    flex-direction: column;
}

.header__logo__content__title {
    font-size: 16px;
    font-weight: 600;
}

.header__logo__content__subtitle {
    font-weight: 300;
    font-size: 14px;
}

.header__content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header__content__lang {
    display: flex;
}

.header__content__lang a {
    width: 24px;
    height: 24px;
    margin: 0 0 0 10px;
    opacity: 0.7;
}

.header__content__lang a.active,
.header__content__lang a:hover {
    opacity: 1;
}

.header__content__lang a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__menu {
    margin: 15px 0 0 0;
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    padding: 15px 30px 15px 5px;
    border-radius: 3px;
}

.header__menu__links {
    display: flex;
}

.header__menu__links a {
    margin: 0 0 0 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.header__menu__links a:hover {
    color: #f00;
}

.header__menu__links a::after {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 0 0 20px;
}

.header__menu__links > :last-child::after {
    display: none;
}

.home__title {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    align-items: flex-start;
}

.home h1 {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-transform: uppercase;
    font-size: 44px;
    line-height: 44px;
}

.home h1 span {
    font-size: 31px;
    text-transform: none;
    font-weight: 300;
}

a.home__go {
    background: rgba(255, 255, 255, 0.9) none repeat scroll 0 0;
    margin: 15px 0 0 0;
    text-decoration: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #000;
}

a.home__go:hover {
    background: rgba(255, 255, 255, 1) none repeat scroll 0 0;
}

.home__go__content {
    display: flex;
    flex-direction: column;
}

.home__go__content span {
    text-transform: none;
    font-size: 12px;
    font-weight: 400;
}

a.home__go::before {
    content: '';
    background-image: url(../images/cars.png);
    background-position: center;
    background-size: cover;
    width: 24px;
    height: 24px;
    margin: 0 15px 0 0;
}

.home__brands {
    display: flex;
}

.home__brands span {
    width: 64px;
    height: 64px;
    margin: 0 15px 0 0;
    background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.home__brands span img {
    object-fit: cover;
    width: 60%;
    height: 60%;
}

.callback {
    background-color: #f9f9f9;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    z-index: 5;
}

.callback__info {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0 10px 0 0;
}

.callback__info__ico {
    width: 80px;
    height: 80px;
}

.callback__info__ico img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.callback__info__content {
    width: calc(100% - 80px);
    padding: 0 0 0 10px;
    font-size: 14px;
    font-weight: 400;
}

.callback__info__content h2 {
    font-size: 16px;
    margin: 0 0 3px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.callback__info__content h2 svg {
    height: 14px;
    margin: 0 5px 0 0;
    fill: #999;
}

.callback form {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}

.callback__col {
    display: flex;
}

.callback__col input {
    width: 100%;
    padding: 10px;
    border: solid 1px #ddd;
    border-radius: 5px;
}

.callback__col p {
    font-size: 9px;
    font-weight: 400;
}

.callback__col p a {
    color: #000;
}

.callback__col button {
    width: 100%;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    padding: 12px 0;
}

.callback__col button svg {
    fill: #fff;
    width: 8px;
    margin: 0 0 0 5px;
}

.callback__col button:hover {
    background: #000;
}

/* .to_top {
    position: fixed;
    top: 10px;
    max-width: 1200px;
    background: #000;
    color: #fff;
}

.to_top .callback__col button {
    background-color: #01aaff;
}

.to_top .callback__col p a {
    color: #fff;
} */

.catalog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.catalog h2 {
    grid-column: span 3;
    font-size: 21px;
}

.catalog__item {
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease 0s;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.08) 0 0px 6px;
    justify-content: space-between;
}

.catalog__item:hover {
    transition: all 0.2s ease 0s;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 12px;
    color: #000;
}

.catalog__item__cover {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.catalog__item__cover img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: all 0.2s ease 0s;
}

.catalog__item__cover span {
    display: flex;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: 500;
    font-size: 16px;
    column-gap: 5px;
    border: solid 1px #ddd;
    padding: 5px;
    border-radius: 5px;
    background-color: #fff;
}

.catalog__item__cover span::before {
    content: '';
    mask-image: url(../images/ico_pas.svg?v=1);
    -webkit-mask-image: url(../images/ico_pas.svg);
    mask-repeat: no-repeat;
    width: 21px;
    height: 21px;
    background-color: #000;
}

.catalog__item:hover .catalog__item__cover img {
    width: 100%;
    height: 100%;
    transition: all 0.2s ease 0s;
}

.catalog__item h3 {
    text-align: center;
    margin: 15px 0 0;
    font-weight: 400;
    font-size: 18px;
}

.catalog__item ul {
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.catalog__item ul li {
    padding: 15px;
}

.catalog__item ul > :nth-child(1) {
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
}

.catalog__item ul > :nth-child(2) {
    border-bottom: solid 1px #ddd;
}

.catalog__item ul > :nth-child(3) {
    border-right: solid 1px #ddd;
}

.catalog__item ul li strong {
    font-weight: 400;
    font-size: 12px;
}

.catalog__item ul li p {
    font-size: 18px;
    font-weight: 600;
}

.catalog__item ul li p span {
    font-weight: 400;
    font-size: 16px;
}

.catalog__item__cta {
    border: solid 2px #f00;
    background-color: #fff;
    border-radius: 50px;
    text-decoration: none;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    margin: 15px 20px 0;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
}

.catalog__item__cta svg {
    width: 12px;
    margin: 0 5px 0 0;
    fill: #000;
}

.catalog__item__cta:hover {
    background-color: #f0f0f0;
}

.catalog__item__cta:hover svg {
    fill: #f00;
}

.catalog__item__moto li {
    border-bottom: none !important;
}

.rules {
    max-width: 450px;
    margin: 100px auto;
}

.rules h2 {
    text-align: center;
    font-size: 24px;
}

.rules ul {
    margin: 25px 0 0 0;
    padding: 0;
    list-style: none;
}

.rules ul li {
    display: flex;
    align-items: center;
    margin: 5px 0 0 0;
}

.rules ul > :nth-child(even) {
    flex-direction: row-reverse;
}

.rules ul li span {
    font-size: 44px;
    font-weight: 600;
}

.rules ul li strong {
    font-weight: 400;
    font-size: 18px;
    padding: 20px;
}

.rules ul > :nth-child(even) strong {
    text-align: right;
}

.steps {
    background: #f9f9f9;
}

.steps .wrapper {
    background-image: url(../images/item_cooper.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 90%;
    padding-top: var(--pd75);
    padding-bottom: var(--pd75);
}

.steps .wrapper h2 {
    font-size: 21px;
    /* font-weight: 600; */
}

.steps .wrapper ul {
    margin: 25px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.steps .wrapper ul li {
    border-bottom: solid 1px #ddd;
    margin: 0 10px 0 0;
    padding: 0 20px 7px;
    color: #999;
    font-weight: 600;
    cursor: pointer;
}

.steps .wrapper ul li.active {
    color: #000;
    border-bottom: solid 2px #f00;
}

.steps .wrapper ul li:hover {
    color: #000;
}

.steps .wrapper ul li::after {}

.step {
    margin: 25px 0 0 0;
    max-width: 500px;
    display: none;
}

.step.active {
    display: inline-block;
    transition-property: all;
    transition-duration: 1s;
}

.step h3 {
    font-weight: 400;
    margin: 0 0 10px;
    font-size: 18px;
}

.step p {}

.faq {
    margin: 100px auto 0;
    max-width: 800px;
}

.faq h2 {
    text-align: center;
    font-size: 24px;
    /* font-weight: 600; */
    margin: 0 0 25px;
}

.faq__item {
    background: #f9f9f9;
    margin: 0 0 25px;
    padding: 30px;
    border-radius: 10px;
}

.faq__item__header {
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
}

.faq__item__header:hover {
    color: #000;
}

.faq__item__header svg {
    width: 10px;
    transform: rotate(90deg);
    transition: all 0.2s ease 0s;
}

.faq__item__header.active svg {
    transform: rotate(-90deg);
    transition: all 0.2s ease 0s;
}

.faq__item__content {
    display: none;
    margin: 25px 0 0 0;
}

.faq__item__content.active {
    display: inline-block;
}

.contacts {
    background-color: #f9f9f9;
}

.contacts .wrapper {
    display: flex;
    align-items: center;
}

.contacts__content {
    width: 50%;
    padding: 0 10px 0 0;
}

.contacts__content h2 {
    font-size: 21px;
    /* font-weight: 600; */
    margin: 0 0 25px;
}

.contacts__content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contacts__content ul li {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.contacts__content ul li svg {
    width: 12px;
    margin: 0 10px 0 0;
    fill: #555;
}

.contacts__content ul li a {
    color: #000;
    text-decoration: none;
}

.contacts__map {
    width: 50%;
}

.contacts__map iframe {
    width: 100%;
    height: 400px;
}

.blocker {
    z-index: 100;
}

.modal__reserv {
    max-width: 1000px;
    padding: 0;
}

.modal__reserv__wrapper {
    display: flex;
}

.modal__reserv__info {
    width: calc(100% - 385px);
    padding: 20px;
}

.modal__reserv__info h2 {}

.modal__reserv__info__img {
    height: 140px;
    margin: 0 0 15px;
}

.modal__reserv__info__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal__reserv__info__item {
}

.modal__reserv__info__item__header {
    display: flex;
    align-items: center;

    background-color: #f9f9f9;
    margin: 5px 0 0 0;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    color: #000;
}

.modal__reserv__info__item__header:hover {
    background-color: #f0f0f0;
}

.modal__reserv__info__item__header.active {
    background: #01aaff;
    color: #fff;
}

.modal__reserv__info__item__header svg {
    width: 16px;
    height: 16px;
    fill: #000;
    margin: 0 10px 0 0;
}

.modal__reserv__info__item__header.active svg {
    fill: #fff;
}

.modal__reserv__info__item__header span {
    font-size: 16px;
    font-weight: 600;
}

.modal__reserv__info__item__content {
    padding: 10px 0;
}

.modal__reserv__info__item__content table {
    width: 100%;
    border-collapse: collapse;
}

.modal__reserv__info__item__content table td {
    border-bottom: solid 1px #f0f0f0;
    padding: 15px;
}

.modal__reserv__info__item__content table tbody > :last-child td {
    border: none;
}

.modal__reserv__info__item__content table tr:hover td {
    background-color: #f9f9f9;
}

.modal__reserv__info__item__content table tr > :nth-child(1) {
    font-weight: 600;
}

.modal__reserv__info__item__content > p {
    padding: 10px 15px 0;
    font-weight: 500;
    border-top: solid 1px #ddd;
}

.modal__reserv__form {
    width: 385px;
    background: #01aaff;
    padding: 20px;
    border-radius: 0 0 5px 0;
}

.modal__reserv__form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width:100%;
}

.modal__reserv__form__title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #fff;
}

.modal__reserv__form__col {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: solid 1px #f0f0f0;
    border-radius: 3px;
}

.modal__reserv__form__col label {
    padding: 10px 10px 0;
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

.modal__reserv__form__col input,
.modal__reserv__form__col textarea,
.modal__reserv__form__col select {
    border: none;
    background-color: #fff;
    padding: 5px 10px 10px;
    outline: none;
    font-size: 14px;
    color: #000;
    width: 100%;
}

.modal__reserv__form__col__span,
.modal__reserv__form__info,
.modal__reserv__form__privacy,
.modal__reserv__form form button {
    grid-column: span 2;
}

.modal__reserv__form__info {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 3px;
    color: #333;
}

.modal__reserv__form form button {
    background: #222;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
}

.modal__reserv__form form button:hover {
    background-color: #000;
}

.modal__reserv__form__privacy,
.modal__reserv__form__privacy a {
    font-size: 10px;
    color: #ddd;
}

.ui-datepicker {
    z-index: 9999 !important;
}

.reviews {
    background-image: url(../images/home.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    color: #fff;
    padding: 100px 0;
}

.reviews::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    z-index: 1;
}

.reviews .wrapper {
    position: relative;
    z-index: 2;
}

.reviews .wrapper h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}

.reviews__slick {
    margin: 25px 0 0 0;
}

.reviews__slick__item {
    height: 300px;
    padding: 10px;
}

.reviews__slick__item__wrapper {
    border: dashed 1px #fff;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
}

.reviews__slick__item svg {
    width: 44px;
    fill: #fff;
}

.reviews__slick__item__text {
    text-align: center;
}

.reviews__slick__item__autor {
    display: flex;
    align-items: center;
}

.reviews__slick__item__autor img {
    width: 32px;
    margin: 0 10px 0 0;
}

.reviews__slick__item__autor strong {
    font-weight: 400;
}

.slick-list {
    overflow: hidden;
    z-index: 10;
    position: relative;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-arrow {
    z-index: 20;
    position: absolute;
    top: 50%;
    font-size: 0;
    width: 45px;
    height: 45px;
    border: none;
    outline: none;
    cursor: pointer;
}

.slick-arrow.slick-prev {
    left: 20px;
    background: url(../images/arrow.svg) 0 0 / 100% no-repeat;
    transform: rotate(180deg);
}

.slick-arrow.slick-next {
    right: 20px;
    background: url(../images/arrow.svg) 0 0 / 100% no-repeat;
}

.burger__btn,
.filetype {
    display: none;
}

.msgs {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 10px 0;
    z-index: 10;
}

.msgs a {
    display: flex;
    background: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border: solid 1px #ddd;
}

.msgs a svg {
    width: 65%;
    height: 65%;
}

.msgs a.msgs__wp svg {fill: #189d0f;}
.msgs a.msgs__vb svg {fill: #7d51a0;}
.msgs a.msgs__tg svg {fill: #1e96c8;}
.msgs a.msgs__ph svg {fill: #f00;}

.modal__loading {}

.modal__loading img {}

.modal__success {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
    padding: 50px 10px;
    font-size: 18px;
}

.modal__success::before {
    content: '';
    background-image: url(../images/complete.gif);
    width: 64px;
    height: 64px;
    background-position: center;
    background-size: contain;
    margin: 0 0 10px;
}

.callback.success {
    background-color: #fff;
}

.callback .modal__success {
    padding: 0 10px;
}

.callback .modal__success::before {
    width: 32px;
    height: 32px;
}

.modal__reserv__form button[type="button"],
.modal__reserv__form button[type="button"]:hover,
.callback__col button[type="button"] {
    background-color: #ddd;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease 0s;
    cursor: default;
}

.modal__reserv__form button[type="button"]::before,
.callback__col button[type="button"]::before {
    content: '';
    background-image: url(../images/load.gif);
    background-position: center;
    background-size: contain;
    width: 16px;
    height: 16px;
    margin: 0 10px 0 0;
}

.callback__col button[type="button"] svg {
    display: none;
}

@media screen and (max-width: 999px) {
    .header__logo {
        flex-direction: column;
        align-items: start;
    }
    .header__logo__ico {
        width: 120px;
        margin: 0 0 5px;
    }
    .steps .wrapper {
        background-size: auto 50%;
        background-position: right bottom;
    }
    .home h1 {
        font-size: 37px;
        line-height: 37px;
    }
    .home h1 span {
        font-size: 24px;
    }
    .callback__info__content {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .home {
        background-position-y: -200px;
    }
    .header__menu {
        position: fixed;
        left: -110vw;
        top: 0;
        margin: 0;
        width: 100%;
        height: 100vh;
        z-index: 10;
        background: #000;
        transition: all 0.2s ease 0s;
    }
    .header__menu.active {
        left: 0;
        transition: all 0.2s ease 0s;
    }
    .header__menu__links {
        display: grid;
        margin: 25px 0 0 15px;
        gap: 30px 0;
    }
    .header__menu__links a {
        font-size: 16px;
    }
    .header__menu__links a::after {
        display: none;
    }
    .burger__btn {
        display: flex;
        flex-direction: column;
        margin: 15px 0 0 0;
        z-index: 20;
        cursor: pointer;
    }
    .burger__btn span {
        margin: 8px 0;
    }
    .burger__btn::after,
    .burger__btn::before {
        content: '';
    }
    .burger__btn span,
    .burger__btn::after,
    .burger__btn::before {
        height: 2px;
        width: 40px;
        background: #fff;
        transition: all 0.2s ease 0s;
    }
    .burger__btn.active {
        position: fixed;
        top: 15px;
        right: 20px;
        transition: all 0.2s ease 0s;
    }
    .burger__btn.active::before {
        display: none;
    }
    .burger__btn.active span {
        transform: rotate(45deg);
        transition: all 0.2s ease 0s;
    }
    .burger__btn.active::after {
        transform: rotate(-45deg);
        position: relative;
        top: -10px;
        transition: all 0.2s ease 0s;
    }
    .header__logo__ico {
        width: 90px;
    }
    .header__logo__content__title {
        font-size: 14px;
    }
    .header__logo__content__subtitle {
        font-size: 12px;
    }
    .home h1 {
        font-size: 27px;
        line-height: 27px;
    }
    .home h1 span {
        font-size: 18px;
    }
    .callback {
        flex-direction: column;
        padding: 10px;
    }
    .callback__info {
        width: 100%;
        margin: 0 0 10px;
    }
    .callback__info__ico {
        width: 60px;
        height: 60px;
    }
    .callback__info__content {
        width: calc(100% - 60px);
    }
    .callback__info__content h2 {
        font-size: 14px;
        margin: 0 0 5px;
        font-weight: 700;
    }
    .callback__col {
        grid-column: span 2;
    }
    .callback form {
        width: 100%;
    }
    .catalog {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 25px 0 0;
    }
    .catalog h2 {
        grid-column: span 2;
        font-size: 18px;
        text-align: center;
    }
    .catalog__item h3 {
        margin: 10px 0 0;
        text-align: left;
        font-size: 14px;
        font-weight: 700;
    }
    .catalog__item ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 5px 0;
        margin: 10px 0 0 0;
    }
    .catalog__item ul li {
        padding: 0;
        border: none !important;
    }
    .catalog__item ul li p {
        font-size: 14px;
        font-weight: 700;
    }
    .catalog__item__cover {
        height: 100px;
    }
    .catalog__item__cta {
        margin: 10px 0 0 0;
        padding: 7px 0;
        text-transform: none;
        font-size: 12px;
    }
    .catalog__item__cta svg {
        width: 10px;
    }
    .catalog__item__cover span {
        top: 0;
        right: 0;
        font-size: 14px;
        column-gap: 3px;
        padding: 3px;;
    }
    .catalog__item__cover span::before {
        width: 16px;
        height: 16px;
    }
    .rules {
        margin: 25px 0 0;
        padding: 0 10px;
    }
    .rules h2 {
        font-size: 18px;
    }
    .rules ul {
        margin: 10px 0 0 0;
        display: grid;
        gap: 5px 0;
    }
    .rules ul li span {
        font-size: 14px;
        font-weight: 700;
    }
    .rules ul li strong {
        font-size: 14px;
        padding: 0 0 0 10px;
    }
    .rules ul > :nth-child(even) {
        flex-direction: row;
    }
    .rules ul > :nth-child(even) strong {
        text-align: left;
    }
    .steps {
        margin: 25px 0 0 0;
        padding: 0 10px 10px 0;
    }
    .steps .wrapper {
        padding-top: var(--pd25);
        padding-bottom: 90px;
        background-size: auto 100px;
    }
    .steps .wrapper h2 {
        font-size: 18px;
        text-align: center;
    }
    .steps .wrapper ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .steps .wrapper ul li {
        padding: 0 10px 5px;
        margin: 0;
        align-items: center;
        display: flex;
        font-weight: 400;
        font-size: 12px;
    }
    .step h3 {
        font-weight: 700;
        font-size: 16px;
    }
    .faq {
        margin: 25px auto 0;
    }
    .faq h2 {
        text-align: center;
        font-size: 18px;
        margin: 0 0 15px;
    }
    .faq__item {
        margin: 0 0 10px;
        padding: 20px;
    }
    .faq__item__header {
        font-weight: 700;
        font-size: 14px;
    }
    .reviews {
        padding: 25px 0;
    }
    .reviews .wrapper h2 {
        font-size: 18px;
    }
    .reviews__slick {
        margin: 15px 0 0 0;
    }
    .reviews__slick__item {
        height: auto;
    }
    .reviews__slick__item__wrapper {
        padding: 15px 10px;
    }
    .reviews__slick__item svg {
        width: 24px;
    }
    .reviews__slick__item__text {
        margin: 10px 0;
    }
    .contacts {
        padding: 20px 0 0 0;
    }
    .contacts .wrapper {
        flex-direction: column;
    }
    .contacts__content,
    .contacts__map {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .blocker {
        padding: 20px 0;
    }
    .modal__reserv__wrapper {
        flex-direction: column;
    }
    .modal__reserv__info {
        width: 100%;
        padding: 10px 10px 0;
    }
    .modal__reserv__form {
        width: 100%;
        padding: 15px 10px;
    }
    .modal__reserv__form__title {
        text-transform: none;;
    }
    .modal__reserv__info h2 {
        font-size: 16px;
        text-align: center;
    }
    .modal__reserv__info__img {
        height: 65px;
        margin: 0 0 5px;
    }
    .modal__reserv__info__item__header span {
        font-size: 14px;
        font-weight: 500;
    }
    .modal__reserv__info__item__header svg {
        width: 14px;
        height: 14px;
        margin: 0 5px 0 0;
    }
    .modal__reserv__info__item__header {
        padding: 10px;
    }
    .modal__reserv__info__item__content table td {
        padding: 5px;
        font-size: 12px;
    }
    .modal__reserv__info__item__content > p {
        padding: 7px 5px 0;
        font-size: 12px;
    }
    .modal__reserv__form__col label {
        padding: 5px 5px 0;
    }
    .modal__reserv__form__col input, .modal__reserv__form__col textarea, .modal__reserv__form__col select {
        padding: 5px 5px 8px;
        font-size: 12px;
    }
    .modal__reserv__form form button {
        padding: 15px 0;
        font-size: 15px;
        font-weight: 500;
    }
    .modal__reserv__form__info {
        font-size: 12px;
    }
    .msgs {
        right: 10px;
        bottom: 10px;
        gap: 5px 0;
    }
    .msgs a {
        width: 32px;
        height: 32px;
    }
}