html {
    overflow: hidden auto;
}
body {
    overflow: auto;
    background: #d7d7d7;
    &::-webkit-scrollbar {
        display: none;
    }
}
h1 {
    display: none;
}
header {
    z-index: inherit;
    .logo, .burger {
        filter: invert(1);                
    } 
 }
main {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d7d7d7;
}
.promo {
    width: calc(100% - 248px);
    height: 100%;
    margin: 0 auto 96px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 8px;
    padding-top: 204px;
    padding-bottom: 80px;
    overflow: auto;
    &::-webkit-scrollbar {
        display: none;
    }
    .item {
        position: relative;
        transition: top 1s cubic-bezier(0.075, 0.82, 0.165, 1);
        img {
            display: block;
            width: 100%;
            aspect-ratio: 592/392;
            object-fit: cover;
            margin-bottom: 40px;
            filter: grayscale(100);
            transition: filter .2s linear;
        }
        .title {
            position: relative;
            z-index: 1;
            color: #262626;
            font-size: 20px;
            line-height: 1.6;
            text-transform: uppercase;
        }
        a:not(.title) {
            position: absolute;
            inset: 0;
        }
    }
}
footer {
    background-color: #f5f5f5;
    * {
        color: #262626;
    }
}
@media (max-width:1439px) {
    .promo {
        width: calc(100% - 200px);
        padding-top: 264px;
    }
}
@media (max-width:1199px) {
    .promo {
        width: calc(100% - 168px);
        padding-top: 200px;
    }
}
@media (max-width:1023px) {
    .promo {
        width: calc(100% - 104px);
        gap: 48px 8px;
        padding-top: 160px;
        margin-bottom: 72px;
        padding-bottom: 64px;
    }
    footer {
        a, .lang {
            margin: 0;
        }
    }
}
@media (max-width:767px) {
    .promo {
        width: calc(100% - 56px);
        gap: 39px 8px;
        padding-top: 120px;
        margin-bottom: 59px;
        padding-bottom: 48px;
        .item {
            img {
                margin-bottom: 20px;
            }
            .title {
                font-size: 16px;
                line-height: 1.5;
                letter-spacing: 0.32px;
            }
        }
    }
    header.small {
        padding-top: 32px;
        .logo {
            max-width: 80px;
        }
    }
}
@media (max-width:479px) {
    .promo {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding-top: 80px;
        width: calc(100% - 32px);
        padding-bottom: 24px;
        margin-bottom: 0;
        .item img {
            margin-bottom: 16px;
        }
    }
}
@media (hover:hover) {
    .promo .item:hover img {
        filter: grayscale(0);
    }
}