.video-text {
    position: relative;
    color: #565A5C;
}

.image-video-link {
    height: 217px;
    display: block;
    background: none;
    position: relative;
}


@keyframes pulse-animation {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0px rgba(255,255,255, 0.7);
    }
    70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255,255,255, 0);
	}
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255,255,255, 0);
    }
}

.video__play {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(36, 36, 37, 0.24);
}

.video__play .play-icon {
    background: rgba(255,255,255,0.90);
    border-radius: 100%;
    box-shadow: 0 0 30px rgba(0,0,0,0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transform: scale(1);
    animation: pulse-animation 2s infinite;
}

.video__play svg {
    width: 15px;
    height: 19px;
}

.video-text__img {
    width: 100%;
}

.video-text__text {
    padding-bottom: 25px;
}

.video-text__text ul {
    padding-left: 0;
    padding-bottom: 30px;
}

.video-text__text ul li {
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 18px;
    line-height: 1.2em;
    color: #3D3E3F;
    font-family: var(--font-poppins);
    font-weight: normal;
    letter-spacing: -0.03em;
    padding: 0;
    margin-bottom: 24px;
}

.video-text__text ul li:last-child {
    margin-bottom: 0;
}

.video-text__text ul li::before {
    background: #9EB28F;
    border-radius: 50%;
    content: "\e903";
    color: #1E0413;
    font-family: 'icomoon';
    font-size: 23px;
    font-weight: normal;
    height: 30px;
    display: inline-flex;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
    text-indent: 14px;
    width: 30px;
}

@media (min-width: 768px) {
    .image-video-link {
        height: 435px;
    }
    .video-text__text {
        padding-bottom: 25px;
    }
    .top {
        position: absolute;
        right: 52px;
        top: 17px;
    }

    .video__play .play-icon {
        height: 71px;
        width: 71px;
    }

    .video__play svg {
        width: 26px;
        height: 33px;
    }
}

@media (min-width: 1200px) {
    .video-text__wrap {
        border: 1px solid rgba(134, 140, 140, 0.37);
    }
    .video-text__wrap .flex-row {
        flex-direction: row-reverse;
    }
    .video-text__img {
        width: 60%;
        position: relative;
        height: auto;
    }
    .image-video-link {
        height: 100%;
    }
    .video-text__img img {
        position: absolute;
        top: 0;
    }
    .video-text__text {
        padding: 70px 50px;
        width: 40%;
    }
    .flex-opposite .video-text__text {
        padding: 50px;
    }
    .top {
        position: relative;
        right: auto;
        top: auto;
    }

    .video__play .play-icon {
        height: 90px;
        width: 90px;
    }

    .video__play svg {
        width: 12px;
        height: 16px;
    }

    .video-text__text ul li {
        font-size: 16px;
        margin: 10px 0 30px;
    }
    .video-text__text ul li:last-child {
        margin-bottom: 15px;
    }
    .video-text__text ul li::before {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }
}

@media (min-width: 1600px) {
    .video-text__text {
        padding: 150px 100px;
    }
    .flex-opposite .video-text__text {
        padding: 150px 100px;
    }
}

.tablet-cta {
    float: right;
    position: relative;
    top: 20px;
}

.video-text__half h2 {
    padding-bottom: 0px;
}