.aboutUs-video-container {
    margin: 50px 0;
    width: inherit;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 0;
}

.aboutUs-video-container a .aboutUs-video-box {
    display: flex;
    flex-direction: column;
    width: 440px;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.10);
}

.aboutUs-video-container a .aboutUs-video-box .aboutUs-video-image {
    justify-content: center;
    align-items: center;
    background-size: cover;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    width: 100%;
    height: 150px;
}

.aboutUs-video-container .aboutUs-video-box .aboutUs-video-box-description {
    padding: 20px;
}

.aboutUs-video-container .aboutUs-video-box .aboutUs-video-box-description .title {
    font-size: 1.42rem;
}

.aboutUs-video-container .aboutUs-video-box .aboutUs-video-box-description p {
    margin: 5px 0 0;
    color: #004467;
}


@media (max-width: 992px) {
    .aboutUs-video-container {
        margin: 50px 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .aboutUs-video-container a {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .aboutUs-video-container a .aboutUs-video-box {
        flex-direction: column;
        width: 280px;
        height: 280px;
    }
}