.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 50px;

    @media (min-width: $breakpoint_sm) {
        border-radius: 100px;
    }
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.play-icon-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9999;
    width: 100px;
    cursor: pointer;

    img {
        width: 100%;
        margin-top: -50px;
        margin-left: -50px;

        @media (min-width: $breakpoint_lg) {
            width: 100%;
            margin-top: -100px;
            margin-left: -100px;
        }
    }

    @media (min-width: $breakpoint_lg) {
        width: 200px;
    }
}

.pause-icon-overlay {
    position: absolute;
    bottom: 50px;
    left: 50px;
    cursor: pointer;
    z-index: 9999;

    img {
        width: 40px;
        height: 40px;

        @media (min-width: $breakpoint_lg) {
            width: 80px;
            height: 80px;
        }
    }
}