/* NAV overrides */
.nav-item {
  width: 50%;
}
.nav-item a {
  background-color: #c8102e;
  color: #ffffff;
  border-radius: 0;
  font-family: "MyriadPro", helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.nav-item a:hover {
  background-color: rgb(213.6111111111, 17.0888888889, 49.1305555556);
}

.nav-mobile {
  background-color: #c8102e;
}

.nav-click:hover {
  background-color: #c8102e;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .nav {
    background: #c8102e;
  }
}
#loaderWrap {
  display: none;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40001;
}
#loaderWrap .loaderOverlay {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40001;
}
#loaderWrap .vertical-offset {
  z-index: 40002;
}
#loaderWrap .vertical-offset .loaderBox {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  top: 0;
  left: 0;
  transform: translateY(20%);
  position: relative;
}
#loaderWrap .vertical-offset .loaderBox .loader {
  margin: auto;
  border: 20px solid #006ae1;
  border-radius: 50%;
  border-top: 20px solid #eaf0f6;
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
h1 {
  font-family: helvetica, arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #c8102e;
  font-weight: bold;
  font-size: 28px;
}

h2 {
  font-family: helvetica, arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #c8102e;
  font-weight: bold;
  font-size: 24px;
  border-bottom: 1px solid #c8102e;
}

#content a {
  color: #c8102e;
}
#content a:hover {
  color: rgb(213.6111111111, 17.0888888889, 49.1305555556);
  text-decoration: underline;
}

#errorMsg {
  color: #ff0000;
  font-style: italic;
  font-weight: bold;
  text-align: center;
}

#content a.landingButton {
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1.25em;
  margin: 20px 0;
  min-height: 100px;
  padding: 20px 20px;
  align-items: center;
  background: #00747f;
  border-radius: 10px;
  box-shadow: 5px 5px 3px #919d9d;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: helvetica, arial, sans-serif;
  justify-content: center;
}
#content a.landingButton:hover {
  background: rgb(0, 133.4913385827, 146.15);
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
  box-shadow: 7px 7px 3px #919d9d;
  text-decoration: none;
}
#content a.landingButton:active {
  background: rgb(0, 133.4913385827, 146.15);
  transition: all 0.1s ease-in;
  transform: translateY(1px);
  box-shadow: 3px 3px 3px #919d9d;
}
#content a.landingButton p.smaller {
  font-size: 14px;
  margin-top: 0.5em;
  margin-bottom: 0;
  color: #222222;
  line-height: 1.25em;
}

input[type=button],
input[type=submit],
button,
.button {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25em;
  border-radius: 3px;
  border: none;
  margin: 5px 0;
  padding: 10px 20px 11px;
  align-items: center;
  background: #00747f;
  border-radius: 10px;
  box-shadow: 5px 5px 3px #919d9d;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-family: helvetica, arial, sans-serif;
  justify-content: center;
}
input[type=button]:hover,
input[type=submit]:hover,
button:hover,
.button:hover {
  background: rgb(0, 133.4913385827, 146.15);
  transition: all 0.1s ease-out;
  transform: translateY(-3px);
  box-shadow: 7px 7px 3px #919d9d;
  text-decoration: none;
}
input[type=button]:active,
input[type=submit]:active,
button:active,
.button:active {
  background: rgb(0, 133.4913385827, 146.15);
  transition: all 0.1s ease-in;
  transform: translateY(1px);
  box-shadow: 3px 3px 3px #919d9d;
}
