.video {
    margin-bottom: 210px;
}

.video__playlist {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.video__item-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 555px;
    height: 283px;
    overflow: hidden;
}

.video__item-link::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding-left: 3px;
    width: 40px;
    height: 40px;
    border: 4px solid #fff;
    background-color: transparent;
    border-radius: 100%;
    content: "►";
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 8;
}

.video__descr {
    margin-top: 32px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.video__logo {
    margin-right: 40px;
}

.video__descr-title {
    width: 67%;
    color: #1A3C5E;
}

.video-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1A3C5E;
    color: #1A3C5E;
    height: 55px;
    width: 244px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
}

.video-btn:hover {
    background-color: #1A3C5E;
    color: #fff;
    transition: 0.5s;
}


.video__item-link img {
    width: 100%;
}

@media (max-width: 1200px) {
    .video__playlist {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .video__item {
        margin-bottom: 40px;
    }
    .video__playlist {
        margin-bottom: 20px;
    }
}

@media (max-width: 1024px) {
    .video {
        margin-bottom: 90px;
    }
}

@media (max-width: 598px) {
    .statistic__item {
        flex: 0 0 300px;
    }
    .statistic__item:not(:last-child)::after {
        right: 18%;
    }
    .video__item-link{
        width: 100%;
    }
    .video__item-link img {
        width: 100%;
        height: auto;
    }
    .video__item {
        flex: 0 0 100%;
    }

    .video__descr {
        margin-top: 15px;
    }
    
}


@media (max-width: 475px) {
    .video__item-link {
        height: 210px;
    }
}

