:root {
  --maxWidthSize: 1320px;
  --titleFont: "BauhausBuglerBold";
  --gothicFont: "Supera Gothic";
  --sidePadding: 40px;
  --green1: #346735;
  --green2: #5ba654;
  --green3: #b1e357;
  --greenDegraded: linear-gradient(90deg, #346735 0%, #5ba654 100%);
  --gray1: #828282;
  --gray2: #aaaaaa;
  --white1: #ffffff;
  --white2: #f2f2f2;
  --black: #000000;
}

@media (max-width: 1280px) {
  :root {
    --sidePadding: 30px;
  }
}

@media (max-width: 600px) {
  :root {
    --sidePadding: 20px;
  }
}

body {
  position: relative;
}

.hidden-content {
  display: none;
}

.responsive-menu {
  display: none;
}

.pc-toggle-item {
  transition: all 0.3s ease;
}

.pc-toggle-item .pc-toggle-body {
  max-height: 0;
  height: auto;
  overflow: hidden;
  transition: 0.3s ease;
}

.pc-toggle-item.active .pc-toggle-body {
  max-height: 100%;
}

.pc-toggle-trigger {
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Header Start */
.header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 25px var(--sidePadding);
  z-index: 9999999;
}

.header__wrapper {
  width: 100%;
  max-width: calc(var(--maxWidthSize) + 140px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__menu ul {
  display: flex;
  align-items: center;
  gap: 30px;
  row-gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 950px;
}

.header__menu ul li {
  width: auto;
  white-space: nowrap;
  list-style: none;
}

.header__menu ul li a {
  font-size: 20px;
  font-family: var(--titleFont);
  text-transform: uppercase;
  color: white;
  padding: 10px 15px;
  display: block;
}

.header__menu ul li a:hover {
  transform: scale(1.05);
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__lang {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__lang a {
  padding: 0;
  transition: 0.1s;
}

.header__lang a:hover {
  transform: scale(1.05);
}

.header__lang a svg {
  display: block;
  height: 22px;
  width: auto;
  outline: 1px solid var(--green3);
  filter: drop-shadow(0 0 1px var(--green3));
  border-radius: 2px;
}

.header__lang>a:last-of-type svg {
  outline: 1px solid var(--white1);
  filter: drop-shadow(0 0 1px var(--white1));
}

.book-header-btn {
  line-height: 1;
  padding: 15px 40px;
  color: var(--green3);
  text-transform: uppercase;
  font-size: 20px;
  font-family: var(--titleFont);
  border-radius: 7.5px;
  box-shadow: 0px 1px 2px 0px #000000bf;
  overflow: hidden;
  position: relative;
  transition: 0.2s;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-width: 280px;
}

.book-header-btn::before {
  background: var(--black);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.book-header-btn::after {
  background: var(--green3);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: 0.2s;
  z-index: -1;
}

.book-header-btn:hover {
  color: white;
}

.book-header-btn:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
}

/* Header End */

/* Hero Start */
.hero {
  position: relative;
  padding: 0 var(--sidePadding);
  pointer-events: none;
  background: linear-gradient(90deg, #346735 0%, #5ba654 100%);
  z-index: 1;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.15;
  z-index: -1;
}

.hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg--mobile {
  display: none;
}

.hero__wrapper {
  max-width: var(--maxWidthSize);
  margin: 0 auto;
  position: relative;
  height: 100vh;
  min-height: 600px;
  padding-top: 185px;
}

.hero__title {
  font-family: var(--titleFont);
  color: white;
  font-size: 65px;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__title-line {
  width: 100%;
  height: 2px;
  background: white;
  display: block;
  margin-top: 5px;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.3);
  z-index: 1;
  position: relative;
}

.hero__image-1,
.hero__image-2 {
  position: absolute;
  bottom: 0;
}

.hero__image-1 {
  bottom: 35px;
  left: -100px;
  max-width: 892px;
  width: calc(500px + 27vw);
}

.hero__image-2 {
  max-width: 645px;
  width: calc(400px + 16.9vw);
  right: -115px;
  bottom: 75px;
}

@media (min-width: 1920px) {
  .hero__wrapper {
    max-height: 820px;
  }

}

@media (max-width: 1280px) {
  .hero__wrapper {
    padding-top: 150px;
  }

  .hero__image-1 {
    width: 66vw;
  }

  .hero__image-2 {
    width: 50.39vw;
  }
}

/* Hero End */

/* Intro Start */
.section {
  padding-left: var(--sidePadding);
  padding-right: var(--sidePadding);
  width: 100%;
}

.section__wrapper {
  width: 100%;
  max-width: var(--maxWidthSize);
  margin: 0 auto;
  gap: 75px;
}

.section.section-latest div {
  width: 100%;
}

.section.section-latest .latest-text p {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.36;
}

.section__wrapper h2 {
  text-transform: uppercase;
  font-size: 55px !important;
  line-height: 1 !important;
  width: 100% !important;
}

.section__wrapper p {
  font-size: 16px;
}

body h2.main__title {
  font-size: 60px !important;
  line-height: 1 !important;
  margin: 45px auto 0 !important;
  max-width: var(--maxWidthSize);
}

body .section__wrapper .container {
  max-width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body .section__wrapper .repetidor-coches-grid {
  padding-bottom: 75px;
  padding-top: 25px;
}

body .section__wrapper .container>.row {
  margin: 0;
}

.section-why-us .section__wrapper {
  padding: 55px 0 75px;
}

body .section .fila_iconos {
  padding-bottom: 35px;
}

body .fila_iconos .icono-box {
  width: calc(calc(100% / 3) - calc(2rem / 3));
}

.section__wrapper.fila_iconos .expand-button {
  left: 50%;
  transform: translateX(-50%);
}

.section .section__wrapper .formulario-rent-inner {
  gap: 150px;
}

body .section__wrapper .formulario-rent-subtitulo p {
  color: white !important;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 1px;
}

body .section__wrapper .formulario-rent-subtitulo ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

body .section__wrapper .formulario-rent-subtitulo ul li {
  font-family: "superagothic-regular";
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: .05em;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

body .section__wrapper .formulario-rent-subtitulo ul li::before {
  content: "• ";
  line-height: inherit;
  font-size: 20px;
  vertical-align: middle;
}

.caracteristicas-coches-container {
  background: linear-gradient(90deg, #346735 0%, #5ba654 100%);
  padding: 75px var(--sidePadding);
}

.caracteristicas-coches-container .section__content {
  margin-bottom: 25px;
}

.caracteristicas-coches-container .section__content.section__content--bottom {
  margin-bottom: 0;
  margin-top: 40px;
}

.caracteristicas-coches-container .buttonflota {
  margin-top: 35px;
  position: relative;
  background: transparent;
  overflow: hidden;
  transition: 0.1s;
  z-index: 1;
}

.caracteristicas-coches-container .buttonflota:hover {
  color: white !important;
}

.caracteristicas-coches-container .buttonflota::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--black);
  z-index: -2;
}

.caracteristicas-coches-container .buttonflota::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--green3);
  transition: 0.2s;
  z-index: -1;
}

.caracteristicas-coches-container .buttonflota:hover::after {
  width: 100%;
}

.caracteristicas-coches-container .section__wrapper h2 {
  margin-bottom: 50px;
  color: white !important;
}

.caracteristicas-coches-container .section__content p {
  text-align: center;
  color: white !important;
}

.caracteristicas-coches-container .section__content p strong {
  color: white !important;
}

.caracteristicas-coches-container .section__content p a {
  color: white !important;
  text-decoration: underline;
  font-weight: 800;
}

.caracteristicas-coches-container .section__content p a:hover {
  text-decoration: none;
}

.caracteristicas-coches-container .caracteristicas-coches-grid {
  width: 100%;
}

.caracteristicas-coches-container .caracteristicas-coches-grid .precio-mes {
  display: none;
}

.section__wrapper .texto_texto .box_texto:nth-child(2) {
  margin: 0 auto !important;
}

.section-cta-banner {
  padding: 75px 0;
}

.texto_texto .box_texto:nth-child(2) .content .titulo h3 {
  font-family: "SuperaGothic-ExtraBold" !important;
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  letter-spacing: .03em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000;
}

.section__wrapper:has(.formulario-more-info) {
  overflow: hidden;
}

.formulario-more-info {
  width: 80px;
  height: 122px;
  top: -25px;
  left: 0;
  border-radius: 7.5px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 22px;
  cursor: pointer;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}

.section-form .formulario-more-info {
  display: none;
}

.formulario-more-info:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

.section-form .input-with-icon input.formulario-rent-select[type="select"][name="hora_recogida"] {
  padding: 10px !important;
}

.section-form p a {
  font-weight: 700;
  text-decoration: underline;
}

.section__wrapper .fila_iconos_horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  row-gap: 50px;
}

.section__wrapper .fila_iconos_horizontal .row-item {
  width: calc(calc(100% / 3) - calc(50px / 3));
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.section__wrapper .fila_iconos_horizontal .row-icono {
  width: 100%;
}

.section__wrapper .fila_iconos_horizontal .row-icono img {
  object-fit: contain;
  width: 100%;
  height: 226px;
}

.section__wrapper .fila_iconos_horizontal .titulo_icono {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.section-airport--ofertas.section {
  padding: 75px var(--sidePadding);
}

.section-airport .section__wrapper .texto_imagen p {
  text-align: left;
}

.section .section__wrapper .texto_imagen .imagen {
  min-height: 420px;
}

.our-car-hire-company .section .section__wrapper .texto_imagen .texto p,
.nosotros .section .section__wrapper .texto_imagen .texto p {
  font-size: 15px;
  line-height: 22px;
}
.section .section__wrapper .texto_imagen .texto p a{
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
}
.section .section__wrapper .texto_imagen .texto ul {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 8px;
}

.our-car-hire-company .section .section__wrapper .texto_imagen .texto ul li,
.nosotros .section .section__wrapper .texto_imagen .texto ul li {
  font-family: "superagothic-regular";
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 22px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.our-car-hire-company .section .section__wrapper .texto_imagen .texto ul li::before,
.nosotros .section .section__wrapper .texto_imagen .texto ul li::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 13px;
  margin-right: 5px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyNCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIyIDJMOC4yNSAxOEwyIDEwLjcyNzMiIHN0cm9rZT0iIzFFMUUxRSIgc3Ryb2tlLXdpZHRoPSI0IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  line-height: 22px;
}


.section-airport .texto_imagen {
  margin-left: -150px;
  width: calc(100% + 150px);
}

.section-airport .texto_imagen .texto {
  padding-right: 0;
  width: calc(50% - 50px) !important;
  margin-left: auto;
}

.section-airport--ofertas.section .texto {
  padding-left: 0 !important;
}

.section.section-feedback {
  padding-bottom: 75px;
}
body .section-feedback--flota .bloque_seo {
  padding: 0!important;
}
.section-feedback.section-feedback--ofertas {
  padding-top: 75px;
}

.section-feedback .section__wrapper {
  max-width: calc(var(--maxWidthSize) + 40px);
}

.section-feedback .section__wrapper h2 {
  margin-bottom: 40px;
}

.section-airport--ofertas .section__wrapper h2 {
  font-size: 48px !important;
}

.section-airport--ofertas.section .section__wrapper p {
  line-height: 1.33;
  font-size: 15px;
  letter-spacing: normal;
}

.section-airport .section__wrapper ul {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 3px;
}

.section-airport .section__wrapper ul li {
  font-size: 15px;
  font-family: "superagothic-regular";
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.33;
}

.section-airport .section__wrapper ul li:before {
  content: "• ";
  line-height: inherit;
  font-size: 20px;
  vertical-align: middle;
}

.section-feedback .section__wrapper .ti-widget.ti-goog {
  max-width: 100%;
}

.section-faq-contact .faqs .flex-column-reverse {
  width: 100% !important;
  gap: 50px;
}

.section-faq-contact .faqs .flex-column-reverse .titulogeneral {
  margin-bottom: 25px !important;
}

.section-footer .container.columna2,
.section-footer .container.infofooter {
  padding-left: 0;
  padding-right: 0;
}

.fixed-footer-buttons {
  position: fixed;
  bottom: 20px;
  z-index: 999;
  pointer-events: none;
  width: 100%;
  left: 0;
}

.fixed-footer-buttons__wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.fixed-footer-buttons__wrapper ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
  gap: 10px;
}

.fixed-footer-buttons__wrapper ul li {
  display: flex;
}

#footer .divinformacion {
  margin-bottom: 25px;
}

#footer .link {
  justify-content: flex-start !important;
}

#footer .columna2 ul {
  gap: 50px;
}

.fixed-button a {
  width: 100px;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: initial;
  padding: 12px 13px;
  display: flex;
  align-items: center;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  box-shadow: 0px 1px 10px 0px #0000004d;
  transition: 0.2s;
}

.fixed-button a:hover {
  background: rgba(255, 255, 255, 1);
}

.fixed-button a span {
  aspect-ratio: 1/1;
  width: 64px;
  height: 64px;
  background: #5ba654;
  border-radius: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-button--text a {
  width: auto;
}

.fixed-button--text a span {
  width: auto;
  padding: 12px 45px;
  line-height: 1;
  color: white;
  font-family: var(--titleFont);
  text-transform: uppercase;
  font-size: 24px;
}

.section-faq h2 {
  margin-top: 50px !important;
  margin-bottom: 10px !important;
}

.section-contact {
  padding-top: 75px;
}

.section-contact .section__content {
  margin-bottom: 50px;
}

.section-contact__title {
  margin-bottom: 35px;
  text-transform: uppercase;
  color: var(--green1);
  font-family: var(--titleFont);
  font-size: 30px;
}

.section-contact__container-flex {
  display: flex;
  gap: 50px;
  width: 100%;
}

.section.section-contact .section-contact__container-flex input,
.section.section-contact .section-contact__container-flex textarea {
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  outline: none !important;
  width: 100% !important;
  margin: 0 !important;
  display: block;
  box-shadow: none !important;
  border-radius: 5px !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  height: auto !important;
}

.section.section-contact .section-contact__container-flex input::placeholder,
.section.section-contact .section-contact__container-flex textarea::placeholder {
  padding: 0 !important;
}

.section.section-contact .form-row {
  display: flex !important;
  gap: 25px;
  margin-bottom: 25px;
}

.section.section-contact .form-row .wpcf7-form-control-wrap {
  width: 100%;
}

.section.section-contact .contact-checkbox {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 4px 0;
  padding-left: 4px;
  margin-top: 5px;
}

body .section.section-contact .contact-checkbox input[type="checkbox"] {
  width: 12px !important;
  min-width: 12px !important;
  height: 12px !important;
  outline: 2px solid var(--green1) !important;
  outline-offset: 2px !important;
  border: 0 !important;
  border-radius: 2px !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding: 0 !important;
}

body .section.section-contact .contact-checkbox input[type="checkbox"]:checked {
  background: var(--green1) !important;
}

.section.section-contact .contact-checkbox p {
  font-size: 16px !important;
  text-align: left;
}

.section.section-contact .contact-checkbox p a {
  color: var(--green1) !important;
  font-weight: 600;
}

.section.section-contact .contact-checkbox p a:hover {
  text-decoration: underline;
}

.section.section-contact .section-contact__container-flex input[type="submit"] {
  background: var(--green1);
  color: white !important;
  font-family: var(--titleFont) !important;
  text-transform: uppercase !important;
  font-size: 22px !important;
  padding: 12.5px 50px !important;
  width: auto !important;
  margin-top: 5px !important;
}

.section.section-contact .section-contact__container-flex input[type="submit"]:hover {
  background: var(--green2) !important;
}

.section-contact__info-title {
  font-size: 18px;
  color: var(--green1);
}

.section-contact__info-title strong {
  font-weight: 700 !important;
}

.section-contact__info-title strong {
  font-weight: 600;
}

.section-contact__info-item {
  font-size: 16px;
  line-height: 1.54;
  margin: 10px 0;
  font-family: "worksans" !important;
}

.section-contact__info-item strong {
  font-weight: 600;
}

.section-contact__info-item a {
  font-weight: 600;
  color: var(--green1);
}

.map-iframe {
  margin-top: 25px;
}

.map-iframe iframe {
  height: 450px;
}

.faq-contact {
  padding: 0 var(--sidePadding) 85px;
}

.faq-contact__wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 0 auto;
}

.faq-contact__wrapper .faqs {
  width: 50%;
}

.section-faq-contact .contact {
  width: 50%;
  position: relative;
  padding: 65px 35px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body .section-faq-contact .contact h2 {
  color: white !important;
}

body .section-faq-contact .contact p {
  color: white !important;
}

.section-faq-contact .contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 99, 47, 1);
  z-index: -2;
  border-radius: 40px;
}

.section-faq-contact .contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(360deg,
      rgba(203, 213, 11, 0.2) 34.13%,
      rgba(12, 99, 47, 0.2) 100%);
  border-radius: 40px;
}

.section-faq-contact .contact h2 {
  color: white;
  font-size: var(--textFontSizeM) !important;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
}

.section-faq-contact .contact:has(.short-content) h2 {
  margin-bottom: 35px;
}

.contact__content {
  margin: auto 0 35px;
}

.contact__content p {
  color: white;
  font-size: 15px !important;
  letter-spacing: normal !important;
  font-family: var(--secondaryFont);
  font-weight: 400;
  font-style: normal;
}

.contact__content strong {
  font-weight: 600;
}

.contact__content.medium-content,
.contact__content.short-content {
  font-size: var(--textFontSizeM);
  text-align: center;
}

.contact__content.short-content {
  margin-bottom: 40px;
}

.section-faq-contact .contact .contact-form {
  width: 100%;
  margin: auto 0;
}

.wpcf7-not-valid-tip {
  font-size: calc(var(--textFontSizeS) - 3px);
  font-family: var(--secondaryFont);
  position: absolute;
  bottom: 100%;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.section-faq-contact .contact .contact-form form {
  width: 100%;
  overflow: visible;
}

.section-faq-contact .contact .contact-form input[type="text"],
.section-faq-contact .contact .contact-form input[type="email"],
.section-faq-contact .contact .contact-form input[type="tel"],
.section-faq-contact .contact .contact-form textarea {
  display: block;
  width: 100%;
  padding: 8px 15px;
  color: var(--gray);
  font-family: var(--tertiaryFont);
  font-weight: 600;
  font-size: 17px;
  outline: none;
  border: none;
  border-radius: 2px;
  background: white;
}

.section-faq-contact .contact .contact-form input::placeholder,
.section-faq-contact .contact .contact-form textarea::placeholder {
  padding: 0 !important;
}

.section-faq-contact .contact .contact-form.loading input,
.section-faq-contact .contact .contact-form.loading textarea,
.section-faq-contact .contact .contact-form.loading .button--primary {
  opacity: 0.9;
  pointer-events: none;
}

.section-faq-contact .contact .contact-form.loading .button--primary {
  cursor: wait;
  background: var(--green);
}

.section-faq-contact .contact .contact-form input::placeholder,
.section-faq-contact .contact .contact-form textarea::placeholder {
  opacity: 0.6;
}

.section-faq-contact .contact .contact-form__group {
  display: flex;
  gap: 25px;
  margin: 25px 0;
  width: 100%;
}

body .contact-form .wpcf7 form .wpcf7-not-valid-tip {
  top: initial;
  font-size: 15px;
  text-align: left;
  right: initial;
  left: 0;
  bottom: calc(100% + 1px);
}

.section-faq-contact .contact .contact-form__group input {
  margin-bottom: 0;
}

.section-faq-contact .contact .button--primary {
  padding: 15px 30px;
  width: 100%;
  justify-content: center;
  box-shadow: 0px 1px 2px 0px #000000bf;
  border-bottom: 40px;
  border-radius: 7.5px;
  text-transform: uppercase;
  color: white;
  background: var(--green3);
}

.section-faq-contact .contact .button--primary:hover {
  background: var(--green2);
}

.contact__info {
  padding: 15px 50px;
  background: var(--green3);
  color: white;
  font-size: var(--textFontSizeS);
  font-weight: 400;
  font-family: var(--secondaryFont);
  line-height: 1;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  margin-top: 35px;
  padding-bottom: 10px;
}

.contact__info>div:first-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact__info>div p {
  font-family: var(--tertiaryFont);
  line-height: 25px;
  font-weight: 400;
  letter-spacing: 1px;
  width: 100%;
  padding: 0 10px;
  white-space: wrap;
}

.contact__info>div {
  display: flex;
  gap: 20px;
  justify-content: center;
  white-space: nowrap;
}

.contact__info>div a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--secondaryFont);
  font-weight: 400;
  color: white;
  font-size: 16px;
}

.contact__map {
  height: 236px;
  width: calc(100% + 70px) !important;
  margin-left: -35px;
  overflow: hidden;
  position: relative;
}

.contact__map iframe {
  position: absolute;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  display: block;
}

.form__response {
  margin-top: 15px;
  font-size: var(--textFontSizeS);
  font-family: var(--secondaryFont);
  text-align: center;
  width: 100%;
  font-weight: 600;
}

body .wpcf7 form .wpcf7-response-output {
  color: white;
  text-align: center;
  padding: 10px 30px;
  font-family: var(--secondaryFont);
  font-weight: 500;
}

body .section-contact .wpcf7 form .wpcf7-response-output {
  color: var(--green2) !important;
  border-color: var(--green2) !important;
}

body .wpcf7 form.invalid .wpcf7-response-output {
  border-color: red !important;
  color: red !important;
}

.obfuscated-link {
  cursor: pointer;
}

.wpcf7-list-item:has([type="checkbox"]) {
  width: 100%;
  margin-left: 0;
}

.wpcf7-list-item:has([type="checkbox"]) label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 10px 0;
}

.wpcf7-list-item:has([type="checkbox"]) input {
  width: auto;
  margin-bottom: 0;
}

.wpcf7-list-item:has([type="checkbox"]) .wpcf7-list-item-label {
  color: white;
  line-height: 1;
  font-family: var(--secondaryFont);
  font-size: 15px !important;
}

body .section-contact .wpcf7 form .wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
  width: auto !important;
}

body .section-contact .wpcf7 form .wpcf7-form-control.wpcf7-acceptance {
  display: flex;
  align-items: center;
}

body .wpcf7 form .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
  line-height: 1;
  position: initial;
  margin-right: 5px !important;
}

.wpcf7-list-item:has([type="checkbox"]) .wpcf7-list-item-label span {
  color: white;
  font-weight: 500;
}

.wpcf7-list-item:has([type="checkbox"]) .wpcf7-list-item-label span:hover {
  text-decoration: underline;
}

body .wpcf7 form .wpcf7-submit.button--primary {
  background-color: var(--green3);
}

body .wpcf7 form .wpcf7-submit.button--primary:hover {
  background-color: var(--green2);
  color: white !important;
}

body .section-contact .wpcf7 form {
  overflow: visible;
  max-width: 100%;
}

body .section-contact .wpcf7 form .wpcf7-not-valid-tip {
  font-size: 14px;
  top: initial;
  bottom: calc(100% + 2px);
  width: 100%;
  padding: 0;
  left: 0;
  right: initial;
  text-align: left;
}

@media (max-width: 1240px) {
  .faq-contact__wrapper {
    gap: 50px;
  }

  .faq h2 {
    font-size: 36px;
  }
}

@media (max-width: 1020px) {
  .faq-contact__wrapper {
    gap: 30px;
  }

  .faq__list>li .faq__question {
    font-size: 18px;
  }

  .section-faq-contact .contact {
    padding: 40px 25px 0;
  }

  .contact__map {
    width: calc(100% + 50px) !important;
    margin-left: -25px;
  }

  .contact__info {
    padding: 15px 25px;
  }
}

@media (max-width: 850px) {
  .faq-contact__wrapper {
    flex-direction: column-reverse;
    gap: 45px;
  }

  .our-car-hire-company .faq-contact__wrapper,
  .nosotros .faq-contact__wrapper {
    flex-direction: column;
  }

  .faq-contact__wrapper>div,
  .faq-contact__wrapper>section {
    width: 100% !important;
  }

  .our-car-hire-company .section.section-feedback,
  .nosotros .section.section-feedback {
    padding-bottom: 50px;
  }

  .section-faq-contact .contact {
    height: auto;
    padding: 65px 35px 0;
  }

  .contact>p {
    max-width: initial;
  }

  .contact__info>div:first-of-type {
    justify-content: center;
  }

  .contact__map {
    width: calc(100% + 70px) !important;
    margin-left: -35px;
  }

  #footer .columna2 ul.politicas {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {

  .faq-contact__wrapper {
    flex-direction: column-reverse;
    gap: 50px;
  }

  .faq-contact {
    padding: 50px var(--sidePadding) 75px;
  }

  .section .section__wrapper .texto_imagen .imagen {
    min-height: 55vw;
  }

  #footer .columna2 div {
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) and (orientation: portrait) {

  .hero__bg img {
    display: none;
  }

  .hero__bg .hero-bg--mobile {
    display: block;
  }
}

@media (max-width: 700px) {
  .section-faq-contact .contact {
    padding: 65px var(--sidePadding) 0;
  }

  .contact__form-group {
    flex-direction: column;
    gap: 20px;
  }

  .contact__info>div:last-of-type {
    gap: 25px;
  }

  .contact__info>div:first-of-type svg {
    width: 22px;
    height: 22px;
  }

  .contact__info>div:first-of-type p {
    max-width: calc(20vw + 260px);
  }

  .contact__map {
    width: calc(100% + 60px) !important;
    margin-left: -30px;
  }
}

@media (max-width: 600px) {
  .contact__map {
    width: calc(100% + 40px) !important;
    margin-left: -20px;
  }

  .contact__info>div {
    flex-wrap: wrap;
  }

  .contact__info>div:first-of-type {
    flex-direction: column;
  }

  body .section-faq-contact .contact p {
    text-align: center;
    margin-bottom: 8px;
  }

  #footer .columna2 ul.politicas {
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px;
  }

  #footer .columna2 ul.politicas a {
    font-size: 20px !important;
  }
}

@media (max-width: 550px) {
  .section-faq-contact .contact .contact-form__group {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .section-footer .container.infofooter .logo {
    order: 1;
    margin-bottom: 0 !important;
    padding-top: 25px !important;
  }

  .section-footer .container.infofooter .columna1divinformacion {
    order: 2;
  }

  #footer .section-footer .link {
    justify-content: center !important;
    text-align: center !important;

  }

  #footer .section-footer .columna2divinformacion {
    align-items: center;
  }

  #footer .section-footer .columna2divinformacion .link {
    flex-direction: column-reverse;
    align-items: center;
  }

  #footer .section-footer .columna2divinformacion .link label {
    text-align: center;
  }

  #footer .section-footer .columna2divinformacion .link img {
    height: 40px;
    width: auto;
    margin: initial !important;
  }

  .our-car-hire-company .section .section__wrapper .texto_imagen .texto,
  .nosotros .section .section__wrapper .texto_imagen .texto {
    margin-top: 15px;
  }

}

@media (max-width: 460px) {
  .contact__info>div:last-of-type {
    flex-direction: column;
    align-items: center;
  }
}


@media (max-width: 1400px) and (min-height: 880px) {
  .hero__wrapper {
    max-height: 880px;
  }
}

@media (max-width: 1280px) {
  body .section__wrapper .formulario-rent-subtitulo p {
    font-size: calc(12px + 0.75vw);
  }

  .section .section__wrapper .formulario-rent-inner {
    gap: calc(25px + 2vw);
  }

  .header__menu ul {
    gap: 20px;
    row-gap: 12px;
  }

  .header__menu ul li a {
    font-size: 18px;
    padding: 10px;
  }

  .book-header-btn {
    padding: 15px 30px;
    min-width: initial;
  }

  .hero__wrapper {
    max-height: 750px;
  }

  .hero__title {
    font-size: calc(24px + 3.2vw);
  }

  .section__wrapper h2 {
    text-transform: uppercase;
    font-size: calc(23px + 1.75vw) !important;
  }

  body h2.main__title {
    font-size: calc(20px + 2.5vw) !important;
    line-height: 0.9 !important;
    margin-top: 45px !important;
  }
}

@media (max-width: 1100px) {
  body .fila_iconos .row {
    row-gap: 30px !important;
  }

  body .fila_iconos .icono-box {
    width: calc(calc(100% / 2) - calc(1rem / 2));
    margin-bottom: 0 !important;
  }

  .section-contact__container-flex {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .header__menu {
    display: none;
  }

  .header__logo {
    width: calc(100px + 3.5vw);
  }

  .book-header-btn {
    padding: 10px 25px;
    min-width: initial;
  }

  .hero__wrapper {
    padding-top: 125px;
    max-height: 640px;
  }

  .hero__title {
    font-size: calc(30px + 2vw);
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 40px;
    border-radius: 3px;
  }

  .hamburger:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  .hamburger span {
    height: 4px;
    width: 28px;
    border-radius: 2px;
    background: white;
    position: absolute;
    transition: .1s;
  }

  .hamburger span:first-of-type {
    top: 8px;
  }

  .hamburger span:last-of-type {
    bottom: 8px;
  }

  .responsive-active .hamburger span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg) translateY(-2px) translateX(-1px);
  }

  .responsive-active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%);
  }

  .responsive-active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translateY(2px) translateX(-1px);
    bottom: 50%;
  }

  .responsive-menu {
    position: fixed;
    height: 100%;
    z-index: 22;
    min-height: 100vh;
    margin: 0 !important;
    width: calc(100% - 75px);
    max-width: 420px;
    top: 0;
    left: 0;
    display: block;
    background: var(--green3);
    padding: 30px 20px;
    transform: translateX(-100%);
    transition: .3s;
  }

  .responsive-menu .book-header-btn {
    margin-top: 20px;
  }

  .responsive-active .responsive-menu {
    transform: translateX(0);
  }

  .responsive-menu .menu-item a {
    font-size: calc(.8vw + 11px);
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    font-family: var(--titleFont);
  }

  .section-airport .titulo h2 {
    text-align: center !important;
    font-size: calc(20px + 2.6vw) !important;
  }

  .section-airport .texto_imagen {
    margin-left: 0;
    width: 100%;
  }

  .our-car-hire-company .section .section__wrapper .texto_imagen .imagen,
  .nosotros .section .section__wrapper .texto_imagen .imagen {
    order: 2;
    width: 100% !important;
    height: calc(120px + 45vw) !important;
  }


  .section-airport .section__wrapper .texto_imagen p {
    text-align: center;
  }

  .section-airport .texto_imagen .container {
    flex-direction: column-reverse;
    align-items: center;
  }

  .section-airport .texto_imagen .texto {
    width: 100% !important;
    margin: 0;
    padding: 0 !important;
    max-width: 100% !important;
  }

  .section-airport .texto_imagen .imagen {
    width: 100% !important;
    max-width: 768px !important;
  }

  .caracteristicas-coches-container .section {
    padding: 50px var(--sidePadding);
  }

  .section__wrapper .categoria-coche-nombre {
    font-size: calc(12px + 0.75vw) !important;
  }

  .section__wrapper .caracteristicas-coches-grid {
    flex-direction: row;
  }

  .section__wrapper .caracteristicas-coches-grid .coche-card {
    width: calc(50% - 12.5px);
  }

  .section .section__wrapper .formulario-rent-inner {
    padding-top: 85px !important;
  }

  .section-why-us .section__wrapper {
    padding-bottom: 50px;
  }

  .fixed-button a {
    width: calc(80px + .25vw);
  }

  .fixed-button.fixed-button--text a {
    width: auto;
  }

  .fixed-button a span {
    width: calc(30px + 3vw);
    height: calc(30px + 3vw);
    border-radius: calc(30px + 3vw);
  }

  .fixed-button.fixed-button--text a span {
    padding: 10px 20px;
    font-size: calc(1vw + 12px);
  }

  .fixed-button--text a span {
    width: auto;
  }

  .fixed-button a span svg {
    width: 60% !important;
    height: 60% !important;
  }
}

@media (max-width: 992px) {
  .section .section__wrapper .formulario-rent-inner {
    gap: 0;
  }
}

@media (max-width: 768px) {
  body .fila_iconos .icono-box {
    width: 100%;
  }

  .section__wrapper .fila_iconos_horizontal .row-item {
    width: calc(calc(100% / 2) - calc(50px / 2));
    gap: 0 !important;
  }

  .section-faq h2 p {
    font-size: 36px !important;
    line-height: .9 !important;
  }

  .hero__wrapper {
    max-height: initial;
    padding-top: 135px;
  }

  .hero__title {
    font-size: 10vw;
    line-height: 1;
    z-index: 1;
    position: relative;
  }

  .hero__image-1 {
    width: 100vw;
    margin-left: -31vw;
  }

  .hero__image-2 {
    width: 75vw;
    margin-right: -21vw;
  }

  body h2.main__title {
    font-size: calc(25px + 2.5vw) !important;
  }

  .section-cta-banner {
    padding: 50px 0;
  }

  .section-cta-banner .texto_texto .box_texto:nth-child(2) {
    width: 100%;
  }

  .section.section-feedback {
    padding-bottom: 50px;
  }

  .section-feedback.section-feedback--ofertas {
    padding-top: 50px;
  }

  .section-contact {
    padding-top: 50px;
  }

  .section-contact__container-flex {
    gap: 35px;
  }

  .section.section-airport {
    padding-bottom: 50px !important;
  }
}

@media (max-width: 680px) {
  .header__buttons .book-header-btn {
    display: none;
  }
}

@media (max-width: 600px) {
  .section__wrapper .fila_iconos_horizontal {
    row-gap: 25px;
  }

  .section__wrapper .caracteristicas-coches-grid .coche-card {
    width: 100%;
  }

  .section__wrapper .fila_iconos_horizontal .row-icono {
    width: 100% !important;
  }

  .section__wrapper .fila_iconos_horizontal .row-icono img {
    height: 140px;
  }

  .section.section-contact .form-row {
    flex-direction: column;
  }

  .section.section-contact .section-contact__container-flex input[type="submit"] {
    width: 100% !important;
  }
}

@media (max-width: 468px) {
  .hero__wrapper {
    max-height: 678px;
    padding-top: 135px;
  }

  .hero__image-1 {
    margin-left: -22vw;
  }

  .hero__image-2 {
    margin-right: -11vw;
    bottom: 50px;
  }
}

@media (max-width: 360px) {
  .hero__wrapper {
    max-height: 568px;
    padding-top: 135px;
  }
}