
/* Navbar */
.container {
    width: 100%;
    margin: 0 auto;
}

.navbar {
    width: 100%;
    height: 100px;
    line-height: 70px;
    color: white;
    display: flex;
    justify-content: center;
    background-color: #19468D;
}

.bg-custom {
    background-color: #19468D;
}

.nav-link {
    color: white;
}

/* Style the links in the toggled state */
.navbar-custom .navbar-collapse.show .navbar-nav .nav-link {
    color: white; /* Set the font color to white in the toggled state */
    font-weight: bold; /* Make the font bold in the toggled state */
    background-color: #19468D;
    max-width: 30%;
    padding: 5px;
    opacity: 0.9;
    border-radius: 3px;
    margin: 1px;
}

/* UL Menu list */
.menu-links {
    display: flex;
    justify-content: center;
    
}

.menu-links li {
    margin-left: 110px;
    list-style: none; 
    padding: 5px;
}

.menu-links li:hover {
   color: black;
}

a {
    color: white;
    text-decoration: none;
}


h1 {
    margin: 5%;
}

/* Blog article content */
h3 {
    padding-top: 3%;
    padding-left: 3%;
}

h3.blog-title {
    font-weight: 900;
    margin-left: 3%;
    margin-bottom: 3%;
    font-size: 25px;
    color: #19468D;
}

a {
    text-decoration: none;
}

.blog-paragraph {
    padding-left: 1%;
    font-size: 15px;
}

.staff-name {
    padding-left: 1%;
    font-size: 12px;
}

.staff-image {
    margin-left: 5%;
    border-radius: 100%;
    width: 10%;
    height: auto;
}

/* Blog containers */
.main-blog-container{
    display: inline-flex;
    padding: 1%;
    margin-left: 10%;
}

.blog-container1 {
    display: inline-flex;
    padding: 1%;
    margin-left: 10%;
}

.blog-container2 {
    display: inline-flex;
    padding: 1%;
    margin-left: 10%;
} 

.blog-container3 {
    display: inline-flex;
    padding: 1%;
    margin-left: 10%;
} 

/* Blog articles */

.blog3 {
    margin-bottom: 5%;
    margin-left: 3%;
    border: 1px;
    margin: 20px;
    padding: 10px;
    box-shadow: 10px 10px inset #19468D;
    width: 40%;
    height: auto;
    border-radius: 30px;
    opacity: 90%;
}

.blog3:hover {
    opacity: 1.0;
    box-shadow: 20px 20px 50px grey;
    border: 5px outset #19468D;
}

.blog4 {
    margin-bottom: 5%;
    margin-left: 3%;
    border: 1px;
    margin: 20px;
    padding: 10px;
    box-shadow: 10px 10px inset #19468D;
    width: 40%;
    height: auto;
    border-radius: 30px;
    opacity: 90%;
}

.blog4:hover {
    opacity: 1.0;
    box-shadow: 20px 20px 50px grey;
    border: 5px outset #19468D;
}

.blog5 {
    margin-bottom: 5%;
    margin-left: 3%;
    border: 1px;
    margin: 20px;
    padding: 10px;
    box-shadow: 10px 10px inset #19468D;
    width: 40%;
    height: auto;
    border-radius: 30px;
    opacity: 90%;
}

.blog5:hover {
    opacity: 1.0;
    box-shadow: 20px 20px 50px grey;
    border: 5px outset #19468D;
}

.blog6 {
    margin-bottom: 5%;
    margin-left: 3%;
    border: 1px;
    margin: 20px;
    padding: 10px;
    box-shadow: 10px 10px inset #19468D;
    width: 40%;
    height: auto;
    border-radius: 30px;
    opacity: 90%;
}

.blog6:hover {
    opacity: 1.0;
    box-shadow: 20px 20px 50px grey;
    border: 5px outset #19468D;
}

.blog7 {
    margin-bottom: 5%;
    margin-left: 3%;
    border: 1px;
    margin: 20px;
    padding: 10px;
    box-shadow: 10px 10px inset #19468D;
    width: 40%;
    height: auto;
    border-radius: 30px;
    opacity: 90%;
}

.blog7:hover {
    opacity: 1.0;
    box-shadow: 20px 20px 50px grey;
    border: 5px outset #19468D;
}

.blog8 {
    margin-left: 3%;
    border: 1px;
    margin: 20px;
    padding: 10px;
    box-shadow: 10px 10px inset #19468D;
    width: 40%;
    height: auto;
    border-radius: 30px;
    opacity: 90%;
}

.blog8:hover {
    opacity: 1.0;
    box-shadow: 20px 20px 50px grey;
    border: 5px outset #19468D;
}

/* Footer */
.footer {
    background-color: #19468D;
    margin-top: 5%;
    max-width: 100%;
    max-height: auto;
}

/* Container for the white logo and social media icons */
.logo-nav-container {
    display: inline-flex;
}

.white-logo {
    max-width: 50%;
    max-height: 100%;
    display: inline-flex;
    margin-top: 20px;
    /* padding: 5px; */
    padding-left: 5%;
}

/* Social media footer icons */
.social-icons-footer {
    width: 100%; /* Ensure the container has enough width */
    display: flex; /* Use inline-flex for horizontal alignment */
    justify-content: space-evenly;
    margin-top: 5%;
}

.social-icons-footer a {
    color: white;
    display: inline-flex;
    padding: 5px;
}


/* Navbar for the footer */
.footer-navbar-content {
    display: inline-flex;
    margin-top: 1%;
    width: auto;
    max-height: 100px;
    line-height: 70px;
}

div.footer-navbar-content li{
    display: inline-flex;
    padding: 5px;
    line-height: 200%;
    list-style: none;
    text-decoration: none;
    color: white;
}

div.footer-navbar-content a {
    color: white;
}

div.footer-navbar-content li:hover {
    color: grey;
}

