:root {
  --primary-color: #91D6AC;
  --secondary-color: #002D72;
  --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');
  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);
  background-color: #e9e9e9;
}

/*TEST classees*/
.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.header, .footer {
  background-color: var(--primary-color);
  height: 50px;
  width: 100%;
}

.contact-icon {
  width: 48px;
}

.contact > .links > .line {
  display: flex;
  justify-content: center;
}

.contact > .links > .line > div > a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
  justify-content: center;
  margin: 10px 0px;
}

.contact > .links > .line > div {
  width: 100%;
}

.contact > .links > .line:first-of-type {
  border-bottom: 1px solid var(--secondary-color);
}

.contact > .links > .line > div.icon-separator {
  height: 100px;
  width: 2px !important;
  /* margin: 0px 50px; */
}

.contact > .links > .line > div > a > span {
  margin-left: 10px;
}

div.logo {
  text-align: center;
}

div.logo > img {
  width: 300px;
}

div.description {
  text-align: center;
}

div.separator, .icon-separator {
  background-color: var(--secondary-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;
  }

  .contact > .links > .line:first-of-type {
    border-bottom: none;
  }
}

@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;
  }

  .contact > .links > .line > div.icon-separator {
    width: 3px !important;
    margin: 0px !important;
    height: auto !important;
  }
}