:root {
  --blanco: #ffffff;
  --azul: #17344c;
  --gris: #202020;
  --negro: #101010;
  --gold: #b3a36b;
  --grey: #909090;
  --gris-claro: #f1f1f1;
  --amarillo: #e0bd78;
}

@font-face {
  font-family: "AderoTrial-Black";
  src: url("../fonts/AderoTrial-Black.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "WixMadeforDisplay-Bold";
  src: url("../fonts/WixMadeforDisplay-Bold.ttf") format("opentype");
  font-style: bold;
  font-weight: 700;
}
@font-face {
  font-family: "WixMadeforDisplay-Medium";
  src: url("../fonts/WixMadeforDisplay-Medium.ttf") format("opentype");
  font-style: medium;
  font-weight: 600;
}
@font-face {
  font-family: "WixMadeforDisplay-Regular";
  src: url("../fonts/WixMadeforDisplay-Regular.ttf") format("opentype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Betterlett";
  src: url("../fonts/Betterlett.ttf") format("opentype");
  font-style: normal;
  font-weight: 400;
}
html,
body {
  font-family: "WixMadeforDisplay-Regular", sans-serif;
  font-size: 20px;
  color: var(--negro);
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

.d-pad {
  padding: 80px 8%;
}

.bg-blue {
  background-color: var(--azul);
}

.bg-grey {
  background-color: var(--gris-claro);
}

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

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

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

.adero {
  font-family: "AderoTrial-Black", sans-serif;
}

.betterlett {
  font-family: "Betterlett", sans-serif;
}

.txt-body-sm {
  font-size: 16px;
}

.pd-0 {
  padding: 0px;
}

.px-container {
  padding: 0% 8% 0% 8%;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 20px;
}

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

.tx-amarillo {
  color: var(--amarillo);
}

.btn-cta {
  width: 100%;
  display: inline-block;
  height: 100%;
  text-decoration: none;
  padding: 10px 20px;
  height: 50px;
  color: var(--negro);
  font-size: 16px;
  border-radius: 9px;
  text-align: center;
  background-color: var(--amarillo);
  border-width: 0px;
  font-weight: 700;
}
.btn-cta:hover {
  background-color: var(--negro);
  color: var(--blanco);
}

form {
  padding: 30px;
}

.form-control {
  border-radius: 0;
  border-color: var(--gris);
}

a {
  color: unset;
}

.mobile-item {
  display: none;
}

.navbar {
  padding: 20px 8%;
  border-bottom: 1px solid var(--grey);
}
.navbar .logo {
  width: 200px;
}
.navbar .nav-link {
  font-size: 16px;
  padding: 7px 0px !important;
  color: var(--gris);
  margin: 0 9px;
}
.navbar .nav-link.active {
  color: var(--amarillo);
  text-decoration: underline;
}
.navbar .nav-link:hover {
  color: var(--amarillo);
  text-decoration: underline;
}
@media (max-width: 500px) and (min-width: 0px) {
  .navbar {
    padding: 18px 5%;
  }
  .navbar .logo {
    width: 150px;
  }
  .navbar .btn-cta {
    padding: 9px 10px;
    font-size: 15px;
  }
}

footer .line {
  height: 2px;
  background-color: var(--amarillo);
  padding: 0;
}
footer .pad {
  padding: 40px 8% 35px 8%;
}
footer .copy {
  font-size: 12px;
  color: var(--negro);
}
footer .copy .a {
  color: var(--negro);
  text-decoration: none;
}
footer .text {
  color: var(--negro);
  text-decoration: none;
  font-size: 18px;
}
footer p {
  font-size: 15px;
}
footer .ms-6 {
  margin-left: 19%;
}
footer .redes {
  margin-left: 30%;
}
footer .redes img {
  display: block;
}
footer a {
  color: var(--negro);
  text-decoration: none;
}
@media (max-width: 574px) and (min-width: 0px) {
  footer p {
    font-size: 12px;
  }
  footer .mt-6 {
    margin-top: 15%;
  }
  footer .copy {
    text-align: center;
  }
  footer .text {
    font-size: 12px;
    text-align: center;
  }
  footer .logo {
    width: 50%;
  }
  footer .box {
    background-color: var(--gris-claro);
    background-size: cover;
    padding: 15px 5%;
  }
  footer .redes {
    margin-left: 0;
    text-align: center;
  }
  footer .redes img {
    display: inline-block;
  }
}

@media (max-width: 574px) and (min-width: 0px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 25px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  .mobile-item {
    display: block;
  }
  .desktop-item {
    display: none;
  }
}