nav a,
.active-language {
  color: #fff;
  text-shadow: -1px -1px 0 #5b5b5b, 1px -1px 0 #5b5b5b, -1px 1px 0 #5b5b5b, 1px 1px 0 #5b5b5b;
  color: #fff;
}

.language-content,
.language-content * {
  text-shadow: none !important;
}

header::after {
  background-color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  height: 150vh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/landing_hero.jpg');
  background-size: cover;
  background-position: left center;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 75vw;
  padding: 5vh 3vw 3vw;
  text-align: left;
}

@media (max-width: 767px) {
  .hero-content {
    max-width: 100vw;
    padding: 1vh 3vw 3vw;
  }
}

.hero h1 {
  font-size: 6em;
  margin-bottom: 10px;
  font-family: 'Barrio', Arial, sans-serif;
  text-align: left;
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 3em;
  }
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-family: 'Barriecito', Arial, sans-serif;
  text-align: left;
}

@media (max-width: 767px) {
  .hero h2 {
    font-size: 1.5em;
  }
}

.hero h2 span {
  position: relative;
}

.hero h2 span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #cb764e;
}

.hero p {
  font-size: 1.5em;
  font-family: "Roboto Condensed", sans-serif;
  margin-top: 0;
  text-align: left;
}

@media (max-width: 767px) {
  .hero p {
    font-size: 1em;
  }
}

.hero-content h1,
.hero-content h2,
.hero-content p {
  text-shadow: -1px -1px 0 #5b5b5b, 1px -1px 0 #5b5b5b, -1px 1px 0 #5b5b5b, 1px 1px 0 #5b5b5b;
  color: #fff;
}

.hero button {
  background-color: #a85a3e;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1.5em;
  cursor: pointer;
  display: block;
  margin-left: 0;
  font-weight: bold;
}

.hero button:hover {
  background-color: #cb764e;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}