:root {
  --white: #ffffff;
  --black: #202020;
  --blue: #24336a;
  --grey: #f3f3f3;
  --blue2: #121d48;
  --orange: #ec652b;
}

@font-face {
  font-family: "RedHatDisplay";
  src: url("../fonts/RedHatDisplay-Bold.ttf") format("opentype");
  font-style: bold;
  font-weight: 700;
}
@font-face {
  font-family: "RedHatDisplay";
  src: url("../fonts/RedHatDisplay-Regular.ttf") format("opentype");
  font-style: normal;
  font-weight: 400;
}
html,
body {
  font-family: "RedHatDisplay", sans-serif !important;
  font-size: 18px !important;
  color: var(--black);
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

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

h1 {
  font-size: 45px !important;
}

h2 {
  font-size: 35px !important;
}

h3 {
  font-size: 25px !important;
}

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

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

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

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

.orange {
  color: var(--orange);
}

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

.btn-cta {
  display: inline-block;
  text-decoration: none;
  padding: 8px 20px;
  color: var(--white) !important;
  font-size: 16px;
  border-radius: 20px;
  text-align: center;
  background-color: var(--black);
}

.mobile-item {
  display: none;
}

.navbar {
  padding: 20px 0 !important;
}
.navbar .logo {
  width: 25%;
}
.navbar .nav-link {
  font-size: 16px;
  padding: 7px 0px !important;
  color: var(--black);
  margin: 0 9px;
}
.navbar .nav-link.active {
  color: var(--black);
  font-weight: 700;
}
.navbar .navbar-toggler-icon {
  background-image: url("../img/menu-burger.png");
}
.navbar .navbar-toggler {
  border: none;
  color: unset;
  padding: 0 10px 0 0;
}
@media (max-width: 500px) and (min-width: 0px) {
  .navbar .logo {
    width: 120px;
  }
}

.footer {
  padding: 60px 0;
}
.footer .logo {
  width: 80%;
  margin-top: 10px;
}
.footer a {
  text-decoration: none;
  color: unset;
}
.footer .icono-link {
  width: 30px;
  margin-top: 15px;
}

@media (max-width: 574px) and (min-width: 0px) {
  .footer .logo {
    width: 60% !important;
  }
}
@media (max-width: 574px) and (min-width: 0px) {
  .mobile-item {
    display: block;
  }
  .desktop-item {
    display: none;
  }
  body {
    font-size: 17px !important;
  }
  .d-pad {
    padding: 70px 6% !important;
  }
  h1 {
    font-size: 45px !important;
  }
  h2 {
    font-size: 30px !important;
  }
  h3 {
    font-size: 22px !important;
  }
}