/*INFORMACIÓN*/
* {
    box-sizing:border-box;
}
.row:after {
    content: "";
    display: table;
    clear: both;

}

.large-font {
    font-size: 28px;
}


.xlarge-font {
    font-size: 64px
}
.xlarge-font2 {
    font-size: 64px
}
.xlarge-font3 {
    font-size: 48px
}

.button {
    border: none;
    color: white;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    background-color: #04AA6D;
}

.img2 {
    display: block;
    height: auto;
    max-width: 100%;
}

@media screen and (max-width: 1000px) {
    .column-66,
    .column-33 {
        width: 100%;
        text-align: left;
    }
    img {
        margin: auto;
        border-radius: 3%
    }
}
.image5{
    border:5px solid #ECF5FF;
    border-radius: 3%;
    margin: 45px 0 0 0;
}
.btn {
    border: 1px solid #126782;
    background-color: #126782;
    /*color: black;*/
    padding: 5px 68px;
    font-size: 20px;
    cursor: pointer;
}

/* Green */
.success {
    border-color: #126782;
    color: #fff;
}

.success:hover {
    background-color: #fff;
    color: #126782;
}

.blaver {
    background-color: #126782;
    color: #126782;
    background: #fff;
    margin: 10px 0 20px 0
}

.blaver:hover {
    border-color: #208682;
    color: #fff;
    background: #208682
}

@media (max-width: 430px) {
    .xlarge-font {
        font-size: 38px
    }
    .xlarge-font2 {
        font-size: 31px
    }
    .xlarge-font3 {
        font-size: 23px
    }
}

/* FONDO SEVICIOS */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
  }
  .hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../../img/servicios/citas.jpg");
    height: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
  }

  .hero-text button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 10px 25px;
    color: black;
    background-color: #ddd;
    text-align: center;
    cursor: pointer;
  }

  .hero-text button:hover {
    background-color: #555;
    color: white;
  }
  .letra{
    font-size:50px;
  }

  /* MODO CELULAR */
  @media (max-width: 574px) {
    .letra{
      font-size:40px;
    }
    .letra2{
      font-size:20px;
    }
  }
  @media (max-width: 280px) {
    .letra{
      font-size:30px;
    }
    .letra2{
      font-size:20px;
    }
  }

/* PARPADEO DE LETRA */
  .text {

    color:#00B2A9;
  }
  .parpadea {

    animation-name: parpadeo;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

    -webkit-animation-name:parpadeo;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
  }

  @-moz-keyframes parpadeo{
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
  }

  @-webkit-keyframes parpadeo {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
     100% { opacity: 1.0; }
  }

  @keyframes parpadeo {
    0% { opacity: 1.0; }
     50% { opacity: 0.0; }
    100% { opacity: 1.0; }
  }
