@media screen and (max-width: 900px) {

    .grid {
        grid-template-areas: "arm" "main" "apps" "nav" "copyright" "payments";
        grid-template-columns: auto;
        grid-template-rows: 600px auto auto auto auto auto;
    }

    .grid .arm {
        padding: 0 0 var(--l) 0;
    }

    .grid .content {
        padding: var(--m);
    }

    .grid .apps {
        flex-direction: column;
        padding-left: 0;
        gap: var(--l);
    }

    .grid .apps .appButtons {
        flex-direction: column;
        padding: 0;
        margin-left: inherit;
        margin-bottom: var(--s);
    }

    .grid .footerNav {
        justify-content: center;
        text-align: center;
        padding: var(--m) 0;
    }

    .grid .footerNav .info, .grid .copyright {
        justify-content: center;
    }

    .grid .arm .cap {
        height: 78px;
    }

    .grid .arm .shield .rows {
        height: auto;
        gap: 0;
        background-image: url('/assets/img/shield/alt/shield.svg');
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }

    .grid .arm .shield:before {
        display: none;
    }

    .grid .arm .shield .cap {
        display: none;
    }

    .grid .arm .shield:after {
        top: auto;
        left: 0;
        bottom: -24px;
        background-image: url('/assets/img/shield/alt/shadow.svg');
    }

    .grid .arm .shield .appLogo {
        padding: var(--xxl) var(--m);
        display: flex;
        align-items: center;
    }

    .grid .arm .shield .appLogo img {
        width: 180px;
        height: auto;
    }

    .grid .arm .shield .appDesc {
        padding: 0 var(--m) 0 var(--m);
        font-weight: 300;
        margin-bottom: var(--xxl);
    }

    .grid .arm .shield .advantages {
        gap: var(--l);
        padding: 0 var(--m);
        margin: 0 0 var(--l) 0;
    }

    .grid .arm .shield .scroll {
        content: '';
        display: block;
        width: 100%;
        height: auto;
        text-align: center;
        margin: 0 0 var(--xl) 0;
    }

    .grid .arm .shield .scroll a {
        color: white;
    }

    .grid .arm .shield .scroll .i {
        width: 32px;
        height: 32px;
    }

    .grid .content h1 {
        font-size: 36px;
    }

    .reserve {
        width: 100%;
        max-width: 100%;
    }

    .reserve .searchBar {
        display: grid;
        grid-template-areas: "name clear hint" "submit submit submit";
        grid-template-rows: 54px 54px;
        grid-template-columns: auto 60px 60px;
        row-gap: var(--xxs);
        margin: 0;
        height: auto;
        background: none;
    }

    .reserve .searchBar .name {
        grid-area: name;
        box-sizing: border-box;
    }

    .reserve .searchBar .clear {
        grid-area: clear;
        justify-content: center;
        background: #ffffff;
    }

    .reserve .searchBar .clear.hide {
        display: block;
    }

    .reserve .searchBar .clear.hide > .i {
        visibility: hidden;
    }

    .reserve .searchBar .hint {
        grid-area: hint;
        border: none;
        background: white;
        border-right: 1px solid var(--color-border);
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
        border-radius: 0 var(--input-border-radius) var(--input-border-radius) 0;
    }

    .reserve .searchBar .submitBtn {
        grid-area: submit;
        text-align: center;
        justify-content: center;
        width:100%;
        margin: 0;
    }

    .reserve .price {
        text-align: center;
        justify-content: center;
        margin: var(--s) 0;
    }

    .reserve .searchBar .hint .popup {
        position: absolute;
        display: block;
        padding: var(--m);
        width: 320px;
        left: 62px;
        top: -28px;
        transform: translate(-100%, -100%);
        transition: .3s;
        box-sizing: border-box;

        border-radius: 8px;
        background: radial-gradient(2794.85% 324.45% at -46.23% -133.19%, #736EEF 0%, #5E5ABA 100%);
        box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.11);
        color: white;
        font-size: 16px;
        text-align: left;
    }

    .reserve .searchBar .hint .popup:before {
        position: absolute;
        content: '';
        z-index: 10;
        left: calc(100% - 33px);
        bottom: 0;
        transform: translate(-50%,calc(100% - 1px));
        width: 28px;
        height: 14px;
        background: url('/assets/img/arrow.svg') center top no-repeat;
    }


    .paymentSystems {
        padding-left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }



}
