.main_banner-buttons {
    transform: skew(var(--skew));
    outline: 6px solid var(--dark-100);
    position: absolute;
    bottom: -12px;
    left: 6px;
    background-color: var(--dark);
    opacity: 1;
    z-index: 1;
    border-radius: 8px;
    outline-offset: -1px;
}

.main_banner-buttons a {
    height: 100%;
    display: inline-block;
    padding: 14px;
    font-weight: 900;
    border-radius: 8px;
}
.main_banner-buttons  span {
    display: inline-block;
    transform: skewX(calc(-1 * var(--skew)));
}

.hero-title {
    background-color: var(--theme-color);
    border-radius: 32px;
    padding: 72px 0;
    overflow: hidden;
    position: relative;
}

.hero-title > div {
    text-transform: lowercase;
}

.hero-title::before {
    content: 'Л';
    font-family: 'Ambidexter', sans-serif;
    position: absolute;
    font-size: 12.5em;
    right: 54%;
    top: 50%;
    transform: translateY(-50%) rotate(-14deg);
    color: #FFF3;
    line-height: 1em;
    transform-origin: center;
    font-style: italic;
    font-weight: 400;
}

.hero-title_wrapper {
    font-size: 80px;
    position: relative;
}

.hero-title_wrapper::after {
    content: "";
    position: absolute;
    top: 30%;
    left: 5%;
    width: 3em;
    height: 3em;
    background-size: cover;
    background-image: url("../../images/cube_left.png");
    filter: blur(10px);
    transform: rotate(90deg);
}
.hero-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: 3%;
    width: 4.5em;
    height: 2.5em;
    background-size: cover;
    background-image: url("../../images/hero-glass.png");
}

.hero-title_accent {
    font-family: 'Ambidexter', sans-serif;
    font-weight: 400;
    font-size: 1.1em;
}

@media (max-width: 767.98px) {
    .main_banner {
        margin-bottom: 46px;
    }

    .hero-title::after,
    .hero-title_wrapper::after {
        display: none;
    }

    .hero-title {
        padding: 40px 24px 80px;
    }

    .hero-title::before {
        right: 0;
        top: -20%;
        transform: rotate(-14deg);
    }

    .main_banner-buttons {
        font-size: 16px;
    }
}

@media (min-width: 767.99px) {
    .main_banner-buttons {
        display: none;
    }
}
