/* GLOBAL */
body {
  font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
  position: relative;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  color: #666666;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-weight: 500;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

.srOnly:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hidden {
  display: none !important;
}

.loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000000;
  background-color: #e0e0e0;
  transition: visibility .2s ease-in-out, opacity .2s ease-in-out;
  visibility: visible;
  opacity: 1;
}

.loader_loadingComplete {
  visibility: hidden;
  opacity: 0;
}

.loader .loader__progressBar {
  position: fixed;
  width: 300px;
  height: 10px;
  border-radius: 16px;
  background-color: #eeeeee;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader .loader__progressBar .loader__progressBar_bar {
  background-color: #004A81;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 10px;
  border-radius: 16px;
}

.loader:not(.loader_loadingComplete) .loader__progressBar .loader__progressBar_bar {
  animation: loaderAnimation 3s linear infinite;
}

@keyframes loaderAnimation {
  0% {
    width: 30px;
    left: 0;
  }
  25% {
    width: 50%;
    left: 25%;
  }
  50% {
    width: 30px;
    left: 270px;
  }
  75% {
    width: 50%;
    left: 25%;
  }
  100% {
    width: 30px;
    left: 0;
  }
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  flex: 1 1 auto;
}

main > .mainContainer {
  width: 100%;
  display: flex;
  padding: 0 10%;
  flex: 1 1 auto;
  justify-content: center;
}

main > .mainContainer > .mainContent {
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  padding: 50px 0;
  flex: 1 1 100%;
}

h1 {
  font-weight: 700;
  font-size: 60px;
  line-height: 78px;
  color: #ffffff;
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h2 {
  color: #004A81;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
  font-size: 32px;
  letter-spacing: 1px;
  font-family: 'Oswald', Helvetica ,Arial, Lucida, sans-serif;
  text-underline-offset: -8px;
  text-decoration-skip-ink: none;
  border-bottom: 4px solid #fcac00;
}

img {
  width: 100%;
  height: 100%;
  display: block;
}

a,
a:hover {
  color: #004a81;
  text-decoration: none;
}

main a:hover {
  opacity: 0.7;
}

.pageHeadingContainer {
  display: flex;
  gap: 10px;
  padding: 103px 10% 47px;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(0,74,129,0.75) 0%, rgba(8,70,102,0.85) 100%), url('/public/img/title-bg.webp');
  background-color: #004A81;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  flex: 0 0 auto;
  justify-content: center;
}

.pageHeadingContentWrap {
  display: flex;
  flex: 0 0 100%;
  max-width: 1920px;
  justify-content: space-between;
  align-items: center;
}

.pageHeadingContent {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
}

.pageHeadingContent h1 {
  line-height: 1.5;
}

.pageHeading__description {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-top: 10px;
}

.pageHeading__description a {
  color: #ffffff;
}

.contactBtn {
  border: 0;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #004a81;
  transition: all 300ms ease 0ms;
  color: #ffffff;
  /* padding: 15px 30px; */
  padding: 15px 20px;
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  display: inline-block;
  line-height: normal;
  text-decoration: none;
  position: relative;
}

.contactBtn:hover {
  background-color: #fcac00;
  color: #ffffff;
  opacity: 1;
}

svg {
  vertical-align: middle;
}

.infoBox {
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.3);
}

.scrollToTopBtn {
  cursor: pointer;
  position: fixed;
  border: 0;
  outline: none;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 16px;
  bottom: 85px;
  transform: rotate(-180deg);
  padding: 15px 10px;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: visibility .4s ease-in-out, opacity .4s ease-in-out, background-color .4s ease-in-out;
  z-index: 10000;
}

.scrollToTopBtn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.scrollToTopBtn.scrollToTopBtnVisible {
  visibility: visible;
  opacity: 1;
}

.mobileNavOverlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 74, 129, 0.9);
}

li::marker {
  color: #004a81;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .pageHeadingContainer {
    padding: 50px 10% 47px;
  }

  h1 {
    font-size: 50px;
    line-height: 45px;
  }

  .pageHeading__description {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }

  .contactBtn {
    text-align: center;
  }

  main > .mainContainer {
    padding: 0 7%;
  }

  main > .mainContainer > .mainContent {
    padding: 35px 0;
  }

  .pageHeadingContainer {
    padding: 25px 7%;
  }

  .scrollToTopBtn {
    /* bottom: 170px;
    right: 8px; */
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .mobileNavOverlay {
    display: none !important;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 28px;
    text-underline-offset: -7px;
  }
}
