.iframe-block {
    height: 70vh;
    max-height: 700px;
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.iframe-block__video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.iframe-block__video-poster {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iframe-block iframe {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 16 / 9;
    border: none;
}

.iframe-block svg {
    position: absolute;
    width: 100%;
    bottom: -1px;
    left: 0;
    fill: #fff;
}


.iframe-block__info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.iframe-block__info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.svg-desktop {
    display: none;
}

@media (max-width: 920px) {
    .iframe-block {
        height: 50vh;
    }
}

@media (min-aspect-ratio: 16/9) and (max-width: 950px) {
    .iframe-block__video {
        height: 300%;
        top: -100%;
    }
}


@media (max-aspect-ratio: 16/9) and (max-width: 950px) {
    .iframe-block__video {
        width: 200%;
        left: -50%;
    }
}

@media (min-width: 768px) {
    .svg-mobile {
        display: none;
    }

    .svg-desktop {
        display: block;
    }
}


@media (min-width: 2000px) {
    .iframe-block__video {
        height: 300%;
    }
}

@media (max-width: 556px) {
    .iframe-block__info-text h1 {
        font-size: 40px;
    }

    .iframe-block__info-text p {
        font-size: 14px;
    }
}