@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
    display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
    display: none;
}

body {
    line-height: 1;
}

menu, ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@font-face {
    font-family: 'Bounded Variable';
    src: url("../fonts/bounded/bounded-variable.ttf") format("truetype");
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

html {
    font-size: 16px;
}

body {
    font-family: "Bounded Variable", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
}

@media (min-width: 1300px) {
    body {
        font-size: 1.125rem;
    }
}

input, button, textarea {
    font-family: inherit;
}

.h2 {
    font-size: 1.375rem;
    line-height: 1.24;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .02em;
}

@media (min-width: 1080px) {
    .h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1300px) {
    .h2 {
        font-size: 2.75rem;
    }
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    background-color: #1E1E1E;
}

.main, .page {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page {
    -webkit-transition: background-color 0.2s ease, -webkit-filter 0.2s ease;
    transition: background-color 0.2s ease, -webkit-filter 0.2s ease;
    transition: background-color 0.2s ease, filter 0.2s ease;
    transition: background-color 0.2s ease, filter 0.2s ease, -webkit-filter 0.2s ease;
}

.page--blur {
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-filter: blur(15px);
    filter: blur(15px);
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Для вебкит-браузеров (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #FC1A2F;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d81629;
}

/* Для Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #FC1A2F transparent;
}

/* Для старых версий Firefox (если нужно) */
* {
    scrollbar-face-color: #FC1A2F;
    scrollbar-track-color: transparent;
    scrollbar-width: thin;
}

.swiper-wrapper {
    height: unset;
}

@-webkit-keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    20%,
    60% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }
    40%,
    80% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
}

@keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    20%,
    60% {
        -webkit-transform: translateX(-4px);
        transform: translateX(-4px);
    }
    40%,
    80% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
}

.container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .container {
        max-width: 1458px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

.section {
    padding-bottom: 2.5rem;
}

.section:not(:first-child) {
    padding-top: 2.5rem;
}

@media (min-width: 1080px) {
    .section {
        padding-bottom: 3.75rem;
    }

    .section:not(:first-child) {
        padding-top: 3.75rem;
    }
}

@media (min-width: 1300px) {
    .section {
        padding-bottom: 5rem;
    }

    .section:not(:first-child) {
        padding-top: 5rem;
    }
}

.button {
    position: relative;
    z-index: 0;
    display: inline-block;
    border: 1px solid;
    padding: 0.8125rem 1.5rem;
    font-size: 1rem;
    line-height: 1.625rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

@media (min-width: 1080px) {
    .button {
        padding: 1.0625rem 1.5rem;
        font-size: 1.25rem;
        line-height: 1.5rem;
    }
}

.button--red {
    border-color: transparent;
    background-image: -webkit-gradient(linear, left top, right top, from(#FC1A2F), to(#FF1A5F));
    background-image: linear-gradient(to right, #FC1A2F, #FF1A5F);
    color: #fff;
}

.button--red:hover {
    border-color: #FC1A2F;
    -webkit-box-shadow: 0 0 10px 10px rgba(255, 26, 95, 0.3);
    box-shadow: 0 0 10px 10px rgba(255, 26, 95, 0.3);
}

.button--outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: transparent;
    color: #fff;
}

.button--outline-white:hover {
    background-color: #fff;
    border-color: #fff;
    color: #1E1E1E;
    -webkit-box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.3);
}

.button--xl {
    padding: 0.6875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.button--sm {
    padding: 0.375rem 1.125rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

@media (min-width: 1080px) {
    .button--sm {
        padding: 0.6875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

.button:disabled {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    cursor: not-allowed;
}

.input {
    padding: 0.8125rem 1rem;
    border: 0.0625rem solid #5C5C5C;
    background-color: transparent;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 300;
    color: #fff;
    -webkit-transition: border-color 0.2s ease;
    transition: border-color 0.2s ease;
}

@media (min-width: 1080px) {
    .input {
        font-size: 1.125rem;
        padding: 1.125rem;
    }
}

.input::-webkit-input-placeholder {
    color: #C1C1C1;
    opacity: 1;
}

.input::-moz-placeholder {
    color: #C1C1C1;
    opacity: 1;
}

.input:-ms-input-placeholder {
    color: #C1C1C1;
    opacity: 1;
}

.input::-ms-input-placeholder {
    color: #C1C1C1;
    opacity: 1;
}

.input::placeholder {
    color: #C1C1C1;
    opacity: 1;
}

.input:focus {
    outline: none;
    border-color: #fff;
}

.form__input {
    display: block;
    width: 100%;
    margin-bottom: 1.5rem;
}

.form__submit {
    width: 100%;
    margin-bottom: 1rem;
}

.modal {
    display: none;
    opacity: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 1rem;
    overflow-y: auto;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.modal::before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.52);
    -webkit-filter: blur(56px);
    filter: blur(56px);
    content: "";
}

.modal--show {
    opacity: 1;
}

.modal__window {
    opacity: 0;
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    position: relative;
    width: 100%;
    max-width: 19.6875rem;
    margin: auto;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

@media (min-width: 1080px) {
    .modal__window {
        max-width: 40rem;
    }
}

@media (min-width: 1080px) {
    .modal--success .modal__window {
        max-width: 35rem;
    }
}

.modal--show .modal__window {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.modal__content-box {
    clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 1.875rem, 100% 100%, 1.875rem 100%, 0 calc(100% - 1.875rem));
    padding: 2.5rem 1.875rem;
    background-color: #252525;
}

@media (min-width: 1080px) {
    .modal__content-box {
        clip-path: polygon(0 0, calc(100% - 3.75rem) 0, 100% 3.75rem, 100% 100%, 3.75rem 100%, 0 calc(100% - 3.75rem));
        padding: 3.75rem;
    }
}

@media (min-width: 1080px) {
    .modal--success .modal__content-box {
        padding: 5rem 3.75rem;
    }
}

.modal__title-box {
    margin-bottom: 1.875rem;
}

@media (min-width: 1080px) {
    .modal__title-box {
        margin-bottom: 2.5rem;
    }
}

.modal__title {
    font-size: 1.0625rem;
    line-height: 1.4;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.modal__title:not(:only-child) {
    margin-bottom: 0.625rem;
}

@media (min-width: 1080px) {
    .modal__title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1080px) {
    .modal--success .modal__title {
        margin-bottom: 2.5rem;
        text-transform: none;
    }
}

.modal__text {
    font-size: 0.875rem;
    line-height: 1.4;
}

@media (min-width: 1080px) {
    .modal__text {
        font-size: 1.375rem;
    }
}

.modal__close {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border: none;
    background-color: transparent;
    color: #fff;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.modal__close:hover {
    color: #FC1A2F;
}

@media (min-width: 1080px) {
    .modal__close {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.modal__close-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.modal__team-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.5rem;
}

.modal__person {
    display: block;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    border: 0.125rem solid #252525;
}

.modal__person:not(:first-child) {
    margin-left: -1.25rem;
}

@media (min-width: 1080px) {
    .modal__person {
        width: 5.75rem;
        height: 5.75rem;
        border: 0.1875rem solid #252525;
    }
}

.modal__person--other {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    background-color: #1E1E1E;
    font-size: 1rem;
    line-height: 1.24;
    font-weight: 500;
}

@media (min-width: 1080px) {
    .modal__person--other {
        font-size: 1.25rem;
    }
}

.modal-fullscreen {
    display: none;
    opacity: 0;
    position: fixed;
    z-index: 900;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1E1E1E;
}

.modal-fullscreen.modal--show {
    opacity: 1;
}

.modal-fullscreen__window {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    width: 100%;
    height: 100vh;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.modal--show .modal-fullscreen__window {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.modal-fullscreen__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding-top: 1.25rem;
    padding-bottom: 5.625rem;
}

@media (min-width: 1080px) {
    .modal-fullscreen__container {
        padding-top: 2.5rem;
    }
}

.modal-fullscreen__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.modal-fullscreen__back-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 0.625rem;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 1rem;
    line-height: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.modal-fullscreen__back-btn:hover {
    color: #fff;
}

.modal-fullscreen__back-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
}

.modal-fullscreen__close-btn {
    display: block;
    width: 1.875rem;
    height: 1.875rem;
    padding: 0;
    border: none;
    background-color: transparent;
    color: #fff;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

@media (min-width: 1080px) {
    .modal-fullscreen__close-btn {
        position: absolute;
        top: 1.875rem;
        right: 1.875rem;
        width: 2.625rem;
        height: 2.625rem;
    }
}

.modal-fullscreen__close-btn:hover {
    color: #FC1A2F;
}

.modal-fullscreen__close-icon {
    display: block;
    width: 1.875rem;
    height: 1.875rem;
}

@media (min-width: 1080px) {
    .modal-fullscreen__close-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.modal-fullscreen__grid {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 100%;
    grid-template: auto / 100%;
    grid-gap: 2rem;
    overflow-y: auto;
}

@media (min-width: 1300px) {
    .modal-fullscreen__grid {
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(0, 1.35fr) 4.25rem minmax(0, 1fr);
        grid-template: auto/minmax(0, 1.35fr) minmax(0, 1fr);
        grid-gap: 4.25rem;
    }
}

.modal-fullscreen__slider-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.modal-fullscreen__main-slider {
    position: relative;
    margin-bottom: 0.5rem;
}

@media (min-width: 1080px) {
    .modal-fullscreen__main-slider {
        margin-bottom: 0.625rem;
    }
}

.modal-fullscreen__main-slide {
    aspect-ratio: 1.42;
}

.modal-fullscreen__main-img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.modal-fullscreen__main-slider-nav {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 1080px) {
    .modal-fullscreen__main-slider-nav {
        left: 0.625rem;
        right: 0.625rem;
    }
}

.modal-fullscreen__main-slider-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background-color: rgba(37, 37, 37, 0.4);
    color: #fff;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

@media (min-width: 1080px) {
    .modal-fullscreen__main-slider-btn {
        width: 3.75rem;
        height: 3.75rem;
    }
}

.modal-fullscreen__main-slider-btn:hover {
    background-color: #FC1A2F;
}

.modal-fullscreen__main-slider-btn-icon {
    display: block;
    width: 3.125rem;
    height: 3.125rem;
}

.modal-fullscreen__main-slider-btn--next .modal-fullscreen__main-slider-btn-icon {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.modal-fullscreen__nav-slider {
    position: relative;
}

.modal-fullscreen__nav-slide {
    opacity: .6;
    aspect-ratio: 1.48;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.modal-fullscreen__nav-slide:hover {
    opacity: .8;
}

.modal-fullscreen__nav-slide.swiper-slide-thumb-active {
    opacity: 1 !important;
}

.modal-fullscreen__nav-img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.modal-fullscreen__nav-slider-nav {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    pointer-events: none;
}

.modal-fullscreen__nav-slider-btn {
    position: relative;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 2.5rem;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    -webkit-transition: color 0.2s ease, opacity 0.2s ease;
    transition: color 0.2s ease, opacity 0.2s ease;
    pointer-events: all;
}

.modal-fullscreen__nav-slider-btn:disabled {
    opacity: 0;
}

@media (min-width: 1080px) {
    .modal-fullscreen__nav-slider-btn {
        width: 2.5rem;
    }
}

.modal-fullscreen__nav-slider-btn:hover {
    color: #FC1A2F;
}

.modal-fullscreen__nav-slider-btn::before {
    position: absolute;
    z-index: -1;
    top: 0;
    width: 200%;
    height: 100%;
    content: "";
}

.modal-fullscreen__nav-slider-btn--prev::before {
    left: 0;
    background-image: -webkit-gradient(linear, left top, right top, from(#1E1E1E), to(transparent));
    background-image: linear-gradient(to right, #1E1E1E, transparent);
}

.modal-fullscreen__nav-slider-btn--next::before {
    right: 0;
    background-image: -webkit-gradient(linear, right top, left top, from(#1E1E1E), to(transparent));
    background-image: linear-gradient(to left, #1E1E1E, transparent);
}

.modal-fullscreen__nav-slider-btn-icon {
    display: block;
    width: 2.5rem;
    height: 2.5rem;
}

.modal-fullscreen__nav-slider-btn--next .modal-fullscreen__nav-slider-btn-icon {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.modal-fullscreen__btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 3.125rem;
}

.modal-fullscreen__btn-group--mobile {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
}

@media (min-width: 1080px) {
    .modal-fullscreen__btn-group--mobile {
        display: none;
    }
}

.modal-fullscreen__btn-group--desktop {
    display: none;
}

@media (min-width: 1080px) {
    .modal-fullscreen__btn-group--desktop {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.modal-fullscreen__btn {
    width: 100%;
}

@media (min-width: 1080px) {
    .modal-fullscreen__btn {
        max-width: 18rem;
    }
}

.modal-fullscreen__btn-phone {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    -webkit-transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.modal-fullscreen__btn-phone:hover {
    background-color: #fff;
    border-color: #fff;
    color: #1E1E1E;
}

.modal-fullscreen__btn-phone-icon {
    display: block;
    width: 1.625rem;
    height: 1.625rem;
}

.modal-fullscreen__title-box {
    margin-bottom: 1.5625rem;
}

.modal-fullscreen__title {
    font-size: 1.625rem;
    line-height: 1.24;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.modal-fullscreen__title:not(:only-child) {
    margin-bottom: 0.625rem;
}

@media (min-width: 1080px) {
    .modal-fullscreen__title {
        font-size: 3.125rem;
    }
}

.modal-fullscreen__label {
    display: inline-block;
    padding: 0.3125rem 0.75rem;
    background-image: -webkit-gradient(linear, left top, right top, from(#FC1A2F), to(#FF1A5F));
    background-image: linear-gradient(to right, #FC1A2F, #FF1A5F);
    font-size: 1rem;
    line-height: 1.24;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.modal-fullscreen__price-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.625rem;
}

.modal-fullscreen__price-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 1.75rem;
    height: 1.75rem;
}

@media (min-width: 1080px) {
    .modal-fullscreen__price-icon {
        width: 2.625rem;
        height: 2.625rem;
    }
}

.modal-fullscreen__price {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-image: -webkit-gradient(linear, left top, right top, from(#FC1A2F), to(#FF1A5F));
    background-image: linear-gradient(to right, #FC1A2F, #FF1A5F);
    font-size: 1.375rem;
    line-height: 1.24;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .02em;
}

@media (min-width: 1080px) {
    .modal-fullscreen__price {
        font-size: 2.75rem;
    }
}

.modal-fullscreen__note {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
}

.modal-fullscreen__subtitle {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.24;
    font-weight: 600;
}

@media (min-width: 1080px) {
    .modal-fullscreen__subtitle {
        margin-top: 3.75rem;
        margin-bottom: 1.25rem;
        font-size: 1.625rem;
    }
}

.modal-fullscreen__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    grid-template: auto/minmax(0, 1fr) minmax(0, 1.5fr);
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (min-width: 1080px) {
    .modal-fullscreen__list {
        font-size: 1.125rem;
    }
}

.modal-fullscreen__list > * {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 0.0625rem solid #484848;
}

.modal-fullscreen__list > *:nth-child(2n - 1) {
    padding-right: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.modal-fullscreen__list > *:nth-child(2n) {
    padding-left: 0.75rem;
}

.checkbox {
    position: relative;
    display: block;
}

.checkbox__input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.checkbox__text {
    display: inline-block;
    padding-left: 2rem;
    font-size: 0.8125rem;
    line-height: 1.24;
    font-weight: 300;
    color: #848484;
}

.checkbox__text::before {
    position: absolute;
    top: 0.1875rem;
    left: 0;
    width: 20px;
    height: 20px;
    border: 0.0625rem solid #D9DDE9;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    content: "";
}

.checkbox__text:hover::before {
    background-color: #ABB1C3;
}

.checkbox__input:checked + .checkbox__text::before {
    border-color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cg clip-path='url(%23clip0_155_428)'%3E%3Crect x='0.5' y='0.5' width='19' height='19' rx='3.5' fill='white' stroke='%23D9DDE9'/%3E%3Crect width='20' height='20' fill='url(%23paint0_linear_155_428)'/%3E%3Cpath d='M14.4131 5.49469L16 7.08167L8.57656 14.5051L4 9.92866L5.58693 8.34168L8.57656 11.3312L14.4131 5.49469Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_155_428' x1='0' y1='10' x2='20' y2='10' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23FC1A2F'/%3E%3Cstop offset='1' stop-color='%23FF1A5F'/%3E%3C/linearGradient%3E%3CclipPath id='clip0_155_428'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.checkbox__link {
    color: #E1E1E1;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.checkbox__link:hover {
    color: #FC1A2F;
}

.header {
    position: fixed;
    z-index: 888;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
    -webkit-transition: background-color 0.2s ease, padding 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: background-color 0.2s ease, padding 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: background-color 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease;
    transition: background-color 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

@media (min-width: 1080px) {
    .header {
        padding-top: 2.0625rem;
        padding-bottom: 2.0625rem;
    }
}

.header--bg {
    background-color: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(3px);
}

.menu-opened .header {
    background-color: #1E1E1E;
}

.header__container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__logo-link {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    margin-right: 0.625rem;
    width: 5rem;
}

@media (min-width: 1080px) {
    .header__logo-link {
        width: 6.25rem;
    }
}

@media (min-width: 1300px) {
    .header__logo-link {
        margin-right: 1.25rem;
        width: 7.5rem;
    }
}

.header__logo {
    display: block;
    width: 100%;
}

.header__nav-wrap {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 1.25rem;
}

@media (min-width: 1080px) {
    .header__nav-wrap {
        -webkit-box-pack: unset;
        -ms-flex-pack: unset;
        justify-content: unset;
    }
}

.header__nav {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 1080px) {
    .header__nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.875rem;
}

@media (min-width: 1300px) {
    .header__nav-list {
        gap: 2.5rem;
    }
}

.header__nav-link {
    padding: 0.875rem 0;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #fff;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.header__nav-link:hover {
    color: #FC1A2F;
}

.header__phone-link {
    display: inline-block;
    border-color: transparent;
    background-color: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5rem;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

@media (min-width: 1300px) {
    .header__phone-link {
        padding: 0.6875rem 1.5rem;
        font-size: 1.25rem;
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .header__phone-link:hover {
        background-color: #fff;
        border-color: #fff;
        color: #1E1E1E;
        -webkit-box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 10px 10px rgba(255, 255, 255, 0.3);
    }
}

.header__action-btn {
    display: none;
}

@media (min-width: 1080px) {
    .header__action-btn {
        display: inline-block;
    }
}

.header__menu-btn {
    position: relative;
    display: block;
    background-image: -webkit-gradient(linear, left top, right top, from(#FC1A2F), to(#FF1A5F));
    background-image: linear-gradient(to right, #FC1A2F, #FF1A5F);
    width: 2.5rem;
    height: 2.5rem;
    margin-left: 1rem;
    padding: 0;
    border: none;
}

@media (min-width: 1080px) {
    .header__menu-btn {
        display: none;
    }
}

.header__menu-btn-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5rem;
    border-bottom: 0.125rem solid #fff;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}

.header__menu-btn-line:nth-child(1) {
    -webkit-transform: translate(-50%, -0.4375rem);
    -ms-transform: translate(-50%, -0.4375rem);
    transform: translate(-50%, -0.4375rem);
}

.header__menu-btn-line:nth-child(2) {
    -webkit-transform: translate(-50%, -0.0625rem);
    -ms-transform: translate(-50%, -0.0625rem);
    transform: translate(-50%, -0.0625rem);
}

.header__menu-btn-line:nth-child(3) {
    -webkit-transform: translate(-50%, 0.3125rem);
    -ms-transform: translate(-50%, 0.3125rem);
    transform: translate(-50%, 0.3125rem);
}

.menu-opened .header__menu-btn-line:nth-child(1) {
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
    -ms-transform: translate(-50%, 0) rotate(-45deg);
    transform: translate(-50%, 0) rotate(-45deg);
}

.menu-opened .header__menu-btn-line:nth-child(2) {
    opacity: 0;
}

.menu-opened .header__menu-btn-line:nth-child(3) {
    -webkit-transform: translate(-50%, 0) rotate(45deg);
    -ms-transform: translate(-50%, 0) rotate(45deg);
    transform: translate(-50%, 0) rotate(45deg);
}

.mobile-menu {
    position: fixed;
    z-index: 887;
    top: 0;
    left: 0;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 7.5rem 1.5625rem;
    background-color: #1E1E1E;
    overflow-y: auto;
    opacity: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.menu-opened .mobile-menu {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mobile-menu__container {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mobile-menu__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu__nav-el {
    display: block;
}

.mobile-menu__nav-link {
    display: block;
    width: 100%;
}

.mobile-menu__bottom {
    margin-top: auto;
}

.mobile-menu__action-btn {
    margin-top: 1.5rem;
    width: 100%;
}

.footer {
    position: relative;
    padding-top: 3.75rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .footer {
        margin-top: 5.625rem;
        padding-top: 6.25rem;
    }
}

.footer::after {
    display: block;
    width: 100%;
    aspect-ratio: 3.5;
    background-image: url("../images/common/footer-bg.svg");
    background-size: auto 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    content: "";
}

@media (min-width: 768px) {
    .footer {
        padding-bottom: 3.5625rem;
    }

    .footer::after {
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%) translateX(-4%);
        -ms-transform: translateX(-50%) translateX(-4%);
        transform: translateX(-50%) translateX(-4%);
        width: 109%;
        height: 100%;
        aspect-ratio: unset;
    }
}

.footer__container {
    position: relative;
    z-index: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__container {
        text-align: left;
    }
}

.footer__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.25rem;
    margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
    .footer__grid {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 1.5rem;
        margin-bottom: 10.25rem;
    }
}

.footer__title {
    margin-bottom: 1rem;
}

.footer__text {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .footer__text {
        margin-bottom: 1.875rem;
        font-size: 1rem;
    }
}

.footer__action-btn {
    width: 100%;
}

@media (min-width: 768px) {
    .footer__action-btn {
        max-width: 16.5rem;
    }
}

.footer__contacts-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__phone-link {
    margin-bottom: 10px;
    white-space: nowrap;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

@media (min-width: 768px) {
    .footer__phone-link {
        margin-bottom: 32px;
    }
}

.footer__phone-link:hover {
    color: #FC1A2F;
}

.footer__social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.4375rem;
}

@media (min-width: 1080px) {
    .footer__social-list {
        gap: 0.75rem;
    }
}

.footer__social-el {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.footer__social-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
}

.footer__social-link:hover {
    color: #FC1A2F;
}

@media (min-width: 768px) {
    .footer__social-link {
        width: 3.75rem;
        height: 3.75rem;
    }
}

.footer__social-icon {
    display: block;
    width: 100%;
    height: 100%;
}

.footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .footer__bottom {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 3.75rem;
        margin-bottom: 0;
    }
}

.footer__link {
    font-size: 0.75rem;
    line-height: 1.24;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .footer__link {
        font-size: 1rem;
    }
}

.footer__link:hover {
    color: #FC1A2F;
}

.slider-nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 0.625rem;
}

.slider-nav__btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 3.75rem;
    height: 3.75rem;
    background-color: #252525;
    border: none;
    color: #fff;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

.slider-nav__btn:hover {
    background-color: #FC1A2F;
}

.slider-nav__btn-icon {
    display: block;
    width: 3.125rem;
    height: 3.125rem;
}

.slider-nav__btn--next .slider-nav__btn-icon {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.swiper-pagination-progressbar {
    position: relative;
    left: unset;
    top: unset;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-image: -webkit-gradient(linear, left top, right top, from(#FC1A2F), to(#FF1A5F));
    background-image: linear-gradient(to right, #FC1A2F, #FF1A5F);
}

.faq {
    overflow: hidden;
}

.faq__item {
    border-bottom: 1px solid #333;
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.4375rem;
    cursor: pointer;
}

@media (min-width: 1080px) {
    .faq__header {
        padding: 1.4375rem 2rem;
    }
}

.faq__title {
    font-size: 1rem;
    line-height: 1.24;
    font-weight: 600;
}

@media (min-width: 1080px) {
    .faq__title {
        font-size: 1.25rem;
    }
}

.faq__toggle {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 2rem;
    height: 2rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (min-width: 1080px) {
    .faq__toggle {
        width: 2.625rem;
        height: 2.625rem;
    }
}

.faq__icon {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.faq__item--active .faq__icon {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.faq__panel {
    display: none;
    padding: 0 1.4375rem 1.4375rem;
}

@media (min-width: 1080px) {
    .faq__panel {
        padding: 0 2rem 2rem;
    }
}

.faq__item--active .faq__panel {
    display: block;
}

.faq__content {
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 1080px) {
    .faq__content {
        font-size: 1rem;
    }
}

.section-hero {
    position: relative;
    z-index: 0;
    padding-top: 5rem;
    padding-bottom: 12.5rem;
    overflow: hidden;
}

@media (min-width: 1080px) {
    .section-hero {
        padding-top: 10.625rem;
        padding-bottom: 12.5rem;
    }
}

.section-hero::after {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33%;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#1E1E1E), to(transparent));
    background-image: linear-gradient(to top, #1E1E1E, transparent);
    content: "";
}

.section-hero__bg {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 50%;
    background-image: url("../images/section-hero/bg.webp");
    background-size: auto 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(3.125rem, black), color-stop(black), to(transparent));
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3.125rem, black calc(100% - 3.125rem), transparent 100%);
    mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(3.125rem, black), color-stop(black), to(transparent));
    mask-image: linear-gradient(to right, transparent 0%, black 3.125rem, black calc(100% - 3.125rem), transparent 100%);
}

@media (min-width: 1080px) {
    .section-hero__bg {
        bottom: 0;
        top: unset;
        width: 120rem;
        height: 100%;
    }
}

.section-hero__title {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-image: -webkit-gradient(linear, left top, right top, from(#FC1A2F), to(#FF1A5F));
    background-image: linear-gradient(to right, #FC1A2F, #FF1A5F);
    line-height: 1.1;
    font-weight: 700;
}

@media (min-width: 1080px) {
    .section-hero__title {
        line-height: 1.2;
    }
}

.section-hero__grid {
    margin-top: -0.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .section-hero__grid {
        margin-top: -0.4375rem;
    }
}

@media (min-width: 1080px) {
    .section-hero__grid {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 1rem;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.section-hero__content-col {
    width: 100%;
}

@media (min-width: 1080px) {
    .section-hero__content-col {
        max-width: 40.75rem;
    }
}

.section-hero__subtitle {
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 500;
}

@media (min-width: 1080px) {
    .section-hero__subtitle {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1300px) {
    .section-hero__subtitle {
        font-size: 3.125rem;
    }
}

.section-hero__text {
    font-size: 1.125rem;
    line-height: 1.375rem;
}

@media (min-width: 1080px) {
    .section-hero__text {
        font-size: 1.5rem;
        line-height: 1.875rem;
    }
}

.section-hero__action-btn {
    width: 100%;
    margin-top: 2.25rem;
}

@media (min-width: 1080px) {
    .section-hero__action-btn {
        width: auto;
        margin-top: 5.625rem;
    }
}

.section-hero__image-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.section-hero__car-img {
    display: block;
    width: 100%;
    -webkit-transform: scale(1.32) translate(-8%, -5%);
    -ms-transform: scale(1.32) translate(-8%, -5%);
    transform: scale(1.32) translate(-8%, -5%);
    margin-bottom: 3.125rem;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

@media (min-width: 1080px) {
    .section-hero__car-img {
        -webkit-transform: scale(1.32) translate(-9%, 15%);
        -ms-transform: scale(1.32) translate(-9%, 15%);
        transform: scale(1.32) translate(-9%, 15%);
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
    }
}

.section-hero__price {
    clip-path: polygon(0 0, calc(100% - 0.8125rem) 0, 100% 0.8125rem, 100% 100%, 0.8125rem 100%, 0 calc(100% - 0.8125rem));
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-top: -0.75rem;
    display: inline-block;
    padding: 0 0.875rem;
    font-size: 1.5rem;
    line-height: 2.125rem;
    font-weight: 900;
    background-color: #fff;
    color: #FC1A2F;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 1080px) {
    .section-hero__price {
        clip-path: polygon(0 0, calc(100% - 1.75rem) 0, 100% 1.75rem, 100% 100%, 1.75rem 100%, 0 calc(100% - 1.75rem));
        margin-top: -2.1875rem;
        padding: 0 1.875rem;
        font-size: 2.8125rem;
        line-height: 4.25rem;
    }
}

.section-hero__price small {
    font-size: 0.75rem;
}

@media (min-width: 1080px) {
    .section-hero__price small {
        font-size: 1.875rem;
    }
}

.section-advantages {
    position: relative;
    z-index: 1;
    margin-top: -6.25rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 1080px) {
    .section-advantages {
        margin-bottom: 5.625rem;
    }
}

.section-advantages__list {
    clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 1.875rem, 100% 100%, 1.875rem 100%, 0 calc(100% - 1.875rem));
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: (minmax(0, 1fr)) [ 2 ];
    grid-template: auto/repeat(2, minmax(0, 1fr));
    padding: 2.5rem 1rem;
    background-color: #252525;
}

@media (min-width: 1080px) {
    .section-advantages__list {
        clip-path: polygon(0 0, calc(100% - 2.5rem) 0, 100% 2.5rem, 100% 100%, 2.5rem 100%, 0 calc(100% - 2.5rem));
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 1rem;
    }
}

@media (min-width: 1300px) {
    .section-advantages__list {
        gap: 1.875rem;
        padding: 3.375rem 1.875rem;
    }
}

.section-advantages__elem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 0.625rem;
    font-size: 0.8125rem;
    line-height: 1.5em;
}

.section-advantages__elem:nth-child(2), .section-advantages__elem:nth-child(5) {
    padding-left: 0.9375rem;
    border-left: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1080px) {
    .section-advantages__elem {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 1rem;
        line-height: 1.24;
    }

    .section-advantages__elem:nth-child(2), .section-advantages__elem:nth-child(5) {
        border-left: unset;
    }

    .section-advantages__elem:not(:first-child) {
        padding-left: 2rem;
        border-left: 0.0625rem solid rgba(255, 255, 255, 0.1);
    }
}

.section-advantages__devider,
.section-offer__horizontal-separator {
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    margin: 2rem 0;
}

@media (min-width: 1080px) {
    .section-advantages__devider,
    .section-offer__horizontal-separator {
        display: none;
    }
}

.section-advantages__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
}

@media (min-width: 1080px) {
    .section-advantages__icon {
        width: 3rem;
        height: 3rem;
    }
}

@media (min-width: 1300px) {
    .section-advantages__icon {
        width: 3.75rem;
        height: 3.75rem;
    }
}

.section-options {
    overflow: hidden;
}

.section-options__title {
    margin-bottom: 1.5rem;
}

@media (min-width: 1080px) {
    .section-options__title {
        margin-bottom: 2.5rem;
    }
}

.section-options__slider {
    overflow: visible;
}

@media (min-width: 1080px) {
    .section-options__slider {
        overflow: hidden;
    }
}

.section-options__card {
    position: relative;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.375rem;
    aspect-ratio: .85;
}

@media (min-width: 1080px) {
    .section-options__card {
        padding: 2.5rem;
    }
}

.section-options__card::before {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 62%;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(26%, #1E1E1E), to(transparent));
    background-image: linear-gradient(to top, #1E1E1E 26%, transparent);
    opacity: .82;
    content: "";
}

.section-options__card-bg {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-options__card-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-options__card-title {
    margin-bottom: 1.375rem;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

@media (min-width: 1080px) {
    .section-options__card-title {
        margin-bottom: 1.875rem;
        font-size: 1.875rem;
    }
}

@media (min-width: 1080px) {
    .section-steps__grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(0, 1fr) 9.375rem minmax(0, 1.21fr);
        grid-template: auto/minmax(0, 1fr) minmax(0, 1.21fr);
        grid-gap: 9.375rem;
    }
}

@media (min-width: 1080px) {
    .section-steps__video-wrap {
        position: sticky;
        top: 8.75rem;
    }
}

.section-steps__title {
    margin-bottom: 1.5rem;
}

@media (min-width: 1080px) {
    .section-steps__title {
        margin-bottom: 2.5rem;
    }
}

.section-steps__text {
    margin-bottom: 1.875rem;
    font-size: 1rem;
    line-height: 1.4;
}

@media (min-width: 1080px) {
    .section-steps__text {
        margin-bottom: 3.75rem;
        font-size: 1.375rem;
    }
}

.section-steps__video-box {
    position: relative;
    width: 100%;
    max-width: 20.625rem;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
}

.section-steps__video-box--mobile {
    margin: 0 auto;
}

.section-steps__video-box--desktop {
    display: none;
}

@media (min-width: 1080px) {
    .section-steps__video-box--desktop {
        display: block;
    }
}

@media (min-width: 1080px) {
    .section-steps__video-box--mobile {
        display: none;
    }
}

.section-steps__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 102%;
    height: 102%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-steps__video-btn {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    color: #fff;
    -webkit-transition: color 0.2s ease, opacity 0.2s ease;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.section-steps__video-btn:hover {
    color: #FC1A2F;
}

.section-steps__video-box--active .section-steps__video-btn {
    opacity: 0;
}

.section-steps__video-btn-icon {
    display: block;
    width: 60px;
    height: 60px;
}

.section-steps__video-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: rotate(-90deg) scale(0.95);
    -ms-transform: rotate(-90deg) scale(0.95);
    transform: rotate(-90deg) scale(0.95);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.section-steps__video-progress-el {
    position: absolute;
    width: 100%;
    height: 100%;
}

.section-steps__video-progress-circle {
    stroke-linecap: round;
    -webkit-transition: stroke-dashoffset 0.3s linear;
    transition: stroke-dashoffset 0.3s linear;
    stroke: #fff;
    stroke-width: 0.25rem;
    fill: transparent;
    -webkit-filter: drop-shadow(0 0 0.125rem rgba(30, 30, 30, 0.5));
    filter: drop-shadow(0 0 0.125rem rgba(30, 30, 30, 0.5));
}

.section-steps__content-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.875rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 1080px) {
    .section-steps__content-col {
        margin-bottom: 0;
    }
}

.section-steps__elem {
    clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 1.875rem, 100% 100%, 1.875rem 100%, 0 calc(100% - 1.875rem));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.875rem 1.625rem;
    background-color: #252525;
}

@media (min-width: 1080px) {
    .section-steps__elem {
        clip-path: polygon(0 0, calc(100% - 3.75rem) 0, 100% 3.75rem, 100% 100%, 3.75rem 100%, 0 calc(100% - 3.75rem));
        min-height: 20.625rem;
        padding: 2.5rem;
    }
}

.section-steps__elem-title-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.625rem;
    margin-bottom: 3.75rem;
}

@media (min-width: 1080px) {
    .section-steps__elem-title-box {
        margin-bottom: 1.875rem;
    }
}

.section-steps__elem-title {
    font-size: 1.125rem;
    line-height: 1.24;
    font-weight: 600;
}

@media (min-width: 1080px) {
    .section-steps__elem-title {
        font-size: 1.625rem;
    }
}

.section-steps__elem-counter {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 4.6875rem;
    height: 2.375rem;
}

@media (min-width: 1080px) {
    .section-steps__elem-counter {
        width: 10.8125rem;
        height: 5.375rem;
    }
}

.section-steps__elem-text-box {
    max-width: 32.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1080px) {
    .section-steps__elem-text-box {
        font-size: 1.125rem;
    }
}

.section-help__title {
    margin-bottom: 1.5rem;
}

@media (min-width: 1080px) {
    .section-help__title {
        margin-bottom: 2.5rem;
    }
}

.section-help__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 100%;
    grid-template: auto / 100%;
    grid-gap: 1.25rem;
}

@media (min-width: 1080px) {
    .section-help__grid {
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(0, 1fr) 1.25rem minmax(0, 1fr);
        grid-template: auto/repeat(2, minmax(0, 1fr));
    }
}

.section-help__card {
    clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 1.875rem, 100% 100%, 1.875rem 100%, 0 calc(100% - 1.875rem));
    padding: 1.875rem 1.625rem;
    background-color: #252525;
}

@media (min-width: 1080px) {
    .section-help__card {
        clip-path: polygon(0 0, calc(100% - 3.75rem) 0, 100% 3.75rem, 100% 100%, 3.75rem 100%, 0 calc(100% - 3.75rem));
        padding: 3rem 2.5rem;
    }
}

.section-help__card-icon {
    display: block;
    width: 3.375rem;
    height: 3.375rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 1080px) {
    .section-help__card-icon {
        width: 5rem;
        height: 5rem;
        margin-bottom: 3.75rem;
    }
}

.section-help__card-title {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.24;
    font-weight: 600;
}

@media (min-width: 1080px) {
    .section-help__card-title {
        font-size: 1.625rem;
    }
}

.section-help__card-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1080px) {
    .section-help__card-text {
        font-size: 1.125rem;
    }
}

.section-form {
    position: relative;
    z-index: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 1080px) {
    .section-form {
        margin-top: 5rem;
        margin-bottom: 5rem;
        padding-top: 7.5rem;
        padding-bottom: 7.3125rem;
    }
}

.section-form__bg {
    display: block;
    width: 100%;
}

@media (min-width: 1080px) {
    .section-form__bg {
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.section-form__box {
    clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 1.875rem, 100% 100%, 1.875rem 100%, 0 calc(100% - 1.875rem));
    width: 100%;
    max-width: 40rem;
    margin: -6rem auto 0;
    padding: 2.5rem 1.875rem;
    background-color: #252525;
}

@media (min-width: 1080px) {
    .section-form__box {
        clip-path: polygon(0 0, calc(100% - 3.75rem) 0, 100% 3.75rem, 100% 100%, 3.75rem 100%, 0 calc(100% - 3.75rem));
        margin: 0;
        padding: 3.75rem;
    }
}

.section-form__title-box {
    margin-bottom: 1.875rem;
}

@media (min-width: 1080px) {
    .section-form__title-box {
        margin-bottom: 2.5rem;
    }
}

.section-form__title {
    font-size: 1.25rem;
    line-height: 1.24;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.section-form__title:not(:only-child) {
    margin-bottom: 0.625rem;
}

@media (min-width: 1080px) {
    .section-form__title {
        font-size: 2.25rem;
    }
}

.section-form__text {
    font-size: 1rem;
    line-height: 1.4;
}

@media (min-width: 1080px) {
    .section-form__text {
        font-size: 1.375rem;
    }
}

.section-reviews__title {
    max-width: 63.125rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 1080px) {
    .section-reviews__title {
        margin-bottom: 2.5rem;
    }
}

.section-reviews__list {
    margin-bottom: 2.5rem;
}

@media (min-width: 1080px) {
    .section-reviews__list {
        margin-bottom: 2.5rem;
    }
}

.section-reviews__card {
    position: relative;
    padding: 1.25rem 0;
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: opacity 0.3s 0.2s ease, -webkit-transform 0.3s 0.2s ease;
    transition: opacity 0.3s 0.2s ease, -webkit-transform 0.3s 0.2s ease;
    transition: opacity 0.3s 0.2s ease, transform 0.3s 0.2s ease;
    transition: opacity 0.3s 0.2s ease, transform 0.3s 0.2s ease, -webkit-transform 0.3s 0.2s ease;
}

@media (min-width: 1080px) {
    .section-reviews__card {
        padding: 2.5rem 0;
    }

    .section-reviews__card:not(:last-child) {
        border-bottom: 0.0625rem solid #484848;
    }
}

.section-reviews__card--hidden {
    display: none;
    opacity: 0;
    -webkit-transform: translateY(20px) scale(0.7);
    -ms-transform: translateY(20px) scale(0.7);
    transform: translateY(20px) scale(0.7);
}

.section-reviews__card-box {
    clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 1.875rem, 100% 100%, 1.875rem 100%, 0 calc(100% - 1.875rem));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.875rem;
    margin-bottom: 0.875rem;
    padding: 1.25rem 1.25rem 1.875rem;
    background-color: #252525;
}

@media (min-width: 1080px) {
    .section-reviews__card-box {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(0, 1fr) 3.75rem minmax(0, 1.29fr);
        grid-template: auto/minmax(0, 1fr) minmax(0, 1.29fr);
        grid-gap: 3.75rem;
        margin-bottom: 0;
        padding: 0;
        background-color: unset;
        clip-path: unset;
    }
}

@media (min-width: 1300px) {
    .section-reviews__card-box {
        grid-gap: 6.875rem;
    }
}

.section-reviews__card-img {
    display: block;
    width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-reviews__card-text-box {
    padding: 0 0.625rem;
}

@media (min-width: 1080px) {
    .section-reviews__card-text-box {
        clip-path: polygon(0 0, calc(100% - 3.75rem) 0, 100% 3.75rem, 100% 100%, 3.75rem 100%, 0 calc(100% - 3.75rem));
        margin-bottom: 2.5rem;
        padding: 2.5rem 3.125rem;
        background-color: #252525;
    }
}

.section-reviews__card-text {
    font-size: 1rem;
    line-height: 1.5;
}

@media (min-width: 1080px) {
    .section-reviews__card-text {
        font-size: 1.5rem;
    }
}

.section-reviews__card-name {
    display: block;
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.0625rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1080px) {
    .section-reviews__card-name {
        font-size: 1.5rem;
        line-height: 1.875rem;
        margin-top: 2.5rem;
    }
}

.section-reviews__card-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.25rem;
}

@media (min-width: 1080px) {
    .section-reviews__card-list {
        gap: 1.25rem 3.75rem;
    }
}

.section-reviews__card-list--mobile {
    padding: 0 0.9375rem;
}

@media (min-width: 1080px) {
    .section-reviews__card-list--mobile {
        display: none;
    }
}

.section-reviews__card-list--desktop {
    display: none;
}

@media (min-width: 1080px) {
    .section-reviews__card-list--desktop {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.section-reviews__card-list-el {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.625rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1080px) {
    .section-reviews__card-list-el {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 1.125rem;
    }
}

.section-reviews__card-icon {
    display: block;
    width: 1.875rem;
    height: 1.875rem;
}

@media (min-width: 1080px) {
    .section-reviews__card-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
}

.section-reviews__list-btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.section-reviews__list-btn {
    width: 100%;
    max-width: 190px;
}

@media (min-width: 1080px) {
    .section-reviews__list-btn {
        width: auto;
        max-width: unset;
    }
}

.section-offer__title {
    margin-bottom: 1.5rem;
}

@media (min-width: 1080px) {
    .section-offer__title {
        max-width: 44.0625rem;
        margin-bottom: 2.5rem;
    }
}

.section-offer__grid {
    clip-path: polygon(0 0, calc(100% - 1.875rem) 0, 100% 1.875rem, 100% 100%, 1.875rem 100%, 0 calc(100% - 1.875rem));
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: minmax(0, 1fr) 1rem minmax(0, 1fr);
    grid-template: auto/repeat(2, minmax(0, 1fr));
    grid-gap: 1rem;
    padding: 2.5rem 1rem;
    background-color: #252525;
}

@media (min-width: 1080px) {
    .section-offer__grid {
        clip-path: polygon(0 0, calc(100% - 3.75rem) 0, 100% 3.75rem, 100% 100%, 3.75rem 100%, 0 calc(100% - 3.75rem));
        padding: 2.5rem 1.25rem;
        grid-gap: 1.875rem;
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(0, 1fr) 1.875rem minmax(0, 1fr) 1.875rem minmax(0, 1fr) 1.875rem minmax(0, 1fr);
        grid-template: auto/repeat(4, minmax(0, 1fr));
    }
}

.section-offer__card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 0.375rem;
}

.section-offer__card::after {
    position: absolute;
    right: -0.5rem;
    top: 0;
    bottom: 0;
    border-right: 0.0625rem solid rgba(255, 255, 255, 0.08);
}

.section-offer__card:nth-child(1)::after, .section-offer__card:nth-child(4)::after {
    content: "";
}

@media (min-width: 1080px) {
    .section-offer__card::after {
        right: -0.875rem;
    }

    .section-offer__card:nth-child(1)::after, .section-offer__card:nth-child(4)::after {
        content: none;
    }

    .section-offer__card:not(:last-child) {
        padding: 0 1.25rem;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .section-offer__card:not(:last-child)::after {
        content: "";
    }
}

.section-offer__card-icon {
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 1080px) {
    .section-offer__card-icon {
        width: 3.75rem;
        height: 3.75rem;
        margin-bottom: 5.25rem;
    }
}

.section-offer__card-text {
    font-size: 0.875rem;
    line-height: 1.4;
}

@media (min-width: 1080px) {
    .section-offer__card-text {
        font-size: 1.25rem;
        line-height: 1.24;
    }
}

.section-offer__card-text br {
    display: none;
}

@media (min-width: 1080px) {
    .section-offer__card-text br {
        display: block;
    }
}

.section-offer__devider {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    margin: 1.5rem 0;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1080px) {
    .section-offer__devider {
        display: none;
    }
}

.section-team {
    overflow: hidden;
}

.section-team__title {
    margin-bottom: 1.5rem;
}

@media (min-width: 1080px) {
    .section-team__title {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 768px) {
    .section-team__title br {
        display: none;
    }
}

.section-team__img {
    display: block;
    width: 100%;
    margin-bottom: 2.5rem;
}

@media (min-width: 1080px) {
    .section-team__img {
        margin-bottom: 5rem;
    }
}

.section-team__slider-el {
    overflow: visible;
}

@media (min-width: 1080px) {
    .section-team__slider-el {
        overflow: hidden;
    }
}

.section-team__slider-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-team__text {
    font-size: 1rem;
    line-height: 1.4;
}

@media (min-width: 1080px) {
    .section-team__text {
        max-width: 43.125rem;
        font-size: 1.375rem;
    }
}

.section-team__btn-box {
    display: none;
}

@media (min-width: 1080px) {
    .section-team__btn-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.section-team__slide {
    clip-path: polygon(0 0, calc(100% - 1.25rem) 0, 100% 1.25rem, 100% 100%, 1.25rem 100%, 0 calc(100% - 1.25rem));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.875rem;
    background-color: #252525;
    height: auto;
}

@media (min-width: 1080px) {
    .section-team__slide {
        clip-path: polygon(0 0, calc(100% - 1.25rem) 0, 100% 1.25rem, 100% 100%, 1.25rem 100%, 0 calc(100% - 1.25rem));
        padding: 1.25rem 1.25rem 2.5rem;
    }
}

.section-team__slide-photo-box {
    aspect-ratio: .78;
    margin-bottom: 1rem;
}

@media (min-width: 1080px) {
    .section-team__slide-photo-box {
        margin-bottom: 1.5rem;
    }
}

.section-team__slide-photo {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-team__slide-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 0.625rem;
}

.section-team__slide-name {
    margin-bottom: 0.875rem;
    font-size: 1rem;
    left: 1.5em;
    font-weight: 500;
}

@media (min-width: 1080px) {
    .section-team__slide-name {
        font-size: 1.125rem;
    }
}

.section-team__slide-job {
    margin-top: auto;
    font-size: 0.75rem;
    line-height: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1080px) {
    .section-team__slide-job {
        font-size: 0.875rem;
        line-height: 1.0625rem;
    }
}

@media (min-width: 1080px) {
    .section-faq__box {
        width: 100%;
        max-width: 58.75rem;
        margin: 0 auto;
    }
}

.section-faq__title {
    margin-bottom: 1.5rem;
}

@media (min-width: 1080px) {
    .section-faq__title {
        margin-bottom: 2.5rem;
        text-align: center;
    }
}

.section-other {
    overflow: hidden;
}

.section-other__slider-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1080px) {
    .section-other__slider-top {
        margin-bottom: 2.5rem;
    }
}

.section-other__btn-box {
    display: none;
}

@media (min-width: 1080px) {
    .section-other__btn-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.section-other__slider-el {
    margin-bottom: 1.75rem;
    overflow: visible;
}

@media (min-width: 1080px) {
    .section-other__slider-el {
        overflow: hidden;
    }
}

.section-other__slide {
    position: relative;
    z-index: 0;
    aspect-ratio: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.875rem;
}

.section-other__slide::after {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 78%;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(26%, #1E1E1E), to(transparent));
    background-image: linear-gradient(to top, #1E1E1E 26%, transparent);
    opacity: .8;
    content: "";
}

.section-other__slide-bg {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-other__slide-title {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.24;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em;
    text-align: center;
}

@media (min-width: 1080px) {
    .section-other__slide-title {
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
    }
}

/*# sourceMappingURL=main.css.map */
