/*
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_webinar strong {
  font-weight: 600;
}
.header_webinar .full-width {
  display: none;
}
@media (min-width: 992px) {
  .header_webinar .full-width {
    display: flex;
    height: 100%;
  }
}
.header_webinar .bg-mobile {
  position: relative;
  height: var(--bg-mobile-height, 100svh);
}
.header_webinar .bg-mobile::before {
  content: "";
  display: flex;
  background-image: var(--bg);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: cover;
  width: 100vw;
  height: var(--bg-mobile-height, 100svh);
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
}
@media (min-width: 992px) {
  .header_webinar .bg-mobile::before {
    display: none;
  }
}
@media (min-width: 992px) {
  .header_webinar .bg-mobile {
    height: 100%;
  }
}
.header_webinar .hero-content {
  padding-block: 1.5rem;
}
@media (min-width: 992px) {
  .header_webinar .hero-content {
    position: absolute;
    z-index: 2;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: #fff;
  }
}
.header_webinar .hero-content .header-logo img {
  width: 100%;
}
.header_webinar .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_webinar .hero-content .resource-type {
    text-align: left;
  }
}
.header_webinar .hero-content h1 {
  font-size: calc(30px + 10 * (100vw - 360px) / 1560);
  line-height: calc(45px + 10 * (100vw - 360px) / 1560);
  font-weight: 600;
  color: #4C5865;
  text-align: center;
}
@media (min-width: 992px) {
  .header_webinar .hero-content h1 {
    text-align: left;
  }
}
.header_webinar .hero-content .sub-heading {
  font-size: 18px;
  line-height: 26px;
  color: #333234;
  text-align: center;
}
@media (min-width: 992px) {
  .header_webinar .hero-content .sub-heading {
    text-align: left;
  }
}
.header_webinar .hero-content .cta-container {
  display: block;
  text-align: center;
}
@media (min-width: 992px) {
  .header_webinar .hero-content .cta-container {
    text-align: left;
  }
}
.header_webinar .hero-content .cta-container .cta {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #5DC6EB;
  background-color: #5DC6EB;
  border-radius: 35px;
  text-transform: uppercase;
  text-decoration: none !important;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  padding: 0.7rem 2rem;
}
.header_webinar .hero-content .cta-container .cta:hover {
  background-color: transparent;
  color: #4C5865;
  text-decoration: none !important;
}

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