.hero--section {
  position: relative;
}
.hero--section .hero--container {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
.hero--section .hero--container .hero--content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 75px;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero--section .hero--container .hero--content .hero--subheading p {
  font-family: source-sans-3, sans-serif;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.hero--section .hero--container .hero--content .hero--heading p {
  font-family: montserrat, sans-serif;
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 0em;
  line-height: 1.2;
  text-transform: none;
}
.hero--section .hero--container .hero--content .hero--heading p strong {
  font-family: montserrat, sans-serif;
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 1.2;
  text-transform: none;
}
.hero--section .hero--container .hero--image {
  height: 100%;
  width: 100%;
  position: relative;
  top: 5%;
}
.hero--section .hero--container .hero--image picture {
  width: 100%;
  height: 110%;
}
.hero--section .hero--container .hero--image picture img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero--section .hero--container .hero--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .hero--section .hero--container {
    height: unset;
    margin-top: 100px;
  }
  .hero--section .hero--container .hero--content {
    gap: 15px;
    justify-content: center;
    position: relative;
    background: var(--content-background-image);
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 60px 30px 40px;
  }
  .hero--section .hero--container .hero--content .hero--subheading {
    text-align: center;
    width: 100%;
  }
  .hero--section .hero--container .hero--content .hero--heading {
    text-align: center;
    width: 100%;
  }
  .hero--section .hero--container .hero--content .hero--heading p {
    font-size: 34px;
  }
  .hero--section .hero--container .hero--content .hero--heading p strong {
    font-size: 34px;
  }
  .hero--section .hero--container .hero--image {
    top: 0;
  }
  .hero--section .hero--container .hero--overlay {
    opacity: 0.1;
  }
}
.hero--section .hero--sidebar {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.hero--section .hero--sidebar .hero--cta-container {
  align-self: flex-end;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  height: 116.891px;
}
.hero--section .hero--sidebar .hero--cta-container a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  position: relative;
  width: fit-content;
  height: 100%;
  margin-left: auto;
  pointer-events: all;
}
.hero--section .hero--sidebar .hero--cta-container a .icon--container {
  display: flex;
  justify-content: center;
  width: 46px;
  height: 100%;
  background: rgb(28, 166, 223);
}
.hero--section .hero--sidebar .hero--cta-container a .icon--container svg {
  max-width: 15px;
  fill: white;
}
.hero--section .hero--sidebar .hero--cta-container a .text--container {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
.hero--section .hero--sidebar .hero--cta-container a .text--container .title {
  position: relative;
  z-index: 1;
  padding: 10px 15px;
  font-family: source-sans-3, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: none;
}
.hero--section .hero--sidebar .hero--cta-container a .text--container:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(54, 54, 54);
  z-index: 0;
}
.hero--section .hero--sidebar .hero--cta-container a .text--container:after {
  content: "";
  background: rgb(28, 166, 223);
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 100%;
  z-index: 0;
  transition: width 300ms ease-in-out;
}
.hero--section .hero--sidebar .hero--cta-container a:hover .text--container:after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero--section .hero--sidebar {
    display: none;
  }
}

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