.video-text {
    background: var(--color-dark-white);
    color: var(--color-gray-dark);
    position: relative;
}

.video-text--blue {
    background: var(--color-blue-light);
}

.video-text h2 {
    color: var(--color-navy-blue-dark);
}

.video-image {
    width: 100%;
    height: 235px;
    position: relative;
    display: block;
    margin-top: 40px;
}

.video-image-big {
    width: 100%;
    height: 100%;
}

.video-image img,
.video-image-big img,
.video-image-small img {
    display: block;
    border-radius: 20px;
}

.video-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 81px;
    height: 81px;
    border-radius: 50%;
    background: var(--color-white);
    font-size: 27px;
    color: var(--color-bright-blue);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    box-shadow: 0 0 20px rgba(20, 93, 147, 0.3);
}

.video-icon {
    position: absolute;
    right: -43px;
    top: -115px;
    max-width: 135px;
}

.video-image-column {
    position: relative;
    width: 100%;
}

.video-image-column {
    padding-top: 46px;
}

.video-image-big {
    height: 224px;
    margin-bottom: 16px;
}

.video-image-small {
    height: 224px;
}


@media (min-width: 768px) {
    .video-image {
        height: 355px;
        margin-top: 40px;
    }

    .video-text h2 {
        max-width: 506px;
    }

    .video-icon {
        right: -47px;
        top: -174px;
        max-width: 230px;
    }

    .video-image-column {
        padding-top: 50px;
        display: flex;
        margin: 0 -16px;
    }
    
    .video-image-big,
    .video-image-small {
        height: 213px;
        margin-bottom: 0;
        width: 50%;
        padding: 0 16px;
    }
}

@media (min-width: 1200px) {
    .video-text__img {
        position: relative;
        width: 51%;
    }

    .video-image-column {
        padding-top: 0;
        display: block;
        margin: 0 -0;
    }

    .video-image-big {
        width: 82%;
        height: 450px;
        padding: 0;
    }
    
    .video-image-small {
        width: 58%;
        height: 365px;
        position: relative;
        margin: -236px 0 0 auto;
        padding: 0;
    }

    .video-image--link {
        position: absolute;
        right: -72px;
        top: 91px;
        width: 181px;
    }
    
    .video-play {
        top: 0;
        left: 0;
        width: 181px;
        height: 180px;
        transition:
            transform 0.3s var(--easing-standard);
    }

    .video-play:hover {
        transform: scale(1.1);
    }

    .video-play::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        border: 1px solid rgba(0, 160, 210, 0.2);
        border-radius: 50%;
    }

    .video-play::after {
        content: "";
        position: absolute;
        top: 24px;
        left: 24px;
        width: calc(100% - 48px);
        height: calc(100% - 48px);
        display: block;
        border: 1px solid rgba(0, 160, 210, 0.2);
        border-radius: 50%;
    }

    .flex-row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .video-text .flex-row {
        align-items: center
    }

    .flex-opposite {
        flex-direction: row-reverse;
    }

    .video-text--right .video-text__text {
        padding-left: 112px;
        width: 49%;
    }

    .video-text--left .video-text__text {
        padding-right: 112px;
        width: 49%;
    }

    .video-text--left .video-image-big {
        margin: 0 0 0 auto;
    }

    .video-text--left .video-image-small {
        margin: -236px 0 0 0;
    }
}

@media (min-width: 1700px) {
    .video-icon {
        right: -76px;
        top: -223px;
        max-width: 100%;
    }
}