body{
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(222,209,170, 50%);
}

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;
}

.date{
    font-size: 0.75rem;
}

.text-yellow-ochre {
    color: rgb(218 171 28);
}

.custom-carousel{
    overflow-x: scroll;
    width: 100%;
}

.img-size-carousel{
    min-width: 350px;
    width: 400px;
    max-width: 400px;
    padding: 0 2rem;
    border-right: 20px solid rgba(221, 24, 24);
}

.img-size{
    min-width: 125px;
    /* min-height: 125px; */
}

@media screen and (max-width: 766px) {
    .img-size{
        min-width: 185px;
    }
}

@media screen and (max-width: 1100px) {
    .nav-link{
        font-size: 1rem;
    }
}

.line-yellow-ochre{
    margin: 0px auto;
    width: 75px;
    height: 5px;
    background-color: rgb(218, 171, 28);
}

.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%);}
}

/* Footer designs */
.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;
}


/* Style for up arrow */

.top-btn{
	position:fixed;
	width: 60px;
	height: 60px;
	bottom: 80px;
	right: 40px;
	background-color:rgb(218 171 28);
	color:black;
	border-radius: 50px;
	text-align: center;
	/* box-shadow: 2px 2px 3px #999; */
}

.top-btn:hover{
    text-decoration: none;
}

.up-arrow{
    font-size: 36px;
    transform: scale(2, 2);
}

@media screen and (max-width: 766px) {
    .top-btn{
        width: 45px;
        height: 45px;
        right: 10px;
    }

    .up-arrow{
        font-size: 50px;
        transform: scale(1, 1);
    }
}


@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(219 172 29);
        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(153 117 11);
        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%;
    }
    }
}