html {
    scroll-behavior: smooth;
}

body,
* {
    font-family: "Montserrat", sans-serif;
}

:root {
    --primary: #0b457f;
    --secondary: #6796b2;
}

strong {
    font-weight: 700;
}

.btn {
    background: none;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    filter: contrast(1.5);
}

.btn-outline {
    filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.2));
    border: 2px solid var(--primary);
    color: var(--primary);
    background: #fff;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    border: 0;
}

.input {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 12px;
    text-transform: uppercase;
    font-size: 22px;
    color: #fff;
    border-bottom: 2px solid #fff;
    width: 100%;
}

.input-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.container {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
    }
}

.header {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    padding: 18px 0 26px;
    background: linear-gradient(
        180deg,
        #6a98b3 0%,
        rgba(255, 255, 255, 0) 100%
    );
    display: flex;
}

.header__info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
    color: var(--primary);
}

.header__info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 12px;
    border-bottom: 1px solid #fff;
}

.header__logo img {
    width: 100%;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 90px;
    color: #fff;
}

.header__nav a:hover {
    text-decoration: underline;
}

.header__btn {
    height: 40px;
    width: 182px;
}

.burger {
    display: none;
}

.menu {
    display: none;
}

.hero {
    /* height: 806px; */
    aspect-ratio: 1920/806;
    background-image: url(../img/webp/hero.webp);
    background-size: cover;
    color: #fff;
}

.hero span {
    color: var(--primary);
}

.hero__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 130px 0 20px;
}

.hero__title {
    font-size: 62px;
    font-weight: 800;
}

.hero__title span {
    text-transform: uppercase;
}

.hero__list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 34px;
}

.hero__list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 28px;
    font-weight: 600;
}

.hero__list li::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 0 13px 18px;
    border-color: transparent transparent transparent var(--primary);
}

.hero__car {
    display: none;
}

.hero__action > span {
    font-size: 24px;
    font-weight: 500;
}

.hero__form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-top: 50px;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero__form .input {
    height: 52px;
}

.hero__form .btn {
    height: 52px;
    font-size: 24px;
    max-width: 435px;
    margin-left: 40px;
}

.agreement {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agreement input {
    /* display: none; */
    opacity: 0;
    position: absolute;
}

.agreement input + span {
    width: 11px;
    min-width: 11px;
    height: 11px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.agreement input:checked + span::after {
    content: "";
    width: 5px;
    height: 5px;
    background-color: #fff;
}

.agreement p {
    font-size: 14px;
}

.agreement a {
    text-decoration: underline;
}

.agreement-primary input + span {
    border-color: var(--primary);
}

.agreement-primary input:checked + span::after {
    background-color: var(--primary);
}

.agreement-primary p {
    color: var(--primary);
}

.hero__form .agreement {
    min-width: 435px;
}

.section {
    margin-top: 90px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
}

.models__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
}

.model-card {
    box-shadow: 0px 0px 26px 0px rgba(11, 69, 127, 0.29);
    height: 344px;
    padding: 22px 18px;
    display: grid;
    align-content: space-between;
    grid-template:
        "title prices"
        "image list"
        "buttons buttons";
    grid-template-columns: 1fr 1fr;
    color: var(--primary);
}

.model-card__title {
    grid-area: title;

    font-size: 44px;
    font-weight: 700;
    text-transform: uppercase;
}

.model-card__prices {
    grid-area: prices;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--secondary);
    font-weight: 700;
}

.model-card__prices .full-price {
    font-size: 36px;
}

.model-card__prices .month-price {
    font-size: 28px;
    color: var(--secondary);
}

.model-card__image {
    grid-area: image;

    width: 100%;
    max-height: 150px;
}

.model-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.model-card__list {
    grid-area: list;

    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.model-card__list li {
    font-weight: 600;
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-card__list li::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 8px;
    border-color: transparent transparent var(--primary) transparent;
}

.model-card__buttons {
    grid-area: buttons;

    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.model-card__buttons .btn {
    height: 52px;
    font-size: 24px;
}

.filter {
    display: grid;
    grid-template-columns: repeat(2, 436px);
    gap: 15px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 100%;
    width: 24px;
    right: 22px;
    display: flex;
    align-items: center;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b,
.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: var(--secondary) transparent transparent transparent;
    border-width: 12px 12px 0 12px;
    position: static;
    margin: 0;
}

.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent var(--secondary) transparent;
    border-width: 0 12px 12px 12px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: var(--secondary);
    font-size: 24px;
    font-weight: 500;
    padding: 0 22px;
    height: 100%;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single {
    border-color: var(--primary);
    height: 52px;
    border-radius: 7px;
}

.equipments__list {
    margin-top: 46px;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.equipment-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(0deg, #fff 37.51%, #f6fbff 99.7%), #fff;
    box-shadow: 0px 0px 26px 0px rgba(11, 69, 127, 0.29);
    height: 258px;
    padding: 25px 60px 0 30px;
    color: var(--primary);

    display: grid;
    grid-template:
        "model title prices"
        "image specifications buttons";
    grid-template-columns: 500px auto 410px;
    align-content: space-between;
}

.equipment-card__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 680px;
}

.equipment-card__model {
    grid-area: model;

    font-size: 40px;
    font-weight: 800;
}

.equipment-card__title {
    grid-area: title;

    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.equipment-card__prices {
    grid-area: prices;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.equipment-card__prices .full-price {
    font-size: 38px;
    font-weight: 700;
}

.equipment-card__prices .month-price {
    color: var(--secondary);
    font-size: 27px;
    font-weight: 500;
}

.equipment-card__image {
    grid-area: image;

    width: 440px;
    max-height: 170px;
    transform: translateY(-40px);
}

.equipment-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.3);
}

.equipment-card__specifications {
    grid-area: specifications;

    display: grid;
    grid-template-columns: repeat(2, minmax(auto, max-content));
    gap: 0 100px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.equipment-card__specifications li {
    display: flex;
    align-self: center;
    gap: 10px;
    font-size: 30px;
    font-weight: 500;
}

.equipment-card__buttons {
    grid-area: buttons;
    display: flex;
    flex-direction: column;
    max-width: 410px;
    gap: 16px;
    margin-top: 20px;
}

.equipment-card__buttons .btn {
    height: 46px;
    font-size: 24px;
    margin-left: auto;
}

.credit__content {
    height: 602px;
    background-image: url(../img/webp/credit.webp);
    background-size: cover;
}

.credit__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0 30px;
    color: #fff;
}

.credit__text {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.credit__title {
    font-size: 60px;
    font-weight: 700;
}

.credit__title span {
    color: var(--primary);
}

.credit__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credit__list li {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 32px;
    font-weight: 600;
}

.credit__list li::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 13px;
    border-color: transparent transparent transparent #fff;
}

.credit__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 466px;
    margin-left: 60px;
}

.credit__form .input {
    border-width: 1px;
    height: 34px;
    font-size: 20px;
}

.credit__form .btn {
    margin-top: 20px;
    height: 56px;
    font-size: 24px;
}

.trade-in__content {
    background-image: url(../img/webp/trade-in.webp);
    background-size: cover;
}

.trade-in__inner {
    align-items: flex-end;
}

.trade-in__text {
    text-align: right;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
}

.trade-in__text span {
    display: block;
}

.contacts {
    height: 426px;
    position: relative;
}

.contacts .section-title {
    margin: 0;
}

.contacts__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}

.map {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: calc(1000px + (100vw - 1600px) / 2);
    background-image: url(../img/webp/map.webp);
    background-size: cover;
}

.contacts__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts__list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 29px;
    font-weight: 500;
    color: var(--primary);
}

.contacts__btn {
    max-width: 460px;
    height: 56px;
    font-size: 24px;
}

.footer {
    background: #182e43;
    color: #fff;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 26px 0 46px;
}

.legal {
    font-size: 20px;
}

.disclaimer {
    font-size: 14px;
}

.footer__links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    text-decoration: underline;
}

.modal {
    background: linear-gradient(180deg, #6796b2 0%, #c2e4f8, #fff);
    width: 700px;
    height: 370px;
    padding: 0;
    display: none;
}

.modal__inner {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 25px 14px 54px 25px;
    color: #fff;
}

.modal__inner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 390px;
    height: 254px;
    background-image: url(../img/webp/modal-car.webp);
    background-size: contain;
    background-repeat: no-repeat;
}

.modal__text {
    display: grid;
    grid-template-columns: 304px auto;
    gap: 15px;
    width: 100%;
}

.modal__text span {
    color: var(--primary);
}

.modal__title {
    font-size: 29px;
    font-weight: 800;
    line-height: 1.2;
    border-right: 1px solid #fff;
}

.modal__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal__list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 600;
}

.modal__list li::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent var(--primary);
}

.modal__form {
    width: 292px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal__form .input {
    height: 32px;
    font-size: 14px;
    border-width: 1px;
}

.modal__form .btn {
    height: 30px;
    font-size: 18px;
    filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.2));
}

.modal__form .agreement {
    gap: 6px;
}

.modal__form .agreement p {
    font-size: 11px;
}

.modal-offer .modal__title {
    font-size: 24px;
}

@media screen and (min-width: 800px) {
    .modal-offer .modal__inner::before {
        width: 330px;
        height: 214px;
    }
}

.modal-success .modal__title,
.modal-already .modal__title {
    text-align: right;
    font-weight: 500;
    font-size: 45px;
    border: 0;
}

.modal-success .modal__title span,
.modal-already .modal__title span {
    display: block;
    margin-top: 36px;
    color: var(--primary);
    font-size: 30px;
}

.modal-already .modal__title {
    font-size: 35px;
}

@media screen and (max-width: 800px) {
    .container {
        max-width: calc(100% - 32px);
    }

    .section {
        margin-top: 56px;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .header {
        padding: 0;
    }

    .header__info {
        display: none;
    }

    .header__logo {
        width: 230px;
    }

    .header__nav {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .header__main {
        padding: 32px 0;
        border: 0;
    }

    .burger {
        display: flex;
        flex-direction: column;
        gap: 3px;
        width: 20px;
        transition: all 0.3s;
    }

    .burger span {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background-color: var(--primary);
        transition: all 0.3s;
        transform-origin: left;
    }

    .header.opened .burger {
        gap: 5px;
    }

    .header.opened .burger span {
        transform: rotateY(90deg);
    }

    .header.opened .burger span:first-child {
        transform: rotate(45deg);
    }

    .header.opened .burger span:last-child {
        transform: rotate(-45deg);
    }

    .menu {
        display: block;
        width: 100%;
        height: 530px;
        position: fixed;
        z-index: 2;
        right: 0;
        top: 0;
        transform: translateX(100%);
        transition: all 0.3s;
        background: linear-gradient(180deg, #6796b2 0%, #c2e4f8, #fff);
    }

    .header.opened + .menu {
        transform: none;
    }

    .menu__inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        padding: 110px 0 22px;
        color: var(--primary);
    }

    .menu__nav {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding-left: 20px;
    }

    .menu__nav li {
        font-size: 20px;
        position: relative;
    }

    .menu__nav li.active::before {
        content: "";
        position: absolute;
        left: -20px;
        top: 0;
        height: 100%;
        width: 4px;
        background-color: #fff;
    }

    .menu__info {
        padding-left: 20px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .menu__info li {
        display: flex;
        align-items: center;
        font-size: 16px;
        gap: 14px;
    }

    .menu__btn {
        height: 42px;
        font-size: 20px;
    }

    .hero {
        height: auto;
        position: relative;
        background: none;
    }

    .hero::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 582px;
        background: linear-gradient(
            180deg,
            #6796b2 0%,
            rgba(103, 150, 178, 0.47) 50%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .hero::after {
        content: "";
        position: absolute;
        z-index: -1;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: linear-gradient(
            180deg,
            rgba(201, 214, 224, 0) 0%,
            #c9d6e0 100%
        );
    }

    .hero__inner {
        padding: 105px 0 25px;
    }

    .hero__title {
        font-size: 24px;
        line-height: 1.2;
        font-weight: 700;
    }

    .hero__list {
        gap: 15px;
        margin-top: 20px;
    }

    .hero__list li {
        gap: 12px;
        font-size: 17px;
    }

    .hero__list li::before {
        border-width: 7px 0 7px 10px;
    }

    .hero__car {
        display: block;
        width: 100%;
        margin: 20px 0 5px;
    }

    .hero__action > span {
        font-size: 14px;
        display: block;
        text-align: center;
    }

    .hero__form {
        margin-top: 40px;
        align-items: flex-start;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .hero__form .input {
        height: 32px;
        font-size: 16px;
    }

    .hero__form .btn {
        margin: 20px 0 0;
        height: 40px;
        font-size: 20px;
    }

    .hero__form .agreement {
        min-width: unset;
    }

    .agreement {
        gap: 6px;
    }

    .agreement p {
        font-size: 12px;
    }

    .models__list {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .model-card {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 20px 10px 25px;
        background: linear-gradient(
            138deg,
            rgba(201, 214, 224, 0) 49.59%,
            #c9d6e0 78.49%
        );
    }

    .model-card__title {
        font-size: 30px;
    }

    .model-card__image {
        max-height: unset;
        margin: 28px 0;
    }

    .model-card__list {
        margin: 0;
    }

    .model-card__list li {
        font-size: 18px;
    }

    .model-card__prices {
        margin-top: 35px;
        align-items: flex-start;
        gap: 12px;
        font-weight: 500;
        padding: 0;
        border: 0;
    }

    .model-card__prices .full-price {
        font-size: 32px;
    }

    .model-card__prices .month-price {
        font-size: 24px;
    }

    .model-card__buttons {
        margin-top: 20px;
        flex-direction: column;
        gap: 10px;
    }

    .model-card__buttons .btn {
        height: 36px;
        font-size: 20px;
    }

    .filter {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .select2-container--default .select2-selection--single {
        height: 38px;
    }

    .select2-container--default
        .select2-selection--single
        .select2-selection__rendered {
        padding: 0 18px;
        font-size: 18px;
    }

    .equipments__list {
        gap: 35px;
        margin-top: 35px;
    }

    .equipment-card {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 24px 10px;
    }

    .equipment-card__model {
        font-size: 26px;
        text-align: center;
    }

    .equipment-card__title {
        margin-top: 30px;
        font-size: 23px;
        font-weight: 600;
    }

    .equipment-card__image {
        width: 100%;
        margin: 0 0 30px;
        transform: none;
        max-height: unset;
    }

    .equipment-card__image img {
        transform: none;
    }

    .equipment-card__specifications {
        gap: 20px 0;
        justify-content: space-between;
        margin: 0;
    }

    .equipment-card__specifications li {
        gap: 10px;
        font-size: 19px;
    }

    .equipment-card__specifications li img {
        width: 20px;
    }

    .equipment-card__prices {
        margin-top: 38px;
        align-items: flex-start;
        gap: 12px;
    }

    .equipment-card__prices .full-price {
        font-size: 32px;
        font-weight: 600;
    }

    .equipment-card__prices .month-price {
        font-size: 24px;
        font-weight: 600;
    }

    .equipment-card__buttons {
        margin-top: 20px;
        gap: 10px;
    }

    .equipment-card__buttons .btn {
        height: 36px;
        font-size: 20px;
    }

    .equipment-card__bg {
        width: 100%;
        top: 100px;
        bottom: auto;
    }

    .credit__content {
        height: 748px;
        background-image: url(../img/webp/credit-mob.webp);
        background-position: center;
    }

    .credit__inner {
        padding: 28px 0;
        justify-content: space-between;
    }

    .credit__text {
        gap: 18px;
    }

    .credit__title {
        font-size: 26px;
    }

    .credit__list {
        gap: 15px;
    }

    .credit__list li {
        gap: 16px;
        font-size: 17px;
    }

    .credit__list li::before {
        border-width: 6px 0 6px 8px;
    }

    .credit__form {
        margin: 0;
        width: 100%;
        gap: 20px;
    }

    .credit__form .input {
        font-size: 16px;
        height: 32px;
    }

    .credit__form .btn.btn-primary {
        height: 40px;
        font-size: 20px;
        background-color: #fff;
        border: 1px solid var(--primary);
        color: var(--primary);
    }

    .trade-in__content {
        background-image: url(../img/webp/trade-in-mob.webp);
    }

    .trade-in__text {
        font-size: 24px;
    }

    .trade-in__text span {
        display: inline;
    }

    .contacts {
        height: auto;
    }

    .contacts .section-title {
        margin-bottom: 35px;
    }

    .map {
        height: 428px;
        width: calc(100% + 48px);
        position: static;
        margin-left: -32px;
        background-image: url(../img/webp/map-mob.webp);
        background-position: bottom;
    }

    .contacts__inner {
        gap: 0;
    }

    .contacts__list {
        position: absolute;
        left: 0;
        bottom: 74px;
        gap: 12px;
        padding: 12px 22px 16px 16px;
        background-color: #fff;
    }

    .contacts__list li {
        gap: 14px;
        font-size: 16px;
    }

    .contacts__list li svg {
        width: 18px;
    }

    .contacts__btn {
        margin-top: 15px;
        height: 36px;
        font-size: 20px;
        background-color: var(--primary);
        color: #fff;
    }

    .legal {
        font-size: 16px;
    }

    .footer__links {
        order: -1;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-bottom: 20px;
        position: relative;
    }

    .footer__links::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: -16px;
        width: calc(100% + 32px);
        height: 1px;
        background-color: #fff;
    }

    .footer__links a {
        font-size: 14px;
    }

    .modal {
        width: 100%;
        max-width: 360px;
        height: 320px;
    }

    .modal__inner {
        padding: 15px 18px;
        overflow: hidden;
        align-items: flex-start;
    }

    .modal__inner::before {
        left: auto;
        right: 0;
        bottom: 24px;
        width: 214px;
        height: 140px;
        transform: translateX(20%) scaleX(-1);
    }

    .modal__text {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .modal__title {
        font-size: 23px;
        border: none;
    }

    .modal__list {
        gap: 10px;
    }

    .modal__list li {
        font-size: 14px;
    }

    .modal__list li::before {
        border-width: 5px 0 5px 8px;
    }

    .modal__form {
        width: 174px;
        gap: 10px;
    }

    .modal__form .input {
        height: 28px;
        font-size: 12px;
    }

    .modal__form .btn {
        height: 25px;
        font-size: 12px;
    }

    .modal__form .agreement {
        width: max-content;
    }

    .modal-offer .modal__title {
        font-size: 20px;
    }

    .modal-success .modal__title {
        text-align: left;
        font-size: 30px;
    }

    .modal-success .modal__title span {
        font-size: 22px;
        margin-top: 32px;
    }

    .modal-already .modal__title {
        font-size: 27px;
        text-align: left;
    }

    .modal-already .modal__title span {
        font-size: 19px;
        margin-top: 30px;
    }

    .modal-success .modal__inner::before,
    .modal-already .modal__inner::before {
        width: 300px;
        height: 194px;
        bottom: -10px;
    }
}

.showmore-hide,
.filtered-hide {
    display: none !important;
}

.js--show-more {
    display: block;
    margin: 20px auto;
    max-width: 200px;
}

.js--show-more.hidden {
    display: none;
}

/* @media screen and (max-width: 1775px) {
    .hero {
        height: 740px;
        aspect-ratio: auto;
    }
} */

@media screen and (max-width: 1700px) {
    .hero {
        background-image: url(../img/webp/hero-tab.webp);
    }

    .timer {
        margin-top: 20px;
        margin-left: 0;
        gap: 9px;
    }

    .hero__action > span {
        font-size: 19px;
    }

    .hero__list {
        gap: 15px;
    }

    .hero__list li {
        font-size: 23px;
    }

    .time-count__val {
        font-size: 60px;
    }

    .hero__title {
        font-size: 45px;
    }

    .hero__title span {
        display: block;
    }
}

@media screen and (max-width: 1665px) {
    .container {
        max-width: 1250px;
    }

    .header__nav {
        gap: 49px;
    }

    .model-card__buttons .btn {
        font-size: 18px;
    }

    .equipment-card__image {
        width: 348px;
        max-height: 155px;
    }

    .equipment-card__model {
        font-size: 31px;
    }

    .equipment-card__buttons {
        max-width: 365px;
    }

    .equipment-card__specifications {
        gap: 0 50px;
    }

    .equipment-card {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .equipment-card__buttons {
        width: 100%;
    }

    .equipment-card__buttons .btn {
        width: 81%;
    }
}

@media screen and (max-width: 1530px) {
    .hero {
        aspect-ratio: auto;
        height: 640px;
    }
}

@media screen and (max-width: 1475px) {
    .hero__form {
        margin-top: 20px;
    }

    .hero {
        aspect-ratio: 1920/806;
        height: auto;
    }

    .time-count__text {
        font-size: 14px;
    }
}

@media screen and (max-width: 1400px) {
    .hero {
        aspect-ratio: auto;
        height: 605px;
    }

    .hero__list {
        margin-top: 20px;
    }
}

@media screen and (max-width: 1260px) {
    .container {
        max-width: 1000px;
    }

    .header__nav {
        gap: 10px;
    }
    .header__logo img {
        max-width: 150px;
    }

    .hero__form .btn {
        font-size: 17px;
    }

    .model-card__prices .full-price {
        font-size: 30px;
    }

    .model-card__title {
        font-size: 35px;
    }

    .model-card__prices .month-price {
        font-size: 23px;
    }

    .equipment-card__title {
        font-size: 25px;
    }

    .equipment-card__prices .full-price {
        font-size: 23px;
    }

    .equipment-card__prices .month-price {
        font-size: 19px;
    }

    .equipment-card__specifications li {
        font-size: 21px;
    }

    .equipment-card__buttons .btn {
        font-size: 16px;

        width: 90%;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        margin: 0;
        padding: 0 15px;
        max-width: 100%;
    }

    .equipment-card {
        padding: 25px 20px 0 30px;
    }

    .equipment-card__specifications li {
        font-size: 14px;
    }

    .model-card__prices .full-price {
        font-size: 20px;
    }

    .model-card__prices .month-price {
        font-size: 17px;
    }

    .model-card__title {
        font-size: 25px;
    }

    .model-card__buttons .btn {
        font-size: 14px;
    }

    .equipment-card__specifications {
        gap: 0 25px;
    }

    .filter {
        grid-template-columns: repeat(2, 336px);
    }

    .equipment-card__image {
        width: 301px;
    }

    .equipment-card__model {
        font-size: 27px;
    }

    .equipment-card__title {
        font-size: 19px;
    }

    .model-card__list li {
        font-size: 15px;
    }
}

@media screen and (max-width: 800px) {
    .hero {
        height: auto;
    }
    .equipment-card__image {
        width: 100%;
        max-height: 170px;
    }

    .equipment-card__buttons .btn {
        width: 100%;
    }

    .hero__title {
        font-size: 24px;
    }

    .hero__action > span {
        font-size: 14px;
    }

    .time-count__val {
        font-size: 40px;
    }

    .hero__list li {
        font-size: 17px;
    }

    .hero {
        background: none;
    }
}
