/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #00cc66;
  text-decoration: none;
}

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

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

/* #2153CC */
colores {
  background: #2c3e50 #0f15a3 #00cc66 #050505 #2892d7;
}
/*--------------------------------------------------------------
# Bonton de whatsapp 
--------------------------------------------------------------*/
.whatsapp {
  position: fixed; /* posicionamos el icono */
  right: 20px; /* posicionamos el icono a 20px del borde derecho del navegador */
  bottom: 20px; /* posicionamos el icono a 20px del borde inferior y derecha */
  z-index: 999; /* aseguramos que el icono este por encima de todos los elementos de la web */
}
.container-boton {
  position: fixed;
  z-index: 999;
  bottom: 20px;
  right: 25px;
  padding: 25px;
  transition: ease 0.3s;
  animation: efecto 1.2s infinite;
}

.container-boton:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
.botonWhatsapp {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #1e8449;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 60px;
  transition: 0.3s;
  animation: efecto 1.2s infinite;
}


/*--------------------------------------------------------------
# Deshabilitar el retraso de AOS en el móvil
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #2c3e50;
}

#header.header-transparente {
  background: transparent;
}

#header.header-scrolled {
  background: #2c3e50;
  height: 60px;
}

#header .logo h2 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h2 a,
#header .logo h2 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
  object-fit: contain;
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  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: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #1acc8d;
  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: 25px;
}

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

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

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

.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: #1acc8d;
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.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: #2c3e50;
  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: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li > a:before {
  left: 20px;
}

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

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

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

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

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

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover > a {
  color: #1acc8d;
}

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

/*--------------------------------------------------------------
#  Section home
--------------------------------------------------------------*/
#home {
  width: 100%;
 /*  background: url("../img/InicioFondo.png"); PONER IMAGEN  de fondo en inicio  */
  position: relative;
  padding: 120px 0 0 0;
}

#home:before {
  content: "";
  background: #2c3e50;
  position: absolute;
  bottom: 0px;
  top: 0;
  left: 0;
  right: 0;
}
#home h1{
  color: #fff;
  font-size: 10px; /* hacer mas grande el titulo */
  /* font-weight: 200;  */
  /* line-height: 16px;  */
  /* margin-bottom: 10px;  */
}

#home h2 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffffeb;
}

#home h2 span {
  color: #fff;
  border-bottom: 4px solid #1e8449;
}

#home h3 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}
/* BOTON */
#home .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1e8449;
}

#home .btn-get-started:hover {
  background: #186a3a;
}

#home .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

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

@media (max-width: 991px) {
  #home {
    padding-top: 80px;
  }

  #home .animated {
    -webkit-animation: none;
    animation: none;
  }

  #home .home-img {
    text-align: center;
  }

  #home .home-img img {
    max-width: 50%;
  }

  #home h2 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #home h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #home .home-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.home-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Equipo
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f5ff;
}

.section-titulo {
  padding-bottom: 40px;
}

.section-titulo p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #2c3e50;
}
.mover {
  text-align: center;
}
/*--------------------------------------------------------------
# Equipo
--------------------------------------------*/
.equipo {
  background: #fff;
  align-items: center;
}
.equipo h6{
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: left;
  padding: 20px;
}

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

.equipo .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

.equipo .member img {
  transition: all ease-in-out 0.4s;
}

.equipo .member:hover img {
  transform: scale(1.1);
}

.equipo .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.equipo .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #2c3e50;
  position: relative;
  padding-bottom: 10px;
}

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

.equipo .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #2c3e50;
}

.equipo .member .social {
  margin-top: 10px;
}

.equipo .member .social a {
  transition: color 0.3s;
  color: #2c3e50;
}

.equipo .member .social a:hover {
  color: #1e8449;
}

.equipo .member .social i {
  font-size: 16px;
  margin: 0 2px;
}
/*--------------------------------------------------------------
# SERVICIOS / FOTOS/ ICONOS
--------------------------------------------------------------*/
.servicios {
  padding: 40px 0 0 0;
}
.servicios img {
  margin: 5px;
}

.servicios .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.servicios .icon-box {
  margin-top: 20px;
}

/* ESTO HAY QUE CAMBIAR */

.image-container img {
  display: none;
  max-width: 100%;
  height: auto;
}

.image-container img:first-child {
  display: block;
}

 .servicios .video-box {
  background: url("../img/servicio1.jpg") center center no-repeat;
  background-size: contain;
  min-height: 300px;
  animation: cambioFondoImagen 15s infinite;
} 


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

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

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

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details {
  margin-top: 10px;
  /* background: #F7F6FF; */
}

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #2c3e50;
}

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

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #1e8449;
}

.details .content p:last-child {
  margin-bottom: 0;
}
.details img {
  max-width: 100%;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# cuenta
--------------------------------------------------------------*/
.cuenta {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

.cuenta .cuenta-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.cuenta .cuenta-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #1e8449;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.cuenta .cuenta-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #2c3e50;
}

.cuenta .cuenta-box p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Precios
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #1e8449;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #1e8449;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #1e8449;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #186a3a;
}

.pricing .featured h3 {
  color: #fff;
  background: #1e8449;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #f23202;
  color: #fff;
}

/*--------------------------------------------------------------
# MERCADO PAGOS 
--------------------------------------------------------------*/
.mercadopago {
  padding: 40px 0 0 0;
  background: #f7f6ff;
}

.mercadopago .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

/* .mercadopago .icon-box {
  margin-top: 20px;
} */

/* ESTO HAY QUE CAMBIAR */

.mercadopago .video-box {
  background: url("../img/mercadopago.png") center center no-repeat;
  background-size: contain;
  min-height: 300px;
}

/* 
.mercadopago .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;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
} */

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

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

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

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

/*--------------------------------------------------------------
  F.A.Q 
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}

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

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #1e8449;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #1e8449;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Tipos de servicios
--------------------------------------------------------------*/

.servicios .sombra {
  box-shadow: 1px 1.2px 0.8px -11px rgba(0, 0, 0, 0.028),
    2.6px 3.4px 2.1px -11px rgba(0, 0, 0, 0.04),
    6.3px 8.1px 5.1px -11px rgba(0, 0, 0, 0.052),
    21px 27px 17px -11px rgba(0, 0, 0, 0.08);
}

.servicios .icon-box {
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: #ffffff96;
  transition: ease-in-out 0.3s;
}

.servicios .icon-box p {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #383838;
  width: 100%;
}

.servicios .icon-box i {
  width: 20%;
  font-size: 32px;
  padding-right: 20px;
  line-height: 1;
}

.servicios .icon-box h3 {
  width: 100%;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.servicios .icon-box h3 a {
  color: #2c3e50;
  transition: ease-in-out 0.3s;
}

.servicios .icon-box h3 a:hover {
  color: #2c3e50;
}

.servicios .icon-box:hover {
  background: #e1e1e24d;
}
/*--------------------------------------------------------------
# EMPRESAS  / CLIENTES
--------------------------------------------------------------*/
/* .empresa .empresa-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

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

.empresa .empresa-item:hover img {
  transform: scale(1.1);
} */

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0px;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 60%;
  }
}

/*--------------------------------------------------------------
# CONTACTO  
--------------------------------------------------------------*/
.contacto .info {
  width: 100%;
  background: #fff;
}

.contacto .info i {
  font-size: 20px;
  color: #2c3e50;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contacto .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}

.contacto .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #2c3e50;
}

.contacto .info .email,
.contacto .info .phone {
  margin-top: 40px;
}

.contacto .info .email:hover i,
.contacto .info .address:hover i,
.contacto .info .phone:hover i {
  background: #1e8449;
  color: #fff;
}

.contacto {
  width: 100%;
  background: #fff;
}

.contacto .form-group {
  padding-bottom: 8px;
}

.contacto .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contacto .error-message br + br {
  margin-top: 25px;
}

.contacto .sent-message {
  display: none;
  color: #fff;
  background: #1e8449;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contacto .cargando {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contacto .cargando:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #1e8449;
  border-top-color: #eee;
  -webkit-animation: animate-cargando 1s linear infinite;
  animation: animate-cargando 1s linear infinite;
}

.contacto input,
.contacto textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contacto input {
  height: 44px;
}

.contacto textarea {
  padding: 10px 12px;
}

.contacto button[type="submit"] {
  background: #1e8449;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contacto button[type="submit"]:hover {
  background: #186a3a;
}

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

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

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

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

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
#footer {
  background: #2c3e50;
  padding: 3 0 10px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 30px 0 30px 0;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.logoOrt {
  width: 100px;
}
@media (min-width: 1250px) {
  #footer div p {
    text-align: end;
  }
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
