html {
    overflow: hidden auto;
}
body {
    overflow-y: auto;
}
h1 {
    display: none;
}
header {
    &.hide {
        opacity: 0;
    }
    .logo,
    .burger {
        filter: invert(1);
    }
}
body {
    background: #d7d7d7;
}
main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.promo {
    max-width: 1192px;
    width: calc(100% - 200px);
    margin: 0 auto 96px;
    display: grid;
    grid-template-columns: .5444fr .45fr;
    gap: 98px;
    padding: 264px 0 80px;
    justify-content: space-between;
    video {
        pointer-events: none;
        width: 100%;
        position: relative;
    }
    .box {
        position: relative;
        > div {
            color: #7a7a7a;
            line-height: 1.5;
            letter-spacing: 0.32px;
            text-transform: uppercase;
            * {
                color: inherit;
                line-height: inherit;
                letter-spacing: inherit;
                text-transform: inherit;
            }
        }
        .button-box {
            display: inline-block;
            position: relative;
            width: fit-content;
            button {
                display: inline-block;
                color: #262626;
                line-height: 1.5;
                letter-spacing: 0.32px;
                text-transform: uppercase;
                margin: 20px 20px 0 0;
                transition: .2s linear;
                background: none;
                &.active + .chip {
                    animation: chip-animation-2 2s;
                }
            }
            .chip {
                &::before {
                    content: '\e900';
                    font-family: icon;
                    line-height: 1;
                    font-weight: 100;
                    color: inherit;
                    font-size: 16px;
                }
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                padding: 9px 12px 7px;
                background: #7a7a7a;
                display: flex;
                align-items: center;
                gap: 6px;
                width: fit-content;
                white-space: nowrap;
                color: #f5f5f5;
                font-size: 12px;
                line-height: 1;
                letter-spacing: 0.32px;
                text-transform: uppercase;
                pointer-events: none;
                opacity: 0;
            }
        }
        .social {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 24px;
            height: 24px;
            &::before {
                font-family: 'icon-social';
                font-size: 24px;
            }
            &.email::before {
                content: '\e001';
            }
            &.inst::before {
                content: '\e002';
            }
            &.whatsapp::before {
                content: '\e003';
            }
        }
        a {
            display: inline-block;
            color: #262626;
            line-height: 1.5;
            letter-spacing: 0.32px;
            text-transform: uppercase;
            margin: 20px 20px 0 0;
            transition: .2s linear;
            &:first-of-type {
                display: none;
            }
        }
    }
}
footer {
    background-color: #fff;
    * {
        color: #262626;
    }
}
@media (max-width:1439px) {
    .promo {
        gap: 90px;
    }
}
@media (max-width:1199px) {
    .promo {
        padding-top: 200px;
        gap: 80px;
        width: calc(100% - 170px);
    }
}
@media (max-width:1023px) {
    .promo {
        padding-bottom: 64px;
    }
    footer {
        a,
        .lang {
            margin: 0px 0 0;
        }
    }
    .promo {
        width: calc(100% - 104px);
        grid-template-columns: .55fr .46fr;
        gap: 64px;
        padding-top: 164px;
        margin-bottom: 72px;
    }
}
@media (max-width:767px) {
    header .logo {
        max-width: 60px;
    }
    .promo {
        padding-top: 88px;
        margin-bottom: 53px;
        width: calc(100% - 53px);
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: 24px;
        padding-bottom: 24px;
        video {
            max-width: 208px;
        }
        .box {
            > div {
                letter-spacing: 0.28px;
                font-size: 14px;
                text-transform: none;
                font-weight: 400;
            }
            .button-box {
                display: none;
            }
            a {
                letter-spacing: 0.28px;
                font-size: 14px;
                margin: 20px 20px 0 0;
                &:first-of-type {
                    display: inline-block;
                }
            }
        }
    }
    header.small {
        padding-top: 32px;
        .logo {
            max-width: 80px;
        }
    }
}
@media (max-width:479px) {
    .promo {
        padding-top: 80px;
        width: calc(100% - 32px);
        margin-bottom: 0;
        video {
            max-width: initial;
        }
    }
}
@media (hover:hover) {
    .promo .box a:hover,
    .promo .box .button-box button:hover {
        color: #7a7a7a;
    }
}