/* Reset */
*,
*::after,
*::before {
    box-sizing: border-box;
}

*,
p {
    margin: 0;
    padding: 0;
    font: inherit;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

button,
textarea,
input,
select,
div,
a {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Home Styles */

/* Variables */
html {
    /* Colors */
    --ae-white: #ffffff;
    --ae-black: #000000;
    --ae-dark-grey: #131313;
    --ae-light-grey: #E5E5E5;
    --ae-orange: #FF5906;

    /* Dimensions */
    --sidebar-width: max(23.5vw, 350px);
    --header-height: 60px;
    --zone-content-height: 60vh;

    /* Transitions */
    --rotate-plus: rotate(270deg);
    --origin-plus: 50% 50%;
    --transition-plus: transform 400ms ease;
    --fade: opacity 250ms ease-out;
}

/* Layout */
html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    overscroll-behavior: auto;
}

body {
    width: auto;
    height: 100vh;
    min-height: 100vh;
    background: black;
    position: relative;
}

.aero-header {
    position: absolute;
    width: 100%;
    z-index: 10;
}

.main {
    width: 100%;
    height: 100%;
    position: relative;
    background: rgb(0 0 0 / .2);
    overflow: hidden;
}

.main-content {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    padding-top: var(--header-height);
}

.zone-content {
    position: absolute;
    margin: 0 auto;
    width: 100%;
    height: var(--zone-content-height);
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    opacity: 1;
    transition: var(--fade);
    flex: 4 1 auto;
    margin-top: calc(20vh - var(--header-height));
}

.background-anim {
    width: 100%;
    height: 100%;
}

.drone-buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 3vw;
}

.zone-nav-wrapper {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 10vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    flex: 0 0 auto;
    padding: 0 0 1rem 1rem;
    z-index: 8;
    transition: var(--fade);
}

.zone-buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    position: relative;
    gap: 1.5vw;
    transition: var(--fade);
}

.zone-button {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-end;
    width: 16.625rem;
    opacity: 0;
}

.zone-nav-mobile-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    flex-flow: column nowrap;
    justify-content: flex-end;
    flex: 0 0 auto;
    align-items: flex-start;
    padding: 0 2.083rem 2.333rem 2.083rem;
    z-index: 8;
    transition: var(--fade);
}

.zone-mobile-buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    position: relative;
    gap: 1.5vmax;
    width: min(100%, 340px);
    padding-top: 2.167rem;
    transition: var(--fade);
}

.zone-mobile-buttons .zone-button .zone-svg-plus {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    top: -1rem;
    right: -0.65rem;
    z-index: 5;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 350ms ease;
}

.zone-mobile-buttons .zone-button .zone-svg-plus svg {
    width: 10px;
    float: right;
}

.instruction-wrapper {
    align-self: center;
}

.instruction-text {
    font-family: "Titling Gothic FB Nrm Lt";
    font-style: normal;
    font-weight: 300;
    font-size: 1rem;
    color: var(--ae-light-grey);
    line-height: 160%;
    text-align: center;
    letter-spacing: 0.045rem;
    opacity: 0;
}

.header-nav-mobile .instruction-wrapper .instruction-text {
    padding-top: 1.333rem;
    opacity: 1;
}

/* Styles */

.zone-button {
    cursor: pointer;
    pointer-events: auto;
}

.zone-svg {
    width: 100%;
    height: auto;
    position: relative;
}

.zone-svg>svg {
    width: 100%;
    height: auto;
}

.zone-button .zone-svg:first-child>svg>path {
    fill: #000000;
    opacity: .3;
}

.zone-nav-wrapper .zone-active .zone-svg:first-child>svg path {
    d: path("M0.52832 0.5H168.252C180.024 12.2721 186.619 18.8668 198.391 30.6389V51H0.52832V0.5Z");
}

.zone-nav-wrapper .zone-inactive .zone-svg:first-child>svg path {
    d: path("M0.671875 0.745605H168.395C180.168 12.5177 186.762 19.1124 198.534 30.8845V42.9995H0.671875V0.745605Z");
}

.zone-button .zone-svg:first-child>svg>path {
    transition: var(--fade);
}

.zone-button:hover .zone-svg:first-child>svg>path {
    opacity: .6;
}

.zone-svg-plus {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    top: -1rem;
    right: -1rem;
    z-index: 5;
    cursor: pointer;
    pointer-events: auto;
    margin: 0.25rem;
    transition: transform 350ms ease;
}

.zone-svg-plus>svg {
    width: 1.5rem;
    height: 1.5rem;
}

.zone-button-text {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1.078rem 0 0 1.344rem;
    color: var(--ae-white);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.25rem;
    letter-spacing: 0.045rem;
}

.title,
.subtitle {
    color: var(--ae-white);
    opacity: 0;
}

.drone-title-mobile {
    display: none;
}

.drone-title,
.drone-title-mobile {
    margin-block: 6px;
    color: var(--ae-white);
    font-size: 0.75rem;
    letter-spacing: 0.045rem;
    font-weight: 300;
    line-height: 150%;
}

.drone-button {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    cursor: pointer;
    opacity: 0;
}

.drone-button svg circle:first-child {
    transition: all 250ms ease-out;
}

.drone-button:hover svg circle:first-child {
    fill: #101010;
    fill-opacity: .8;
}

.overlay-drone-button svg circle:first-child {
    transition: all 250ms ease-out;
}

.overlay-drone-button:hover svg circle:first-child {
    fill: #101010;
    fill-opacity: .8;
}

.sidebar-nav-drone-button svg circle:first-child {
    transition: all 250ms ease-out;
}

.sidebar-nav-drone-button:hover svg circle:first-child {
    fill: #101010;
    fill-opacity: .8;
}

.overlay-drone-button {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    cursor: pointer;
    pointer-events: all;
    opacity: 0;
}

.overlay-drone-button>svg {
    width: 6.25rem;
}

.drone-button>svg {
    width: 6.25rem;
}

.title {
    padding-top: 3vh;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 220%;
    font-size: 1.625rem;
    letter-spacing: 2.5rem;
    text-align: center;
    color: var(--ae-white);
    margin: 0;
}

.subtitle {
    width: min(850px, 80vw);
    padding-top: 2.5vh;
    font-weight: 300;
    font-size: 1.875rem;
    line-height: 144.5%;
    text-align: center;
    color: var(--ae-white);
}

.background-canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/sequences/mpe/Naval2Land/Naval2Land_0050.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center !important;
    z-index: -1;
}

.main:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 1;
    animation: fadeOut 1.5s ease forwards;
}

.full-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background: var(--ae-black);
    isolation: isolate;
    overflow: hidden;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-template-areas:
        ". . . . overlay-header"
        ". . . . ."
        ". . . . ."
        ". overlay-content overlay-content . .";
}

.full-overlay:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / .2);
    z-index: 0;
}

:where(.overlay-title, .overlay-excerpt, .close-overlay-btn) {
    opacity: 0;
}

.overlay-title {
    font-weight: 400;
    font-size: 1rem;
    line-height: 130.5%;
    letter-spacing: 1.2rem;
    color: var(--ae-white);
    text-shadow: 0 0 30px rgb(255 255 255 / 0.3);
    text-transform: uppercase;
}

.font-loader {
    font-family: "Titling Gothic FB Nrm Lt";
    font-display: swap;
    font-style: normal;
}

.overlay-excerpt {
    font-family: "Titling Gothic FB Nrm Lt";
    font-style: normal;
    padding: 1.625rem 0 0 0;
    font-weight: 300;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0.045rem;
    color: var(--ae-white);
}

.overlay-header {
    grid-area: overlay-header;
}

.overlay-content {
    grid-area: overlay-content;
    min-height: 30vh;
}

.show {
    opacity: 1;
    z-index: 9;
}

.close-overlay-btn {
    width: 4.156rem;
    height: 4.156rem;
    margin: 1.25rem 0 0 0;
    cursor: pointer;
    pointer-events: auto;
}

.overlay-bg {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
}

.show>.overlay-bg {
    opacity: 1;
}

.drone-overlay-buttons {
    margin: calc(60px + 2.625rem) 2.625rem 0 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5vw;
}

.header-nav-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: var(--fade);
}

.header-nav-mobile .overlay-header {
    position: relative;
    z-index: 10;
}

.zone-buttons .zone-active .zone-svg-plus {
    top: -0.5rem;
}

.zone-buttons .zone-active .zone-svg-plus svg {
    transform: rotate(45deg);
}

.zone-nav-wrapper :where(.zone-active, .zone-inactive) .zone-button-text {
    top: unset;
    bottom: 30%;
    padding: 0 0 0 1.344rem;
}

.zone-buttons .zone-svg-plus svg {
    transition: transform 400ms ease;
}

.zone-button:hover .zone-svg-plus svg {
    transform: rotate(270deg);
}

.zone-back-button {
    width: 6.813rem;
    position: absolute;
    top: -1.5rem;
    left: 0;
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
}

.zone-back-button-visible {
    opacity: 1;
    pointer-events: all;
}

.play-button {
    position: absolute;
    cursor: pointer;
    pointer-events: all;
    transition: var(--fade);
}

.play-1 {
    width: 5vw;
    top: 15vh;
    left: 45vw;
}

.play-2 {
    width: 7vw;
    top: 35vh;
    left: 25vw;
}

.play-3 {
    width: 8vw;
    top: 40vh;
    left: 50vw;
}

.play-button-text {
    color: var(--ae-light-grey);
    font-family: "Titling Gothic FB Nrm Lt";
    text-align: center;
    font-style: normal;
    font-weight: 300;
    font-size: 1rem;
    line-height: 160%;
    opacity: 0.8;
    letter-spacing: 0.045em;
    display: none;
}

.sidebar-wrapper {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    align-items: flex-end;
    position: absolute;
    right: 0;
    top: 0;
    isolation: isolate;
    width: var(--sidebar-width);
    height: 100vh;
    z-index: 9;
    background: transparent;
    transition: var(--fade);
    will-change: opacity;
}

.sidebar {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    position: absolute;
    top: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
    padding-top: 15vh;
    transition: var(--fade);
    will-change: opacity;
}

.sidebar-inner {
    background-color: #000;
    transition: var(--fade);
    will-change: opacity;
}

.sidebar-outer {
    padding-top: 10vh;
}

.scrollable {
    width: 100%;
    height: var(--zone-content-height);
    overflow-y: auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
}

.scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 100%;
    background: #232323;
    border-radius: 5px;
}

.scrollbar::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #404040;
    border-radius: 5px;
}

.scrollbar::selection {
    background: #404040;
    color: #404040;
    text-shadow: none;
}

.sidebar-outer .sidebar-content {
    padding-top: 10vh;
    align-items: flex-end;
    transition: var(--fade);
}

.sidebar-outer .sidebar-nav {
    margin: 0 2rem 0 0;
    justify-content: flex-end;
}

.sidebar-outer .sidebar-nav {
    flex-flow: row nowrap;
}

.sidebar-excerpt {
    margin: 2rem 0 4rem 0;
}

.close-sidebar,
.sidebar-back-button {
    cursor: pointer;
    pointer-events: auto;
    margin-block: auto 2rem;
    position: fixed;
    bottom: 0;
}

:where(.sidebar-back-button, .close-sidebar)>svg {
    width: 4.156rem;
    height: 4.156rem;
}

:where(.close-sidebar, .close-overlay-btn) svg path {
    transition: var(--transition-plus);
    transform-origin: var(--origin-plus);
}

:where(.close-sidebar, .close-overlay-btn):hover svg path {
    transform: var(--rotate-plus);
    transition: var(--transition-plus);
    transform-origin: var(--origin-plus);
}

.open-sidebar {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 0 2rem 2rem 0;
    width: 4.156rem;
    height: 4.156rem;
    cursor: pointer;
    pointer-events: all;
    z-index: 1;
}

.open-sidebar svg path {
    transition: var(--transition-plus);
    transform-origin: var(--origin-plus);
}

.open-sidebar:hover svg path {
    transform: var(--rotate-plus);
    transition: var(--transition-plus);
    transform-origin: var(--origin-plus);
}

.sidebar-content {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    padding: 15vh 3% 0 3%;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.mobile-drawer-wrapper {
    background: #1C1A1A;
    width: 100%;
    opacity: 0;
    z-index: 0;
}

.mobile-drawer-content {
    padding: 1.9rem 2.25rem 3.9rem 2.25rem;
    width: 100%;
}

.open-arrow {
    display: flex;
    justify-content: center;
    bottom: 0;
    position: absolute;
    padding-block: 0.75rem;
    cursor: pointer;
    z-index: 10;
}

.arrow {
    width: 100%;
}

.arrow>svg {
    width: 1rem;
}

.close-arrow {
    position: absolute;
    bottom: 0.75rem;
    display: flex;
    justify-content: center;
    padding-block: 0.75rem;
    cursor: pointer;
}

/* Prehide sidebar content for entrance anims */
.sidebar-inner :where(.sidebar-content, .sidebar-single-content)>* {
    opacity: 0;
    will-change: opacity;
}

.sidebar-single-content {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    background: var(--ae-black);
    padding-top: 15vh;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}

.hide-ae-ui :where(.sidebar-back-button, .close-sidebar) {
    pointer-events: none;
}

:where(.sidebar-content, .sidebar-single-content) .zone-title {
    color: var(--ae-white);
    font-style: normal;
    font-weight: 400;
    font-size: 1.667rem;
    line-height: 160%;
    text-align: center;
}

.mobile-drawer-wrapper .zone-title {
    color: var(--ae-white);
    font-style: normal;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 2.5rem;
    text-align: center;
}

.mobile-drawer-wrapper .sidebar-excerpt {
    margin: 1rem 0 0 0;
}

.mobile-drawer-wrapper .zone-excerpt {
    font-family: "Titling Gothic FB Nrm Lt";
    color: var(--ae-white);
    font-style: normal;
    font-weight: 300;
    font-size: 1.333rem;
    line-height: 150%;
    letter-spacing: 0.045rem;
    text-align: center;
}

.sidebar-content .zone-excerpt {
    color: var(--ae-white);
    font-style: normal;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
    padding: 0 3rem;
}

.sidebar-nav,
.top-nav-drone-buttons {
    margin: 2.625rem 0 1rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1vw 2vw;
}

.sidebar-specs {
    display: block;
    width: 100%;
    padding-inline: 8%;
}

.sidebar-specs .spec {
    display: flex;
    justify-content: space-between;
    padding: 1.3rem 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, .5);
    font-size: 0.875rem;
    color: #fff;
    height: 10vmin;
    align-items: flex-end;
}

.sidebar-specs .spec .label {
    color: #999999;
    text-align: start;
}

.sidebar-specs .spec .badge {
    color: #666666;
    font-size: 0.75rem;
    text-align: end;
}

.sidebar-specs>* {
    opacity: 0;
}

.sidebar-specs .spec :where(.value, .label) {
    opacity: 0;
}

.sidebar-single-content .sidebar-learn-more {
    padding-top: 6vh;
}

.sidebar-single-content .sidebar-learn-more-link {
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 127.6%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.sidebar-single-content .sidebar-learn-more-link:hover {
    color: #FFFFFF;
}

.underscore {
    display: block;
    width: 100%;
    border: 1px solid #FFFFFF;
}

.drone-symbol>svg {
    width: 4.25rem;
}

.drone-symbol circle {
    display: none;
}

.single-drone-title {
    padding-top: 1rem;
}

.sidebar-nav-drone-button {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    width: 100%;
    cursor: pointer;
}

.zone-symbol {
    width: 4rem;
    margin: 1.25rem 0 1rem 0;
    aspect-ratio: 2/1;
}

/* Sequence preload trigger zone */
.hidden-image-container {
    visibility: hidden;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    width: 0px;
    height: 0px;
    pointer-events: none;
}

.hidden-buttons {
    visibility: hidden;
    position: absolute;
    overflow: hidden;
    z-index: -1;
    width: 0px;
    height: 0px;
    pointer-events: none;
}

.mobile-nav {
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 10vh;
    width: var(--sidebar-width);
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: baseline;
    margin: 2rem 2rem 0 0;
    z-index: 9;
}

.video-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    margin-top: var(--header-height);
    background: rgb(0 0 0 / .25);
    height: 100vh;
    transition: var(--fade);
    transition-delay: 250ms;
    will-change: opacity;
}

.video-wrapper {
    position: relative;
    z-index: 8;
    width: calc(100vw - var(--sidebar-width));
    will-change: width;
    transition: width 250ms ease-out;
}

.video-player {
    position: relative;
    margin-inline: 4rem;
    margin-block: 2rem;
}

.video-player video {
    position: relative;
    opacity: 1;
    clip-path: polygon(94% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
}

.close-video-popup {
    position: absolute;
    top: 0;
    right: 0;
    margin: 5% 5% 0 0;
    width: min(5%, 5vw);
    z-index: 9;
    cursor: pointer;
    mix-blend-mode: exclusion;
    transition: transform 400ms ease;
}

.close-video-popup svg path {
    transition: var(--transition-plus);
    transform-origin: var(--origin-plus);
}

.close-video-popup:hover svg path {
    transform: var(--rotate-plus);
    transition: var(--transition-plus);
    transform-origin: var(--origin-plus);
}

.rotate-phone-message {
    display: none;
    position: absolute;
    z-index: 999;
    color: var(--ae-white);
    font-style: normal;
    font-weight: 400;
    font-size: 1.667rem;
    line-height: 160%;
    text-align: center;
    overflow: hidden;
}

.rotate-phone-anim {
    max-width: 30%;
    margin: 0 auto;
}


/* Keyframe animations */
@keyframes fadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }

    to {
        visibility: hidden;
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

::selection {
    background: #af0404;
    color: #fff;
    text-shadow: none;
}

/* Hide util */
.hide-ae-ui {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.hide-ae-ui .play-button {
    transform: translateX(100vw);
}

.hide-ae-ui.open-sidebar {
    transform: translateX(100vw);
}

@media only screen and (min-width: 1280px) and (max-width: 1599px) {
    .drone-button>svg {
        width: 5.25vw;
    }

    .zone-content.home-view .title{
        font-size: 1.5vw;
        letter-spacing: 2.25vw;
    }

    .zone-content.home-view .subtitle{
        font-size: 1.5vw;
    }

    .zone-buttons .zone-button{
        width: 14vw;
    }


}

/* Responsive Adjustments */

@media screen and (max-width: 1250px) {
    :root {
        font-size: 14px;
    }

    header {
        font-size: calc(0.625rem + 0.4vw);
    }

    .overlay-content .overlay-title {
        font-size: 16px;
        line-height: 220%;
    }

    .home-view {
        position: relative;
        width: min(850px, 80vw);
    }

    .subtitle {
        width: inherit;
    }
}

@media screen and (max-width: 1025px) {
    :root {
        font-size: 13px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        font-size: 12px;
    }

    .background-canvas {
        background-image: url('/wp-content/sequences_mobile/Naval2Land/Naval2Land_mobile_0050.jpg')
    }

    /* Overlay */
    .full-overlay {
        grid-template-areas:
            "overlay-header overlay-header overlay-header overlay-header overlay-header"
            "overlay-content overlay-content overlay-content overlay-content overlay-content"
            "overlay-content overlay-content overlay-content overlay-content overlay-content"
            "overlay-content overlay-content overlay-content overlay-content overlay-content"
            "overlay-content overlay-content overlay-content overlay-content overlay-content";
    }

    .overlay-header {
        width: 100%;
        background: #131313;
        margin: 0 auto;
    }

    .drone-overlay-nav {
        width: auto;
        display: flex;
        height: 100%;
        justify-content: center;
    }

    .drone-overlay-buttons {
        margin: var(--header-height) 0 0 0;
        justify-content: space-evenly;
        gap: none;
        width: 270px;
        padding: 2.5rem 0;
    }

    .sidebar-nav-drone-button>svg {
        width: 5.75rem;
    }

    .overlay-drone-button>svg {
        width: 5.75rem;
    }

    .overlay-drone-button p {
        margin-block: 6px 0;
    }

    .overlay-content {
        grid-area: overlay-content;
        display: flex;
        flex-flow: column nowrap;
        justify-content: flex-start;
        align-items: center;
        padding: 14vmax 2rem;
        text-align: center;
        background: rgb(0 0 0 / .5);
    }

    .overlay-content .overlay-title {
        font-size: 16px;
        line-height: 220%;
    }

    .overlay-content .overlay-excerpt {
        font-size: 16px;
    }

    .close-overlay-btn {
        width: 4.25rem;
        position: absolute;
        position: fixed;
        bottom: 0;
        margin-bottom: 3rem;
        cursor: pointer;
        pointer-events: auto;
    }

    .overlay-bg {
        left: 25%;
        width: auto;
        height: 100%;
        object-fit: contain;
        scale: 2.5;
    }

    /* Zone content */
    .title {
        font-size: 16px;
        letter-spacing: 1.1rem;
        padding-top: 5rem;
    }

    .subtitle {
        font-size: 16px;
        line-height: 160%;
    }

    .home-view {
        position: relative;
        width: min(340px, 88vw);
        margin-top: calc(var(--header-height) * .5);
    }

    .home-view .drone-title {
        display: none;
    }

    .home-view .drone-title-mobile {
        display: block;
    }

    .home-view .drone-button>svg {
        width: 5.75rem;
    }

    .home-view .drone-buttons {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* Zone nav */
    .zone-nav-wrapper {
        display: none;
    }

    .zone-nav-mobile-wrapper {
        display: flex;
    }

    .zone-button {
        width: 8.042rem;
    }

    .zone-nav-mobile-wrapper .zone-active .zone-button-text {
        color: var(--ae-orange);
    }

    .zone-nav-mobile-wrapper .zone-inactive .zone-button-text {
        color: var(--ae-white);
    }

    .zone-nav-mobile-wrapper :where(.zone-active) .zone-svg-plus {
        display: none;
    }

    .sidebar-wrapper {
        display: none;
    }

    .zone-back-button {
        width: 2.583rem;
    }

    .zone-button-text {
        top: unset;
        bottom: 0;
        padding: 0 0 1.078rem 1.344rem;
    }

    .play-button-text {
        display: block;
    }

    .play-button {
        width: 18vmax;
    }

    .play-button lottie-player {
        margin: 0 auto;
    }

    .play-1 lottie-player {
        width: 10vmax;
    }

    .play-2 lottie-player {
        width: 14vmax;
    }

    .play-3 lottie-player {
        width: 16vmax;
    }

    .play-1 {
        top: 47vh;
        left: 25vw;
    }

    .play-2 {
        top: 15vh;
        left: 45vw;
    }

    .video-popup {
        padding-top: 20vh;
        z-index: 10;
    }

    .video-wrapper {
        width: 100%;
    }

    .video-player {
        margin: 0;
        padding-inline: 1rem;
    }

    .close-video-popup {
        width: 5vmax;
        margin: 5% 8.8% 0 0;
    }

    .header-nav-mobile {
        margin: var(--header-height) 0 0 0;
    }

    .header-nav-mobile .mobile-drawer-wrapper {
        position: relative;
    }

    .header-nav-mobile .drone-overlay-nav {
        overflow-x: auto;
        height: unset;
        max-height: 32rem;
    }

    .sidebar-nav {
        width: 270px;
        padding: 2.5rem 0;
        margin: 0;
        row-gap: 20px;
    }
}

.no-height {
    height: 0;
}

@media screen and (orientation:landscape) and (max-height: 450px) {
    .aero-header {
        display: none !important;
    }

    .main {
        display: none !important;
    }

    .background-canvas {
        display: none !important;
    }

    .rotate-phone-message {
        display: grid;
        width: 100%;
        height: 100%;
        place-content: center;
    }
}