.absc-main-hero {
    --absc-hero-bg: none;
    --absc-hero-arrow-distance: 9px;
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 830px;
    overflow: hidden;
    background-image: var(--absc-hero-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-sizing: border-box;
}

.absc-main-hero--full-bleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.absc-main-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.06);
}

.absc-main-hero__content {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 92px;
    transform: translateX(-50%);
    width: min(760px, calc(100% - 40px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.absc-main-hero__title {
    margin: 0 !important;
    padding: 0 !important;
    color: #fff;
    font-family: "Roboto Mono", monospace;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-decoration: none !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
}

.absc-main-hero__button,
.absc-main-hero__button:hover,
.absc-main-hero__button:focus,
.absc-main-hero__button:active,
.absc-main-hero__button:visited {
    position: relative;
    isolation: isolate;
    min-width: 220px;
    margin-top: 24px;
    padding: 18px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    color: #fff;
    background: rgba(0, 0, 0, 0.28);
    border: 0;
    border-radius: 0;
    font-family: "Roboto Mono", monospace;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 300ms ease, transform 300ms cubic-bezier(.22,1,.36,1), box-shadow 300ms ease;
}

.absc-main-hero__button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 420ms cubic-bezier(.77,0,.18,1);
}

.absc-main-hero__button:hover,
.absc-main-hero__button:focus-visible {
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.absc-main-hero__button:hover::before,
.absc-main-hero__button:focus-visible::before {
    transform: scaleX(1);
}

.absc-main-hero__button span {
    position: relative;
    z-index: 1;
}

.absc-main-hero__arrow,
.absc-main-hero__arrow:hover,
.absc-main-hero__arrow:focus,
.absc-main-hero__arrow:active,
.absc-main-hero__arrow:visited {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 20px;
    width: 44px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none !important;
    background: transparent !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    animation-name: abscHeroArrowFloat;
    animation-duration: 1.4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    will-change: transform;
}

.absc-main-hero__arrow-icon {
    width: 18px;
    height: 18px;
    display: block;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}

@keyframes abscHeroArrowFloat {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, var(--absc-hero-arrow-distance));
    }
}

@media (max-width: 1024px) {
    .absc-main-hero {
        min-height: 720px;
    }

    .absc-main-hero__content {
        bottom: 84px;
    }

    .absc-main-hero__title {
        font-size: 40px;
        letter-spacing: 4px;
    }
}

@media (max-width: 767px) {
    .absc-main-hero {
        min-height: 620px;
    }

    .absc-main-hero__content {
        bottom: 72px;
        width: calc(100% - 28px);
    }

    .absc-main-hero__title {
        font-size: 30px;
        letter-spacing: 2.5px;
    }

    .absc-main-hero__button,
    .absc-main-hero__button:hover,
    .absc-main-hero__button:focus,
    .absc-main-hero__button:active,
    .absc-main-hero__button:visited {
        min-width: 180px;
        padding: 15px 22px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .absc-main-hero__button,
    .absc-main-hero__button::before {
        transition: none !important;
    }

    .absc-main-hero__arrow {
        animation-duration: 2.4s;
    }
}
