body {

    background-color: #fff;
    color: #030303;
    font-family: 'Outfit', sans-serif;
    font-optical-sizing: auto;

}

.outfit-font {
    font-family: 'Outfit', sans-serif;
    font-optical-sizing: auto;
}

.hero {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.9) 90%, rgba(255, 255, 255, 1) 100%), url('assets/images/MAP.png');
    background-size: cover;
    background-position: center;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030303;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 0 1rem;
    margin: auto; /* Center vertically in the window */
}

.hero h1 {
    font-size: 4rem;
    font-weight: bolder;
    margin-bottom: 0px;
    color: #243F7A;
}

.hero h2 {
    font-size: 2rem;
    font-weight: normal;
}

footer {
    background-color: white;
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;

    }
    .hero h2{font-size: 1rem}
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
    .hero h2{font-size: 1rem}
}

.blueheader {
    color: #243F7A;
}

.text-titles{

    color: #767fca;
}

nav .navbar-nav li a {
     
    color: #030303 !important;
    font-weight: bolder;
    margin-left: 0.5rem;
    padding-bottom: 0.1rem;
}

.nav-selected{
    border-bottom: 2px solid #030303;
    color:#030303 !important

}

.nav-fontsize{

    font-size: small !important;
}

.nav-background{

    background-color: #9DB7E1 !important;
}

.cinzel-font {
    font-family: 'Cinzel', serif;
    font-optical-sizing: auto;
}

.switzer-font {
    font-family: 'Switzer', sans-serif;
    font-optical-sizing: auto;
}

.item-hover {
    border-color: #243F7A;
}

.page-hero{
    height: 15rem;
}

.core-blue{
    color: #243F7A;
}

.img-container {
    height:100px;
    width:100px;
    overflow:hidden;
   }
   .img-container > img {
   width:100%;
   height:100%;
   object-fit:cover;
   }

   .fade-in {
    opacity: 0;
    animation: fadeInAnimation 2s forwards;
  }

  @keyframes fadeInAnimation {
    to {
    opacity: 1;
    }
  }

  .display-hidden{

    opacity: 0;
  }

