/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Raleway", sans-serif;
  color: #444444;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: #985888;
}

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

h1 {
  font-family: "Raleway";
}

h2,
h3,
h4,
h5,
h6 {
font-family: "Raleway", sans-serif;
}

h3 strong {
	color: #9F6916;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #985888;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #66075D;
  color: #fff;
}

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

.bi-nt::before {
  content: "";
  display: inline-block;
  width: 1.5em; /* Ajusta el tamaño según sea necesario */
  height: 1.5em;
  background-image: url('icono.svg'); /* Ruta a tu archivo SVG */
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.1);
  z-index: 996;
  color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
  background: transparent;
}

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

#topbar i {
  color: #8D547C;
  line-height: 0;
}

#topbar i span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Header

#header.header-transparent {
  background: transparent;
}
--------------------------------------------------------------*/
#header {
  top: 0px;
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0;
  background: rgba(242, 241, 233, 0.255);
}

#header.header-scrolled {
  top: 0;
  background: rgba(242, 241, 233, 0.85);
}

/* Agregar esta sección para cambiar el color del texto del menú cuando se hace scroll */
#header.header-scrolled .navbar a,
#header.header-scrolled .navbar .getstarted {
  color: #424242; /* Cambiar el color del texto a negro */
}

/* Cambiar el color de la letra del botón .getstarted a blanco cuando se haga hover después de scroll */
#header.header-scrolled .navbar .getstarted:hover {
  color: #fff; /* Cambiar el color del texto a blanco */
  border-color: #3D3D3D; /* Cambiar el borde a negro si es necesario */
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;
}

/* Cambiar el color del fondo del header solo para la página específica */
.page-pink-header #header {
  top: 0px;
  background: #FFF0E8;
}

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

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

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 8px 12px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800; /*Intensidad de color de la fuente del menú*/
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #985888; /*Color de la fuente en el menú desplegable*/
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  border: 2px solid #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #3B1832;
  border-color: #985888;
}

.navbar>ul>li>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 238, 244, 0.9); /* Fondo con 90% de transparencia */
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px; /*Valor original 200 -- lo tenia en 320*/
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #15222b;
  font-weight: 500;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #985888;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  min-width: 200px;
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
  background: rgba(243, 232, 235, 0.9); /* Fondo con 90% de transparencia */
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

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

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

  .navbar ul {
    display: none;
  }
}

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

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

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #985888;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgba(255, 255, 255, 0.9); /* Fondo con 90% de transparencia */
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

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

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #985888;
}

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



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

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

.navbar-blog li {
  position: relative;
}

.navbar-blog>ul>li {
  white-space: nowrap;
  padding: 8px 12px;
}

.navbar-blog a,
.navbar-blog a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800;
  color: #424242; /* Botón en reposo: texto negro */
  white-space: nowrap;
  transition: 0.3s;
  background-color: transparent; /* Sin color de fondo */  
}

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

.navbar-blog>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #985888; /* Color de la fuente en el menú desplegable */
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar-blog a:hover:before,
.navbar-blog li:hover>a:before,
.navbar-blog .active:before {
  visibility: visible;
  width: 100%;
}

.navbar-blog a:hover,
.navbar-blog .active,
.navbar-blog .active:focus,
.navbar-blog li:hover>a {
  color: #985888; /* Botón sobre: texto morado */
  background-color: transparent; /* Sin color de fondo */
}

.navbar-blog .getstarted,
.navbar-blog .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 8px;
  font-size: 12px;
  background: #BF51A3;
  color: #fff;
  border: 2px solid #D961BA;
}

.navbar-blog .getstarted:hover,
.navbar-blog .getstarted:focus:hover {
  color: #fff;
  background: #3B1832;
  border-color: #985888;
}

.navbar-blog>ul>li>.getstarted:before {
  visibility: hidden;
}

.navbar-blog .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(243, 232, 235, 0.9); /* Fondo con 90% de transparencia */
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar-blog .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #985888; /* Texto de los menús desplegables: color morado intenso */
  font-weight: 500;
}

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

.navbar-blog .dropdown ul a:hover,
.navbar-blog .dropdown ul .active:hover,
.navbar-blog .dropdown ul li:hover>a {
  color: #985888;
}

.navbar-blog .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar-blog .dropdown .dropdown ul {
  min-width: 200px;
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
  background: rgba(243, 232, 235, 0.9); /* Fondo con 90% de transparencia */
}

.navbar-blog .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar-blog .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar-blog .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

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

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

  .navbar-blog ul {
    display: none;
  }
}

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

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

.navbar-blog-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-blog-mobile a,
.navbar-blog-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;
}

.navbar-blog-mobile a:hover,
.navbar-blog-mobile .active,
.navbar-blog-mobile li:hover>a {
  color: #985888;
}

.navbar-blog-mobile .getstarted,
.navbar-blog-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-blog-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgba(243, 232, 235, 0.9); /* Fondo con 90% de transparencia */
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

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

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

.navbar-blog-mobile .dropdown ul a:hover,
.navbar-blog-mobile .dropdown ul .active:hover,
.navbar-blog-mobile .dropdown ul li:hover>a {
  color: #985888;
}

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


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #F5E1D7;
  min-height: 40px;
  margin-top: 70px;
  border-top: 1px solid #d3d3d3;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 18px;
  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;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
}

#hero h1 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
}

#hero h1 span {
  color: #E7D1D8;
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 20px auto;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
}


#hero .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #985888;
  border: 2px solid #985888;
}

#hero .btn-get-started:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #985888;
}



#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center bottom;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  color: rgba(255, 255, 255, 0);
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #F4B50D;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: #F4B50D;
  color: #fff;
}

@media (max-width: 668px) {
  #hero h1 {
    font-size: 22px;
  }
}


@media (min-width: 1366px) {
  #hero p {
    width: 100%;
	text-transform: none; /* Texto no en mayúsculas */
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Secciones Generales
--------------------------------------------------------------*/
.section {
  padding: 40px 0 40px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  color: #A77394;
}

.section-title h2 .span {
  color: #8D547C;
}

.section-title p {
  margin: 12px auto 0 auto;
  font-weight: 300;
}

.section-title p strong {
  font-weight: bold; /* Asegura que el texto en <strong> sea en negrita */
}

@media (min-width: 1366px) {
  .section-title p {
    width: 70%;
  }
}

/*--------------------------------------------------------------
# Bienvenidos
--------------------------------------------------------------*/
.bienvenidos {
  background-size: cover;
  position: relative;
  padding: 30px 0 0px 0;
}

.bienvenidos .container {
  padding: 0 20px;
}

.bienvenidos .container h2 {
  margin: 15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #A77394;
}

.bienvenidos .container h2 span {
  color: #8D547C;
}

.bienvenidos .container h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}

.bienvenidos .container h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.bienvenidos .container p {
}

.bienvenidos .container p strong {
   font-weight: bold !important;
   font-weight: bolder;
}

.bienvenidos .container .section-title p strong {
   font-weight: bold !important;
   font-weight: bolder;
}

.bienvenidos .container ul {
  list-style: none;
  padding: 0;
}

.bienvenidos .container ul li+li {
  margin-top: 15px;
}

.bienvenidos .container ul li {
  position: relative;
  padding-left: 40px;
}

.bienvenidos .container ul i {
  font-size: 15px;
  position: absolute;
  left: 14px; /* Ajustar la posición del icono para alinearlo con el nuevo padding */
  top: 2px;
  color: #8D547C;
}



/*--------------------------------------------------------------
# Quienes Somos
--------------------------------------------------------------*/
.quienes-somos-nt {
  background-size: cover;
  position: relative;
  background: #F7F7F7;
  padding: 60px 0 30px 0;
}

.quienes-somos-nt .container {
  padding: 0 20px;
}

.quienes-somos-nt .container h2 {
  margin: 15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #A77394;
}

.quienes-somos-nt .container h2 span {
  color: #8D547C;
}

.quienes-somos-nt .container h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}

.quienes-somos-nt .container h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.quienes-somos-nt .container p {
}

.quienes-somos-nt .container p strong {
   font-weight: bold !important;
   font-weight: bolder;
}

.quienes-somos-nt .container .section-title p strong {
   font-weight: bold !important;
   font-weight: bolder;
}




/*--------------------------------------------------------------
# Educación perinatal EBE5DE
--------------------------------------------------------------*/

.about {
  background: #F2F2E9;
  background-size: cover;
  padding: 30px 0 30px 0;
  position: relative;
}

.about .content {
  padding: 0 20px;
}

.about .content h2 {
  margin: 15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #A77394;
}

.about .content h2 span {
  color: #8D547C;
}

.about .content h3 {
  font-weight: 400;
  font-size: 28px;
  color: #5f5950;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
}

.about .content p strong {
   font-weight: bold !important;
   font-weight: bolder;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li+li {
  margin-top: 15px;
}

.about .content ul li {
  position: relative;
  padding-left: 40px;
}

.about .content ul i {
  font-size: 15px;
  position: absolute;
  left: 14px; /* Ajustar la posición del icono para alinearlo con el nuevo padding */
  top: 2px;
  color: #8D547C;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#8D547C 50%, rgba(141, 84, 124, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(141, 84, 124, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #8D547C;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .about .content,
  .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }

  .about .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Razón de ser
--------------------------------------------------------------*/
.services {
  background-size: cover;
  padding: 60px 0 30px 0;
  position: relative;
}

.services .container .section-title p strong{
  font-weight: bold !important;
}
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}

.services .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .details p strong {
	font-weight: bold !important;
}

.services .details p em {
	font-weight: 600;
	font-style: italic;
}

.services .service-item:hover .details h3 {
  color: var(--color-primary);
}

.services .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}

.services .service-item:hover .details .icon i {
  color: var(--color-primary);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

.services .service-item .details ul {
  list-style: none;
  padding-left: 50%;
}

.services .service-item .details ul li+li {
  margin-top: 15px;
}

.services .service-item .details ul li {
  position: relative;
  padding-left: 40px;
}

.services .service-item .details ul i {
  font-size: 15px;
  position: absolute;
  left: 0px; /* Ajustar la posición del icono para alinearlo con el nuevo padding */
  top: 2px;
  color: #8D547C;
}


/*--------------------------------------------------------------
# CURSOS Y TALLERES DBDDB6
--------------------------------------------------------------*/

.cursos {
  background: #F2F2E9;
  background-size: cover;
  padding: 60px 0 30px 0;
  position: relative;
}

.cursos .nav-tabs {
  border: 0;
}

.cursos .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-secondary);
  background: #F6F7EE;
  box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.cursos .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.cursos .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: var(--color-secondary);
}

.cursos .nav-link:hover {
  color: var(--color-primary);
}

.cursos .nav-link.active {
  transition: 0.3s;
  background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
  border-color: var(--color-primary);
}

.cursos .nav-link.active h4 {
  color: var(--color-white);
}

.cursos .nav-link.active i {
  color: var(--color-white) !important;
}

.cursos .tab-content {
  margin-top: 30px;
}

.cursos .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.cursos .tab-pane p {
font-size: 14px;
}

.cursos .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
  color: var(--color-secondary);
}

.cursos .tab-pane ul {
  list-style: none;
  padding: 0;
}

.cursos .tab-pane ul li {
  padding-bottom: 10px;
  font-size: 14px;
  padding-left: 30px;
}

.cursos .tab-pane ul i {
  font-size: 14px;
  margin-right: 4px;
  color: var(--color-primary);
  left: 14px;
}

.cursos .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Testimoniales
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/img6.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
 background: rgba(141, 84, 124, 0.95);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: var(--color-white);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(var(--color-white-rgb), 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-white);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(var(--color-white-rgb), 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: var(--color-yellow);
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--color-white-rgb), 0.6);
  font-size: 26px;
  line-height: 0;
}

.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;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(var(--color-white-rgb), 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}


/*--------------------------------------------------------------
# Galería
--------------------------------------------------------------*/

.gallery {
  padding: 60px 0 30px 0;
  background: #fff;
  background-size: cover;
}

.gallery .container-fluid p strong {
   font-weight: bold !important;
   font-weight: bolder;	
}


.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}


/*--------------------------------------------------------------
# Estilos para PRENATAL
--------------------------------------------------------------*/
.prenatal {
  background: #F2F2E9;
  background-size: cover;
  padding: 60px 0 30px 0;
  position: relative;
}

.prenatal .content {
  padding: 0 20px;
}

.prenatal .content h2 {
  margin: 15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #A77394;
}

.prenatal .content h2 span {
  color: #8D547C;
}

.prenatal .content h3 {
  font-weight: 400;
  font-size: 28px;
  color: #5f5950;
}

.prenatal .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.prenatal .content p {
}

.prenatal .content ul {
  list-style: none;
  padding: 0;
}

.prenatal .content ul li+li {
  margin-top: 15px;
}

.prenatal .content ul li {
  position: relative;
  padding-left: 40px;
}

.prenatal .content ul i {
  font-size: 15px;
  position: absolute;
  left: 14px; /* Ajustar la posición del icono para alinearlo con el nuevo padding */
  top: 2px;
  color: #8D547C;
}

.prenatal .content p:last-child {
  margin-bottom: 0;
}

.prenatal .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}


@media (max-width: 1024px) {

  .prenatal .content,
  .prenatal .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .prenatal .content {
    padding-top: 30px;
  }

  .prenatal .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Estilos para APRENDER
--------------------------------------------------------------*/
.aprender {
	background: #F7F7F7;
}

.aprender .content {
  padding: 0 20px;
}

.aprender .content h2 {
  margin: 15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #A77394;
}

.aprender .content h2 span {
  color: #8D547C;
}

.aprender .content h3 {
  font-weight: 400;
  font-size: 28px;
  color: #5f5950;
}

.aprender .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.aprender .content p {
}

.aprender .content ul {
  list-style: none;
  padding: 0;
}

.aprender .content ul li+li {
  margin-top: 15px;
}

.aprender .content ul li {
  position: relative;
  padding-left: 40px;
}

.aprender .content ul i {
  font-size: 15px;
  position: absolute;
  left: 14px; /* Ajustar la posición del icono para alinearlo con el nuevo padding */
  top: 2px;
  color: #8D547C;
}

.aprender .content p:last-child {
  margin-bottom: 0;
}

.aprender .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}


@media (max-width: 1024px) {

  .aprender .content,
  .aprender .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .aprender .content {
    padding-top: 30px;
  }

  .aprender .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}





/*--------------------------------------------------------------
# Estilos para NACIMIENTO
--------------------------------------------------------------*/
.nacimiento {
  background: #F2F2E9;
}

.nacimiento .content {
  padding: 0 20px;
}

.nacimiento .content h2 {
  margin: 15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #A77394;
}

.nacimiento .content h2 span {
  color: #8D547C;
}

.nacimiento .content h3 {
  font-weight: 400;
  font-size: 28px;
  color: #5f5950;
}

.nacimiento .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.nacimiento .content p {
}

.nacimiento .content ul {
  list-style: none;
  padding: 0;
}

.nacimiento .content ul li+li {
  margin-top: 15px;
}

.nacimiento .content ul li {
  position: relative;
  padding-left: 40px;
}

.nacimiento .content ul i {
  font-size: 15px;
  position: absolute;
  left: 14px; /* Ajustar la posición del icono para alinearlo con el nuevo padding */
  top: 2px;
  color: #8D547C;
}

.nacimiento .content p:last-child {
  margin-bottom: 0;
}

.nacimiento .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}


@media (max-width: 1024px) {

  .nacimiento .content,
  .nacimiento .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .nacimiento .content {
    padding-top: 30px;
  }

  .nacimiento .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Estilos para PARTERIA
--------------------------------------------------------------*/
.parteria {
  background: #F2F2E9;
}

.parteria .content {
  padding: 0 20px;
}

.parteria .content h2 {
  margin: 15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #A77394;
}

.parteria .content h2 span {
  color: #8D547C;
}

.parteria .content h3 {
  font-weight: 400;
  font-size: 28px;
  color: #5f5950;
}

.parteria .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.parteria .content p {
}

.parteria .content ul {
  list-style: none;
  padding: 0;
}

.parteria .content ul li+li {
  margin-top: 15px;
}

.parteria .content ul li {
  position: relative;
  padding-left: 40px;
}

.parteria .content ul i {
  font-size: 15px;
  position: absolute;
  left: 14px; /* Ajustar la posición del icono para alinearlo con el nuevo padding */
  top: 2px;
  color: #8D547C;
}

.parteria .content p:last-child {
  margin-bottom: 0;
}

.parteria .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}


@media (max-width: 1024px) {

  .parteria .content,
  .parteria .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .parteria .content {
    padding-top: 30px;
  }

  .parteria .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}



/*--------------------------------------------------------------
# Estilos para POSTPARTO#FEE9CA
--------------------------------------------------------------*/
.postparto {
  background: #F2F2E9;
}

.postparto .content {
  padding: 0 20px;
}

.postparto .content h2 {
  margin: 15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #A77394;
}

.postparto .content h2 span {
  color: #8D547C;
}

.postparto .content h3 {
  font-weight: 400;
  font-size: 28px;
  color: #5f5950;
}

.postparto .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.postparto .content p {
}

.postparto .content ul {
  list-style: none;
  padding: 0;
}

.postparto .content ul li+li {
  margin-top: 15px;
}

.postparto .content ul li {
  position: relative;
  padding-left: 40px;
}

.postparto .content ul i {
  font-size: 15px;
  position: absolute;
  left: 14px; /* Ajustar la posición del icono para alinearlo con el nuevo padding */
  top: 2px;
  color: #8D547C;
}

.postparto .content p:last-child {
  margin-bottom: 0;
}

.postparto .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}


@media (max-width: 1024px) {

  .postparto .content,
  .postparto .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .postparto .content {
    padding-top: 30px;
  }

  .postparto .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Doulas
--------------------------------------------------------------*/
.doulas {
  background: url("../img/bg_equipo.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.doulas::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
}

.doulas .container {
  position: relative;
  z-index: 10;
}

.doulas .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.doulas .member .pic {
  overflow: hidden;
}

.doulas .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #433f39;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.doulas .member h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
  color: #6c665c;
  position: relative;
  padding-bottom: 10px;
  font-family: "Raleway", sans-serif;
}

.doulas .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #ffcf88;
  bottom: 0;
  left: calc(50% - 25px);
}

.doulas .member span {
  display: block;
  font-size: 13px;
  margin: 0 10px;
}

.doulas .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 12px;
  display: inline-block;
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #C598AB;
  border: 2px solid #C598AB;
}

.doulas .btn-get-started:hover {
  border-color: #EEB1C2;
  background: rgba(238, 177, 194, 0.8);
}

@media (max-width: 992px) {
  .doulas .member {
    margin-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .doulas {
    background-attachment: fixed;
  }
}



/*--------------------------------------------------------------
# Estilos CV de Doulas
--------------------------------------------------------------*/
.doulascv  {
  background: #FFF7ED;
}

.doulascv .content h2 {
  margin: 15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #A77394;
}

.doulascv .content h2 span {
  color: #8D547C;
}

.doulascv .container h3 {
  font-weight: 400;
  font-size: 18px;
  color: #8D547C;
}

.doulascv .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}


.doulascv .img {
  border-radius: 8px;
  overflow: hidden;
}

.doulascv .img img {
  transition: 0.6s;
}

.doulascv .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}

.doulascv .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}

.doulascv .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.doulascv .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.doulascv .service-item:hover .details h3 {
  color: var(--color-primary);
}

.doulascv .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}

.doulascv .service-item:hover .details .icon i {
  color: var(--color-primary);
}

.doulascv .service-item:hover .img img {
  transform: scale(1.2);
}















/*--------------------------------------------------------------
# Quienes Somos
--------------------------------------------------------------*/
.domeqs {
  background-size: cover;
  position: relative;
    padding: 20px 20px;
}
.domeqs p{
  position: relative;
  padding: 20px 20px;
}

.domeqs .box {
  padding: 20px 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 100%;
  background: #EBE5DE;
}

.domeqs .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #9F6916;
}

.domeqs .box h4 {
  font-size: 22px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #6c665c;
}

.domeqs .box p {
  color: #545454;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.domeqs .box:hover {
  background: #8D547C;
  padding: 20px 20px 20px 20px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.domeqs .box:hover span,
.domeqs .box:hover h4,
.domeqs .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border: 2px solid #8D547C;
  border-radius: 50px;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
  color: #fff;
  background: #8D547C;
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menu .menu-content {
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #dad8d4;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: #ff9b08;
}

.menu .menu-content span {
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .menu-ingredients {
  font-style: italic;
  font-size: 14px;
  font-family: "Comic Neue", sans-serif;
  color: #948c81;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: #8D547C;
}

.specials .nav-link.active {
  color: #8D547C;
  border-color: #8D547C;
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #433f39;
}

.specials .details p {
  color: #777777;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }

  .specials .nav-link.active {
    color: #fff;
    background: #8D547C;
  }
}



/*--------------------------------------------------------------
# Cta nacer tranquilo
--------------------------------------------------------------*/
.ctant {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/nacer-tranquilo-cta.jpg") fixed center center;
}

.ctant h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant p {
  color: #fff;
}

.ctant .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}

/*--------------------------------------------------------------
# Cta nacer tranquilo psicoptofiláctico
--------------------------------------------------------------*/

.ctant-psicoprofilactico {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-psicoprofilactico2.jpg") fixed center center;
}

.ctant-psicoprofilactico h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-psicoprofilactico p {
  color: #fff;
}

.ctant-psicoprofilactico .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-psicoprofilactico .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}

/*--------------------------------------------------------------
# Cta nacer tranquilo respiración y relajación
--------------------------------------------------------------*/

.ctant-respiracion {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-relajacion-y-respiracion-prenatal2.jpg") fixed center center;
}

.ctant-respiracion h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-respiracion p {
  color: #fff;
}

.ctant-respiracion .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-respiracion .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}


/*--------------------------------------------------------------
# Cta nacer tranquilo sesión para abuelos
--------------------------------------------------------------*/
.ctant-abuelos {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-sesion-para-abuelos.jpg") fixed center center;
}

.ctant-abuelos h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-abuelos p {
  color: #fff;
}

.ctant-abuelos .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-abuelos .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}


/*--------------------------------------------------------------
# Cta nacer tranquilo asesoría de lactancia
--------------------------------------------------------------*/

.ctant-lactancia {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-lactancia.jpg") fixed center center;
}

.ctant-lactancia h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-lactancia p {
  color: #fff;
}

.ctant-lactancia .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-lactancia .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}



/*--------------------------------------------------------------
# Cta nacer tranquilo DOULA
--------------------------------------------------------------*/
.ctant-doula {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-doula.jpg") fixed center center;
}

.ctant-doula h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-doula p {
  color: #fff;
}

.ctant-doula .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-doula .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}


/*--------------------------------------------------------------
# Cta nacer tranquilo ATENCIÓN AL PARTO
--------------------------------------------------------------*/
.ctant-atencionalparto {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-atencion-al-parto.jpg") fixed center center;
}

.ctant-atencionalparto h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-atencionalparto p {
  color: #fff;
}

.ctant-atencionalparto .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-atencionalparto .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}


/*--------------------------------------------------------------
# Cta nacer tranquilo Parto en Agua
--------------------------------------------------------------*/

.ctant-partoenagua {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-partoenagua.jpg") fixed center center;
}

.ctant-partoenagua h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-partoenagua p {
  color: #fff;
}

.ctant-partoenagua .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-partoenagua .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}

/*--------------------------------------------------------------
# Cta nacer tranquilo Parto en Casa
--------------------------------------------------------------*/

.ctant-partoencasa {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-parto-en-casa.jpg") fixed center center;
}

.ctant-partoencasa h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-partoencasa p {
  color: #fff;
}

.ctant-partoencasa .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-partoencasa .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}


/*--------------------------------------------------------------
# Cta nacer tranquilo Lactancia
--------------------------------------------------------------*/
.ctant-lactancia {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-asesoria-lactancia.jpg") fixed center center;
}

.ctant-lactancia h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-lactancia p {
  color: #fff;
}

.ctant-lactancia .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-lactancia .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}


/*--------------------------------------------------------------
# Cta nacer tranquilo PSICOTERAPIA
--------------------------------------------------------------*/
.ctant-psicoterapia {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-psicoterapia.jpg") fixed center center;
}

.ctant-psicoterapia h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-psicoterapia p {
  color: #fff;
}

.ctant-psicoterapia .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-psicoterapia .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}


/*--------------------------------------------------------------
# Cta nacer tranquilo VAPOR POSTPARTO
--------------------------------------------------------------*/
.ctant-vaporpostparto {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-vapor-postparto.jpg") fixed center center;
}

.ctant-vaporpostparto h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-vaporpostparto p {
  color: #fff;
}

.ctant-vaporpostparto .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-vaporpostparto .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}



/*--------------------------------------------------------------
# Cta nacer tranquilo APOYO A LA CRIANZA
--------------------------------------------------------------*/
.ctant-apoyoalacrianza {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-apoyo-a-la-crianza.jpg") fixed center center;
}

.ctant-apoyoalacrianza h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-apoyoalacrianza p {
  color: #fff;
}

.ctant-apoyoalacrianza .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-apoyoalacrianza .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}



/*--------------------------------------------------------------
# Cta nacer tranquilo PSICOTERAPIA DEPRESIÓN POSTPARTO
--------------------------------------------------------------*/
.ctant-psicoterapia-depresion {
  background-size: contain;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.2)), url("../img/cta/cta-psicoterapia-depresion-postparto.jpg") fixed center center;
}

.ctant-psicoterapia-depresion h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctant-psicoterapia-depresion p {
  color: #fff;
}

.ctant-psicoterapia-depresion .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #D3D9B3;
  color: #fff;
}

.ctant-psicoterapia-depresion .cta-btn:hover {
  background: #9FA781;
  border-color: #D3D9B3;
  color: #fff;
}



/*--------------------------------------------------------------
# Cta banquetes
--------------------------------------------------------------*/
.ctabanquetes {
  background-size: cover;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/slide/slide5.png") fixed center center;
}

.ctabanquetes h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctabanquetes p {
  color: #fff;
}

.ctabanquetes .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.ctabanquetes .cta-btn:hover {
  background: #985888;
  border-color: #985888;
  color: #fff;
}

/*--------------------------------------------------------------
# Cta especiales
--------------------------------------------------------------*/
.ctaespeciales {
  background-size: cover;
  padding: 120px 0;
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/slide/slide7.png") fixed center center;
}

.ctaespeciales h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ctaespeciales p {
  color: #fff;
}

.ctaespeciales .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.ctaespeciales .cta-btn:hover {
  background: #985888;
  border-color: #985888;
  color: #fff;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/bg-eventos.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: #fff;
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #8D547C;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #8D547C;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #8D547C;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8D547C;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 0 0 30px 0;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #C3AA84;
  float: left;
  line-height: 0;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #2a2a2a;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #505050;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #505050;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #777777;
}


/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br+br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.book-a-table .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;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type=submit] {
  background: #8D547C;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #985888;
}




/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background-size: cover;
  position: relative;
  padding: 30px 0 0px 0;
}

.contact .content {
  padding: 0 20px;
}

.contact .content h2 {
  margin: 15px 0 15px 0;
  font-size: 32px;
  font-weight: 700;
  color: #A77394;
}

.contact .content p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

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


.contact .content .info-box i {
  font-size: 32px;
  color: #985888;
  border-radius: 50%;
  padding: 8px;
}
*/

.contact .contact-form {
  background-color: var(--surface-color);
  border: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #66075D;
  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: #66075D;
  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 #66075D;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #985888;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  background: #985888;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  background: #66075D;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}






/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #EBE1E7;
  color: #8D547C;
  font-size: 16px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #8D547C;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 16;
  font-family: "Raleway";
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #8D547C;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #F0BACA;
}

#footer .copyright {
  margin: 0 0 5px 0;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
}

/*--------------------------------------------------------------

# Estilos Agregados

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Valores 
--------------------------------------------------------------*/
.valores {
  background: #fff;
}

.valores .container {
  padding: 0 80px;
}

.valores .img {
  border-radius: 8px;
  overflow: hidden;
}

.valores .img img {
  transition: 0.6s;
}

.valores .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}

.valores .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}

.valores .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.valores .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.valores .service-item:hover .details h3 {
  color: var(--color-primary);
}

.valores .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}

.valores .service-item:hover .details .icon i {
  color: var(--color-primary);
}

.valores .service-item:hover .img img {
  transform: scale(1.2);
}















