body{
    background-color: rgba(24,142,221,.055);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
}

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;
}

.img-size{
    min-width: 125px;
    /* min-height: 125px; */
}

.img-3d-size{
    min-width: 185px;
}


@media screen and (max-width: 766px) {
    .img-size{
        min-width: 185px;
    }
}

@media screen and (max-width: 1100px) {
    .nav-link{
        font-size: 1rem;
    }
}

.circle {
    height: 30px;
    width: 30px;
    /* background-color: rgb(0, 195, 255); */
    background: radial-gradient(circle at 65% 15%, white 1px, aqua 3%, darkblue 60%, aqua 100%);  
    border-radius: 50%;
    display: inline-block;
}

.timestamp{
    margin-left: -30px;
    margin-top: 45px;
}

.timestamp-text{
    margin-left: -90px;
    margin-top: 53px;
    font-size: 0.75rem;
    width: 20ch;
}


.bg-light-blue{
    background-color: rgba(24,142,221,.055);
}

.line-blue{
    margin: 0px auto;
    width: 75px;
    background-color: rgba(24, 142, 221, 1);
}

.bold-800{
    font-weight: 800;
}

.w-10ch{
    width: 10ch;
}

.w-11ch{
    width: 11ch;
}

.w-8ch{
    width: 8ch;
}

.w-15ch{
    width: 15ch;
}

.italic-500{
    font-style: italic;
    font-weight: 500;
}

.text-blue{
    color: rgba(24,142,221,1);
}

.text-gray{
    color: gray;
}

.mobile-logo{
    filter: brightness(0%) invert(1);
}

.font-1{
    font-size: 1rem;
}

.font-1-3-5{
    font-size: 1.35rem;;
}


.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;
}


/* 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(26, 120, 183);
        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: rgb(13 86 135);
        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%;
    }
    }
}