*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 24px;
}

/* .page-end {
    box-shadow:
        inset 0 -1px 0 rgba(0, 0, 0, .01),
        inset 0 -36px 28px -28px rgba(0, 0, 0, .03);
} */

.cta {
    display: flex;
    gap: 12px;
    margin: 90px 0 0;
}

.space-bottom {
    margin-bottom: 50px;
}

.space-top {
    margin-top: 50px;
}

.centered {
    display: block;
    margin: 28px auto 0;
}

.right-aligned {
    display: block;
    margin: 28px 0 2px auto;
}

.btn {
    font-family: "Open Sauce", system-ui, -apple-system;
    appearance: none;
    border: 0;
    padding: 14px 50px;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .12s ease, box-shadow .12s ease, background-color .2s ease, color .2s ease;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
}

.btn-round {
    width: 1px;
    scale: 0.75;
    padding: 10px 18px;
}

.btn-white {
    background: rgba(255, 255, 255, .92);
    color: #111;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

.btn-white:hover {
    background: rgb(220, 220, 220);
}

.btn-black {
    background: #111;
    color: #fff;
}

.btn-black:hover {
    background: rgb(40, 40, 40);
}

.btn-outline {
    border: 1px solid rgba(17, 17, 17, .6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35);
}

/* ===== ANIMATIONS ===== */
.anim-reveal {
    opacity: 0;
    transition: opacity 2.0s ease;
    will-change: opacity;
}

.anim-reveal-from-left {
    opacity: 0;
    transform: translateX(-24px);
    transition: transform .6s ease, opacity .6s ease;
    will-change: transform, opacity;
}

.anim-reveal-from-right {
    opacity: 0;
    transform: translateX(24px);
    transition: transform .6s ease, opacity .6s ease;
    will-change: transform, opacity;
}

.anim-reveal-from-right-far {
    opacity: 0;
    transform: translateX(50px);
    transition: transform 1.5s ease, opacity .9s ease;
    will-change: transform, opacity;
}

.anim-reveal-inview {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {

    .anim-reveal-from-left,
    .anim-reveal-from-right,
    .anim-reveal-from-right-far {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

.anim-wipe-from-left {
    -webkit-mask: linear-gradient(#000 0 0) left / 0% 100% no-repeat;
    mask: linear-gradient(#000 0 0) left / 0% 100% no-repeat;
    transition: -webkit-mask-size .9s ease, mask-size .9s ease;
}

.anim-wipe-from-right {
    -webkit-mask: linear-gradient(#000 0 0) right / 0% 100% no-repeat;
    mask: linear-gradient(#000 0 0) right / 0% 100% no-repeat;
    transition: -webkit-mask-size .9s ease, mask-size .9s ease;
}

.anim-wipe-inview {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.anim-wipe-from-right {
    opacity: 0;
    transition:
        -webkit-mask-size .9s ease,
        mask-size .9s ease,
        opacity .6s ease,
}

.anim-wipe-inview {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {

    .anim-wipe-from-left,
    .anim-wipe-from-right {
        -webkit-mask: none !important;
        mask: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}