.btn-blue {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #216a93;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-blue:hover {
  background-color: #1a73e9;
}

.btn-verde {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #40f99b;
  transition: all 0.3s ease;
}
.btn-verde:hover {
  background-color: #b9fddb;
}

.btn-blanco {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.btn-blanco:hover {
  background-color: #e6eaed;
}

.banner-contactanos {
  min-height: auto;
  height: auto;
  padding: 41px 0 100px 0;
}
.banner-contactanos .contenedor {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  position: relative;
  align-items: center;
  border-radius: 20px;
  gap: 114px;
}
@media (max-width: 1024px) {
  .banner-contactanos .contenedor {
    flex-direction: column;
  }
}
.banner-contactanos .contenedor::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: 1;
  opacity: 0.9;
  background: linear-gradient(180deg, rgb(33, 106, 147) 0%, rgb(64, 249, 155) 100%);
}
.banner-contactanos .contenedor .banner-contactanos-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35.5px 0 35.5px 180px;
}
@media (max-width: 1024px) {
  .banner-contactanos .contenedor .banner-contactanos-content {
    padding: 51px 25px 0 25px;
    align-items: center;
  }
}
.banner-contactanos .contenedor .banner-contactanos-content h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .banner-contactanos .contenedor .banner-contactanos-content h2 {
    font-size: 30px;
    line-height: 35px;
    text-align: center;
  }
}
.banner-contactanos .contenedor .banner-contactanos-content p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .banner-contactanos .contenedor .banner-contactanos-content p {
    text-align: center;
  }
}
.banner-contactanos .contenedor .banner-contactanos-imagen {
  position: relative;
  display: flex;
  z-index: 1;
  padding: 0 180px 0 0;
  margin-top: -35.5px;
  max-height: 320px;
  aspect-ratio: 13/9;
}
@media (max-width: 1024px) {
  .banner-contactanos .contenedor .banner-contactanos-imagen {
    padding: 0px 76px 0px 76px;
    margin-top: -90.5px;
  }
}
.banner-contactanos .contenedor .banner-contactanos-imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}/*# sourceMappingURL=index.css.map */