.section-header {
    position: relative;
    text-align: center;
    font-weight: 900;
}

.section-header:after {
    content: '';
    height: 3px;
    width: 200px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 100px);
}

.section-header span {
    display: block;
    font-size: 15px;
    font-weight: 300;
}

.testimonials {
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

.single-item {
    color: #111;
    padding: 15px;
}

.profile {
    text-align: center;
}

.img-area {
    margin: 0 15px 15px 15px;
}

.img-area img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    border: 7px solid #00769e;
}

.content {
    font-size: 18px;
}

.content p {
    text-align: justify;
}

.content p span {
    font-size: 48px;
    margin-right: 20px;
    color: #00769e;
}

.socials i {
    margin-right: 25px;
}

.bio h4 {
    font-family: 'Berkshire Swash', cursive;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: #00769e;
}

/*form*/


  /* Cambiar color del fomrulario */
  :root {
    --colorformulario: #00769e;
  }

  #banner-form .formulario .texto,
  #banner-form .formulario .titulo {
    margin-bottom: 20px;
    text-align: center;
  }

  #banner-form {
    z-index: 9;
    position: relative;
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(1px);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
  }

  #banner-form .formulario {
    text-align: center;
  }

  #banner-form .input-g {
    display: flex;
    margin-bottom: 10px !important;
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }

  #banner-form .input-g2 {
    flex-direction: row;
    justify-content: space-evenly;
  }

  #banner-form .head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  #banner-form .profile-image {
    position: relative;
    height: 100px;
    width: 100px;
    margin-right: 20px;
  }

  #banner-form .profile-info span {
    display: block;
    font-size: 1em;
    color: #000;
  }

  #banner-form .profile-info span strong {
    color: var(--colorformulario);
    font-weight: 900;
  }

  #banner-form img {
    border-radius: 100px;
  }

  #banner-form .circle {
    position: absolute;
    bottom: 0;
    right: 10px;
    height: 15px;
    width: 15px;
    border-radius: 100px;
    background: #2ee7b1;
  }

  #banner-form .formulario .titulo {
    font-size: 1.5em;
    font-weight: 900;
    color: var(--colorformulario);
  }

  #banner-form .formulario .texto strong {
    color: var(--colorformulario);
  }

  #banner-form .formulario input,
  #banner-form .formulario select {
    border-radius: 10px !important;
    padding: 10px 10px 10px 20px;
    background: #f2f2f2;
    border: 2px solid var(--colorformulario);
    height: auto !important;
    display: block !important;
    line-height: normal !important;
    width: 100% !important;
  }

  #banner-form .formulario input::placeholder {
    color: #000;
  }

  #banner-form .formulario button,
  #banner-form a {
    border-radius: 100px;
    padding: 15px 30px;
    color: #fff;
    border: 2px solid #fff;
    background: var(--colorformulario);
    font-size: 1em;
    font-weight: 900;
    letter-spacing: 1px;
    transition: 0.5s;
    cursor: pointer;
    text-decoration: none;
  }

  #banner-form a {
    display: inline-block !important;
    background-color: #000;
  }

  #banner-form .formulario button:hover {
    background: #000;
    transition: 0.5s;
  }

  #banner-form .formulario a:hover {
    background: var(--colorformulario);
  }

  #banner-form .respuestaformulario {
    background: #000;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    margin: 10px 0;
    display: none;
    font-weight: 900;
  }

  #banner-form .fail {
    display: block;
    background: #f36e59;
  }

  #banner-form .send {
    display: block;
    background: #2ee7b1;
  }

  @media (max-width: 768px) {
    #banner-form .input-g2 {
      display: block !important;
    }

    #banner-form .formulario a {
      display: block !important;
    }
  }