.wysiwyg {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  color: var(--color-secondary);
  background-color: var(--color-primary);
}
.wysiwyg .grid-padding {
  row-gap: 3rem;
  padding: 3.125rem 0 1.5625rem;
}
@media (min-width: 576px) {
  .wysiwyg .grid-padding {
    padding: 6.25rem 0 3.125rem;
  }
}
@media (min-width: 992px) {
  .wysiwyg .grid-padding {
    padding: 6.25rem 0;
  }
}
.wysiwyg__headline {
  margin-top: 0;
}
.wysiwyg__title {
  position: absolute;
  top: 2.1875rem;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.wysiwyg__title.is-pinned {
  position: fixed;
}
body.menu-open .wysiwyg__title {
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (min-width: 768px) {
  .wysiwyg__title {
    top: 2.8125rem;
  }
}
@media (min-width: 1200px) {
  .wysiwyg__title {
    top: 4.375rem;
  }
}
@media (max-width: 575.98px) {
  .wysiwyg__title {
    display: none;
  }
}
.wysiwyg__title p,
.wysiwyg__title div {
  padding-right: 2.5rem;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  text-transform: uppercase;
}
.wysiwyg .small {
  font-size: 1rem;
  margin-top: 3.125rem;
}
@media (min-width: 992px) {
  .wysiwyg .small {
    margin-top: 6.25rem;
  }
}
.wysiwyg .small + .small {
  margin-top: 0;
}
.wysiwyg .small * {
  line-height: 1.4;
  font-size: 1rem;
}
.wysiwyg .small p {
  margin: 0 0 0.9375rem;
}
.wysiwyg .small p:last-child {
  margin-bottom: 0;
}
.wysiwyg__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wysiwyg__text ul {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  padding-left: 1.25rem;
  margin: 1.875rem 0;
}
.wysiwyg__text ul:last-child {
  margin-bottom: 0;
}
.wysiwyg__text ul li:not(:last-child) {
  padding-bottom: 0.9375rem;
}
.wysiwyg__text ul li a {
  font-size: var(--fs-xl);
}
.wysiwyg__text ul li a:hover {
  cursor: pointer;
}
.wysiwyg__text a.icon-link {
  position: relative;
  display: block;
  font-family: var(--font-secondary);
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  text-transform: uppercase;
  padding-left: 2.5rem;
  margin-top: 1.875rem;
}
.wysiwyg__text a.icon-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 0.75rem;
  background-image: url("../../assets/img/icons/arrow-right.svg");
  background-repeat: no-repeat;
  transition: transform 300ms ease-out;
  transform: translateY(-50%);
}
.wysiwyg__text a.icon-link:hover {
  cursor: pointer;
}
.wysiwyg__text a.icon-link:hover:before {
  transform: translateX(5px) translateY(-50%);
}
.wysiwyg .fade-left,
.wysiwyg .fade-up {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}
.wysiwyg .fade-left.aos-animate,
.wysiwyg .fade-up.aos-animate {
  opacity: 1;
  transform: none;
}
.wysiwyg .fade-left {
  transform: translateX(-80px);
}
.wysiwyg .fade-up {
  transform: translateY(80px);
}

.dark-mode .wysiwyg .wysiwyg__text a.icon-link:before {
  background-image: url("../../assets/img/icons/arrow-right-black.svg");
}

.wp-block-weblynx-wysiwyg {
  padding: 2rem;
  background: var(--color-primary, #111);
  color: var(--color-secondary, #fff);
}
.wp-block-weblynx-wysiwyg .wysiwyg__title {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.wp-block-weblynx-wysiwyg .wysiwyg__images {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.wp-block-weblynx-wysiwyg .wysiwyg__images img {
  max-width: 45%;
  height: auto;
  object-fit: cover;
}

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