/*
Theme Name: Inicia Travel
Author: Pedro Ant. Duran
Description: Plantilla F33 para Wordpress
Version: 1.1.0
*/

@font-face {
  font-family: "NewSpirit";
  src: url("fonts/NewSpirit-RegularCondensed.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "SuisseIntl-Book";
  src: url("fonts/SuisseIntl-Book.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "SuisseIntl-Book";
  src: url("fonts/SuisseIntl-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "HelveticaNeue";
  src: url("fonts/HelveticaNeue.woff") format("woff");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: "ITCFranklinGothicStd";
  src: url("fonts/ITCFranklinGothicStd-DmCp.otf") format("opentype");
  font-style: normal;
  font-weight: normal;
}

:root {
  --colorPrimary: #000000;
  --colorSecundary: #e3e2e1;
  --colorWhite: #fff;
  --colorVerde: #c9ff06;

  --ani: all 0.4s cubic-bezier(0.74, 0, 0.07, 1);
  --aniMenu: all 0.4s ease-in-out;
  --aniMenu2: all 1s cubic-bezier(0, 0, 0.12, 1.03);
}

html {
  font-size: 0.521vw;
}

*,
::after,
::before {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  -webkit-font-feature-settings: "lnum";
  -moz-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}
*,
*:focus {
  outline: none;
}
p {
  margin: 0px 0px 20px 0px;
}
a {
  color: var(--colorPrimary);
}

body {
  padding: 0px;
  margin: 0px;
  background-color: var(--colorSecundary);
  color: var(--colorPrimary);
  font-family: "HelveticaNeue";
  font-weight: 600;
  font-size: 15px;
  line-height: 120%;
}

header {
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.3rem 6rem;
  width: 100%;
  background-color: var(--colorWhite);
  z-index: 9999999;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  transition-duration: 1s;
}
.header__logo a {
  display: flex;
}
.header__logo svg {
  width: 16.8553rem;
  height: auto;
}
.btn__menumovil {
  width: 3rem;
  height: 1.5rem;
  background: transparent;
  border: 0px;
  border-radius: 0;
  padding: 0px;
  margin: 0px;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.btn__menumovil span {
  width: 100%;
  height: 0.2rem;
  background-color: var(--colorPrimary);
  position: absolute;
  left: 0px;
  top: 0px;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.btn__menumovil span:nth-child(2) {
  top: 1.3rem;
}
.btn__menumovil:hover span:nth-child(1) {
  top: 0.2rem;
}
.btn__menumovil:hover span:nth-child(2) {
  top: 1.1rem;
}

.btn__menumovil.active span:nth-child(1) {
  top: 0.4rem;
  transform: rotate(45deg);
}
.btn__menumovil.active span:nth-child(2) {
  top: 0.4rem;
  transform: rotate(-45deg);
}

.menu {
  position: fixed;
  top: -100vh;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: var(--colorWhite);
  color: var(--colorPrimary);
  display: flex;
  align-content: center;
  justify-content: center;
  z-index: 8;
  -moz-transition: var(--aniMenu);
  -ms-transition: var(--aniMenu);
  -o-transition: var(--aniMenu);
  transition: var(--aniMenu);
  transition-duration: 0.8s;
}
.menu.active {
  top: 0px;
}
.menu-header li {
  transform: translateY(4rem);
  opacity: 0;
  -moz-transition: var(--aniMenu2);
  -ms-transition: var(--aniMenu2);
  -o-transition: var(--aniMenu2);
  transition: var(--aniMenu2);
  transition-delay: 0s;
}

.menu.active .menu-header li {
  transform: translateY(0rem);
  opacity: 1;
}
.menu.active .menu-header li:nth-child(1) {
  transition-delay: 0.8s;
}
.menu.active .menu-header li:nth-child(2) {
  transition-delay: 0.9s;
}
.menu.active .menu-header li:nth-child(3) {
  transition-delay: 1s;
}
.menu.active .menu-header li:nth-child(4) {
  transition-delay: 1.1s;
}
.menu.active .menu-header li:nth-child(5) {
  transition-delay: 1.2s;
}
.menu.active .menu-header li:nth-child(6) {
  transition-delay: 1.3s;
}
.menu.active .menu-header li:nth-child(7) {
  transition-delay: 1.4s;
}

.menu > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 12rem);
}
.menu-header {
  padding: 0;
  margin: 0;
  list-style: none;
  width: calc(100%);
}
.menu-header li a {
  font-family: "ITCFranklinGothicStd";
  font-size: 12rem;
  line-height: 90%;
  text-decoration: none;
  letter-spacing: -0.2rem;
  font-weight: normal;
}
.menu-header li a:hover {
  text-decoration: underline;
}
.menu__copy,
.menu__lang {
  font-family: "SuisseIntl-Book";
  font-size: 2.5rem;
  color: #808080;
  font-weight: normal;
}
.menu__rs a,
.menu__rs {
  font-family: "NewSpirit";
  font-size: 2.8rem;
  text-decoration: none;
}
.menu__rs a:hover {
  text-decoration: underline;
}
.menu__bottom {
  position: absolute;
  left: 6rem;
  width: calc(100% - 12rem);
  bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  -moz-transition: var(--aniMenu2);
  -ms-transition: var(--aniMenu2);
  -o-transition: var(--aniMenu2);
  transition: var(--aniMenu2);
}
.menu.active .menu__bottom {
  opacity: 1;
  transition-delay: 1.6s;
}

.header__ini_viaje {
  font-family: "ITCFranklinGothicStd";
  font-size: 3.8rem;
  line-height: 50%;
  color: #808080;
  margin-top: 1rem;
  display: block;
  text-decoration: none;
}
.header__ini_viaje:hover {
  text-decoration: underline;
}

.homepage {
  padding: 7rem;
}
.btn_clse_video {
  display: none;
}
.homepage__txt {
  font-family: "ITCFranklinGothicStd";
  font-size: 36.5rem;
  line-height: 84%;
  letter-spacing: -1rem;
  position: relative;
  display: inline-block;
  font-weight: normal;
}
.home__video1 {
  display: inline-block;
  width: 13.34rem;
  height: 25.6rem;
  background: #aaa;
  margin-right: 3rem;
  margin-left: 2rem;
  margin-bottom: -0.6rem;
  overflow: hidden;
  position: absolute;
  left: 75rem;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  z-index: 7;
}
.home__video1 video {
  width: 13.34rem;
  height: 25.6rem;
  object-fit: cover;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
  transform: scale(1.1);
}
.home__video1.active {
  left: -2rem;
  width: 182rem;
  height: 90vh;
  background-color: var(--colorWhite);
  cursor: url("images/close-white.svg") 10 10, auto;
  margin: 0px;
}
.home__video1.active video {
  width: 182rem;
  height: 90vh;
  margin: 0px;
  transform: scale(1);
}

.homepage__txt-2 {
  letter-spacing: -0.63rem;
  margin-left: -1.5rem;
}
.hover {
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.homepage__txt-1 {
  width: 100%;
  display: flex;
  margin-bottom: 9rem;
}
.home__travel,
.home__inicia {
  height: 25.5rem;
}
.home__travel {
  margin-left: 18rem;
}

.homepage__txt-6 a.hover::before,
.homepage__txt-5 a.hover::before,
.homepage__txt-4 a.hover::before,
.homepage__txt-3 span.hover::before,
.homepage__txt-1.hover::before {
  position: absolute;
  bottom: 7.5rem;
  left: 1.8rem;
  height: 2rem;
  width: 177rem;
  background-color: var(--colorPrimary);
  content: "";
  opacity: 0;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.homepage__txt-6 a.hover::before,
.homepage__txt-1.hover::before {
  bottom: 4.5rem;
}
.homepage__txt-3 span.hover::before {
  left: -0.5rem;
  width: 108rem;
}
.homepage__txt-6 a.hover:hover::before,
.homepage__txt-5 a.hover:hover::before,
.homepage__txt-4 a.hover:hover::before,
.homepage__txt-1.hover:hover::before,
.homepage__txt-3 span.hover:hover::before {
  opacity: 1;
}

.homepage__txt-6 a.hover::before {
  left: 1.2rem;
  width: 87rem;
}
.homepage__txt-4 a.hover::before {
  left: 0px;
  width: 86rem;
}
.homepage__txt-5 a.hover::before {
  left: 1rem;
  width: 145rem;
}
.homepage__txt-1.hover::before {
  bottom: -4rem;
  left: 0rem;
}
.homepage__txt-6 a.hover::before,
.homepage__txt-3 span.hover::before,
.homepage__txt-1.hover::before,
.hover_vi::before {
  opacity: 1 !important;
  width: 0% !important;
}

.homepage__txt-6 a.hover:hover::before,
.homepage__txt-3 span.hover:hover::before,
.homepage__txt-1.hover:hover::before,
.hover_vi.active::before {
  opacity: 1 !important;
  width: 100% !important;
}
.homepage__txt-3 span.hover:hover::before {
  width: 102% !important;
}

.modal {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  opacity: 0;
  visibility: hidden;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.modal.active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.modal .btn-close-modal {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: 3rem;
  height: 3rem;
  margin: 0px;
  padding: 0px;
  background: transparent;
  border: 0px;
  border-radius: 0px;
  cursor: pointer;
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.modal .btn-close-modal:hover {
  transform: rotate(90deg);
}

.modal .modal__content {
  width: 153rem;
  padding: 6rem;
  background-color: var(--colorVerde);
  position: relative;
}
.modal.modal-ongs .modal__content {
  width: 164rem;
}
.modal-nosotros .modal__txt {
  font-family: "ITCFranklinGothicStd";
  font-size: 6.8rem;
  line-height: 100%;
  letter-spacing: -0.1rem;
  hyphens: auto;
  word-break: break-word;
  max-height: 70vh;
  overflow: auto;
}
.modal-ongs .modal__txt {
  max-height: 70vh;
  overflow: auto;
}
.modal-ongs .modal__txt::-webkit-scrollbar,
.modal-nosotros .modal__txt::-webkit-scrollbar {
  display: none;
}
.modal-nosotros .modal__title {
  display: block;
  width: 31rem;
  height: 19rem;
  font-family: "NewSpirit";
  font-size: 2.8rem;
  line-height: 100%;
  letter-spacing: -0rem;
  float: left;
}
.modal-ongs .modal__title {
  text-align: center;
  margin: 0px;
  font-family: "ITCFranklinGothicStd";
  font-size: 14rem;
  line-height: 100%;
  letter-spacing: -0.3rem;
}
.modal-ongs .modal__conte {
  max-width: 95rem;
  margin: 0px auto 8rem;
  text-align: center;
}

.modal.modal-destinos .btn-close-modal,
.modal.modal-ongs .btn-close-modal,
.modal.modal-contacto .btn-close-modal {
  bottom: auto;
  right: 2rem;
  top: 2rem;
}

.modal.modal-contacto .modal__content {
  width: 52.5rem;
  padding: 7rem 2.5rem 4rem 2.5rem;
}
.modal__contacto-titulo {
  display: block;
  width: 100%;
  height: 16rem;
  font-family: "NewSpirit";
  font-size: 2.8rem;
  line-height: 100%;
  letter-spacing: -0rem;
}

textarea,
input[type="text"],
input[type="email"],
input[type="tel"] {
  background-color: transparent;
  border: 0.2rem solid var(--colorPrimary);
  padding: 2rem;
  font-size: 2.2rem;
  font-family: "SuisseIntl-Book";
  border-radius: 0px;
  width: 100%;
  color: var(--colorPrimary);
}
input[type="submit"] {
  background-color: transparent;
  border: 0.2rem solid var(--colorPrimary);
  padding: 2rem 4rem;
  font-size: 2.2rem;
  font-family: "SuisseIntl-Book";
  border-radius: 0px;
  width: auto;
  color: var(--colorPrimary);
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
input[type="submit"]:hover {
  background-color: var(--colorPrimary);
  border: 0.2rem solid var(--colorPrimary);
  padding: 2rem 4rem;
  font-size: 2.2rem;
  font-family: "SuisseIntl-Book";
  border-radius: 0px;
  width: auto;
  color: var(--colorVerde);
  cursor: pointer;
}
input[type="submit"]:disabled {
  opacity: 0.5;
}

.wpcf7-not-valid {
  border-color: red !important;
}
.wpcf7-not-valid-tip {
  display: none !important;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 2rem;
  font-size: 2rem;
  line-height: 120%;
  font-weight: normal;
  text-align: center;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
  color: var(--colorPrimary);
}

.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 0;
}

.modal__contacto-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6rem;
  font-family: "NewSpirit";
  font-size: 2.8rem;
  line-height: 100%;
  letter-spacing: -0rem;
  font-weight: normal;
}
.modal__contacto-bottom a {
  text-decoration: none;
}
.modal__contacto-bottom a:hover {
  text-decoration: underline;
}

.text-right {
  text-align: right;
  position: relative;
}
.wpcf7-spinner {
  position: absolute;
  left: 0px;
  margin: 2rem 0px 0px 2.4rem;
}

.pagetesti {
  padding: 14.7rem 6rem;
}

.pagetesti h1 {
  text-align: center;
  margin: 0px 0px 4rem;
  font-family: "ITCFranklinGothicStd";
  font-size: 14rem;
  line-height: 120%;
  letter-spacing: -0.3rem;
  font-weight: normal;
}

.pagetesti__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4.2rem;
}
.pagetesti__list > div {
  width: 41.8rem;
}
.pagetesti__list > div:nth-child(4n + 3),
.pagetesti__list > div:nth-child(4n + 4) {
  margin-top: 0rem;
}

.page-template-plantilla_testimonios {
  background-color: var(--colorWhite);
}

.testimonio {
  display: block;
  background-color: var(--colorVerde);
  color: var(--colorPrimary);
  height: 64rem;
  overflow: auto;
}
.testimonio::-webkit-scrollbar {
  display: none;
}
.testimonio img {
  display: block;
  width: 41.8rem;
  height: 39.162rem;
  object-fit: cover;
  object-position: center;
}
.testimonio .testimonio__data {
  padding: 2rem 1.5rem;
}
.testimonio .testimonio__test {
  text-align: center;
  font-size: 3.8rem;
  line-height: 100%;
  font-family: "NewSpirit";
  margin-bottom: 3rem;
  font-weight: normal;
  min-height: 9.2rem;
}
.testimonio .testimonio__txt {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  line-height: 120%;
}
.testimonio .testimonio__txt > div:last-child {
  width: 20rem;
}
.testimonio .testimonio__txt .testimonio__voluntariado {
  width: 18rem;
  font-size: 1.4rem;
  margin-top: 1rem;
}

.testimonio .testimonio__descripcion {
  margin: 3.2rem 0px 2.2rem;
  font-size: 1.6rem;
  line-height: 120%;
}
.testimonio__fecha {
  font-size: 1.6rem;
  line-height: 120%;
  text-align: right;
}
.pagetesti__desc {
    width: 70rem;
    font-size: 2rem;
    line-height: 120%;
    margin-bottom: 5rem;
    margin-left: 92rem;
}

.modal__ongs {
  display: flex;
  flex-wrap: wrap;
  gap: 4.2rem;
}
.modal__ongs > div {
  width: 34.8rem;
}
.ong {
}
.ong img {
  width: 20rem;
  height: 14rem;
  object-fit: contain;
  display: block;
  margin: auto;
  margin-bottom: 1rem;
}
.ong .ong__desc {
  text-align: center;
  width: 100%;
  margin: auto;
  font-family: "SuisseIntl-Book";
  font-size: 1.5rem;
  line-height: 110%;
  font-weight: 400;
  hyphens: auto;
  word-break: break-word;
}

body.home header {
  top: -9rem;
}

body.home.activeMenu header,
body.home header.mostrar {
  top: 0rem;
}

.homepage__testimonios {
width: 53rem;
    display: inline-flex;
    margin: 0rem 0px 0px 10rem;
    font-size: 5.5rem;
    line-height: 5.1rem;
    font-family: "NewSpirit";
    position: absolute;
    letter-spacing: 0;
    height: 23.7rem;
    align-items: end;
}
.homepage__testimonios .homepage__test_ani {
  position: relative;
  cursor: pointer;
  padding-bottom: 1rem;
}
.homepage__testimonios_bigs {
  position: absolute;
  display: inline-block;
}

.homepage__testimonio {
  position: absolute;
  font-size: 3.8rem;
  letter-spacing: 0;
  line-height: 100%;

  font-family: "NewSpirit";
  text-align: center;
  z-index: 999;
  bottom: -42rem;
  left: 27rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  -moz-transition: var(--ani);
  -ms-transition: var(--ani);
  -o-transition: var(--ani);
  transition: var(--ani);
}
.homepage__testimonio a {
  display: block;
  background-color: var(--colorVerde);
  width: 47rem;
  padding: 4.5rem;
  text-decoration: none;
}
.homepage__testimonio img {
  width: 38rem;
  height: 38rem;
  object-fit: cover;
  margin-bottom: 2rem;
}
.homepage__testimonio.active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.homepage__galeria3,
.homepage__galeria2,
.homepage__galeria1 {
  position: relative;
  width: 25rem;
  display: inline-block;
}
.homepage__galeria2 {
  position: absolute;
  left: 0;
  top: -3rem;
}
.homepage__galeria3 {
  width: 42rem;
  height: 25.5rem;
  display: inline-block;
  margin-left: 3rem;
  position: absolute;
  top: -3rem;
}
.homepage__galeria2 .homepage__galeria2-diapo img,
.homepage__galeria1 img {
  width: 25rem;
  height: 25rem;
  object-fit: cover;
  -moz-transition: var(--aniMenu);
  -ms-transition: var(--aniMenu);
  -o-transition: var(--aniMenu);
  transition: var(--aniMenu);
  transition-duration: 0.6s;
}
.homepage__galeria1 .slick-slide {
  width: 25rem;
  height: 25rem;
}
.homepage__galeria3 img {
    width: 42rem;
    height: 24.3rem;
    object-fit: cover;
    margin-top: 0.7rem;
}
.homepage__galeria3 .slick-slide {
  width: 42rem;
  height: 25.5rem;
}
.homepage__txt-3 {
  letter-spacing: -1rem;
}
.homepage__txt-4 {
  letter-spacing: -1rem;
}
.homepage__txt-6 a {
  text-decoration: none;
  margin-left: 46rem;
  display: inline-block;
  position: relative;
}

.homepage__galeria2 .homepage__galeria2-diapo {
  font-family: "NewSpirit";
  font-size: 5.5rem;
  line-height: 5.1rem;
  letter-spacing: 0;
  position: relative;
}
.homepage__galeria2 .homepage__galeria2-diapo span {
  position: absolute;
  bottom: 0px;
  left: 0px;
  opacity: 0;
  -moz-transition: var(--aniMenu);
  -ms-transition: var(--aniMenu);
  -o-transition: var(--aniMenu);
  transition: var(--aniMenu);
  transition-duration: 0.6s;
}
.homepage__galeria2 .homepage__galeria2-diapo:hover span {
  opacity: 1;
}
.homepage__galeria2 .homepage__galeria2-diapo:hover img {
  opacity: 0;
}

.homepage__txt-5 {
  padding-left: 30rem;
  letter-spacing: 0;
}

footer {
  padding: 6rem;
  background-color: var(--colorPrimary);
  color: var(--colorWhite);
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
footer a {
  color: var(--colorWhite);
  text-decoration: none;
}
footer > div:first-child {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 5rem;
}
footer .menu-footer {
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-family: "ITCFranklinGothicStd";
  font-size: 3.8rem;
  line-height: 100%;
}
footer .menu-footer a:hover {
  text-decoration: underline;
}

footer .footer__rs a,
footer .footer__rs {
  font-family: "NewSpirit";
  font-size: 2.8rem;
  text-decoration: none;
  font-weight: normal;
}
footer .footer__rs a:hover {
  text-decoration: underline;
}
footer .footer__logo img {
  width: 66rem;
}
footer > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer > div:last-child > div:first-child {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  color: #808080;
}
footer > div:last-child > div:last-child {
  display: flex;
  gap: 9rem;
  justify-content: space-between;
}
.menu-footer-legal {
  list-style: none;
  margin: 0;
  padding: 0px;
}
.menu-footer-legal a {
  color: #808080;
}
.menu-footer-legal a:hover {
  text-decoration: underline;
}
.footer__logos {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.footer__logos img {
  height: 10rem;
  width: auto;
}
.footer__logos img:last-child{
  height: 7rem;
}

.pageform {
  padding: 20rem 6rem 10rem;
}
.pageform .wpcf7 {
  width: 94rem;
  margin: 0px auto;
}
.form__title {
  font-family: "ITCFranklinGothicStd";
  font-size: 6rem;
  line-height: 90%;
  margin: 0px;
  letter-spacing: 0;
  font-weight: normal;
}
.form__title p {
  margin: 0;
}

.pageform textarea,
.pageform input[type="text"],
.pageform input[type="email"],
.pageform input[type="tel"] {
  padding: 1rem 0px;
  border-left: 0px;
  border-right: 0px;
}
.pageform textarea::placeholder,
.pageform input[type="text"]::placeholder,
.pageform input[type="email"]::placeholder,
.pageform input[type="tel"]::placeholder {
  color: #808080;
}
.pageform textarea {
  height: 16rem;
}

.form__datos {
  margin-top: 10rem;
}
.form__datos .form__line input {
  border-bottom: 0px;
  padding: 2rem 0px;
}
.form__datos .form__line .wpcf7-form-control-wrap:last-child input {
  border-bottom: 0.2rem solid var(--colorPrimary);
}
.wpcf7-checkbox {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0px;
  border-top: 0.2rem solid var(--colorPrimary);
  border-bottom: 0.2rem solid var(--colorPrimary);
}
.wpcf7-list-item input {
  margin: 0.3rem 0.6rem 0px 0px;
  float: left;
}
.wpcf7-list-item {
  margin: 0px;
}

.modal.modal-destinos .modal__content {
  width: 186rem;
  background-color: var(--colorWhite);
  padding: 4rem 6rem;
}

.destinos .destino {
  text-align: center;
}
.destinos .destino img {
  width: 45rem;
  height: 45rem;
  object-fit: cover;
  margin: 0px auto 3rem;
}
.destino__title {
  font-family: "NewSpirit";
  font-size: 8rem;
  line-height: 100%;
  letter-spacing: 0;
  font-weight: normal;
  margin: 0px 0px 2rem;
}

.modal-destinos .modal__title {
  font-family: "NewSpirit";
  font-weight: normal;
  font-size: 2.8rem;
  text-align: center;
  max-width: 30rem;
  margin: 0px auto 4rem;
  line-height: 100%;
}
.modal__bottom-destinos {
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  display: flex;
  flex-wrap: wrap;
  margin: 10rem auto 0rem;
}
.modal__bottom-destinos a {
  font-family: "ITCFranklinGothicStd";
  color: #808080;
  font-size: 4rem;
  text-transform: uppercase;
  display: block;
  line-height: 100%;
  text-decoration: none;
}
.modal__bottom-destinos a:hover {
  text-decoration: underline;
}

.slick-arrow {
  position: absolute;
  top: 24rem;
  z-index: 9;
  background-image: url(images/arrow-left.svg);
  background-size: 75%;
  height: 4rem;
  background-color: transparent;
  border: 0px;
  cursor: pointer;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 0px;
  width: 3rem;
  left: -3rem;
}
.slick-next {
  right: -3rem;
  left: auto;
  background-image: url(images/arrow-right.svg);
}
.page404 {
  width: 100%;
  background-color: var(--colorVerde);
  height: calc(100vh);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 8rem;
}
.page404 .page404__error {
  font-family: "ITCFranklinGothicStd";
  font-size: 26rem;
  line-height: 80%;
  margin: 0px;
  letter-spacing: 0;
  font-weight: normal;
  max-width: 58rem;
}
.page__container {
  padding: 14.7rem 2.2rem 10rem;
}
.page__container h1 {
  text-align: center;
  margin: 0px 0px 3rem;
  font-family: "ITCFranklinGothicStd";
  font-size: 14rem;
  line-height: 120%;
  letter-spacing: -0.3rem;
  font-weight: normal;
  text-transform: uppercase;
}

.page__cols {
  display: flex;
  gap: 2.2rem;
}
.page__cols > div {
  width: calc(25% - 1.65rem);
}

.pagedestinos {
  background-color: var(--colorWhite);
  padding: 12.5rem 6rem 10rem 6rem;
}
.pagedestinos__title {
  font-family: "NewSpirit";
  max-width: 30rem;
  margin: 0px auto 6rem;
  text-align: center;
  font-weight: normal;
  line-height: 100%;
  font-size: 2.8rem;
}
.pagedestinos__contenido {
  max-width: 170rem;
  margin: auto;
}

.home_des {
  margin: 0px;
}
.home_des a {
  margin: 0px !important;
  display: block !important;
  position: relative !important;
}
.home_des a > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  background: rgb(153 153 153 / 80%);
  color: var(--colorWhite);
  opacity: 0;
  -moz-transition: var(--aniMenu);
  -ms-transition: var(--aniMenu);
  -o-transition: var(--aniMenu);
  transition: var(--aniMenu);
}
.home_des a:hover > div {
  opacity: 1;
}
.home_des__title {
  font-size: 7rem;
  font-family: "NewSpirit";
  letter-spacing: 0;
  line-height: 100%;
  text-align: center;
  font-weight: normal;
  gap: 2rem;
}
.home_des__desc {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 110%;
  text-align: center;
  font-weight: normal;
  font-family: "SuisseIntl-Book";
  max-width: 60%;
}

/*////////////////////////////////////////////////*/
/*///////////////////// RESPONSIVE //////////////////////*/
/*////////////////////////////////////////////////*/
@media screen and (min-width: 2120px) {
}
@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1140px) {
}

@media screen and (max-width: 992px) {
  html {
    font-size: 1vw;
  }
  footer {
    flex-wrap: wrap;
    gap: 7rem;
  }
  footer > div:last-child > div:first-child {
    margin-bottom: 5rem;
  }
  .pageform .wpcf7 {
    width: 100%;
    margin: 0px auto;
  }

  .pagetesti__desc {
    position: relative;
    left: 0;
    width: 100%;
    font-size: 2rem;
    line-height: 120%;
    text-align: center;
    margin-bottom: 5rem;
    margin-left: 0;
  }
  .page__container h1,
  .pagetesti h1 {
    text-align: center;
    margin: 0px 0px 4rem;
    font-family: "ITCFranklinGothicStd";
    font-size: 10rem;
    line-height: 100%;
    letter-spacing: -0.3rem;
  }
  .pagetesti__list > div:nth-child(4n + 3),
  .pagetesti__list > div:nth-child(4n + 4) {
    margin-top: 0rem;
  }
  .modal.modal-ongs .modal__content,
  .modal .modal__content {
    width: 94rem;
  }
  .modal-ongs .modal__conte {
    margin: 0px auto 6rem;
  }
  .page__cols {
    flex-wrap: wrap;
  }
  .page__cols > div {
    width: calc(50% - 1.1rem);
  }
  .home__travel,
  .home__inicia {
    height: 12.5rem;
  }
  .home__video1 video,
  .home__video1 {
    height: 7rem;
    line-height: 0rem;
  }
  .home__video1 {
    left: 34rem;
  }
  .homepage__txt {
    font-size: 15.5rem;
  }
  .homepage__txt-1 {
    width: 100%;
    display: flex;
    margin-bottom: 0rem;
  }
  .homepage__galeria1 {
    position: relative;
    width: 20rem;
    display: inline-block;
    height: 10rem;
  }
  .homepage__galeria1 .slick-slide {
    width: 20rem;
    height: 10rem;
  }
  .homepage__galeria1 img {
    width: 20rem;
    height: 10rem;
  }
  .homepage__testimonios {
    width: 35rem;
    display: inline-block;
    margin: 2.5rem 0px 0px 8rem;
    font-size: 3.4rem;
    line-height: 100%;
    position: absolute;
    letter-spacing: 0;
  }
  .homepage__galeria2 .homepage__galeria2-diapo img,
  .homepage__galeria1 img {
    width: 25rem;
    height: 11rem;
  }
  .homepage__galeria3 {
    width: 25rem;
    height: 10.5rem;
    top: -1rem;
  }
  .homepage__galeria2 {
    top: -1rem;
  }
  .homepage__galeria3 img {
    width: 25rem;
    height: 10.5rem;
    object-fit: cover;
  }
  .homepage__txt-6 a {
    text-decoration: none;
    margin-left: 30rem;
  }
  .homepage__galeria2 .homepage__galeria2-diapo {
    font-family: "NewSpirit";
    font-size: 3rem;
  }
  .homepage__txt-6 a.hover::before,
  .homepage__txt-5 a.hover::before,
  .homepage__txt-4 a.hover::before,
  .homepage__txt-3 span.hover::before,
  .homepage__txt-1.hover::before {
    display: none;
  }
  body.home header {
    top: 0;
  }

  .home__video1.active video {
    width: 91rem;
    height: 50rem;
    margin: 0px;
  }
  .home__video1.active {
    width: 91rem;
    height: 50rem;
    left: 0;
  }
  .homepage {
    padding: 12rem 4rem 7rem 4rem;
  }

  .destinos .destino img {
    width: 25rem;
    height: 25rem;
  }
  .modal.modal-destinos .modal__content {
    width: 90rem;
  }
  .destino__title {
    font-size: 6rem;
  }
  .homepage__testimonio {
    left: 0;
  }
    .home_des a > div {
    display: none !important
  }
}

@media screen and (max-width: 600px) {
  html {
    font-size: 1.5vw;
  }
  footer > div:last-child > div:last-child {
    flex-wrap: wrap;
  }
  footer .footer__logo img {
    width: 55rem;
  }
  .menu-header li a {
    font-size: 9rem;
    line-height: 90%;
    letter-spacing: -0rem;
  }
  .menu__bottom {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: baseline;
    gap: 2rem;
  }
  .footer__logos img {
    height: 7rem;
    width: auto;
  }
  .pageform {
    padding: 14rem 4rem 6rem;
  }
  header {
    padding: 2.3rem 4rem;
  }
  footer {
    padding: 8rem 4rem;
  }
  .pagetesti__list > div {
    width: 100%;
  }
  .testimonio img {
    display: block;
    width: 100%;
    height: 50rem;
  }
  .testimonio {
    height: auto;
  }
  .pagetesti {
    padding: 14.7rem 4rem;
  }
  .modal.modal-ongs .modal__content,
  .modal .modal__content {
    width: 62rem;
  }
  .modal-nosotros .modal__title {
    display: block;
    width: 19rem;
    height: 11rem;
    font-family: "NewSpirit";
    font-size: 2.8rem;
    line-height: 100%;
    letter-spacing: -0rem;
    float: left;
  }
  .modal-nosotros .modal__txt {
    font-size: 5rem;
    line-height: 100%;
    font-weight: normal;
  }
  .modal__ongs > div {
    width: 22.8rem;
  }
  .ong .ong__desc {
    text-align: center;
    width: 100%;
  }
  .modal-ongs .modal__conte {
    margin: 0px auto 6rem;
    font-size: 2.2rem;
    line-height: 110%;
  }
  .modal-ongs .modal__title {
    font-size: 10rem;
  }
  .page404 .page404__error {
    font-size: 18rem;
  }
  .page__cols > div {
    width: 100%;
  }

  .homepage__txt {
    font-size: 11rem;
    font-weight: normal;
    letter-spacing: -2px;
  }
  .home__video1 {
    left: 20rem;
  }

  .homepage__testimonio {
    left: -5rem;
  }
  .homepage__txt-2 {
    margin: 0px 0px 1rem 0px;
  }
  .homepage__testimonios {
    width: 24rem;
    display: inline-block;
    margin: 1rem 0px 0px 5rem;
    font-size: 2.4rem;
    line-height: 100%;
    position: absolute;
    letter-spacing: 0;
  }
  .homepage__testimonio img {
    width: 30rem;
    height: 30rem;
    object-fit: cover;
    margin-bottom: 2rem;
  }
  .homepage__testimonio a {
    width: 39rem;
  }
  .homepage__galeria2 .homepage__galeria2-diapo img,
  .homepage__galeria1 img {
    width: 12rem;
    height: 8rem;
  }
  .homepage__galeria3 {
    width: 12rem;
    height: 10rem;
    top: -1rem;
  }
  .homepage__galeria3 .slick-slide {
    width: 12rem;
    height: 10rem;
  }
  .homepage__txt-5 {
    padding-left: 14rem;
  }
  .modal.modal-destinos .modal__content {
    width: 52rem;
  }
  .home__video1 {
    left: 21rem;
    margin: 3rem 0px 0px 0px;
  }
  .homepage__galeria1 .slick-slide {
    height: 7rem;
  }
  .homepage__txt-6 a {
    text-decoration: underline;
    margin-left: 17rem;
  }
  .homepage__testimonio {
    left: -11rem;
  }
  .hover {
    text-decoration: underline;
  }
  .homepage__txt {
    line-height: 90%;
    margin-bottom: 1rem;
  }
  .homepage__galeria3 img {
    height: 8rem;
  }
  .homepage__galeria1 .slick-slide {
    height: 8rem;
  }
  .homepage {
    padding: 14rem 4rem 7rem 4rem;
  }
  .homepage__txt-1 {
    height: 11.5rem;
    border-bottom: 1rem solid #000;
    margin-bottom: 3rem;
  }
  .home__video1.active {
    width: 60rem;
    height: 52rem;
  }
  .home__video1.active video {
    width: 60rem;
    height: 45rem;
    text-align: center;
  }
  .btn_clse_video {
    display: block;
    padding: 0px;
    width: 4rem;
    position: absolute;
    background-color: var(--colorWhite);
    border-radius: 100px;
    border: 0px;
    margin: 1.5rem 2rem 1rem;
  }
  .btn_clse_video svg {
    width: 4rem;
  }
  .pagedestinos__title {
    max-width: 30rem;
    margin: 0px auto 4rem;
    text-align: center;
    font-weight: normal;
    line-height: 100%;
    font-size: 3rem;
  }

}
