.video-section {
    position: relative;
    padding-block: 270px;
}

.video-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(0.00deg, rgba(26, 37, 58, 0.85),rgba(26, 37, 58, 0.6) 100%);
}

.video-block {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

video, .video-poster {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-poster {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.video-section a {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 24px 30px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.29);
    width: 140px;
    height: 140px;
    border-radius: 70px;
}

.video-section a span {
    transition: 0.3s all ease-in;
    -webkit-mask: url('/wp-content/uploads/2025/08/Polygon-1.svg');
    -webkit-mask-position: center center;
    width: 53px;
    height: 53px;
    border-radius: 2px;
    background: var(--White, rgba(255, 255, 255, 1));
}

.video-section h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -2px;
    text-align: center;
    margin-bottom: 5px;
}

.video-section p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
}

.video-button-wrapper {
    width: 165px;
    height: 165px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    cursor: pointer;
}

.video-button-wrapper:hover a {
    background-color: #ffffff;
}

.video-button-wrapper:hover span {
    background-color: var(--green);
}

@media(max-width: 991px) {
    .video-section {
        padding-block: 80px;
    }
}

@media(max-width: 768px) {
    .video-section {
        padding-block: 50px;
    }

    .video-button-wrapper {
        width: 101px;
        height: 101px;
    }

    .video-button-wrapper a {
        width: 86px;
        height: 86px;
    }
}

@media(max-width: 575px) {
    .video-section h2 {
        font-size: 20px;
        line-height: 22px;
        letter-spacing: -1px;
    }

    .video-section p {
        font-size: 14px;
        line-height: 18px;
    }

    .video-section a span {
        -webkit-mask-size: 70%;
        -webkit-mask-repeat: no-repeat;
    }
}




