/* Left in for compability reasons */
/* Background transitions */
/* Bild Filter */
:root {
  --header-height: 112px;
  --header-padding-bottom: 16px;
  --sticky-top: calc(
    var(--header-height) + var(--sticky-promobar-height)
    );
  --container-padding: 16px;
  --sticky-promobar-height: 0.01px;
  --header-breakpoint: 1532px;
  --media-center-sidebar-width: 380px;
  --spacer-sx: 20px;
  --spacer-s: 30px;
  --spacer-m: 50px;
  --spacer-l: 75px;
}
:root:has(.sticky_promobar:not(.hide)) {
  --sticky-promobar-height: 48px;
}
@media (min-width: 768px) {
  :root {
    --container-padding: 32px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-padding: 32px;
  }
}
@media (min-width: 1532px) {
  :root {
    --header-padding-bottom: 32px;
    --header-height: 112px;
  }
}
@media (min-width: 1500px) {
  :root {
    --media-center-sidebar-width: 450px;
  }
}
@media (min-width: 768px) {
  :root {
    --spacer-sx: 32px;
    --spacer-s: 65px;
    --spacer-m: 80px;
    --spacer-l: 180px;
  }
}

/* MIXINS */
.swbt-override--black .nist_section:after {
  background-color: #0C2F48;
}

.nist_section {
  position: relative;
  height: 100vh;
}
.nist_section .nist_section_bg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 100vh;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  grid-template-columns: minmax(15px, 1fr) minmax(0, 470px) minmax(0, 970px) minmax(15px, 1fr);
}
.nist_section .nist_section_bg .bg_wrapper {
  padding-top: 180px;
  padding-bottom: 180px;
  grid-row-start: 1;
  grid-column-start: 1;
  grid-row-end: 2;
  grid-column-end: 3;
}
.nist_section .nist_section_bg .bg_wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top left;
}
.nist_section .nist_section_bg .text_wrapper {
  grid-row-start: 1;
  grid-column-start: 3;
  grid-row-end: 2;
  grid-column-end: 4;
  padding-left: 30px;
  position: relative;
}
.nist_section .nist_section_bg .text_wrapper .text_wrapper_inner {
  position: absolute;
  bottom: 50%;
  padding-bottom: 65px;
}
.nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .text {
  line-height: 30px;
}
.nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls {
  display: none;
  position: relative;
  height: 60px;
}
.nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls .nist_slider_buttons {
  display: flex;
  position: absolute;
  right: 0;
}
.nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls .nist_slider_buttons .nist_slider_prev {
  height: 60px;
  width: 60px;
  padding: 15px;
  margin-right: 30px;
}
.nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls .nist_slider_buttons .nist_slider_prev img {
  height: 30px;
  width: 30px;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(225deg) brightness(105%) contrast(103%);
}
.nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls .nist_slider_buttons .nist_slider_next {
  height: 60px;
  width: 60px;
  padding: 15px;
  margin-right: -20px;
}
.nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls .nist_slider_buttons .nist_slider_next img {
  transform: rotate(180deg);
  height: 30px;
  width: 30px;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(225deg) brightness(105%) contrast(103%);
}
.nist_section .nist_slieder_wrapper {
  position: absolute;
  top: 50%;
  right: calc(0px + (100vw - 1500px) / 2);
}
.nist_section .nist_slieder_wrapper .iconboxes--container {
  display: flex;
  column-gap: 35px;
}
.nist_section .nist_slieder_wrapper .iconboxes--container a.iconbox--single:hover {
  text-decoration: unset;
}
.nist_section .nist_slieder_wrapper .iconboxes--container a.iconbox--single:hover .iconbox--headline {
  text-decoration: underline;
}
.nist_section .nist_slieder_wrapper .iconboxes--container .iconbox--single {
  background: #0C2F48;
  width: 340px;
  padding: 35px;
  padding-bottom: 70px;
  position: relative;
}
.nist_section .nist_slieder_wrapper .iconboxes--container .iconbox--single .iconbox--single__inner {
  text-align: center;
}
.nist_section .nist_slieder_wrapper .iconboxes--container .iconbox--single .iconbox--single__inner img {
  height: 100px;
  margin-bottom: 5px;
}
.nist_section .nist_slieder_wrapper .iconboxes--container .iconbox--single .iconbox--single__inner .iconbox--headline {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.nist_section .nist_slieder_wrapper .iconboxes--container .iconbox--single .iconbox--single__inner .iconbox--content {
  line-height: 30px;
}
.nist_section .nist_slieder_wrapper .iconboxes--container .iconbox--single .iconbox--single__inner:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
}
.nist_section .nist_slieder_wrapper .iconboxes--container .iconbox--single__inner:after {
  background-color: #DEDC00 !important;
}

.nist_section:after {
  content: "";
  position: absolute;
  height: 100%;
  width: calc((100vw - 1500px) / 2);
  top: 0;
  right: 0;
  background-color: #162E46;
}

@media (max-width: 1530px) {
  .nist_section:after {
    width: 15px;
  }
}
@media (max-width: 1530px) {
  .nist_section .nist_slieder_wrapper {
    right: 15px !important;
  }
}
@media (max-width: 766px) {
  .nist_section .nist_section_bg .text_wrapper .text_wrapper_inner {
    padding-bottom: 35px;
  }
  .nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .text {
    padding-bottom: 35px;
  }
  .nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls {
    display: block;
  }
  .nist_section .nist_slieder_wrapper {
    right: unset !important;
    left: 0;
    width: 100%;
    /* the slides */
    /* the parent */
  }
  .nist_section .nist_slieder_wrapper .iconboxes--container {
    display: block;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .nist_section .nist_slieder_wrapper .slick-slide {
    margin: 0 27px;
  }
  .nist_section .nist_slieder_wrapper .slick-list {
    margin: 0 -27px;
  }
}
@media (max-width: 600px) {
  .nist_section {
    height: 1000px;
  }
  .nist_section .nist_section_bg .text_wrapper .text_wrapper_inner {
    top: 0%;
  }
  .nist_section .nist_slieder_wrapper {
    top: 45%;
  }
  .nist_section .nist_section_bg {
    grid-template-columns: minmax(15px, 1fr) minmax(0, 970px) minmax(15px, 1fr);
  }
  .nist_section .nist_section_bg .bg_wrapper {
    display: none;
  }
  .nist_section .nist_section_bg .text_wrapper {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-column-end: 3;
  }
}
@media (max-height: 861px) {
  .nist_section .nist_slieder_wrapper {
    top: unset !important;
    bottom: 30px;
  }
}
.nist_section .nist_section_bg .bg_wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-height: 1080px) {
  .nist_section .nist_section_bg .bg_wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .nist_section .nist_section_bg {
    grid-column-gap: 0;
    grid-template-rows: 1fr;
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
  }
  .nist_section .nist_section_bg .text_wrapper {
    padding-left: 0;
  }
  .nist_section .nist_slieder_wrapper {
    position: relative;
    top: unset;
    left: unset;
  }
  .nist_section .nist_section_bg .text_wrapper .text_wrapper_inner {
    position: relative;
  }
  .nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls .nist_slider_buttons {
    position: relative;
    justify-content: flex-end;
    gap: 20px;
  }
  .nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls .nist_slider_buttons .nist_slider_next {
    margin-right: 0;
    cursor: pointer;
  }
  .nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls .nist_slider_buttons .nist_slider_prev {
    margin-right: 0;
    cursor: pointer;
  }
  .nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls .nist_slider_buttons .nist_slider_next.slick-disabled img {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(225deg) brightness(70%) contrast(103%);
  }
  .nist_section .nist_section_bg .text_wrapper .text_wrapper_inner .nist-slider-controlls .nist_slider_buttons .nist_slider_prev.slick-disabled img {
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(225deg) brightness(70%) contrast(103%);
  }
}
@media (max-width: 576px) {
  .nist_section .iconbox--image {
    display: flex;
    justify-content: center;
  }
}
.nist_section .iconbox--image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.nist_section .iconbox--image:before {
  content: "";
  height: 105px;
  width: 105px;
  background: linear-gradient(90deg, #DEDC00 0%, #FCFCA8 100%);
  position: absolute;
  left: 50%;
  transform: translatex(-50%) translatey(-50%);
  border-radius: 50%;
  top: 50%;
  z-index: 1;
}
.nist_section .iconbox--image img {
  position: relative;
  z-index: 2;
  height: 83px;
  width: 83px;
}

.nist_section .nist_slieder_wrapper .iconboxes--container .iconbox--single .iconbox--single__inner img {
  margin-bottom: 0;
}
/*# sourceMappingURL=nist.css.map */
