body{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    background-color: rgba(182, 24, 221, 6%);
}

html, body {
    height: 100%;
    min-height: 100vh;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}
#main-content {
    flex: 1 0 auto;
}
.footer {
    flex-shrink: 0;
}

.line-purple{
    margin: 0px auto;
    width: 75px;
    height: 5px;
    background-color: rgb(182, 24, 221);
}


.text-purple{
    color: rgb(182, 24, 221);
}

.text-dark-purple{
    color: rgb(148, 43, 174);
}

.bullet-point-color{
    color: rebeccapurple;
}

.bold-700{
    font-weight: 700;
}

@media screen and (max-width: 1100px) {
    .nav-link{
        font-size: 1rem;
    }
}

.line-animation{
    animation-name: line-dash;
    animation-duration: 3s;
    transition: ease-in-out;

}

@keyframes line-dash {
    0% {margin-left: 0;}
    100% {margin-left: 50%; transform: translateX(-50%);}
}


a:link, a:visited{
    color: white;
    text-decoration: none;
} 

a:hover, a:active{
    text-decoration: underline;
}

/* Footer css */
.mobile-logo{
    filter: brightness(0%) invert(1);
}

.w-8ch{
    width: 8ch;
}

.w-10ch{
    width: 10ch;
}

.w-15ch{
    width: 15ch;
}


/* Navbar Design */
.nav-link:hover{
    text-decoration: none;
}

.home-nav:hover, .home-nav:active{
    color: rgb(0, 170, 57)  !important;
    font-weight: 700;
}

.life-events-nav:hover, .life-events-nav:active{
    color: rgb(0,102, 170)  !important;
    font-weight: 700;
}

.operations-nav:hover, .operations-nav:active{
    color: rgb(122, 0, 170)  !important;
    font-weight: 700;
}

.videos-nav:hover, .videos-nav:active{
    color: rgb(170, 167, 0)  !important;
    font-weight: 700;
}

.contact-nav:hover, .contact-nav:active{
    color: rgb(170, 77, 0)  !important;
    font-weight: 700;
}

.photos-nav:hover, .photos-nav:active{
    color: rgb(170, 0, 0)  !important;
    font-weight: 700;
}

.interns-nav:hover, .interns-nav:active{
    color: rgba(221, 201, 24, 1)  !important;
    font-weight: 700;
}

a:link, a:visited{
    color: white;
    text-decoration: none;
} 

a:hover, a:active{    
    text-decoration: underline;
}

.btn:hover{
    color: white;
}

@media screen and (max-width: 1079.98px) {
    .nav-link {
        padding: 0.75rem 1.25rem;
        min-height: 48px;
    }
}

@media screen and (max-width: 1079.98px) {
    #mainNav .container-fluid > div {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }
    .navbar-toggler {
        margin-left: auto;
    }
    .mobile-nav > .container-fluid {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
    }
    .container-fluid > #home {
        margin-right: auto;
    }
}

@media screen and (max-width: 1079.98px) {
    .drawer-overlay {
        display: none;
        position: fixed;
        z-index: 2000;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        opacity: 0;
    }
    .drawer-overlay.active {
        display: block;
        opacity: 1;
    }
    .mobile-drawer {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80vw;
        max-width: 320px;
        background: rgb(156 20 189);
        box-shadow: -2px 0 16px rgba(0,0,0,0.2);
        z-index: 2100;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(.4,0,.2,1);
        display: flex;
        flex-direction: column;
        outline: none;
    }
    .mobile-drawer.active {
        transform: translateX(0);
    }
    .drawer-nav-list {
        list-style: none;
        padding: 2rem 1.5rem;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .mobile-drawer .nav-link {
        color: #fff !important;
        font-size: 1.25rem;
        padding: 0.75rem 0;
        border-radius: 0.25rem;
        transition: background 0.2s;
        outline: none;
    }
    .mobile-drawer .nav-link:focus,
    .mobile-drawer .nav-link:hover {    
        background: #73038f;
        color: #fff !important;
        text-decoration: none;
    }
    body.drawer-open {
        overflow: hidden;
    }
} 

.desktop-nav {
    display: none;
}
.mobile-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    z-index: 1050;
    top: 0;
    left: 0;
    height: 56px;
    position: fixed;
}
@media (min-width: 992px) {
    .desktop-nav {
        display: flex !important;
    }
    .mobile-nav,
    .mobile-nav * {
        display: none !important;
    }
    #drawerOverlay,
    #mobileDrawer {
        display: none !important;
    }
}
@media (max-width: 991.98px) {
    .desktop-nav {
        display: none !important;
    }
    .mobile-nav {
        display: flex !important;
    }
}

@media (min-width: 992px) {

    @media (min-width: 768px) {
    .navbar {
        background-color: transparent !important;
    }
    }
    @media (min-width: 768px) {
    .navbar-collapse.d-flex {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    }
}