:root {
  --black: #202020;
  --white: #ffffff;
  --blue: #001c81;
  --red: #d13139;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("opentype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("opentype");
  font-style: normal;
  font-weight: 600;
}
html,
body {
  font-family: Open sans, "Poppins", sans-serif;
  font-size: 20px;
  color: var(--black);
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

.d-pad {
  padding: 80px 0;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

.fs-18 {
  font-size: 18px;
}

.fs-14 {
  font-size: 14px;
}

.text-blue {
  color: var(--blue);
}

.btn-cta {
  width: 21%;
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  color: var(--white);
  font-size: 18px;
  border-radius: 0;
  text-align: center;
  background-color: var(--blue);
  border-width: 0px;
}

.btn-cta-red {
  width: 13%;
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  color: var(--white);
  font-size: 18px;
  border-radius: 0;
  text-align: center;
  background-color: var(--red);
  border-width: 0px;
}

.line {
  border: 1px solid var(--blue);
  margin: 60px 50px 0 50px;
}

.mobile-item {
  display: none;
}

.header {
  background-image: url("../img/exel-header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 0 80px;
}
.header .box {
  background-color: var(--white);
  padding: 45px 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.header .box .logo {
  width: 130px;
}

.sec1 .iconos {
  width: 80px;
}

.sec2 {
  background-image: url("../img/exel-bg-productos-destacados.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.sec2 .img {
  width: 38%;
}
@media (max-width: 574px) and (min-width: 0px) {
  .sec2 .img {
    width: 30%;
  }
}

.sec3 .bg-boxred {
  background-image: url("../img/exel-bg-beneficio-extra.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 35px 50px;
}
@media (max-width: 574px) and (min-width: 0px) {
  .sec3 .bg-boxred {
    background-position: center;
    padding: 30px;
  }
}

.sec4 {
  padding: 0 0 40px;
}

.footer {
  padding: 0 0 80px;
}
.footer .pad-form {
  padding: 0 50px 0 50px;
}
.footer .form-control {
  background-color: #e6e6e6;
  color: var(--black) !important;
  padding: 15px 30px;
}
@media (max-width: 574px) and (min-width: 0px) {
  .footer .form-control {
    font-size: 15px;
    padding: 15px 10px;
  }
}

.copyright {
  background-image: url("../img/exel-bg-legales.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0;
}
.copyright a {
  text-decoration: none;
  color: var(--white);
}

@media (max-width: 574px) and (min-width: 0px) {
  .mobile-item {
    display: block;
  }
  .desktop-item {
    display: none;
  }
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 25px;
  }
  .fs-18 {
    font-size: 18px;
  }
  .fs-14 {
    font-size: 10px;
  }
  .btn-cta {
    width: 61%;
    font-size: 14px;
  }
  .btn-cta-red {
    width: 45%;
    font-size: 14px;
  }
}