/*SIZE*/
/* COLORS */
/* FONTS */
/* SHADOW */
/* border */
/*Transition*/
/* Media queries */
/* Ejemplo Uso
body{ 
    ...
    @include media-breakpoint-up($sm) {
        background:red;
    }
    @include media-breakpoint-up($md) {
        background:none;
    }
    ...   
}
*/
/* Ejemplo de uso:
p{
  @include text-truncate();
}
*/
/* Ejemplo de uso:
p {
  @include font-size(13);
}
*/
/* Ejemplo de uso:
p {
    @include fluid-type($min_width, $max_width, $min_font, $max_font);
}
*/
.hero-home {
  position: relative;
  margin-bottom: 110px;
}

@media (min-width: 992px) {
  .hero-home {
    margin-bottom: 200px;
  }
}

.hero-home .title-home {
  padding-top: 28px;
  padding-bottom: 50px;
  max-width: 63%;
  position: relative;
  z-index: 1;
  font-family: "HN-Thin", Arial, Helvetica, sans-serif;
}

.hero-home .title-home p {
  font-family: "HN-Thin", Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 28px;
}

@media (min-width: 992px) {
  .hero-home .title-home {
    padding-top: 100px;
    padding-bottom: 200px;
    max-width: 40%;
  }
  .hero-home .title-home p {
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  .hero-home .title-home {
    padding-top: 110px;
    padding-bottom: 185px;
  }
  .hero-home .title-home p {
    margin-bottom: 15px;
  }
  .hero-home .title-home .content-button {
    margin: 0;
  }
}

.hero-home-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  max-height: 600px;
  height: 330px;
  overflow: hidden;
}

.hero-home-bg::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(319deg, rgba(225, 197, 178, 0) 15%, #c8c4c0 100%);
  z-index: 0;
}

@media (min-width: 992px) {
  .hero-home-bg::after {
    background-image: linear-gradient(298deg, rgba(225, 197, 178, 0) 50%, #c8c4c0 100%);
  }
}

@media (min-width: 992px) {
  .hero-home-bg {
    height: initial;
  }
}

.hero-home-featured {
  position: absolute;
  width: 100%;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 992px) {
  .hero-home-featured {
    bottom: -150px;
  }
}

.hero-home-featured ul {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-home-featured ul li {
  background-color: #ffffff;
  width: 33%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 4px 4px 6px 0 rgba(25, 25, 25, 0.1);
}

@media (min-width: 992px) {
  .hero-home-featured ul li {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 285px;
  }
}

.hero-home-featured ul li:not(:last-child) {
  margin-right: 12px;
}

@media (min-width: 992px) {
  .hero-home-featured ul li:not(:last-child) {
    margin-right: 32px;
  }
}

.hero-home-featured ul li span {
  display: block;
}

.hero-home-featured ul li .title {
  color: #294459;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  margin-bottom: 3px;
}

@media (min-width: 992px) {
  .hero-home-featured ul li .title {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 30px;
    margin-bottom: 10px;
  }
}

.hero-home-featured ul li .feature {
  font-family: "MontserratMedium", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  text-transform: uppercase;
  color: #294459;
}

@media (min-width: 992px) {
  .hero-home-featured ul li .feature {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 46px;
  }
}

.hero-home-featured ul li .feature span {
  font-family: "PTSans-Regular", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 20px;
  color: #868686;
}

@media (min-width: 992px) {
  .hero-home-featured ul li .feature span {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 38px;
  }
}
