@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Permanent+Marker&family=Rubik+Bubbles&family=Rubik+Mono+One&display=swap');


body { 
  font-family: 'poppins', sans-serif;
  font-size: 14px; /* Fuente */
}

  
  ul {
	padding: 0;
	margin: 0;
	
  }
  li{
	margin-left: 40px;
  }
  
  a {
	text-decoration: none;
	color: #2f2f2f;  
  }
  
  a:hover, a:focus {
	outline: none;
	text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', sans-serif;  
  }
  
  h2 {
	color: #141314;  
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	margin: 0;
	padding-bottom: 10px;  
  }
  .flipbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flipbox-container {
    perspective: 1000px;
    position: relative;
    width: 400px;
    height: 400px;
    display: inline-block;
    margin: 10px;
    border-radius: 15px;
}

.flipbox-front, .flipbox-back {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: transform 0.6s, opacity 0.6s;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    padding: 10px;
    box-sizing: border-box;
}

.flipbox-front {
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.flipbox-back {
    background-color: #d9b4be;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.flipbox-container:hover:not(.no-flip) .flipbox-front {
    transform: rotateY(-180deg);
}

.flipbox-container:hover:not(.no-flip) .flipbox-back {
    transform: rotateY(0deg);
}

.flipbox-container.no-flip {
    cursor: pointer;
}

.flipbox-container.no-flip .flipbox-front {
    display: flex;
    justify-content: flex-end; /* Alinea el contenido al pie horizontalmente */
    align-items: flex-end; /* Alinea el contenido al pie verticalmente */
}

.flipbox-container.no-flip .news_post_title_container {
    opacity: 0; /* Mantiene el título oculto */
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente para mejor legibilidad */
    width: 100%; /* Asegura que el contenedor del título ocupe todo el ancho */
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    transition: opacity 0.6s; /* Transición suave para la opacidad */
}

.flipbox-container.no-flip:hover .news_post_title_container {
    opacity: 1; /* Muestra el título al pasar el ratón */
}

.flipbox-container:not(.no-flip) .news_post_title_container {
    background-color: rgba(217, 180, 190, 0.5); /* Fondo semitransparente solo para las tarjetas giratorias */
}

.news_post_title_container {
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 15px;
}

.flipbox-back {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.contact-iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 20px auto;
  max-width: 1000px; /* opcional, para evitar que se vea muy grande en pantallas grandes */
}


_____________________________________-

.news_post_title_container h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin: 0;
}

.news_post_title_container p, .news_post_title_container address {
    font-size: clamp(1.75rem, 1.0vw, 1.50rem);
    margin: 5px 0;
    max-height: 60%;
    overflow: auto;
    text-align: justify;
}

.tit_tarot {
    margin: 0;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-style: normal;
    color: rgb(255, 255, 255);
}


  img {
	border: none;
  }
  
  .img-center {
	display: block;
	margin-left: auto;
	margin-right: auto;  
	text-align: center;
	max-width: 100%;
  }
  
  .img-right {
	display: block;
	margin-left: auto;
	max-width: 100%;  
  }
  
  .img-left {
	display: block; 
	margin-right: auto;  
	max-width: 100%;
  }
  
  /* Preloader */
  #preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 99999;
  }
  
  #status {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-image: url(images/status.gif);
	background-repeat: no-repeat;
	background-position: center;
	margin: -100px 0 0 -100px;
  }
   
  
  .fondo-pie{
	background-color: #d9b4be;
	position: relative;
	width: 100%;
	
  }
/* Solo afecta al header de servicios.html */
.header-servicios .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.header-servicios .logo img {
  height: 60px;
  width: auto;
}

.header-servicios .navbar ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-servicios .navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Responsive solo para servicios */
@media (max-width: 768px) {
  .header-servicios .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-servicios .navbar ul {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .header-servicios .navbar ul li {
    padding: 10px 0;
    width: 100%;
  }

  .header-servicios .menu-icono {
    cursor: pointer;
    height: 30px;
  }

  .header-servicios #menu:checked ~ .navbar {
    display: block;
  }

  .header-servicios .navbar {
    display: none;
    width: 100%;
  }
}

#header.quecoaching{
  background-image: url('/images/PORTADA-BLOG.jpg');
  min-height: 80vh;
  background-size: cover;
  background-position: center;
}
#header.sesionescoaching{
  background-image: url('/images/bosque.jpg');
  min-height: 80vh;
  background-size: cover;
  background-position: center;
}
#header.tarot{
  background-image: url('/images/tarotpor.jpg');
  min-height: 80vh;
  background-size: cover;
  background-position: center;
}
#header.fascinantemundo{
  background-image: url('/images/portadaartitaror.jpg');
  min-height: 80vh;
  background-size: cover;
  background-position: center;
}
#header.milagros{
  background-image: url('/images/milagros.jpg');
  min-height: 80vh;
  background-size: cover;
  background-position: center;
}

.logo{
    
  width: 100px; /* o el tamaño que prefieras */
  height: auto;
}
/* Estilos para dispositivos móviles */

/* Estilos responsive */
.flipbox-front {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Solo para las tarjetas sin giro */
.no-flip .flipbox-front {
  /* tamaño mínimo por si lo quieres definir aquí */
  height: 350px;
}

/* Fondos específicos */
.tarot-background {
  background-image: url('/images/tarot.jpg');
}

.sesiones-background {
  background-image: url('/images/SESIONES.jpg');
}

/* Estilo general de flipbox-front */
.flipbox-front {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Fondos de las flipbox que giran */
.coaching-background {
  background-image: url('/images/queescoaching.jpg');
}

.tarot-mundo-background {
  background-image: url('/images/mudotarot.jpg');
}

.ucdm-background {
  background-image: url('/images/pormilagros.jpg');
}
#header.coaching-background,
#header.tarot-mundo-background,
#header.ucdm-background {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
}

.home_content h1 {
  text-align: center;
  font-family: "Rubik Mono One", monospace;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  color: #333;
  margin-bottom: 30px;

  /* Animación */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

/* Definimos la animación */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

  
  @media (max-width: 768px) {
    
.submenu #carrito {
    min-width: 300px;
    right: 0 !important;
    left: auto !important;
}
.submenu:hover #carrito {
    right: 0 !important;
    left: auto !important;
    min-width: 300px;
}

.header-content {
    display: none!important;
  }
  
    .submenu #carrito {
      display: none; /* Oculto inicialmente en móviles */
      position: absolute;
      right: 10px;
      left: auto;
      min-width: 300px;
      background-color: #77717976;
      padding: 20px;
      z-index: 4;
    }
    
    .submenu.active #carrito {
      display: block; /* Mostrar cuando esté activo */
    }
  
  .past-main {
	padding: 0px;
  }
  
  .main-nav {
	margin: 10px 0px;
  }
  
  .navbar-default .navbar-nav > li > a::before {
	position: absolute;
	top: 80%;
	left: 50%;
	color: transparent;
	content: '•';
	text-shadow: 0 0 transparent;
	font-size: 2em;
	transition: text-shadow 0.3s, color 0.3s;
	transform: translateX(-50%);
	pointer-events: none;
  }
  
  .navbar-default .navbar-nav > li > a:hover::before,
  .navbar-default .navbar-nav > li > a:focus::before,
  .navbar-default .navbar-nav > .active > a::before {
	color: #fff;
	text-shadow: 10px 0 #fff, -10px 0 #fff;
  }
  
  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus {
	color: #fff;
  }
  
  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:focus,
  .navbar-default .navbar-nav > .active > a:hover {
	color: #fff;  
  }
  
  .navbar-default .navbar-nav > .open > a,
  .navbar-default .navbar-nav > .open > a:focus,
  .navbar-default .navbar-nav > .open > a:hover {
	color: #fff;
  }
  
  .navbar-right .dropdown-menu {
	left: auto;
	right: 15px;
	top: 74px;
  }
  
  .navbar-right .dropdown-menu::before {
	background: none repeat scroll 0 0 #fff;
	content: "";
	display: block;
	height: 20px;
	right: 15px;
	margin-top: -43px;
	position: absolute;
	top: 32px;
	transform: rotate(45deg);
	width: 20px;
	z-index: -99;
  }
  
  .dropdown-menu > li > a {
	clear: both;
	color: #c3c3c3;
	display: block;
	font-weight: bold;
	line-height: 1.42857;
	padding: 5px 20px;
	white-space: nowrap;
	transition: all 0.5s;
  }
  
  .dropdown-menu > li > a:hover,
  .dropdown-menu > li > a:focus {
	color: #fff;  
  }
  
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
	color: #c3c3c3;
  }
  
/*--------------------*/
/* HOME SLIDER */
/*--------------------*/
/* Estilos generales */
#sliderArea {
    display: block;
    width: 100%;
    margin-top: 0; /* Eliminar margen superior */
}

.top-slide-inner {
    position: relative;
    width: 100%;
    height: 600px;
}

.slider-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contenido {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}


.video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 → ajusta a 60% para más altura */
  height: 0;
  overflow: hidden;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* oscurece un poco el video */
  z-index: 1;
}


.slider-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: white;
}

.slider-text h2 {
    margin: 0;
    padding-top: 20px;
    font-size: 55px;
    line-height: 55px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
    color: #fff; /* Color blanco para el resto del título */
}

.slider-text p {
    margin: 0;
    padding-bottom: 80px;
    font-size: 30px;
    font-weight: 300;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
    color: #fff; /* Color blanco para el resto del subtítulo */
}

.slider-text .yellow {
    color: #bc818e; /* Color rosa para las partes amarillas del texto */
}

#meetDoctors {
    margin-top: 0; /* Eliminar margen superior */
    padding: 20px;
}

#meetDoctors h3 {
    text-align: center;
}

#meetDoctors p {
    text-align: justify;
    margin: 0 0 20px 0; /* Añadir margen inferior entre párrafos */
}

 
.news_post_text p {
    margin-left: 20px; /* Agregar margen izquierdo */
}
.text-justify{
  font-size:larger;
}
.enlace-azul {
  color: blue;
}
.mapa-embed {
  border: 0;
  width: 100%;
  height: 500px;
}
.fuente-grande {
  font-size: larger;
}
.texto-grande {
  font-size: larger;
}

}

  /* Media queries para pantallas más pequeñas */
  @media (max-width: 1199px) {
	.navbar-default .navbar-nav > li > a { padding: 18px 6px; font-size: 13px; }
	.navbar-brand { font-size: 20px; width: 258px; }
	.doctors-nav figcaption h2 { font-size: 14px; }
	.doctors-nav figcaption p { font-size: 14px; padding: 0 12px; }
	.nav-tabs > li > a { padding: 10px 10px; }
  }
  
  @media (max-width: 991px) {
	.navbar-header { float: none; text-align: center; }
	.navbar-brand { display: inline-block; float: none; font-size: 25px; width: 290px; }
	.sl-slider h2 { font-size: 36px; line-height: 40px; }
	.sl-slider p { font-size: 25px; }
	.sl-slider-wrapper { height: 500px; }
	.whyChoose-left { width: 350px; }
	.whyChoose-right .media-heading { font-size: 18px; line-height: 1em; }
	.whyChoose-right .media-body > p { font-size: 14px; }
	#counterSection { height: auto; background-size: 100% 100%; }
	.counter-box { margin-bottom: 35px; width: 95%; }
	.doctors-nav .slick-prev { left: 20px; }
	.doctors-nav .slick-next { right: -13px; }
	.single-blog-left { width: 25%; }
	.single-blog-right { width: 70%; }
	.blog-author > ul > li { font-size: 12px; }
	.blogArchive-area .single-blog-right { width: 72%; }
	#blogArchive { margin-top: 157px; }
	.social-share h3 { text-align: center; width: 100%; }
	.social-share ul { width: 100%; margin-top: 15px; text-align: center; }
	.nav-tabs { width: 100%; }
	.how-works-area { margin-top: 30px; }
	.nav-tabs > li > a { font-size: 18px; padding: 10px 20px; }
	.button--itzel { width: 190px; }
	#header .navbar-right { float: none !important; display: inline-block; }
	.navbar-collapse.collapse { text-align: center; }
	#respond input[type="text"], #respond input[type="email"], #respond input[type="url"] { width: 80%; }
	.slider-text h2 { font-size: 45px; line-height: 50px; }
	.slider-text p { font-size: 25px; }
  }
  
  @media (max-width: 767px) {
	.navbar-default .navbar-toggle { border-color: #fff; margin-top: 12px; }
	.navbar-default .navbar-toggle .icon-bar { background-color: #fff; }
	.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: transparent; }
	.navbar-default .navbar-brand { margin-bottom: 10px; margin-top: 0; }
	#sliderArea { margin-top: 70px; }
	.navbar-right .dropdown-menu::before { display: none; }
	.whychoose-singleslide img { width: 100%; }
	.whyChoose-left { width: 100%; }
	.whyChoose-right { margin-top: 50px; }
	.counter-box { margin-bottom: 40px; width: 100%; }
	.counter-box::after { width: 103%; }
	.single-blog-left { width: 20%; }
	.single-blog-right { width: 75%; }
	.single-Blog { margin-bottom: 30px; }
	.single-footer-widget { margin-bottom: 30px; }
	.footer-copyright { text-align: center; }
	.footer-social { margin-top: 20px; text-align: center; }
	#blogArchive { margin-top: 81px; }
	.blog-pagination { margin-bottom: 30px; text-align: center; }
	.sidebar-widget { margin-bottom: 35px; }
	.blogArchive-area .single-blog-right { width: 75%; }
	.similar-post .media { margin-bottom: 15px; }
	.nav-tabs > li > a { font-size: 15px; padding: 10px 15px; }
	.contact-address { margin-top: 40px; }
	.navbar-collapse.collapse { text-align: left; }
	.top-slide-inner { height: 400px; }
	.slider-text { padding: 10px 5px; top: 10%; }
	.slider-text h2 { font-size: 35px; line-height: 40px; }
	.slider-text p { font-size: 20px; }
  }
  
  @media (max-width: 480px) {
	.sl-slider h2 { font-size: 22px; line-height: 25px; }
	.sl-slider p { font-size: 16px; }
	.readmore_area a { font-size: 1em; }
	.counter-box::after { width: 104%; }
	.postnav-left h4, .postnav-right h4 { font-size: 14px; }
	.nav-tabs > li > a { font-size: 12px; padding: 10px; }
	.slider-text h2 { font-size: 30px; line-height: 34px; }
	.slider-text p { font-size: 18px; }
  }
  
  @media (max-width: 360px) {
	.navbar-brand { float: left; font-size: 20px; width: 250px; }
	.navbar-default .navbar-brand { margin-bottom: 10px; margin-top: 5px; }
	.navbar-brand > i { font-size: 25px; }
	.slider-text { width: 90%; }
	.sl-slider-wrapper { height: 420px; }
	.counter-box::after { width: 107%; }
	.blog-breadcrumbs-left { text-align: center; width: 100%; }
	.blog-breadcrumbs-right { width: 100%; }
	.blog-pagination .pagination > li > a, .blog-pagination .pagination > li > span {
	  font-size: 15px;
	  padding: 5px 12px;
	}
	.blog-breadcrumbs-right .breadcrumb { padding: 8px; }
	.blog-details h2 { font-size: 20px; line-height: 30px; margin-bottom: 10px; margin-top: 10px; }
	.blog-details blockquote { font-size: 16px; }
	.social-share ul li > a { font-size: 14px; height: 25px; line-height: 26px; width: 25px; }
	.social-share h

  
  
  
  
  
  
/*--------------------*/
/* SERVICE */
/*--------------------*/

#service{
	float: left;
	display: inline;
	width: 100%;
	padding: 40px 0px;
}
.service-area{
	float: left;
	display: inline;
	width: 100%;
}
.section-heading{
	float: left;
	display: inline;
	width: 100%;
	text-align: center;
}
.service-content{
	float: left;
	display: inline;
	width: 100%;
	padding: 10px 0px;
}
.single-service{
	float: left;
	margin-bottom: 30px;
	padding: 0px 10px;
	display: inline;
	width: 100%;
	text-align: center;
}
.service-icon-effect {
	display: inline-block;
	font-size: 0px;	
	margin: 15px 30px;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	text-align: center;
	position: relative;
	z-index: 1;	
}
.service-icon-effect:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box; 
	-moz-box-sizing: content-box; 
	box-sizing: content-box;
}
.service-icon-effect:before {	
	font-size: 48px;
	line-height: 90px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	display: block;
	-webkit-font-smoothing: antialiased;
}
.service-icon .service-icon-effect {	
	 -moz-transition: -moz-background 0.2s, color 0.2s;
	-o-transition: -o-background 0.2s, color 0.2s;
	-webkit-transition: -webkit-background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s
}
.service-icon .service-icon-effect:after {
	top: -8px;
	left: -8px;
	padding: 8px;
	z-index: -1;
	opacity: 0;
}
.service-icon .service-icon-effect:after {
	-moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -moz-transition: opacity 0.2s, -moz-transform 0.2s;
    -o-transition: opacity 0.2s, -o-transform 0.2s;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
    -moz-transition: opacity 0.2s, -moz-transform 0.2s;
    -o-transition: opacity 0.2s, -o-transform 0.2s;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
    -moz-transition: opacity 0.2s, -moz-transform 0.2s;
    -o-transition: opacity 0.2s, -o-transform 0.2s;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s
}
.single-service:hover .service-icon-effect:after {
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}
.service-icon .service-icon-effect:before {
	 -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    opacity: 0.7;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -o-transition: -o-transform 0.2s, opacity 0.2s;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -o-transition: -o-transform 0.2s, opacity 0.2s;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    -o-transition: -o-transform 0.2s, opacity 0.2s;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s
}
.single-service:hover .service-icon-effect:before {
	 -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1
}
.single-service>h3 a{
	color: #3e3e3e;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s
}
.single-service>h3 a:hover,.single-service>h3 a:focus{
	text-decoration: none;
	outline: none;
}
.single-service > p {
  color: #8997a7;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 25px;
}

/*--------------------*/
/* WHY CHOOSE US */
/*--------------------*/

#whychooseSection{
	background-color: #f7f7f7;
	float: left;
	display: inline;
	width: 100%;
	padding: 75px 0px;
}
.whyChoose-left { 
  display: inline;
  float: left;
  margin-top: 30px;
  border: 5px solid #fff;
  height: 330px;
  width: 460px;
}
.whychoose-slider{
	float: left;	
	display: block;	
	width: 100%;
	height: 100%;
}
.whychoose-singleslide{
	float: left;	
	display: block;	
	width: 100%;
	height: 100%;
}
.whychoose-singleslide img{
	height: 320px;
	max-width: 100%;
}
.whychoose-slider .slick-prev,
.whychoose-slider .slick-next {
    background-color: #fff;
    height: 45px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.8;
    top: 46%;
    width: 40px;
    display: none !important;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s
}
.whyChoose-left:hover .slick-prev,
.whyChoose-left:hover .slick-next{
	display: block !important;
}
.whychoose-slider .slick-next {
  background-image: url("images/next_icon1.png");
  background-position: center center;
  background-repeat: no-repeat; 
  right: 0;
}
.whychoose-slider .slick-prev {
  background-image: url("images/prev_icon.png");
  background-position: center center;
  background-repeat: no-repeat;    
  left: 0;
}
.whyChoose-right{
	float: left;
	margin-top: 30px;
	display: inline;
	width: 100%;
	padding: 0px 20px;
}
.whyChoose-right .media{
	margin-bottom: 20px;
}
.media-icon {
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	color: #fff;
	display: inline-block;
	font-size: 25px;
	height: 68px;
	line-height: 55px;
	margin-right: 15px;
	padding: 5px 10px;
	text-align: center;
	width: 68px;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s
}
.whyChoose-right .media-heading{
	font-size: 22px;
	line-height: 1.3em;
	padding-bottom: 6px;	
}
.whyChoose-right .media-body > p {
  color: #6d6d6d;
  font-size: 15px;
  line-height: 1.4em;
}
.whyChoose-right .media:hover .media-icon{
	background-color: #fff;
}

/*--------------------*/
/* COUNTER */
/*--------------------*/

#counterSection {
	background-image: url(images/counter-bg2.jpg);
	background-repeat: no-repeat;
	background-position: 100%;
	background-color: #222;
	display: block;
	float: left;
	padding: 77px 0;
	width: 100%;
	position: relative;
	height: 300px;
}
#counterSection::after {
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.counter-area {
  display: inline;
  float: left;
  position: relative;
  width: 100%;
  z-index: 99;
}
.counter-box {
  border: 1px solid #fff;
  border-radius: 10px;
  display: inline;
  float: left;
  font-family: "Raleway",sans-serif;
  padding: 10px 5px 20px;
  width: 100%;
  position: relative;
}
.counter-box::after {
  border: 1px solid #fff;
  border-radius: 10px;
  content: "";
  height: 111%;
  left: -9px;
  position: absolute;
  top: -8px;
  width: 107%;
}
.counter-no {
  color: #fff;
  display: inline;
  float: left;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.3em;
  padding-left: 0;
  text-align: center;
  width: 100%;
}
.counter-label {
  color: #ededed;
  display: inline;
  float: left;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8em;
  padding-left: 0;
  padding-top: 5px;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
}

/*--------------------*/
/* MEET DOCTORS */
/*--------------------*/
/* General styles */
body, html {
	overflow-x: hidden;
  }
  
  ul {
	padding: 40;
	margin: 0;
	list-style: none;
  }
  a {
	text-decoration: none;
	color: #2f2f2f;
  }
  a:hover,
  a:focus {
	outline: none;
	text-decoration: none;
  }
  h1, h2, h3, h4, h5, h6 {
	font-family: 'Raleway', sans-serif;
  }
  h2 {
	color: #313338;
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	margin: 0;
	padding-bottom: 10px;
  }

  .beneficios {
	padding-left: 40px; /* Añadir padding a la lista */
	list-style-type: disc; /* Asegura que se muestren las viñetas */
  }
  .puntos {
	margin-bottom: 5px; /* Añadir margen inferior a los elementos de la lista */
  }
  .text-justify{
	text-align: justify;
	padding: 10px 20px;
  }
  img {
	border: none;
  }
  .img-full-width {
	width: 100%;
	height: auto;
  }
  
  /* Doctor Section */
  #meetDoctors {
	float: left;
	display: inline;
	width: 100%;
	padding: 75px 0px;
  }
  .meetDoctors-area {
	float: left;
	display: inline;
	width: 100%;
  }
  .doctor-area {
	text-align: center;
  }
  .single-doctor {
	position: relative;
  }
  .single-doctor figure {
	position: relative;
	display: inline-block;
	overflow: hidden;
	margin: 0;
	width: 100%;
  }
  .single-doctor img {
	width: 100%;
	height: auto;
  }
  .single-doctor figcaption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-align: center;
  }
  .single-doctor figcaption h2,
  .single-doctor figcaption p {
	margin: 0;
  }
  .single-doctor-social {
	background-color: #ccc;
	display: inline;
	margin-top: 10px;
	padding: 10px 0;
	position: relative;
	text-align: center;
	width: 100%;
	z-index: 100;
  }
  .single-doctor-social > a {
	border: 2px solid #fff;
	color: #fff;
	display: inline-block;
	float: none;
	font-size: 15px;
	height: 30px;
	line-height: 27px;
	margin: 0 3px;
	text-align: center;
	width: 35px;
	transition: all 0.5s;
  }
  .single-doctor-social > a:hover {
	color: #007bff;
  }
  
  /* Asegúrate de que el contenedor ocupe el 100% del ancho de la página */



#homeBLog{
	float: left;
	display: inline;
	width: 100%;
	padding: 75px 0;
}
.homBlog-area{
	float: left;
	display: inline;
	width: 100%;
}
.homeBlog-content{
	float: left;
	display: inline;
	width: 100%;
	margin-top: 25px;
}
.single-Blog{
	float: left;
	display: inline;
	width: 100%;
}
.single-blog-left{
	float: left;
	display: inline;
	width: 18%;
}
.blog-comments-box li {
  border-bottom: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
  color: #aaa;
  display: block;
  float: left;  
  padding: 15px;
  text-align: center;
  width: 100%;  
}
.blog-comments-box li:last-child{
	border-bottom: none;
}
.blog-comments-box li > h2 {
  font-size: 33px;
  line-height: 32px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-comments-box li span {  
  display: block;
  font-size: 16px;
}
.blog-comments-box li > a {
  color: #aaa;
  text-decoration: none;
}
.single-blog-right{
	float: right;
	display: inline;
	width: 78%;
}
.blog-img{
	float: left;
	display: inline;
	width: 100%;
}
.blog-img img{
	width: 100%;
}

figure.blog-figure img {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
    filter: alpha(opacity=95);
    opacity: 0.95;
    -moz-transition: opacity 0.35s, -moz-transform 0.35s;
    -o-transition: opacity 0.35s, -o-transform 0.35s;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -moz-transition: opacity 0.35s, -moz-transform 0.35s;
    -o-transition: opacity 0.35s, -o-transform 0.35s;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -moz-transform: scale3d(1.05, 1.05, 1);
    -ms-transform: scale3d(1.05, 1.05, 1);
    -o-transform: scale3d(1.05, 1.05, 1);
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1)
}

figure.blog-figure:hover img {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	filter: alpha(opacity=60);
	opacity: 0.6;
	-moz-transform: scale3d(1, 1, 1);
	-ms-transform: scale3d(1, 1, 1);
	-o-transform: scale3d(1, 1, 1);
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1)
}
.blog-img figure {
  background: none repeat scroll 0 0 #3085a3;
  cursor: pointer;
  float: left;
  height: auto;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.blog-img figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}
figure.blog-figure .image-effect::before {  
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	-moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	-ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	-o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	-moz-transition: -moz-transform 0.6s ease 0s;
	-o-transition: -o-transform 0.6s ease 0s;
	-webkit-transition: -webkit-transform 0.6s ease 0s;
	transition: transform 0.6s ease 0s;
	width: 100%
}
figure.blog-figure:hover .image-effect::before {
	-moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0)
}
.blog-author {
  display: inline;
  float: left;
  padding: 10px 0;
  width: 100%;
}
.blog-author > ul > li {
  display: inline-block;
  padding: 5px;
  color: #aaa;
}
.blog-content{
	float: left;
	display: inline;
	width: 100%;
}
.blog-content > h2 {
  font-size: 18px;
  line-height: 25px;
}
.blog-content .readmore_area a { 
  font-size: 14px;
  margin-left: 0;
}
.blog-content .readmore_area a::before { 
  padding: 8px 13px;  
}
.blog-content .readmore_area a span { 
  padding: 8px 13px;  
}
.blog-content .readmore_area {
  margin-top: 25px;  
}

/*--------------------*/
/* FOOTER */
/*--------------------*/

.tag-nav a {
	border: 1px solid #e2e6e7;
	color: #555;
	float: left;
	font-size: 12px;
	margin-bottom: 8px;
	margin-right: 8px;
	padding: 10px 12px;
	text-transform: uppercase;
	transition: all 0.5s;
}

 .tag-nav li a:hover,
 .tag-nav li a:focus{
	color: #fff !important;
	text-decoration: none;
	outline: none;
}
.contact-info > p {
  line-height: 20px;
}
.contact-info > p span {
  font-size: 18px;
  margin-right: 10px;
}

/*--------------------*/
/* BLOG ARCHIVE */
/*--------------------*/

#blogArchive {
  display: inline;
  float: left;
  margin-top: 90px;
  width: 100%;
}
.blog-breadcrumbs-area {
  background-color: #f5f5f5;
  display: inline;
  float: left;
  padding: 20px 0;
  width: 100%;
}
.blog-breadcrumbs-left{
	float: left;
	display: inline;
}
.blog-breadcrumbs-left>h2{
	padding-bottom: 0px;
}
.blog-breadcrumbs-right{
	float: right;
	display: inline;
}
.blog-breadcrumbs-right .breadcrumb{
	margin-bottom: 0px;
}
.blog-breadcrumbs-right .breadcrumb > li {
  color: #777;
}
.blog-breadcrumbs-right .breadcrumb > li a{
  text-transform: uppercase;
  font-size: 12px;
}
.blog-breadcrumbs-right .breadcrumb > .active {
  text-transform: uppercase;
  font-size: 13px;
}
.blogArchive-area {
  display: inline;
  float: left;
  padding: 70px 0;
  width: 100%;
}
.blog-content{
	float: left;
	display: inline;
	width: 100%;
}
.blog-content .button--itzel{
	text-align: center;
	width: 170px;
}
.blogArchive-area .single-blog-right {
  display: inline;
  float: right;
  width: 79%;
}
.blog-content .single-Blog{
	margin-bottom: 30px;
}
.blog-content .blog-img figure a{
	height: 100%;
}
.blog-pagination{
	float: left;
	display: inline;
	width: 100%;
	text-align: right;
}
.blog-pagination .pagination > li > a,
.blog-pagination .pagination > li > span {
	background-color: #fff;
	border: 1px solid #e2e6e7;
	color: #999;
	font-size: 16px;
	line-height: 1.42857;
	margin-left: 6px;
	padding: 6px 15px;
	font-family: "Raleway",sans-serif; 
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.blog-pagination .pagination > li > a:focus,
.blog-pagination .pagination > li > a:hover,
.blog-pagination .pagination > li > span:focus,
.blog-pagination .pagination > li > span:hover {
  color: #fff;
}
.blog-pagination .pagination > li:last-child > a,
.blog-pagination .pagination > li:last-child > span {
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}
.blog-pagination .pagination > li:first-child > a,
.blog-pagination .pagination > li:first-child > span {
  border-bottom-left-radius: 0px;
  border-top-left-radius: 0px;
}
.sidebar{
	float: left;
	display: inline;
	width: 100%;	
	min-height: 300px;
}
.sidebar-widget{
	float: left;
	display: inline;
	width: 100%;
	margin-bottom: 25px;
}
.sidebar-widget > h3 {
  border-bottom: 1px solid #e2e6e7;
  font-size: 22px;
  margin-bottom: 25px;
  margin-top: 0;
}
.sidebar-widget h3::after {
  content: "";
  display: block;
  height: 2px;
  margin-bottom: -1px;
  margin-top: 13px;
  position: relative;
  width: 50px;
}
.popular-tab li { 
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.popular-tab li:last-child{
  border-bottom: none;
}
.news-img {
  display: block;
  height: 70px;
  width: 85px;
}
.news-img>img{
  width: 100%;
  height: 100%;
}
.news-img>img:hover{
	opacity: 0.8;
}
.popular-tab .media-body > a {
	display: block;
	font-size: 15px; 
	padding: 0px;  
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.popular-tab .media-body > a:hover,
.popular-tab .media-body > a:focus{
	color: #000;
	outline: none;
}
.feed_date {
  color: #ccc;
  display: block;
  margin-top: 7px;
}
.sidebar-widget p>a{	
	font-weight: bold;
}
.archives li{
float: left;
margin-bottom: 7px;
width: 100%;
}
.archives li > a {
	border: 1px solid #e2e6e7;
	color: #999;
	display: block;
	font-size: 15px;
	letter-spacing: 1px;
	line-height: 15px;
	padding: 10px 12px;
	text-align: left;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.archives li > a:hover {
  text-decoration: none;
  outline: none;
  color: #fff !important;
}
.archives li>a>span{
	float: right;
}
.sidebar-widget>ul li>a{
	display: block;
	padding: 5px;
	border-bottom: 1px solid #e2e6e7;
}
.sidebar-widget>ul li>a:hover{
	text-decoration: none;
}
.sidebar-widget>ul li>a>span{
	margin-right: 5px;
}

/*--------------------*/
/* BLOG DETAILS */
/*--------------------*/

.blog-details h2 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.blog-details p {
  font-size: 15px;
  line-height: 28px;
}
.blog-details blockquote {
  background: none repeat scroll 0 0 #f8f8f8;
  border-left: medium none;
  font-size: 20px;
  font-style: italic;
  padding: 15px 15px 15px 40px;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}
.blog-details blockquote::before {
  content: "\"";
  font-family: "Raleway",sans-serif;
  font-size: 150px;
  font-style: italic;
  line-height: 130px;
  position: absolute;
  right: 32px;
  top: 64%;
}
.blog-details blockquote::after {
  content: "\"";
  font-family: "Raleway",sans-serif;
  font-size: 150px;
  font-style: italic;
  left: -35px;
  line-height: 130px;
  position: absolute;
  top: 0;
}
.blog-details{
	position: relative;
}
.blog-details li {
  font-size: 15px;
  line-height: 25px;
}
.blog-details li>i {
  margin-right: 5px;
}
.blog-details .checkbox label,
.blog-details .radio label { 
  font-size: 15px;
}
.blog-details > a,
.blog-details > p>a {
  border: 1px none transparent;
  color: #555;
  font-size: 15px;
  font-weight: bold;
}
.blog-details>a:hover,
.blog-details>a:focus,
.blog-details > p>a:hover,
.blog-details > p>a:focus{
	text-decoration: none;
	outline: none;
}
.blog-details .table-hover tbody tr:hover{
	color: #fff;
}
.social-share{
	border-bottom: 2px solid #f8f8f8;
	border-top: 2px solid #f8f8f8;
	display: inline;
	float: left;
	margin-bottom: 30px;
	margin-top: 30px;
	padding: 15px;
	width: 100%;
}
.social-share h3{
	float: left;
	margin: 0px;
	padding: 0px;
}
.social-share ul{
	text-align: right;
	display: inline-block;
}
.social-share ul li{
	display: inline-block;
}
.social-share ul li > a {  
	display: inline-block;
	text-align: center;
	width: 30px;
	color: #fff;
	font-size: 18px;
	height: 30px;
	line-height: 31px;
	margin-left: 5px;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.social-share ul li:nth-child(1) a:hover{
	background-color: #354c8c;
}
.social-share ul li:nth-child(2) a:hover{
	background-color: #33CCFF;
}
.social-share ul li:nth-child(3) a:hover{
	background-color: #C92619;
}
.social-share ul li:nth-child(4) a:hover{
	background-color: #DD4B39;
}
.social-share ul li:nth-child(5) a:hover{
	background-color: #0077B5;
}
.post-navigation {
  border-bottom: 2px solid #f8f8f8;
  border-top: 2px solid #f8f8f8;
  display: inline;
  float: left;
  margin-bottom: 30px;
  margin-top: 30px;
  width: 100%;
  padding: 5px 0px;
}
.postnav-left{
	float: left;
	display: inline;
	width: 50%;
	padding: 10px;
	text-align:center;
	border-right: 1px solid #f8f8f8;
}
.postnav-left a,
.postnav-right a {
	border: 1px solid #f2f2f2;
	border-radius: 50%;
	color: #ccc;
	display: inline-block;
	font-size: 22px;
	height: 40px;
	line-height: 38px;
	width: 40px;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.postnav-left h4,
.postnav-right h4 {
  color: #ccc;
  margin-bottom: 0px;  
}
.postnav-right{
	float: right;
	display: inline;
	width: 50%;
	text-align: center;
	padding: 10px;	
}
.post-author {
  background-color: #f8f8f8;
  display: inline;
  float: left;
  margin-bottom: 0;
  margin-top: 30px;
  padding: 20px;
  width: 100%;
}
.post-author > h3 { 
  font-weight: bold;
  margin-top: 0;
  padding-bottom: 10px;
}
.post-author .news-img {  
  margin-right: 10px;
}
.author-name {
  font-size: 15px;
  font-weight: bold;
}
.post-author p {
  font-size: 14px;
  line-height: 19px;
}
.author-morepost {
  border-bottom: 1px solid #ccc;
  display: inline-block;
}
.author-morepost:hover,.author-morepost:focus {
  text-decoration: none;
  outline: none;
}
.blog-author ul>li span{
	margin-right: 5px;
}
.similar-post{
 float: left;
 display: inline;
 width: 100%;
 margin-top: 30px;
}
.similar-post > h2 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.similar-post .media{
	margin-bottom: 10px;
}
.similar-post .media-body a { display: block;}
.comments-area {
  display: inline;
  float: left;
  margin: 20px 0 30px;
  width: 100%;
}
.comments-title{
	border-bottom: 1px solid #e2e6e7;
	font-size: 22px;
	margin-bottom: 25px;
	margin-top: 0;
}
.comments-title::after {
  content: "";
  display: block;
  height: 2px;
  margin-bottom: -1px;
  margin-top: 13px;
  position: relative;
  width: 50px;
}
.comments{
	float: left;
	display: inline;
	width: 100%;
}
.commentlist li {
  border: 1px solid #f8f8f8;
  display: inline;
  float: left;
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
}
.comments-date {
  color: #888;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
.reply-btn {
	color: #fff;
	float: right;
	font-size: 15px;
	line-height: 16px;
	padding: 8px 12px;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.reply-btn:hover{
	color: #fff;
	text-decoration: none;
	outline: none;
	opacity: 0.8;
}
.children{
	margin-left: 50px;
}
.author-tag {
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 4px 6px;
}
.author-comments{
	background-color: #f8f8f8;
}
.comments-pagination{
	display: inline-block;
	text-align: left;
}
.comments-pagination li{
	display: inline-block;	
}
.comments-pagination li a {
	border: 1px solid #f8f8f8;
	color: #ccc;
	display: inline-block;
	font-size: 15px;
	font-weight: bold;
	height: 30px;
	line-height: 15px;
	padding: 5px;
	text-align: center;
	width: 30px;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.comments-pagination li a:hover {
  color: #fff;
  text-decoration: none;
  outline: none;
}
.commentlist>li:last-child{
	margin-bottom: 0px;
}
#contact {
	padding: 60px 0;
	
  }
  
  .contact-form, .contact-address {
	margin-bottom: 30px;
  }
  
  .contact-form {
	background-color: #f9f9f9; /* Fondo del formulario */
	padding: 20px; /* Espaciado interno */
	border-radius: 8px; /* Bordes redondeados */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
  }
  
  .section-heading {
	margin-bottom: 20px;
  }
  
  .section-heading h2 {
	font-size: 24px;
	margin-bottom: 10px;
  }
  
  .section-heading .line {
	width: 50px;
	height: 3px;
	background-color: #007bff;
	margin-bottom: 20px;
  }
  
  .wp-form-control {
	width: 100%;
	margin-bottom: 15px;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
  }
  
  .wpcf7-submit {
	background-color: #007bff;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
  }
  
  .wpcf7-submit:hover {
	background-color: #0056b3;
  }
  
  .single-doctor-social {
	display: flex;
	justify-content: center;
	gap: 10px;
  }
  
  .single-doctor-social a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background-color: #ddd;
	color: #007bff;
	text-align: center;
	border-radius: 50%;
	transition: background-color 0.3s;
  }
  
  .single-doctor-social a:hover {
	background-color: #007bff;
	color: white;
  }
  
  .contact-info p {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
  }
  
  .contact-info p span {
	margin-right: 10px;
  }
  
  
  
/*--------------------*/
/* Features */
/*--------------------*/

#extraFeatures{
	background-color: #fff;
	float: left;
	display: inline;
	width: 100%;
	padding: 75px 0px;
}
.departments-area {
  display: inline;
  float: left;
  padding: 0 12px 0 0;
  width: 100%;
}
.custom-panel{
	float: left;
	display: inline;
	width: 100%;
}
.custom-panel .panel-heading {
  border-bottom: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  padding: 0px;
  
}
.custom-panel .panel-heading a {
	color: #fff;
	display: block;
	font-size: 18px;
	font-weight: bold;
	padding: 12px 15px;
	text-decoration: none;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.custom-panel .panel-heading a:hover{
	opacity: 0.8;
}
.custom-panel .panel-heading a>span{
	float: right;
}
.custom-panel .panel {
  border-radius: 0px;
  margin-bottom: 0;
  border:none;
}
.custom-panel .panel-body img{
	margin-bottom: 15px;
}
.how-works-area{
	float: left;
	display: inline;
	width: 100%;
	 padding: 0 0 0 12px;
}
.how-works{
	float: left;
	display: inline;
	width: 100%;
}
.nav-tabs{
	display: inline-block;
	text-align: center;
}
.nav-tabs li{
	display: inline-block;
	float: none;
}
.nav-tabs > li > a {
  border: 1px solid transparent;
  border-radius: 0;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.42857;
  padding: 10px 18px;
}
.nav-tabs > li > a:hover,.nav-tabs > li > a:focus{
	opacity: 0.8;
}
.tab-content > .tab-pane {
  padding: 20px 0px ;
}

/*--------------------*/
/* GALLERY */
/*--------------------*/

#gallery{
	float: left;
	display: inline;
	width: 100%;
	padding: 75px 0px;
}
.gallery-area{
	float: left;
	display: inline;
	width: 100%;
}
.my-simple-gallery {
  float: left;
  margin-bottom: 20px;
  width: 100%;
}
.my-simple-gallery img {
  height: 100%;
  width: 100%;
}
.my-simple-gallery figure {
  margin-bottom: 30px;
}
.my-simple-gallery figure a {
  display: block;
  height: 240px;
  width: 100%;
}
.my-simple-gallery figcaption {
  display: none;
}
a.gallery-iteam img {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=95)";
    filter: alpha(opacity=95);
    opacity: 0.95;
    -moz-transition: opacity 0.35s, -moz-transform 0.35s;
    -o-transition: opacity 0.35s, -o-transform 0.35s;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -moz-transition: opacity 0.35s, -moz-transform 0.35s;
    -o-transition: opacity 0.35s, -o-transform 0.35s;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -moz-transform: scale3d(1.05, 1.05, 1);
    -ms-transform: scale3d(1.05, 1.05, 1);
    -o-transform: scale3d(1.05, 1.05, 1);
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1)
}
a.gallery-iteam:hover img {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
}
.my-simple-gallery a {
  cursor: pointer;
  float: left;
  height: auto;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.my-simple-gallery a img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 0.8;
}
a.gallery-iteam .image-effect::before { 
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	-moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	-ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	-o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
	-moz-transition: -moz-transform 0.6s ease 0s;
	-o-transition: -o-transform 0.6s ease 0s;
	-webkit-transition: -webkit-transform 0.6s ease 0s;
	transition: transform 0.6s ease 0s;
	width: 100%
}
a.gallery-iteam:hover .image-effect::before {
	-moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0)
}
.my-simple-gallery figcaption {
  bottom: 0;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: bold;
  left: 0;
  margin-top: -23px;
  padding-bottom: 10px;
  position: absolute;
  text-align: center;
  width: 100%;
}
.pswp__caption__center {
  font-size: 25px;
  text-align: center;
  max-width: 800px; 
}
.pswp__button--arrow--left::before,
.pswp__button--arrow--right::before {
  height: 40px; 
  top: 30px;
  width: 40px;
}
.pswp__button--arrow--right::before {
  background-position: -91px -39px; 
}
.pswp__button--arrow--left::before {
  background-position: -134px -39px;  
}

/*--------------------*/
/* Contact */
/*--------------------*/

#googleMap{
	float: left;
	display: inline;
	width: 100%;
	margin-bottom: -6px;
}
#contact{
	float: left;
	display: inline;
	padding: 40px 0px;
	width: 100%;
}
.contact-form{
	float: left;
	display: inline;
	width: 100%;
}
.contact-form > p {
  font-size: 17px;
  margin-bottom: 20px;
}
.contact-address {
  display: inline;
  float: left;
  width: 100%;
  padding: 0px 20px;
}
.contact-address>p{
	font-size: 17px;
	margin-bottom: 20px;
}
.contact-address>h3{
	margin-bottom: 0px;
	margin-top: 50px;
}
.contact-address .social-share {
  text-align: center;
  margin-top: 20px;
}
.contact-address .social-share ul{
	text-align: center;
	float: none;
}
.wp-form-control {
  border-radius: 0px;
  display: inline;
  font-size: 15px;	
  float: left;
  margin-bottom: 20px;
  padding: 10px 12px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;  
  width: 100%;  
}
.wpcf7-text{
  height: 45px;
}
.wpcf7-email{
  height: 45px;
}
.wpcf7-textarea {
  height: 200px;
  padding: 15px;
}
.wpcf7-submit {
	float: left;
	min-width: 150px;
	max-width: 250px;
	font-weight: 600;
	display: block;
	margin: 1em;
	padding: 1em 2em;
	border: none;
	background: none;
	color: inherit;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
  backface-visibility: hidden;

	-moz-osx-font-smoothing: grayscale;
}
.wpcf7-submit:focus {
	outline: none;
}
.wpcf7-submit > span {
	vertical-align: middle;
}
.button--itzel {
	border: none;
	padding: 0px;
	overflow: hidden;
	width: 255px;
}
.button--itzel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 35% 100%, 35% 60%, 65% 60%, 65% 100%, 100% 100%, 100% 0%);
	clip-path: url(../index.html#clipBox);
	-webkit-transform: translate3d(0, 100%, 0) translate3d(0, -2px, 0);
	transform: translate3d(0, 100%, 0) translate3d(0, -2px, 0);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}
.button--itzel.button--border-thin::before {
	border: 1px solid;
	-webkit-transform: translate3d(0, 100%, 0) translate3d(0, -1px, 0);
	transform: translate3d(0, 100%, 0) translate3d(0, -1px, 0);
}
.button--itzel.button--border-thick::before {
	border: 3px solid;
	-webkit-transform: translate3d(0, 100%, 0) translate3d(0, -3px, 0);
	transform: translate3d(0, 100%, 0) translate3d(0, -3px, 0);
}
.button--itzel::before,
.button--itzel .button__icon {
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--itzel .button__icon {
	background-color: #fff;
	position: absolute;
    top: 104%;
    left: 50%;
    padding: 20px;
    font-size: 20px;
    -moz-transform: translate3d(-50%, 0, 0);
    -ms-transform: translate3d(-50%, 0, 0);
    -o-transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0)
}
.button--itzel > span {	
	display: block;
    padding: 20px;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s;
    -o-transition: -o-transform 0.3s, opacity 0.3s;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s;
    -o-transition: -o-transform 0.3s, opacity 0.3s;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s
}
.button--itzel:hover::before {
	-moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}
.button--itzel:hover .button__icon {
	 -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -moz-transform: translate3d(-50%, -100%, 0);
    -ms-transform: translate3d(-50%, -100%, 0);
    -o-transform: translate3d(-50%, -100%, 0);
    -webkit-transform: translate3d(-50%, -100%, 0);
    transform: translate3d(-50%, -100%, 0)
}
.button--itzel:hover > span {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}
.appointment-area{
	float: left;
	display: inline;
	width: 100%;
}
#myModal .modal-content {
  background: #fff none repeat scroll 0 0;
  border-radius: 0;
  float: left;
  width: 100%;
}
#myModal .modal-title {
  line-height: 1.42857;
  margin: 0;
  font-size: 30px;  
}
.modal-header{
	display: inline;
	float: left;
	width: 100%;
}
.modal-body {
  display: inline;
  float: left;
  width: 100%;
}
.appointment-form label {
  color: #888;
  float: left;
  font-size: 18px;
  font-weight: normal;
  text-align: left;
}
.appointment-form .required{
	color: red;
	font-size: 15px;
}
.wpcf7-select{
	color: #888;
}

/*--------------------*/
/* ERROR PAGE */
/*--------------------*/

#errorPage {
  display: inline;
  float: left;
  width: 100%;
  padding: 40px 0px 90px;
}
.error-page-area{
	float: left;
	display: inline;
	width: 100%;
	text-align: center;
}
.error-page-area h1 {
  font-size: 200px;
  font-weight: bold;
  margin-top: 0;
}
.error-page-area h3 {
  font-size: 60px;
  margin-bottom: 90px;
  margin-top: 0;
  text-transform: uppercase;
}
.error-page-area h5{	
	color: #888;
	font-size: 30px;
}
.error-page-area p{	
	color: #888;
	font-size: 16px;
}
.error-page-area .readmore_area {
  float: none;
  margin: 0 auto;  
  margin-top: 40px;
}

#aboutUs{
	float: left;
	display: inline;
	width: 100%;
}
.about-us-area{
	float: left;
	display: inline;
	width: 100%;
}


.circle-container {
	text-align: center;
  }
  /*======================///////////////
			servicios
=====================///////////////////////*/
  
  
/*======================///////////////
			start responsive style
=====================///////////////////////*/


@media(max-width:1199px ){
  .navbar-default .navbar-nav > li > a {padding: 18px 6px;font-size: 13px;}
  .navbar-brand {font-size: 20px;width: 258px;}
  .doctors-nav figcaption h2 {font-size: 14px;}
  .doctors-nav figcaption p {font-size: 14px;padding: 0 12px;}
  .nav-tabs > li > a {padding: 10px 10px;}
}


@media(max-width:991px ){	
  .navbar-header {float: none;text-align: center;}
  .navbar-brand {display: inline-block;float: none;font-size: 25px;width: 290px;}
  .sl-slider h2 {font-size: 36px;line-height: 40px;}
  .sl-slider p {font-size: 25px;}
  .sl-slider-wrapper {height: 500px;}
  .whyChoose-left {width: 350px;}
  .whyChoose-right .media-heading {font-size: 18px;line-height: 1em;}
  .whyChoose-right .media-body > p {font-size: 14px;}
  #counterSection {height: auto;background-size: 100% 100%;}
  .counter-box {margin-bottom: 35px;width: 95%;}
  .doctors-nav .slick-prev {left: 20px;}
  .doctors-nav .slick-next {right: -13px;}
  .single-blog-left {width: 25%;}
  .single-blog-right {width: 70%;}
  .blog-author > ul > li {font-size: 12px;}
  .blogArchive-area .single-blog-right {width: 72%;}
  #blogArchive {margin-top: 157px;}
  .social-share h3 {text-align: center;width: 100%;}
  .social-share ul {width: 100%;margin-top: 15px;text-align: center;}
  .nav-tabs {width: 100%;}
  .how-works-area {margin-top: 30px;}
  .nav-tabs > li > a {font-size: 18px;padding: 10px 20px;}
  .button--itzel {width: 190px;} 
  #header .navbar-right {float: none !important;display: inline-block;} 
  .navbar-collapse.collapse {text-align: center;}
  #respond input[type="text"], #respond input[type="email"], #respond input[type="url"] {width: 80%;} 
  .slider-text h2 {font-size: 45px;line-height: 50px;}
  .slider-text p {font-size: 25px;}

}


@media(max-width:767px ){
.navbar-default .navbar-toggle {border-color: #fff;margin-top: 12px;}
.navbar-default .navbar-toggle .icon-bar {background-color: #fff;}
.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color: transparent;}
.navbar-default .navbar-brand {margin-bottom: 10px;margin-top: 0;}
#sliderArea {margin-top: 70px;}
.navbar-right .dropdown-menu::before {display: none;}
.whychoose-singleslide img {width: 100%;}
.whyChoose-left {width: 100%;}
.whyChoose-right {margin-top: 50px;}
.counter-box {margin-bottom: 40px;width: 100%;}
.counter-box::after {width: 103%;}
.single-blog-left {width: 20%;}
.single-blog-right {width: 75%;}
.single-Blog {margin-bottom: 30px;}
.single-footer-widget {margin-bottom: 30px;}
.footer-copyright {text-align: center;}
.footer-social {margin-top: 20px;text-align: center;}
#blogArchive {margin-top: 81px;}
.blog-pagination {margin-bottom: 30px;text-align: center;}
.sidebar-widget {margin-bottom: 35px;}
.blogArchive-area .single-blog-right {width: 75%;}
.similar-post .media{margin-bottom: 15px;}
.nav-tabs > li > a {font-size: 15px;padding: 10px 15px;}
.contact-address {margin-top: 40px;}
.navbar-collapse.collapse {text-align:left;}
.top-slide-inner {height: 400px;}
.slider-text {padding: 10px 5px;top: 10%;}
.slider-text h2 {font-size: 35px;line-height: 40px;}
.slider-text p {font-size: 20px;}
}

@media(max-width:480px ){	
.sl-slider h2 {font-size: 22px;line-height: 25px;}
.sl-slider p {font-size: 16px;}
.readmore_area a {font-size: 1em;}
.counter-box::after {width: 104%;}
.postnav-left h4, .postnav-right h4 {font-size: 14px;}
.nav-tabs > li > a {font-size: 12px;padding: 10px;} 
.slider-text h2 {font-size: 30px;line-height: 34px;}
.slider-text p {font-size: 18px;}
}


@media(max-width:360px ){
.navbar-brand {float: left;font-size: 20px;width: 250px;}
.navbar-default .navbar-brand {margin-bottom: 10px;margin-top: 5px;}
.navbar-brand > i {font-size: 25px;}
.slider-text {width: 90%;}
.sl-slider-wrapper {height: 420px;}
.counter-box::after {width: 107%;}
.blog-breadcrumbs-left {text-align: center;width: 100%;}
.blog-breadcrumbs-right {width: 100%;}
.blog-pagination .pagination > li > a, .blog-pagination .pagination > li > span {
 font-size: 15px;
 padding: 5px 12px;
}
.blog-breadcrumbs-right .breadcrumb {padding: 8px;}
.blog-details h2 {font-size: 20px;line-height: 30px;margin-bottom: 10px;margin-top: 10px;}
.blog-details blockquote {font-size: 16px;}
.social-share ul li > a {font-size: 14px;height: 25px;line-height: 26px;width: 25px;}
.social-share h3 {font-size: 20px;}
.nav-tabs > li > a {font-size: 10px;padding: 3px;}
.custom-panel .panel-heading a {font-size: 16px;}
#myModal .modal-title {font-size: 25px;}
.post-author .news-img {margin-right: 0px;width: 45px;height: 45px;}
.author-name {font-size: 13px;margin-bottom: 5px;display: block;}
.post-author p {font-size: 12px;line-height: 18px;}
.commentlist .news-img {height: 45px;width: 45px;}
.children {margin-left: 15px;}
.commentlist .media-body p {font-size: 12px;}
.error-page-area h1 {font-size: 150px;}
.error-page-area h3 {font-size: 50px;margin-bottom: 70px;}
.error-page-area h5 {font-size: 25px;}
.slider-text h2 {font-size: 25px;line-height: 30px;}
.slider-text p {font-size: 16px;}
}


@media(max-width:320px ){
.navbar-brand {width: 240px;}	
.blog-breadcrumbs-right .breadcrumb > li a {font-size: 12px;}	
.blog-breadcrumbs-right .breadcrumb > .active {font-size: 12px;}
.custom-panel .panel-heading a {font-size: 14px;}
#myModal .modal-title {font-size: 22px;}
#respond input[type="text"], #respond input[type="email"], #respond input[type="url"] {
  width: 100%;
}

	
}
  }
  