* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  /* 16/10 = 62.5 */
  font-size: 62.5%;
}
body {
  font-family: "Big Shoulders Display", cursive;
  font-family: "Outfit", sans-serif;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
/* *********/
/* HEADER */
/* *********/
header {
  width: 100%;
  display: flex;
  height: 100vh;
  /* background-image: url(assets/mobile/image-map.png); */
}
.map-phone {
  z-index: -1;
  flex-grow: 1;
  max-height: 550px;
  width: 100%;
}
.map-tablet {
  display: none;
  z-index: -1;
  flex-grow: 1;
  max-height: 600px;
  width: 100%;
}
.map-desktop {
  display: none;
  z-index: -1;
  flex-grow: 1;
  max-height: 600px;
  width: 100%;
}
nav {
  display: flex;
  position: absolute;
  left: 0px;
  top: 0px;
}
.text-link {
  font-family: "Big Shoulders Display";
  font-style: normal;
  font-weight: 800;
  font-size: 2rem;
  line-height: 2.4rem;
  letter-spacing: 0.363636rem;
  color: #ffffff;
  padding: 2.4rem 3.2rem;
  background: #151515;
  display: inline-block;
  text-decoration: none;
  flex-shrink: 0;
}
nav img {
  box-sizing: content-box;
  /* border: 1px solid #ffffff; */
  background: #d5966c;
  padding: 2.4rem;
  width: 0.8rem;
  height: 2.4rem;
  display: block;
}
/* *********/
/* Article */
/* *********/
article {
  padding: 4.8rem 1.6rem 5.6rem 1.6rem;
  background: #151515;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  height: 100vh;
}
h1 {
  font-family: "Big Shoulders Display";
  font-style: normal;
  font-weight: 900;
  font-size: 5rem;
  line-height: 90%;
  text-transform: uppercase;
  color: #ffffff;
}
section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
h2 {
  font-family: "Big Shoulders Display";
  font-style: normal;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 100%;
  color: #d5966c;
  text-transform: uppercase;
}
article p {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 156%;
  color: #ffffff;
}

/* *********/
/* Footer */
/* *********/
footer {
  width: 100%;
  padding: 4.8rem 3.2rem;
  background: #d5966c;
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
  justify-content: space-between;
  height: 100vh;
}
.brand-logo-dark {
  width: 11.005rem;
  height: 4rem;
}
footer p {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 162%;
  color: #151515;
}
.logos {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
}
.logos img {
  width: 20px;
  height: 20px;
}
.logo-white {
  display: none;
}
@media screen and (min-width: 768px) {
  nav {
    left: 39px;
    top: 0px;
  }
  .map-phone {
    display: none;
  }
  .map-tablet {
    display: block;
  }
  .map-desktop {
    display: none;
  }
  article {
    padding: 8rem 4rem;
    background: #151515;
    display: grid;
    grid-template-columns: 1fr 1.9fr;
    gap: 6.8rem;
  }
  footer {
    padding: 5.6rem 4rem;
    flex-direction: row;
    gap: 10rem;
  }
  h1 {
    font-size: 5.5rem;
    line-height: 91%;
  }
}
@media screen and (min-width: 1440px) {
  nav {
    left: 156px;
    top: 0px;
  }
  nav:hover {
    cursor: pointer;
    transition: 0.3s;
  }
  nav:hover .test {
    background: #151515;
  }
  nav:hover .text-link {
    background: #d5966c;
  }

  .map-phone {
    display: none;
  }
  .map-tablet {
    display: none;
  }
  .map-desktop {
    display: block;
  }
  article {
    padding: 12rem 16.5rem;
    background: #151515;
    display: grid;
    grid-template-columns: 1fr 1.9fr;
    gap: 22rem;
  }
  h1 {
    font-size: 7rem;
    line-height: 100%;
  }
  h2 {
    font-size: 3.6rem;
    line-height: 100%;
  }
  article p {
    font-size: 22px;
    line-height: 145%;
  }
  footer {
    padding: 8rem 16.5rem;
    flex-direction: row;
    gap: 23rem;
  }
  svg:hover {
    cursor: pointer;
  }
  svg:hover path {
    cursor: pointer;
    fill: white;
    transition: 0.6s;
  }
  .brand-logo-dark {
    width: 11.005rem;
    height: 5.8rem;
    width: 16rem;
  }
}
