@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        -webkit-animation-timing-function: cubic-bezier(.8,0,1,1);
        animation-timing-function: cubic-bezier(.8,0,1,1);
    }
    50% {
        transform: none;
        -webkit-animation-timing-function: cubic-bezier(0,0,.2,1);
        animation-timing-function: cubic-bezier(0,0,.2,1);
    }
}

.cabb-block.hero {
    position: relative;
    overflow: hidden;
}

.cabb-block.hero.regular {
    height: auto;
    aspect-ratio: 96 / 35;
    width: 100dvw;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}
@media (min-width: 1024px) {
    .cabb-block.hero.regular {
        padding-top: 14rem;
        padding-bottom: 14rem;
    }
}

.cabb-block.hero.fullscreen {
    position: relative;
    width: 100dvw;
    max-width: 100%;
    height: 100vh;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.cabb-block.hero .container-xl {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cabb-block.hero .hero-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 20px;
    z-index: 20;
    color: white;
    max-width: var(--page-max-width);
}

.cabb-block.hero .hero-content-wrapper .content-image {
    margin-bottom: 28px;

}
@media (min-width: 1024px) {
    .cabb-block.hero .hero-content-wrapper .content-image {
        width: 14rem;
    }
}

.cabb-block.hero .hero-content-wrapper .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cabb-block.hero .hero-content-wrapper h1 {
    width: 100%;
    max-width: none;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}
@media (min-width: 1024px) {
    .cabb-block.hero .hero-content-wrapper h1 {
        font-size: 3.75rem;
        line-height: 1;
    }
}

.cabb-block.hero .hero-content-wrapper h2 {
    width: 100%;
    max-width: none;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin: 0;
    color: white;
}
@media (min-width: 1024px) {
    .cabb-block.hero .hero-content-wrapper h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.cabb-block.hero .hero-content-wrapper .editor_content {
    width: 100%;
    max-width: none;
    font-size: 1rem;
    line-height: 1.5rem;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 1024px) {
    .cabb-block.hero .hero-content-wrapper .editor_content {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}

.cabb-block.hero .hero-content-wrapper .editor_content p {
    width: 100%;
    max-width: 42rem;
    margin-bottom: 0;
    margin-top: 1rem;
    color: white;
    opacity: .8;
    padding-left: 2rem;
    padding-right: 2rem;
}

.cabb-block.hero .hero-content-wrapper .editor_content p:first-child {
    margin-top: 0;
}

.cabb-block.hero .hero-content-wrapper a.btn-primary,
.cabb-block.hero .hero-content-wrapper a.btn-secondary {
    margin-top: 28px;
}

.cabb-block.hero .background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cabb-block.hero .background .vail {
    background-image: linear-gradient(180deg, #000,transparent);
    width: 100%;
    height: 10rem;
    position: absolute;
    top: 0;
    pointer-events: none;
    z-index: 30;
}

.cabb-block.hero .background img,
.cabb-block.hero .background video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.cabb-block.hero.overlay-waved:before {
    width: 100%;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 97.03'%3E%3Cpath fill='%23262626' fill-rule='evenodd' d='M0 97V56.31s460.82-66.18 866.48-55S1387.59 90.19 1920 23.06V97z'%3E%3C/path%3E%3C/svg%3E");
    z-index: 20;
    position: absolute;
    bottom: -9px;
    display: block;
    vertical-align: middle;
}

.cabb-block.hero.overlay-dotted:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    display: block;
    z-index: 10;
    background-color: rgba(0, 0, 0, .35);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2 2'%3E%3Cpath d='M1 1h1v1H1z'/%3E%3C/svg%3E");
    background-size: 3px;
}

.cabb-block.hero.overlay-dark:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    display: block;
    z-index: 10;
    background-color: rgb(0 0 0 / 0.7)
}

.cabb-block.hero.overlay-grayscale {
    filter: grayscale(1);
}

/* Markets */
.cabb-block.hero .market-wrapper {
    max-width: 642px;
    width: 100%;
    margin: 0 auto;
    padding-top: var(--wp--preset--spacing--large);
}