/*==============================================
    Video One
===============================================*/
.video-one {
    position: relative;
    display: block;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--helpest-base) 0%, #143046 100%);
}

.video-one__container {
    max-width: 960px;
    margin: 0 auto;
}

.video-one__player {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    border-radius: 24px;
    background-color: var(--helpest-black);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.video-one__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-one__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 40px;
    border-radius: 24px;
    background-color: rgba(var(--helpest-white-rgb), 0.12);
    color: var(--helpest-white);
    text-align: center;
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .video-one {
        padding: 80px 0;
    }

    .video-one__player,
    .video-one__placeholder {
        border-radius: 18px;
    }

    .video-one__placeholder {
        min-height: 240px;
        padding: 30px 20px;
        font-size: 20px;
        line-height: 30px;
    }
}

/*==============================================
    End
===============================================*/
