@import url("https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap");
/*------------------------------------------------------*/
/* Variables
/*------------------------------------------------------*/
/*------------------------------------------------------*/
/* Mixins
/*------------------------------------------------------*/
/*------------------------------------------------------*/
/*Base Styles */
/*------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Didact Gothic", sans-serif;
  font-weight: 200;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}

.button {
  width: fit-content;
  border: none;
  color: white;
  background-color: #4296b4;
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
}

h2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

section a,
section a:visited {
  color: #4296b4;
  font-weight: bold;
  letter-spacing: 0.05rem;
  font-size: large;
}

/*------------------------------------------------------*/
/*Utility Styles */
/*------------------------------------------------------*/
.strikethrough {
  text-decoration: line-through;
}

.italics {
  font-style: italic;
}

.textWrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 40rem;
}

/*I have to have both transparent and opaque styles to make sure that the transition for the opacity works */
.navTransparent {
  opacity: 0 !important;
  transition: 0.2s linear;
}

.navOpaque {
  opacity: 0.95 !important;
  transition: 0.2s linear;
}

.navOpaque ~ div a {
  color: #4296b4 !important;
  text-shadow: none !important;
}

.navOpaque ~ div a:hover {
  color: white !important;
  background-color: #4296b4 !important;
}

/*------------------------------------------------------*/
/*Navbar styling*/
/*------------------------------------------------------*/
.navTitle {
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  letter-spacing: 0.1rem;
  padding: 0.75rem 1rem;
}
@media (min-width: 480px) {
  .navTitle {
    padding: 1.25rem 1.75rem;
  }
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  z-index: 10;
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: transparent;
  transition: 0.3s;
}
.navbar .navBackground {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -1;
  opacity: 0;
}
.navbar .navWrapper {
  width: 100%;
  max-width: 1536px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar img {
  height: 64px;
  width: auto;
}
.navbar nav {
  display: flex;
  position: relative;
  align-items: flex-end;
}
.navbar nav ul {
  height: 100%;
  display: flex;
  gap: 0.25rem;
}
.navbar nav ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navbar nav ul li a {
  color: white;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 1px 1px 1px black;
}
@media (min-width: 480px) {
  .navbar nav ul li a {
    padding: 1.25rem 1.75rem;
  }
}
.navbar nav ul li a:hover {
  background-color: #4296b4;
}

/*------------------------------------------------------*/
/* Hero Styling */
/*------------------------------------------------------*/
h1 {
  font-size: 4.5rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
  text-align: center;
}

.heroWrapper {
  width: 100%;
  position: relative;
}

.heroBackgroundImage {
  background-image: url("/assets/images/heroBG.webp");
  background-color: #333333;
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: bottom;
  background-size: cover;
  z-index: -10;
}

.heroBackgroundOpacity {
  background-color: black;
  opacity: 0.75;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12rem 1rem 8rem 1rem;
  gap: 2rem;
}
.hero .button:hover,
.hero .button:focus {
  background-color: #1d3d63;
}
.hero img {
  max-width: 20rem;
  padding-bottom: 2rem;
}
.hero .heroTextWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 36rem;
}
.hero .heroTextWrapper span {
  font-size: 1rem;
  letter-spacing: 0.2rem;
  line-height: 1.4rem;
  color: white;
}

/*------------------------------------------------------*/
/* About */
/*------------------------------------------------------*/
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  width: 100%;
  gap: 4rem;
  scroll-margin: 4.9rem;
  color: #222222;
}
@media screen and (min-width: 1024px) {
  .about {
    padding-top: 6rem;
  }
}
.about > .textWrapper {
  gap: 4rem;
  padding: 0 0.5rem;
  max-width: 32rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 150%;
}
.about > .textWrapper a {
  font-size: 2rem;
  font-weight: bold;
}

.imageContainer {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.imageContainer:nth-child(3) {
  display: none;
}
@media screen and (min-width: 768px) {
  .imageContainer:nth-child(3) {
    display: block;
  }
}

.imageContainer img {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .imageContainer img {
    width: 33.3333%;
  }
}

/**************************************/
/* CARD COMPONENT*/
/**************************************/
.cardWrapper {
  overflow: hidden;
  background-color: #4296b4;
  padding: 4rem 0.5rem;
  gap: 4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .cardWrapper {
    flex-direction: row;
  }
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 42rem;
  gap: 1.75rem;
  text-align: left;
}
.card .cardTop {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card .cardTop img {
  height: 80px;
  width: auto;
}
.card h3 {
  font-weight: bold;
  letter-spacing: 0.05rem;
  font-size: 2rem;
  color: black;
}
.card span {
  max-width: 24rem;
  font-style: italic;
}

p {
  letter-spacing: 0.05rem;
  line-height: 1.25rem;
  font-size: 1.2rem;
}

.button {
  color: black;
  font-weight: bold;
  font-style: italic;
  background-color: white;
  border: #4296b4 2px solid;
  padding: 1.25rem 1.75rem;
}

.button:hover,
.button:focus {
  color: white;
  background-color: #4296b4;
  text-decoration: underline;
}

/*******************/
/*------------------------------------------------------*/
/* Contact */
/*------------------------------------------------------*/
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 4rem 1rem;
  width: 100%;
  background-color: #4296b4;
  color: white;
  text-shadow: 0px 1px 4px #222222;
}
@media screen and (min-width: 1024px) {
  .contact {
    padding: 8rem 1rem;
  }
}
.contact span {
  font-size: 1.25rem;
}
.contact a {
  color: white;
  font-weight: bold;
  letter-spacing: 0.08rem;
  font-size: 1.25rem;
}
.contact a:hover,
.contact a:active {
  font-weight: bold;
}
.contact .button {
  color: black;
  background-color: white;
  border: 2px solid #4296b4;
  text-shadow: none;
}
.contact .button:hover {
  color: white;
  background-color: #4296b4;
  border: 2px solid white;
}

/*------------------------------------------------------*/
/* Footer */
/*------------------------------------------------------*/
footer {
  width: 100%;
  padding: 2rem;
  background-color: #222222;
}

/*# sourceMappingURL=output.css.map */
