/* Custom colors */
.section--light .form-a .form__submit input.component__button--1 {
    color: #23455f;
}

/* Media */
@media(max-width: 991px) {
    /* Videobanner mobile-tablet fix */
    .videobanner-a {
        max-width: 100vw;
        overflow: hidden;
        height: calc(100vh - var(--y));
        transition: height 0.1s ease;
    }
    .videobanner-a .item__video--container {
        height: 100%;
        width: 100%;
    }
    .videobanner-a .item__video--container iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 100vh;
        transform: translate(-50%, -50%);
    }
    .videobanner-a .item__content--container {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        z-index: 3;
    }
    .videobanner-a .item__video--container iframe {
        width: 177.78vh;
    }
    .videobanner-a .item__txtBtn {
        position: absolute;
        bottom: 100px;
        max-width: 100%;
        pointer-events: all;
    }
    .videobanner-a .item__content--container {
        pointer-events: none;
    }
}