* {
  box-sizing: border-box;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: light;
  line-height: 2rem;
}

html {
  font-size: 18px;
}

@media screen and (max-width: 2400px) and (min-width: 1400px) {
  html {
    font-size: 14px;
  }
}

:root {
  --primary-xd: #07232c;
  --primary-d: #0c3e4f;
  --primary: #1d90b7;
  --primary-transparent: rgba(29, 145, 183, 0.8);
  --primary-transparent-mobile: rgba(29, 145, 183, 0.3);
  --primary-l: #64bbd7;
  --primary-xl: #a8ccd8;
  --success: #008d49;
  --failure: #860000;
  --contrast: orange;
  --container-width: 60%;
  --header-height: 4rem;
  --card-height: 20rem;
  --burger-menu-horizontal-padding: 3rem;
}

hr {
  border: 0.03rem solid var(--primary);
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger-menu {
  height: 40%;
}

.header {
  z-index: 30;
  top: 0;
  background-color: white;
  height: var(--header-height);
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100vw;
  border-bottom: 0.2rem solid var(--primary);
}

.header .header-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 1000px) and (orientation: landscape) {
  .header .header-container {
    margin-left: -50%;
  }
}

@media screen and (orientation: landscape) {
  .header .header-container {
    width: var(--container-width);
  }
}

.header .header-container a {
  text-decoration: none;
  color: black;
}

.header .header-container .brand {
  font-size: 2rem;
  min-width: 2rem;
  flex: 1 1 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 3rem;
}

.header .header-container .brand img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  padding: 0.5rem;
  display: inline;
}

.header .header-container .brand .brand-name {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 2rem;
  font-weight: bold;
  font-style: italic;
}

.header .header-container .brand .brand-name .superscript {
  font-size: 0.7rem;
  height: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.header .header-container .nav {
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
}

.header .header-container .nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: black;
  background-color: white;
  padding: 0 var(--burger-menu-horizontal-padding);
  transition-duration: 200ms;
  transition-timing-function: ease;
  max-width: 15rem;
  flex: 1 0 auto;
  border-top: 0.2rem solid var(--primary);
}

.header .header-container .nav a:hover {
  color: white;
  background-color: var(--primary);
  transition-duration: 400ms;
  transition-timing-function: ease;
}

.flexer-a {
  padding: 0.5rem;
  border: 0.1rem solid var(--primary);
  text-decoration: none;
  color: var(--primary);
  border-radius: 0.3rem;
}

a {
  color: var(--primary);
}

.flexer-a:hover {
  color: white;
  background-color: var(--primary);
  transition-duration: 400ms;
  transition-timing-function: ease;
}

#idHamburgerMenu {
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 10rem;
  max-width: 10rem;
}

@media screen and (max-width: 1000px) {
  #idHamburgerMenu {
    position: absolute;
    right: 0;
  }
}

#idHamburgerMenu .hamburger-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0.5rem var(--burger-menu-horizontal-padding);
}

#idHamburgerMenu .hamburger-img-container img {
  display: block;
  height: 80%;
  flex: 1 0 auto;
}

#idHamburgerMenu:hover .nav {
  display: block;
  flex-direction: column;
  flex: 1 0 auto;
}

#idHamburgerMenu:hover .nav a {
  height: 100%;
  transition-duration: 400ms;
  transition-timing-function: ease;
}

.main {
  margin-top: var(--header-height);
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

.main .hero {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 45vh !important;
  width: 100%;
  border-bottom: 0.2rem solid var(--primary);
}

@media screen and (orientation: landscape) and (max-height: 600px) {
  .main .hero {
    max-height: 70vh !important;
  }
}

.main .hero .img-div {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main .hero .img-div .img {
  position: relative;
  height: 100vw;
  filter: grayscale(0%) saturate(200%) opacity(70%);
  z-index: 0;
}

.main .hero .img-text {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 10;
  color: var(--primary);
  font-size: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main .hero .img-text .text-container {
  background-color: rgba(255, 255, 255, 0.678);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media screen and (orientation: landscape) and (max-height: 600px) {
  .main .hero .img-text .text-container {
    background-color: transparent;
  }
}

.main .hero .img-text .text-container .superscript {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 0.5rem;
}

@media screen and (orientation: landscape) {
  .main .hero .img-text .text-container .superscript {
    font-size: 2rem;
  }
}

.main .hero .img-text .text-container .logo-or-brand-name {
  display: flex;
  flex-direction: row;
  font-size: 3rem;
  padding-bottom: 2rem;
}

@media screen and (orientation: landscape) {
  .main .hero .img-text .text-container .logo-or-brand-name {
    font-size: 6rem;
  }
}

.main .hero .img-text .text-container .slogan {
  padding: 0 1rem;
  font-size: 1rem;
}

@media screen and (orientation: landscape) {
  .main .hero .img-text .text-container .slogan {
    font-size: 2rem;
  }
}

@media screen and (orientation: landscape) and (max-height: 600px) {
  .main .hero .img-text .text-container .slogan {
    display: none;
  }
}

@media screen and (orientation: landscape) {
  .main .hero .img-text .text-container {
    padding: 3rem 0;
    width: var(--container-width);
    border-radius: 2rem;
  }
}

.main .hero-options {
  width: 80%;
  z-index: 20;
  padding: 0 0 2rem 0;
}

@media screen and (orientation: landscape) and (min-width: 1400px) {
  .main .hero-options {
    position: relative;
    top: -8rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
  }
}

.main .hero-options .c {
  margin: 0;
}

@media screen and (orientation: landscape) {
  .main .hero-options .c {
    flex: 1 1 0;
    margin: 2rem;
    min-width: 15rem;
  }
}

.card-container {
  border-bottom: 0.08rem solid var(--primary);
  min-width: 30%;
  padding: 1rem 0 1rem 0;
  margin-top: 1rem;
}

@media screen and (orientation: landscape) and (min-width: 1400px) {
  .card-container {
    border: 0.2rem solid var(--primary);
    padding: 2rem;
    background-color: white;
    border-radius: 2rem;
    align-self: stretch;
    transition-duration: 200ms;
    margin: 0;
    min-height: 25rem;
  }
}

.card-container .card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem;
  max-width: 100%;
}

.card-container .card-text {
  font-size: 1rem;
  font-weight: light;
  margin: 1rem;
  max-width: 100%;
}

.card-container:hover {
  transition-duration: 300ms;
}

@media screen and (orientation: portrait) {
  .card-container:hover {
    box-shadow: 0 0.3rem 1rem var(--primary-transparent-mobile);
    border-radius: 0.5rem;
  }
}

@media screen and (orientation: landscape) {
  .card-container:hover {
    box-shadow: 0 0.3rem 3rem var(--primary-transparent);
  }
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary);
  width: 100%;
  position: relative;
  bottom: 0;
  min-height: 15vh;
  margin-top: 10rem;
  padding-top: 2rem;
}

.footer a, .footer li {
  color: white;
  text-decoration: none;
}

.footer li {
  list-style-type: none;
}

.footer .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
  width: 100%;
  color: white;
  background-color: var(--primary-xd);
}

.card-clickable {
  text-decoration: none;
  color: black;
}

#idLogo {
  display: none;
}

@media screen and (orientation: landscape) {
  #idLogo {
    display: inline;
  }
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5rem 0;
}

@media screen and (orientation: landscape) {
  .section {
    padding: 4rem 0;
    font-size: 1rem;
  }
}

.section h1, .section p {
  padding: 0.5rem 0;
}

.section input[type=text], .section input[type=email], .section input[type=number], .section input[type=submit], .section input[type=password], .section textarea {
  width: 100%;
  font-size: 1rem;
  border: 1px solid var(--primary-d);
  background-color: white;
  color: black;
}

@media screen and (orientation: landscape) {
  .section input[type=text], .section input[type=email], .section input[type=number], .section input[type=submit], .section input[type=password], .section textarea {
    width: 20rem;
  }
}

.section input[type=submit], .section input[type=button] {
  background-color: var(--primary-d);
  color: white;
}

.white {
  background-color: white;
  color: black;
}

.primary {
  background-color: var(--primary-d);
  color: white;
  border-top: 0.15rem solid var(--primary);
  border-bottom: 0.15rem solid var(--primary);
}

.primary input[type=submit], .primary input[type=button] {
  background-color: var(--success);
  color: white;
  font-weight: bold;
  border: 1px solid white;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 80%;
}

@media screen and (orientation: landscape) {
  .container {
    width: var(--container-width);
  }
}

.captcha {
  max-width: 6rem;
  margin-bottom: 1rem;
}

.danger-text {
  color: red;
}
