.card {
  border: solid 2px aliceblue;

  padding: 2rem;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  box-shadow: 10px 10px 5px #c2561848;

  cursor: pointer;
}

.under {
  color: aliceblue;
}

.popup {
  display: flex;

  flex-direction: column;

  width: 420px;

  padding: 1.5rem;

  background-color: #f27e4d;

  color: #fff;

  position: relative;

  top: 20%;

  height: auto;

  max-height: 400px;
}

.popup p {
  color: #fff;
}

.popup a {
  color: #fff;

  text-transform: uppercase;

  border: 2px solid #fff;

  padding: 10px 15px;

  cursor: pointer;
}

.popbackground {
  width: 100%;

  height: 100%;

  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  background-color: rgba(0, 0, 0, 0.25);

  position: fixed;

  display: none;

  justify-content: center;

  cursor: pointer;

  z-index: 999999999;
}

.popup__cta {
  display: flex;

  flex-direction: row;

  align-items: center;

  height: 55px;

  width: 100%;
}

.headline {
  margin: 0;
}

.review-container {
  display: flex;

  flex-direction: column;

  width: 100%;

  max-width: 1400px;

  margin: 80px auto;

  align-items: center;

  justify-content: space-between;

  text-align: center;
}

.review-container p {
  max-width: 1200px;
}

.review-container .green-link {
  color: #3e9b2e;

  display: flex;

  align-items: baseline;

  text-decoration: none;

  margin-top: 30px;

  transition: all 0.2s ease;
}

.review-container .green-link:hover i {
  margin-left: 15px;
}

.review-container .green-link i {
  font-size: 10px;

  margin-left: 10px;

  transition: all 0.5s ease;
}

.review-container .review-card-wrapper {
  display: flex;

  flex-flow: row wrap;

  width: 100%;

  margin: 80px 0;
}

.review-container .review-card-wrapper .review-card {
  width: 32%;

  padding: 1rem;

  border-radius: 10px;

  box-shadow: 0px 20px 40px 0px rgb(0 0 0 / 16%);

  box-sizing: border-box;

  margin: 0 0.5rem;
}

.review-container .review-card-wrapper .review-card .review-stars {
  color: #3e9b2e;

  padding: 2rem 0 1rem 0;

  font-size: 1.5rem;
}

.review-container .review-card-wrapper .review-card p {
  padding: 1rem 1.5rem;
  text-align: center !important;
  font-size: 1rem;

  text-align: left;
}

.review-container .review-card-wrapper .review-card .review-divider {
  width: 40%;

  height: 1px;

  background-color: #cfcfcf;

  margin: 0 auto;
}

.review-container .review-card-wrapper .review-card .review-name h3 {
  margin-top: 30px;

  margin-bottom: 0;

  font-size: 1.15rem;
  text-align: center;
}

.review-container .review-card-wrapper .review-card .review-name h3::after {
  display: none;
}

.review-container .review-card-wrapper .review-card .review-name p {
  margin-top: 0;
  text-align: center;
  padding-top: 5px;
}

@media screen and (max-width: 1024px) {
  .review-container .review-card-wrapper .review-card {
    width: 31%;
  }
}

@media screen and (max-width: 600px) {
  .review-container .review-card-wrapper .review-card {
    width: 100%;

    margin: 1rem 0;
  }
}
