/**
=======================================================
  * Name: Dra.Paola Lazo - v1
  * URL: https://drapaolalazo.com/
  * Author: David L 
 ======================================================== 
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Chaparral Pro', sans-serif;
  color: #444444;
}

a {
  color: #222222;
}

a:hover {
  color: #000000;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Chaparral Pro', sans-serif;
}
h1 {
  color: #292b2e;
  margin-bottom: 20px;
  font-size: 70px;
  font-weight: 900;
  text-shadow: 5px 3px 4px #f195b3;	
  	

}
@media (max-width: 768px) {
  h1 {
    font-size: 50px; 
  }
  
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #713743;
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 20px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;	
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: #1a405f;
  color: #cfe8e5;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background-color: #cfe8e5;
  color: #1a405f;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #26335a;
  color: #bab8e4;
  height: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -30px;
}

#topbar i {
  padding-right: 6px;
}

#topbar  .redesnav{
	font-size: 20px ;
	margin: 0 0 0 0 ;
	
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;	
  background: #ffffff0a;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 1%;
  top: 30px;
 	
  
}


#header.header-scrolled {
  top: 0;
  background: #ffffff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
 
  letter-spacing: 0.2px;
  
}

#header .logo a {
  color: #555555;
  height: 	auto;
  	
}

#header .logo img {
    height:70px;
	
	
}

#header .navbar {
	text-align: start;
	align-items: flex-start;
	

}


  

@media (max-width: 1200px) {
  #header {
    top: 30px;
    padding: 15px 0px;
	height: 90px;  
  }
  
}


@media (max-width: 992px) {
  #header {
      top: 0px;
	  padding: 20px 5px;
	  margin: 0px;
	  height: 90px;
  }
  
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 1rem 0 1rem 1rem;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #0d253d;
  transition: 0.3s;
  font-size: 15px;
  font-family: 'Chaparral Pro', sans-serif;
  text-transform: uppercase;
  font-weight: 550;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #884b9e;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 10px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #242664;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #31426d;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding: 10px 0px 20px 0px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width : 1200px ){
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Agenda Button */
.appointment-btn {

  margin-left: 25px;
  background: #26335a;
  color: #fff;
  border-radius: 30px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
   
  	
  
}

.appointment-btn:hover {
  background-color: #884b9e;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .appointment-btn {
	  display: none;
  }
}


/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #555555;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #555555;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #000;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(60, 60, 60, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}






/*--------------------------------------------------------------
# Galeria_pagina
--------------------------------------------------------------*/


#header_g{
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  top: 0px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	
	
}
#galeria {
	
	
}

#galeria .titulogal{
	position: relative;
	display: flex;
	top: 4rem;
	width: 100%;
	height: auto;
	text-align: center;
	align-content: center;
	justify-content: center;
	padding: 10px;
	
	
}

#galeria .contfot{
	
	
	margin: 5rem 0px 0px 0px;
	padding: 3rem 10px 10px 10px;
	text-align: center;
	align-content: center;
	box-shadow: 0 0 8px 0 #f195b3;
}
#galeria .contfot h3{
	
	font-size: 22pt;
    font-weight: 700;
	color: #1a405f;
	padding: 2px 2px 5px 2px;
}
#galeria .contfot p{
	font-size: 19pt;
	color: #1a405f;
	font-style: italic;
}

@media (max-width:577px){
	#galeria .contfot p{
		font-size: 16pt;
	}
	#galeria .contfot{
		padding: 15px;
	}
}


/*--------------------------------------------------------------
# Pagos_pagina
--------------------------------------------------------------*/

#formulario .formulario_pago{
	
	justify-content: center;
	text-align: center;
	margin:10px;
	padding: 5px;
	font-family: "Century Gothic";
	
	
}

#formulario .formulario__label{
	font-size: 11pt;
}
#formulario .formulario__input{
	border-image-outset: 10px;
	border-radius: 0px;
	border-width: 1px;
	border-bottom-color: black;
}
#formulario .boton-continuar{
	text-decoration: none;
	background-color: black;
	color: white;
	border-radius: 5px;
	margin: 15px;
	padding: 3px 8px;
	border: none;
	
}

/*--------------------------------------------------------------
# Blog_pagina
--------------------------------------------------------------*/

#header_g{
  background: #FFFFFF;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0px 0px 0px;	
  top: 0px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  display: block;	
	
}


#header_g .logo {
	
	padding: 10px 10px 5px 10px;
}

#header_g .appointment-btn{
	
	width: auto;
	height: 20%;
	
	
	
}
#galeriavid .section-title{
	
	padding: 0;
	margin: 0;
	
	
}
#galeriavid .container{
	
	padding: 0;
	
	
}

#galeriavid .titulogal{
	
	
}

#galeriavid h2{
	
	
	color: aliceblue;
	
}

#galeriavid{
	
	top: 0%;
	background-color:#1A1A1A;
	
	
}
#galeriavid .section-title{
	
	 padding: 1% 0;
}

#galeriavid .item{
	
 padding: 30px 3px ;
	background-color: currentColor;
	margin: 20px 0 ;
	border-radius:3%;

	
	
}
#galeriavid .item time{
	
	
	color: #fff;
	font-style: italic;
	font-size: 13px;
	text-align: left;

}
#galeriavid .item h5{
	
	color: aliceblue;
}
#galeriavid .item p{
	
	color: aliceblue;
	font-size: 14px;
	text-align: left;
	margin: 5% 10% ;
	font-weight: normal;
	font-style: normal;
	
	

	
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: color-mix(in srgb, #e1b4d2 50% , white 60%);	
  position: relative;
 	
}

#hero  .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before  {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#hero .container {
  	
  text-align: center;
  background: rgba(255, 255, 255, 0.0);
  margin: auto;	
  
  	
 
}

#hero .container.leftp  {
    position: absolute;
	width: 100vw;
    display: flex;
	margin: 3rem 0rem 0rem 0rem;
  	padding: 0rem 0rem 0rem 0rem;
  	justify-content: flex-start;
  	
}
#hero .leftp img{
  position: relative;
  height: 50rem ;
  padding: 3rem 3rem 0rem 3rem;
  	

}
#hero .container.rightp  {
	position: absolute;
    margin-left: 40rem;	
    margin-bottom: 10rem;
    margin-right: 0rem;
	padding:1rem 1rem 1rem 0rem;
	text-align: center;
  	
  	
}
#hero .container.rightp p, .container.rightp h1 {
	
	justify-content: flex-end;
	text-align: center;
  	
  	
}
#hero .centerp  {
	position: relative;
	justify-content: center;
	align-content: center;
    margin: 2rem 0rem 0rem 0rem ;
    padding: 2rem 0rem 3rem 3rem;
	font-weight: bold;
	text-align: center;
}
#hero .centerp img{
	width: 30rem;
	border: 3px solid #26335a;
	border-radius: 25px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.50);
}


#hero h1 {
  	
  color: #26335a;
  margin-bottom: 20px;
  font-size: 70px;
  font-weight: 900;
  text-shadow: 5px 3px 4px rgba(0,0,0,0.3);	

}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #26335a;
  font-size: 30px;
  font-weight: 500; 	
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  top: 112px;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon   {
  
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: #fe3b6c26;
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(233, 196, 237, 0.5);
  color: rgba(254, 59, 109, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: rgba(254, 59, 109, 0.8);
}

#hero .btn-get-started {
  
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 3px;
  display: inline-block;
  padding: 14px 32px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background-color: #26335a;;
  margin-left: 25px;
  border-radius: 30px;
  white-space: nowrap;
  
  
}

#hero .btn-get-started:hover {
  background: #884b9e;
}

@media (max-width: 1200px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }	
	#hero .container {
    padding-top: 0rem ;
  }
#hero .container.leftp  {
    
	margin: 3rem 0rem 0rem 0rem;
  	padding: 0rem 0rem 0rem 0rem;
  	justify-content: flex-start;
  	
}		
  #hero .centerp  {
	
    margin: 3rem 0rem 0rem 0rem ;
    padding: 0rem 0rem 0rem 0rem;
	
}
	#hero .centerp img{
		position: relative;
		width: 20rem;
	}	
	
	
}



@media (max-width: 992px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
   top: 66px;
   	  
  }
  #hero {
    height: 100vh;
  }
  #hero .container {
    padding-top: 1rem;
  }
	#hero h1{
		font-size: 50px;
	}
	#hero p{
		font-size: 20px;
	}
	#hero .container.leftp  {
    
	margin: 3rem 0rem 0rem 0rem;
  	padding: 0rem 0rem 0rem 0rem;
  	justify-content: center;
  	
}
	#hero .container.rightp  {
    
	margin: 3rem 0rem 10rem 0rem;
  	padding: 1rem 0rem 2rem 0rem;
  	justify-content: center;
  	background-color: rgba(233,197,226,0.50);
}
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 35px;
  }
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }	
	
	
}


@media (max-height: 500px) {
  #hero {
    height: 160vh;
  }
	
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fcfc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 80px;
  height: 3px;
  background: #FB3D95;
  bottom: 0;
  left: calc(50% - 40px);
}

.section-title p {
  margin-bottom: 0;
  	
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #ecf8f9;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Servicios populares 
--------------------------------------------------------------*/
.featured-services{
	
	background-color: #1a405f;
	height: 100vh;
	align-content: center;
	justify-content: center;
}
.featured-services .icon-box {
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #E8AAD1;
  right: 0;
  left: 100%;
  bottom: 0;
  top: 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #E9C5E0;
  left: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #222222;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 35px;
  text-align: center;
  	
  
	
}

.featured-services .title a {
  color: #fe3b6d;
}

.featured-services .description {
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 0;
  color:#1a405f;	
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #1a405f;
}

.featured-services .icon-box:hover .icon i {
  color: #1a405f;
}

@media (max-width: 768px) {
  .featured-services{
	  height: auto;
	}
  
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(to right, #CFE8E5 0%, #CFE8E5 50%, #F195B3 50%, #F195B3 100%);
  color: #1a405f;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  font-size: 28px;
  font-weight: 700;
}

.cta .cta-btn {
  
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.2s;
  margin-top: 10px;
  border: 2px solid #1a405f;
  color: #1a405f;
  	
}

.cta .cta-btn:hover {
  background: #fff;
  color: #1a405f;
  font-weight: 800;	
}
.cta .doc-cta{
	height:40px;
	width:auto;
	display: inline;
	
}
@media (max-width: 991px) {
	.cta {
		background: #CFE8E5;
	}
}

/*--------------------------------------------------------------
# Dra. Paola Lazo
--------------------------------------------------------------*/

#paolalazo .container{
	align-content: center;
	justify-content:flex-end;
}

#paolalazo .section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background: #FB3D95;
  bottom: 0;
	
}
#paolalazo p{
	font-size: 21px;
}
#paolalazo img{
	border-radius: 10px;
}









/*--------------------------------------------------------------
# Servicios
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
	
}

.services .icon {
  display:flex;
  justify-content: center;
}

.services .icon i {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #3fbbc0;
  font-size: 40px;
  overflow: hidden;
  padding-top: 20px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon-box:hover .icon i {
  box-shadow: 0px 0 25px rgba(63, 187, 192, 0.3);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #3fbbc0;
}

.services .title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #3fbbc0;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}
.services .icon img{
	max-width: 150px;
}

/*--------------------------------------------------------------
# Cita
--------------------------------------------------------------*/

.appointment{
	
	background:#e5e3e3;
}
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.appointment .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .error-message br + br {
  margin-top: 25px;
}

.appointment .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.appointment .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input, .appointment .php-email-form textarea, .appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus, .appointment .php-email-form textarea:focus, .appointment .php-email-form select:focus {
  border-color: #000000;
}

.appointment .php-email-form input, .appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type="submit"] {
  background: #222222;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type="submit"]:hover {
  background:#000000;
}

/*-------------------------------------------------------------
#cirugias1
_____________________________________________________________*/


#cirugias {
  color: #292b2e;	 
  background: rgb(252,252,252);
  background: radial-gradient(circle, rgba(151,6,166,0.50) 75%, rgba(241,241,241,1) 100%);
  padding: 30px 0;
  min-height: 70vh;
	
}

#cirugias h2{
	font-size: 35px;	
}

#cirugias .btn-light {
	
	text-align: center;
	align-content: center; 
	border-radius: 50%;
	width: 110px;
	height: 110px;
	
}
#cirugias .btn-light i {
    
	
	font-size: 40px;
	
}
#cirugias .svg-breast{
	
	width: 60px;
	height: 60px;
}
#cirugias .cajaico{
	text-align: center;
	
	
}

#cirugias h4{
	color: #292b2e;
	text-align:center;
	font-size: 22px;
	padding: 5px;
	font-weight: 505;
}

#cirugias .image{
	width: auto;
	float: left;
	padding: 0 10px 0 0;
}

#cirugias .image img {
  
  max-width: 400px;
  padding: 10px 15px 60px 0;
 
	
}
.vbox-container{
	background-color: rgba(69,69,69,0.24);
}
  .vbox-content{
	align-content: center;
	justify-content: center;
	background-color: rgba(56,54,56,0.00) !important;
}
  .vbox-inline{
	justify-content: center!important;  
	align-content: center;
	background-color: rgba(53,50,50,0.00) !important;
	width: 70%; 
	padding: 10px;
	text-align: center !important;  
	display: flex;
}

   .btn-lg {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.2s;
  margin-top: 10px;
  border: 2px solid #1a405f;
  color: #1a405f; 
  width: 100%;	   
	   
}
.btn-lg:hover{
	
	background: #1a405f;
	color:#fff;
}
.verificacion{
	
	background: #fff;
	border-radius: 15px;
	
	padding: 2rem;
		
}


#cirugias .container {
	margin-top: 5%;
}
#cirugias .contenido {
	width:100% ;
	padding: 50px 0 0 0;
	
}
#cirugias .card {
	background: #151515;
	width: auto;
		
}
#cirugias .inl{
	background-color: black;
	
}
#cirugias .card-header a {
	color:#5E5D5B;
	
}
#cirugias .titulo h4{
	color: #B9B9B9;
	padding: 0 0 15px 0;
	
	
}
#accordion1{
	float: left;
	display: inline-block;
	max-width: 500px;
}
#cirugias  p{
	color: #E8E8E8;
}
 #tarjeta1 #tarjeta2 #tarjeta3 #tarjeta4{
	background: #000;
}


	

@media (max-width: 768px) {
  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }
}



@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



/*--------------------------------------------------------------
# cx
--------------------------------------------------------------*/
.cx .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
}
.cx .section-subtitle{
	align-content: center;
	text-align: center;
	margin: 30px ;
	color: #05496F;
	
}
.cx h3{
	
    border-bottom: 1px solid #B574BA;
	
	
	color: #05496F;
	font-weight: 600;
	letter-spacing: 1px;
	
}

.cx .member .member-img {
  position: relative;
  overflow: hidden;
}

.cx .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cx .member .social a {
  transition: color 0.3s;
  color: #F195B3;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cx .member .social a i {
  line-height: 0;
}

.cx .member .social a:hover {
  color: #FE3B6D;
}

.cx .member .social i {
  font-size: 60px;
  margin: 0 2px;
}

.cx .member .member-info {
  padding: 25px 15px;
}

.cx .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #FE3B6D;
  	
}

.cx .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.cx .member .member-info p {
  font-style: italic;
  font-size: 18px;
  line-height: 26px;
  color: #05496F;
}

.cx .member:hover .social {
  opacity: 1;
}
.cx .member:hover {
	background-color: rgba(250, 210, 223, 0.7);
}

/*--------------------------------------------------------------
# Testimonios
--------------------------------------------------------------*/
.testimonios .testimonios-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  align-content: center;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonios .testimonios-item .testimonios-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonios .testimonios-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #FE3B6D !important;
}

.testimonios .testimonios-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonios .testimonios-item .quote-icon-left, .testimonios .testimonios-item .quote-icon-right {
  color: #F195B3;
  font-size: 26px;
}

.testimonios .testimonios-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonios .testimonios-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonios .testimonios-item p {
  font-style: normal !important;
  margin: 0 auto 15px auto;
  color: #05496F; 	 
  font-size: 20px;	 
}

.testimonios .owl-nav, .testimonios .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonios .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonios .owl-dot.active {
  background-color: #BB2883 !important;
}
.testimonios .owl-carousel .owl-next, .testimonios .owl-carousel .owl-prev{
	display: none;
}

@media (max-width: 767px) {
  .testimonios {
    margin: 30px 10px;
  }
}




/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/
.contact .info-box {
  color: #05496F;
  text-align: center;
 box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #FE3B6D;
  border-radius: 50%;
  padding: 8px;
  border: 2px double #FE3B6D;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #05496F;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 17px;
  margin-bottom: 0;
  color: #05496F; 	
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
   color: #05496F;	
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #222222;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #26335a;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 30px;
}

.contact .php-email-form button[type="submit"]:hover {
  background:#05496F;
 	
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #FFE4F4;
  padding: 0 0 30px 0;
  color: #555555;
  font-size: 14px;
}

#footer .footer-top {
  background: #FFEEF9 ;
  padding: 60px 0 30px 0;
}
#footer .footer-info img{
	
	width: 12rem;
	
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
  text-align: center;  	
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 17px;
  line-height: 30px;
  margin-bottom: 0;
  
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #FE3B6D;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #F1A4EC;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  color: #FE3B6D;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  justify-content: center;
  text-align: center;	
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
 
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #000000;
  font-size: 18px;
  line-height: 1;
  
	
  	
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  flex-direction: column;		
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #555555;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 17px;	
}

#footer .footer-top .footer-links ul a:hover {
  color: #713743;
}

#footer .footer-top .footer-newsletter  {
  
	text-align: center;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #65c9cd;
}

#footer .copyright {
  text-align: center;
  padding-top: 20px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 11px;
}


/*--------------------------------------------------------------
# biopolimeros pagina
--------------------------------------------------------------*/

#biopolimeros_portada{
	
	
	background-color: color-mix(in srgb, #8D04A6 50% , white 60%);
	
	margin-bottom: 3rem;
	padding-top: 10rem; 
}

#biopolimeros_info .cajatexto{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20 5;
	margin: 50 5;
}

#biopolimeros_info .cajatexto h2{
	
	line-height: 3rem;
	font-family: 'Century Gothic', sans-serif;
}
#biopolimeros_info .cajatexto p{
	
	line-height: 2rem;
	font-size: 16pt;
	font-family: 'Century Gothic', sans-serif;
	
}
#biopolimeros_info .cajaimagen{
	display: flex;
	align-items: center;
	justify-content: center;
}
#biopolimeros_info .cajaimagen img{
	width: 85%;
	height: auto;

	
	
	
}

@media (max-width: 767px) {
  #biopolimeros_info .cajaimagen img {
    width: 50%;
	height: auto;

  }
}
#biopolimeros_info  .cajavideo{
	
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50rem;
	height: 30rem;
	
}
#comparacion .comparacion{
	display: flex;
	align-items: center;
	justify-content: center;
}
#comparacion .cajacomparacion{
	display: flex;
	align-items: center;
	justify-content: center;
	
}

/*--------------------------------------------------------------
# procedimietos pagina
--------------------------------------------------------------*/


#procedimientos {
	
	background-color: color-mix(in srgb, #8D04A6 10% , white 60%);
	
	margin-bottom: 1rem;
	padding: 10rem 2rem 1rem; 
}
 #procedimientos .titulo{
	 
	 position: relative;
	
	 display: block;
	 margin: 1rem; 
	padding: 1rem 1rem;	 
	text-align: center;
	
}
.procedimiento-hero   h1{
	
	justify-content: center;
	font-size: 50pt;
	font-weight: 600;
	color: #26335a;
	text-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.texproced p{
	
	font-size: 21px;
	letter-spacing: 2px;
	font-family: 'Century Gothic', sans-serif;
}
.imgiz{
	display: flex;
	justify-content: flex-end;
	
}
.imgiz img{
	
}

	
.procedimiento-hero {
      background: color-mix(in srgb, #e1b4d2 30% , white 60%);
      padding: 180px 0 80px;
      margin-top: 0rem;
    }
    
   #informacion .procedimiento-content {
      padding: 60px 0;
    }
    
  #informacion  .info-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      transition: transform 0.3s ease;
    }
    
 #informacion .info-card:hover {
      transform: translateY(-5px);
    }
    
 #informacion   .icon-box {
      width: 60px;
      height: 60px;
      background: #1A405F;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    
  #informacion  .icon-box i {
      color: white;
      font-size: 24px;
    }
    
  #informacion  .beneficios-list {
      list-style: none;
      padding: 0;
    }
    
  #informacion  .beneficios-list li {
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      position: relative;
      padding-left: 30px;
    }
    
  #informacion  .beneficios-list li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #FE3B6D;
      font-weight: bold;
    }
    
    .cta-section {
      background: linear-gradient(135deg, #1A405F 60%, #357abd 100%);
      color: white;
      padding: 60px 0;
      text-align: center;
    }
    
    .btn-primary-custom {
      background: #4a90e2;
      border: none;
      padding: 12px 30px;
      border-radius: 25px;
      color: white;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
    }
    
    .btn-primary-custom:hover {
      background: #357abd;
      transform: translateY(-2px);
      color: white;
      text-decoration: none;
    }
    
    #pasos .proceso-timeline {
      position: relative;
      padding: 20px 0;
    }
    
   #pasos .timeline-item {
      display: flex;
      margin-bottom: 30px;
      align-items: flex-start;
	   
    }
    
   #pasos .timeline-number {
      width: 40px;
      height: 40px;
      background: #1a405f; 
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin-right: 20px;
      flex-shrink: 0;
    }
    
    .faq-item {
      border: 1px solid #e9ecef;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }
    
    .faq-header {
      background: #f8f9fa;
      padding: 20px;
      cursor: pointer;
      border-bottom: 1px solid #e9ecef;
      font-weight: bold;
      color: #1a405f;
    }
    
    .faq-content {
      padding: 20px;
      display: none;
      background: white;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .section-title h2 {
      color: #333;
      font-size: 2.5rem;
      margin-bottom: 15px;
    }
    
    .section-title p {
      color: #1A405F;
      font-size: 1.1rem;
	  font-style: italic;
    }


@media (max-width: 767px) {
	.tutulo{
		margin: 1px;

  }
	.procedimiento-hero   h1{
		font-size: 30pt;
		text-align: center;
	}
}
