.brand-section--videos {
    margin-bottom: 10.9rem;
}

.brand-section--videos .container > .title-wrapper {
    color: var(--main-color);
    font-weight: 700;
    font-size: 3.2rem;
    margin-bottom: 3rem;
}

.with-submenu .brand-section--videos .container > .title-wrapper {
    text-align: center;
}

.brand-section--videos .videos-wrapper {
    display: flex;
    gap: 8rem;
    width: min(1360px, calc(100% - 40px));
    margin: 0 auto;
}

.brand-section--videos .videos-wrapper .single-video {
    box-shadow: 0px 2px 4px 0px #00000040;
    border-radius: 20px;
}

.brand-section--videos .videos-wrapper .single-video:hover {
    cursor: pointer;
}

.brand-section--videos .videos-wrapper .single-video img {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-section--videos .videos-wrapper .single-video .title-wrapper {
    font-size: 3.2rem;
    padding: 1.5rem 0;
    text-align: center;
}

@media (max-width: 1200px) {
    .brand-section--videos .videos-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .brand-section--videos .videos-wrapper {
        flex-direction: column;
    }
}