.hidden {
    display: none;
}

.video-section {
    padding: 60px 0;
    text-align: left;
    justify-content: center;
    align-items: self-start;
}

.video-section .videos {
    width: 50%;
    align-items: center;
    justify-content: flex-end;
    height: 400px;
}

.video-section .videos .video-title {
    font-weight: 600;
    font-size: 18px;
    color: #004467;
    margin: 0 0 10px;
}

.video-section .videos .white-shadow-box {
    width: 250px;
    height: 333px;
    margin: 0 15px;
}

.video-section .videos .white-shadow-box .video-description {
    padding: 20px;
}

.video-section .videos .gray-text {
    margin: 0;
}

.video-section .videos img {
    border-radius: 15px 15px 0 0;
}

.video-section #video-texts, .video-section #reference-texts {
    display: block;
}

.show-media {
    display: none;
}

#videos-radio:checked +.show-media {
    display: flex;
}

#videos-radio:checked ~.video-section-description #video-texts {
    display: block;
}

#videos-radio:checked ~.video-section-description #reference-texts {
    display: none;
}

#videos-radio:checked ~.video-section-description #video-btn {
    background: #ffffff;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

#videos-radio:not(checked) +.show-media {
    display: none;
}

#references-radio:checked +.show-media {
    display: flex;
}

#references-radio:checked ~.video-section-description #reference-texts {
    display: block;
}

#references-radio:checked ~.video-section-description #video-texts {
    display: none;
}

#references-radio:checked ~.video-section-description #reference-btn {
    background: #ffffff;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

#references-radio:not(checked) +.show-media {
    display: none;
}


.video-section-description {
    padding: 0 30px;
    width: 40%;
    margin-top: 20px;
}

.video-section-description .headings {
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    color: #012E4B;
    margin: 8px 0 50px;
}

.video-section-description p {
    margin: 14px 0;
}

.tab-btn {
    width: 126px;
    font-size: 12px;
    text-align: center;
    color: #004467;
    padding: 12px;
    margin-top: 10px;
    margin-right: 10px;
    cursor: pointer;
}

.video-section #reference {
    width: 50%;
    justify-content: flex-end;
}

.video-section #reference .references-container .ref-col {
    flex-direction: column;
}

.video-section #reference .references-container .ref-col .white-shadow-box {
    width: 217px;
    padding: 10px;
    margin: 10px;
}

.video-section #reference .references-container .ref-col .white-shadow-box img {
    display: block;
    margin: 0 auto;
}

.video-section #reference .references-container .ref-col .white-shadow-box p {
    font-size: 15px;
    text-align: center;
    color: #92a2aa;
    margin: 0;
}

@media (max-width: 992px) {
    .video-section {
        flex-direction: column-reverse;
        padding: 30px 0;
    }

    .video-section .video-section-description {
        width: 100%;
    }

    .video-section .video-section-description .flex-container {
        justify-content: center;
    }

    .video-section .video-section-description #video-texts, .video-section .video-section-description #reference-texts {
        text-align: center;
    }

    .video-section .videos {
        flex-direction: column;
        width: auto;
        height: auto;
    }

    .video-section .videos.show-media {
        width: 100%;
    }

    .video-section .videos .white-shadow-box {
        margin: 20px 55px;
        align-self: center !important;
    }

    .video-section #reference {
        width: 100%;
    }

    .video-section #reference .references-container {
        width: 100%;
        justify-content: center;
    }

    .video-section #reference .references-container .ref-col .white-shadow-box {
        width: 100%;
        max-width: 160px;
    }
}