.video-with-content .video-section__media.deferred-media:after {
    content: none;
}

.video-with-content .video-section__media iframe {
    border: 0;
}

.video-with-content .video-section__poster,
.video-with-content .video-section__media iframe,
.video-with-content .video-section__media video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-with-content {
    height: 100vh;
    background-color: var(--background-color);
}

.video-with-content * {
    color: var(--text-color);
}

.video-with-content .full-width,
.video-with-content .page-width,
.video-with-content-body,
.video-with-content-body video-section,
.video-with-content-body .video-section,
.video-with-content-body deferred-media.video-section__media {
    width: 100%;
    height: 100%;
}

.video-with-content-body video-section {
    display: block;
}

.video-with-content-body deferred-media.video-section__media {
    padding-bottom: unset;
    position: relative;
}

.video-with-content-body .video-section__media .placeholder {
    width: 100%;
    height: 100%;
    background-color: rgb(var(--color-image-background));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
}

.video-with-content-body .video-section__media .video-section__cover {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
}

.video-section__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-section__content .video-section__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    height: 100%;
    width: 100%;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(50%);
    transition: all 0.5s;
    opacity: 0;
}

.active .video-section__content .video-section__info {
    transform: translateY(0);
    transition: all 0.5s;
    opacity: 1;
}

.video-section__content h2.heading {
    font-size: var(--heading-size-desktop);
    line-height: 1.28;
    color: var(--heading-color);
    text-align: center;
    letter-spacing: 0;
}

.video-section__content .description {
    font-size: var(--description-size-desktop);
    line-height: 1.4;
    color: var(--description-color);
    text-align: center;
    letter-spacing: 0;
    font-family: 'ANTA Sharp Grotesk Medium';
    margin: 0;
}

.video-section__content .video-section__info a.custom-button {
    background: #fff;
    color: #000;
    height: 46px;
    padding: 8px 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
}

.video-section__content .video-section__info a.custom-button * {
    color: #000;
}

.video-section__content .video-section__info a.custom-button span.top-text {
    transform: translateY(0%);
    transition: all 0.3s ease;
}

.video-section__content .video-section__info a.custom-button span.bottom-text {
    position: absolute;
    transform: translateY(150%);
    transition: all 0.3s ease;
}

.video-section__content .video-section__info a.custom-button:hover span.bottom-text {
    transform: translateY(0%);
    transition: all 0.3s ease;
}

.video-section__content .video-section__info a.custom-button:hover span.top-text {
    transform: translateY(-150%);
    transition: all 0.3s ease;
}
.video-section__content .video-section__info a.custom-button span {
    text-transform: capitalize;
    font-family: 'ANTA Sharp Grotesk Medium';
    display: block;
}
@media(max-width: 768px) {
    .video-section__content h2.heading {
        font-size: var(--heading-size-mobile);
    }
    .video-section__content .description {
        font-size: var(--description-size-mobile);
        max-width: 320px;
    }
    .video-section__content .video-section__info {
        gap: 17px;
    }
    .video-with-content {
        height: 510px;
    }
    .video-section__content .video-section__info {
        gap: 10px;
    }
    .video-section__content .video-section__info a.custom-button {
        height: 34px;
        padding: 8px 27px;
        font-size: 17px;
    }
}