
.container.blue-video-container{
    margin-top: 62px;
    margin-bottom: 62px;
}

.blue-video-wrapper {
    position: relative;
    width: 100%;
}

.blue-video-preview {
    position: relative;
    width: 100%;
    height: 100%;
}

.blue-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blue-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 164px;
    height: 164px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blue-video-play-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.blue-video-play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 55px solid #ffffff;
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
}

.blue-video-embed {
    width: 100%;
    height: 100%;
}

.blue-video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.blue-video-block {
    display: flex;
    flex-direction: row;
    background-color: #0EB1D2;
    min-height: 480px;
    position: relative;
}

.blue-video-text-side {
    width: 38%;
    padding: 64px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.blue-video-wrapper {
    width: 62%;
}

.blue-video-description{
    font-size: 30px;
}

@media (max-width: 1472px) {
    .blue-video-description{
        font-size: 28px;
    }
}

@media (max-width: 1365px) {
    .blue-video-description{
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 950px) {

    .container.blue-video-container{
        margin-top: 62px;
        margin-bottom: 62px;
    }

    .blue-video-block{
        flex-direction: column-reverse;
        min-height: unset;
    }

    .blue-video-text-side, .blue-video-wrapper{
        width: 100%;
    }

    .blue-video-text-side {
        padding: 40px 0;
    }
    
    .blue-video-play-button::after {
        border-left: 26px solid #ffffff;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
    }

    .blue-video-play-button{
        width: 80px;
        height: 80px;
    }

    .blue-video-embed, .blue-video-preview{
        position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden;
    }

    .blue-video-embed iframe, .blue-video-preview img{
        position: absolute; top: 0; left: 0; width: 100%;  height: 100%;
    }

}

@media (max-width: 550px) {
    .blue-video-description{
        font-size: 17px;
    }
}

