:root {
  --primary-color: #84be64;
  --secondary-color: #1b1e3a;
  --font-size: 16px;
  --font-family: "nunito-sans", Calibri;
  --mobile-breakpoint: 767px;
}

@font-face {
  font-family: "nunito-sans";
  src: url("./css/nunito_sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf")
      format("truetype"),
    url("./css/nunito_sans/NunitoSans-Regular.woff2") format("woff2"),
    url("./css/nunito_sans/NunitoSans-Regular.woff") format("woff"),
    url("./css/nunito_sans/NunitoSans-Regular.ttf") format("truetype"),
    url("./css/nunito_sans/NunitoSans-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "nunito-sans";
  src: url("./css/nunito_sans/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf")
    format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

/* Usage */
body {
  padding: 0px;
  margin: auto;
  font-family: var(--font-family) !important;
  background-color: #e9e9e9;
}

/*TEST classees*/
.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.header,
.footer {
  background-color: var(--secondary-color);
  height: 50px;
  width: 100%;
}

.contact-icon {
  width: 48px;
}

.contact > .links {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.contact > .links > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
}

.contact > .links > a > span {
  margin-left: 10px;
}

.contact > .links > .separator {
  height: 100px;
  width: 2px;
  margin: 0px 50px;
}

div.logo {
  text-align: center;
}

div.logo > img {
  width: 300px;
}

div.description {
  text-align: center;
}

div.separator {
  background-color: var(--primary-color);
}

@media (max-width: 767px) {
  .hidden-mb {
    display: none !important;
  }

  .content-body {
    padding: 0 25px;
  }

  div.separator {
    margin: 50px 0px;
    height: 3px;
  }

  .contact-icon {
    width: 72px;
  }
}

@media (min-width: 768px) {
  div.logo > img {
    width: 450px;
  }

  div.separator {
    margin: 50px 25px;
    width: auto;
    height: 3px;
  }
}

@media (min-width: 1280px) {
  .content-body {
    padding: 0px 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  div.logo {
    align-content: center;
  }

  div.logo > img {
    width: 50vh;
  }

  div.separator {
    margin: 0px 45px;
    width: 5px;
    height: 250px;
  }

  .contact-icon {
    width: 48px;
  }
}
