*, body {
    font-family: Onest, sans-serif;
}
br.mobile {
    display: none;
}
.h-1 {
    color: var(--H1-color, #FFF);
    font-size: 82px;
    font-style: normal;
    font-weight: 700;
    line-height: 95%; /* 77.9px */
    letter-spacing: -0.82px;
    text-transform: uppercase;
}

.app-header__menu.active {
    left: 0;

}

.burger-button .cross {
    display: none;
}

.burger-button.active .burger {
    display: none;
}

.burger-button.active .cross {
    display: block;
}
.app-header__menu a {
    color: var(--Black, #000);
    font-family: Onest;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 17.6px */
    text-decoration: none;
}
.app-header__menu {
    transition: 0.3s ease-in all;
    left: -100%;
    position: fixed;
    width: 100%;
    height: calc(100vh - 76px);
    background: #fff;
    z-index: 2;
    top: 76px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 12px;
}

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

.subtitle {
    color: var(--Subtitle-color, #fff);
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 93%; /* 59.52px */
}

.button {
    display: inline-flex;
    height: 54px;
    padding: 12px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    border-radius: 32px;
    background: var(--Button-background, #232C5C);
    color: var(--Button-color, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 18px */
    border: none;
    transition: 0.2s ease;
}

.button.size-s {
    height: auto;
}

button:hover {
    /* Sh1 */
    box-shadow: 0 10px 10px 0 rgba(35, 44, 92, 0.20);
}

button:active, button.active {
    color: var(--Button-active-color);
}

.header__logo img{
    width: 211px;
    object-fit: contain;
}

.header__container {
    display: flex;
    padding-top: 18px;
    padding-bottom: 18px;
    justify-content: space-between;
    align-items: center;
}

.header__inner .button {
    max-width: 226px;
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 24px;
    width: fit-content;
    flex-shrink: 0;
}

.link {
    color: var(--Link-color, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
    text-decoration: none;
    transition: 0.2s ease;
}

.link:hover {
    color: var(--Link-hover-color);
}

.section-hero {
    background: linear-gradient(197deg, rgba(2, 8, 32, 0.00) 33.59%, rgba(2, 8, 32, 0.90) 63.07%), var(--background-hero) lightgray 50% / cover no-repeat;
    height: 840px;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container__hero {
    padding-bottom: 86px;
    height: 100%;
}

.container__hero-inner {
    display: flex;
    height: 100%;
    gap: 64px;
    flex-direction: column;
    justify-content: flex-end;
}

.section-info__image {
    display: none;
}
.container__hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.container__hero-badge {
    display: flex;
    border-radius: 20px;
    background: var(--Grey-light, #F6F6F6);
    gap: 24px;
    padding: 24px;
    align-items: center;
    justify-content: space-between;
}

.text-badge {
    flex-shrink: 0;
    color: var(--Badge-color, #232C5C);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 26.4px */
}

.section-info {
    position: relative;
    padding-top: 130px;
    padding-bottom: 86px;
}

.section-info__image {
    right: 0;
    z-index: -1;
    top: 0;
    rotate: 180deg;
    position: absolute;
    width: 539px;
    height: 360px;
    aspect-ratio: 539/360;
}

.h-2 {
    color: var(--H2-color);
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%; /* 60.8px */
}

.h-2 .accent-text {
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 95%;
}
.accent-text {
    color: var(--Accent-text-color);
}

.container__info {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.container__info-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.info-case__item img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    height: 228px;
    aspect-ratio: 104/57;
    border-radius: 20px;
}

.info-case__item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-case__item-text {
    border-radius: 20px;
    display: flex;
    height: 100%;
    padding: 16px 24px 16px 50px;
    align-items: baseline;
    align-self: stretch;
    background: var(--Grey-light, #F6F6F6);
    flex-direction: column;
    gap: 4px;
}

p {
    margin-bottom: 0;
    color: var(--Case-text-color, #000);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 19.8px */
}

.h-3 {
    color: var(--H3-color);
    margin-bottom: 0;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 26.4px */
    position: relative;
}

.with-dot::after {
    content: "";
    position: absolute;
    left: -26px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #000;
    background: transparent;
    border-radius: 10000px;
}
.with-dot.light-text::after {
    border: 1px solid #fff;
}

.section-products {
    background-color: var(--Products-background);
    padding-top: 86px;
    padding-bottom: 86px;
}

.section-products .h-2 {
    text-align: center;
    line-height: 90%;
    margin-bottom: 24px;
}

.section-products .desc {
    text-align: center;
}

.light-text {
    color: var(--Text-light-color);
}

.products__wrapper {
        padding-top: 64px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.products__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--Button-active-color);
}
.products__item:nth-child(1) {
    border-right: 1px solid var(--Button-active-color);
}
.products__item:nth-child(3) {
    border-right: 1px solid var(--Button-active-color);
    border-bottom: none;
}
.products__item:nth-child(4) {
    border-bottom: none;
}

.products__item img {
    object-fit: contain;
    margin-bottom: 24px;
    margin-top: 32px;
    width: 357px;
    height: 184px;
    flex-shrink: 0;
    aspect-ratio: 105/92;
}

.products__item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section-serts {
    padding-top: 86px;
    padding-bottom: 86px;
}
.section-serts .h-2 {
    text-align: center;
    margin-bottom: 24px;
}
.section-serts .desc {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--black-50, rgba(0, 0, 0, 0.50));
}
.section-delivery {
    padding-top: 86px;
    padding-bottom: 86px;
}
.section-delivery .h-2{
    text-align: center;
    margin-bottom: 64px;
}

.section-delivery__content {
    gap: 20px;
    display: grid;
    width: 100%;
    grid-template-columns: 524px auto;
}

.section-delivery__image {
    height: 404px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.section-delivery__container {
    display: flex;
    width: 100%;
    padding: 48px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: 20px;
    background: var(--Grey-light, #F6F6F6);
}


.section-delivery .container__hero-badge .text-badge {
    font-size: 18px;
    text-align: left;
    flex-shrink: initial;
}
.section-delivery .container__hero-badge .button {
    width: fit-content;
}
.section-delivery .container__hero-badge {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: #fff;
}

.section-delivery__list-item {
    position: relative;
    margin-left: 26px;
}

.section-delivery__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
    list-style-type: none;
}

.desc-text  {
    color: var(--Desc-text);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 19.8px */
}

.section-delivery__list-item.with-dot::after {
    top: 10px;
}

.section-offer {
    padding-top: 86px;
    padding-bottom: 86px;
    background-color: var(--Offer-background);
}

.section-offer .desc {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--white-50, rgba(255, 255, 255, 0.50));
}
.section-offer .h-2 {
    margin-bottom: 24px;
    text-align: center;
}

.section-offer__content {
    margin-top: 64px;
    width: 100%;
    display: grid;
    grid-template-columns: auto 524px;
    gap: 20px;
}

.section-offer__content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.section-offer__content-form {
    display: flex;
    padding: 48px 98px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-radius: 20px;
    background: var(--White, #FFF);
}

.form-title {
    color: #232C5C;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 35.2px */
}

.form__group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 18px;
}

.form__group input {
    display: flex;
    height: 54px;
    padding: 12px 32px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    color: #000;
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 18px */
    border-radius: 20px;
    border: 1px solid var(--black-50, rgba(0, 0, 0, 0.50));
    background: var(--Grey-light, #F6F6F6);
    transition: 0.3s ease all;
}
.form__group input::placeholder {
    color: var(--black-50, rgba(0, 0, 0, 0.50));
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 18px */
}
.agreement input {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
    accent-color: var(--Blue, #232C5C);
}
.agreement a {
    color: var(--Blue, #232C5C);
    font-family: Onest;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-decoration: none;
}
.agreement span {
    color: var(--black-50, rgba(0, 0, 0, 0.50));
    font-family: Onest;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 14px */
}
.agreement {
    margin-top: 12px;
    gap: 12px;
    display: flex;
    align-items: flex-start
}

.form_submit {
    width: 100%;
}

.footer .container {
    display: flex;
    justify-content: space-between;
}
.footer {
    padding-top: 54px;
    padding-bottom: 86px;
    background: #232C5C;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__item {
    color: var(--White, #FFF);
    font-family: Onest;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 24px */
    text-decoration: none;
}
.footer__col a:hover {
    color: #fff;
}
.footer__mail {
    color: var(--White, #FFF);
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 18px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.serts__navigation {
    display: flex;
    gap: 18px;
    min-width: 200px;
    justify-content: center;
    align-items: flex-start;
}
.serts__navigation > svg {
    width: 16px;
    height: 16px;
}

.serts__navigation > div {
    display: flex;
    width: 48px;
    height: 48px;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 24px;
    border: 1px solid var(--Black, #000);
}

.cert__item span {
    display: flex;
    padding: 16px 24px;
    align-items: baseline;
    gap: 8px;
    align-self: stretch;
    border-radius: 0 0 20px 20px;
    background: var(--Grey-light, #F6F6F6);
}
.cert__item {
    display: flex;
    flex-direction: column;
    width: 307px;
}
.cert__item img {
    height: 450px;
    align-self: stretch;
    aspect-ratio: 307/450;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    background: lightgray -20.789px -2.624px / 108.698% 104.837% no-repeat;
}

.serts__swiper {
    margin-top: 32px;
    display: flex;
    gap: 124px;
}
.header__mobile {
    display: none;
}
.container__hero-badge.mobile {
    display: none;
} 

.modal-dialog .section-offer__content-form {
    background: var(--White, #FFF);
    border-radius: 20px;
}
.modal-dialog .modal-content {
    background: var(--White, #FFF);
    border-radius: 20px;
}
.btn-close__wrapper {
    align-self: flex-end;
    background: #f6f6f6;
    align-items: center;
    padding: 10px;
    justify-content: center;
    display: flex;
    border-radius: 40px;
    width: 40px;
    height: 40px;
}
.modal-dialog {
    border-radius: 20px;
    max-width: 736px;
    background: var(--White, #FFF);
    max-height: 515px;
}
@media (max-width: 1200px) {
    .section-offer__content-form {
        padding: 48px 48px;
    }
}
@media (max-width: 1100px) {
    .container__hero-badge.mobile .text-badge {
        text-align: center;
    } 

    .container__hero-badge.mobile {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        border-radius: 0 0 20px 20px;
        background: var(--Grey-light, #F6F6F6);
    }

    .section-delivery .container__hero-badge.mobile {
        display: block;
    }

    .section-delivery__content .container__hero-badge .button {
        width: 100%;
    }
    .section-delivery__content .container__hero-badge {
        border-radius: 20px;
        background: var(--White, #FFF);
    }
    .header__inner {
        display: none;
    }
    .info-case__item img {
        height: 100%;
        flex-shrink: initial;
    }
    .info-case__item-text {
        height: auto;
        padding: 16px 16px 16px 50px;   
    }
    br {
        display: none;
    }
    br.mobile {
        display: block;
    }
    .callback-button {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 10px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        aspect-ratio: 1/1;
        border-radius: 40px;
        border: none;
        background: var(--Blue, #232C5C);
        transition: 0.3s ease-in all;
    }
    .burger-button {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 10px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border: none;
        aspect-ratio: 1/1;
        border-radius: 40px;
        background: var(--Grey-light, #F6F6F6);
        transition: 0.3s ease-in all;
    }
    .container__hero {
        padding-bottom: 40px;   
    }
    .header__logo img {
        width: 135px;
    }

    .header__mobile {
        display: flex;
        gap: 12px;
        align-items: center;
    } 
    .h-1 {
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 95%; /* 30.4px */
        letter-spacing: -0.32px;
        text-transform: uppercase;
    }

    .subtitle {
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 24px */
    }

    .hero_container {
        padding-bottom: 40px;
    }
    .section-hero {
        height: 440px;
    }
    .section-info__image {
        width: 212px;
        height: 107px;
        aspect-ratio: 212/107;
    }

    .container__hero-badge {
        display: none;
    }

    .h-2 {
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        line-height: 95%; /* 30.4px */
    }
    
    .h-2 .accent-text {
        font-size: 32px;
        line-height: 95%; /* 30.4px */
    }

    .container__info-cases {
        grid-template-columns: repeat(1, 1fr);
    }

    .section-products {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .products__wrapper {
        padding-top: 40px;
        grid-template-columns: repeat(1, 1fr);
    }

    .products__item:nth-child(1) {
        border-right: none;
    }
    .products__item:nth-child(3) {
        border-right: none;
    }
    .products__item:nth-child(4) {
        border-bottom: none;
    }
    .products__item:last-child {
        border-bottom: none;
    }

    .section-offer__content {
        margin-top: 24px;
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }

    .section-delivery__content {
        grid-template-columns: repeat(1, 1fr);
    }
    .section-offer__content-form {
        display: flex;
        padding: 24px 12px;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        align-self: stretch;
    }
    .products__item-text {
        padding-left: 24px;
    }
    .footer .container {
        flex-direction: column;
        gap: 40px;
    }
    .footer {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-offer .desc {
        padding-bottom: 20px;
    }
    .form-title {
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 110%; /* 26.4px */
    }
    p {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%; /* 16px */
    }

    .section-offer {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-info {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .container__info {
        gap: 32px;
    }

    .section-serts {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .serts__navigation {
        display: none;
    }

    .serts__swiper {
        margin-top: 20px;
    }
    .section-serts .desc {
        padding-bottom: 20px;
    }
    .section-serts .h-2 {
        margin-bottom: 12px;
    }
    .section-delivery {
        padding-bottom: 40px;
        padding-top: 40px;
    }
    .section-delivery .h-2 {
        margin-bottom: 20px;
    }
    .section-delivery__image {
        height: 220px;
    }
    .section-delivery__container {
        padding: 12px;
    }
    .section-delivery__container .h-3 {
        padding: 10px;
    }
    .section-delivery__container {
        gap: 20px;
    }
    .header {
        position: sticky;
        z-index: 2;
        top: 0;
        background: #fff;
    }

    .products__item-text {
        width: 100%;
    }

    .products__item img {
        width: 336px;
        height: 183.003px;
    }
}


span.error {
    font-size: 12px;
    color: red;
}


.agreement span.error{
    display: none !important;
}

  /* Анимация тряски */
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
  }
  
.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    display: flex;
  }

.agreement:has(input.error) span {
    color: #d02d2d;
}
.agreement:has(input.error) a {
    color: #d02d2d;
}
input.error {
    border-color: #d02d2d;
}

span.error {
    display: none !important;
}