/* Block - Header */

.block.block-header {
    position: relative;
    max-height: 857px;
}

.block.block-header .video-container {
    position: static;
    height: 100vh;
    max-height: 600px;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.block.block-header .video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);

}
.block.block-header .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000000;
    opacity: .5;
    z-index: 1;
}

.block.block-header .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


.block.block-header .image-container {
    display: flex;
    height: 600px;
}

.block.block-header .header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.block.block-header .header-content {
    position: absolute;
    width: 100%;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
}

.block.block-header .header-title {
    margin: 15px 0;
}


.block.block-header .text-content p {
    font-size: 17px;
    font-weight: 300px;
    line-height: 1.41;
    text-align: center;
    color: #ffffff;
    margin: 15px 0 29px;
}

.block.block-header .header-link {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50px;
    border: 1px solid #fff;
    transition: .15s ease-in;
}

.block.block-header .header-link:hover {
    background: #fff;
    transition: .15s ease-in;
}
.block.block-header .header-link:hover g#icon_arrow {
    stroke: #565553;
}

@media screen and (max-width: 1024px) {

    .block.block-header {
        height: 592px;
    }
    .block.block-header .header-title {
        margin: 12px 0;
        font-size: 35px;
        line-height: 1.23;
    }

    .block.block-header .text-content p {
        margin-bottom: 27px;
    }

    .block.block-header .image-container img {
        position: absolute;
    }

}