.pimcore_area_video-box {
    width: 92%;
}

.video-box-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 80%;
    margin: auto auto 30px;
    padding: 20px;
    max-width: 1100px;
}

.video-box-section .description {
    text-align: center;
}

.video-box-section .description p {
    font-size: 20px;
    margin: 0;
}

.video-box-section .container-video{
    width: 100%;
    max-width: 700px;
    height: 400px;
}

.video-box-section .container-video .inner-container-video{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.video-box-section .container-video .inner-container-video .iframe-video-youtube{
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.inner-container-video {
    position: relative;
}

.inner-container-video video {
    height: 100%;
    width: 100%;
    position: relative;
}

.inner-container-video .icon-play-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    height: 100%;
    margin: auto;
    top: 0;
}

.overlay-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    cursor: pointer;
}

.inner-container-video .icon-play-custom .icon {
    background: var(--main-color);
    padding: 23px 27px 23px 33px;
    border-radius: 50%;
    cursor: pointer;
    width: 89px;
    height: 89px;
}

.inner-container-video .icon-play-custom .icon img {
    width: 32px;
}

/* MEDIA QUERY */
@media (max-width: 990px) {
    .pimcore_area_video-box{
        width: 100%;
    }

    .video-box-section  {
        width: 90%;
    }
}

@media (max-width: 630px) {
    .video-box-section .description p {
        font-size: 18px;
    }
}

/**/