#videoSection {

    --font-family: HelveticaNeueCyr;
    font-family: var(--font-family);

    @media (max-width: 1239px) {
        margin-top: 90px;
        width: auto;
        margin-left: 2.38vw;
        margin-right: 2.38vw;
    }

    @media (min-width: 1240px) {
        padding-top: 175px;
        width: 1200px;
        margin-left: auto;
        margin-right: auto;

        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .parent {
        @media (max-width: 1239px) {}

        @media (min-width: 1240px) {
            display: flex;
            align-items: center;
        }
    }

    .description {
        @media (max-width: 1239px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: min(14px, 3.33vw);
            line-height: 100%;
            color: #fff;

            margin-left: 10px;
            margin-top: 30px;
            margin-bottom: 65px;
            width: 76.19vw;
        }

        @media (min-width: 1240px) {
            font-family: var(--font-family);
            font-weight: 500;
            font-size: 26px;
            line-height: 107%;
            color: #fff;

            max-width: 530px;
        }
    }

    .description.appear {
        @media (max-width: 1239px) {

        }
        
        @media (min-width: 1240px) {    
            animation: AppearTop 600ms;
        }
    }

    .description>.accent {
        color: #1d76ff;
    }

    .videoList {
        display: flex;
        flex-direction: column;
    }

    .video {
        @media (max-width: 1239px) {
            width: 95.24vw;
            height: min(300px, 71.43vw);
            border-radius: 4.76vw;
            overflow: hidden;
            cursor: pointer;
        }

        @media (min-width: 1240px) {
            width: 600px;
            height: 300px;
            margin-bottom: 10px;
            border-radius: 25px;
            overflow: hidden;
            cursor: pointer;

            animation: CardDeFocus 200ms;
        }
    }

    .video:hover {
        animation: CardFocus 200ms;
        transform: translate(0, -6px);
    }

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