.kh-hero,
.kh-hero * {
    box-sizing: border-box;
}

.kh-hero {
    position: relative;
    width: 100%;
    min-height: 833px;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}

.kh-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.kh-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: inherit;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.kh-hero__content {
    position: relative;
    width: 620px;
    max-width: 100%;
    transform: translate(var(--kh-hero-offset-x, 0), var(--kh-hero-offset-y, 0));
}

.kh-hero__kicker {
    display: block;
    margin: 0;
    text-transform: uppercase;
}

.kh-hero__title {
    margin: 0;
    padding: 0;
}

.kh-hero__title-main,
.kh-hero__title-accent {
    display: block;
}

.kh-hero__description,
.kh-hero__description p {
    margin-bottom: 0;
}

.kh-hero__description p:first-child {
    margin-top: 0;
}

.kh-hero__benefits {
    display: flex;
    flex-direction: column;
    margin: 63px 0 0;
    padding: 0;
}

.kh-hero__benefit {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.kh-hero__benefit-icon {
    flex: 0 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1.4;
}

.kh-hero__benefit-icon i,
.kh-hero__benefit-icon svg {
    display: block;
}

.kh-hero__buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
}

.kh-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.kh-hero__button:hover {
    transform: translateY(-2px);
}

.kh-hero__button--primary {
    width: 320px;
    min-height: 64px;
    background: #6d9946;
    color: #fff;
    font-size: 22.9px;
}

.kh-hero__button--secondary {
    width: 220px;
    min-height: 64px;
    color: #fff;
    border: 1px solid #fff;
}

.kh-hero__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .kh-hero__content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .kh-hero--mobile-readability .kh-hero__content {
        background: var(--kh-mobile-readability-bg, rgba(0,0,0,.48));
        padding: 24px;
    }

    .kh-hero--stack-mobile .kh-hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .kh-hero--stack-mobile .kh-hero__button {
        width: 100% !important;
        max-width: none;
    }

    .kh-hero--hide-benefits-mobile .kh-hero__benefits {
        display: none;
    }
}
