* {
    transition: all 0.3s;
}

html,
body {
    /* min-height: 100vh; */
    height: 100%;
    background-color: #edefeb;
}

/* .navbar {
    transition: all 0.3s;
} */

.navbar .navbar-brand .logo {
    height: 4em;
}

.navbar .container {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
    border-radius: 100vw;
    padding: 0 2.5em;
    transition: all 0.3s;
}

.navbar .nav-item .nav-link.active {
    font-weight: bold;
}

.block-wrapper {
    background-color: #ffffff;
    padding: 2em;
    margin: 1em;
    border-radius: 1em;
}

.main-body {
    padding-top: 8rem;
    padding-bottom: 2rem;
    background-color: #edefeb;
}

.member-layout {
    display: grid;
    grid-template-areas: "sidebar main";
    grid-template-columns: 1fr 5fr;
}

.member-sidebar {
    grid-area: sidebar;
}

.member-main {
    grid-area: main;
    padding: 0rem 1rem;
}

.member-topbar {
    display: none;
}

.features-image .item-wrapper .item-img {
    height: 250px;
}

.carousel-inner img {
    height: 100%;
    object-fit: cover;
}

/* ZOOM FOR IMAGE */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mark-highlight {
    background: linear-gradient(rgba(0, 0, 0, 0) 70%, #fff210 0);
}

.mark-under {
    padding: 0px;  
    border-radius: 0px; 
    background: none;
    border-bottom: 5px solid #fff210; 
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 576px) {
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 576px) and (max-width: 768px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
}

@media only screen and (min-width: 1400px) {
}

@media only screen and (max-width: 768px) {
    .navbar {
        padding: 0;
    }

    .navbar .navbar-brand .logo {
        height: 2.5em;
    }

    .navbar .container {
        border-radius: 0vw;
        padding: 0 2.5em;
        max-width: 100%;
        background: rgba(255, 255, 255, 1);
    }

    .navbar-info {
        padding-bottom: 1em;
    }

    .login-status {
        display: none !important;
    }

    .main-body {
        padding-top: 5rem;
    }

    .member-layout {
        display: grid;
        grid-template-areas:
            /* "sidebar" */ "main";
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }

    .member-topbar {
        display: block;
    }

    .features-image .item-wrapper .item-img {
        height: 250px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .main-body {
        padding-top: 8rem;
    }

    .member-layout {
        display: grid;
        grid-template-areas: "main";
        grid-template-columns: 1fr;
    }

    .member-topbar {
        display: block;
    }

    .features-image .item-wrapper .item-img {
        height: 300px;
    }
}

@media only screen and (min-width: 992px) {
    .carousel-inner img {
        height: 600px;
        object-fit: contain;
    }

    .navbar .container {
        margin-top: 0.5em;
    }

    .navbar .nav-item .nav-link {
        font-size: large;
    }
}
