.autocomplete {
  padding: 0;
}

.section-hero {
  height: 90vh;
  width: 100%;
  position: relative;
  margin-top: 12px;
  max-height: 618px;
}

.section-hero__hero {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.section-hero__hero .wrapper {
  position: relative;
}

.section-hero__content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  margin-top: 48px;
  height: calc(100% - 48px);
}

.section-hero__content>.fondo-hero {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}

.section-hero__content .fondo-hero .fondo-hero-color {
  position: absolute;
  left: 0;
  right: 42%;
  top: 0;
  bottom: 0;
  background-color: #E2475B;
}

.section-hero__content .fondo-hero .fondo-hero-imagen {
  position: absolute;
  right: 0;
  left: 58%;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-hero__title {
  position: relative;
  font-size: 72px;
  color: #ffffff;
  width: 40vw;
  font-weight: 300;
  margin-bottom: 12px;
  max-width: 600px;
  margin-top: 96px;
}

.section-hero__description {
  position: relative;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
  width: 40vw;
  font-weight: 300;
  margin-bottom: 19px;
  max-width: 600px;
}

.section-hero__wave {
  width: 100%;
  height: 170px;
  background-image: url("../img/hero-wave.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.section-hero__h-logo {
  background-image: url("../img/hero-h.svg");
  background-repeat: no-repeat;
  height: 222px;
  width: 248px;
  position: absolute;
  bottom: 5%;
  right: 0;
  z-index: 20;
}

.section-hero__searcher {
  position: relative;
  z-index: 11;
  width: 552px;
  height: 64px;
  padding: 5px 5px 5px 18px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0px 6px 24px rgb(0 0 0 / 10%);
}

.section-hero__searcher:hover {
  border: 1px solid #64646A;
}

.section-hero__searcher-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.section-hero__searcher-input {
  flex-grow: 1;
  margin-right: 8px;
  padding-left: 8px;
  border: none;
  outline-color: #FFFFFF;
  outline:none;
}

.section-hero__searcher-input::placeholder {
  font-size: 20px;
  color: #9d9d9d;
  transform: translateY(2px);
  font-weight: 300;
}

.section-hero__searcher-btn {
  height: 100%;
  width: auto;
  background: #48ec86;
  border:none;
  padding: 8px;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
}

.section-hero__title-wrapper {
  border: 2px solid red;
  width: 100vw;
}

@media all and (max-width: 1350px) {
  .section-hero__title {
    font-size: 58px;
  }

  .section-hero__content {
    margin-top: 24px;
  }
}

@media all and (max-width: 1050px) {
  .section-hero__title {
    font-size: 58px;
  }
}

@media all and (max-width: 1210px) {
  .section-hero__title {
    width: 60vw;
    font-size: 58px;
  }

  .section-hero__description {
    width: 50vw;
  }
}

@media all and (max-width: 810px) {
  .section-hero__content .fondo-hero .fondo-hero-color {
    right: 0;
  }

  .section-hero__content .fondo-hero .fondo-hero-imagen {
    left: 0;
    filter: brightness(0.4);
  }
}

@media all and (max-width: 780px) {
  .section-hero {
    padding: 0;
    height: 100vh;
    margin-top: 0;
    max-height: 430px;
  }

  .section-hero__hero {
    position: absolute;
    height: calc(100% - 48px);
  }

  .section-hero__title {
    margin-top: 32px;
  }

  .section-hero__wave {
    z-index: 14;
  }

  .section-hero__content {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 0;
    padding: 10px 0 80px;
  }

  .section-hero__title {
    font-size: 32px;
    width: 100%;
    margin-bottom: 16px;
  }

  .section-hero__description {
    font-size: 16px;
    line-height: 120%;
    width: 100%;
    margin-bottom: 22px;
  }

  .section-hero__wave {
    height: 50px;
  }

  .section-hero__h-logo {
    height: 80px;
    width: 60px;
    bottom: 0;
    right: 5%;
    background-position: center;
    background-size: contain;
  }

  .section-hero__searcher {
    width: 100%;
    height: 56px;
    padding: 3px 3px 3px 9px;
    background-color: #f5f7f9;
  }

  .section-hero__searcher-input {
    background-color: #f5f7f9;
    border: none;
    font-size: 14px;
  }

  .section-hero__searcher-input::placeholder {
    font-size: 14px;
  }

  .section-hero__searcher-btn {
    width: 88px;
  }
}


/* RTL Additional styles */

.rtl .section-hero__content .fondo-hero .fondo-hero-imagen {
    right: 60%;
    top: 0;
    left: 0;
}

.rtl .section-hero__content .fondo-hero .fondo-hero-color {
    left: 40%;
    right: 0;
    top: 0;
}

.rtl .section-hero__wave {
    transform: rotateY(180deg);
}

.rtl .section-hero__h-logo {
	left: 2%;
    right: unset;
}

@media all and (max-width: 780px) {
  .rtl .section-hero__content .fondo-hero .fondo-hero-imagen {
    right: 0;
  }
}
