:root {
  --primary-font: "Urbanist", sans-serif;
  --secondary-font: "font2", sans-serif;
  --base-size-font: 16px;

  --primary-color: #3c4c45;
  --secondary-color: #65614c;
  --tertiary-color: #c88d1a;
  --quaternary-color: #bec7be;
  --bg-color: #e9e1d1;
  --dark-color: #292420;

  --transition: all 0.4s ease;
  --box-shadow: 0 10px 25px 0px rgba(0, 0, 0, 0.05);
  --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: 300 var(--base-size-font) var(--primary-font);
  line-height: 1;
  margin: 0;
  color: var(--primary-color);
  letter-spacing: 1px;
}

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;
}
.title h1,
.title h2,
.title h3,
.title h4 {
  font: 300 var(--title) var(--secondary-font);
  line-height: 1.1;
  position: relative;
}
.title h2::before {
  content: "";
  width: 42px;
  height: 42px;
  position: absolute;
  top: -25px;
  left: -25px;
  background-image: url(../images/diagonal-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@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: 5px 0 5px 40px;
    width: fit-content;
    display: flex;
    background-color: transparent;
}
.btn:hover {
  padding: 5px 40px 5px 0;
  color: var(--tertiary-color);
}
.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 26px;
    height: 26px;
    background-image: url(../images/arrow-btn.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: var(--transition);
    transform: translate(0, -50%);
}
.btn:hover::before {
  left: calc(100% - 26px);
}

.btn-2 {
  position: relative;
  cursor: pointer;
  font-size: var(--text-content-size);
  transition: var(--transition);
  padding: 5px 0 5px 40px;
  width: fit-content;
  text-align: right;
  padding: 8px 10px 8px 40px;
  min-width: 200px;
  background-color: var(--primary-color);
  height: fit-content;
  color: var(--bg-color);
  overflow: hidden;
  z-index: 1;
  justify-content: flex-end;
}
.btn-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--dark-color);
  z-index: -1;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-2:hover::before {
  width: 100%;
}

.btn-2:hover {
  color: var(--bg-color);
}

main {
  position: relative;
  z-index: 9;
  margin-top: 88px;
}
section {
  padding: 80px 0;
  overflow-x: clip;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  main {
    margin-top: 127px;
  }
}
@media screen and (min-width: 1280px) {
}


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

/* LOADER OVERLAY */

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

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

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

.loader-logo {
    position: absolute;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}
.background-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--secondary-color);
    z-index: 1;
    animation: fillBackground 2s forwards;
	background-image: url(../images/logo-bg-footer.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

@keyframes fillBackground {
    to {
        height: 100%;
    }
}
.loader-logo img{
    width:10rem;
}
@media screen and (min-width: 1024px) {
   .loader-logo img{
        width:18rem;
    } 
}

.loader-icon .loader{
    position: relative;
}

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

.loader{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    display:flex;
    align-items: center;
    justify-content: center;
    text-indent:0;
    font-size:0;
    opacity:0;
    visibility:hidden;
}

.loader.active{
     opacity:1;
    visibility:visible;
}
.loader-4 {
    height: 32px;
    width: 32px;
    position: relative;
}
.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: #FFF;
	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(--bg-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); }
}

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

/** HEADER TOP	============== **/
.header-top {
  background-color: var(--secondary-color);
  color: var(--bg-color);
  display: none;
}
.topbar__wrapper {
  min-height: 39px;
  padding: 5px 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header-top-item {
  width: 33%;
}
.header__msg {
  justify-content: center;
  gap: 12px;
}
.header-msg__txt p{
	margin-bottom: 0;
	color: var(--bg-color);
	line-height: 1;
}
.header-msg__txt a {
  color: var(--tertiary-color);
}
.header__redes {
  gap: 12px;
  justify-content: flex-end;
}
.header__redes > a {
  width: 17px;
  height: 17px;
  display: flex;
}
.header__datos {
  gap: 30px;
}
.header__datos > a {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.header__datos > a > 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__wrapper {
  justify-content: space-between;
  height: 88px;
  align-items: center;
}
.logo-content {
  flex-direction: column;
}
.logo {
  width: 201px;
  transition: var(--transition);
  transform: scale(1);
}
.logo-short {
  width: 200px;
  transition: var(--transition);
  animation-delay: 0.2s;
  transform: scale(0);
  height: 0;
}
header.activeFixed .logo {
  transform: scale(0);
  height: 0;
}
header.activeFixed .logo-short {
  transform: scale(1);
  height: auto;
}
.item-header {
  display: none;
  width: 40%;
}
.item-header .menu {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}
.item-header .menu li {
  position: relative;
}
.item-header .menu li > a {
  padding: 10px 15px 10px 0;
  transition: var(--transition);
  position: relative;
  display: flex;
}
.item-header .menu li:hover > a {
  padding: 10px 0 10px 15px;
}
.item-header .menu li::before {
  content: "";
  width: 17px;
  height: 17px;
  background-image: url(../images/diagonal-menu.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0px;
  transition: var(--transition);
  opacity: 0;
}
.item-header .menu li.current-menu-item::before,
.item-header .menu li:hover::before {
  opacity: 1;
}
.item-header .menu li.current-menu-item > a {
  padding: 10px 0 10px 15px;
  color: var(--tertiary-color);
}
.header__btns {
  justify-content: flex-end;
  position: relative;
  height: 100%;
}
.header-btns-classes {
  gap: 8px;
}
.header-btns-classes .header-btns__btn,
.header-cart {
  width: 70px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.header-btns-classes .header-btns__btn:hover,
.header-btns-classes .header-btns__btn.active{
  height: 95px;
}
.header-btns-classes .header-btns__btn:nth-child(1) {
  background-color: var(--dark-color);
}
.header-btns-classes .header-btns__btn:nth-child(2) {
  background-color: var(--primary-color);
}
.header-btns-classes .header-btns__btn:nth-child(3) {
  background-color: var(--quaternary-color);
}
.header-btns-classes .header-btns__btn img {
  width: 45px;
  height: 40px;
  object-fit: contain;
}
#cart-btn {
  padding: 10px;
  cursor: pointer;
}
#cart-btn img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .item-header {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	SIDEBAR MENU
*	=======================================================================================================
**/
.header__toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  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: 100px;
  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 {
  font-family: var(--secondary-font);
  margin-bottom: 30px;
  width: 100%;
}
#sidebar .menu-sidebar li {
  position: relative;
}
#sidebar .menu-sidebar li a {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    transition: var(--transition);
    position: relative;
    justify-content: flex-start;
    text-align: left;
    padding: 10px 15px 10px 0;
}
#sidebar .menu-sidebar li:hover > a {
  padding: 10px 0 10px 15px;
}
#sidebar .menu-sidebar li::before {
  content: "";
    width: 17px;
    height: 17px;
    background-image: url(../images/diagonal-menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0px;
    transition: var(--transition);
    opacity: 0;
}
#sidebar .menu-sidebar li.current-menu-item::before,
#sidebar .menu-sidebar li:hover::before {
  opacity: 1;
}
#sidebar .menu-sidebar li.current-menu-item > a {
  padding: 10px 0 10px 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: 50px;
  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: 10px;
  justify-content: center;
}
.redes-img a {
  width: 40px;
  height: 30px;
  display: flex;
}
.btn-sidebar {
  width: 100%;
}
@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 {
  background-color: var(--primary-color);
  color: var(--bg-color);
  padding: 40px 0 0;
}
.footer-inner {
  flex-direction: column;
}

/** FOOTER TOP	============== **/
.footer-top {
  flex-direction: column;
  min-height: 295px;
  background-image: url(../images/logo-bg-footer.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.logo-footer {
  width: 50%;
  justify-content: center;
  align-items: center;
}
.logo-footer img {
  width: 560px;
}
.redes-footer {
  gap: 12px;
  justify-content: flex-end;
}
.redes-footer > a {
  width: 17px;
  height: 17px;
  display: flex;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .footer-top {
    flex-direction: row;
    background-size: 720px;
    gap: 0;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
}

/** FOOTER MIDDLE	============== **/
.footer-middle {
  gap: 40px;
  justify-content: space-between;
  padding-top: 20px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-middle__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--quaternary-color);
  max-width: 100%;
  align-items: center;
}
.footer-middle__col h3 {
  font-family: var(--secondary-font);
  margin-bottom: 10px;
  color: var(--bg-color);
  font-size: 1.6rem;
}
.footer-middle__col li {
  margin-bottom: 10px;
}
.footer-dato-item {
  gap: 8px;
}
.footer-dato-item img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  object-position: center;
}
.libro-reclamaciones {
  width: 110px;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .footer-middle {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  .footer-middle__col {
    max-width: 30%;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1280px) {
}

/** FOOTER BOTTOM	============== **/
.footer-bottom {
  padding: 70px 0 50px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  color: var(--quaternary-color);
  text-align: center;
  line-height: 1.3;
}
.footer-bottom a{
	font-weight: 700;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
}

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

/** HOME - WELCOME	============== **/
#welcome {
  padding: 0;
  margin-bottom: -20px;
}
#welcome .container {
  padding: 0;
}
#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: 460px;
  position: relative;
}
.slider-welcome__item img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

@media screen and (min-width: 580px) {
  #welcome {
    padding: 0 1.5rem;
  }
  #welcome .slick-dotted.slick-slider {
    border-radius: 5px;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** HOME - PRESENTACIÓN	============== **/
#pres-home {
  background-color: var(--bg-color);
}
.pres-home__wrapper {
  flex-direction: column;
  gap: 40px;
  background-image: url(../images/logo-bg.svg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 100%;
  padding: 45px 0 20px;
}
.pres-home__content {
  width: 100%;
  padding: 0;
  flex-direction: column;
}
.pres-home-content__footer {
  margin-top: 20px;
  flex-direction: column;
  gap: 20px;
}
.pres-home-content__footer strong {
  font-weight: 600;
}
.pres-home-content-footer__btns {
  gap: 15px;
  flex-direction: column;
}
.pres-home__img {
  width: 100%;
  position: relative;
}
.pres-home-img__content {
  position: relative;
  display: flex;
  justify-content: center;
}
.pres-home-img__content img {
  width: 300px;
  height: 450px;
  border-radius: 230px;
  overflow: hidden;
}
.pres-home-img__content::after {
  content: "";
  position: absolute;
  width: 97px;
  height: 97px;
  background-image: url(../images/circle-txt.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 15px;
  right: 15px;
  animation: rotateCircle 8s linear infinite;
}
@keyframes rotateCircle {
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (min-width: 580px) {
  .pres-home-img__content img {
    width: 423px;
    height: 605px;
  }
  .pres-home-content-footer__btns {
    flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 980px) {
  .pres-home__wrapper {
    flex-direction: row;
    background-size: 638px;
    padding: 70px 0 20px;
  }
  .pres-home__content {
    width: 60%;
    padding: 0 60px 0 80px;
  }
  .pres-home-img__content {
    position: absolute;
  }

  .pres-home__img {
    width: 40%;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - PLANES DESTACADOS	============== **/
#featured-plans {
  padding: 110px 0 70px;
}
#featured-plans .title {
  margin-bottom: 70px;
}
.f-plan {
  display: flex !important;
  margin: 0 12px;
  position: relative;
  flex-direction: column;
}
.f-plan__img {
  width: 100%;
  /* height: 418px; */
  border-radius: 230px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.f-plan__content {
  width: 92%;
  position: relative;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: -60px auto 30px;
  right: 0;
  text-align: center;
}
.f-plan__content .btn {
  display: none;
}
.f-plan-content__block {
  border-radius: 230px 230px 0 0;
  width: 100%;
  color: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 10px 20px;
  gap: 15px;
  font-size: 1.3rem;
}
#f-plans-carousel .f-plan:nth-child(even) .f-plan-content__block {
  background-color: var(--secondary-color);
}
#f-plans-carousel .f-plan:nth-child(odd) .f-plan-content__block {
  background-color: var(--tertiary-color);
}
.card-product-subtitle{
	width: 80%;
    line-height: 1.5;
}
.product__class {
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.product__class span {
  font-size: 1rem;
}
.product-class__count {
  padding: 10px;
  background-color: var(--secondary-color);
  font-size: 1.5rem;
  width: max-content;
}
#f-plans-carousel .f-plan:nth-child(even) .product-class__count {
  background-color: var(--tertiary-color);
}
#f-plans-carousel .f-plan:nth-child(odd) .product-class__count {
  background-color: var(--secondary-color);
}
#f-plans-carousel .slick-dots {
  position: absolute;
  width: 100%;
  bottom: -40px;
}
#f-plans-carousel .slick-dots li button:before {
  font-size: 25px;
  opacity: 1;
  color: var(--quaternary-color);
}
#f-plans-carousel .slick-dots li.slick-active button:before {
  color: var(--tertiary-color);
}
.product__price {
    font-size: 1.3rem;
    font-weight: 400;
}
.f-plan__content .btn {
  margin-top: 20px;
}
.f-plans__footer {
  flex-direction: column;
  margin-top: 70px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  line-height: 1.8;
  gap: 20px;
}
.f-plans__footer > div:nth-child(1),
.f-plans__footer > div:nth-child(3) {
  width: 100%;
}
.f-plans__footer > div:nth-child(3) {
  display: flex;
  justify-content: center;
}
.f-plan-footer__msg p{
	margin-bottom: 0;
}
.f-plan-footer__msg strong {
  padding: 5px;
  background-color: var(--secondary-color);
  color: var(--bg-color);
  font-weight: 300;
}
.product__title {
  font-family: var(--secondary-font);
}

@media screen and (min-width: 580px) {
  .f-plan {
    flex-direction: row;
    margin: 0 20px;
  }
  .f-plan__img {
    width: 53%;
    height: 418px;
    border-radius: 230px;
    overflow: hidden;
  }
  .f-plan__content {
    width: 45%;
    position: absolute;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 25px 25px 0 0;
    right: 0;
    text-align: center;
  }

  .f-plan__content .btn {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
  .f-plans__footer > div:nth-child(1),
  .f-plans__footer > div:nth-child(3) {
    width: 20%;
  }
  .f-plans__footer {
    flex-direction: row;
    margin-top: 60px;
    text-align: left;
  }
  .f-plans__footer > div:nth-child(3) {
    justify-content: flex-end;
  }
  #f-plans-carousel .slick-dots {
    width: max-content;
    bottom: -85px;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - NUESTROS ESPACIOS	============== **/
#our-places {
  background-color: var(--primary-color);
  position: relative;
  z-index: 9;
}
.our-places__wrapper {
  flex-direction: column-reverse;
  gap: 50px;
  align-items: center;
}
.our-places__img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.our-places__img .adorno {
  position: absolute;
  width: 215px;
  height: 260px;
  background-color: var(--quaternary-color);
  border-radius: 235px 235px 0 0;
  bottom: -130px;
  right: -65px;
  z-index: -1;
  display: none;
}
.our-places__img .adorno.-orange {
  background-color: var(--tertiary-color);
}
.our-places__img img {
  height: 300px;
  overflow: hidden;
  border-radius: 80px 0;
}
.our-places__content {
  color: var(--bg-color);
  width: 100%;
}
.our-places__content p {
  color: var(--bg-color);
}
.our-places__list {
  padding-top: 20px;
}
.our-places__list li {
  border-bottom: 1px solid var(--tertiary-color);
}
.our-places__list li button {
  color: var(--bg-color);
  padding: 15px 10px;
  transition: var(--transition);
}
.our-places__list li:hover button {
  padding: 15px 10px 15px 25px;
}
.our-places__list li button.active {
  padding: 15px 10px 15px 25px;
  color: var(--tertiary-color);
}
#list-img {
  transition: opacity 0.3s;
  opacity: 1;
}

@media screen and (min-width: 580px) {
  .our-places__img img {
    height: 472px;
    border-radius: 150px 0;
  }
}
@media screen and (min-width: 980px) {
  .our-places__wrapper {
    flex-direction: row;
    gap: 110px;
  }
  .our-places__content {
    width: 40%;
  }
  .our-places__img {
    width: 60%;
  }
  .our-places__img img {
    height: 472px;
    border-radius: 180px 0;
  }
  .our-places__img .adorno {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - AGENDA	============== **/
#schedule {
  background-color: var(--bg-color);
  padding: 80px 0 0;
}
.schedule__wrapper {
  gap: 30px;
  justify-content: space-between;
  flex-direction: column;
}
.schedule__content {
  width: 100%;
  padding: 0;
  flex-direction: column;
}
.schedule__img {
  width: 90%;
  flex: none;
  margin: 0 auto -10px;
  position: relative;
  z-index: -1;
  order: 3;
}
.schedule__img img {
  object-position: bottom;
}
.schedule-blocks {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 17px;
  order: 2;
}
.schedule-blocks strong {
  font-weight: 700;
}
.schedule-blocks-items {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 20px;
  display: flex;
  gap: 15px;
}
.schedule-blocks-items .number {
  width: 42px;
  height: 42px;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 1.5rem;
  flex: none;
  font-family: var(--secondary-font);
}
.schedule-block__content {
  flex-direction: column;
  color: var(--bg-color);
}
.schedule-block__content span {
  margin: 5px 0 15px;
  color: var(--bg-color);
}
.schedule-block__content .btn {
  color: #fff;
  margin-bottom: 8px;
}
.schedule-blocks > .schedule-blocks-items:last-child {
  background-color: var(--tertiary-color);
}
.schedule-blocks > .schedule-blocks-items:last-child .schedule-block__content {
  margin: auto 0;
  line-height: 1.3;
}
.schedule-block__content .sede {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
  color: #fff;
  line-height: 1.2;
}
.schedule-block__content .sede img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}
.schedule-block__content .sede a {
  color: var(--bg-color);
}

@media screen and (min-width: 580px) {
  .schedule__img {
    width: 370px;
  }
}
@media screen and (min-width: 980px) {
  #schedule {
    padding: 177px 0 0;
  }
  .schedule__wrapper {
    flex-direction: row;
  }
  .schedule__content {
    width: 40%;
    padding: 40px 45px 0 25px;
  }
  .schedule-blocks {
    width: 28%;
    order: 3;
  }
  .schedule__img {
    margin-bottom: -4px;
    order: 2;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - GALLERY	============== **/
#gallery-home {
  padding: 0;
  flex-direction: column;
}
#gallery-home {
  padding: 0;
  position: relative;
  z-index: 2;
}
.gallery-home__item {
  overflow: hidden;
	width: 100%;
}
.gallery-home__item img {
  transition: var(--transition);
  display: flex;
}
.gallery-home__item:hover img {
  transform: scale(1.05);
}

@media screen and (min-width: 580px) {
  #gallery-home {
    flex-direction: row;
  }
}
@media screen and (min-width: 980px) {
	.gallery-home__item {
	width: 50%;
}
}
@media screen and (min-width: 1280px) {
}

/** HOME -  benefits	============== **/
#benefits {
    background-color: var(--primary-color);
    padding: 110px 0;
    z-index: 9;
    position: relative;
}
.benefits__wrapper {
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}
.benefits__item {
  color: var(--bg-color);
  width: 100%;
  position: relative;
}
.benefits__content .title {
  padding-top: 50px;
  margin-bottom: 40px;
}
.benefits__list li {
  position: relative;
  padding: 0px 0px 20px 37px;
  line-height: 1.8;
}
.benefits__list li::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  left: 0;
  background-image: url(../images/check-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.benefits__img {
  width: 100%;
  flex: none;
  order: 3;
}
.benefits-content-img {
  position: relative;
  top: 0;
  height: 450px;
  border-radius: 230px;
  max-width: 280px;
  overflow: hidden;
  margin: 0 auto;
}
.benefits__content-2 {
  align-items: center;
  order: 2;
  margin-bottom: 40px;
}

@media screen and (min-width: 580px) {
  .benefits__wrapper {
    flex-direction: row;
    gap: 40px;
  }
  .benefits__item {
    width: 33%;
  }
  .benefits__list li {
    margin: 28px 0;
    padding: 0px 0 0 37px;
  }
  .benefits__img {
    width: 33%;
    order: 2;
  }
  .benefits__content-2 {
    order: 3;
    margin-bottom: 0;
  }
  .benefits__content .title {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 980px) {
  .benefits__wrapper {
    gap: 80px;
  }
  .benefits__list li {
    margin: 28px 0;
    padding: 0px 50px 0 37px;
  }
  .benefits-content-img {
    height: 583px;
    position: absolute;
    max-width: 100%;
  }
  .benefits__img {
    width: 408px;
    order: 2;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME -  Blog	============== **/
#blog-home {
  padding: 130px 0;
}
.blog-home__header {
  margin-bottom: 70px;
}
#blog-home .title {
  margin-bottom: 0;
}
.blog-home__header {
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
.card-article-blog__footer {
  justify-content: space-between;
  align-items: center;
}
.card-article-blog__footer .date {
  display: none;
}
.blog-home__wrapper {
  flex-direction: column;
  gap: 60px;
}
.card-article.-main-article {
  width: 100%;
  position: relative;
}
.card-article__img {
  height: 300px;
  position: relative;
  z-index: 9;
  margin-bottom: 35px;
  overflow: hidden;
  border-radius: 80px 0;
}
.card-article__img img {
  transition: var(--transition);
}
.card-article:hover img {
  transform: scale(1.05);
}
.card-article.-main-article::after {
  content: "";
  position: absolute;
  width: 103px;
  height: 142px;
  background-color: var(--tertiary-color);
  top: -70px;
  right: -50px;
  border-radius: 60px 60px 0 0;
  z-index: -1;
}
.card-article h3 {
  font-family: var(--secondary-font);
  font-size: 1.5rem;
  margin-bottom: 8px;
  line-height: 1.4;
  position: relative;
}
.card-article h3::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: -8px;
  left: -20px;
  background-image: url(../images/diagonal-title-article.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.card-article-content {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-article.-horizontal {
  gap: 20px;
}
.card-article.-horizontal .card-article__img {
  width: 100%;
  height: 300px;
  border-radius: 80px 0;
  margin-bottom: 35px;
}
.blog-home__secondary-articles {
  flex-direction: column;
  gap: 60px;
  width: 100%;
}
.blog-home__secondary-articles .card-article {
  flex-direction: column;
  gap: 0;
}
.blog-home__secondary-articles .card-article:first-child {
  margin: 0;
}

@media screen and (min-width: 580px) {
  .card-article-blog__footer .date {
    display: flex;
  }
  .card-article__img {
    height: 450px;
  }
  .card-article.-horizontal .card-article__img {
    height: 450px;
  }
}
@media screen and (min-width: 980px) {
  .blog-home__wrapper {
    flex-direction: row;
    gap: 30px;
  }
  .card-article.-main-article {
    width: 40%;
  }
  .blog-home__header {
    flex-direction: row;
    align-items: center;
  }
  .card-article__img {
    height: 312px;
    border-radius: 150px 0;
  }
  .blog-home__secondary-articles .card-article {
    flex-direction: row;
    gap: 20px;
  }
  .blog-home__secondary-articles {
    width: 60%;
    gap: 25px;
  }
  .card-article.-horizontal {
    max-width: 540px;
    gap: 20px;
  }
  .card-article.-horizontal .card-article__img {
    width: 165px;
    height: 236px;
    border-radius: 90px;
    flex: none;
    margin-bottom: 0;
  }
  .blog-home__secondary-articles .card-article:first-child {
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME -  Alliances	============== **/
#alliances {
  padding: 0;
}
.alliances__inner {
  background-color: var(--bg-color);
}
.alliances__wrapper {
  padding: 55px 0;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
}
.alliances__footer {
  min-height: 74px;
  padding: 40px 20px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}
.alliances__footer a {
  background-color: var(--secondary-color);
  color: var(--bg-color);
  padding: 5px;
}
#carousel-alliances {
  width: 100%;
}
.alliances-carousel-item {
  width: 100%;
  height: 75px;
  margin: 0 40px;
  object-fit: contain;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #carousel-alliances {
    width: 70%;
  }
  .alliances__footer {
    flex-direction: row;
    padding: 20px 0;
    gap: 5px;
  }
  .alliances__wrapper {
    flex-direction: row;
    gap: 0;
  }
  .alliances-carousel-item {
    height: 55px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	INTERNAS
*	=======================================================================================================
**/
.banner-intern {
  background-color: var(--bg-color);
  margin-bottom: 60px;
  padding: 15px 0;
  position: relative;
}

.banner-intern__wrapper {
  flex-direction: column;
  min-height: 65px;
  justify-content: center;
}
.banner-intern__wrapper .btn-2 {
  display: none;
}
.title-intern {
  position: relative;
  padding: 0 0 0 62px;
}
.title-intern::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 50px;
  background-image: url(../images/arco-title-intern.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.title-intern h2 {
  font-family: var(--secondary-font);
  font-size: 1.5rem;
}

@media screen and (min-width: 580px) {
  .banner-intern__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  .title-intern {
    padding: 24px 0 0 100px;
    margin: 5px 0 0;
  }
  .title-intern h2 {
    font-size: 1.9rem;
  }
  .title-intern::before {
    width: 80px;
    height: 65px;
    left: 0;
    margin-top: 5px;
  }
  .banner-intern__wrapper .btn-2 {
    display: flex;
  }
  .banner-intern::after {
    content: "";
    position: absolute;
    height: 35px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 0;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*	ALIANZAS
*	=======================================================================================================
**/
/** ALIANZAS -  PRESENTACIÓN	============== **/
#alliances-grid {
  padding-top: 0;
}
.alliances-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.alliances-grid__item {
  height: 90px;
}
@media screen and (min-width: 580px) {
  .alliances-content-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    padding: 0 20px;
  }
  .alliances-grid__item {
    height: 140px;
  }
}
@media screen and (min-width: 980px) {
  .alliances-content-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
    padding: 0 100px;
  }
}
@media screen and (min-width: 1280px) {
}

/** ALIANZAS -  FORMA PARTE	============== **/
#forma-parte {
  background-color: var(--bg-color);
}
.forma-parte__wrapper {
  gap: 40px;
  align-items: center;
  flex-direction: column;
}
.forma-parte__wrapper .btn {
  margin-top: 30px;
  display: flex;
}
.forma-parte__img {
  width: 332px;
  height: 473px;
  border-radius: 230px;
  overflow: hidden;
  flex: none;
  margin: -110px 0 0px;
  max-width: 100%;
}

@media screen and (min-width: 580px) {
  .forma-parte__wrapper {
    gap: 60px;
    align-items: center;
    flex-direction: row;
  }
  .forma-parte__img {
    width: 40%;
    margin: 0;
  }
}
@media screen and (min-width: 980px) {
  .forma-parte__wrapper {
    gap: 80px;
    padding: 0 100px;
    align-items: center;
    flex-direction: row;
  }
  .forma-parte__img {
    width: 332px;
    margin: -110px 0 0px;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	CONTACTO
*	=======================================================================================================
**/
/** CONTACTO -  SEDES	============== **/
#sedes {
  background-image: url(../images/logo-vertical.svg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 210px;
  padding: 0px 0 115px;
}
.sedes-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 80px;
}
.sedes-grid__item {
  gap: 45px;
  align-items: center;
  justify-content: center;
}
.sede__img {
  width: 230px;
  height: 330px;
  overflow: hidden;
  border-radius: 230px;
  display: none;
}
.sede__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sede__content h2 {
  font-size: var(--title);
  font-family: var(--secondary-font);
  padding-bottom: 85px;
  position: relative;
}
.sede__content h2::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  background-image: url(../images/diagonal-sede.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
}
.sede__datos {
  flex-direction: column;
  gap: 10px;
  margin-bottom: 33px;
  align-items: center;
}
.sede-dato-item {
  gap: 8px;
}
.sede-dato-item img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  object-position: center;
}

@media screen and (min-width: 580px) {
  .sedes-grid {
    gap: 40px;
  }
  .sede__img {
    display: flex;
  }
  .sedes-grid__item {
    justify-content: center;
  }
  .sede__content {
    align-items: flex-start;
  }
  .sede__datos {
    align-items: flex-start;
  }
  .sede__content h2::after {
    left: 0;
    transform: translateX(0);
    top: 55px;
  }
}
@media screen and (min-width: 980px) {
  .sedes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sedes-grid__item {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1280px) {
}

/** CONTACTO -  FORMULARIO	============== **/
#formulario {
  background-color: var(--bg-color);
  padding: 100px 0;
}
.formulario__wrapper {
  flex-direction: column;
  gap: 60px;
}
.formulario__img {
  width: 100%;
  height: 320px;
  border-radius: 100px 0;
  overflow: hidden;
}
.formulario__content {
  width: 100%;
}
.formulario__content form p{
	margin-bottom: 0;
}
.form-row {
  margin-bottom: 10px;
}
#formulario input[type="text"],
#formulario input[type="email"],
#formulario input[type="tel"],
#formulario input[type="number"],
#formulario textarea{
  width: 100%;
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid var(--tertiary-color);
  background-color: transparent;
  font-size: var(--text-content-size);
  font-family: var(--primary-font);
  letter-spacing: 1px;
	resize: none;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    height: 145px;
}

#formulario select, #formulario input[type="date"] {
    width: 100%;
    border: 1px solid var(--tertiary-color);
    padding: 10px 12px;
    color: var(--text-color);
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: var(--text-content-size);
    line-height: 1.5;
    color: var(--primary-color);
    margin-top: 10px;
}

@media screen and (min-width: 580px) {
  .formulario__wrapper {
    flex-direction: row;
    gap: 40px;
  }
  .formulario__img {
    width: 60%;
    height: 560px;
  }
  .formulario__content {
    width: 40%;
  }
}
@media screen and (min-width: 980px) {
  .formulario__wrapper {
    gap: 90px;
  }
  .formulario__img {
    border-radius: 180px 0;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	CLASE
*	=======================================================================================================
**/
/** CLASE -  BANNER	============== **/
.banner-clase {
  position: relative;
  background-color: var(--secondary-color);
  z-index: 1;
}
.banner-clase::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}
.banner-clase__wrapper {
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  background-image: url(../images/logo-clase.svg);
  background-repeat: no-repeat;
  background-position: left 15px bottom 25px;
  background-size: 460px;
}
.banner-clase__img {
  width: 100%;
  max-width: 883px;
  height: 200px;
  overflow: hidden;
}
.banner-clase__title {
  width: 25%;
  padding-top: 30px;
}
@media screen and (min-width: 580px) {
  .banner-clase__img {
    height: 350px;
  }
}
@media screen and (min-width: 980px) {
  .banner-clase__wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
  .banner-clase__img {
    width: 75%;
    height: 404px;
  }
}
@media screen and (min-width: 1280px) {
}

/** CLASE -  PRESENTACIÓN	============== **/
#pres-clase {
  background-color: var(--secondary-color);
  padding: 70px 0 100px;
}
.pres-clase__wrapper {
  flex-direction: column;
  gap: 50px;
  color: var(--bg-color);
  align-items: center;
}
.pres-clase__wrapper .title {
  margin-bottom: 0;
}
.pres-clase__wrapper p {
  color: var(--bg-color);
}
.pres-clase__wrapper p:last-child {
  margin-bottom: 0;
}
.pres-clase__wrapper > div {
  width: 100%;
}

@media screen and (min-width: 580px) {
  .pres-clase__wrapper {
    flex-direction: row;
    gap: 75px;
  }
  .pres-clase__wrapper > div {
    width: 50%;
  }
  #pres-clase {
    padding: 130px 0 100px;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** CLASE -  HORARIOS	============== **/
#horarios {
  background-color: var(--bg-color);
  background-image: url(../images/logo-horarios.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 638px;
  padding: 80px 0 60px;
}
#horarios .title {
  width: fit-content;
  margin: 0 auto 25px;
}
.horarios-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  position: relative;
  width: fit-content;
  margin: 0 auto 35px;
}
.tab-btn {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--primary-color);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.tab-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 9px;
  background-color: var(--tertiary-color);
  z-index: -1;
  bottom: 3px;
  left: 0;
  transition: var(--transition);
}
.tab-btn.active::after {
  width: 100%;
}
.horarios-tabs > .tab-btn:last-child::before {
  display: none;
}
.salones-tabs {
  display: flex;
  justify-content: center;
  background-color: var(--quaternary-color);
  min-height: 42px;
  align-items: center;
  max-width: 528px;
  width: 100%;
  margin: 0 auto;
}
.salones-list {
  display: flex;
  gap: 45px;
}
.salon-btn {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}
.salon-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 7px;
  background-color: var(--tertiary-color);
  z-index: -1;
  bottom: 3px;
  left: 0;
  transition: var(--transition);
}
.salon-btn.active::after {
  width: 100%;
}
.salon-desc {
  margin-top: 35px;
  justify-content: space-between;
  gap: 70px;
}
.horario__img {
    display: none;
    width: 35%;
    aspect-ratio: 4 / 6;
    border-radius: 230px;
    overflow: hidden;
    margin-bottom: -95px;
    height: 100%;
}
.horario__content {
    width: 100%;
    overflow-x: scroll;
}
.horario-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  font-size: 14px;
}
.horario-table th {
  font-weight: bold;
  padding: 10px 0;
}
.horario-table td {
  background: var(--quaternary-color);
  padding: 10px;
  text-align: center;
  min-width: 90px;
}
.horario-table .hora {
    padding: 10px 5px;
    color: #fff;
    text-align: center;
    background: var(--secondary-color);
    width: 75px;
}
.horario-table .hora.yellow {
  background: var(--tertiary-color);
}
.horario-table .hora.dark {
  background: var(--secondary-color);
}
.horario-table .txt-yellow{
	color:var(--tertiary-color);
}
@media screen and (min-width: 580px) {
  .horario-table td {
    min-width: auto;
  }
  .horarios-tabs {
    flex-direction: row;
    gap: 95px;
    margin: 0 auto 20px;
  }
  .tab-btn::before {
    content: "";
    position: absolute;
    width: 76px;
    height: 1px;
    background-color: var(--primary-color);
    top: 50%;
    right: -85px;
    transform: translatey(-50%);
  }
}
@media screen and (min-width: 980px) {
  .horario__img {
    display: flex;
  }
  .horario__content {
    width: 65%;
    overflow-x: auto;
}
}
@media screen and (min-width: 1280px) {
}

/** CLASE -  PLANES	============== **/
#planes-clase {
  padding: 110px 0 0px;
}
#planes-clase .title {
  margin-bottom: 70px;
  display: flex;
  justify-content: flex-start;
}
.planes-clase__footer {
  flex-direction: column;
  margin-top: 90px;
}
.planes-clase__footer li {
  margin-bottom: 10px;
  line-height: 1.3;
  position: relative;
  padding-left: 25px;
}
.planes-clase__footer li::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 2px;
  left: 0;
  background-image: url(../images/check-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
#planes-clase #f-plans-carousel .slick-dots {
  width: 100%;
  bottom: -40px;
}
.planes-clase-footer__msg strong {
  padding: 5px;
  background-color: var(--secondary-color);
  color: var(--bg-color);
  font-weight: 300;
}
.planes-clase-footer__msg {
  padding: 80px 0;
  text-align: center;
  line-height: 1.8;
}

@media screen and (min-width: 580px) {
  .planes-clase__footer {
    flex-direction: row;
    gap: 80px;
    margin-top: 90px;
  }
}
@media screen and (min-width: 980px) {
  #planes-clase .title {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1280px) {
}

/** CLASE -  GALERÍA	============== **/
#clase-gallery {
  padding: 0 0 70px;
  margin: 0;
}
#blog-home.clase-blog {
  padding-top: 120px;
}
.clase-gallery__item {
  overflow: hidden;
  height: 400;
}
.clase-gallery__item img {
  transition: var(--transition);
  display: flex;
}
.clase-gallery__item:hover img {
  transform: scale(1.05);
}
#clase-gallery .slick-dots {
  position: absolute;
  width: 100%;
  bottom: 15px;
}
#clase-gallery .slick-dots li button:before {
  font-size: 25px;
  opacity: 1;
  color: var(--quaternary-color);
}
#clase-gallery .slick-dots li.slick-active button:before {
  color: var(--tertiary-color);
}

/**
*	NOSOTROS
*	=======================================================================================================
**/
/** NOSOTROS - PRESENTACIÓN	============== **/
#pres-nos {
  padding-top: 0;
}
.pres-nos__wrapper {
  flex-direction: column;
  gap: 40px;
}
.pres-nos__wrapper > div {
  width: 100%;
}
.pres-nos__wrapper .title {
  margin-bottom: 0;
}
.pres-nos__content p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .pres-nos__wrapper {
    flex-direction: row;
    gap: 90px;
    padding: 0 40px;
  }
  .pres-nos__wrapper > div {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
}

/** NOSOTROS - TEAM	============== **/
#team {
  padding: 100px 0;
  background-image: url(../images/logo-horarios.svg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 638px;
}
#team .title {
  margin-bottom: 75px;
}
.logo-team {
  width: 560px;
  margin: 20px 0 0 0;
  max-width: 90%;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}
.team-grid__item {
  position: relative;
}
.team-grid__item:hover .team-grid__content {
  transform: translateY(-10px);
}
.team-grid__item:hover .team-grid__img img {
  transform: scale(1.05);
}
.team-grid__img {
  width: calc(100% - 30px);
  aspect-ratio: 4 / 6;
  overflow: hidden;
  border-radius: 230px;
  max-width: 100%;
  margin-bottom: 40px;
}
.team-grid__img img {
  transition: var(--transition);
}
.team-grid__content {
    position: absolute;
    width: 70%;
    max-width: 200px;
    bottom: 0;
    min-height: 152px;
    border-radius: 150px 150px 0 0;
    background-color: var(--quaternary-color);
    right: 0;
    transition: var(--transition);
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--primary-color);
    padding: 35px 15px 10px;
    justify-content: center;
}
.team__grid .team-grid__item:nth-child(odd) .team-grid__content {
  background: var(--bg-color);
}
.team__grid .team-grid__item:nth-child(even) .team-grid__content {
  background: var(--quaternary-color);
}
.team-grid__content h3 {
  font-family: var(--secondary-font);
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.2;
}
.team-grid__content h3 strong {
  padding: 0 2px;
  background-color: var(--tertiary-color);
  color: var(--bg-color);
  font-weight: 300;
}
.team-grid__content span {
  font-size: 1rem;
}

@media screen and (min-width: 580px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-team {
    width: 560px;
    margin: 30px 0 0 60px;
  }
}
@media screen and (min-width: 980px) {
  #team {
    padding: 160px 0;
  }
  .team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .team-grid__img {
    max-width: 232px;
  }
}
@media screen and (min-width: 1280px) {
}

/** NOSOTROS - MODAL	============== **/
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3c4c45d1;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal {
  background: #fff;
  max-width: 800px;
  position: relative;
  text-align: center;
  margin: 10px;
}
.modal h3 {
  font-family: var(--secondary-font);
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.2;
  text-align: left;
}
.modal h3 strong {
  padding: 0 10px;
  background-color: var(--tertiary-color);
  color: #fff;
  font-weight: 300;
}
.modal h3::before {
  content: "";
  width: 42px;
  height: 42px;
  position: absolute;
  top: -30px;
  left: -30px;
  background-image: url(../images/diagonal-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 29px;
  color: var(--primary-color);
}

.close-btn:hover {
  color: #000;
}
.modal__wrapper {
  flex-direction: column;
  gap: 40px;
}
.modal-team_img {
  width: 85%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 230px;
  position: relative;
  bottom: -35px;
  max-width: 215px;
}
.modal-col-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.adorno-modal {
  display: none;
  width: 180px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
}
.modal-col-2 {
  width: 100%;
  padding: 40px 30px;
}
#modal-texto {
  max-height: 140px;
  overflow-y: auto;
  text-align: center;
  padding: 0;
  margin-bottom: 20px;
}
#modal-overlay-team .title {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#modal-overlay-team .title span {
  text-align: center;
  display: block;
  color: var(--secondary-color);
}
.modal-content__footer {
  margin-top: 20px;
  flex-direction: column;
  gap: 20px;
}
.modal-content__footer strong {
  font-weight: 600;
}
.modal-content-footer__btns {
  gap: 15px;
  flex-direction: column;
  align-items: center;
}
.modal-redes a {
  width: 17px;
  height: 17px;
  display: flex;
}
.modal-redes {
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}
@media screen and (min-width: 580px) {
   .modal {
    margin: 20px;
  }
}
@media screen and (min-width: 980px) {
  .modal {
    margin: 0;
  }
  .modal__wrapper {
    flex-direction: row;
    gap: 50px;
  }
  .modal-col-1 {
    width: 35%;
  }
  .modal-col-2 {
    width: 65%;
    padding: 70px 40px 70px 0;
  }
  #modal-overlay-team .title {
    align-items: flex-start;
  }
  #modal-overlay-team .title span {
    text-align: left;
  }
  .modal-content__footer {
    align-items: flex-start;
  }
  .modal-content-footer__btns {
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
  }
  .adorno-modal {
    display: flex;
  }
  #modal-texto {
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
    padding: 0 20px 0 0;
    margin-bottom: 0;
  }
  .modal-redes {
    justify-content: flex-start;
  }
  .modal-team_img {
    width: 310px;
    aspect-ratio: 4 / 6;
    right: 0;
    bottom: auto;
    max-width: 310px;
    top: 50%;
    transform: translateY(-50%);
    max-height: calc(100% + 50px);
    margin-right: 20px;
    position: absolute;
  }
}
@media screen and (min-width: 1280px) {
}


/**
*	Blog
*	=======================================================================================================
**/
#main-blog {
    padding: 0 0 100px;
}
.main-blog-wrapper {
    display: flex;
    flex-direction: column;
    gap: 115px;
	background-image: url(../images/logo-bg-article.svg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 237px;
}
.main-blog-wrapper article{
  width: 100%;
}
.main-blog-wrapper article .title {
  margin-bottom: 30px;
}
.aside-blog {
    width: 100%;
    height: fit-content;
    position: sticky;
    top: 125px;
}
.aside-blog section{
    padding: 0;
}
.aside-blog h3 {
    font-size: 1.3rem;
    margin: 70px 0 30px;
    font-family: var(--secondary-font);
}
.aside-blog .widget_block:first-child h3{
	margin-top: 0;
}
.aside-blog .widget_block:first-child {
    padding: 0;
}
.cat-item{
	margin-bottom:10px;
}
.articles-blog__grid{
	display: grid;
	grid-template-columns: repeat(1,1fr);
	gap:70px 45px;
}
@media screen and (min-width: 580px) {
	.articles-blog__grid{
	grid-template-columns: repeat(1,1fr);
}
}
@media screen and (min-width: 980px) {
  .main-blog-wrapper{
    flex-direction: row;
  }
  .main-blog-wrapper article{
    width: 75%;
  }
  .aside-blog{
    width: 25%;
  }
	.articles-blog__grid{
	grid-template-columns: repeat(2,1fr);
}
}
@media screen and (min-width: 1280px) {
}


/**
*	SINGLE - BLOG
*	=======================================================================================================
**/
.header-single{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.header-single .title-article h1{
  font-size: var(--title-xs);
}
.content-article p{
  text-align: justify;
  font-size: var(--text-content-size);
}
.content-article .fecha {
    margin-bottom: 40px;
}
.img-article {
    width: 100%;
    height: 270px;
    overflow: hidden;
    border-radius: 80px 0;
    margin-bottom: 40px;
}
@media screen and (min-width: 580px) {
	.img-article {
		height: 480px;
	}
}
@media screen and (min-width: 980px) {
  .img-article {
        height: 508px;
        border-radius: 150px 0;
    }
}
@media screen and (min-width: 1280px) {
}

#articulos-relacionados {
    padding: 55px 0 120px;
}
#articulos-relacionados .card-article__img{
	height:240px;
	border-radius: 130px 0;
}
.art-relacionados__grid{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap:45px;
}

.art-relacionados__grid > div:first-child{
	display: flex;
	align-items: center;
}




/**
*	FAQS
*	=======================================================================================================
**/
#modal-overlay-faqs .modal {
    padding: 70px 25px 35px;
    text-align: left;
}
#modal-overlay-faqs .modal__wrapper {
    flex-direction: column;
    gap: 0;
    align-items: center;
}
#modal-overlay-faqs  .title {
    width: fit-content;
}
.accordion {
    max-height: 400px;
    overflow-y: auto;
}
.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 2rem 1em 1.5em;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    background: none;
    outline: none;
    background-color: var(--bg-color);
}
.accordion .accordion-item:nth-child(odd) button{
	background-color: #fff;
}
.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  border: 1px solid #a0e2e4;
}
.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 15px;
    width: 22px;
    height: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 450px;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
    padding: 0 1.5em;
}
.accordion .accordion-content p {
  margin: 2em 0;
}
.accordion .accordion-content ul li, .accordion .accordion-content ol li {
    margin-bottom: 10px;
    position: relative;
    line-height: 1.5;
}
.accordion .accordion-content ul li {
    padding-left: 20px;
}
.accordion .accordion-content ul li::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    left: 0;
    top: 8px;
    background-color: var(--secondary-color);
}
.faq-big .accordion button[aria-expanded='true'] + .accordion-content {
    max-height: 2000px;
}

@media screen and (min-width: 580px) {
	#modal-overlay-faqs .modal {
		padding: 95px 40px 60px;
	}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}
