/* =========================
   FIX GLOBALI
========================= */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* =========================
   NAVBAR
========================= */
#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9998;
}

.navbar-toggler {
    z-index: 9999;
}

/* =========================
   BACK TO TOP
========================= */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #e41779;
    color: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 9999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* =========================
   PAGE HEADER
========================= */
.page-header {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* =========================
   MOBILE FIX
========================= */
@media (max-width: 768px) {

    .container,
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-collapse {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .page-header {
        min-height: 45vh;
        padding: 3rem 1rem;
    }
}
