@charset "UTF-8";
/* MIXINS */
.btn-circle--secondary {
  display: flex;
  width: 80px;
  height: 80px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  background-size: 300% 100%;
  background-position: 100% 0;
  transition: background-position 0.6s ease;
  background-image: linear-gradient(105deg, #FAAC01 0%, #FAAC01 50%, #000000 50%, #000000 100%);
}
.btn-circle--secondary img {
  transition: filter 0.5s ease;
}
.btn-circle--secondary:hover {
  background-position: 0% 0;
}
.btn-circle--secondary:hover img {
  filter: brightness(0);
}
.reviews-grid {
  width: 100%;
  margin: auto;
  /*--------------------------------------------- Allgemeine Stylings -------------------------------------*/
}
.reviews-grid .blur-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  filter: blur(5px);
  z-index: 1;
}
.reviews-grid .blur-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.reviews-grid__wrapper {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  grid-template-areas: "intro img short" "txt toplist toplist";
  /*--------------------------------------------- Intro -------------------------------------*/
  /*--------------------------------------------- Bild-Review -------------------------------------*/
  /*--------------------------------------------- Kurz-Review -------------------------------------*/
  /*--------------------------------------------- Text-Review -------------------------------------*/
  /*--------------------------------------------- Top-Review + Check-Liste -------------------------------------*/
}
.reviews-grid__wrapper .review {
  display: block;
  position: relative;
  border-radius: 0;
}
.reviews-grid__wrapper .info {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.reviews-grid__wrapper .info-image {
  width: 100%;
  max-width: 60px;
  height: 100%;
  max-height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.reviews-grid__wrapper .info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews-grid__wrapper .info-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.reviews-grid__wrapper .info-text .name {
  font-weight: 600;
  line-height: 1.3;
}
.reviews-grid__wrapper .info-text .position {
  line-height: 1.3;
}
.reviews-grid__wrapper .intro {
  grid-area: intro;
}
.reviews-grid__wrapper .intro .seo-headline__headline {
  margin-top: 11px;
}
.reviews-grid__wrapper .intro .seo-headline__headline .smx-headline {
  font-size: 44px;
  line-height: 45px;
}
.reviews-grid__wrapper .intro .content {
  margin-top: 17px;
  font-size: 18px;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews-grid__wrapper .intro .link {
  display: flex;
  margin-top: 25px;
  margin-left: 20px;
  flex-direction: row;
  gap: 0;
}
.reviews-grid__wrapper .intro .link .info-images {
  display: flex;
  flex-direction: row;
  gap: 0;
}
.reviews-grid__wrapper .intro .link .info-images .info-image {
  margin-left: -20px;
  max-width: 80px;
  max-height: 80px;
}
.reviews-grid__wrapper .intro .link .info-link {
  margin-left: -20px;
  width: 100%;
  height: 100%;
  max-width: 80px;
  max-height: 80px;
  padding: 24px;
}
.reviews-grid__wrapper .intro .link .info-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  rotate: -25deg;
}
.reviews-grid__wrapper .intro .btn__wrapper {
  margin-top: 68px;
  margin-bottom: 10px;
}
.reviews-grid__wrapper .intro .btn__wrapper .btn {
  width: 100%;
}
.reviews-grid__wrapper .image-review {
  margin-bottom: -136px;
  grid-area: img;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.reviews-grid__wrapper .image-review .blur-overlay {
  clip-path: polygon(57% 25%, 0% 55%, 0% 100%, 100% 100%, 100% 45%);
  z-index: 1;
}
.reviews-grid__wrapper .image-review__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
  z-index: 3;
}
.reviews-grid__wrapper .image-review__wrapper .content__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  height: 74%;
  padding: 80px 33px 76px 52px;
  z-index: 2;
}
.reviews-grid__wrapper .image-review__wrapper .content__wrapper .logo-image {
  display: flex;
  justify-content: center;
  margin-left: 10%;
  margin-bottom: 40px;
  max-height: 90px;
}
.reviews-grid__wrapper .image-review__wrapper .content__wrapper .text {
  font-size: 24px;
  line-height: 33px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}
.reviews-grid__wrapper .image-review__wrapper .content__wrapper .info {
  margin-top: 20px;
  position: relative;
  width: 100%;
}
.reviews-grid__wrapper .image-review__wrapper .content__wrapper .info .info-icon {
  position: absolute;
  right: 0;
}
.reviews-grid__wrapper .image-review__wrapper .content__wrapper .info .info-image {
  width: 50px;
  height: 50px;
}
.reviews-grid__wrapper .image-review__wrapper .content__wrapper .info .info-text .name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
.reviews-grid__wrapper .image-review__wrapper .content__wrapper .info .info-text .position {
  font-size: 15px;
  color: #ffffff;
}
.reviews-grid__wrapper .short-review {
  margin-bottom: -136px;
  margin-top: 74px;
  grid-area: short;
  width: calc(100% - 50px);
}
.reviews-grid__wrapper .short-review .content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.reviews-grid__wrapper .short-review .content-wrapper .image-overlay {
  position: absolute;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.reviews-grid__wrapper .short-review .content-wrapper .logo-image {
  position: absolute;
  left: 30px;
  top: 30px;
  max-width: 172px;
  z-index: 4;
}
.reviews-grid__wrapper .short-review .content-wrapper .short-review__wrapper {
  position: relative;
  display: flex;
  padding: 60px 35px 40px 35px !important;
  height: 100%;
  flex-direction: column;
  justify-content: end;
  gap: 20px;
  background: linear-gradient(190deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.55) 65%);
  z-index: 2;
}
.reviews-grid__wrapper .short-review .content-wrapper .short-review__wrapper .headline {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: #ffffff;
}
.reviews-grid__wrapper .short-review .content-wrapper .short-review__wrapper .text {
  font-size: 16px;
  line-height: 25px;
  color: #ffffff;
}
.reviews-grid__wrapper .short-review .content-wrapper .short-review__wrapper .info {
  color: #ffffff;
}
.reviews-grid__wrapper .short-review .short-review-icon {
  position: absolute;
  right: -48px;
  top: 25%;
  transform: translateY(-25%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 120px;
  background-color: #000000;
  clip-path: polygon(0% 0%, 92% 5%, 100% 92%, 0% 100%);
  z-index: 4;
}
.reviews-grid__wrapper .text-review {
  grid-area: txt;
  background-color: #FAAC01;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 50px);
  align-self: end;
}
.reviews-grid__wrapper .text-review__wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  gap: 25px;
  position: relative;
  padding: 35px 34px 56px 42px;
  color: #ffffff;
}
.reviews-grid__wrapper .text-review__wrapper .logo-image {
  width: 100%;
  height: auto;
  max-width: 210px;
  max-height: 74px;
}
.reviews-grid__wrapper .text-review__wrapper .logo-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.reviews-grid__wrapper .text-review__wrapper .text {
  color: #ffffff;
}
.reviews-grid__wrapper .text-review__wrapper .info {
  margin-top: 30px;
}
.reviews-grid__wrapper .text-review__wrapper .info .info-text .name {
  color: #ffffff;
}
.reviews-grid__wrapper .text-review__wrapper .info .info-text .position {
  color: #ffffff;
}
.reviews-grid__wrapper .text-review__wrapper .icon {
  position: absolute;
  right: 35px;
  bottom: 38px;
  width: 100%;
  max-width: 220px;
  height: auto;
}
.reviews-grid__wrapper .top-review.checklist {
  grid-area: toplist;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: end;
  /*---------------------------------Top-Review --------------------------*/
  /*--------------------------------- Check-Liste --------------------------*/
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0;
  background-color: #F0F0F0;
  border-radius: 0;
  width: 75%;
  height: 100%;
  max-height: calc(100% - 136px);
  aspect-ratio: 1.35;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper.gray_bg {
  background-color: #ffffff;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px 20px 40px 50px;
  flex-basis: 70%;
  gap: 10px;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left .signature-image {
  width: 100%;
  max-width: 230px;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left .logo-image {
  max-width: 165px;
  max-height: 36px;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left .logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left .headline {
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left .headline .marked {
  display: inline-block;
  color: #ffffff;
  background-color: #000000;
  padding-left: 10px;
  padding-right: 10px;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-right {
  position: relative;
  width: 100%;
  flex-basis: 30%;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-right .cards-bg {
  position: absolute;
  width: 100%;
  max-width: 326px;
  height: 100%;
  max-height: 233px;
  top: 54px;
  margin-right: 77px;
  z-index: 0;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-right .cards-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 3;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-right .top-image {
  position: absolute;
  bottom: 0;
  left: -50px;
  width: 145%;
  height: 105%;
  overflow: visible;
}
.reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-right .top-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.reviews-grid__wrapper .top-review.checklist .checklist__wrapper {
  position: relative;
  width: 25%;
  height: 100%;
  max-height: calc(100% - 136px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 40px;
}
.reviews-grid__wrapper .top-review.checklist .checklist__wrapper .video {
  display: flex;
  flex-direction: column;
}
.reviews-grid__wrapper .top-review.checklist .checklist__wrapper .video .headline {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.reviews-grid__wrapper .top-review.checklist .checklist__wrapper .video .btn-text {
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 600;
  transform-origin: bottom;
  transform: rotate(-90deg);
  position: absolute;
  top: 50px;
}
.reviews-grid__wrapper .top-review.checklist .checklist__wrapper .video .video-play-btn {
  margin-left: 45px;
  margin-bottom: 45px;
}
.reviews-grid__wrapper .top-review.checklist .checklist__wrapper .video .video-play-btn img {
  margin-left: 5px;
  margin-bottom: 2px;
}
.reviews-grid__wrapper .top-review.checklist .checklist__wrapper .info {
  flex-direction: column;
  gap: 0;
}
.reviews-grid__wrapper .top-review.checklist .checklist__wrapper .info .name {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}
.reviews-grid__wrapper .top-review.checklist .checklist__wrapper .info .position {
  margin-top: 6px;
  font-size: 18px;
  line-height: 34px;
}
.reviews-grid #video-popup {
  display: none;
  max-width: 900px;
  width: 90vw;
  margin: 0 auto;
}
.reviews-grid #video-popup video {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
/*-------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------- Responsivität ------------------------------------------*/
@media (max-width:1530px) {
  .reviews-grid__wrapper .short-review__wrapper .text {
    font-size: 28px;
    line-height: 1.5;
  }
  .reviews-grid__wrapper .short-review__wrapper .icon {
    right: -29px;
    width: 120px;
    height: 120px;
  }
  .reviews-grid__wrapper .top-review.checklist {
    gap: 20px;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left {
    padding: 40px 0 40px 40px;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-right .top-image {
    max-height: 108%;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper .checklist-icon {
    max-width: 55px;
    max-height: 55px;
    margin-bottom: 0;
  }
}
@media (max-width:1399px) {
  .reviews-grid__wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "intro img" "txt short" "toplist toplist";
  }
  .reviews-grid__wrapper .intro {
    height: calc(100% - 136px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .reviews-grid__wrapper .image-review {
    margin-bottom: 0;
    aspect-ratio: 0.9;
  }
  .reviews-grid__wrapper .text-review {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: -136px;
    height: 100%;
    aspect-ratio: unset;
    min-height: 420px;
  }
  .reviews-grid__wrapper .text-review .text-review__wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
  .reviews-grid__wrapper .text-review .text-review__wrapper .icon {
    top: unset;
    right: 66px;
    bottom: 35px;
    width: 220px;
    height: auto;
  }
  .reviews-grid__wrapper .short-review {
    margin-top: 0;
    margin-bottom: 0;
    min-height: 320px;
  }
  .reviews-grid__wrapper .short-review .short-review__wrapper {
    padding-bottom: 65px;
  }
  .reviews-grid__wrapper .short-review .short-review__wrapper .info {
    margin-bottom: 20px;
  }
  .reviews-grid__wrapper .short-review .short-review__wrapper .icon {
    position: absolute;
    right: 25px;
    top: unset;
    transform: unset;
    width: 126px;
    height: 126px;
    transform: unset;
    bottom: -62px;
  }
  .reviews-grid__wrapper .top-review.checklist {
    align-items: flex-start;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper {
    max-width: unset;
    max-height: unset;
    flex-basis: unset;
    max-height: unset;
    min-height: 320px;
    aspect-ratio: 1.9;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left {
    padding-top: 54px;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper {
    max-height: max-content;
    flex-basis: 35%;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper .checklist-icon {
    margin-bottom: 20px;
  }
}
@media (max-width: 1300px) {
  .reviews-grid__wrapper .intro {
    height: 100%;
  }
  .reviews-grid__wrapper .text-review {
    margin-top: 0;
  }
}
@media (max-width:1199px) {
  .reviews-grid__wrapper .image-review__wrapper .content__wrapper {
    padding: 50px 30px 76px 30px;
  }
  .reviews-grid__wrapper .image-review__wrapper .content__wrapper .logo-image {
    max-height: 70px;
  }
  .reviews-grid__wrapper .image-review__wrapper .content__wrapper .text {
    font-size: 22px;
  }
}
@media (max-width:991px) {
  .reviews-grid__wrapper {
    padding-bottom: 136px;
  }
  .reviews-grid__wrapper .intro .btn__wrapper .btn {
    padding: 20px 32px;
  }
  .reviews-grid__wrapper .image-review {
    aspect-ratio: unset;
  }
  .reviews-grid__wrapper .short-review .short-review-icon {
    width: 90px;
    height: 100px;
  }
  .reviews-grid__wrapper .top-review.checklist {
    flex-direction: column;
    gap: 30px;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper {
    width: 100%;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper {
    width: 100%;
    flex-direction: row;
    align-items: start;
    gap: 30px;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper .info {
    margin-top: 10px;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper .video {
    flex-direction: row;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper .video .video-play-btn {
    margin-left: 25px;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper .video .btn-text {
    top: 40px;
    transform: none;
  }
}
@media (max-width:767px) {
  .reviews-grid__wrapper {
    padding-bottom: 0;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "img" "short" "txt" "toplist";
  }
  .reviews-grid__wrapper .image-review {
    aspect-ratio: 0.9;
  }
  .reviews-grid__wrapper .image-review .content__wrapper {
    padding-left: 30px;
  }
  .reviews-grid__wrapper .short-review {
    aspect-ratio: 0.9;
  }
  .reviews-grid__wrapper .short-review .short-review__wrapper .icon {
    width: 90px;
    height: 90px;
    bottom: -32px;
  }
  .reviews-grid__wrapper .text-review {
    height: 100%;
    min-height: unset;
  }
  .reviews-grid__wrapper .text-review .text-review__wrapper {
    padding: 60px 30px;
  }
  .reviews-grid__wrapper .top-review.checklist {
    margin-top: 0;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper {
    position: relative;
    aspect-ratio: unset;
    flex-basis: unset;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left {
    width: 100%;
    flex-basis: unset;
    padding: 60px 30px;
    gap: 30px;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left .text {
    max-width: 60%;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left .signature-image {
    max-width: 120px;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-left .logo-image {
    max-width: 120px;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-right .top-image {
    width: 100%;
    height: 100%;
    right: -20px;
    left: unset;
    bottom: 0;
  }
  .reviews-grid__wrapper .top-review.checklist .top-review__wrapper .col-right .top-image img {
    object-fit: contain;
    object-position: bottom right;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper {
    padding: 0 !important;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper .video .headline {
    max-width: 80%;
    font-size: 24px;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper .video .video-play-btn {
    margin-left: 30px;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper .video .btn-text {
    top: 40px;
    font-size: 20px;
  }
  .reviews-grid__wrapper .top-review.checklist .checklist__wrapper .info {
    margin-top: 0;
  }
}
@media (max-width: 510px) {
  .reviews-grid__wrapper .checklist__wrapper {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: center !important;
  }
  .reviews-grid__wrapper .checklist__wrapper .video {
    position: relative;
    order: 2;
  }
  .reviews-grid__wrapper .checklist__wrapper .video .video-play-btn {
    margin-left: 15px !important;
  }
  .reviews-grid__wrapper .checklist__wrapper .info {
    order: 1;
  }
  .reviews-grid__wrapper .checklist__wrapper .info .info-text {
    gap: 0;
    text-align: center;
  }
}
/* animation */
.reviews-grid .video-play-btn {
  position: relative;
  z-index: 2;
}
.reviews-grid .video-play-btn:before {
  content: "";
  animation: pulse-border 1500ms ease-out infinite;
  position: absolute;
  height: 68px;
  width: 68px;
  top: 50%;
  left: 50%;
  background-color: #000;
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
}
.reviews-grid .video-play-btn img {
  z-index: 1;
}
