:root {
  --primary-font: "Cabin", sans-serif;
  --secondary-font: "Neucha", cursive;
  --base-size-font: 16px;

  --primary-color: #262626;
  --secondary-color: #bdd144;
  --tertiary-color: #26a63b;
  --quaternary-color: #54391e;
  --quinary-color: #189447;
  --bg-color: #efefef;

  --transition: all 0.4s ease;
  --box-shadow: 1px 9px 27px -3px rgba(0, 0, 0, 0.55);
  --border-radius: 1rem;

  --title: 2rem;
  --title-mobile: 2.5rem;
  --text-content-size: 1rem; /* Párrafos, textos de contenido */
}
@media screen and (min-width: 580px) {
  :root {
    --title: 2.6rem;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

body {
  font: 400 var(--base-size-font) var(--primary-font);
  line-height: 1.5;
  margin: 0;
  color: var(--primary-color);
}

html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
p {
  font-size: var(--text-content-size);
  margin-bottom: 20px;
  line-height: 1.5;
  color: var(--primary-color);
}
.title {
  margin-bottom: 40px;
  text-transform: uppercase;
}
.title h1,
.title h2,
.title h3,
.title h4 {
  font: 700 var(--title) var(--primary-font);
  line-height: 1.1;
  position: relative;
}
.title h1 strong,
.title h2 strong,
.title h3 strong,
.title h4 strong {
  font: 400 var(--title) var(--secondary-font);
  color: var(--secondary-color);
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.d-flex {
  display: flex;
}

/* --- Container --- */

.container {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 0 1.5rem;
  max-width: 1200px;
  z-index: 1;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .container {
    width: 100%;
    padding: 0;
  }
}
@media screen and (min-width: 1280px) {
}

/* --- General --- */

.btn {
    position: relative;
    cursor: pointer;
    font-size: var(--text-content-size);
    transition: var(--transition);
    padding: 3px 40px 3px 15px;
    width: fit-content;
    display: flex;
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    align-items: center;
    min-height: 32px;
    overflow: hidden;
    min-width: 125px;
    max-width: 400px;
    z-index: 9;
}
.-big {
  width: 100%;
}
.btn.-color {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  width: 25px;
  height: 20px;
  background-image: url(../images/arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: var(--transition);
  transform: translateY(-50%);
  z-index: 9;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  transition: all 1s ease;
  transform: translateY(-50%) scale(0);
  z-index: -1;
  border-radius: 999px;
}
.btn:hover {
  border: 1px solid var(--secondary-color);
}
.btn:hover::after {
  transform: translateY(-50%) scale(55);
}

section {
  padding: 80px 0;
  overflow-x: clip;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*	HEADER
*	=======================================================================================================
**/
header {
  position: fixed;
  z-index: 999;
  width: 100%;
  left: 0;
  top: 10px;
  transition: var(--transition);
}
header.activeFixed {
  top: 8px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  header {
    top: 0;
    box-shadow: none;
  }
  header.activeFixed {
    top: -32px;
  }
}
@media screen and (min-width: 1280px) {
}

/** HEADER TOP	============== **/
.header-top {
  color: var(--bg-color);
  display: none;
}
.topbar__wrapper {
  min-height: 40px;
  padding: 5px 30px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__redes {
  gap: 15px;
  justify-content: flex-end;
}
.header__redes > a {
  width: 17px;
  height: 17px;
  display: flex;
}
.header__datos {
  gap: 30px;
}
.header__datos > a,
.header__datos .wapp{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.header__datos > a > img,
.header__datos .wapp > img{
  width: 17px;
  height: 17px;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header-top {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/** HEADER MIDDLE	============== **/
.header-middle .container {
  padding: 0 0.5rem;
}
.header-middle__wrapper {
  justify-content: space-between;
  height: 75px;
  align-items: center;
  background-color: #fff;
  border-radius: 150px;
  padding: 0 0 0 20px;
  box-shadow: var(--box-shadow);
}
.logo-content {
  flex-direction: column;
}
.logo {
  width: 156px;
}
.item-header .menu {
  display: none;
  align-items: center;
  gap: 40px;
  height: 100%;
}
.item-header.header__menu {
  background-color: transparent;
  height: 100%;
  padding: 0;
  border-radius: 150px;
  gap: 10px;
  align-items: center;
}
.item-header .menu li {
  position: relative;
}
.item-header .menu li > a {
  padding: 10px 0 10px 15px;
  transition: var(--transition);
  position: relative;
  display: flex;
}
.item-header .menu li.current-menu-item > a {
  color: var(--quaternary-color);
}
.item-header .menu li::before {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  border-radius: 50px;
  background-color: var(--tertiary-color);
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0);
  transition: var(--transition);
}
.item-header .menu li:hover::before,
.item-header .menu li.current-menu-item::before {
  transform: translateY(-50%) scale(1);
}
.header_cart {
  justify-content: center;
  align-items: center;
  background-color: var(--tertiary-color);
  width: 80px;
  border-radius: 0 150px 150px 0;
  height: 100%;
	cursor: pointer;
}
.header_cart img {
  width: 22px;
  height: 22px;
}

@media screen and (min-width: 580px) {
  .header_cart {
    width: 95px;
  }
  .item-header.header__menu {
    gap: 35px;
  }
	
}
@media screen and (min-width: 980px) {
	.header-middle .container {
  padding: 0;
}
  .header-middle__wrapper {
    padding: 0 0 0 40px;
  }
  .item-header .menu {
    display: flex;
  }
  .item-header.header__menu {
        background-color: var(--secondary-color);
        height: 100%;
        padding: 0 0 0 80px;
        border-radius: 150px;
        gap: 80px;
        align-items: center;
    }
}
@media screen and (min-width: 1280px) {
}


/** SUBMENÚS ==================================================== **/

.item-header .menu li ul.sub-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s 
ease;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 270px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    z-index: 999;
}
/* Mostrar submenu al hacer hover */
.item-header .menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Items del submenu */
.item-header .menu li ul.sub-menu li {
  width: 100%;
  padding: 0;
}


/* Enlaces del submenu */
.item-header .menu li ul.sub-menu li > a {
  padding: 10px 20px;
  display: block;
  font-size: 15px;
  color: var(--primary-color);
  transition: var(--transition);
}

/* Hover submenu */
.item-header .menu li ul.sub-menu li > a:hover {
  background-color: var(--tertiary-color);
  color: #fff;
  padding-left: 25px;
}

/* Evitar el círculo (::before) en submenus */
.item-header .menu li ul.sub-menu li::before {
  display: none;
}

/**
*	SIDEBAR MENU
*	=======================================================================================================
**/
.header__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.header__toggle img {
  width: 100%;
}
.sidebarIconToggle {
  box-sizing: border-box;
  cursor: pointer;
  z-index: 99;
  top: 22px;
  left: 15px;
  height: 21px;
  width: 22px;
  margin-bottom: 0;
}
.spinner {
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
}
.horizontal {
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 5px;
}
.diagonal.part-1 {
  position: relative;
  box-sizing: border-box;
  float: left;
}
.diagonal.part-2 {
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 5px;
}
#overlay {
  width: 100%;
  height: 100vh;
  background-color: var(--primary-color);
  opacity: 0;
  position: fixed;
  transition: var(--transition);
  top: 0;
  z-index: 99999;
  visibility: hidden;
}
#overlay.active {
  opacity: 0.7;
  visibility: visible;
}
#sidebar {
    height: 100vh;
    width: 90%;
    max-width: 1120px;
    background-color: #fff;
    padding-top: 75px;
    position: fixed;
    overflow: hidden;
    transition: right 0.5s 
ease;
    right: -100%;
    top: 0;
    z-index: 999999;
}
#sidebar.active {
  right: 0;
}
#sidebar .container {
  height: 100%;
}
#sidebar .logo {
  width: 100%;
  max-width: 220px;
}
#sidebar .menu-sidebar
#sidebar .menu-sidebar li {
  position: relative;
}
#sidebar .menu-sidebar li a {
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: flex;
    transition: var(--transition);
    position: relative;
    justify-content: flex-start;
    text-align: left;
    font-family: var(--primary-font);
    padding: 6px 15px 6px 0;
}
#sidebar .menu-sidebar li:hover > a {
  padding: 6px 0 6px 15px;
}
#sidebar .menu-sidebar {
/*   padding-bottom: 40px; */
  margin-bottom: 0;
}
.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 10px;
  align-items: center;
}
.sidebar-wrapper .row {
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.sidebar-wrapper .col-50 {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.content-sidebar {
  padding: 40px 0;
  align-items: start;
  width: max-content;
  position: relative;
}
.content-sidebar .datos:nth-child(1) {
  padding-left: 0;
}
.redes-img {
  gap: 15px;
  justify-content: center;
}
.redes-img a {
  width: 35px;
  height: 35px;
  display: flex;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header__toggle {
    display: none;
  }
  #sidebar {
    width: 80%;
  }
  .sidebar-wrapper {
    padding: 0;
  }
  .sidebar-wrapper .row {
    flex-direction: row;
  }
  .sidebar-wrapper .col-50 {
    width: 50%;
  }
  .content-sidebar {
    align-items: end;
    gap: 0;
  }
  .content-sidebar .datos:nth-child(2) {
    border-right: 1px solid #fff;
  }
}
@media screen and (min-width: 1280px) {
}

#close-btn {
  position: absolute;
  padding: 10px;
  top: -60px;
  right: 35px;
  background: transparent;
}
#close-btn img {
  width: 18px;
}

/**
*	FOOTER
*	=======================================================================================================
**/
footer {
  position: relative;
  overflow-x: clip;
}
.jungle-footer {
  max-width: 441px;
  height: 225px;
  position: absolute;
  bottom: 0;
  right: 0;
  object-fit: contain;
  object-position: right bottom;
  z-index: 9;
  width: 100%;
  display: none;
}
.footer__top {
  height: 40px;
  background-color: var(--bg-color);
}
.footer__main {
  position: relative;
}
.footer__main::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 215px;
  background-image: url(../images/footer-jungle.svg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: left top;
  top: -204px;
  right: 0;
  z-index: 0;
  display: none;
}
.footer__wrapper {
  flex-direction: column;
  margin: 0;
}
.footer__content {
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 100px 0 0 0;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.footer__content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  right: -100%;
  top: 0;
}
.footer__logo {
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 30px 0 80px;
}
.footer__logo img {
  max-width: 232px;
  width: 100%;
}
.copyright {
  min-height: 70px;
  padding: 30px 0;
  background-color: #161616;
  color: #fff;
  align-items: center;
  gap: 5px;
  position: relative;
  flex-direction: column;
}
.copyright::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #161616;
  right: -100%;
  top: 0;
  z-index: 99999;
}
.omelet {
  gap: 5px;
  align-items: center;
}
.omelet img {
  width: 59px;
}
.footer-content__top {
  padding: 60px 0 40px 0;
  color: #fff;
  justify-content: space-between;
  flex-direction: column;
  gap: 50px;
  text-align: center;
  align-items: center;
  position: relative;
}
.footer-content__top::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 72px;
  background-image: url(../images/footer-jungle.svg);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: left bottom;
  top: -67px;
  right: 0;
  z-index: 0;
}
.footer-content__top h3 {
  color: var(--secondary-color);
}
.libro-de-reclamaciones {
  align-items: center;
  height: 100%;
}
.libro-de-reclamaciones img {
  width: 193px;
}
@media screen and (min-width: 580px) {
  .footer__wrapper {
    flex-direction: row;
    margin: -40px 0 0;
  }
  .footer__content {
    width: 80%;
  }
  .footer__logo {
    width: 20%;
    padding: 57px 0 17px;
  }
  .footer__top {
    height: 160px;
  }
  .footer-content__top {
    flex-direction: row;
    padding: 60px 0 40px 60px;
    color: #fff;
    justify-content: space-between;
    gap: 0;
    text-align: left;
    align-items: flex-start;
  }
  .copyright {
    padding: 20px 0 20px 100px;
    flex-direction: row;
  }
  .footer-content__top::before {
    width: 86%;
    height: 80px;
    top: -75px;
  }
}
@media screen and (min-width: 980px) {
  .footer-content__top {
    padding: 60px 0 40px 100px;
  }
  .footer__main::after {
    display: flex;
    background-position: left bottom;
  }
  .footer-content__top::before {
    display: none;
  }
  .jungle-footer {
    display: flex;
  }
  .footer__top {
    height: 220px;
  }
}
@media screen and (min-width: 1280px) {
}

/** FOOTER MIDDLE	============== **/
.footer-content__middle {
  padding: 28px 0 50px;
  color: #fff;
  gap: 30px;
  align-items: center;
  flex-direction: column;
}
.footer-content__middle span {
  display: none;
}
.redes-footer {
  gap: 15px;
  align-items: center;
}
.redes-footer a {
  width: 17px;
  height: 17px;
  display: flex;
}
.cards {
  height: 22px;
}
@media screen and (min-width: 580px) {
  .footer-content__middle {
    padding: 28px 0 28px 60px;
    flex-direction: row;
  }
  .footer-content__middle span {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
  .footer-content__middle {
    padding: 28px 100px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	HOME
*	=======================================================================================================
**/

/** HOME - WELCOME	============== **/
#welcome {
  padding: 0;
  position: relative;
}
#welcome-buttons {
  position: absolute;
  z-index: 20;
  bottom: 25px;
  left: 0;
  width: 100%;
}
#welcome-buttons .welcome__buttons {
  gap: 8px;
}
#welcome-buttons .welcome__buttons button {
  width: 36px;
  height: 36px;
}
.welcome-semi-circle {
  position: absolute;
  width: 297px;
  height: 84px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 13;
}
.welcome-semi-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%; /* Cambia top a 0 para animar desde arriba */
  width: 1px;
  height: 0;
  background-color: var(--quinary-color);
  z-index: 9;
  animation: verticalLineAnim 2s linear infinite;
}

@keyframes verticalLineAnim {
  0% {
    height: 0;
    opacity: 1;
  }
  40% {
    height: 100%;
    opacity: 1;
  }
  60% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 1;
  }
}
.bg-welcome {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.bg-welcome .opacity-55 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 0.55;
  z-index: 1;
}
.bg-welcome .opacity-gradient {
  position: absolute;
  width: 100%;
  height: 130px;
  top: 0;
  left: 0;
  z-index: 2;
  background: #262626;
  background: linear-gradient(
    180deg,
    rgba(38, 38, 38, 0.86) 0%,
    rgba(38, 38, 38, 0) 100%
  );
}
#welcome .slick-dots {
  bottom: 10px;
}
#welcome .slick-dots li button:before {
  font-size: 18px;
  opacity: 1;
  color: #ffffff;
}
#welcome .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--secondary-color);
}
#welcome .slick-dots li {
  margin: 2px;
}
#welcome .slick-dotted.slick-slider {
  margin-bottom: 0;
  overflow: hidden;
}
.slider-welcome__item {
  height: 80vh;
  position: relative;
}
.slider-welcome__item img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.welcome-item__txt {
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
}
.welcome-item-txt__wrapper {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;
  text-align: center;
  max-width: 690px;
  margin: 0 auto;
  padding-top: 60px;
}
.welcome-item-txt__wrapper h1,
.welcome-item-txt__wrapper h2{
  font-family: var(--secondary-font);
  color: #fff;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 20px;
}
.welcome-item-txt__wrapper h1 strong,
.welcome-item-txt__wrapper h2 strong{
  font-weight: 400;
  color: var(--secondary-color);
}
.welcome-item-txt__wrapper p {
  color: #fff;
  width: 100%;
}
.welcome-item-txt__wrapper .btn {
  background-color: #fff;
  margin-top: 43px;
}

@media screen and (min-width: 580px) {
  .welcome-item-txt__wrapper h1,
	.welcome-item-txt__wrapper h2{
    font-size: 3.3rem;
    margin-bottom: 40px;
  }
  .welcome-item-txt__wrapper p {
    width: 75%;
  }
}
@media screen and (min-width: 980px) {
  .slider-welcome__item {
    height: 100vh;
  }
  .welcome-item-txt__wrapper {
    height: 100vh;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - PRESENTACIÓN	============== **/
#pres-home {
  padding: 50px 0 108px;
  background-image: url(../images/bg-nos-home.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right center;
  position: relative;
  z-index: 10;
  scroll-margin-top: 50px;
}
.pres-home__wrapper {
  flex-direction: column;
  gap: 65px;
}
.pres-home__content {
  width: 100%;
  flex-direction: column;
  padding: 40px 0 0;
  text-align: center;
  align-items: center;
}
.pres-home__imgs {
  width: 100%;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  padding-bottom: 50px;
}
.pres-home-content__footer {
  margin-top: 20px;
  flex-direction: column;
  gap: 13px;
}
.pres-home-content__footer .btn {
    max-width: 430px;
}
.pres-home-content__footer .btn:hover::after {
    transform: translateY(-50%) scale(85);
}
.pres-home__map {
  width: 100%;
  max-width: 565px;
  position: relative;
  z-index: -1;
}
.pres-home__map::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 150px;
  background-color: var(--tertiary-color);
  right: 13%;
  top: 20%;
  z-index: -1;
}
.pres-home__img {
  width: 340px;
  height: 450px;
  position: absolute;
  bottom: -145px;
  left: 10px;
  display: none;
}
.pres-home__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: var(--box-shadow);
  left: 0;
  top: 0;
  border-radius: var(--border-radius);
  z-index: -1;
}
.pres-home__img::before {
  content: "";
  position: absolute;
  width: 131px;
  height: 131px;
  border-radius: 150px;
  background-color: var(--secondary-color);
  left: -40px;
  top: -73px;
  z-index: -1;
}
.pres-home__img img {
  overflow: hidden;
  border-radius: var(--border-radius);
}
.pres-home__txt {
    background-color: var(--tertiary-color);
    color: #fff;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: 11;
    width: 100%;
    transform: translateX(50%);
    max-width: 100%;
    text-align: center;
}

.pres-home__txt p{
	color: #fff;
}
.pres-home__txt p:last-child{
	margin-bottom: 0;
}
@media screen and (min-width: 580px) {
  .pres-home__content {
    padding: 80px 0 0;
    text-align: left;
    align-items: flex-start;
  }
  .pres-home__img {
    display: flex;
    padding-bottom: 0;
  }
  .pres-home__txt {
    right: 0px;
    transform: translateX(0);
  bottom: 0;
  z-index: 11;
  max-width: 385px;
    text-align: left;
}
}
@media screen and (min-width: 980px) {
  .pres-home__wrapper {
    flex-direction: row;
    background-size: 638px;
  }
  .pres-home__content {
    width: 40%;
  }
  .pres-home__imgs {
    width: 60%;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - EXPERIENCIAS DESTACADAS	============== **/
#experiences {
  padding: 145px 0 110px;
  background: linear-gradient(
    to bottom,
    var(--bg-color) 0%,
    var(--bg-color) 60%,
    #fff 60%,
    #fff 100%
  );
}
#experiences .title {
  margin-bottom: 0;
  text-align: center;
}
.experiences__header {
  justify-content: center;
  margin-bottom: 35px;
}
.experiences__header-btns {
  align-items: center;
  gap: 20px;
  display: none;
}
.experiences__buttons {
  gap: 8px;
}
.experiences__buttons button {
  width: 36px;
  height: 36px;
}
.tabs {
  width: 100%;
}
.tabs__buttons {
  margin-bottom: 40px;
  flex-direction: column;
  align-items: center;
}
.tab-btn {
  padding: 10px 20px 10px 15px;
  cursor: pointer;
  margin-right: 10px;
  z-index: 1;
  position: relative;
  color: #877575;
  transition: var(--transition);
  text-align: left;
}
.tab-btn::before {
  content: "";
  position: absolute;
  width: 27px;
  height: 27px;
  border-radius: 50px;
  background-color: var(--secondary-color);
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0);
  transition: var(--transition);
  z-index: -1;
}
.tab-btn.active {
  color: var(--primary-color);
}
.tab-btn.active::before {
  transform: translateY(-50%) scale(1);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.experiences-item {
  display: flex !important;
  flex-direction: column;
  margin: 0 5px;
  gap: 10px;
}
.experiences-item h3 {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}
.experiences-item__img {
  width: 100%;
  aspect-ratio: 6 / 7;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.experiences-item__img.square-img{
	aspect-ratio: 1 / 1;
}
.experiences-item__datos {
  gap: 20px;
}
.experiences-item__datos > div {
  align-items: center;
  gap: 8px;
}
.experiences-item__datos img {
  width: 16px;
  height: 16px;
}
@media screen and (min-width: 580px) {
  #experiences .title {
    text-align: left;
  }
  .experiences__header {
    justify-content: space-between;
  }
  .experiences-item {
    margin: 0 10px;
  }
  .tabs__buttons {
    margin-bottom: 50px;
    flex-direction: row;
    align-items: flex-start;
  }
  .experiences__header-btns {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** HOME - TESTIMONIOS	============== **/
#testimonials .circle-1 {
  position: absolute;
  width: 131px;
  height: 131px;
  border-radius: 150px;
  background-color: var(--tertiary-color);
  top: -50px;
  right: -27px;
}
#testimonials {
  position: relative;
  padding: 0;
  z-index: 10;
}
#testimonials .title {
  text-align: center;
}
#testimonials .opacity-60 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 0.6;
  z-index: 0;
}
#testimonials .opacity-gradient {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background: #262626;
  background: linear-gradient(
    90deg,
    rgba(38, 38, 38, 0.86) 0%,
    rgba(38, 38, 38, 0) 100%
  );
  z-index: 1;
}
.bg-testimonials {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}
.testimonials__wrapper {
  flex-direction: column;
  padding: 140px 0;
  gap: 40px;
}
.testimonials__content {
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.testimonials__content h2 {
  color: #fff;
}
.testimonials__content p {
  color: #fff;
}
#testimonials-carousel {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.testimonials__item {
  border: 1px solid #fff;
  border-radius: var(--border-radius);
  padding: 60px 25px 25px;
  margin: 20px 5px 0;
  position: relative;
}
.testimonials__item p {
  color: #fff;
  font-size: 0.95rem;
}
.testimonials__item p:last-of-type{
	margin-bottom: 0;
}
.testimonials__item h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: 700;
}
.testimonials__item::before {
  content: "";
  position: absolute;
  width: 73px;
  height: 58px;
  background-image: url(../images/comillas.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: -20px;
  left: 30px;
}
.testimonials__buttons {
  gap: 8px;
  margin-top: 20px;
}
.testimonials__buttons button {
  width: 36px;
  height: 36px;
}

@media screen and (min-width: 580px) {
  .testimonials__wrapper {
    flex-direction: row;
    gap: 40px;
  }
  .testimonials__content {
    width: 50%;
    align-items: flex-start;
    text-align: left;
  }
  #testimonials-carousel {
    width: 50%;
  }
  .testimonials__item {
    margin: 20px 20px 0;
    padding: 60px 30px 35px;
  }
  #testimonials .title {
    text-align: left;
  }
}
@media screen and (min-width: 980px) {
  .testimonials__wrapper {
    height: 80vh;
    gap: 65px;
  }
  .testimonials__content {
    width: 33%;
  }
  #testimonials-carousel {
    width: 67%;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - ÚLTIMOS ARTÍCULOS	============== **/
#lastblog {
  background-image: url(../images/bg-blog-home.svg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
  padding: 120px 0 130px;
  position: relative;
}
#lastblog .circle-1 {
  position: absolute;
  width: 131px;
  height: 131px;
  border-radius: 150px;
  background-color: var(--secondary-color);
  top: -50px;
  left: 50px;
}
#lastblog .title {
  margin-bottom: 50px;
  text-align: center;
}
.lastblog__wrapper {
  flex-direction: column;
  gap: 85px;
  align-items: center;
}
.lastblog-col-img {
  width: 100%;
  position: relative;
}
.lastblog__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    object-fit: cover;
    height: 100%;
}
.lastblog__content {
  width: 100%;
}
.lastblog__item {
  padding: 20px 20px 20px 0;
  min-height: 160px;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--primary-color);
  position: relative;
  transition: var(--transition);
}
.lastblog__item::before {
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--secondary-color);
  position: absolute;
  z-index: -1;
  transition: var(--transition);
  top: 0;
  left: 0;
}
.lastblog__item:hover {
  padding: 20px 20px 20px 40px;
}
.lastblog__item:hover::before {
  width: 100%;
}
.lastblog__item h3,
.lastblog__txt h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.lastblog__content .lastblog__item:last-child {
  border-bottom: 1px solid var(--primary-color);
}
.lastblog__item .btn {
  border: none;
  padding-left: 0;
}
.lastblog__item .btn::after {
  display: none;
}
.lastblog__txt {
  border-radius: var(--border-radius);
  background-color: #fff;
  box-shadow: var(--box-shadow);
  padding: 30px;
  width: 100%;
  position: relative;
  bottom: -10px;
  left: 0;
}

@media screen and (min-width: 580px) {
  .lastblog__wrapper {
    flex-direction: row;
    gap: 40px;
  }
  .lastblog-col-img {
    width: 40%;
  }
  .lastblog__content {
    width: 60%;
  }

  #lastblog .title {
    margin-bottom: 90px;
  }
}
@media screen and (min-width: 980px) {
  .lastblog__wrapper {
    gap: 85px;
  }
  .lastblog__txt {
    width: 80%;
    position: absolute;
    bottom: -10px;
    left: -15px;
  }
  .lastblog-col-img {
    width: 50%;
  }
  .lastblog__content {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	INTERNAS
*	=======================================================================================================
**/
/** INTERNAS - BANNER	============== **/
.banner-intern {
  padding: 0;
  position: relative;
}
.banner-intern .bg-welcome {
  z-index: 0;
}
.banner-intern__wrapper {
  justify-content: center;
  min-height: 160px;
  align-items: flex-end;
}
.banner-intern.-large .banner-intern__wrapper {
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  width: 100%;
  padding: 115px 0 20px;
  margin-left: 0;
  min-height: 600px;
}
.banner-intern__wrapper h1 {
    color: #fff;
    font-family: var(--secondary-font);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    font-size: 1.5rem;
    margin-top: 100px;
}
.banner-intern.-large .banner-intern__wrapper h1 {
  font-size: 2rem;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 20px;
}
.banner-intern.-large .banner-intern__wrapper p {
  color: #fff;
}
.breadcrumb {
  color: var(--secondary-color);
  margin-bottom: 10px;
}
.banner-intern__wrapper h1::after {
  content: "";
  position: absolute;
  width: 187px;
  height: 6px;
  background-color: var(--secondary-color);
  left: 50%;
  transform: translateX(-50%);
  bottom: -13px;
  border-radius: var(--border-radius);
}
.banner-intern.-large .banner-intern__wrapper h1::after {
  display: none;
}
.first-section {
  padding-top: 60px;
}
.bg-banner-intern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.bg-banner-intern .opacity-20,
.bg-banner-intern .opacity-55 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  z-index: 1;
}
.bg-banner-intern .opacity-20 {
  opacity: 0.2;
}
.bg-banner-intern .opacity-55 {
  opacity: 0.55;
}
.bg-banner-intern .opacity-gradient {
  position: absolute;
  width: 100%;
  height: 130px;
  top: 0;
  left: 0;
  z-index: 2;
  background: #262626;
  background: linear-gradient(
    180deg,
    rgba(38, 38, 38, 0.86) 0%,
    rgba(38, 38, 38, 0) 100%
  );
}
.bg-banner-intern .opacity-gradient-60 {
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: #262626;
  background: linear-gradient(
    90deg,
    rgba(38, 38, 38, 0.86) 0%,
    rgba(38, 38, 38, 0) 100%
  );
}
@media screen and (min-width: 580px) {
  .first-section {
    padding-top: 60px;
  }
  .banner-intern.-large .banner-intern__wrapper {
    width: 40%;
    margin-left: 70px;
    min-height: 600px;
  }
  .banner-intern.-large .banner-intern__wrapper h1 {
    font-size: 3.3rem;
  }
}
@media screen and (min-width: 980px) {
  .banner-intern__wrapper {
    min-height: 196px;
  }
  .banner-intern.-large .banner-intern__wrapper {
    min-height: 622px;
  }
	.banner-intern__wrapper h1 {
    margin-top: 0;
}
}
@media screen and (min-width: 1280px) {
}



/** INTERNAS - ADORNOS	============== **/
.adorno-intern-1 {
  position: absolute;
  width: 131px;
  height: 131px;
  border-radius: 150px;
  background-color: var(--secondary-color);
  top: 564px;
  left: -65px;
  z-index: 0;
  display: none;
}
.adorno-intern-2 {
  position: absolute;
  width: 65px;
  height: 131px;
  border-radius: 150px 0 0 150px;
  background-color: var(--tertiary-color);
  top: 997px;
  right: 0;
  z-index: 0;
  display: none;
}
@media screen and (min-width: 580px) {
  .adorno-intern-1 {
    display: flex;
  }
  .adorno-intern-2 {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*	COMUNIDADES ARCHIVE
*	=======================================================================================================
**/
#comu {
  background-image: url(../images/bg-comu.svg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 735px;
  padding-bottom: 100px;
}
.comu__wrapper {
  flex-direction: column;
  gap: 80px;
}
.comu-item {
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
.comu__wrapper .comu-item:nth-child(even) {
  flex-direction: column;
}
.comu-item__img {
  width: 100%;
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.comu-item__content {
  width: 100%;
}

@media screen and (min-width: 580px) {
  .comu__wrapper {
    gap: 110px;
  }
  .comu-item {
    flex-direction: row;
    gap: 40px;
  }
  .comu-item__img {
    width: 50%;
    height: 330px;
  }
  .comu-item__content {
    width: 50%;
    padding-right: 50px;
  }
  .comu__wrapper .comu-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .comu__wrapper .comu-item:nth-child(even) .comu-item__content {
    padding-left: 50px;
  }
}
@media screen and (min-width: 980px) {
  .comu-item {
    flex-direction: row;
    gap: 70px;
  }
  .comu-item__img {
    height: 394px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	COMUNIDADES SINGLE
*	=======================================================================================================
**/
#sec-imgtxt.pres-comu {
    background-image: url(../images/bg-nos-home.svg);
    background-position: right top;
    background-size: auto 100%;
    padding: 70px 0 80px;
}
.pres-comu .location{
	gap:17px;
	font-size: 1.6rem;
	margin-top:40px;
	align-items: center;
}
.pres-comu .location img{
	width: 31px;
	height: 31px;
}

@media screen and (min-width: 580px) {	
}
@media screen and (min-width: 980px) {
	#sec-imgtxt.pres-comu {
    padding: 140px 0;
}
}
@media screen and (min-width: 1280px) {
}


/** COMUNIDADES SINGLE - GALERÍA	============== **/
#gallery-comu{
	background-color: var(--bg-color);
	padding: 105px 0 75px;
}
#gallery-comu .title{
	text-align: center;
	margin: 0 auto 40px;
}
.gallery-comu__grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:30px 20px;
}
.gallery-comu-grid__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--border-radius);
}
@media screen and (min-width: 580px) {
	.gallery-comu__grid{
	grid-template-columns: repeat(5, 1fr);
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}



/** COMUNIDADES SINGLE - MAPA	============== **/
#comu-map {
    background: linear-gradient(to bottom, var(--bg-color) 0%, var(--bg-color) 50%, #fff 50%, #fff 100%);
    padding: 0;
}
.comu-map__inner{
	overflow: hidden;
    border-radius: var(--border-radius);
	width: 100%;
	height: 490px;
}
.comu-map__inner iframe{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/** COMUNIDADES SINGLE - EXPERIENCIAS	============== **/
#experiences.-comu{
	background: none;
	padding: 100px 0;
}
#experiences.-comu .slick-slider{
	width: 100%;
}
/**
*	BLOG
*	=======================================================================================================
**/
.main-blog-wrapper {
  flex-direction: column-reverse;
  gap: 60px;
}
.aside-blog {
  width: 100%;
}
.aside-blog .widget_block {
    background-color: var(--bg-color);
    padding: 0;
    margin-bottom: 15px;
    padding: 30px 35px;
    border-radius: 12px;
}
.aside-blog h3.wp-block-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.main-blog-wrapper article {
  width: 100%;
}
.main-blog-wrapper article .fecha {
  color: var(--tertiary-color);
  margin-bottom: 10px;
}
.main-blog-wrapper article .title {
  text-transform: none;
  margin-bottom: 25px;
}
.articles-blog__grid {
  grid-template-columns: repeat(1, 1fr);
  display: grid;
  gap: 45px 27px;
  width: 100%;
}
.card-article:hover img {
  transform: scale(1.1);
}
.card-article__img {
  width: 100%;
  height: 290px;
  display: flex;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 35px;
}
.card-article__img img {
  transition: var(--transition);
}
.card-article-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}
.img-article {
  border-radius: var(--border-radius);
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 40px;
}
.content-article h2 {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 40px 0 20px;
  color: var(--quinary-color);
}
.separador {
  width: 100%;
  height: 63px;
  background-color: var(--bg-color);
}

@media screen and (min-width: 580px) {
  .main-blog-wrapper {
    flex-direction: row;
  }
  .aside-blog {
    width: 30%;
  }
  .articles-blog__grid {
    width: 70%;
  }
  .main-blog-wrapper article {
    width: 70%;
  }
  .card-article__img {
    height: 342px;
  }
  .img-article {
    height: 400px;
  }
}
@media screen and (min-width: 980px) {
  .aside-blog {
    width: 25%;
  }
  .articles-blog__grid {
    width: 75%;
    grid-template-columns: repeat(2, 1fr);
  }
  .main-blog-wrapper article {
    width: 75%;
  }
  .img-article {
    height: 531px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	NOSOTROS
*	=======================================================================================================
**/
/** NOSOTROS - HISTORIA	============== **/
#history {
  background-image: url(../images/bg-history.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 928px;
}
.history__inner .title {
  text-align: center;
  margin-bottom: 40px;
}
.history__img {
  height: 290px;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin: 0 0 65px;
  box-shadow: var(--box-shadow);
}

.history_content p {
  text-align: justify;
}

@media screen and (min-width: 580px) {
  .history_content {
    columns: 2;
    column-gap: 55px;
    padding: 0 30px;
  }
  .history__inner .title {
    margin-bottom: 70px;
  }
  .history__img {
    height: 406px;
    margin: -125px 0 95px;
  }
}
@media screen and (min-width: 980px) {
  .history__inner {
    padding: 0 195px;
  }
}
@media screen and (min-width: 1280px) {
}

/** NOSOTROS - MISIÓN / VISIÓN	============== **/
#misionvision {
  padding: 0;
  position: relative;
  z-index: 2;
}
.misionvision__wrapper {
  flex-direction: column;
}
.misionvision__wrapper > div {
  flex-direction: column;
  display: flex;
  width: 100%;
  position: relative;
  padding: 40px 1.5rem;
  justify-content: center;
  align-items: center;
}
.misionvision__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.misionvision__content {
  padding: 30px 25px;
  border: 1px solid #fff;
  border-radius: var(--border-radius);
  text-align: center;
}
.misionvision__content p {
  color: #fff;
}
.misionvision__content p:last-child {
  margin-bottom: 0;
}
.misionvision__content h2 {
  color: #fff;
  font-weight: 400;
}
#misionvision .opacity-60 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 0.6;
  z-index: 0;
}

@media screen and (min-width: 580px) {
  .misionvision__wrapper {
    flex-direction: row;
  }
  .misionvision__wrapper > div {
    width: 50%;
    padding: 40px 20px;
  }
}
@media screen and (min-width: 980px) {
  .misionvision__content {
    padding: 40px 50px;
    text-align: left;
  }
  #misionvision {
    padding: 80px 0 0;
  }
  .misionvision__wrapper > div {
    width: 50%;
    padding: 100px;
    height: 705px;
  }
}
@media screen and (min-width: 1280px) {
}

/** NOSOTROS - SEC IMG TXT	============== **/
#sec-imgtxt {
  background-image: url(../images/bg-blog-home.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto 100%;
  padding: 140px 0;
  position: relative;
}
#sec-imgtxt .circle-1 {
  position: absolute;
  width: 131px;
  height: 131px;
  border-radius: 150px;
  background-color: var(--secondary-color);
  top: -50px;
  left: 50px;
}
.sec-imgtxt__wrapper {
  gap: 60px;
  flex-direction: column-reverse;
}
.sec-imgtxt__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.sec-imgtxt__content {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
}
.sec-imgtxt__content .title {
  text-align: center;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .sec-imgtxt__wrapper {
    gap: 100px;
    flex-direction: row;
  }
  .sec-imgtxt__content {
    width: 50%;
  }
  .sec-imgtxt__img {
        width: 50%;
        position: sticky;
        top: 120px;
    }
  .sec-imgtxt__content .title {
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	CONTACTO
*	=======================================================================================================
**/
/** CONTACTO - PRESENTACIÓN	============== **/
#contactpres {
  background-image: url(../images/bg-history.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 928px;
  padding: 70px 0 80px;
}
.contactpres__wrapper {
  gap: 40px;
  flex-direction: column;
}
.contactpres__content {
  width: 100%;
}
.contactpres__form {
  width: 100%;
}
.contactpres-datos__item img {
  width: 14px;
  height: 14px;
}
.contactpres__datos {
  flex-direction: column;
  margin-top: 40px;
}
.contactpres-datos__item {
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.contactpres-form__block {
  width: 100%;
  padding: 30px 25px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}
.contactpres-form__block::before {
  content: "";
  position: absolute;
  width: 131px;
  height: 131px;
  border-radius: 150px;
  background-color: var(--secondary-color);
  top: -30px;
  left: -97px;
  z-index: -1;
}
.form-row {
	flex-direction: column;
    margin-bottom: 13px;
    display: flex;
    gap: 20px;
}
.form-row .form-group{
	width: 100%;
}
.form-row p {
    margin-bottom: 0;
    width: 100%;
}
.form-row:last-child {
  margin: 40px 0 0;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select{
  border: 1px solid var(--primary-color);
  width: 100%;
  border-radius: 11px;
  padding: 9px 18px;
	resize: none;
}
input[type="radio"] {
    appearance: auto;
}
textarea {
  height: 168px;
}

@media screen and (min-width: 580px) {
  #contactpres {
    padding: 130px 0 100px;
  }
  .contactpres__wrapper {
    gap: 45px;
    flex-direction: row;
  }
  .contactpres__content {
    width: 45%;
  }
  .contactpres__form {
    width: 55%;
  }
  .contactpres-form__block {
    margin: 0 0 -135px;
    padding: 65px 50px 40px;
  }
	.form-row {
	flex-direction: row;
}
	.form-row .form-group{
	width: 50%;
}
}
@media screen and (min-width: 980px) {
  .contactpres__wrapper {
    gap: 190px;
    flex-direction: row;
  }
  .contactpres__content {
    width: 50%;
  }
  .contactpres__form {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
}

/** CONTACTO - MAP	============== **/
#contact-map {
  padding: 0;
  height: 530px;
}
#contact-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/**
*	LEGALES
*	=======================================================================================================
**/
.legales-content {
    max-width: 800px;
    margin: 0 auto;
}
.legales-content h2 {
    margin: 30px 0 15px;
    font-weight: 700;
}
.legales-content h3 {
    margin: 30px 0 15px;
    font-weight: 700;
}
.legales-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.legales-content li::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--tertiary-color);
    border-radius: 25px;
    top: 6px;
    left: 0;
    position: absolute;
}
.legales__inner {
    max-width: 800px;
    margin: 0 auto;
}
.legales__inner h2{
    margin: 30px 0 15px;
}
.legales__inner .form-group-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.legales__inner label {
    display: inline-block;
    margin-bottom: 7px;
}

/* -------------- --------------------- */
/* -------------- LOADER ---------------*/
/* -------------- --------------------- */

/* LOADER OVERLAY */
.loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg-blog-home.svg);
    background-color: var(--primary-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background-repeat: no-repeat;
}

.loader-wrap.active{
    animation: 1000ms ease 300ms 1 normal both running fade-in;
	pointer-events: none;
}

.loader-wrap.hide{
    display:none;
}

@keyframes fade-in {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Circle */
.forest {
    width: 250px;
    height: 250px;
    border-radius: 50rem;
    background-color: #FFF2D0;
    position: relative;
    overflow: hidden;
}
/* Land */
.land {
    width: 70%;
    height: 135px;
    position: absolute;
    bottom: -20px;
    z-index: 3;
}
.land.left {
    background-color: #139446;
    border-radius: 0 50rem 0 0;
}
.land.right {
    right: -25px;
    border-radius: 50rem 0 0;
    width: 75%;
    background-color: #14a34c;
}
/* Mountains */
.mountain {
    width: 0;
    height: 0;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-bottom: 100px solid #90AD50;
    border-radius: 15px;
    position: absolute;
    bottom: 80px;
}
.mountain.left {
	left: -50px;
}
.mountain.center {
	left: 50%;
	transform: translateX(-50%) scale(2);
}
.mountain.right {
	right: -50px;
}
/* Trees */
.tree {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    z-index: 5;
    margin: 40px;
    left: 33px;
    bottom: 45px;
}
.tree::before {
    content: "";
    width: 40px;
    height: 70px;
    border-radius: 50rem;
    background-color: #91C24B;
    z-index: 6;
    transform-origin: bottom;
    animation: swing 4s infinite 
ease-in-out;
}
.tree::after {
	content: "";
	width: 15px;
	height: 25px;
	border-radius: 3px;
	margin-top: -10px;
	background-color: #386029;
}
.tree:nth-of-type(1) {
	transform: scale(0.8);
}
.tree:nth-of-type(2) {
    left: -10px;
    bottom: 15px;
}
.tree:nth-of-type(2)::before, .tree:nth-of-type(4)::before {
    background-color: #BDD144;
    height: 50px;
    width: 50px;
}
.tree:nth-of-type(3) {
	left: initial;
	right: 50px;
	transform: scale(1.2);
	bottom: 0px;
	z-index: 10;
}
.tree:nth-of-type(3)::before {
    background-color: #91C24B;
}
.tree:nth-of-type(4) {
	left: initial;
	bottom: 50px;
	right: -20px;
}
.tree:nth-of-type(4)::before {
    background-color: #BDD144;
}

/* Clouds */
.cloud-container {
	position: absolute;
	width: 400px;
	height: 400px;
	z-index: 100;
}
.cloud {
    width: 30px;
    height: 30px;
    border-radius: 50rem;
    background-color: #eff6fb;
    position: absolute;
    animation: move 2s 
ease-in-out alternate infinite;
}
.cloud::before, .cloud::after {
    content: "";
    position: absolute;
    bottom: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50rem;
    background-color: #eff6fb;
}
.cloud::before {
	left: -10px;
}
.cloud::after {
	right: -10px;
}
.cloud.center {
	top: 0;
	right: 0;
}
.cloud.center::after,
.cloud.center::before {
	bottom: 50%;
	transform: translateY(50%);
	width: 25px;
	height: 25px;
}
.cloud.center.small {
    width: 23px;
    height: 10px;
    transform: scale(0.7);
    background-color: transparent;
    animation: movesmall 2s 
ease-in-out alternate infinite;
}
.cloud:nth-of-type(1) {
	--d: 10px;
	top: 90px;
	left: 40px;
}
.cloud:nth-of-type(2) {
	--d: 13px;
	top: 40px;
	left: 130px;
}
.cloud:nth-of-type(3) {
	--d: 5px;
	top: 100px;
	left: 210px;
}
.cloud:nth-of-type(4) {
	--d: 8px;
	top: 70px;
	left: 300px;
}
.cloud:nth-of-type(5) {
	--d: 22px;
	top: 155px;
	left: 140px;
}
.cloud:nth-of-type(6) {
	--d: 11px;
	top: 140px;
	left: 340px;
}

/* Animations */
@keyframes swing {
	0% {
		transform: rotate(-10deg);
	}
	50% {
		transform: rotate(10deg);
	}
	100% {
		transform: rotate(-10deg);
	}
}
@keyframes move {
	0% {
		transform: translateX(calc(var(--d) * -1));
	}
	100% {
		transform: translateX(var(--d));
	}
}
@keyframes movesmall {
	0% {
		transform: translateX(calc(var(--d) * -1)) scale(0.7);
	}
	100% {
		transform: translateX(var(--d)) scale(0.7);
	}
}

.loader-4 {
    height: 32px;
    width: 32px;
    position: relative;
    margin-top: 40px;
}
.loader-4::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: var(--secondary-color);
    border-radius: 50%;
    -webkit-animation: loader-4-1 2s 
cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
    animation: loader-4-1 2s 
cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-1 {
	0%   { -webkit-transform: scale(0); opacity: 0; }
	50%  { -webkit-transform: scale(1); opacity: 1; }
	100% { -webkit-transform: scale(0); opacity: 0; }
}
@keyframes loader-4-1 {
	0%   { transform: scale(0); opacity: 0; }
	50%  { transform: scale(1); opacity: 1; }
	100% { transform: scale(0); opacity: 0; }
}

.loader-4 span {
	display: block;
	position: absolute;
	top: 0; left: 0;
	bottom: 0; right: 0;
	margin: auto;
	height: 32px;
	width: 32px;
	-webkit-animation: loader-4-2 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	        animation: loader-4-2 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-2 {
	0%   { -webkit-transform: rotate(0deg); }
	50%  { -webkit-transform: rotate(180deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes loader-4-2 {
	0%   { transform: rotate(0deg); }
	50%  { transform: rotate(180deg); }
	100% { transform: rotate(360deg); }
}
.loader-4 span::before, .loader-4 span::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 12px;
    width: 12px;
    background: var(--quinary-color);
    border-radius: 50%;
    -webkit-animation: loader-4-3 2s 
cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
    animation: loader-4-3 2s 
cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-3 {
	0%   { -webkit-transform: translate3d(0, 0, 0) scale(1); }
	50%  { -webkit-transform: translate3d(-16px, 0, 0) scale(.5); }
	100% { -webkit-transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes loader-4-3 {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	50%  { transform: translate3d(-16px, 0, 0) scale(.5); }
	100% { transform: translate3d(0, 0, 0) scale(1); }
}
.loader-4 span::after {
	-webkit-animation: loader-4-4 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	        animation: loader-4-4 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-4 {
	0%   { -webkit-transform: translate3d(0, 0, 0) scale(1); }
	50%  { -webkit-transform: translate3d(16px, 0, 0) scale(.5); }
	100% { -webkit-transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes loader-4-4 {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	50%  { transform: translate3d(16px, 0, 0) scale(.5); }
	100% { transform: translate3d(0, 0, 0) scale(1); }
}
