.hero-banner .image {
  position: relative;
  overflow: hidden;
}
.hero-banner .image img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-banner .image .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
  width: 70%;
}
.hero-banner .image .overlay.right {
  left: initial;
  right: 0;
  background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
}
@media all and (max-width: 768px) {
  .hero-banner .image .overlay {
    width: 100%;
    height: 50%;
    bottom: 0;
    top: initial;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
  }
}
.hero-banner .image .text-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.hero-banner .image .text-container.right .centered-content {
  justify-content: flex-end;
}
@media all and (max-width: 768px) {
  .hero-banner .image .text-container {
    align-items: flex-end;
  }
}
.hero-banner .image .text-container .text {
  width: 50%;
}
@media all and (max-width: 768px) {
  .hero-banner .image .text-container .text {
    width: 100%;
    padding-bottom: 24px;
  }
}
.hero-banner .image .text-container .text h1 {
  color: #fff;
  font-size: 32px;
  line-height: 36px;
  margin: 0;
}
@media all and (max-width: 768px) {
  .hero-banner .image .text-container .text h1 {
    font-size: 26px;
    line-height: 30px;
  }
}
.hero-banner .image .text-container .text h3 {
  color: #F1B634;
  font-size: 22px;
  line-height: 26px;
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
}
header .top-menu {
  background-color: #000;
  width: 100%;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 10;
}
header .top-menu.stacked {
  position: fixed;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 1000;
}
header .top-menu .movil-menu::before {
  color: #fff;
}
.header-pane {
  z-index: inherit;
}
