/*
make fluid properties

@link https://www.sassmeister.com/gist/7f22e44ace49b5124eec
Example:
@include fluid-type(padding-bottom padding-top, 2em, 4em);
@include fluid-type(font-size, 14px, 18px);
Optimized for resolution 360px <---> 1920px
*/
.header_default .full-width {
  display: none;
}
@media (min-width: 992px) {
  .header_default .full-width {
    display: flex;
    height: 450px;
  }
}
.header_default .bg-mobile {
  position: relative;
  height: 100%;
}
.header_default .bg-mobile::before {
  content: "";
  display: flex;
  background-image: var(--bg);
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: cover;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
}
@media (min-width: 992px) {
  .header_default .bg-mobile::before {
    display: none;
  }
}
.header_default .hero-content {
  padding-block: 1.5rem;
}
@media (min-width: 992px) {
  .header_default .hero-content {
    position: absolute;
    z-index: 2;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: #fff;
  }
}
.header_default .hero-content .header-logo img {
  width: 480px;
}
.header_default .hero-content .resource-type {
  color: #5EC6EA;
  font-size: calc(25px + 0 * (100vw - 360px) / 1560);
  line-height: calc(45px + 0 * (100vw - 360px) / 1560);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 992px) {
  .header_default .hero-content .resource-type {
    text-align: left;
  }
}
.header_default .hero-content h1 {
  font-size: calc(30px + 10 * (100vw - 360px) / 1560);
  line-height: calc(45px + 10 * (100vw - 360px) / 1560);
  font-weight: 600;
  color: white;
  text-align: center;
}
@media (min-width: 992px) {
  .header_default .hero-content h1 {
    text-align: left;
  }
}
.header_default .hero-content .sub-heading {
  font-size: calc(20px + 5 * (100vw - 360px) / 1560);
  line-height: calc(30px + 0 * (100vw - 360px) / 1560);
  font-weight: 100;
  color: white;
  text-align: center;
}
@media (min-width: 992px) {
  .header_default .hero-content .sub-heading {
    text-align: left;
  }
}

/*# sourceMappingURL=header_default.css.map */
