.reviewColumn {
  position: relative;
  z-index: 5;
  background-color: var(--Protekta-graybg4);
  padding-bottom: 100px;
}

.reviewColumn_Block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto;
  max-width: 1280px;
  background: var(--Vit);
  border-radius: 20px;
  width: 95%;
  max-width: 1280px;
  padding-bottom: 100px;
  gap: 20px;
}

.overlap {
  position: relative;
  top: -60px;
}

.no-overlap {
  position: relative;
  top: 100px;
}

.reviewColumn_Block h2 {
  text-align: center;
  font-family: "Inter";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  /* 150% */
  letter-spacing: 0.1px;
  text-transform: uppercase;
  padding-top: 30px;
  margin: 0;
}

.reviewColumn_Block h3 {
  text-align: left;
  color: var(--Protekta-svart);
  font-family: "Inter";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px;
  /* 140% */
  max-width: 825px;
  margin: 35px 0px 0px 0px;
}

.company-logos {
  margin: 100px auto 65px auto;
  display: flex;
  width: 95%;
  max-width: 1060px;
  justify-content: center;
  gap: 89px;
  /* Default: Center images if no animation */
}

.company-logos img {
  height: 50px;
  /* Adjust image height */
  width: auto;
  /* Maintain aspect ratio */
  flex-shrink: 0;
  /* Prevent shrinking */
  padding: 30px;
  background: var(--Protekta-bgDark);
  border-radius: 8px;
}

.reviews {
  display: grid;
  grid-template-rows: 80px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "a a"
    "b c";
  max-width: 1060px;
  width: 95%;
  column-gap: 85px;
  min-height: 350px;
}

.review-container {
  grid-area: c;
}

.quote-title {
  display: flex;
  justify-content: left;
  text-align: left;
  max-width: 1060px;
  grid-area: a;
}

.quote-title h3 {
  text-align: left;
  justify-self: left;
  color: var(--Protekta-svart);
  font-family: "Inter";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 77px;
  /* 256.667% */
  margin: 0;
}

.review-column {
  margin: auto;
}

.review-content {
  gap: 20px;
  display: flex;
  flex-direction: row;
}

.quote {
  color: var(--Protekta-svart);
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  /* 112.5% */
  letter-spacing: 0.1px;
}

.quote p {
  margin: 0;
  padding: 0;
  text-align: left;
}

.author {
  color: var(--Protekta-svart);
  font-family: "Inter";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 166.667% */
}

.author p {
  margin-top: 21px;
}

.arrows {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 22px;
  grid-area: b;
}

.arrow {
  display: inline-block;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.arrow:hover {
  background-color: var(--Protekta-whiteHover);
}

.arrow:active {
  background-color: var(--Protekta-whiteActive);
}

@media (max-width: 1200px) {
  .reviewColumn_Block {
    padding-bottom: 35px;
    margin-bottom: 70px;
  }

  .reviewColumn_Block h3 {
    font-family: "Inter";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    /* 163.636% */
    max-width: 400px;
    margin-top: 6px;
  }

  .reviews {
    column-gap: 0px;
    max-width: 80%;
  }

  .company-logos {
    gap: unset;
    justify-content: space-evenly;
    margin: 41px auto 34px auto;
  }
}

@media (max-width: 1000px) {
  .company-logos img:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 768px) {
  .reviewColumn_Block {
    width: 90%;
  }

  .quote-title {
    justify-content: center;
  }

  .reviewColumn_Block>h3,
  .quote-title>h3 {
    text-align: center;
    font-size: 22px;
    max-width: 95%;
    padding: 0px 25px;
  }

  .reviews {
    row-gap: 20px;
    max-width: 95%;
    grid-template-areas:
      "a a"
      "b b"
      "c c";
  }

  .arrows {
    align-items: flex-start;
  }

  .quote-sign {
    padding-left: 20px;
  }

  .quote {
    padding-right: 40px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    /* 150% */
    letter-spacing: 0.1px;
  }

  .author {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 166.667% */
  }

  .company-logos {
    width: 90%;
    margin: 70px auto 50px auto;
  }

  .company-logos {
    justify-content: center;
  }

  .company-logos img:nth-child(n + 2) {
    display: none;
  }
}