:root {
    --nl-primary: #ffffff;
}

body {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 2;
    vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.gbnl-content {
    position: relative;
    height: 100vh;
}

.gbnl-logo {
    margin-top: 8px;
    margin-bottom: 108px;
    margin-left: auto;
    margin-right: auto;
}

.gbnl-logo img {
    width: 214px;
    height: auto;
}

h1 {
    font-size: 4.125em;
}

.gbnl-title {
    color: var(--nl-primary);
    font-weight: 800;
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.gbnl-subtitle {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: 5px;
    color: var(--nl-primary);
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.gbnl-caption {
    font-size: 16px;
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    text-align: center;
    color: var(--nl-primary);
    font-weight: 500;
}

.gbnl-copyright {
    color: var(--nl-primary);
    text-align: center;
    line-height: 1.8;
}

.gbnl-btn {
    margin-top: 30px;
    margin-bottom: 110px;
}

.gbnl-video-bg {
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    overflow: hidden;
    z-index: 0;
}

.gbnl-video-bg video {
    min-width: 100%;
    min-height: 100vh;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: initial;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 35px;
    }

    .gbnl-logo {
        margin-bottom: 20px;
    }

    .gbnl-subtitle {
        display: none;
    }

    .gbnl-title {
        margin-bottom: 14px;
    }

    .gbnl-caption {
        font-size: 14px;
        margin-bottom: 5px;
        display: none;
    }

    .gbnl-btn {
    }
}