/* ROOT VARS */
:root {
 --font-default: "Lato", sans-serif;
 --font-primary: "Lato", sans-serif;

 --color-default-light: #ffffff;
 --color-default: #727376;
 --color-default-dark: #000000;

 --color-primary-light: #eb7f98;
 --color-primary: #e8597a;
 --color-primary-dark: #eb3963;

 --color-secondary-light: #9e83ff;
 --color-secondary: #855afd;
 --color-secondary-dark: #683eff;

 --color-white: #ffffff;
 --color-light: #f3f5fa;
 --color-dark: #000024;

 --regular-shaodw: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;

 --regular-shaodw: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;

 scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
 font-family: var(--font-default);
 color: var(--color-default);
 font-weight: 600;
}

a {
 color: var(--color-primary);
 text-decoration: none;
}

a:hover {
 color: var(--color-primary-light);
 text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
 font-family: var(--font-default);
 color: var(--color-default-dark);
}

p {
 font-size: 14px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 z-index: 9999;
 overflow: hidden;
 background: var(--color-primary-dark);
}
#preloader img {
 width: 100px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
 position: fixed;
 visibility: hidden;
 opacity: 0;
 right: 15px;
 bottom: 15px;
 z-index: 996;
 background: #25d366;
 width: 60px;
 height: 60px;
 border-radius: 50px;
 transition: all 0.4s;
}

.back-to-top i {
 font-size: 24px;
 color: #fff;
 line-height: 0;
}

.back-to-top:hover {
 background: #075e54;
 color: #fff;
}

.back-to-top.active {
 visibility: visible;
 opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
 transition: all 0.5s;
 z-index: 997;
 padding: 15px 0;
 background-color: var(--color-primary);
}

#header.header-scrolled,
#header.header-inner-pages {
 background: var(--color-primary);
}

#logo {
 max-height: 50px;
}

@media only screen and (max-width: 1010px) {
  #logo {
    max-height: 40px;
   }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
 padding: 0;
}

.navbar ul {
 margin: 0;
 padding: 0;
 display: flex;
 list-style: none;
 align-items: center;
}

.navbar li {
 position: relative;
}

.navbar a,
.navbar a:focus {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 10px 0 10px 30px;
 font-size: 15px;
 font-weight: bold;
 color: rgb(255, 255, 255, 0.7);
 white-space: nowrap;
 transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
 font-size: 12px;
 line-height: 0;
 margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
 color: var(--color-default-light);
}

/*
* HEADER SCROLLED
*/
#header.header-scrolled .navbar a,
#header.header-inner-pages .navbar a,
#header.header-scrolled .navbar a:focus,
#header.header-inner-pages .navbar a:focus {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 10px 0 10px 30px;
 font-size: 15px;
 font-weight: bold;
 color: rgba(255, 255, 255, 0.7);
 white-space: nowrap;
 transition: 0.3s;
}

#header.header-scrolled .navbar a i,
#header.header-inner-pages .navbar a:focus i,
#header.header-scrolled .navbar a i,
#header.header-inner-pages .navbar a:focus i {
 font-size: 12px;
 line-height: 0;
 margin-left: 5px;
}

#header.header-scrolled .navbar a:hover,
#header.header-inner-pages .navbar a:hover,
#header.header-scrolled .navbar .active,
#header.header-inner-pages .navbar .active,
#header.header-scrolled .navbar .active:focus,
#header.header-inner-pages .navbar .active:focus,
#header.header-scrolled .navbar li:hover > a,
#header.header-inner-pages .navbar li:hover > a {
 color: var(--color-white);
}

.getstarted,
.getstarted:focus {
 padding: 8px 35px;
 margin-left: 30px;
 border-radius: 2rem;
 color: var(--color-primary);
 background: var(--color-white);
 font-size: 14px;
 border: 2px solid var(--color-primary);
 font-weight: 600;
 transition: all 0.3s;
}

.getstarted:hover,
.getstarted:focus:hover {
 border: 2px solid var(--color-white);
 color: var(--color-white);
 background: var(--color-primary);
 transition: all 0.3s;
}

.btn-get-started {
 font-family: var(--font-default);
 font-weight: 500;
 font-size: 16px;
 letter-spacing: 1px;
 display: inline-block;
 padding: 10px 28px 11px 28px;
 border-radius: 0.5rem;
 transition: 0.3s;
 margin: 10px 0 0 0;
 color: var(--color-white);
 background: var(--color-primary);
 border: none;
}

.btn-get-started:hover {
 background: var(--color-primary-light);
}

.contact-list li {
 margin-bottom: 10px;
}
.contact-list li a {
 color: var(--color-default);
 transition: 0.3s;
}
.contact-list li a:hover {
 color: var(--color-primary);
 transition: 0.3s;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
 color: var(--color-default-light);
 font-size: 28px;
 cursor: pointer;
 display: none;
 line-height: 0;
 transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
 color: var(--color-white);
}

@media (max-width: 991px) {
 .mobile-nav-toggle {
  display: block;
 }

 .navbar ul {
  display: none;
 }
}

.navbar-mobile {
 position: fixed;
 overflow: hidden;
 top: 0;
 right: 0;
 left: 0;
 bottom: 0;
 background: rgba(0, 0, 0, 0.5);
 transition: 0.3s;
 z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
 position: absolute;
 top: 15px;
 right: 15px;
}

.navbar-mobile ul {
 display: flex;
 align-items: center;
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 padding: 10px 0;
 border-radius: 0;
 background-color: var(--color-primary);
 overflow-y: auto;
 transition: 0.3s;
 align-content: center;
 flex-direction: column;
 justify-content: center;
}

.navbar-mobile a,
.navbar-mobile a:focus {
 padding: 10px 20px;
 font-size: 24px;
 color: rgba(255, 255, 255, 0.5);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
 color: var(--color-white);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
 margin: 15px;
 color: var(--color-dark);
}

.navbar-mobile .dropdown ul {
 position: static;
 display: none;
 margin: 10px 20px;
 padding: 10px 0;
 z-index: 99;
 opacity: 1;
 visibility: visible;
 background: var(--color-white);
 border: 1px solid var(--color-light);
 box-shadow: none;
}

.navbar-mobile .dropdown ul li {
 min-width: 200px;
}

.navbar-mobile .dropdown ul a {
 padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
 font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
 color: var(--color-primary);
}

.navbar-mobile .dropdown > .dropdown-active {
 display: block;
}

.navbar-mobile .getstarted {
 display: flex;
 justify-content: center;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
 padding: 40px 0;
 overflow: hidden;
}
.bg-cover {
 background-position: center;
 background-size: cover;
 width: 100%;
}

.bg-cover-cuadrado {
 background-position: center;
 background-size: cover;
 width: 100%;
 content: "";
 padding-bottom: 100%;
 border-radius: .5rem;
 height: 78px;
}

.title-not-rel{
  transition: all .3s;
}
.title-not-rel:hover{
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# SWIPER PRINCIPAL
--------------------------------------------------------------*/
.swiper {
 width: 100%;
 height: 50%;
}

.swiper-slide {
 background-position: center;
 background-size: cover;
}

.swiper-pagination-bullet {
 background-color: var(--color-primary) !important;
}

.slider-img {
 position: relative;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 height: 60vh;
}

.slide-title {
 position: absolute;
 top: 28%;
 left: 4%;
 right: 4%;
}

.btn-slider-principal,
.btn-slider-principal:focus {
 position: absolute;
 padding: 10px 35px;
 margin-top: 20px;
 border-radius: 0.5rem;
 color: var(--color-default-light);
 background: var(--color-primary);
 font-size: 17px;
 font-weight: 600;
 transition: all 0.3s;
}

.btn-slider-principal:hover,
.btn-slider-principal:focus:hover {
 color: var(--color-primary);
 background: var(--color-default-light);
 transition: all 0.3s;
}

@media only screen and (max-width: 800px) {
 .slide-title h1 {
  font-size: 40px !important;
 }
}

@media only screen and (max-width: 600px) {
 .slide-title {
  position: absolute;
  top: 30%;
 }
 .slide-title h1 {
  font-size: 30px !important;
 }
}

/*--------------------------------------------------------------
# Seccion Introduccion
--------------------------------------------------------------*/
.introduccion h6 {
 color: var(--color-primary);
 font-size: 18px;
}

.introduccion p {
 font-size: 16px;
 color: var(--color-default);
}

.introduccion a {
 position: relative;
 top: 20px;
 padding: 8px 25px;
 border-radius: 3rem;
 border: 2px solid var(--color-primary);
 color: var(--color-default-light);
 background: var(--color-primary);
 font-weight: 600;
 transition: all 0.3s;
}

.introduccion a:hover {
 background-color: var(--color-default-light);
 color: var(--color-primary);
 border: 2px solid var(--color-primary);
}

@media only screen and (max-width: 800px) {
 .introduccion img {
  width: 40% !important;
 }
 .introduccion p {
  margin-bottom: 0px;
 }
}

@media only screen and (max-width: 600px) {
  .introduccion{
    margin-top: 450px !important;
  }
 .introduccion img {
  width: 60% !important;
 }
}

/*--------------------------------------------------------------
# CTA WPP
--------------------------------------------------------------*/
.cta-wpp {
 background-image: url(../img/cta-wpp.jpg);
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 padding-bottom: 8%;
}

.cta-wpp h4 {
 position: relative;
 color: var(--color-primary);
 font-size: 30px;
 font-family: var(--font-default);
 font-weight: 600;
}

.btn-cta {
 position: relative;
 top: 20px;
 padding: 8px 35px;
 border-radius: 3rem;
 color: var(--color-default-light);
 border: 2px solid #25d366;
 background: #25d366;
 font-weight: 600;
 transition: all 0.3s;
 text-align: center;
}

.btn-cta:hover {
 background-color: var(--color-default-light);
 border: 2px solid #25d366;
 color: #25d366;
}

.barra-lateral {
 border-right: 2px solid var(--color-default) !important;
}

.cta-wpp-2 h4 {
 color: var(--color-default);
}

.cta-wpp-2 p {
 color: var(--color-primary);
 font-size: 18px;
}

.cta-wpp-2 span {
 color: var(--color-default);
 font-size: 18px;
}

@media only screen and (max-width: 1000px) {
 .cta-wpp h4 {
  top: 0px !important;
 }
}

@media only screen and (max-width: 770px) {
 .cta-wpp {
  padding-bottom: 13%;
 }
 .btn-cta {
  margin-left: 50px;
 }
 .barra-lateral {
  border-right: none !important;
 }

 .cta-wpp h4 {
  margin-left: 50px;
  top: 0px !important;
 }

 .cta-wpp-2 {
  display: none !important;
 }
}

/*--------------------------------------------------------------
# Novedades
--------------------------------------------------------------*/
.section-title {
 color: var(--color-primary);
 font-weight: 800;
 font-family: var(--font-default);
}

.see-more {
 border: 2px solid var(--color-primary);
 border-radius: 3rem;
 padding: 10px 35px;
 transition: all 0.3s;
 font-size: 17px;
}

.see-more:hover {
 background-color: var(--color-primary);
 color: var(--color-default-light);
}

.novedades .card-img {
  position: relative;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 padding-bottom: 50%;
}

.badge{
  position: absolute;
  top: 10px;
  left: 10px;
}

.card-title {
 color: var(--color-primary);
 font-weight: 800;
}

.btn-novedades {
 background-color: var(--color-primary);
 color: var(--color-light);
 padding: 8px 25px;
 border: 2px solid var(--color-primary);
 transition: all 0.3s;
}

.btn-novedades:hover {
 background-color: var(--color-default-light);
 color: var(--color-primary);
 border: 2px solid var(--color-primary);
}

/*--------------------------------------------------------------
# INFO_LAB
--------------------------------------------------------------*/
.container_info h4 {
 color: var(--color-primary);
 font-weight: 800;
}
.container_info {
 border-right: 2px solid var(--color-primary);
}

.container_info p {
 font-size: 16px;
 color: var(--color-default);
}
.container_info {
 min-height: 170px;
}
.img-lab {
 width: 25%;
}
.img-lab-esp {
 width: 60%;
}

@media only screen and (max-width: 991px) {
 .container_info {
  border-right: none;
 }
 .img-lab-esp {
  width: 25% !important;
 }
 .img-lab {
  width: 10% !important;
 }
}

/*--------------------------------------------------------------
# Obras Sociales
--------------------------------------------------------------*/
.obras-sociales {
 width: calc(100% - 30px);
 margin: 0 15px 30px;
 padding: 25px 10px;
}
.obras-sociales ul {
 list-style-type: none; /* Elimina las viñetas predeterminadas */
 flex: 1;
 margin: 20px 0;
 padding: 0;
 font-weight: 400;
 font-style: normal;
 font-size: 14px;
 letter-spacing: 0em;
 line-height: 1.9em;
 text-transform: none;
 color: #4d433d;
 margin: 0 auto;
 display: block;
 width: 100%;
}
.obras-sociales li {
 font-family: var(--font-default);
 float: left;
 text-align: left;
 width: 33%;
 display: list-item;
 margin-right: 0px;
 padding: 0 0px;
 position: relative; /* Agrega esto para que el pseudo-elemento sea relativo al elemento de la lista */
}

/* Agrega el siguiente CSS para cambiar el color de las viñetas */
.obras-sociales li::before {
 content: "•"; /* Reemplaza esto con el carácter que prefieras para la viñeta */
 color: var(
  --color-primary
 ); /* Cambia el color aquí (por ejemplo, rojo, azul, #ff0000, etc.) */
 margin-right: 5px; /* Ajusta el espaciado entre la viñeta y el texto */
}

@media only screen and (max-width: 1000px) {
 .obras-sociales li {
  width: 50%;
 }
}

@media only screen and (max-width: 400px) {
 .obras-sociales li {
  width: 100%;
 }
}









/*--------------------------------------------------------------
# QUIENES SOMOS
--------------------------------------------------------------*/
.encabezado{
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 30%;
}

@media only screen and (max-width: 600px) {
  .encabezado{
    padding-bottom: 50%;
  }
 }

 @media only screen and (max-width: 500px) {
  .encabezado{
    padding-bottom: 70%;
  }
 }

.mision-valor{
  list-style: none;
}

.mision-valor li::before {
  content: "•"; /* Reemplaza esto con el carácter que prefieras para la viñeta */
  color: var(
   --color-primary
  ); /* Cambia el color aquí (por ejemplo, rojo, azul, #ff0000, etc.) */
  margin-right: 5px; /* Ajusta el espaciado entre la viñeta y el texto */
 }

.quienes_somos_text{
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}












/*--------------------------------------------------------------
# Consejos
--------------------------------------------------------------*/
.consejos{
  border: 2px solid var(--color-primary);
  border-radius: 3rem;
  padding: 30px;
}







/*--------------------------------------------------------------
# Pacientes
--------------------------------------------------------------*/
.horario_de_atencion{
  border: 2px solid var(--color-primary);
  border-radius: 3rem;
  transition: all .3s;
  min-height: 200px;
}

.accordion-button:focus{
  border-color: var(--color-primary) !important;
  outline: 0 !important;
  box-shadow: var(--color-primary) !important;
}
.accordion-button:not(.collapsed){
  color: var(--color-default-light);
  background-color: #e8597aac;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;    
}









/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/

.half-fluid .left-half,
.half-fluid .right-half {
  left: 50%;
  margin-left: -50vw;
  max-width: 100vw;
  position: relative;
  right: 50%;
  width: 100vw;
}

@media (min-width: 992px) {
  .half-fluid .left-half {
    padding-left: 0 !important;
    position: absolute;
    left: 0;
    right: 50%;
    margin-left: auto;
    width: auto;
  }
  .half-fluid .right-half {
    padding-right: 0 !important;
    position: absolute;
    right: 0;
    left: 50%;
    margin-left: auto;
    width: auto;
  }
}


.mapa {
  width: 100%;
  height: 1000px;
}

.btn-contacto{
  background-color: var(--color-primary);
  transition: all .3s;
  color: var(--color-default-light);
}
.btn-contacto:hover{
  background-color: var(--color-primary-light);
  color: var(--color-default-light);
}




.container_info_contacto h4 {
  color: var(--color-primary);
  font-weight: 800;
 }
 .container_info_contacto {
  border-right: 2px solid var(--color-primary);
 }
 
 .container_info_contacto p {
  font-size: 16px;
  color: var(--color-default);
 }
 .container_info_contacto {
  min-height: 170px;
 }
 .img-lab {
  width: 25%;
 }
 .img-lab-esp {
  width: 60%;
 }
 
 @media only screen and (max-width: 991px) {
  .container_info_contacto {
   border-right: none;
  }
  .img-lab-esp {
   width: 25% !important;
  }
  .img-lab {
   width: 10% !important;
  }
 }











 .antes-de-venir h4{
  color: white;
  font-weight: 800;
 }
 .antes-de-venir p i{
  font-weight: 400;
 }






 .en-tu-visita h4{
  color: var(--color-primary) !important;
  font-weight: 800;
 }
 .en-tu-visita p i{
  font-weight: 400;
 }





 .certificado{ 
  background-color: var(--color-primary) !important;
  color: white;
  padding-top: 5px;
  padding-bottom: 4px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 50px;
  border: 2px solid var(--color-primary);
  font-size: 13px;
  transition: .3s all;
 }
 .certificado:hover{
  color: var(--color-primary) !important;
  background-color: white !important;
  border: 2px solid var(--color-primary);
 }





/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
 font-size: 12px;
 background-color: var(--color-primary);
}

.link-footer {
 color: var(--color-default-light);
 font-size: 14px;
 transition: all 0.3s;
}

.link-footer:hover {
 color: var(--color-default);
}

.text-footer {
 color: var(--color-default-light);
 font-size: 14px;
}

.horario-footer {
 background-color: var(--color-default-light);
 color: var(--color-primary);
 padding: 5px;
 border-radius: 3rem;
}

#footer .footer-top {
 padding: 60px 0 0px 0;
 background: var(--color-dark);
}

#footer .footer-bottom {
 padding-top: 30px;
 padding-bottom: 30px;
}

#footer .copyright {
 float: left;
 color: #fff;
}

#footer .credits {
 float: right;
 font-size: 13px;
 color: #fff;
}

#footer .credits a {
 transition: 0.3s;
 color: #fff;
}

@media only screen and (max-width: 800px) {
 .footer-img {
  width: 40% !important;
 }
 .horario-footer {
  width: 50%;
 }
 .footer-rrss {
  width: 25% !important;
 }
}

/*--------------------------------------------------------------
# SOCIAL MEDIA MENU
--------------------------------------------------------------*/
.social-media-menu {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 0;
}
.social-media-menu li {
 width: 30px;
 height: 30px;
 border-radius: 30px;
 background-color: var(--color-light);
 display: flex;
 justify-content: center;
 align-items: center;
}
.social-media-menu li a {
 color: var(--color-default);
 opacity: 0.5;
 transition: 0.3s;
}
.social-media-menu li a:hover {
 color: var(--color-primary-dark);
 opacity: 1;
 transition: 0.3s;
}

@media (max-width: 768px) {
}
