.img--background {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.img--background img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    left: 0;
    top:0
}
.blk--overlay {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    left: 0;
    top:0;
    color: var(--bs-white);
    font-size: 3em;
}
.mask--overlay {
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 0;
    top:0;
    color: var(--bs-white);
    font-size: 3em;
    background-image: url(../img/vector__mask.svg);
    background-repeat: repeat;
    background-position: left top;
    background-size: 5.5px 7.5px;
}
.nav-pluz {
    width: 100%;
    list-style: none;
    position: fixed;
    padding: 2em;
    z-index: 1;
}
.nav-pluz .row {
    height: calc(100vh - 6em);
}

.nav-logo svg {
    width: 100%;
    max-width: 240px;
    height: auto;
    fill:var(--bs-white);
}

.nav-button {
    text-decoration: none;
    padding: 1.25em 3em;
    color: var(--bs-white);
    border: 1px solid var(--bs-white);
    font-weight: 400;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-button:hover, .nav-button:focus  {
    color: #898a8d;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-white);
}
.white--line {
    width: 200px;
    height: 1px;
    background-color: var(--bs-white);
}
.footer-pluz {
    width: 100%;
    list-style: none;
    position: fixed;
    padding: 2em;
    z-index: 1;
    bottom: 0;
    color: var(--bs-white);
}
.footer-pluz a, .footer-pluz a:hover {
    color: var(--bs-white);
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.5;
}
.footer-pluz a::before {
    position: absolute;
    content: '';
    width: 100%;
    max-width: 0%;
    height: 1px;
    background-color: var(--bs-white);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}
.footer-pluz a:hover::before {
    max-width: 100%;
}
.footer-pluz svg {
    width: 70px;
    height: auto;
}

h1 {
    z-index: 1;
    color: var(--bs-white);
    text-align: center;
}

@media (orientation: landscape) {
    .footer-pluz .row, .nav-pluz .row { 
      flex-direction: row !important;
    }
    .footer-pluz .row {
        justify-content: space-between!important;
    }
    .footer-pluz .row .row {
        justify-content: center!important;
    }
    .order-1 { 
        order: 2 !important;
    }
    .nav-pluz .row.align-items-center {
        align-items: start!important;
    }
    .col-auto.mt-3 {
        margin-top: 0.25rem!important;
    }
    .col.col-xl-6.justify-content-center {
        justify-content: start!important;
    }
}
@media (min-width: 992px) {
    .nav-pluz, .footer-pluz {
        padding: 3em;
    }
    .nav-logo svg {
        max-width: 300px;
    }
}
@media (min-width: 1200px) {
    .h1, h1 {
        font-size: 4.5rem;
    }
    .nav-pluz, .footer-pluz {
        padding: 4em 6em;
    }
    .nav-pluz .row, .footer-pluz .row {
        height: auto;
    }
    .footer-pluz a::before {
        right: 0;
        left: auto;
    }
    
}