.cea-home-hero {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    margin: 0;
    overflow: hidden;
    background: #111;
}

.cea-home-sidebar {
    position: relative;
    z-index: 20;
    display: flex;
    flex: 0 0 88px;
    width: 88px;
    height: 100vh;
    min-height: 650px;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 35px;
    background: #fff;
}

.cea-home-sidebar-line {
    position: absolute;
    bottom: 128px;
    left: 50%;
    width: 1px;
    height: 66px;
    background: #e3e3e3;
    transform: translateX(-50%);
}

.cea-home-socials {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cea-home-socials a {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    color: #111;
    font-size: 14px;
    text-decoration: none;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

.cea-home-socials a:hover {
    border-color: #0788c8;
    background: #0788c8;
    color: #fff;
}

.cea-home-socials a svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.cea-home-socials a:first-child svg {
    width: 16px;
    height: 16px;
}

.cea-home-socials a:last-child svg {
    width: 15px;
    height: 15px;
}

.cea-home-video-wrapper {
    position: relative;
    flex: 1 1 auto;
    width: calc(100% - 88px);
    height: 100vh;
    min-width: 0;
    min-height: 650px;
    overflow: hidden;
    background: #111;
}

.cea-home-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.cea-home-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .42);
    pointer-events: none;
}

.cea-home-caption {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 72px;
}

.cea-home-caption .container-fluid {
    width: 100%;
    padding-right: 7%;
    padding-left: 7%;
}

.cea-home-caption-inner {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
    overflow: visible;
    text-align: right;
}

.cea-home-caption h1 {
    margin: 0 0 25px;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: clamp(40px, 3.8vw, 64px);
    font-weight: 400;
    line-height: 1.28;
    letter-spacing: 12px;
    text-align: right;
    text-shadow: 0 3px 8px rgba(0, 0, 0, .75);
    text-transform: uppercase;
}

.cea-home-brand-block {
    display: flex;
    width: clamp(330px, 31vw, 520px);
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
}

.cea-home-logo {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .45));
}

.cea-home-button-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 30px;
}

.cea-home-button {
    display: inline-flex;
    min-width: 174px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, .9);
    background: rgba(0, 0, 0, .12);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

.cea-home-button:hover,
.cea-home-button:focus {
    border-color: #0788c8;
    background: #0788c8;
    color: #fff;
    text-decoration: none;
}

.cea-home-corner {
    position: absolute;
    right: 46px;
    z-index: 4;
    width: 65px;
    height: 65px;
    pointer-events: none;
}

.cea-home-corner-top {
    top: 46px;
    border-top: 1px solid rgba(255, 255, 255, .28);
    border-right: 1px solid rgba(255, 255, 255, .28);
}

.cea-home-corner-bottom {
    right: 46px;
    bottom: 46px;
    border-right: 1px solid rgba(255, 255, 255, .28);
    border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.cea-home-admin {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 10;
}

@media (max-width: 1199.98px) {
    .cea-home-caption .container-fluid {
        padding-right: 4%;
        padding-left: 4%;
    }

    .cea-home-caption h1 {
        font-size: 40px;
        letter-spacing: 9px;
    }

    .cea-home-brand-block {
        width: 360px;
    }
}

@media (max-width: 991.98px) {
    .cea-home-sidebar {
        flex-basis: 72px;
        width: 72px;
    }

    .cea-home-video-wrapper {
        width: calc(100% - 72px);
    }

    .cea-home-caption {
        padding-top: 82px;
    }

    .cea-home-caption .row {
        margin: 0;
    }

    .cea-home-caption .col-md-8 {
        width: 100%;
        margin-left: 0;
        padding: 0;
    }

    .cea-home-caption h1 {
        font-size: 35px;
        letter-spacing: 7px;
    }

    .cea-home-brand-block {
        width: 320px;
    }
}

@media (max-width: 767.98px) {
    .cea-home-hero,
    .cea-home-video-wrapper {
        height: 100svh;
        min-height: 650px;
    }

    .cea-home-sidebar {
        display: none;
    }

    .cea-home-video-wrapper {
        width: 100%;
    }

    .cea-home-caption {
        align-items: center;
        padding-top: 90px;
    }

    .cea-home-caption .container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }

    .cea-home-caption-inner {
        align-items: center;
        text-align: center;
    }

    .cea-home-caption h1 {
        margin-bottom: 30px;
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.35;
        letter-spacing: 5px;
        text-align: center;
    }

    .cea-home-brand-block {
        width: min(330px, 82vw);
        margin-right: auto;
        margin-left: auto;
    }

    .cea-home-corner {
        display: none;
    }
}
