@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
}
body,
html {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #375097;
}

h1 {
  color: #9A458D;
  font-size: 52px;
  font-weight: 900;
}

h2 {
  color: #375097;
  font-size: 32px;
  font-weight: 700;
}

h4 {
  color: #9A458D;
  font-size: 22px;
  font-weight: 600;
}

.h5 {
  font-size: 18px;
  font-weight: 600;
}

.bgr-dark-grey {
  background-color: rgba(221, 218, 233, 0.3);
}

.bgr-light-dark-fade {
  background: linear-gradient(271deg, #293358 -0.38%, #375097 100%);
  color: #ffffff;
}

.text-bold {
  font-weight: 500;
  color: #375097;
}

a {
  color: #9A458D;
  text-decoration: underline;
  font-weight: 500;
}

.btn {
  color: #375097;
  font-weight: 500;
  padding: 12px 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background-color: transparent;
  border: 1px solid #375097;
}
.btn.btn-primary {
  background-color: #375097;
  color: #ffffff;
}
.btn.btn-secondary {
  background-color: #9A458D;
  color: #ffffff;
}
.btn:hover {
  background-color: #9A458D;
  border: 1px solid #9A458D;
  color: #ffffff !important;
}

.page-title {
  color: #9A458D;
  font-size: 40px;
  font-weight: 500;
}

nav {
  position: fixed;
  width: 100%;
  z-index: 1;
}
nav.active .burger-menu {
  background-color: #375097;
}
nav.active .burger-menu .burger-menu-menu > span:nth-of-type(2) {
  visibility: hidden;
}
nav.active .burger-menu .burger-menu-menu > span:nth-of-type(1) {
  transform-origin: 50% 50%;
  transform: rotate(45deg);
  top: 7px;
  position: relative;
}
nav.active .burger-menu .burger-menu-menu > span:nth-of-type(3) {
  transform-origin: 50% 50%;
  transform: rotate(-45deg);
  top: -7px;
  position: relative;
}
nav.active .burger-menu-content {
  grid-template-rows: 1fr;
}
nav .burger-menu-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms;
}
nav .burger-menu-content > div {
  overflow: hidden;
}
nav .burger-menu-content > div ul {
  opacity: 0.98;
  background: linear-gradient(180deg, #293358 0%, #375097 141.04%);
  padding: 75px 0;
  text-align: center;
}
@media (max-width: 991.98px) {
  nav .burger-menu-content > div ul {
    height: calc(100vh - 100px);
  }
}
nav .burger-menu-content > div ul li:not(:last-of-type) {
  margin-bottom: 30px;
}
nav .burger-menu-content > div ul li a {
  text-decoration: none;
  color: #ffffff;
}
nav .burger-menu {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-right: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 25px;
  border-radius: 40px;
}
@media (max-width: 991.98px) {
  nav .burger-menu {
    margin-right: 15px;
    padding: 10px 10px;
  }
  nav .burger-menu .burger-menu-text {
    display: none;
  }
  nav .burger-menu .burger-menu-menu {
    margin-left: 0 !important;
  }
}
nav .burger-menu .burger-menu-menu {
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
nav .burger-menu .burger-menu-menu > span {
  height: 3px;
  background-color: #ffffff;
  width: 25px;
  border-radius: 6px;
  display: block;
}
nav.navbar-logged-in .navbar-content {
  background-color: #9A458D;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.navbar-logged-in .navbar-content .child-logo {
  display: block;
  background-image: url("../img/child_logo.svg");
  background-size: contain;
  width: 100px;
  height: 100px;
}
nav.navbar-logged-in .navbar-content .sibnayal-logo {
  display: block;
  background-image: url("../img/sibnayal_full_logo_white.svg");
  background-size: contain;
  width: 166px;
  height: 82px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
nav.navbar-public {
  padding: 62px;
  position: relative;
  background-color: #9A458D;
}
nav.navbar-public .sibnayal-full-logo {
  display: block;
  background-image: url("../img/sibnayal_full_logo_white.svg");
  background-size: contain;
  width: 166px;
  height: 82px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.section-title {
  color: #9A458D;
  font-size: 40px;
}
@media (min-width: 992px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.header {
  position: relative;
  padding-top: 100px;
}
.header .header-img-wrapper {
  display: flex;
  justify-content: flex-end;
}
.header .header-img-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .header .header-img-wrapper > img {
    position: absolute;
  }
}
.header .header-title {
  color: #375097;
  font-size: 52px;
  font-weight: 600;
  display: block;
  max-width: 730px;
}
.header .header-title .header-title-mobile {
  display: none;
}
@media (max-width: 991.98px) {
  .header .header-title .header-title-mobile {
    display: block;
  }
  .header .header-title .header-title-desktop {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .header {
    display: flex;
    margin-bottom: 125px;
  }
  .header .header-img-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .header .header-content {
    position: relative;
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .header .header-content .header-title {
    color: #9A458D;
    font-size: 40px;
    font-weight: 600;
  }
}
@media (min-width: 992px) {
  .header .header-blur {
    width: 100%;
    height: 214px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #FFF 100.32%);
    position: absolute;
    bottom: 0;
  }
  .header .header-content {
    position: absolute;
    top: 35%;
    width: 100%;
  }
}

footer {
  background-color: #375097;
  display: block;
  margin-top: 100px;
  color: #ffffff;
  padding: 60px 31px;
}
@media (max-width: 992px) {
  footer {
    padding: 60px 20px;
  }
}
footer a {
  text-decoration: none !important;
  color: #ffffff !important;
  font-weight: 400;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li:not(:last-of-type) {
  margin-bottom: 30px;
}
footer.footer-logged-in {
  background: url("../img/footer.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}
footer .footer-list-end {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  footer .footer-list-end {
    margin-top: 50px;
  }
}
@media (min-width: 991.98px) {
  footer .footer-list-end li {
    margin-bottom: 0 !important;
    display: inline-block;
  }
}
footer .footer-list-end li {
  text-align: right;
}
footer .sibnayal-full-logo-white {
  display: block;
  width: 166px;
  height: 82px;
  background-image: url("../img/sibnayal_full_logo_white.svg");
  background-size: contain;
}
footer .avanzanite-logo-white {
  display: block;
  width: 175px;
  height: 35px;
  background-image: url("../img/avanzanite_logo_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 991.98px) {
  footer .avanzanite-logo-white {
    width: 147px;
    height: 38px;
  }
}

.section-full-width.section-full-width-mountain {
  background-image: url("../img/full_width_mountain.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding: 70px 0;
}

.contact-persons {
  margin-top: 75px;
}
.contact-persons h2 {
  text-align: center;
}
.contact-persons .contact-person-wrapper {
  margin-top: 50px;
}
.contact-persons .contact-person-wrapper .contact-person {
  display: flex;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .contact-persons .contact-person-wrapper .contact-person:not(:first-of-type) {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .contact-persons .contact-person-wrapper .contact-person.contact-person-ronacher {
    margin-right: 25%;
  }
}
.contact-persons .contact-person-wrapper .contact-person.contact-person-ronacher .contact-person-information-contact-button {
  width: auto !important;
}
@media (min-width: 992px) {
  .contact-persons .contact-person-wrapper .contact-person.contact-person-skelo {
    margin-left: 23%;
  }
}
.contact-persons .contact-person-wrapper .contact-person.contact-person-skelo .contact-person-information-contact-button {
  width: auto !important;
}
@media (min-width: 992px) {
  .contact-persons .contact-person-wrapper .contact-person.contact-person-goldschmidt {
    margin-right: 20%;
  }
}
@media (min-width: 992px) {
  .contact-persons .contact-person-wrapper .contact-person.contact-person-hehn {
    margin-top: -100px;
    margin-left: 10%;
  }
  .contact-persons .contact-person-wrapper .contact-person.contact-person-hehn .contact-person-information {
    margin-bottom: -50px;
  }
}
.contact-persons .contact-person-wrapper .contact-person.contact-person-ornauer {
  margin-left: 25%;
}
@media (max-width: 991.98px) {
  .contact-persons .contact-person-wrapper .contact-person.contact-person-ornauer {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .contact-persons .contact-person-wrapper .contact-person.contact-person-schmal {
    margin-right: 5%;
  }
}
.contact-persons .contact-person-wrapper .contact-person .contact-person-image {
  width: 194px;
  height: 194px;
}
.contact-persons .contact-person-wrapper .contact-person .contact-person-information {
  display: inline-flex;
  flex-direction: column;
}
.contact-persons .contact-person-wrapper .contact-person .contact-person-information .contact-person-information-name {
  font-size: 18px;
  font-weight: 600;
  color: #9A458D;
}
.contact-persons .contact-person-wrapper .contact-person .contact-person-information .contact-person-information-position {
  font-size: 16px;
  font-weight: 400;
  color: #375097;
}
.contact-persons .contact-person-wrapper .contact-person .contact-person-information .contact-person-information-contact-button {
  width: 116px;
  margin-top: 20px;
}

.section-full-width {
  margin-top: 130px;
  margin-bottom: 170px;
}
.section-full-width.section-full-width-headline {
  margin-top: 90px;
  margin-bottom: 90px;
}
.section-full-width {
  font-size: 32px;
  font-weight: 400;
}
.section-full-width.bgr-light-dark-fade {
  padding: 80px 0;
}

.section {
  margin-bottom: 120px;
}
.section .section-text p {
  margin-top: 40px;
}

ol {
  margin: 0;
  padding: 0;
}
ol li {
  font-size: 12px;
  font-weight: 600;
}
ol li::marker {
  color: #9A458D;
  font-weight: 400;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.list-style li {
  text-indent: -23px;
  padding-left: 23px;
}
ul.list-style li:not(:last-of-type) {
  margin-bottom: 15px;
}
ul.list-style li:before {
  content: " ";
  display: inline-block;
  background-color: #9A458D;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 15px;
  margin-bottom: 3px;
}
ul li {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tile-wrapper {
  margin-top: 80px;
  display: grid;
}
@media (min-width: 992px) {
  .tile-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .tile-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .tile-wrapper {
    justify-content: center;
  }
}
.tile-wrapper {
  justify-content: space-between;
}
.tile-wrapper .tile {
  background-color: #ffffff;
  margin: 0 auto;
  width: calc(100% - 30px);
  height: 362px;
  padding: 42px 24px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
@media (max-width: 767.98px) {
  .tile-wrapper .tile {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .tile-wrapper .tile:nth-of-type(even) {
    margin-top: 60px;
  }
}
.tile-wrapper .tile .tile-title {
  font-size: 18px;
  font-weight: 500;
}
.tile-wrapper .tile .tile-text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
}
.tile-wrapper .tile .tile-text a {
  color: #9A458D;
  font-weight: 500;
  text-decoration: underline;
}

.order-process-wrapper {
  margin-top: 80px;
  display: grid;
}
@media (min-width: 992px) {
  .order-process-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .order-process-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .order-process-wrapper {
    justify-content: center;
  }
}
.order-process-wrapper {
  justify-content: space-between;
  gap: 40px;
}
.order-process-wrapper .order-process-item {
  max-width: 383px;
}
.order-process-wrapper .order-process-item .order-process-item-image {
  background-size: contain;
}
.order-process-wrapper .order-process-item .order-process-item-image.order-process-item-image-1 {
  width: 85px;
  height: 86px;
  background-image: url("../img/order_procress/step_1.svg");
}
.order-process-wrapper .order-process-item .order-process-item-image.order-process-item-image-2 {
  width: 77px;
  height: 86px;
  background-image: url("../img/order_procress/step_2.svg");
}
.order-process-wrapper .order-process-item .order-process-item-image.order-process-item-image-3 {
  width: 92px;
  height: 86px;
  background-image: url("../img/order_procress/step_3.svg");
}
.order-process-wrapper .order-process-item .order-process-item-title {
  font-size: 18px;
  color: #9A458D;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 30px;
}
.order-process-wrapper .order-process-item .order-process-item-description {
  font-size: 16px;
  font-weight: 400;
}

.publication-wrapper .publication-item:not(:last-of-type),
.product-information-wrapper .publication-item:not(:last-of-type) {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .publication-wrapper .publication-item,
  .product-information-wrapper .publication-item {
    display: flex;
  }
}
.publication-wrapper .publication-item .publication-item-content,
.product-information-wrapper .publication-item .publication-item-content {
  display: flex;
  flex-grow: 1;
}
.publication-wrapper .publication-item .publication-item-content .publication-image,
.product-information-wrapper .publication-item .publication-item-content .publication-image {
  display: block;
  width: 90px;
  height: 65px;
  flex-shrink: 0;
  background-image: url("../img/publication.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 992px) {
  .publication-wrapper .publication-item .publication-item-content .publication-description,
  .product-information-wrapper .publication-item .publication-item-content .publication-description {
    margin-left: 60px;
    margin-right: 90px;
  }
}
.publication-wrapper .publication-item .publication-item-content .publication-description,
.product-information-wrapper .publication-item .publication-item-content .publication-description {
  margin-left: 15px;
}
.publication-wrapper .publication-item .publication-item-content .publication-description .publication-description-title,
.product-information-wrapper .publication-item .publication-item-content .publication-description .publication-description-title {
  font-size: 22px;
  font-weight: 300;
}
.publication-wrapper .publication-item .publication-item-content .publication-description .publication-description-text,
.product-information-wrapper .publication-item .publication-item-content .publication-description .publication-description-text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
}
.publication-wrapper .publication-item .publication-order-button,
.product-information-wrapper .publication-item .publication-order-button {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  white-space: nowrap;
}

.product-information-wrapper .note {
  color: #9d9d9c;
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin-top: 10px;
}
.product-information-wrapper .publication-image {
  background-position: center right !important;
}
.product-information-wrapper .publication-image.product-information-image-1 {
  background-image: url("../img/products/product_1.svg") !important;
  height: 90px !important;
}
.product-information-wrapper .publication-image.product-information-image-2 {
  background-image: url("../img/products/product_2.svg") !important;
}
.product-information-wrapper .publication-image.product-information-image-3 {
  background-image: url("../img/products/product_3.svg") !important;
  height: 72px !important;
}
.product-information-wrapper .publication-image.product-information-image-4 {
  background-image: url("../img/products/product_4.svg") !important;
  height: 74px !important;
}
.product-information-wrapper .publication-description-title {
  color: #9A458D;
}

.fw-content-box {
  max-width: 696px;
  background-color: #ffffff;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  padding: 50px 35px;
}
.fw-content-box .fw-content-box-title {
  font-size: 32px;
  font-weight: 400;
}
.fw-content-box .fw-content-box-text {
  font-size: 16px;
  font-weight: 400;
  margin-top: 45px;
  margin-bottom: 50px;
}
.fw-content-box .fw-content-box-image {
  display: flex;
  justify-content: flex-end;
}

.section-accordion .section-accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms;
}
.section-accordion .section-accordion-content[aria-hidden=false] {
  grid-template-rows: 1fr;
}
.section-accordion .section-accordion-content > div {
  overflow: hidden;
}
.section-accordion .section-accordion-content > div p {
  margin-top: 40px;
  margin-bottom: 40px;
}
.section-accordion .section-accordion-content > div .footnote {
  list-style: decimal;
  padding-left: 15px;
  margin-bottom: 30px;
}
.section-accordion .section-accordion-content > div .footnote li {
  font-weight: 300;
}
.section-accordion .section-accordion-content > div .footnote li::marker {
  font-weight: 600;
}
.section-accordion .section-accordion-trigger {
  cursor: pointer;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}
.section-accordion .section-accordion-trigger:before {
  content: " ";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 4px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 21 21" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.7114 1.39652C11.7114 0.820228 11.2442 0.353046 10.668 0.353046C10.0917 0.353046 9.62447 0.820228 9.62447 1.39652L9.62447 9.54543L1.47556 9.54543C0.899268 9.54543 0.432086 10.0126 0.432087 10.5889C0.432086 11.1652 0.899267 11.6324 1.47556 11.6324L9.62447 11.6324V19.4255C9.62447 20.0018 10.0917 20.469 10.668 20.469C11.2442 20.469 11.7114 20.0018 11.7114 19.4255V11.6324L19.5046 11.6324C20.0808 11.6324 20.548 11.1652 20.548 10.5889C20.548 10.0126 20.0808 9.54543 19.5046 9.54543L11.7114 9.54543L11.7114 1.39652Z" fill="%23375097"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
.section-accordion .section-accordion-trigger span:before {
  content: "Mehr";
  display: inline-block;
}
.section-accordion .section-accordion-trigger[aria-expanded=true]:before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="3" viewBox="0 0 21 3" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0.432263 1.50001C0.432264 0.923708 0.899444 0.456527 1.47574 0.456527L19.5047 0.456527C20.081 0.456527 20.5482 0.923708 20.5482 1.50001C20.5482 2.0763 20.081 2.54348 19.5047 2.54348H1.47574C0.899445 2.54348 0.432264 2.0763 0.432263 1.50001Z" fill="%23375097"/></svg>');
  top: 11px;
}
.section-accordion .section-accordion-trigger[aria-expanded=true] span:before {
  content: "Weniger";
}

.login-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 40px;
  background-color: #ffffff;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.05));
  max-width: 800px;
  margin: 30px auto 0;
}
@media (max-width: 767.98px) {
  .login-frame {
    gap: 20px;
    padding: 40px 20px;
  }
}
.login-frame .login-frame-text {
  color: #9A458D;
  text-align: center;
  text-shadow: 0px 0px 20px #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 125% */
  max-width: 592px;
}
.login-frame .login-frame-button > button {
  appearance: none;
  border-radius: 30px;
  background-color: #9A458D;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  border: 0;
  color: #ffffff;
}

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