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

  --primary-color: #0f616e;
  --secondary-color: #1aa3b5;
  --tertiary-color: #f6936a;
  --quaternary-color: #fdcf2e;
  --bg-color: #f5f5f5;
  --txt-color: #5e5e5e;

  --transition: all 0.4s ease;
  --box-shadow: 0 10px 25px 0px rgba(0, 0, 0, 0.05);
  --border-radius: 1rem;

  --title: 2.8rem;
  --title-mobile: 2.5rem;
  --text-content-size: 1rem; /* Párrafos, textos de contenido */
}
body {
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  color: var(--txt-color);
  letter-spacing: -0.3px;
}

html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--primary-color);
}
p {
  font-size: var(--text-content-size);
  margin-bottom: 20px;
  line-height: 1.5;
  color: #5e5e5e;
}
.title h1,
h1.title,
.title h2,
.title h3,
.title h4 {
  font-size: 2rem;
  line-height: 1.1;
  text-align: center;
}
@media screen and (min-width: 580px) {
  .title h1,
	h1.title,
  .title h2,
  .title h3,
  .title h4 {
    font-size: 2.4rem;
    line-height: 1.1;
  }
}
@media screen and (min-width: 980px) {
  .title h1,
	h1.title,
  .title h2,
  .title h3,
  .title h4 {
    font-size: 2.8rem;
    line-height: 1.1;
    text-align: left;
  }
}
@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;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  width: fit-content;
  font-size: var(--text-content-size);
  transition: var(--transition);
  overflow: hidden;
  height: 48px;
  align-items: center;
  padding: 5px 20px;
  min-width: 165px;
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--tertiary-color);
}
.btn-secondary {
  background-color: var(--secondary-color);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--tertiary-color);
}
.btn-secondary:hover {
  background-color: var(--tertiary-color);
}

main {
  position: relative;
  z-index:8;
}
section {
  padding: 50px 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: relative;
    z-index: 999;
}
/** HEADER TOP	============== **/
.header-top {
  background-color: var(--primary-color);
  color: #fff;
  font-size: 0.9rem;
  line-height: 0;
  display: none;
}
.topbar__wrapper {
  min-height: 35px;
  padding: 5px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__redes {
  gap: 12px;
}
.header__redes > a {
  width: 17px;
  height: 17px;
  display: flex;
}
.header__datos {
  gap: 30px;
}
.header__datos > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.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;
  padding: 20px 0;
  align-items: center;
}
.logo {
  width: 200px;
}
.header-btns {
  display: none;
}
.header-btns > a {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #fff;
  padding: 10px 15px;
  height: fit-content;
  min-width: 150px;
}
.header-btns > a:nth-child(1) {
  background-color: var(--tertiary-color);
  border-radius: 50px 0 0 50px;
}
.header-btns > a:nth-child(2) {
  background-color: var(--primary-color);
}
.header-btns > a:nth-child(3) {
  background-color: var(--secondary-color);
  border-radius: 0 50px 50px 0;
}
@media screen and (min-width: 580px) {
  .logo {
    width: 242px;
  }
}
@media screen and (min-width: 980px) {
  .header-btns {
    display: flex;
  }
  .header-middle__wrapper {
    padding: 20px 0 0;
  }
}
@media screen and (min-width: 1280px) {
}

/** HEADER BOTTOM	============== **/
.header-bottom {
  padding: 10px 0 12px;
  display: none;
}
.header-bottom__wrapper {
  flex-direction: row;
  justify-content: space-between;
}
.item-header {
  display: none;
}
.item-header .menu {
    display: flex;
    align-items: center;
    gap: 30px;
    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: 11px;
    height: 11px;
    background-image: url(../images/hexagon-yellow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 12px;
    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;
}
.menu ul.sub-menu {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    padding: 30px 40px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    position: absolute;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    transform: translatey(20px);
    border-top: 5px solid var(--primary-color);
}
.menu ul.sub-menu li {
    margin-bottom: 5px;
}
.menu ul.sub-menu li:last-child{
	margin-bottom:0;
}
.menu-item-has-children:hover > ul.sub-menu{
	opacity: 1;
	visibility: visible;
	transform: translatey(0);
}
.menu-item-has-children li::before{
	display: none;
}
.item-header .menu .menu-item-has-children li > a {
    padding: 4px 0px;
    line-height: 1.5;
}
.item-header .menu .menu-item-has-children li:hover > a {
  padding: 4px 0px;
	color: var(--secondary-color);
}
.menu-item-has-children::after {
    content: "";
    width: 6px;
    height: 6px;
    background-image: url(../images/dropdown.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 3px;
    top: 50%;
    transition: var(--transition);
    transform: translate(3px, -50%);
}
.menu-item-has-children.current-menu-item::after{
	transform: translate(15px, -50%) rotate(0);
}
.menu-item-has-children:hover::after{
    transform: translate(15px, -50%) rotate(180deg);
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .item-header {
    display: flex;
  }
  .header-bottom {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}


/* Contenedor del mega menú */
.menu-item-265 > .sub-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
    background: #fff;	
}
.menu-item-265 > .sub-menu li.mega-title > .sub-menu {
    position: relative;
    border-radius: 0;
    background-color: transparent;
    top: 0;
    border-top: 0;
    box-shadow: none;
    padding: 25px 0 0;
}

/* Reset de submenús */
.menu-item-265 > .sub-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-item-265 > .sub-menu li::before{
	display: none;
}
/* Títulos de cada columna */
.menu-item-265 > .sub-menu li.mega-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
	position: relative;
}
/* Desactivar clic SOLO en el enlace del título */
.menu-item-265 > .sub-menu li.mega-title > a {
/*     pointer-events: none; */
}

.menu-item-265 > .sub-menu li.mega-title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgb(207, 207, 207, .57);
    top: 32px;
    left: 0;
    right: auto;
    transform: none;
}
.menu-item-265 .menu-item-has-children:hover::after{
	transform: none;
}
.menu-item-265:hover > .sub-menu li.mega-title > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translatey(0);
}
/* Distribución de columnas */
.menu-item-265 > .sub-menu li.col-1 { grid-column: 1; }
.menu-item-265 > .sub-menu li.col-2 { grid-column: 2; }
.menu-item-265 > .sub-menu li.col-3 { grid-column: 3; }


.menu-item-265 > .sub-menu li a {
    display: block;
    padding: 4px 0;
    color: var(--primary-color);
    text-decoration: none;
}
.item-header .menu .menu-item-265 > .sub-menu li:hover > a{
    padding: 4px 0!important;
}
.menu-item-265 > .sub-menu li.mega-title > .sub-menu li{
	margin-bottom: 15px;
}
.menu-item-265 > .sub-menu li.mega-title > .sub-menu li a {
    text-transform: none;
    pointer-events: auto;
    font-weight: 400;
}
.menu-item-265 > .sub-menu li.mega-title > .sub-menu li a:hover{
	
}
.menu-item-265 > .sub-menu li a:hover {
    color: var(--secondary-color);
}




/**
*	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: 9999999;
  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: 9999999;
}
#sidebar.active {
  right: 0;
}
#sidebar .container {
  height: 100%;
}
#sidebar .logo {
  width: 100%;
  max-width: 220px;
}
#sidebar .menu-sidebar,
#sidebar .menu-sidebar-2 {
  font-family: var(--secondary-font);
  margin-bottom: 30px;
  width: 100%;
}
#sidebar .menu-sidebar li,
#sidebar .menu-sidebar-2 li {
  position: relative;
}
#sidebar .menu-sidebar li a,
#sidebar .menu-sidebar-2 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: 10px 15px 10px 0;
}
#sidebar .menu-sidebar li:hover > a {
  padding: 10px 0 10px 15px;
}
#sidebar .menu-sidebar li::before {
  content: "";
  width: 11px;
  height: 11px;
  background-image: url(../images/hexagon-yellow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transition: var(--transition);
  transform: translateY(-50%);
  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 .menu-sidebar-2 {
  padding-bottom: 40px;
  margin-bottom: 20px;
  background-color: var(--bg-color);
  padding: 25px;
  border-radius: var(--border-radius);
}
.menu-menu-responsive-container {
    width: 100%;
}
.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;
  padding: 0 0 0 20px;
}
.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;
}

/** HEADER STICKY	============== **/
#header-sticky {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  transition: var(--transition);
  transform: translateY(-100%);
  z-index: 999999;
  width: 100%;
}
#header-sticky.activeFixed {
  transform: translateY(0);
  box-shadow: var(--box-shadow);
}
#header-sticky .logo {
  width: 120px;
  display: none;
}
#header-sticky .logo-res {
  width: 180px;
  display: flex;
}
#header-sticky .header-middle__wrapper {
  padding: 20px 0;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #header-sticky .logo {
    display: flex;
  }
  #header-sticky .logo-res {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	FOOTER
*	=======================================================================================================
**/
footer {
  margin-top: 50px;
  color: #fff;
}

/** FOOTER - FOOTER TOP	============== **/
.footer-top {
  flex-direction: row;
  height: 78px;
  justify-content: center;
  align-items: center;
  background-color: #a0e2e4;
  gap: 10px;
  color: var(--primary-color);
}
.us-fertility {
  width: 130px;
}

/** FOOTER - FOOTER MIDDLE	============== **/
.footer-middle {
  background-color: var(--primary-color);
}
.footer-middle__header {
  color: #a0e2e4;
  font-weight: 600;
  height: auto;
  border-bottom: 1px solid #a0e2e4;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 40px 0;
  gap: 30px;
}
.agendar {
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.footer__redes {
  gap: 30px;
  flex-direction: column;
}
.sg-redes,
.sg-donantes-redes {
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.sg-redes__group {
  flex-direction: row;
  gap: 12px;
}
.sg-redes__group > a {
  width: 21px;
  height: 19px;
}
.footer-middle__content {
  padding: 40px 0 70px;
  gap: 40px;
  flex-direction: column;
}
.footer-col__logo {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-col__logo p {
  color: #fff;
}
.footer-col__logo img {
  width: 225px;
  margin-bottom: 40px;
}
.footer-col__content {
  width: 100%;
  flex-direction: column;
  gap: 50px;
}
.footer-col__content h3 {
  font-size: 1.1rem;
  color: #a0e2e4;
  font-family: var(--primary-font);
  margin-bottom: 15px;
}
.footer-menus__menu {
  width: 50%;
}
.footer-menus__menu li {
  margin-bottom: 10px;
}
.footer-link-interes-menu {
  flex-direction: column;
  gap: 10px;
}
.footer-link-interes-menu span {
  display: none;
}
.footer-col__contact {
  width: 100%;
  background-color: #a0e2e4;
  border-radius: var(--border-radius);
  padding: 25px;
  color: var(--primary-color);
}
.footer-col__contact strong {
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: flex;
}
.footer-col__contact a {
    display: flex;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: -30px;
}
.footer-col__contact p {
  margin-bottom: 0;
}

@media screen and (min-width: 580px) {
  .footer__redes {
    flex-direction: row;
    gap: 60px;
  }
  .sg-redes,
  .sg-donantes-redes {
    flex-direction: row;
  }
  .footer-link-interes-menu {
    flex-direction: row;
  }
  .footer-link-interes-menu span {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
  .footer-middle__header {
    flex-direction: row;
    height: 96px;
    padding: 20px 0;
    gap: 0;
  }
  .footer-middle__content {
    flex-direction: row;
  }
  .footer-col__logo {
    width: 25%;
    text-align: left;
  }
  .footer-col__content {
    width: 50%;
  }
  .footer-col__contact {
    width: 25%;
  }
}
@media screen and (min-width: 1280px) {
}

/** FOOTER - FOOTER BOTTOM	============== **/
.footer-bottom {
  flex-direction: column;
  min-height: 65px;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  gap: 10px;
  font-size: 0.9rem;
  text-align: center;
}
.footer-bottom span {
  display: none;
}
.a84 {
  gap: 8px;
}
.a84 a {
  display: flex;
}
.a84 img {
  width: 25px;
}
@media screen and (min-width: 580px) {
  .footer-bottom {
    flex-direction: row;
  }
  .footer-bottom span {
    display: flex;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

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

/** HOME - WELCOME	============== **/
#welcome {
  padding: 0;
}
#welcome .slick-dots {
  bottom: 18px;
}
#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;
}
.slider-welcome__item {
  height: 535px;
  position: relative;
}
.slider-welcome__item img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
.slider-welcomer__content {
  height: 100%;
  position: relative;
  z-index: 2;
}
.welcome-content__wrapper {
  position: relative;
  width: 100%;
  padding: 35px 25px;
  margin: 45px 0 50px;
  min-height: 422px;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.welcome-content__wrapper p {
  color: #fff;
}
.welcome-content__wrapper h2 {
  color: #fff;
}
.welcome-content__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e86531;
  border-radius: var(--border-radius);
  opacity: 0.9;
  z-index: -1;
}
.welcome-content__wrapper .btn {
  margin-top: 20px;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .welcome-content__wrapper {
    width: 50%;
    padding: 50px 60px;
    margin: 50px 0;
    text-align: left;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - DESTACADOS	============== **/
#destacados {
  background-color: var(--primary-color);
  padding: 35px 0;
}
.destacados-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.destacados-grid__item {
  padding: 35px 0;
  border-bottom: 1px solid #a0e2e4;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.destacados-grid__item h3 {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0;
}
.destacados-grid > .destacados-grid__item:nth-child(1) {
  padding-left: 0;
}
.destacados-grid > .destacados-grid__item:nth-child(4) {
  border-right: none;
  border-bottom: none;
  padding-right: 0;
}
@media screen and (min-width: 580px) {
  .destacados-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }
  .destacados-grid > .destacados-grid__item:nth-child(3) {
    border-bottom: none;
  }
}
@media screen and (min-width: 980px) {
  .destacados-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .destacados-grid__item {
    padding: 13px 40px;
    border-bottom: none;
    border-right: 1px solid #a0e2e4;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - DIFERENCIAS	============== **/
#diferencias {
  background-color: var(--bg-color);
  padding: 0;
}
.diferencias__wrapper {
  flex-direction: column;
  gap: 60px;
  min-height: 746px;
  padding-bottom: 310px;
}
.diferencias__title {
  width: 100%;
  padding: 90px 0 0;
  flex-direction: column;
  justify-content: space-between;
}
.diferencias__content {
  width: 100%;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}
.diferencias__item h3 {
  font-family: var(--primary-font);
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}
.diferencias__item {
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}
.diferencias__item img {
  width: 97px;
}
.diferencias__item p {
  margin-bottom: 0;
}
.img-test {
  position: absolute;
  width: 350px;
  height: 250px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.img-test img {
  object-position: bottom;
}
@media screen and (min-width: 580px) {
  .img-test {
    width: 532px;
    height: 355px;
  }
  .diferencias__item {
    flex-direction: row;
    gap: 35px;
    text-align: left;
    align-items: flex-start;
  }
  .diferencias__wrapper {
    padding-bottom: 400px;
  }
}
@media screen and (min-width: 980px) {
  .diferencias__wrapper {
    flex-direction: row;
    gap: 100px;
    padding-bottom: 0;
  }
  .diferencias__title {
    width: 50%;
    padding: 112px 40px 0 0;
  }
  .diferencias__content {
    width: 50%;
  }
  .img-test {
    width: 532px;
    height: 355px;
    left: 0;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - NUMBERS	============== **/
#numbers {
  padding: 80px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.numbers-item {
  padding: 13px 0px;
  border-bottom: 1px solid #a0e2e4;
  text-align: center;
}
.numbers-item__value {
  text-align: center;
  font-family: var(--secondary-font);
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  font-size: 2.7rem;
  line-height: 1.1;
}
.numbers-grid > .numbers-item:nth-child(1) {
  padding-left: 0;
}
.numbers-grid > .numbers-item:nth-child(1) .numbers-item__value {
  color: var(--tertiary-color);
}
.numbers-grid > .numbers-item:nth-child(2) .numbers-item__value {
  color: var(--primary-color);
}
.numbers-grid > .numbers-item:nth-child(3) .numbers-item__value {
  color: var(--quaternary-color);
}
.numbers-grid > .numbers-item:nth-child(4) .numbers-item__value {
  color: var(--secondary-color);
}
.numbers-grid > .numbers-item:nth-child(4) {
  border-bottom: none;
  padding-right: 0;
}
@media screen and (min-width: 580px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .numbers-item {
    border-bottom: none;
    border-right: none;
  }
}
@media screen and (min-width: 980px) {
  .numbers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .numbers-item {
    border-bottom: none;
    border-right: 1px solid #a0e2e4;
    padding: 13px 20px;
  }
  .numbers-grid > .numbers-item:nth-child(4) {
    border-right: none;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - TESTIMONIALS	============== **/
#testimonials {
  padding: 0;
}
#testimonials .container {
  padding: 0;
}
#testi-slider {
  overflow: hidden;
}
.testi-slider__item {
  display: flex !important;
  flex-direction: column-reverse;
  justify-content: space-between;
  background-color: var(--bg-color);
}
.testi-slider__content {
    width: 100%;
    padding: 60px 30px 110px;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    min-height: 510px;
}
.testi-slider__img {
  width: 100%;
  height: 320px;
}
.testi-slider__content .comillas {
  width: 41px;
  margin-bottom: 25px;
}
.testi-slider__text span {
  font-family: var(--secondary-font);
  font-size: 1.2rem;
  color: var(--secondary-color);
  display: flex;
  margin-bottom: 20px;
}
.custom-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  position: absolute;
  z-index: 9;
  bottom: 60px;
  left: 60px;
}
.custom-slider-controls button {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
}
.slider-counter {
  font-weight: bold;
}
.custom-slider-controls img {
  width: 16px;
}
.testi-slider__text {
    overflow-y: auto;
    max-height: 325px;
    padding-right: 20px;
}
@media screen and (min-width: 580px) {
  #testimonials .container {
    padding: 0 1.5rem;
  }
  #testi-slider {
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  .testi-slider__content {
    padding: 60px 60px 110px 60px;
	  min-height:0;
  }
}
@media screen and (min-width: 980px) {
  #testimonials {
    padding: 50px 0;
  }
	#testimonials .container {
    padding: 0;
  }
  .testi-slider__item {
    flex-direction: row;
  }
  .testi-slider__content {
    width: 50%;
    padding: 60px 60px 110px 60px;
  }
  .testi-slider__img {
    width: 50%;
    height: 585px;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - TESTIMONIALS	============== **/
#contact-home {
  padding: 50px 0;
  margin: 0 0 50px;
  background: linear-gradient(
    to right,
    var(--primary-color) 50%,
    var(--primary-color) 50%
  );
}
.contact-home__wrapper {
  flex-direction: column;
  gap: 70px;
}
.contact-home-content {
  width: 100%;
  background-color: var(--primary-color);
  flex-direction: column;
  justify-content: center;
}
.contact-home-content h2 {
  color: #fff;
  margin-bottom: 50px;
}
.contact-home-form {
  width: 100%;
  background-color: var(--primary-color);
  flex-direction: column;
  justify-content: center;
}
.contact-home-content .block {
  background-color: var(--bg-color);
  padding: 25px;
  border-radius: var(--border-radius);
  flex-direction: column;
}
.contact-home-content .block strong {
  color: var(--secondary-color);
  margin-bottom: 5px;
  display: flex;
}
.contact-home-content .block a {
  display: flex;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-home-content .block p {
  margin-bottom: 0;
}
.contact-home-content .block > div:nth-child(1) {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--primary-color);
}
.contact-home-content .block > div:nth-child(2) {
  padding-top: 40px;
}
.contact-home-content .block > div:nth-child(2) > p:nth-child(2) > a{
	font-size: 1rem;
	font-weight: 400;
}
.contact-home-form p {
  color: #fff;
}
.form-group {
  width: 100%;
  margin-bottom: 15px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"], .form-group textarea, .form-group select {
    width: 100%;
    padding: 17px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--primary-font);
}
.form-row {
  display: flex;
  flex-direction: column; 
}
.form-row .form-group {
  width: 100%;
}

@media screen and (min-width: 580px) {
  #contact-home {
    margin: 60px 0 50px;
    background: linear-gradient(
      to right,
      var(--secondary-color) 50%,
      var(--primary-color) 50%
    );
  }
  .contact-home__wrapper {
    flex-direction: row;
    gap: 0;
  }
  .contact-home-content {
    width: 50%;
    padding: 0 30px 0 0;
    background-color: var(--secondary-color);
  }
  .contact-home-form {
    width: 50%;
    padding: 20px 0 20px 30px;
  }
	.form-row {
  flex-direction: row;
		 gap: 15px;
}
	.form-row .form-group {
  width: 50%;
}
}
@media screen and (min-width: 980px) {
  #contact-home {
    padding: 0;
    margin: 60px 0 50px;
  }
  .contact-home-content {
    width: 45%;
    padding: 0 140px 0 0;
    background-color: var(--secondary-color);
    min-height: 746px;
  }
  .contact-home-form {
    width: 55%;
    padding: 20px 0 20px 90px;
  }
  .contact-home-content .block {
    max-width: 335px;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - CLIENTS	============== **/
#clients h2.title {
  margin-bottom: 50px;
}
#clients-carousel .slick-slide {
  margin: 0 15px;
}

@media screen and (min-width: 580px) {
      #clients-carousel .slick-slide {
        margin: 0 40px;
        height: 108px;
    }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** HOME - READY	============== **/
#ready-home {
  padding: 0;
  margin: 50px 0;
  height: 577px;
  position: relative;
  overflow: hidden;
}
#ready-home.-ready-page{
	margin-top: 0;
}
#ready-home .container {
  height: 100%;
}
.ready-home__bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ready-home__wrapper {
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.ready-home__wrapper > div:nth-child(1) {
  width: 100%;
}
.ready-home__content {
  position: relative;
  width: 100%;
  padding: 45px 30px;
  margin: 50px 0;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.ready-home__content p {
  color: #fff;
}
.ready-home__content h2 {
  color: #fff;
}
.ready-home__content::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e86531;
  border-radius: var(--border-radius);
  opacity: 0.9;
  z-index: -1;
}
.ready-home__content span {
  display: flex;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.ready-home__content span::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../images/hexagon-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
@media screen and (min-width: 580px) {
  .ready-home__content span {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 980px) {
  .ready-home__wrapper {
    flex-direction: row;
    height: 100%;
  }
  .ready-home__wrapper > div:nth-child(1) {
    width: 45%;
  }
  .ready-home__content {
    width: 55%;
    padding: 50px 60px;
    min-height: 422px;
    text-align: left;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1280px) {
}

/** HOME - BLOG	============== **/
#blog-home {
  padding-bottom: 80px;
}
.blog-home__header {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--primary-color);
}
.blog-home__header a {
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  display: flex;
  gap: 8px;
  align-items: center;
  display: none;
}
.blog-home__header a img {
  width: 16px;
}
.blog-home__wrapper {
  flex-direction: column;
  gap: 50px;
  padding-top: 40px;
}
.blog-home-featured {
  width: 100%;
}
.card-article-hf {
  flex-direction: column;
}
.card-article-hf h3 {
  font-size: 1.6rem;
  color: var(--secondary-color);
  line-height: 1.3;
  margin-bottom: 0;
}
.card-article-hf .date {
  margin-bottom: 10px;
}
.blog-hf__img {
  width: 100%;
  height: 300px;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 30px;
}
.blog-home__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}
.blog-home__grid .card-article-hf {
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.blog-home__grid .blog-hf__img {
  height: 300px;
  width: 100%;
  flex: none;
  margin-bottom: 30px;
}
.blog-home__footer {
  margin-top: 60px;
  justify-content: center;
}
@media screen and (min-width: 580px) {
  .blog-home__header a {
    display: flex;
  }
  .blog-home__header {
    flex-direction: row;
  }
  .blog-hf__img {
    height: 445px;
    margin-bottom: 40px;
  }
  .blog-home__grid .card-article-hf {
    flex-direction: row;
    gap: 25px;
  }

  .blog-home__grid .blog-hf__img {
    height: 174px;
    width: 230px;
    margin-bottom: 0;
  }
  .blog-home__footer {
    display: none;
  }
}
@media screen and (min-width: 980px) {
  .blog-home__wrapper {
    flex-direction: row;
    gap: 40px;
  }
  .blog-home__grid {
    width: 50%;
    gap: 20px;
  }
  .blog-home-featured {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
}

/**
*	INTERNAS
*	=======================================================================================================
**/
header.-intern {
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 9;
}
#breadcrumb {
  display: none;
}
.breadcrumb__wrapper {
  padding: 30px 0 0;
}
.breadcrumb {
  gap: 10px;
}
.breadcrumb-home {
  color: var(--secondary-color);
  font-weight: 700;
}
.sec-intern__wrapper {
  flex-direction: column;
  gap: 50px;
}
.sec-intern__content h2 {
  font-size: 1.2rem;
  font-family: var(--secondary-font);
  line-height: 1.5;
}
.sec-intern__content h3 {
  font-size: 1.2rem;
  margin: 50px 0 20px;
  line-height: 1.3;
}
.sec-intern__content ul li ,
.sec-intern__content ol li {
	margin-bottom: 15px;
  position: relative;
  line-height: 1.5;
}
.sec-intern__content ul li {
  padding-left: 20px;
}
.sec-intern__content ul li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  left: 0;
  top: 8px;
  background-color: var(--secondary-color);
}
.sec-intern__content ol li {
    list-style: auto;
    margin-left: 15px;
    padding: 0 0 0 10px;
}
.sec-intern__content ol li ul li {
    list-style: none;
    margin-left: 0;
    padding: 0 0 0 15px;
}
.sec-intern__content .grid-columnas {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
	gap: 0;
}
.sec-intern__content .grid-columnas-3 {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
	gap: 0;
}
.sec-intern__content .wp-block-separator {
    color: #a0e2e4;
    margin: 40px 0;
}
.sec-intern__img-main {
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
}
.sec-intern__content p strong,
.otras__content p strong {
  color: var(--secondary-color);
}
.sec-intern__content p a {
  position: relative;
}
.sec-intern__content p a::after {
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--secondary-color);
  position: absolute;
  opacity: 0;
  visibility: none;
  transition: var(--transition);
}
.sec-intern__content p a:hover::after {
  visibility: visible;
  opacity: 1;
}
.sec-intern__content h6 {
  padding: 20px 30px;
  border-radius: 25px;
  background-color: var(--quaternary-color);
  font-size: 1rem;
  font-family: var(--primary-color);
  line-height: 1.5;
}
.sec-intern__content em {
  font-weight: 700;
  color: #5e5e5e !important;
  font-style: normal;
}
.adorno-1 {
  width: 120px;
  height: 260px;
  position: absolute;
  top: 531px;
  right: 0;
  display: none;
}
footer.-intern {
  margin-top: 0;
}
.list-admin-med {
  columns: 1;
  -webkit-columns: 1;
  -moz-columns: 1;
  column-gap: 20px;
  list-style-position: inside;
}
.list-admin-med li {
    position: relative !important;
    padding: 20px 0px;
    padding-left: 53px !important;
    break-inside: avoid !important;
    margin: 0 !important;
}
.list-admin-med li a{
	color: var(--secondary-color);
	font-weight: 700;
}
.list-admin-med  li::before {
    position: absolute!important;
    content: "";
    width: 43px!important;
    height: 43px!important;
    top: 50%!important;
    left: 0!important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    transform: translateY(-50%);
	border-radius:0!important;
	background-color: transparent!important;
}
.list-admin-med li:nth-child(1)::before,
.list-admin-med li:nth-child(5)::before{
  background-image: url(../images/hexa-video-1.svg);
}
.list-admin-med li:nth-child(2)::before,
.list-admin-med li:nth-child(6)::before{
  background-image: url(../images/hexa-video-2.svg);
}
.list-admin-med li:nth-child(3)::before,
.list-admin-med li:nth-child(7)::before{
  background-image: url(../images/hexa-video-3.svg);
}
.list-admin-med li:nth-child(4)::before,
.list-admin-med li:nth-child(8)::before{
  background-image: url(../images/hexa-video-4.svg);
}


@media screen and (min-width: 580px) {
	.list-admin-med {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}
	.list-admin-med li {
    padding: 30px 0px;
}
	.sec-intern__content .grid-columnas {
    grid-template-columns: repeat(2, 1fr);
		gap: 20px;
}
	.sec-intern__content .grid-columnas-3 {
    grid-template-columns: repeat(2, 1fr);
		gap: 20px;
}
  #breadcrumb {
    display: flex;
  }
  .sec-intern__wrapper {
    flex-direction: row;
    gap: 40px;
  }
  .sec-intern__img-main {
    height: 443px;
  }
}
@media screen and (min-width: 980px) {
	.sec-intern__content .grid-columnas {
    grid-template-columns: repeat(4, 1fr);
		gap: 20px;
}
	.sec-intern__content .grid-columnas-3 {
    grid-template-columns: repeat(3, 1fr);
		gap: 20px;
}
  .sec-intern__wrapper {
    gap: 100px;
  }
  .adorno-1 {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
}

/** INTERNAS - BLOQUE W-IMG	============== **/

#w-img .sec-intern__content {
  width: 55%;
}
.w-img__img {
  width: 45%;
  height: 320px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  overflow: hidden;
}

/** INTERNAS - BLOQUE W-SIDEBAR	============== **/

#w-sidebar .sec-intern__content {
  width: 100%;
}
#w-sidebar .sec-intern__content .form-group input{
	border:1px solid var(--primary-color);
}
#w-sidebar .sec-intern__content .form-group .btn{
	border: none;
}
#w-sidebar input[type="radio"] {
    appearance: auto;
    margin: 6px 10px 0 0;
}
.wpcf7-radio label{
	display: flex;
    align-items: flex-start;
}
.wpcf7-list-item {
    display: inline-block;
    margin: 0;
}
.block-sidebar {
  width: 100%;
  background-color: var(--bg-color);
  padding: 40px;
  border-radius: var(--border-radius);
  flex-direction: column;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.block-sidebar h4 {
  font-size: 1.2rem;
}
.block-sidebar li {
  margin-bottom: 15px;
}
.block-sidebar li a {
  color: var(--secondary-color);
}

@media screen and (min-width: 580px) {
  #w-sidebar .sec-intern__content {
        width: 65%;
        max-width: 710.36px;
    }
  .block-sidebar {
    width: 35%;
  }
  #w-sidebar .sec-intern__content h1 {
    text-align: left;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** INTERNAS - BLOQUE READY	============== **/
#block-ready {
  background-color: #fbe5d9;
  padding: 0;
}
.block-ready__wrapper {
  min-height: 350px;
  padding: 40px 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.block-ready__content {
  max-width: 100%;
  margin: 5px 0 15px;
}
.block-ready__content a {
  color: var(--secondary-color);
  font-weight: 700;
}
@media screen and (min-width: 580px) {
  .block-ready__content {
    max-width: 380px;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** INTERNAS - BLOQUE MSG BLOG	============== **/
#msg-blog {
  padding: 0;
  background-color: var(--bg-color);
}
.msg-blog__wrapper {
  gap: 30px;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  flex-direction: row;
}
.msg-blog__wrapper .btn {
  min-width: 100px;
}

/** INTERNAS - BLOQUE OTRAS ALTERNATIVAS	============== **/
#otras-alternativas {
  padding: 100px 0;
  background-color: var(--bg-color);
}
.otras__inner .title {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.otras__inner .title h2 {
  margin-bottom: 40px;
}
.otras__wrapper {
  flex-direction: column-reverse;
  gap: 50px;
  align-items: center;
}
.otras__content {
  width: 100%;
}
.otras__content h3 {
  font-size: 1.2rem;
  line-height: 1.5;
}
.otras__img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius);
}

@media screen and (min-width: 580px) {
  .otras__wrapper {
    flex-direction: row;
  }
  .otras__inner .title {
    width: 50%;
  }
  .otras__inner .title h2 {
    margin-bottom: 75px;
  }
  .otras__content {
    width: 55%;
  }
  .otras__img {
    width: 45%;
    height: 473px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
  }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/** INTERNAS - BLOQUE VIDEO	============== **/
.video__wrapper {
  flex-direction: column;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: auto;
}
.video__container {
  width: 100%;
  height: 300px;
}
.video__container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video__content {
    width: 100%;
    padding: 40px 25px;
    background-color: var(--bg-color);
    align-items: center;
}
.video__content p:last-child{
	margin-bottom: 0;
}

@media screen and (min-width: 580px) {
  .video__content {
    padding: 50px 80px;
  }
 
}
@media screen and (min-width: 980px) {
       .video__wrapper {
        flex-direction: row;
        height: 400px;
        align-items: center;
        background-color: var(--bg-color);
    }
  .video__container {
    width: 50%;
    height: 400px;
  }
	.video__container.v-100{
		width:100%;
		height:600px;
	}
	    .video__wrapper.v-100 {
        max-width: 869px;
        margin: 0 auto;
    }
  .video__content {
        width: 50%;
        padding: 20px 80px;
    }
}
@media screen and (min-width: 1280px) {
}


/** INTERNAS - BLOQUE IMG CON LIST	============== **/
#sec-img-list{
	padding-bottom:100px;
}
#sec-img-list .sec-intern__content {
  width: 100%;
}
#sec-img-list .w-img__img {
  width: 100%;
  height: 300px;
  border-radius:var(--border-radius);
  overflow: hidden;
}
#sec-img-list .list-categories li {
    position: relative;
    padding-left: 65px;
    margin-bottom: 30px;
    transition: var(--transition);
}
#sec-img-list .list-categories li:last-child {
    margin-bottom: 0;
}
#sec-img-list .list-categories li::before {
    position: absolute;
    content: "";
    width: 43px;
    height: 43px;
    top: 50%;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    transform: translateY(-50%);
}
#sec-img-list .list-categories li:hover{
  transform: translateX(10px);
}
#sec-img-list .list-categories li:nth-child(1)::before,
#sec-img-list .list-categories li:nth-child(6)::before{
  background-image: url(../images/hexa-1.svg);
}
#sec-img-list .list-categories li:nth-child(2)::before{
  background-image: url(../images/hexa-2.svg);
}
#sec-img-list .list-categories li:nth-child(3)::before{
  background-image: url(../images/hexa-3.svg);
}
#sec-img-list .list-categories li:nth-child(4)::before{
  background-image: url(../images/hexa-4.svg);
}
#sec-img-list .list-categories li:nth-child(5)::before{
  background-image: url(../images/hexa-5.svg);
}

@media screen and (min-width: 580px) {
  #sec-img-list .sec-intern__content {
  width: 45%;
}
#sec-img-list .w-img__img {
        width: 55%;
        height: 360px;
        border-radius: var(--border-radius) 0 0 var(--border-radius);
        position: sticky;
        top: 120px;
    }
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}



/** INTERNAS - BLOQUE DOCUMENTOS	============== **/
#docs_intern{
	background-color: var(--quaternary-color);
}
#docs_intern ul a {
  position: relative;
}
#docs_intern ul a::after {
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--secondary-color);
  position: absolute;
  opacity: 0;
  visibility: none;
  transition: var(--transition);
}
#docs_intern ul a:hover::after {
  visibility: visible;
  opacity: 1;
}



/** INTERNAS - BLOQUE IMG IZ	============== **/
.img-iz__wrapper {
  flex-direction: column;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: auto;
}
.img-iz__container {
  width: 100%;
  height: 300px;
}
.img-iz__content {
    width: 100%;
    padding: 40px 25px;
    background-color: var(--bg-color);
    align-items: center;
}
.img-iz__content h2 {
    font-size: 2.5rem;
}
.img-iz__content p:last-child{
	margin-bottom: 0;
}
.img-iz__content p a {
  position: relative;
	color: var(--secondary-color);
}
.img-iz__content p a::after {
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--secondary-color);
  position: absolute;
  opacity: 0;
  visibility: none;
  transition: var(--transition);
}
.img-iz__content p a:hover::after {
  visibility: visible;
  opacity: 1;
}
.img-iz__content h3{
	line-height: 1.5;
}
.texto-final{
	margin: 0 auto;
	text-align: center;
	color: var(--primary-color);
	padding: 40px 0;
}
.num-yellow {
    font-size: 2.5rem;
    color: var(--quaternary-color) !important;
    font-family: var(--secondary-font);
}
@media screen and (min-width: 580px) {
  .img-iz__content {
    padding: 50px 80px;
  }
	.num-yellow {
    font-size: 3rem;
}
 
}
@media screen and (min-width: 980px) {
       .img-iz__wrapper {
        flex-direction: row;
        height: 400px;
        align-items: center;
        background-color: var(--bg-color);
    }
  .img-iz__container {
    width: 50%;
    height: 400px;
  }
  .img-iz__content {
        width: 50%;
        padding: 20px 80px;
    }
}
@media screen and (min-width: 1280px) {
}



/** INTERNAS - BASE W-MENU	============== **/

#w-menu .sec-intern__wrapper{
  flex-direction: column;
}
#w-menu .sec-intern__content {
  width: 100%;
  text-align: left;
}
#w-menu .sec-intern__content.history-content{
	width: 100%;
}
#w-menu .sec-intern__content.history-content h2,
#w-menu .sec-intern__content.history-content p{
	width: 100%;
}
#w-menu .sec-intern__content.history-content iframe{
	overflow: hidden;
	border-radius: var(--border-radius);
	width: 100%;
	height: 300px;
}
.history-img {
    width: 100%;
    height: 445px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin: 20px 0 0;
}
.history-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.w-menu__img {
  width: 100%;
  height: 320px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

#menu-intern {
  background-color: var(--bg-color);
  padding: 0;
  margin: 10px 0;
  position: sticky;
  top: 73px;
  z-index: 9;
	display: none;
}
.menu-intern__wrapper {
    flex-direction: column;
    padding: 20px 0;
    min-height: auto;
    align-items: center;
    gap: 15px;
}
.menu-intern__wrapper a {
  color: var(--secondary-color);
  font-weight: 700;
}
.w-menu-sidebar {
    top: 170px;
}
.block-w-menu{
	padding:60px 0;
	border-bottom: 1px solid #a0e2e4;
  scroll-margin-top: 120px;
}
.block-w-menu a {
  color: var(--secondary-color);
  position: relative;
}
.block-w-menu a::after {
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--secondary-color);
  position: absolute;
  opacity: 0;
  visibility: none;
  transition: var(--transition);
}
.block-w-menu a:hover::after {
  visibility: visible;
  opacity: 1;
}
.sec-intern__content .block-w-menu:first-child{
	padding-top: 0;
	scroll-margin-top: 180px;
}
.sec-intern__content .block-w-menu:last-child{
	padding-bottom: 0;
	border-bottom: none;
}
.block-w-menu h2{
	font-size: 2rem;
        line-height: 1.1;
        text-align: left;
}
.enlace-1 {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 30px 20px 20px;
    background-color: var(--quaternary-color);
    border-radius: 25px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
    text-align: center;
    line-height: 1.3;
}
.enlace-2{
	font-size:1.2rem;
	font-weight: 700;
	padding: 30px 20px 20px;
	background-color: var(--secondary-color);
	border-radius: 25px;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	margin-bottom:20px;
	gap: 20px;
	text-align: center;
    line-height: 1.3;
}


.enlace-1 .btn,
.enlace-2 .btn{
	color: #fff;
}
@media screen and (min-width: 580px) {	
	.block-w-menu h2{
	font-size: 2.8rem;
}
  .menu-intern__wrapper {
  flex-direction: row;
  gap: 80px;
  min-height: 70px;
}
    .enlace-1, .enlace-2 {
        padding: 20px 30px;
        flex-direction: row;
        gap: 40px;
		text-align: left;
    }
	#w-menu .sec-intern__content.history-content iframe{
		width: 100%;
		height: 500px;
	}
}
@media screen and (min-width: 980px) {
	#menu-intern {
	display: flex;
}
  #w-menu .sec-intern__wrapper{
  flex-direction: row;
}
  #w-menu .sec-intern__content {
  width: 55%;
  text-align: left;
}
	#w-menu .sec-intern__content.history-content{
	width: 100%;
}
	#w-menu .sec-intern__content.history-content h2,
#w-menu .sec-intern__content.history-content p{
	width: 60%;
}
.w-menu__img {
  width: 45%;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
	#w-menu .sec-intern__content.history-content iframe{
		width: 800px;
		height: 450px;
	}
}
@media screen and (min-width: 1280px) {
}



/** INTERNAS - BLOQUE FAQS	============== **/
#faqs-intern .title h2{
	text-align: center;
}
.faqs__wrapper{
    max-width: 740px;
    margin: 0 auto;
}
.faqs__wrapper strong{
	color: var(--secondary-color);
}
.accordion .accordion-item {
  border-bottom: 1px solid #a0e2e4;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #a0e2e4;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  border: 1px solid #a0e2e4;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  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: 500px;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
#faqs-intern.-ready-page .accordion button[aria-expanded='true'] + .accordion-content {
    max-height: 1990px;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  margin: 2em 0;
}
#faqs-intern.-ready-page .accordion .accordion-content p {
    margin: 10px 0 20px;
}
#faqs-intern.-ready-page .accordion .accordion-content a{
	color: var(--secondary-color);
	text-decoration: underline;
	font-weight: 700;
}
#faqs-intern.-ready-page .accordion .accordion-content h2,
#faqs-intern.-ready-page .accordion .accordion-content h3{
	margin-top: 40px;
}
.accordion .accordion-content ul li, .accordion .accordion-content ol li {
    margin-bottom: 15px;
    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;
}

/** INTERNAS - BLOQUE TEAM	============== **/
#team{
	background-color: var(--bg-color);
}

.team__item-group .title h2{
	text-align: center;
	margin-bottom: 80px;
}
.team-row__grid{
	display: grid;
	grid-template-columns: repeat(1,1fr);
	gap:70px;
}
.item-team {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}
.item-team__img {
    width: 100%;
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    max-width: 205px;
}
.item-team h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.item-team span {    
    display: block;
    line-height: 1.3;
}
.item-team .btn{
	margin-top: 30px;
}
.item-team__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: center;
    align-items: center;
}
.team__item-group {
    border-bottom: 1px solid #a0e2e4;
    padding: 50px 0px;
}
.team__item-group:last-child{
	border-bottom: 0;
}

@media screen and (min-width: 580px) {
	.team-row__grid{
	grid-template-columns: repeat(2,1fr);
	gap:70px;
}	
	
}
@media screen and (min-width: 980px) {
	.team__item-group {
    padding: 50px 80px;
}
	.item-team {
    flex-direction: row;
    gap: 40px;
}
	.item-team__content {
        text-align: left;
        align-items: flex-start;
    }
}
@media screen and (min-width: 1280px) {
}


/** INTERNAS - BLOQUE GALERIA DE FOTOS	============== **/
.photo-gallery__grid{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 25px;
}
.photo-gallery-grid-galery__img{
	width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 1 / 1;
}
@media screen and (min-width: 580px) {
	.photo-gallery__grid{
	grid-template-columns: repeat(4,1fr);
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}


/** INTERNAS - BLOQUE PROCESO	============== **/
#sec-process h2{
	text-align: center;
}
#slider-process {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
}
.process_item {
    padding: 35px;
    gap: 40px;
    display: flex !important;
    align-items: center;
	flex-direction: column;
}
.process_icon{
	width: 120px;
	height: 100px;
	flex: none;
}
.process_item h3 {
    color: var(--secondary-color);
    font-family: var(--primary-color);
    line-height: 1.2;
    margin: 0 0 10px;
}
.slider-content-buttons {
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    justify-content: space-between;
	 color: var(--secondary-color);
    font-size: 1.4rem;
	flex-direction: column;
	display: none;
}
.slider-process-buttons {
    background-color: var(--bg-color);
    border-radius: 12px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}
.slider-process-button {
    padding: 8px 17px;
    border-radius: 12px;
    color: var(--secondary-color);
    font-size: 1.4rem;
}
.slider-process-button.active {
    background-color: var(--tertiary-color);
    color: #fff;
}
@media screen and (min-width: 580px) {
	#sec-process h2{
	text-align: left;
}
	.process_item {
    gap: 40px;
	flex-direction: row;
}
	
}
@media screen and (min-width: 980px) {
	.slider-content-buttons {
	flex-direction: row;
		gap: 50px;
		display: flex;
}
	.slider-process-buttons {
    width: 80%;
}
}
@media screen and (min-width: 1280px) {
}

.team-ovo__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px 35px;
    margin: 40px 0;
    justify-content: center;
}
.team-ovo_item {
    width: 90%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.team-ovo__img {
    width: 100%;
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}
.team-ovo_item h3{
	margin: 20px 0 10px;
}

@media screen and (min-width: 580px) {
	.team-ovo_item {
    width: 45%;
}
}
@media screen and (min-width: 980px) {
	.team-ovo_item {
    width: 30%;
}
}
@media screen and (min-width: 1280px) {
}

/** INTERNAS - BLOQUE GLOSARIO	============== **/
#glosario-fertilidad{
	padding-top: 0;
}
#glosario-fertilidad li {
      cursor: pointer;
    }

    /* Modal básico */
    .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f616ead;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

    .modal {
    background: var(--bg-color);
    padding: 30px 20px;
    max-width: 812px;
    border-radius: var(--border-radius);
    position: relative;
    text-align: center;
		margin: 20px;
}
.modal::after {
    content: "";
    position: absolute;
    width: 165px;
    height: 165px;
    right: -50px;
    top: -40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url(../images/hexa-2.svg);
    z-index: -1;
}

    .modal h3 {
    margin-top: 0;
    font-size: 2.3rem;
    margin-bottom: 40px;
}

    .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-overlay-team .modal {
    padding: 30px 25px;
}

.modal__wrapper{
	flex-direction: column;
	gap:40px;
}
.modal-team_img{
	width: 100%;
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    max-width: 210px;
}
.modal-col-1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}
.modal-col-2{
	width: 100%;
}
#modal-texto {
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
    padding: 0 20px 0 0;
}
#modal-overlay-team .title{
	margin-bottom: 30px;
}
#modal-overlay-team .title h2 {
    margin-bottom: 10px;
}
#modal-overlay-team .title span {
    text-align: center;
    display: block;
    color: var(--secondary-color);
    line-height: 1.3;
}
@media screen and (min-width: 580px) {
	.modal {
    padding: 75px;
}
	 .modal h3 {
    font-size: 2.8rem;
}
	.modal__wrapper{
	flex-direction: row;
	gap:40px;
}
	.modal-col-1 {
    width: 40%;
}
.modal-col-2{
	width: 60%;
}
	#modal-overlay-team .modal{
	padding: 60px 40px;
}
	.modal-team_img{
    max-width: 275px;
}
	#modal-overlay-team .title span{
	    text-align: left;
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}


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


#pres-contact {
    padding: 0;
    margin: 25px 0 0;
    position: relative;
    overflow: hidden;
}
#pres-contact .container {
  height: 100%;
}
.pres-contact__bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.pres-contact__wrapper {
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.pres-contact__wrapper > div:nth-child(1) {
  width: 100%;
}
.pres-contact__content {
  position: relative;
  width: 100%;
  padding: 45px 30px;
  margin: 50px 0;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.pres-contact__content p {
  color: #fff;
}
.pres-contact__content::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e86531;
  border-radius: var(--border-radius);
  opacity: 0.9;
  z-index: -1;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .pres-contact__wrapper {
    flex-direction: row;
    height: 100%;
  }
  .pres-contact__wrapper > div:nth-child(1) {
    width: 45%;
  }
  .pres-contact__content {
    width: 55%;
    padding: 50px 60px;
    min-height: 422px;
    text-align: left;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1280px) {
}



/** CONTACTO - FORM	============== **/
.form-group span {
    padding: 0;
    font-size: 1rem;
    margin-bottom: 0;
    display: block;
}
.form-group p{
	margin-bottom:0;
}
.form-group span::before{
	display: none!important;
}
.form-group .btn {
    position: relative;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    width: fit-content;
    font-size: var(--text-content-size);
    transition: var(--transition);
    overflow: hidden;
    height: 48px;
    align-items: center;
    padding: 5px 20px;
    min-width: 165px;
    text-align: center;
    justify-content: center;
}

@media screen and (min-width: 580px) {
	.pres-contact__content .form-group:last-child{
	margin-bottom:0;
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}


/** CONTACTO - DATOS	============== **/
#datos-contact{
	background-color: var(--primary-color);
}
.datos-contact__wrapper a{
	display: flex;
	gap: 8px;
	color: #fff;
}
.datos-contact__wrapper a > img {
    width: 17px;
    height: 17px;
}
.datos-contact__wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    text-align: center;
}
.datos-contact__wrapper .horario {
    max-width: 418px;
    display: block;
    line-height: 1.5;
}
.datos-contact__wrapper .horario p{
	color: #fff;
	margin-bottom: 0;
}
@media screen and (min-width: 580px) {	
}
@media screen and (min-width: 980px) {
	.datos-contact__wrapper {
	flex-direction: row;
		gap:0;
		text-align: left;
}
}
@media screen and (min-width: 1280px) {
}


/** CONTACTO - MAPA	============== **/
#map-contact{
	padding: 100px 0;
}
.map-contact__wrapper {
	flex-direction: column;
    gap: 70px;
    align-items: center;
}
.map-contact__map{
	width: 100%;
	height: 460px;
	border-radius: var(--border-radius);
	overflow: hidden;
}
.map-contact__content{
	width: 100%;
	text-align: center;
}
.map-contact__content strong{
	color: var(--secondary-color);
}
.map-contact__map iframe{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (min-width: 580px) {

}
@media screen and (min-width: 980px) {
		.map-contact__wrapper {
	flex-direction: row;
}
	.map-contact__map{
	width: 50%;
}
.map-contact__content{
	width: 50%;
	text-align: left;
}
}
@media screen and (min-width: 1280px) {
}



/** CONTACTO - SERVICIOS	============== **/
#contact-services {
  padding: 0;
}
#contact-services .container {
  padding: 0;
}
#contact-services #testi-slider {
	margin-bottom: 100px;
}
#contact-services .testi-slider__img {
	height: 500px;
}
#contact-services h3{
	color: var(--secondary-color);
}
#contact-services .title {
    max-width: 570px;
    margin: 0 auto 40px;
}
#contact-services .title h2{
	text-align: center;
}


/**
*	AYUDA AL PACIENTE
*	=======================================================================================================
**/
#pres-ayuda{
	padding-bottom:100px;
}
#pres-ayuda .title h1{
	text-align: center;
}
.pres-ayuda__wrapper{
	flex-direction: column;
    justify-content: center;
    gap: 40px;
    margin-top: 75px;
}
#pres-ayuda .list-categories li {
    position: relative;
    padding-left: 65px;
    margin-bottom: 40px;
    transition: var(--transition);
}
#pres-ayuda .list-categories li:last-child {
    margin-bottom: 0;
}
#pres-ayuda .list-categories li::before {
    position: absolute;
    content: "";
    width: 43px;
    height: 43px;
    top: 50%;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    transform: translateY(-50%);
}
#pres-ayuda .list-categories li:hover{
  transform: translateX(10px);
}
#pres-ayuda .list-categories li:nth-child(1)::before,
#pres-ayuda .list-categories li:nth-child(6)::before{
  background-image: url(../images/hexa-1.svg);
}
#pres-ayuda .list-categories li:nth-child(2)::before{
  background-image: url(../images/hexa-2.svg);
}
#pres-ayuda .list-categories li:nth-child(3)::before{
  background-image: url(../images/hexa-3.svg);
}
#pres-ayuda .list-categories li:nth-child(4)::before{
  background-image: url(../images/hexa-4.svg);
}
#pres-ayuda .list-categories li:nth-child(5)::before{
  background-image: url(../images/hexa-5.svg);
}
@media screen and (min-width: 580px) {
	.pres-ayuda__wrapper{
	flex-direction: row;
		gap: 100px;
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*	PLANTILLA MEDICAMENTO
*	=======================================================================================================
**/
#sec-pres-medicamento .title h1{
	text-align: center;
}
.inner-medicamento{
	max-width: 870px;
	margin: 0 auto;
}
.video-tratamiento{
	width: 100%;
	height: 300px;
	border-radius: var(--border-radius);
	overflow: hidden;
	margin-bottom:45px;
}
.video-tratamiento iframe{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (min-width: 580px) {
	.video-tratamiento{
	height: 520px;
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}

/**
*	PÁGINA WEBPAY
*	=======================================================================================================
**/
.webpay .sec-intern__wrapper{
	align-items: center;
}


/**
*	PÁGINA CÓMO INICIO EL PROCESO
*	=======================================================================================================
**/
#sec-img-list .pasos-proceso li::before {
    top: 15px;
}
#sec-img-list .pasos-proceso li {
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 30px;
}
#sec-img-list .pasos-proceso li ul li {
    border-bottom: none;
    padding-bottom: 0;
    padding-left: 20px;
    margin-bottom: 15px;
}
#sec-img-list .pasos-proceso li ul li::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    left: 0;
    top: 8px;
    background-color: var(--secondary-color);
    background-image: none !important;
}


/**
*	PÁGINA NOSOTROS - EXCELENCIA MÉDICA
*	=======================================================================================================
**/

.list-pres-nos {
  columns: 1;
  -webkit-columns: 1;
  -moz-columns: 1;
  column-gap: 20px;
  list-style-position: inside;
}
.list-pres-nos li {
    position: relative !important;
    padding: 20px 0px;
    padding-left: 53px !important;
    break-inside: avoid !important;
    margin: 0 !important;
}
.list-pres-nos li a{
	color: var(--secondary-color);
	font-weight: 700;
}
.list-pres-nos li::before {
    position: absolute!important;
    content: "";
    width: 43px!important;
    height: 43px!important;
    top: 50%!important;
    left: 0!important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    transform: translateY(-50%);
	border-radius:0!important;
	background-color: transparent!important;
}
.list-pres-nos li:nth-child(1)::before,
.list-pres-nos li:nth-child(5)::before{
  background-image: url(../images/hexa-1.svg);
}
.list-pres-nos li:nth-child(2)::before{
  background-image: url(../images/hexa-2.svg);
}
.list-pres-nos li:nth-child(3)::before{
  background-image: url(../images/hexa-3.svg);
}
.list-pres-nos li:nth-child(4)::before{
  background-image: url(../images/hexa-4.svg);
}


@media screen and (min-width: 580px) {
	.list-pres-nos{
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
	.list-pres-nos.-equipo{
		columns: 1;
  -webkit-columns: 1;
  -moz-columns: 1;
	}
	.list-pres-nos li {
    padding: 25px 0px;
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}


/**
*	PRELOADER
*	=======================================================================================================
**/
#preloader *:before,
#preloader *:after {
  box-sizing: border-box;
}

#preloader {
  background: url(../images/bg-iso-hero-2.svg), url(../images/iso-logo.svg),
    var(--primary-color);
  background-size: 200px, 200px, 100%;
  background-repeat: no-repeat;
  background-position: top -50px right, bottom -55px left, center;
  height: 100%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 23px;
  color: #fff;
  font-weight: 600;
}
.load{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);
  /*change these sizes to fit into your project*/
  width:100px;
  height:100px;
}
.load hr{border:0;
	margin:0;
	width:40%;
	height:40%;
	position:absolute;
	border-radius:50%;
	animation:spin 2s ease infinite}

.load :first-child{
	background:var(--bg-color);
	animation-delay:-1.5s
}
.load :nth-child(2){
	background:var(--secondary-color);
	animation-delay:-1s
}
.load :nth-child(3){
	background:var(--tertiary-color);
	animation-delay:-0.5s
}
.load :last-child{
	background:var(--quaternary-color);
}

@keyframes spin{
  0%,100%{transform:translate(0)}
  25%{transform:translate(160%)}
  50%{transform:translate(160%, 160%)}
  75%{transform:translate(0, 160%)}
}
@media screen and (min-width: 580px) {
	#preloader {
  background-size: 272px, 272px, 100%;
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}


/**
*	PLANTILLA LISTA
*	=======================================================================================================
**/
.sec-list-grid{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
}
.sec-list-grid__item{
	flex-direction: column;
	gap:40px;
	padding: 47px 0;
	border-bottom: 1px solid #a0e2e4;
}
.sec-list-grid__img {
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}
.sec-list-grid__content{
	width: 100%;
}
.sec-list-grid__content h2 {
    padding: 30px 0 30px 60px;
    margin-bottom: 0;
    position: relative;
    line-height: 1.3;
}
.sec-list-grid__content h2::before {
    position: absolute;
    content: "";
    width: 43px;
    height: 43px;
    top: 50%;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    transform: translateY(-50%);
}
.sec-list-grid__content ul li, .sec-list-grid__content ol li {
    margin-bottom: 15px;
    position: relative;
    line-height: 1.5;
}
.sec-list-grid__content ul li {
    padding-left: 20px;
}
.sec-list-grid__content ul li::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50px;
    left: 0;
    top: 8px;
    background-color: var(--secondary-color);
}
.sec-list-grid__item:nth-child(1) .sec-list-grid__content h2::before,
.sec-list-grid__item:nth-child(6) .sec-list-grid__content h2::before{
  background-image: url('../images/hexa-1.svg');
}
.sec-list-grid__item:nth-child(2) .sec-list-grid__content h2::before,
.sec-list-grid__item:nth-child(7) .sec-list-grid__content h2::before{
  background-image: url('../images/hexa-2.svg');
}
.sec-list-grid__item:nth-child(3) .sec-list-grid__content h2::before,
.sec-list-grid__item:nth-child(8) .sec-list-grid__content h2::before{
  background-image: url('../images/hexa-3.svg');
}
.sec-list-grid__item:nth-child(4) .sec-list-grid__content h2::before {
  background-image: url('../images/hexa-4.svg');
}
.sec-list-grid__item:nth-child(5) .sec-list-grid__content h2::before {
  background-image: url('../images/hexa-5.svg');
}
.sec-list-grid__content strong{
	color: var(--secondary-color);
}
.sec-list-grid__item:last-child{
	border-bottom: none;
}

@media screen and (min-width: 580px) {
	.sec-list-grid__item{
	flex-direction: row;
}
	.sec-list-grid__img {
		width: 40%;
	}
	.sec-list-grid__content{
		width: 60%;
	}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}


/**
*	MANTENIMIENTO
*	=======================================================================================================
**/
header.mantenimiento .topbar__wrapper {
    justify-content: center;
}
header.mantenimiento .header__datos {
    gap: 60px;
}
header.mantenimiento .header-middle__wrapper {
    padding: 20px 0;
    justify-content: center;
}
header.mantenimiento .header__redes {
    display:none;
}
header.mantenimiento .btn-header{
	display: none;
}
#header-sticky.activeFixed.mantenimiento{
	display: none!important;
}
@media screen and (min-width: 580px) {
	header.mantenimiento .header-middle__wrapper {
    justify-content: space-between;
}
	header.mantenimiento .header__redes {
    display: flex;
}
	header.mantenimiento .btn-header{
	display: flex;
}
}
@media screen and (min-width: 980px) {
}
@media screen and (min-width: 1280px) {
}


#welcome.mantenimiento{
	position: relative;
	height: 590px;
}
#welcome .welcome__wrapper{
    flex-direction: row;
	justify-content: center;
	align-items: center;
}
#welcome.mantenimiento .img-fondo {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
}
#welcome.mantenimiento h1{
	text-align: center;
    color: #fff;
}
#welcome.mantenimiento .welcome-content__wrapper {
	align-items: center;
	min-height: auto;
	margin: 100px 0;
}
#destacados.mantenimiento .destacados-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    align-items: center;
    background-color: var(--primary-color);
    padding: 35px;
    border-radius: var(--border-radius);
}
#destacados.mantenimiento .destacados-grid__item {
    padding: 40px 0;
}
#destacados.mantenimiento .destacados-grid > .destacados-grid__item:nth-child(1) {
    padding-top: 0;
}
#destacados.mantenimiento .destacados-grid > .destacados-grid__item:nth-child(3) {
  border-right: none;
  border-bottom: none;
  padding-bottom: 0;
}
#destacados.mantenimiento {
    background-color: transparent;
    padding: 0;
    margin: -115px 0;
}
#destacados.mantenimiento  .destacados-grid__item h3 {
    line-height: 1.3;
}
@media screen and (min-width: 580px) {

}
@media screen and (min-width: 980px) {
		#destacados.mantenimiento .destacados-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: center;
    background-color: var(--primary-color);
    padding: 35px;
    border-radius: var(--border-radius);
}
	#destacados.mantenimiento .destacados-grid__item {
	padding: 0 40px;
}
	#destacados.mantenimiento .destacados-grid > .destacados-grid__item:nth-child(1) {
    padding-left: 0;
}
#destacados.mantenimiento .destacados-grid > .destacados-grid__item:nth-child(3) {
  border-right: none;
  border-bottom: none;
  padding-right: 0;
}
}
@media screen and (min-width: 1280px) {
}


#diferencias.mantenimiento {
    padding: 110px 0 0;
}
#w-menu.mantenimiento{
	padding: 120px 0;
}
#w-menu.mantenimiento h6 {
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
#w-menu.mantenimiento .w-menu__img {
    height: 440px;
	position: sticky;
    top: 30px;
}
#w-menu.mantenimiento .sec-intern__wrapper {
	gap: 66px;
}
#w-menu.mantenimiento .sec-intern__content {
    text-align: center;
}
#w-menu.mantenimiento.-reverse .sec-intern__wrapper {
	flex-direction: column-reverse;
}
#w-menu.mantenimiento.-reverse{
	background-color: var(--bg-color);
}
#w-menu.mantenimiento.-reverse .w-menu__img {
	border-radius: var(--border-radius);
}
#w-menu.mantenimiento.-reverse h6{
	background-color: var(--secondary-color);
	color: #fff;
}
#w-menu.mantenimiento .title h2{
	font-size: 2.3rem;
	line-height: 1.1;
	text-align: center;
}
#w-menu.mantenimiento #sec-1,
#w-menu.mantenimiento #sec-2,
#w-menu.mantenimiento #sec-3{
	scroll-margin-top: 100px;
}
@media screen and (min-width: 580px) {	
	#w-menu.mantenimiento .title h2{
	font-size: 2.8rem;
		text-align: left;
}
	#w-menu.mantenimiento .sec-intern__content {
    text-align: left;
}
	#w-menu.mantenimiento.-reverse .w-menu__img {
	border-radius: var(--border-radius) 0 0 var(--border-radius);
}
	#w-menu.mantenimiento h6{
	    justify-content: space-between;
    align-items: center;
	flex-direction: row;
	gap:5px;
}
}
@media screen and (min-width: 980px) {
	#w-menu.mantenimiento.-reverse .sec-intern__wrapper {
	flex-direction: row;
}
}
@media screen and (min-width: 1280px) {
}



#numbers.mantenimiento {
    padding: 48px 0;
	background-color: var(--bg-color);
}
#contact-home.mantenimiento .contact-home-form{
	background-color: transparent;
}
#contact-home.mantenimiento {
    margin-bottom: 0;
    background: var(--secondary-color);
}
#contact-home.mantenimiento .contact-home-content{
	background-color: transparent;
}
#contact-home.mantenimiento .btn-secondary{
	background-color: var(--primary-color);
}
@media screen and (min-width: 580px) {	
}
@media screen and (min-width: 980px) {
	#contact-home.mantenimiento {
    margin-bottom: 0;
    background: linear-gradient(to right, var(--secondary-color) 40%, transparent 40%), url(../images/img-form.jpg);
    background-size: 100%, 60%;
    background-repeat: no-repeat;
    background-position: right center;
}
	#contact-home.mantenimiento .btn-secondary{
	background-color: var(--secondary-color);
}
}
@media screen and (min-width: 1280px) {
}



footer.mantenimiento .footer-middle__content {
    align-items: center;
    justify-content: space-between;
    color: var(--bg-color);
    padding: 45px 0;
}
footer.mantenimiento .footer-col__logo img {
    width: 305px;
    margin-bottom: 0;
}
footer.mantenimiento .footer-bottom {
	border-top: 1px solid var(--bg-color);
}
footer.mantenimiento{
	background-color: var(--primary-color);
}




/**
*	BLOG
*	=======================================================================================================
**/
#main-blog {
    padding: 0 0 100px;
}
.main-blog-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 60px;
}
.main-blog-wrapper article{
  width: 100%;
}
.main-blog-wrapper article .title {
  margin-bottom: 30px;
	text-align: center;
}
.aside-blog {
    width: 100%;
    height: fit-content;
    position: sticky;
    top: 125px;
}
.aside-blog section{
    padding: 0;
}
.aside-blog h3 {
    font-size: 1.8rem;
    font-family: var(--secondary-font);
    color: #fff;
    line-height: 1.2;
}
.aside-blog h2 {
	    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 1.3rem;
}
.aside-blog .widget_block:first-child h3{
	margin-top: 0;
}
.aside-blog .widget_block:first-child {
    padding: 0;
}
.aside-blog .cat-item {
    margin-bottom: 10px;
    color: var(--secondary-color);
}
.articles-blog__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 35px;
    width: 100%;
    position: relative;
    margin-bottom: 80px;
}
.articles-blog__grid .card-article__img {
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    aspect-ratio: 4 / 3;
}
.articles-blog__grid .pagination {
    position: absolute;
    bottom: -30px;
    width: 100%;
    left: 0;
    text-align: center;
}
.articles-blog__grid .pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: var(--primary-color);
}
.card-article-content h3 {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    margin-top: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
}
.card-article img{
	transition: var(--transition);
}
.card-article:hover img{
	transform: scale(1.05);
}
@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%;
  }
	.main-blog-wrapper article .title {
	text-align: left;
}
  .aside-blog{
    width: 25%;
  }
	.articles-blog__grid{
	grid-template-columns: repeat(3,1fr);
		width: 75%;
}
}
@media screen and (min-width: 1280px) {
}



/**
*	SINGLE ARTICLE
*	=======================================================================================================
**/
.blog__header {
    border-bottom: 1px solid #a0e2e4;
}
.blog__header h2{
	margin-bottom: 15px;
}
.main-blog-wrapper .fecha {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}
.main-blog-wrapper h1.entry-title {
    margin-bottom: 15px;
}
.content-article figure {
    margin: 40px 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    display: flex;
}
.content-article figure.wp-block-image img {
    width: 100%;
}
.content-article h2{
	font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.content-article p strong,
.content-article li strong{
	color: var(--secondary-color);
}
.content-article li {
    list-style: auto;
    margin: 0 0 15px 18px;
    padding: 0 0 0 10px;
    font-size: var(--text-content-size);
    line-height: 1.5;
    color: #5e5e5e;
}
.content-article ul li{
	list-style: disc;
}
.content-article .wp-block-separator {
    border-top: 2px solid var(--bg-color);
    margin: 50px 0;
}
.content-article .wp-block-button__link {
    position: relative;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    width: fit-content;
    font-size: var(--text-content-size);
    transition: var(--transition);
    overflow: hidden;
    height: 48px;
    align-items: center;
    padding: 5px 20px;
    min-width: 165px;
    text-align: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: #fff;
    margin: 0px 0 20px;
}
.content-article .wp-block-button__link:hover{
	background-color: var(--tertiary-color);
}
.content-article .tags {
    margin: 10px 0 25px;
}
.content-article .tags  a{
   color: var(--secondary-color);
}
.block-sidebar-blog{
	border-radius: var(--border-radius);
	background-color: var(--secondary-color);
	padding: 30px 25px;
	text-align: center;
	color: #fff;
	margin-top:50px;
}
.block-sidebar-blog p{
	color: #fff;
	margin-bottom: 0;
}