/* GLOBAL RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: "Verdana", sans-serif;
  font-weight: 400;
  line-height: 1;

  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* GENERAL */

.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: #fff;
}

.nav {
  max-width: 120rem;
  padding: 1.8rem 3.2rem;
  margin: 0 auto;
}

.nav__list {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;

  list-style: none;
  font-size: 1.4rem;
}

.nav__list li:first-child {
  margin-right: auto;
}

.nav__list-logo {
  font-weight: bold;
  font-size: 1.6rem;
  color: #335576;
  text-decoration: none;
}

.nav__list-item:link,
.nav__list-item:visited {
  text-decoration: none;
  color: #335576;
  padding: 0.5rem 0;
  transition: border-bottom 0.33s;
}

.nav__list-item:hover,
.nav__list-item:active {
  border-bottom: 2px solid #db7a4e;
}

.nav__list-item--open {
  border-bottom: 2px solid #db7a4e;
}

/* FOOTER */

.footer {
  background-color: #fefaf5;
  padding: 4rem;
  margin-top: auto;
}

.footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}

.footer__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}

.footer__item-container {
  display: flex;
  gap: 4rem;
}

.footer__item-heading {
  font-size: 1.8rem;
  color: #335576;
}

.footer__item-label {
  text-transform: uppercase;
  color: #db7a4e;
  margin-bottom: 1rem;
}

.footer__item-description {
  color: #335576;
  font-size: 1.4rem;
  font-style: normal;
}

.footer__icon {
  max-width: 2.4rem;
  max-height: 2.4rem;
}
