/**
=======================================================
  * Name: Dr. Mauricio Sanabria - v1
  * URL: https://drsanabriastorino.com/
  * Author: David L 
 ======================================================== 
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'HelveticaNeue-Light', sans-serif; 
  color: #444444;
}

a {
  color: #222222;
}

a:hover {
  color: #000000;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'HelveticaNeue-Light', sans-serif;
}

/*--------------------------------------------------------------
# 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: 40px;
  border-radius: 50px;
  background: #000;
  color: #fbf1cc;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background-color: #fbf1cc;
  color: #000;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  color: #000000;
  height: 40px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
}

#topbar  .redesnav{
	font-size: 25px ;
	margin: 0 0 0px 0 ;
	
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 100px;	
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 40px;
  top: 0px;
 	
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}


#header.header-scrolled {
  top: 0;
}

#header .logo {
 
  letter-spacing: 0.5px;
  margin-left: 5rem;
}

#header .logo a {
  color: #555555;
  height: 	auto;
  	
}

#header .logo img {
    height:50px;
	
	
}

#header .navbar {
	text-align: start;
	align-items: flex-start;
	padding-right: 60px;
	

}
#header .navbar img{
	width: 50%;
	height:50%;
	margin: 2px;
	
	
}


  

@media screen and (max-width: 1200px) {
  #header {
    top: 0;
    padding: 15px 0 ;
	height: 100px;  
  }
  
}
@media screen and (min-width: 992px) {
  #header {
      
	  padding: 20px 5px ;
	  margin: 0px;
	  height: 100px;
  }
  
}

@media screen and (max-width: 992px) {
  #header {
      top: 0px;
	  padding: 20px 5px;
	  margin: 0px;
	  height: 100px;
  }
  #header .logo{
      
	  margin-left: 2rem;
	 
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu{
	
	align-items: flex-end;
	
}
.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: 10px 0 10px 25px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #555555;
  transition: 0.3s;
  font-size: 15px;
  font-family: 'HelveticaNeue-Light', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.2rem;
  
}
.nav-menu img{
	width: 35px;
	height: 35px;
	margin-left: 20px;

}
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #000;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  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: #194b4d;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #3fbbc0;
}

.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";
  }
}

/* Appointment Button */
.appointment-btn {

  margin-left: 25px;
  background: #313131;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
   
  	
  
}

.appointment-btn:hover {
  background-color: #000000;
  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 img {
  display: block;	
  width: 35px;
  height:35px;	
}
.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
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: 'HelveticaNeue-Light', sans-serif;
   
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #fbf1cc;
  background-color: #3A3A3E;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width : 499px ){
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, #201F24 100%, transparent 30%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 20px;
  font-weight: 600;
  padding-right: 50px;
  color: #E1E3CC ;	
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, #E1E3CC  100% , transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}




#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);
	
	
}
#galeriacont{
	
	 top: 30%;
	
	
}
#galeriacont .section-title{
	
	 padding: 30px 0;
}

#header_g .logo {
	
	padding: 10px 10px 5px 10px;
}

#header_g .appointment-btn{
	
	width: auto;
	height: 20%;
	
	
	
}

#galeriacont .titulogal{
	
	
	
	
}

.menuimg{
	background-color: #161616;
	border: solid;
	border-color: #565454;
	border-radius: 15px ;
	border-width: 2px;
	padding: 5px ;
	
}
.menuimg a{
	color: #FFFFFF;
	margin: 2%;
	
}

#galeriacont .cajapost{
	
	background: linear-gradient(180deg, #000000 25%, #5c5c5c 50%, #000000 75% );
	margin-bottom: 3rem;
	
	
}
#galeriacont .cajapost .titulopost h4{
	
	color:#ffffff;
	font-family: "HelveticaNeue-Light";
	font-size: 50pt;
	padding: 0rem 4rem;
	text-align: center;
	font-weight:900;
	
}

#galeriacont .cajapost .titulopost h5{
	
	color:#ffffff;
	font-family: "HelveticaNeue-Light";
	font-size: 25pt;
	padding: 0rem 1rem 1rem;
	text-align: center;
	font-weight:700;
	
}








/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(51, 54, 59, 10);
  overflow: hidden;
  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 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  /*justify-content: flex-start;*/
  align-items:center;
}

#hero .container {
  text-align: center;
  background: rgba(0, 0, 0, 0.0);	
  padding-top: 3rem;
  padding-bottom: 30px;
  border-top: 0px solid #000;
  margin-left: 50%;	
  margin-bottom: 5px;
  margin-right: 20px;
  z-index: 1;
   	
  	
}
#hero .imgslide{
	padding-top: 20%   ;
	padding-left: 7rem;
	position: absolute;
	z-index: 0;
}
#hero .container .social-links {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

#hero .container .social-links a {
  	
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 30px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

#hero .container .social-links a:hover {
  background: #CCC6B4;
  color:black;
}

@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;   
    background: rgba(0, 0, 0, 0.3);	    
  }
}

#hero h2 {
  color: #CCC6B4;
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 700;
  font-family: "vogue";	
  letter-spacing: 0.8px; 	
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #F8F9EB;
  font-size: 25px;	
}

#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;
}

@media (max-width: 992px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  }
	#hero .imgslide{
		padding-left: 2rem;
	}
}
 
	
	
	
	

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon   {
  background: none  !important;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
 /* background: rgba(251, 241, 204, 0.4);*/
  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(251, 241, 204, 0.8);
  color: rgba(255, 255, 255, 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: #fbf1cc;
}

#hero .btn-get-started {
  font-family: 'HelveticaNeue-Light', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background-color: #262626;
}

#hero .btn-get-started:hover {
  background: #CCC6B4;
  color: #000000;	
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
	#hero h2{
		font-size: 45px;
	}

  
}

@media (min-width:0px) and (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
	#hero .container{
		margin-left: 30px;
		margin-right: 30px;
	}
			#hero .imgslide{
	padding-top: 15rem   ;
}
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
	#hero .imgslide{
		padding-left: 15rem;
	}
}

@media (max-width: 500px) {
	

	
}

@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-family: "vogue";	
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-top: 15px;	
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 100%;;
  height: 2px;
  background: #fbf1cc;
  bottom: 0;
  	
  
}

.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;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #222222;
  top: 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: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #CCC6B4;
  color: #2B2B2B;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  font-size: 28px;
  font-weight: 700;
}

.cta .cta-btn {
  font-family: 'HelveticaNeue-Light', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: none;
  color: #fff;
  background-color: #3A3A3E;
}

.cta .cta-btn:hover {
  background: #23273B;
  color: #fff;
}

/*--------------------------------------------------------------
# Dr. Mauricio Sanabria
--------------------------------------------------------------*/


#mauriciosanabria .container{
	
	margin-top: 60px;
	margin-bottom: 50px;
	font-family: 'HelveticaNeue-Light', Arial, sans-serif;
}
#mauriciosanabria .container img{
	border-radius: 10px;
	
}
#mauriciosanabria .content{
	text-align: center;
		
}
#mauriciosanabria p{
	text-align: left;
}

#mauriciosanabria .btn-dark{
	
	background-color: #3a3a3e; 
	border:none;
}

#mauriciosanabria .btn-dark:hover{
	background-color: #ccc6b4;
	color: #000000;
	
}
@media (max-width: 950px){
	#mauriciosanabria .container{
		margin-top: 20px;
		margin-bottom: 20px;
	}
}




/*--------------------------------------------------------------
# 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 ;
	
}
.cx h3{
	
	font-family: 'HelveticaNeue-Light', Arial, sans-serif;
	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: #555555;
  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: #CCC6B4;
}

.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: 18px;
  color: #555555;
}

.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: 14px;
  line-height: 26px;
  color: #777777;
}

.cx .member:hover .social {
  opacity: 1;
}
.cx .member-info:hover {
	background-color: #EBE9E5;
}




/*--------------------------------------------------------------
# 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: #fff;		
  background: #000000;
  padding: 30px 0;
  min-height: 100vh;
	
}

.cirugias h2{
	font-size: 32px;	
}

.cirugias .btn-light {
	
	border-radius: 100%;
	width: 100px;
	height: 100px;
	
}
.cirugias .btn-light i {
    align-content: center; 
	justify-content: center;
	font-size: 40px;
	
}
.cirugias .svg-breast{
	
	width: 60px;
	height: 60px;
}


.cirugias h4{
	color: #fff;
	text-align:center;
	font-size: 20px;
	
}
.cirugias .image{
	width: auto;
	float: left;
	padding: 0 10px 0 0;
}

.cirugias .image img {
  
  max-width: 400px;
  padding: 10px 15px 60px 0;
 
	
}
.cirugias  .btn-lg {
	border-radius: 5% ;
	border-style: solid ;
	border-color: #262525 ;
	border-width: 3px ;
	background:#131313;
	color:#fff;
	padding: 20px;
	width:100%;
	
}

.cirugias .container-fluid {
	margin-top: 5%;
}
.cirugias .contenido {
	width:100% ;
	padding: 50px 0 0 0;
	
}
.cirugias .card {
	background: #151515;
	width: auto;
		
}
.cirugias .card-header a {
	color:#5E5D5B;
	
}
.cirugias .titulo h4{
	color: #B9B9B9;
	padding: 0 0 15px 0;
	
	
}
.cirugias #accordion1{
	float: left;
	display: inline-block;
	max-width: 500px;
}
.cirugias  p{
	color: #E8E8E8;
}
.cirugias #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;
  }
}
.departments .tab-pane {
	
	width: auto;
	
}

/*--------------------------------------------------------------
  pagina de procedimientos 
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# procedimiento-encabezado 
--------------------------------------------------------------*/



#procedimiento-encabezado{
	
	background-color: #3A3A3E;
}

#procedimiento-encabezado .procedimiento-encabezado{
	display:grid;
	justify-content: center;
	align-items: center;
	padding: 0px ;
	margin-top: 20rem;
	position: relative;
	
	
}

#procedimiento-encabezado .izquierda{
	
	position: relative;
	
	
}
#procedimiento-encabezado .contenidoi {
	
	
	margin-right: 0.02%;
	margin-left: 0.02%;
	align-items:center;
	
}
#procedimiento-encabezado .contenidod {
	
	
	margin-right: 0.02%;
	margin-left: 0.02%;
	align-items:center;
	padding-bottom: 0px;
	margin-bottom: 0px;
	
}
#procedimiento-encabezado .contenidod img {
	
	
	width: auto;
	height: 36rem;
	margin-top: 3rem;
	align-items:center;
	margin-left: 20%;
	
}



#procedimiento-encabezado .derecha{
	
	position: relative;
	padding-right: 5%;
	justify-content: center;
	padding-bottom: 0px;
}
#procedimiento-encabezado .titulo{
	
	
	margin-top:0%;

   /* margin-bottom: 100px;
    margin-left: 30px;
    margin-top: 30px;*/
  	
}

#procedimiento-encabezado .section-title h2 {
	padding: 5% 0 0 0;
	color: #fff;
	font-family: "vogue";
	letter-spacing: 5px;
	font-size: 35px;
	
}

#procedimiento-encabezado h3{
	font-family: 'HelveticaNeue-Light', sans-serif;
	color: #989381;
}
@media (max-width: 985px){
	#procedimiento-encabezado .contenidod {
		position: absolute;
	}
	#procedimiento-encabezado .section-title  {
		
		padding-top: 8rem;
	}
}

/*--------------------------------------------------------------
# procedimiento-descripcion
--------------------------------------------------------------*/
#procedimiento-descripcion{
	padding-top: 10%;
	background-color: #FFFEF6
}

#procedimiento-descripcion .cajaimagen{
	text-align: center;
}
#procedimiento-descripcion .cajaimagen img{
	width: auto;
	height: 500px;
}
#procedimiento-descripcion .cajatexto{
	padding-right: 20%;
	padding-left: 2%;
	padding-top: 5%;
	
}
#procedimiento-descripcion .cajatextoi{
	padding-right: 2%;
	padding-left: 20%;
	padding-top: 5%;
	
}
#procedimiento-descripcion .cajatexto h2, .cajatextoi h2{
	text-align: center;
	font-family: 'vogue';
	
	
}
#procedimiento-descripcion .cajatexto p, .cajatextoi p{
	text-align: left;
	font-family: 'HelveticaNeue-Light', sans-serif;
	padding-top: 5%;
	font-size: 22px;
	
}
@media (max-width: 980px){
	#procedimiento-descripcion .cajatexto{
		padding-left: 5em;
		padding-right: 5em;
	}
	#procedimiento-descripcion .cajatextoi{
		padding-left: 5em;
		padding-right: 5em;
	}
	#procedimiento-descripcion h2{
		padding-top: 2em;
	}
}
@media (max-width: 720px){
	#procedimiento-descripcion .cajatexto{
		
	}
}

/*--------------------------------------------------------------
# Preguntas frecuentes
--------------------------------------------------------------*/
.preguntas-frecuentes{
	padding: 10% 2% ;
}
.preguntas-frecuentes .container{
	align-items: center;
}
.preguntas-frecuentes h2{
	
	font-size: 55px;
	color: #CCC6B4;
	font-family: 'vogue';
	font-weight: 800;
	letter-spacing: 2px;
	
	
}
.preguntas-frecuentes .container p{
	font-size: 35px;
	margin: 1px;
	padding: 0px;
	font-weight: 800;
	letter-spacing: 2px;
	
}
.preguntas-frecuentes .card {
	
	width: auto;
	margin: 5px;
		
}
.preguntas-frecuentes .card-header{
	background-color: #3A3A3E;
}
.preguntas-frecuentes .card-header a {
	color:#ffffff;
	font-size: 20px;
	letter-spacing: 0.8px;
	font-family:  'HelveticaNeue-Light', sans-serif;
	font-weight: 500;
}



.preguntas-frecuentes #accordion1{
	
	display: inline-block;
	width: 500px;
	
}
.preguntas-frecuentes .titulo  h3{
	font-size: 20px;
	padding: 0 0 15px 0;
	color:#ffffff !important;
	font-family:  'HelveticaNeue-Light', sans-serif;
	font-weight: 500;
	
}
.preguntas-frecuentes .card-body{
	background-color: #FFFDF8
}

.preguntas-frecuentes .card-body p{
	color:#131313;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: normal;
	font-family:  'HelveticaNeue-Light', sans-serif;
}
@media (max-width: 540px){
	.preguntas-frecuentes #accordion1{
	

	width: 350px;
	
}
}



/*--------------------------------------------------------------
  pagina Dr. Mauricio Sanabria
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# dr-descripcion
--------------------------------------------------------------*/
#dr-descripcion{
	padding-top: 2%;
	background-color: #FFFEF6;
	border-bottom: #E8E2AB, solid;
}

#dr-descripcion .cajaimagen{
   
  
  	text-align: center;
  	margin-bottom: 20px;
	
	
	
}
#dr-descripcion .cajaimagen img{
	width: auto;
	height: 500px;
	
	
	
}
#dr-descripcion .cajatexto{
	padding: 5rem;
	
	
}

#dr-descripcion .tituloprof{
	background-color: #3A3A3E;
	padding: 1rem;
	margin-bottom: 3rem;
}

#dr-descripcion h2{
	text-align: center;
	font-family: 'vogue';
	
	
}
#dr-descripcion  p{
	
	font-family: 'HelveticaNeue-Light', sans-serif;
	padding-top: 2%;
	font-size: 22px;
	margin: 1rem;
	
}


#dr-descripcion .container h2{
	
	font-size: 35px;
	color: #CCC6B4;
	font-family: 'vogue';
	font-weight: 800;
	letter-spacing: 2px;
	
	
}

#dr-descripcion .pdfdoc {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

#dr-descripcion .pdfdoc a {
  	
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 30px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

#dr-descripcion .pdfdoc a:hover {
  background: #CCC6B4;
  color:black;
}

@media (max-width: 980px){
	#dr-descripcion .cajatexto{
		
	}
}
@media (max-width: 720px){
	#dr-descripcion .cajatexto{
	padding: 2px;	
	}
}





/*--------------------------------------------------------------
# Testimonios
--------------------------------------------------------------*/



.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 20%;
	
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #b2e4e6;
  font-size: 26px;
	
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #f0fafa;
  position: relative;
  border-radius: 6px;
  z-index: 1;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #fbf1cc !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/




.gallery {
  overflow: hidden;
  
}

.gallery .owl-nav, .gallery .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.gallery .owl-item {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}

.gallery .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0f4f5 !important;
}

.gallery .owl-dot.active {
  background-color: #fbf1cc !important;
}

.gallery .gallery-carousel .owl-stage-outer {
  overflow: visible;
}
.gallery h5, h6{
	
	color: #1D1D1D;
	
}

.gallery h5, h6:hover{
	
	color: #000000;
	
}







/*--------------------------------------------------------------
# Frequently Asked Questioins
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: 'HelveticaNeue-Light', sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #3fbbc0;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #3fbbc0;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Contacto
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 15px ;
  
  	
  	
  
}
.contact .info-box .iconbox{
	
	padding: 15px;
	align-content: center;
	justify-content: center;
}


.contact .info-box .iconbox i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 35px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
  border-bottom-style:solid;	
}





.contact .info-box h3 {
  font-size: 20px;
  color: #1A1A1A;
  font-weight: 700;
  margin: 10px 0;
  font-family: 'HelveticaNeue-Light', sans-serif;
  text-align: start;	
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: start;	
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}

.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: #3A3A3E;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background:#CCC6B4;
  color: #000000;	
}

@-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: #FFFEFB;
  padding: 0 0 30px 0;
  color: #555555;
  font-size: 14px;
}

#footer .footer-top {
	
  padding: 60px 0 30px 0;
  justify-content: center;	
}
#footer .footer-info img{
	
	width: 18rem;
	height: 4rem;
	margin: 2rem 1rem ;
	
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 0px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  font-family: 'HelveticaNeue-Light', sans-serif;
}

#footer .footer-top .footer-info p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'HelveticaNeue-Light', sans-serif;
}
#footer .footer-top .social-links{
	align-content: center;
	justify-content: center;
	padding: 5px 30px;
}
#footer .footer-top .social-links a {
  font-size: 25px;
  display: inline-block;
  background: #3A3A3E;
  color: #fff;
  line-height: 1;
  padding: 11px 0;
  margin-right: 10px;
  border-radius: 50px;
  text-align: center;
  width: 50px;
  height: 50px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #CCC6B4;
  text-decoration: none;
  color: #000000;	
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

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

#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;
}

#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;
}

#footer .footer-top .footer-links ul a:hover {
  color: #713743;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
	
}

#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;
}
