/* CSS is the bane of my existance, but it makes things look fancy. -Cas */

/* Font Declarations & Definitions */
/* Dark Blue Basic Text Color: #061525 HEX CODE */

@font-face{
  font-family: Gontserrat;
  color: #1B548D;
  src: url("fonts/Gontserrat/gontserrat-Regular.ttf?#iefix") format("truetype");
}

/* Header & Navigation Menus */
header {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  background: white;
  z-index: 1000;
  width: 100%;
  padding: 10px 0;
  }
  
.header .row{
  width: 100%;
}
  
.logo {
  float: left;
}

.top-right {
  float: right;
  bottom: 0px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  background: white;
  }

.menu li {
  position: relative;
  display: inline-block;
}

.menu li a {
  text-decoration: none;
  font-weight: bold;
  color: #1B548D;
  display: block;
  padding: 10px;
  cursor: pointer;
  }
  
/* Sub Menu Dropdown */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0px;
  background: white;
  padding: 10px;
}

.sub-menu li {
  width: 100%;
  padding: 10px;
}

.sub-menu li a{
  display: block;
  padding: 10px;
  color: #3C6CA8;
  width: 100%;
}

.menu li:hover > .sub-menu {
  display: block;
}

/* Home Banner */

.home-banner{
float: left;
width: 100%;
padding-top: 500px;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-color: #fff;
position: relative;
min-height: 720px;
margin-bottom: 25px;
}

.home-banner-content{
  float: left;
  width: 33%;
  max-width: 100%;
  border-radius: 10px;
  margin-top: -50px;  
}

.home-banner-content span{
  float: left;
  width: 100%;
  color: #09213C;
  font-size: 42px;
  text-align: left;
  line-height: 50px;
}

/* Home Page - Various */

.home-info{
  display: block;
  padding: 0 150px 0 150px;
}

.home-info div{
  color: #09213C;
  margin-top: 70px;
  text-align: center;
  margin-bottom: 70px;
}

.home-info h2{
  color: #09213C;
  font-size: 42px;
}

/* General Body */

body {
  background-color: white;
  color: #09213C;
  font-family: Gontserrat, monospace;
}

.small-row {
  display: flex;
  justify-content: center;
  max-width: 100%;
  flex-wrap: wrap;
  padding: 10px;
  margin: 0 auto;
  gap: 10px;
}

.three_columns {
  flex: 1 1 calc(33.333% - 20px);
  text-align: center;
  min-width: 250px;
}

/* Call to Action Buttons */

.action_btn{
  max-width: 200px;
  font-size: 24px;
  line-height: 24px;
  border-radius: 8px;
  margin-bottom: 10px;
  /* background: #fff000; */
  padding: 2% 2% 2%;
  display: block;
  clear: both;
  width: -webkit-fill-available;
  text-align: center;
}

.action_btn {
  width: 238px;
  height: 238px;
  display: flex;
  max-width: 100%;
  border-radius: 50%;
  margin: 0 auto 50px;
  vertical-align: middle;
}

.action_btn img {
  margin: 0 auto;
  display: block;
}

/* Miscellaneous Buttons */

.banner-btn {
  max-width: 200px;
  font-size: 24px;
  line-height: 24px;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff000;
  padding: 2% 2% 2%;
  display: block;
  clear: both;
  width: -webkit-fill-available;
  text-align: center;
}

.action_btn_V {
  max-width: 200px;
  font-size: 24px;
  line-height: 24px;
  border-radius: 8px;
  margin-bottom: 10px;
  margin: 0 auto;
  background: #fff000;
  padding: 2% 2% 2%;
  clear: both;
  width: -webkit-fill-available;
  text-align: center;
  vertical-align: middle;
}

.action_btn_A {
  max-width: 200px;
  font-size: 24px;
  line-height: 24px;
  border-radius: 8px;
  margin-bottom: 10px;
  margin: 0 auto;
  background: #fff000;
  padding: 2% 2% 2%;
  clear: both;
  width: -webkit-fill-available;
  text-align: center;
  vertical-align: middle;
}

.action_btn_D {
  max-width: 200px;
  font-size: 24px;
  line-height: 24px;
  border-radius: 8px;
  margin-bottom: 10px;
  margin: 0 auto;
  background: #fff000;
  padding: 2% 2% 2%;
  clear: both;
  width: -webkit-fill-available;
  text-align: center;
  vertical-align: middle;
}

/* Footer */
.site-footer {
  background: #3C6CA8;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  margin: 10px 0;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  margin: 0 8px;
}

.footer-text {
  font-size: 14px;
  margin-top: 10px;
}