/*--------------------------------------------------------------
# by Ing.Santy
--------------------------------------------------------------*/

/* Sections Common
--------------------------------*/
/* .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
} */

/* .section-description {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-divider {
  width: 50px;
  height: 3px;
  background: #267ac0;
  margin: 0 auto;
  margin-bottom: 20px;
} */
/* Get Started Section
--------------------------------*/
/* #about {
  background: #fff;
  padding: 80px 0;
}

#about .about-content {
  background: #fff;
}

#about .about-title {
  color: #333;
  font-weight: 700;
  font-size: 28px;
}

#about .about-text {
  line-height: 26px;
}

#about .about-text:last-child {
  margin-bottom: 0;
} */

.logoSisTec {
  height: 50px;
}

.btnMail {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 10px;
}
.btnMail:hover {
  background: #267ac0;
  border: 2px solid #267ac0;
}

.footers {
  font-size: 20px;
  padding: 8px;
}
.arriba {
  border-radius: 50%;
  background: #267ac0;
  color: #fff;
  bottom: 20px;
  right: 20px;
  font-size: 20px;
}
.arriba:hover {
  text-decoration: none;
  color: #267ac0;
  background-color: #ffffff;
  transform: translateY(-5px);
  transition: transform 0.2s ease-in-out;
}
.whatsapp-float {
  position: fixed;
  bottom: 75px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
}
.whatsapp-float:hover {
  text-decoration: none;
  color: #25d366;
  background-color: #ffffff;
}
.whatsapp-icon {
  font-size: 34px;
  width: 31px;
}
.whatsapp-float:focus {
  background-color: #25d366;
  color: #fff;
}
.facebook-float:hover,
.whatsapp-float:hover {
  animation-name: spin;
  animation-duration: 500ms;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes spin {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.elemento {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.elemento.aparecer {
  opacity: 1;
  transform: translateY(0);
}
