.hero .hero__main {
  height: auto;
  position: relative;
}
.hero .hero__main .hero__image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991.98px) {
  .hero .hero__main .hero__image {
    display: none;
  }
}
.hero .hero__main .hero__image div {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 640px;
}
.hero .hero__main .hero__image div img {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.hero .hero__main .hero__panel {
  border-radius: 8px;
  position: relative;
}
.hero .hero__main .hero__panel .hero__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  max-width: 463px;
  width: auto;
  overflow: hidden;
  background-color: var(--psi-color-green);
  border-radius: 8px;
}
@media (max-width: 991.98px) {
  .hero .hero__main .hero__panel .hero__container {
    margin: 0 auto;
  }
}
.hero .hero__main .hero__panel .hero__container .hero__title h1, .hero .hero__main .hero__panel .hero__container .hero__title h2, .hero .hero__main .hero__panel .hero__container .hero__title h3, .hero .hero__main .hero__panel .hero__container .hero__title h4, .hero .hero__main .hero__panel .hero__container .hero__title h5, .hero .hero__main .hero__panel .hero__container .hero__title h6 {
  font-weight: var(--psi-fw-bold);
  font-size: var(--psi-fs-heading-h1);
  line-height: var(--psi-lh-heading-h1);
  color: var(--psi-color-white);
}
.hero .hero__main .hero__panel .hero__container .hero__body {
  text-wrap: wrap;
  font-size: var(--psi-fs-body);
}
.hero .hero__main .hero__panel .hero__container .hero__body, .hero .hero__main .hero__panel .hero__container .hero__body h1, .hero .hero__main .hero__panel .hero__container .hero__body h2 {
  color: var(--psi-color-white);
}
.hero .hero__main .hero__panel .hero__container .hero__body p {
  font-weight: var(--psi-fw-light);
}
.hero .hero__main .hero__panel .hero__container .hero__body a {
  position: relative;
  padding-right: 3rem;
}
.hero .hero__main .hero__panel .hero__container .hero__body a::after {
  content: "";
  -webkit-mask: url("../../../../images/icons/icon-arrow-right.svg");
          mask: url("../../../../images/icons/icon-arrow-right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-left: 4px;
  width: 32px;
  height: 32px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 0.25rem;
  right: 0.66rem;
  background-color: var(--psi-color-white);
}
.hero .hero__main .hero__panel .hero__container .hero__body a:hover::after {
  content: "";
  -webkit-mask: url("../../../../images/icons/icon-arrow-right.svg");
          mask: url("../../../../images/icons/icon-arrow-right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 32px;
  height: 32px;
  display: inline-block;
  text-align: center;
  position: absolute;
  background-color: var(--psi-color-black);
}
.hero .hero__main .hero__panel .hero__container .hero__title {
  font-weight: var(--psi-fw-bold);
  line-height: 54.53px;
  color: var(--psi-color-white);
}