.hero {
    width: 100%;
    line-height: 0;
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero__img {
    width: 100%;
    height: clamp(344px, calc(468px - (468 - 344) * ((100vw - 360px) / (768 - 360))), 468px);
    object-fit: cover;
    display: block;
}

picture img {
    position: absolute;
    z-index: -1;
}

@media (min-width: 768px) {
    .hero__img {
        height: clamp(344px, calc(344px + (363 - 344) * ((100vw - 768px) / (1280 - 768))), 363px);
    }
}

@media (min-width: 1280px) {
    .hero__img {
        height: clamp(363px, calc(363px + (455 - 363) * ((100vw - 1280px) / (1920 - 1280))), 455px);
    }
}

.hero__divider img {
    width: 100%;
    height: auto;
    display: block;
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .video-container {
        top: 62%;
    }
}

.play-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (min-width: 1280px) {
    .play-circle {
        width: 75px;
        height: 75px;
    }
}

@media (min-width: 1920px) {
    .play-circle {
        width: 100px;
        height: 100px;
    }
}

.play-circle:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.play-icon {
    width: 18px;
    height: auto;
    margin-left: 5px;

}

@media (min-width: 1280px) {
    .play-icon {
        width: 28px;
    }
}

@media (min-width: 1920px) {
    .play-icon {
        width: 37px;
    }
}

.label-wrapper {
    position: absolute;
    top: -190%;
    left: 80%;
    pointer-events: none;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: start;
}

@media (min-width: 768px) {
    .label-wrapper {
        flex-direction: column-reverse;
        top: 70%;
        left: 80%;
    }
}

@media (min-width: 1280px) {
    .label-wrapper {
        top: 90%;
        left: 75%;
        flex-direction: column-reverse;
    }
}

@media (min-width: 1920px) {
    .label-wrapper {
        top: 70%;
        left: 120%;
        flex-direction: column-reverse;
    }
}

.arrow-icon {
    width: 65px;
    height: 70px;
    margin-bottom: 5px;
    transform: rotate(-18deg) scaleY(-1);
}

@media (min-width: 768px) {
    .arrow-icon {
        transform: rotate(18deg)
    }
}

@media (min-width: 1280px) {
    .arrow-icon {
        transform: rotate(28deg);
    }
}

@media (min-width: 1920px) {
    .arrow-icon {
        width: 100%;
        height: auto;
        transform: rotate(1deg);
    }
}

.video-text {
    margin-left: 12px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    transform: rotate(15deg);
    text-align: center;
}

@media (min-width: 768px) {
    .video-text {
        font-size: 16px;
        transform: rotate(-15deg);
        margin-left: 10px;
    }
}

@media (min-width: 1280px) {
    .video-text {
        transform: rotate(-15deg);
        margin-left: 2px;

    }
}

@media (min-width: 1920px) {
    .video-text {
        margin-top: 21px;
        margin-left: 10px;

    }
}