/*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);
}
*/
@-webkit-keyframes zoomImgIntern {
  from {
    transform: scale(1);
    -webkit-animation: zoomImgIntern 16s;
            animation: zoomImgIntern 16s;
  }
}
@keyframes zoomImgIntern {
  from {
    transform: scale(1);
    -webkit-animation: zoomImgIntern 16s;
            animation: zoomImgIntern 16s;
  }
}

.header-int:after {
  display: none;
}

.header-int {
  height: 270px;
  overflow: hidden;
}

.header-int .header-int-wrapper {
  height: 280px;
  position: relative;
}

.header-int .header-int-wrapper .parallax-wrapper {
  min-height: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.header-int .header-int-wrapper .parallax-wrapper .img-parallax {
  width: 100%;
  height: auto;
  min-width: 100vw;
  transform: scale(1.15);
  -webkit-animation: zoomImgIntern 16s;
  animation: zoomImgIntern 16s;
  min-height: 270px;
  top: 0;
}

.header-int .header-int-wrapper .header__claim-wrapper {
  height: 100%;
  position: relative;
  color: #ffffff;
}

.header-int .header-int-wrapper .header__claim-wrapper::before {
  background: linear-gradient(311.58deg, rgba(225, 197, 178, 0) 0%, #000000 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
}

.header-int .header-int-wrapper .header__claim-wrapper .button {
  margin-top: 10px;
}

.header-int .header-int-wrapper .header__claim-wrapper p, .header-int .header-int-wrapper .header__claim-wrapper h1 {
  font-family: "HN-Thin", Arial, Helvetica, sans-serif;
}

@media (min-width: 992px) {
  .header-int {
    height: 320px;
  }
  .header-int .header-int-wrapper {
    height: 100%;
  }
  .header-int .header-int-wrapper .header__claim-wrapper .title-intern {
    max-width: 80%;
  }
  .header-int .header-int-wrapper .header__claim-wrapper .title-intern h1 {
    max-width: 50%;
  }
  .header-int .header-int-wrapper .header__claim-wrapper p {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 34px;
    letter-spacing: 1.43px;
    width: 65%;
  }
  .header-int .header-int-wrapper .header__claim-wrapper p span {
    display: block;
  }
  .header-int .header-int-wrapper .header__claim-wrapper p.title {
    font-size: 50px;
    font-size: 3.125rem;
    letter-spacing: 0.86px;
    line-height: 50px;
    width: 65%;
    margin-bottom: 15px;
  }
  .header-int .header-int-wrapper .header__claim-wrapper p.button {
    margin-top: 25px;
  }
  .header-int .header-int-wrapper .parallax-wrapper .img-parallax {
    min-height: 320px;
  }
}
