header .logo {
    display: none;
}
body {
    max-width: 100dvw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    position: relative;
    background:  var(--bg-1);
}
body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/left-bg.webp) left top/ 310px auto no-repeat, url(../images/right-bg.webp) right top/ 310px auto no-repeat;
}
section.promo {
    height: 1072px;
    margin-top: 72px;
    background: url(../images/index/promo-bg.webp) center / 1920px 100% no-repeat;
}
section.promo .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
section.promo .ribbon {
    width: 1257px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
section.promo .title-box {
    max-width: 545px;
    margin: -27px auto 0;
    position: relative;
    transform: translateX(5px);
    z-index: 2;
}
section.promo .title-box h1 {
    display: none;
}
section.promo .content-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 40px 50px 45px;
    margin-top: auto;
    margin-bottom: 209px;
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(136, 34, 86, 0.7) 0%, rgba(136, 34, 86, 0) 49.52%, rgba(136, 34, 86, 0.7) 100%);
    backdrop-filter: blur(30px)
}
section.promo .content-box p {
    max-width: 360px;
    text-align: center;
    font-size: 24px;
    line-height: 29px;
    color: var(--text-6);
}
section.promo .content-box a {
    display: flex;
    justify-content: center;
    padding: 13px 28px 18px;
    border-radius: 16px;
    background: var(--bg-2);
    font-size: 24px;
    line-height: 29px;
    color: var(--text-3);
    box-shadow: 3px 9px 14px 0px #fff inset, -7px -9px 14px 0px #00000040 inset;
}