.rep-block-video {
    display: flex;
    justify-content: center;
    width: 100%;
    min-height: 800px;
    position: relative;
    overflow: visible;
    margin-top: 26px;
    margin-bottom: 26px;
}

.rep-block-video .video-container {
    max-width: 900px;
    width: 100%;
    z-index: 2;
    overflow: visible;
}

.rep-block-video .video-container iframe {
    filter: drop-shadow(0 0 50px rgba(1, 1, 1, 0.15));
}

.rep-block-video .seeds-bottom-right {
    position: absolute;
    right: -180px;
    bottom: 140px;
    width: 400px;
    height: 243px;
    background-image: url(../images/pomegranate.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

/* X Small */
@media (min-width: 0px) {
    .rep-block-video .seeds-bottom-right {
        display: none;
    }

    .rep-block-video {
        min-height: auto;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .rep-block-video .seeds-bottom-right {
        display: none;
    }

    .rep-block-video {
        min-height: auto;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .rep-block-video .seeds-bottom-right {
        display: none;
    }

    .rep-block-video {
        min-height: auto;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .rep-block-video .seeds-bottom-right {
        display: none;
    }

    .rep-block-video {
        min-height: 600px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .rep-block-video .seeds-bottom-right {
        display: block;
    }

    .rep-block-video {
        min-height: 800px;
    }
}