.hero {
  height: 80vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.hero__bg img, .hero__bg video {
  width: 100%;
  height: 100%;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(245.21deg, rgba(0, 0, 0, 0) 26.93%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(1.49deg, rgba(0, 0, 0, 0) 1.37%, rgba(0, 0, 0, 0.4) 98.86%);
  z-index: 10;
}
.hero__content {
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 40px;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
  position: relative;
  z-index: 11;
}
.hero__left {
  max-width: 590px;
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 16px;
}
.hero__desc {
  max-width: 420px;
  width: 100%;
}
.hero__btn {
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  margin-top: 14px;
}
.hero__right {
  max-width: 360px;
  width: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 10px 36px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
}
.hero__card {
  display: flex;
  gap: 18px;
}
.hero__card-image {
  max-width: 120px;
  width: 100%;
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
}
.hero__card-info {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 8px;
}
.hero__card-title {
  font-family: Raleway;
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #FFFFFF;
}
.hero__card-texting {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
.hero__card-desc {
  font-family: Raleway;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
}
.hero__card-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__card-link svg {
  transition: 0.3s ease;
}
.hero__card-link svg path {
  transition: 0.3s ease;
  fill: #FFFFFF;
}
.hero__card-link:hover svg {
  transform: translateX(10px);
}
.hero__card-link:hover svg path {
  fill: #F15024;
}

@media (max-width: 992px) {
  .hero__content {
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
  .hero__left {
    max-width: 100%;
  }
  .hero__right {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */