.reviews {
  margin-top: 100px;
  color: #ffffff;
}

.reviews__container {
  padding: 60px 40px;
  background-color: #434b36;
}

.reviews__container--heading--left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}
.reviews__container--heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews__container--heading__buttons {
  display: flex;
  align-items: center;
}

.reviews__container--heading__buttons--addreview {
  align-items: center;
  display: flex;
  gap: 20px;
  font-size: 18px;
  color: #ffffff;
  border: 1px solid white;
  padding: 20px 60px;
  transition: all 0.4s;
  font-weight: 500;
  cursor: pointer;
}
.reviews__container--heading__buttons--addreview:hover {
  background-color: #c3cdb2;
  color: #434b36;
}
.reviews__container--heading__buttons--pagination,
.reviews__container__social--pagination {
  display: flex;
  gap: 12px;
  margin-left: 20px;
}
.reviews__container--heading__buttons--pagination--left,
.reviews__container--heading__buttons--pagination--right,
.reviews__container__social--pagination--left,
.reviews__container__social--pagination--right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 62px;
  width: 62px;
  border: 1px solid white;
  transition: all 0.4s;
  cursor: pointer;
}
.reviews__container--heading__buttons--pagination--left:hover,
.reviews__container--heading__buttons--pagination--right:hover,
.reviews__container__social--pagination--left:hover,
.reviews__container__social--pagination--right:hover {
  background-color: #c3cdb2;
  color: #434b36;
}

.reviews-slider,
.reviews__social--slider {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  height: auto;
  align-self: stretch;
}
.slider-reviews {
  height: auto;
  align-self: stretch;
}

.reviews__text__container {
  display: flex;
  flex-direction: column;
  background: #f0f1ee;
  height: 100%;
}

.reviews__text__container--heading {
  background-color: black;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
}
.reviews__text__container--heading__left {
  display: flex;
  align-items: center;
  color: #ffffff;
  gap: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.reviews__text__container--heading__right--button {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
}

.reviews__text__container--heading__right--button:hover {
  opacity: 0.5;
}
.reviews__text__container--heading__right--button:hover
  + .additional__information {
  display: flex;
}

.reviews__text__container--bottom {
  padding: 20px;
  background: #f0f1ee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.reviews__text__container--bottom__down {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.reviews__text__container--bottom__down p {
  color: rgba(0, 0, 0, 0.37);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.reviews__text__container--bottom__content__heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: black;
}
.reviews__text__container--bottom__content__heading h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.reviews__text__container--bottom__content__review {
  margin-top: 30px;
}
.reviews__text__container--bottom__content__review p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.reviews__text__container {
  position: relative;
}
.additional__information {
  position: absolute;
  padding: 10px;
  background-color: #434b36;
  font-size: 12px;
  max-width: 280px;
  right: 0px;
  top: 60px;
  display: none;
}

.reviews__text__container--bottom__content__review--img {
  aspect-ratio: 100/56;
  overflow: hidden;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
.reviews__text__container--bottom__content__review--img img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.reviews__container__social {
  margin-top: 40px;
}
.reviews__container__social--heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.reviews__container__social--heading h3 {
  color: #fff;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
}
.fb_iframe_widget iframe,
.fb_iframe_widget_fluid span {
  width: 100% !important;
  max-width: 100%;
}

@media screen and (max-width: 1024px) {
  .reviews__container--heading {
    align-items: flex-end;
  }
  .reviews__container--heading__buttons--pagination--left,
  .reviews__container--heading__buttons--pagination--right {
    height: 40px;
    width: 40px;
  }
  .reviews__container--heading__buttons--addreview {
    font-size: 14px;
    padding: 12px 20px;
  }
  .reviews__container__social--pagination--right,
  .reviews__container__social--pagination--left {
    height: 40px;
    width: 40px;
  }
}

@media screen and (max-width: 768px) {
  .reviews__container {
    padding: 40px 20px;
  }
  .reviews__text__container--bottom__content__review {
    margin-top: 20px;
  }
  .reviews__text__container--bottom__content__review p {
    font-size: 14px;
  }
  .reviews__container--heading {
    flex-wrap: wrap;
    gap: 20px;
  }
  .reviews__container--heading__buttons {
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .reviews__container__social--heading h3 {
    font-size: 16px;
  }
}
