.video-section {
    padding: 10px 20px 15px;
}

.video-section .video-wrapper {
    aspect-ratio: 1.5;
}

.video-wrapper {
    position: relative;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}

.video-wrapper  p {
    margin: 0;
}

.video-section__header {
    padding: 0 20px;
    text-align: center;
}

.video-section__pre-title {
    margin-bottom: 20px;
    font: 400 14px/1.28 'Pluto Sans DPD', sans-serif;
    color: #DC0032;
}

.video-section__title {
    margin-bottom: 15px;
    font: 400 34px/1.16 'Pluto Sans DPD', sans-serif;
    color: #414042;
}

.video-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.video-section  .video {
    height: 100%;
    max-width: unset;
    width: 100%;
    object-fit: cover;
}

.video-wrapper > img {
    position: absolute;
    width: 100%;
    height: 100%!important;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.video-play-button__image {
    width: 32px;
    height: 32px;
}

.video-play-button__text {
    display: none;
    margin-left: 24px;
    font: 400 26px/1 'Pluto Sans DPD', sans-serif;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .video-section {
        padding: 50px 20px 65px;
    }

    .video-section__title {
        margin-bottom: 35px;
        font-size: 36px;
    }

    .video-section .video-wrapper {
        aspect-ratio: 2.2;
    }

    .video-play-button__image {
        width: 64px;
        height: 64px;
    }

    .video-play-button__text {
        display: inline-block;
    }
}
