/* EN ESTA HOJA VAN TODOS LOS ESTILOS COMUNES A TODAS LAS PAGINAS */

/* VARIABLES */
:root {
    --primary-color: #661f7a;
    --secondary-color: #161616;
    --third-color: #ababab;
    --fourth-color: #e5e5e5;
    --fifth-color: #ff7f00;
    --box-shadow-main: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

@font-face {
  font-family: "grotesk-regular";
  src: url(../style/font/NHaasGroteskTXPro-55Rg.ttf);
}

@font-face {
  font-family: "grotesk-medium";
  src: url(../style/font/NHaasGroteskTXPro-65Md.ttf);
}

@font-face {
  font-family: "grotesk-bold";
  src: url(../style/font/NHaasGroteskTXPro-75Bd.ttf);
  font-weight: bold;
}
html {
  scroll-behavior: smooth;
}
.mobile-in {
  display: none;
}
a:hover {
  text-decoration: none;
}

/* NAVBAR Y FOOTER */
.navbar {
  padding: 0rem 1rem;
  position: fixed;
  top: 0;
  z-index: 3;
  background: white;
  width: 100%;
  height: 92px;
  box-shadow: var(--box-shadow-main);
}
.navbar-light {
  background: white !important;
}
nav ul {
  margin: 0 auto;
}

.navbar-brand {
  margin-left: 2rem;
}
.nav-item {
  padding-right: 0.3rem !important;
  padding-left: 0.3rem !important;
}

.nav-link {
  font-family: "grotesk-regular", "Helvetica";
  font-size: 1.05rem;
  color: var(--third-color);
  transition: 0.12s ease-in;
  letter-spacing: 0.025rem;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}
.afiliate {
  color: var(--primary-color) !important;
  font-family: "grotesk-bold";
}

.navbar-text {
  padding-top: 0;
  padding-bottom: 0;
}

.puntos-naranja {
    /*max-height: 100%;
    width: 100%;*/
    float: right;
    object-fit: cover;
}

.puntos-purpura {
    /*max-height: 100%;
    width: 100%;*/
    float: right;
    object-fit: cover;
}

.footer {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100px;
  padding: 0rem 1rem;
  z-index: 3;
  box-shadow: var(--box-shadow-main);
  font-family: "grotesk-medium", "Helvetica";
}

.footer .col-md-3,
.footer .col-md-4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.footer .col-md-3 h1 {
  font-size: 1.15rem;
}
.footer i {
  color: white;
  margin-right: 0.7rem;
  font-size: 1.15rem;
  transition: 0.6s;
}
.footer i:hover {
  opacity: 0.6;
}
.footer .col-md-4 h1 {
  font-size: 1.6rem;
  color: white;
  text-decoration: none;
}

.espejada {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .mobile-in {
    display: block;
  }
  .mobile-out {
    display: none;
  }
    .puntos-naranja {
        display: none;
    }
    .puntos-purpura {
        display: none;
    }
  .footer {
    height: 90px;
  }
  .footer .col-md-4 h1 {
    font-size: 1.15rem;
  }
}
