/* HERO */

.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    padding: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: clamp(28px, 5vw, 64px);
    text-align: center;
    z-index: 2;
}


/* VIDEO */

.video-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}


/* CONTENT */

.content {
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


/* IMAGE + CONTENT */

.image-content {
    padding: 80px 20px;
}

.image-content__wrapper {
    display: flex !important;
    align-items: center;
    gap: 50px;
}

.image-content__media,
.image-content__text {
    flex: 1;
}


/* REVERSE */


/* IMAGE */

.image-content__media img {
    width: 100%;
    border-radius: 16px;
}


/* TEXT */

.image-content__text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.image-content__text p {
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 768px) {
    .image-content__wrapper {
        flex-direction: column;
    }
    .hero {
        height: 60vh;
    }
    .hero__title {
        width: 90%;
        font-size: 24px;
    }
}