.video-section {
    margin: 40px 0;
    background-color: #1C4737;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-height: 450px;
    display: flex;
    flex-direction: row;
    padding: 0;
}

.video-section__text {
    padding: 60px;
    width: 45%;
    color: white;
    min-height: inherit;
    display: flex;
    align-items: center;
    vertical-align: middle;
}

.video-section__media {
    height: 450px;
    width: 55%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.video-section__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .video-section {
        flex-direction: column;
        margin: 20px 10px;
        min-height: auto;
    }

    .video-section__text {
        padding: 25px 20px;
        width: 50%;
        font-size: 16px;
        text-align: justify;
        order: 1;
        min-width: 100%;
    }

    .video-section__media {
        height: 250px;
        min-width: 100%;
        order: 2;
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .video-section {
        margin: 15px 5px;
    }

    .video-section__text {
        line-height: 1.5;
    }

    .video-section__media {
        height: 200px;
    }
}