@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');

*, *::after, *::before {
    font-family: 'Quicksand', sans-serif;
}

.bg-main {
    background-color: #00ae9d;
}

.bg-main .navbar-brand {
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.bg-main .navbar-brand:hover {
    color: white;
}

.bg-main a.nav-link {
    color: white !important;
    font-weight: 600;
}

.bg-main li {
    padding-left: 10px;
    padding-right: 10px;
}

.bg-main li.active a {
    border-bottom: 1px solid white;
    font-weight: 800;
}

@media screen and (max-width: 768px) {
    .bg-main li.active a {
        border-bottom: none;
        color: #000 !important;
    }

    .bg-main li.active {
        background-color: white;
        color: #000;
    }
}

.jumbotron {
    background-image: url('https://images.unsplash.com/photo-1564091422888-15640d9709a8?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=889&q=80');
    /* background-size: 100% 100%; */
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    min-height: 400px;
    position: relative;
}

.overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}

/* .emagz-container .emagz-item {
    overflow: hidden;
} */

.emagz-container .emagz {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 0 15px #333;
    transition: 0.3s ease;
    cursor: pointer;
}

/* .emagz-container .emagz:hover {
    margin-top: -5px;
    transform: scale(1.5);
} */

.emagz-container .emagz-title {
    font-size: 16px;
    font-weight: bold;
}