.stage {
    height: 75vh;
    margin: 0 auto;
    max-height: 700px;
    max-width: 1920px;
    min-height: 480px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.stage::before {
    background: linear-gradient(160deg, var(--color-primary) 0%, #002d6e 100%);
    clip-path: polygon(0 0, 45% 0, 30% 100%, 0 100%);
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.stage__image {
    height: 100%;
    left: 20%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 80%;
    z-index: 1;
}

.stage__slide {
    display: block;
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0;
    position: absolute;
    top: 0;
    transform: scale(1.05);
    transition: opacity 1.5s ease-in-out;
    width: 100%;
}

.stage__slide.is-active {
    opacity: 1;
}

.stage__slide:nth-child(odd).is-active {
    animation: stageKenBurns1 8s cubic-bezier(.4, 0, .6, 1) forwards;
}

.stage__slide:nth-child(even).is-active {
    animation: stageKenBurns2 8s cubic-bezier(.4, 0, .6, 1) forwards;
}

@keyframes stageKenBurns1 {
    0% {
        transform: scale(1.02) translate(0, 0);
    }
    100% {
        transform: scale(1.08) translate(-1.5%, -.6%);
    }
}

@keyframes stageKenBurns2 {
    0% {
        transform: scale(1.07) translate(1%, .3%);
    }
    100% {
        transform: scale(1.02) translate(-.6%, -.5%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .stage__slide.is-active {
        animation: none;
        transform: scale(1.05);
    }
}

.stage__content {
    align-items: flex-start;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 3rem;
    position: relative;
    width: 100%;
    z-index: 3;
}

.stage__label {
    -webkit-tap-highlight-color: transparent;
    color: rgba(255, 255, 255, .9);
    cursor: default;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    margin-bottom: .5rem;
    text-decoration: none;
    text-transform: uppercase;
}

.stage__title {
    color: #fff;
    font-family: 'Exo 2', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    max-width: 520px;
}

.stage__text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 440px;
    opacity: .8;
}

@media (max-width: 1499.98px) {
    .stage::before {
        clip-path: polygon(0 0, 55% 0, 35% 100%, 0 100%);
    }
}

@media (max-width: 1299.98px) {
    .stage::before {
        clip-path: polygon(0 0, 60% 0, 40% 100%, 0 100%);
    }
}

@media (max-width: 1199.98px) {
    .stage {
        height: 65vh;
        min-height: 420px;
    }

    .stage__title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991.98px) {
    .stage {
        height: auto;
        max-height: none;
        min-height: 0;
    }

    .stage::before {
        display: none;
    }

    .stage__image {
        height: 50vw;
        left: 0;
        max-height: 300px;
        min-height: 220px;
        position: relative;
        width: 100%;
    }

    .stage__content {
        background: linear-gradient(160deg, var(--color-primary) 0%, #002d6e 100%);
        height: auto;
        padding: 2.5rem 2rem;
    }

    .stage__title {
        font-size: 2rem;
        max-width: none;
    }

    .stage__text {
        font-size: 1rem;
        max-width: none;
    }
}