body {
     margin: 0;
     padding: 0;
     font-family: Helvetica, Arial, sans-serif;
}
 header {
     background-color: rgb(60, 185, 167);
     padding: 20px;
     text-align: center;
}
 nav ul {
     list-style-type: none;
     margin: 0;
     padding: 0;
     display: flex;
     justify-content: center;
}
 nav ul li {
     margin: 0 10px;
}
 nav ul li a {
     text-decoration: none;
     color: black;
}
 #logo {
     display: block;
     margin: 0 auto;
     width: 120px;
     height: 100px;
     margin-top: 20px;
}
 #logo-text {
     color: color: rgb(89, 89, 89);
    letter-spacing: 0.143em;
	 white-space: pre-line;
	 overflow-wrap: break-word;
     font-size: 14px;
     text-align: center;
     font-family:Helvetica, arial, sans-serif;
}
 #central-image {
     display: block;
     margin: 20px auto;
     width: 100%;
     max-width: 749px;
     height: auto;
}
 #welcome-container {
     text-align: center;
     margin: 0 20px;
     width: 50%;
     margin: 0 auto;
}
 #welcome-title {
     color: rgb(27, 27, 27);
     text-align: center;
     font-size: 22px;
     margin-bottom: 10px;
     font-family: Helvetica, arial, sans-serif;
}
 #welcome-text {
     font-family:Helvetica, arial, sans-serif;
     font-size: 20px;
     font-style:italic;
     line-height: inherit;
     margin-bottom: 20px;
     color: rgb(94, 94, 94);
}
 #btn-more-info {
     display: inline-block;
     padding: 15px 20px;
     background-color: rgb(60, 185, 167);
    ;
     color: black;
     border: none;
     border-radius: 5px;
     text-align: center;
     text-decoration: none;
     margin-bottom: 10px;
     font-family:Helvetica, arial, sans-serif;
     font-size:14px;
     text-transform:uppercase;
     font-weight: bold;
}
 #connect-section {
     background-color: transparent;
     padding: 40px;
     text-align: center;
     margin-left: 40px;
     margin-right: 40px;
     padding-bottom:0px;
}
 #connect-title {
     text-align: left;
     font-size: 22px;
     margin-bottom: 5px;
     font-family:"League Spartan", arial, helvetica, sans-serif 
}
 #facebook-icon {
     width: 30px;
     height: 30px;
     margin-bottom: 2px;
}

 #main-image {
     width: 100vw;
    /* Toma el 100% del ancho de la ventana del navegador */
     max-height: 140px;
     height: auto;
     margin: 20px auto;
}

 #main-imageServices {
     width: 100vw;
    /* Toma el 100% del ancho de la ventana del navegador */
     max-height: 174px;
     height: auto;
     margin: 20px auto;
}

 #main-imageMiBlog {
     width: 100vw;
    /* Toma el 100% del ancho de la ventana del navegador */
     max-height: 512px;
     height: auto;
     margin: 20px auto;
	 margin-top:-25px;
}

 #subscribe-section {
     padding: 20px;
     text-align: center;
}
 #subscribe-title {
     font-size: 32px;
     margin-bottom: 10px;
     font-family: "League Spartan", arial, helvetica, sans-serif;
     line-height:38.4px;
     font-weight:bold;
}
 #subscribe-text {
     margin-bottom: 20px;
     font-family: Helvetica, arial, sans-serif;
     font-size:16px;
     color:rgb(94, 94, 94);
}
 #email-input {
     padding: 10px;
     width: 100%;
     max-width: 400px;
    /* Establece un ancho máximo opcional */
     margin-right: 10px;
     border-radius: 5px;
     border: 1px solid #ccc;
     box-sizing: border-box;
    /* Incluye el padding y el borde en el ancho total */
}
 @media (max-width: 768px) {
     #email-input {
         width: 100%;
        /* El campo de entrada de correo ocupará todo el ancho en dispositivos móviles */
         max-width: none;
        /* Restaura el ancho máximo si se estableció anteriormente */
         margin-right: 0;
        /* Elimina el margen derecho en dispositivos móviles */
    }
}
 #register-button {
     padding: 10px;
     width: auto;
     background-color: rgb(60, 185, 167);
     color: black;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     font-family: Helvetica, Arial, sans-serif;
     text-transform: uppercase;
     letter-spacing: 0.143em;
     justify-content: center;
     font-weight: 700;
     font-size: 14px;
     margin-top: 10px;
     width: fit-content;
}
 footer {
     background-color: rgb(60, 185, 167);
     height: 400px;
     width: 100%;
}
 .divider {
     width: 100%;
     height: 1px;
     background-color: #ccc;
     margin-bottom: 20px;
}
 @media (max-width: 768px) {
     #register-button {
         width: 100%;
        /* El botón ocupará todo el ancho en dispositivos móviles */
    }
}
 @media (max-width: 768px) {
   .menu-toggle {
  display: block;
  position: absolute;
  top: 15px;
  left: 15px;
  cursor: pointer;
  z-index: 9999;
}
    .menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin-bottom: 5px;
}
  nav ul {
    display: none;
  }

  nav ul.active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Updated to align items at the top */
    align-items: flex-start; /* Added to align items at the top */
    text-align: left; /* Added to align text at the left */
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 50; /* Set the menu to start from the top */
    left: 50%; /* Center the menu horizontally */
    transform: translate(-50%, 0); /* Translate the menu up by half of its height */
    width: 100%;
    height: 100%;
    z-index: 9998;
    padding: 40px;
	padding-left:100px;
  }

nav ul li {
  margin: 10px 0;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
}
}
/* Agrega estilos para el footer */
 footer {
     background-color: rgb(60, 185, 167);
     height: 100px;
    /* Ajusta la altura del footer según tus necesidades */
     display: flex;
     justify-content: center;
     align-items: center;
}
 #copy-right {
     color: white;
    /* Usa el mismo color de fondo del menú */
     font-size: 14px;
     font-family: Helvetica, Arial, sans-serif;
}
#image-container {
  position: relative;
  text-align: center;
}

#image-text {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 45px;
  font-weight: bold;
}

  #therapist-section {
    text-align: center;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }

  #therapist-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
	font-family:Helvetica, arial, sans-serif;
  }

  .therapist-info {
    font-size: 16px;
    margin-bottom: 5px;
	line-height: 1.2;
	margin-top:0px;
	color:rgb(94, 94, 94);
	font-family:Helvetica, arial, sans-serif;
  }
  
   .image-grid {
      display: flex;
      justify-content: space-between;
      margin-top: 100px;
      margin-left: 100px;
      margin-right: 100px;
      margin-bottom: 50px;
      flex-wrap: wrap; /* Added flex-wrap property */
    }

    .column {
      flex-basis: calc(33.33% - 10px);
      margin-right: 10px;
      margin-bottom: 20px; /* Added margin bottom */
    }

    .column img {
      width: 100%;
      height: auto;
    }

    .image-text {
      text-align: center;
      margin-top: 10px;
      margin-left: 50px;
      margin-right: 20px;
    }

    @media (max-width: 768px) {
      .column {
        flex-basis: calc(100% - 20px); /* Each column takes the full width */
        margin-right: 0;
      }
    }

.text-container {
  position: relative;
  text-align: center;
}

.image-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.custom-image-text {
  font-size: 2.5vw;
  text-align: center;
  color: white;
}

@media (max-width: 768px) {
  .custom-image-text {
    font-size: 4vw;
  }
}


.text-containerblog {
  position: relative;
  text-align: center;
}

.image-text-containerblog {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}


.custom-imageblog-text {
  font-size: 3.5vw;
  text-align: center;
  color: white;
  font-weight:bold;
  font-family:"League Spartan", arial, helvetica, sans-serif;
}

@media (max-width: 768px) {
  .custom-imageblog-text {
    font-size: 5vw;
	font-weight:bold;
	font-family:"League Spartan", arial, helvetica, sans-serif;
  }
}

.currentPage {
  font-weight:bold;
  text-decoration: underline;
}
  
  