/* REAUSABLE STUFF */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 300;
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

h3 {
  padding-bottom: 1rem;
}

h2 {
  font-size: 2.6rem;
  line-height: 1.5;
  padding: 0 10%;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.5;
}

p {
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0 10%;
  font-weight: 300;
}

ul {
  margin-block-start: 0;
  padding-inline-start: 0;
}
/*--------------------------------------------- */
/*           REUSABLE COMPONENTS                */
/*--------------------------------------------- */

.row {
  max-width: 90%;
  margin: 0 auto;
}

.box {
  padding: 1%;
}

section {
  padding: 80px 0;
}

.section-title {
  padding: 3rem 1rem 0;
  word-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
}

.section-text {
  font-size: 1.2rem;
  padding: 0 5%;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

.divider {
  display: block;
  height: 2px;
  background-color: #ff1e03;
  content: " ";
  width: 100px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.divider-white {
  display: block;
  height: 2px;
  background-color: #fff;
  content: " ";
  width: 100px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

/*--------------------------------------------- */
/*                   BUTTONS                    */
/*--------------------------------------------- */

/* .btn-contact-us {
    width: 100%;
    border-radius: 10px;
    background-color: #204acf;
    text-transform: uppercase;
    border: 0 none;
}

.btn-header-1,
.btn-header-2 {
    border: 0 none;
    background-color: #204acf;
    border-radius: 10px;
    position: absolute;
    top: 70%;
    width: 15rem;
    height: 3.5rem;
    text-transform: uppercase;
    z-index: 2;
    pointer-events: none

}

.btn-header-1 {
    left: 33%;
}

.btn-header-2 {
   left: 53%;
} */

.btn:link,
.btn:visited,
input[type="submit"] {
  display: inline-block;
  padding: 10px 30px;
  font-weight: 300;
  text-decoration: none;
  border-radius: 12px;
  -webkit-transition: background-color 0.3s, border 0.3s, color 0.3s;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}

.btn-full:link,
.btn-full:visited,
input[type="submit"] {
  background-color: #204acf;
  border: 1px solid #204acf;
  color: #fff;
  margin-right: 15px;
}

.btn-ghost {
  border: 1px solid #204acf;
  color: #204acf;
}

.btn:hover,
.btn:active {
  background-color: #204acf;
}

.btn-full:hover,
.btn-full:active,
input[type="submit"]:hover,
input[type="submit"]:active {
  border: 1px solid #204acf;
  color: #fff;
}

.btn-ghost:hover,
.btn-ghost:active {
  border: 1px solid #204acf;
  color: #fff;
}

.btn-contact-us {
  width: 100%;
}

/*--------------------------------------------- */
/*                   NAV BAR                    */
/*--------------------------------------------- */

.logo {
  height: 100px;
  width: auto;
  float: left;
  margin-top: 20px;
}

.logo-black {
  display: none;
  height: 50px;
  width: auto;
  float: left;
  margin: 5px 0;
}

/* Main Nav */
.navbar li {
  cursor: pointer;
  display: inline-block;
  margin-left: 40px;
  color: #fff;
}

.navbar li a:link,
.navbar li a:visited {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 90%;
  border-bottom: 2px solid transparent;
  -webkit-transition: border-botton 0.3s;
  transition: border-botton 0.3s;
}

.navbar li a:hover,
.navbar li a.active {
  border-bottom: 2px solid #204acf;
}

.navbar-toggler-icon {
  color: #fff;
}

/* Sticky Nav*/

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 2px #efefef;
  z-index: 9999;
}

.sticky .navbar li a:link,
.sticky .navbar li a:visited {
  padding: 16px 0;
  color: #555;
}

.sticky .navbar {
  margin-top: 18px;
}

.sticky .logo {
  display: none;
}
.sticky .logo-black {
  display: block;
}

/*--------------------------------------------- */
/*                  HERO                        */
/*--------------------------------------------- */

#hero {
  padding: 0;
}

header {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(rgba(0, 0, 0, 0.7)),
      to(rgba(0, 0, 0, 0.7))
    ),
    url(img/Hero-inicio.png);
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(img/Hero-inicio.png);
  background-size: cover;
  background-position: center;
  height: 100vh;
  background-attachment: fixed;
}

/* .hero-text-box {
  position: absolute;
  width: 1140px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
} */

.hero-text-box {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-buttons {
  padding-top: 5%;
}

.hero-text-box h1,
.hero-text-box a {
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
}

/*--------------------------------------------- */
/*                      ABOUT US                */
/*--------------------------------------------- */

#about-us {
  background-color: #fff;
  padding: 5rem 0;
}

.about-us-row {
  padding: 2rem 0;
}

.about-us-col {
  text-align: center;
  /* line-height: 350px; */
}

.about-us-icon {
  height: 500px;
  width: 500px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: #204acf;
  border-radius: 50%;
}

.about-us-text {
  margin: 20% 0;
  font-size: 1.2rem;
  padding: 0 5%;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

/*--------------------------------------------- */
/*                  SOLUCIONES                  */
/*--------------------------------------------- */

.soluciones {
  margin-top: 100px;
  padding: 0;
}

.seccion-servicios {
  color: #012b82;
}

.soluciones-showcase {
  list-style: none;
  width: 100%;
  margin-bottom: 0;
}

.soluciones-showcase li {
  display: block;
  float: left;
  width: 33.33%;
}

.soluciones-img {
  width: 100%;

  margin: 0;
  overflow: hidden;
  background: #000;
}

.soluciones-img img {
  opacity: 0.7;

  width: 100%;
  height: auto;
  -webkit-transform: scale(1.15);
  transform: scale(1.1);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.soluciones-img img:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  opacity: 1;
}

/*--------------------------------------------- */
/*                  TESTIMONIOS                 */
/*--------------------------------------------- */

.texto-nuestros-clientes p {
  font-size: 1.4rem;
}

#testimonials {
  text-align: center;
  background-color: #012b82;
  color: #fff;
}

.testimonial-img {
  width: 10%;

  margin: 1.2rem;
}

.carousel-item {
  padding: 7% 10%;
}

.carousel-item h2 {
  font-size: 1.4rem;
  font-weight: 300;
}

.fa-quote-left {
  font-size: 4rem;
  padding-right: 2rem;
}

/*--------------------------------------------- */
/*                   CONTACTO                   */
/*--------------------------------------------- */

#contact {
  padding-bottom: 5%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.3),
      rgba(255, 255, 255, 0.3)
    ),
    url(img/bg-contact-uuuuus.png);
  background-size: cover;
  background-position: center;
}

#contact .row {
  max-width: 100%;
}

.contact-2 {
  padding-top: 3rem;
}

.contact-form-header {
  text-align: center;
  text-transform: uppercase;
}

.form-box {
  padding-bottom: 1.5rem;
}

.form-input {
  width: 100%;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 7px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

textarea {
  height: 100px;
}

.cuadro-ubicaciones {
  padding-top: 8%;
}

.ubicaciones h4 {
  color: #204acf;
}

.ubicaciones ul {
  list-style-type: none;
  text-align: center;
}

.cd-extra {
  margin: 0 auto;
}

.ubicaciones h4 {
  padding-bottom: 1.2rem;
  text-align: center;
}

.form-box input {
  border-radius: 10px;
}

.form-text {
  padding-left: 2.5rem;
}

/*--------------------------------------------- */
/*                   FOOTER                     */
/*--------------------------------------------- */

footer {
  background-color: #333;
  padding: 40px;
  font-size: 75%;
}

.footer-nav {
  list-style: none;
  float: left;
}

.social-links {
  list-style: none;
  float: right;
}

.footer-nav li,
.social-links li {
  display: inline-block;
  margin-right: 20px;
}

.footer-nav li:last-child,
.social-links li:last-child {
  margin: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
  text-decoration: none;
  border: 0;
  color: #888;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
  color: #ddd;
}

.social-links li a:link,
.social-links li a:visited {
  font-size: 140%;
}

.fa-facebook-f,
.fa-twitter,
.fa-instagram {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.fa-facebook-f:hover {
  color: #3b5998;
}
.fa-twitter:hover {
  color: #00aced;
}
.fa-instagram:hover {
  color: #517fa4;
}

.fa-heart {
  color: red;
}

#footer-ds a:visited,
#footer-ds a:link {
  text-decoration: none;
  color: #ddd;
}

.footer li a:link,
.footer li a:visited {
  font-size: 0.8rem;
  color: #ddd;
}

.footer-nav li a:hover {
  color: #204acf;
  transition: color 0.6s;
}

#footer-ds a:hover {
  color: #00aced;
  transition: color 0.6s;
}

.footer-text {
  font-size: 0.5rem;
  color: #888;
  text-transform: uppercase;
  text-align: center;
}

#footer-ds {
  font-family: "Dawning of a New Day", cursive;
  text-align: center;
  font-weight: 300;
  font-size: 1.5rem;
  color: #ddd;
  padding-bottom: 1rem;
}

.ds-heart {
  color: #ed1944;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}
