/* HOMEPAGE video section - Sebastian 06/01/2025 */
.home-video .wrapper {
    display: flex;
    width: 100%;
    height: 40rem;
}

.home-video .home-video-content-wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
}

.home-video .home-video-content-wrapper .home-video-text-field {
    width: 80%;
    padding: 100px 150px 50px 150px;
}

.home-video .home-video-text-field .home-video-text {
    color: #fff;
}

.home-video .video-content {
    padding-left: 150px;
}

/* --------- */
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-video .spacer {
    position: relative;
    padding-bottom: 21.25%;
    /* 16:9 */
    height: 0;
}

@media screen and (max-width: 992px) {
    .home-video .content-block__content.dark {
        flex: 0 0 100%;
    }

    .home-video .video-content {
        padding: 0;
        padding-right: 25px;
    }

    .home-video .home-video-content-wrapper .home-video-text-field {
        width: 100%;
    }

    .home-video .wrapper {
        height: 35rem
    }
}

@media screen and (max-width: 768px) {
    .home-video .home-video-content-wrapper .home-video-text-field {
        padding: 25px
    }

    .home-video .video-content {
        padding: 0;
        padding-right: 15px;
    }

    .home-video .wrapper {
        height: 30rem;
    }
}

/* 06/01/2025 small fixes  IOn*/
@media screen and (max-width: 400px) {
    .home-video-text-field{
        background-color:#182843 ;
    }
}

/* -----END of HOMEPAGE video section - Sebastian 06/01/2025 */