html, body {
  margin: 0;
  padding: 0;
  font-family: Merriweather;
}

.logo {
  max-width: 100%; /* Ensures the image is never wider than its container */
  height: auto; /* Keeps the image aspect ratio intact */
  margin: 0 auto; /* Centers the image and adds margin on both sides */
  display: block; /* Makes the image block level so margin auto can work */
}

.partnerList img {
  max-height: 50px;
  height: 50px;
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* 2 images mobile */
@media screen and (max-width:1200px) {
.partnerList{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
}

/* The navigation bar */
.navbar {
  overflow: hidden;
  background-color: #00172D;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
}

.mission {
  background-color: #00172D;
  color: #f2f2f2;
  margin-top: 40;  
  position: absolute;
  width: 100%; /* Full width */
  /*margin-top: 60px; */   /* Add a top margin to avoid content overlay */
  /*font-size:2vw;*/
} 


/* Links inside the navbar */
.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
  background: #81d4fa;
  color: black;
}

.navbar:nth-child(3n+1) {
    padding-left: 0;
}
/* Right-aligned section inside the top navigation */
.navbar-right {
  float: right;
}

/* Main content */
.main {
  margin-top: 40px; /* Add a top margin to avoid content overlay */
}

/* Main text */
.mainTXT{
  padding: 10px 10px;
  font-size: 125%;
}


.banner {
   padding-top: 100px; /* Default padding; adjust based on your typical navbar height */
   width: 100%;
   height:auto;
   object-fit: cover;
   overflow: hidden;
}

/* Container holding the image and the text */
.container {
  position: relative;
  text-align: center;
  color: white;
}

/* Top left text */
.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 45px;
  color: black;
  background: #F8F8F8;
  width=98%
}

.no-padding {
    padding: 0px !important;
    line-height: 0px !important;
}



.tablecontainer {
    display: flex;
    width: 100%; /* Set full-width to expand the whole page */
    background-color: #e6f2ff;
    padding: 20px;
    border-radius: 25px;
    box-sizing:border-box;
    align-items: center; 
}

@media screen and (min-width: 50em) {
  .tablecontainer {
    display: flex;
    width: 100%; /* Set full-width to expand the whole page */
    background-color: #e6f2ff;
    padding: 20px;
    border-radius: 25px;
    box-sizing:border-box;
    align-items: center; 
    font-size: 2vw;
  }
}

.col1 {
  text-align: left;
  width: 50%;
  overflow:hidden;
  padding:5px;
}

.col2 {
  text-align: right;
  width: 50%;
  overflow:hidden;
  padding:5px;

}

.col1 img {
    height: 100%;
    width: 100%;
    display: block; /* remove extra space below image */
}

.col2 img {
    height: 100%;
    width: 100%;
    display: block; /* remove extra space below image */
}

.newsletter{
  background-color: #00172D;
  color: black;
}
/* Style the form element with a border around it */
.container2 form {
  border: 4px solid #f1f1f1;
  background-color: #00172D;
}

/* Style the input elements and the submit button */
.container2 input[type=text], input[type=submit] {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Style the submit button */
input[type=submit] {
  background-color: #81d4fa;
  color: black;
  border: none;
  border-radius: 25px;
}

input[type=submit]:hover {
  opacity: 0.8;
}

.container2 {
  padding: 20px;
  text-align: center;
  color: white;
  background-color: #00172D;
}

footer p{
  background-color: #00172D;
  padding: 20px;
  font-size: xx-small;
  text-align: center;
  display: block;
}

/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #00172D;
  /*position: relative;*/
  /*width: 100%; */
    position: fixed;  /* Fixed/sticky position */
    top: 0;  /* Top position */
    width: 100%;  /* Full width */
    z-index: 1000;  /* Ensure it stays on top */
    
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
  text-align: right;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #00172D;
  color: white;
}

.fa-bars {
    font-size: 2em; /* Adjust the value to make the icon larger or smaller */
}

/* CSS to only apply the larger icon size on mobile */
@media (max-width: 767px) {
    .fa-bars {
        font-size: 2.1em;
    }
}


