/*===========================================*/
/*== ==FOLD 1 - Header Styling - Desktop== ==*/
/*===========================================*/
.fold-1-header {
  position: relative;
  background: rgb(175, 9, 49);
  background: linear-gradient(
    118deg,
    rgb(180, 10, 49) 0%,
    rgb(128, 4, 33) 87%,
    rgb(94, 1, 23) 100%
  );
  padding: 50px 0 25px 0;
  z-index: 1;
}

.mobile-help {
  display: none;
}

.fold-1-header::before {
  content: "";
  background: url(/wp-content/uploads/2023/02/texture-light.png);
  position: absolute;
  background-repeat: no-repeat;
  background-position: right;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hidden {
  display: none;
}

.fold-1-header .banner {
  text-align: center;
  z-index: 3;
}

.fold-1-header .title {
  font-size: 42px;
  color: var(--text-light);
  margin: 0;
  padding: 0;
  z-index: 5;
}

/* Fold 2 - Testimonials */
.fold-2 .readmore {
  width: 300px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  padding: 50px 0;
}

.testimonial-item {
  position: relative;
  flex: 1 1 calc(100% / 3);
  box-shadow: 0 0 4px #a1a1a1;
  border-radius: 16px;
  padding: 25px;
  overflow: hidden;
}

.view-testimonial {
  max-height: none !important;
}

.testimonial-item::before {
  content: "\f10e";
  font-family: "FontAwesome";
  color: var(--text-red);
  font-size: 48px;
  opacity: 0.5;
  position: absolute;
  top: 5%;
  right: 5%;
}

.testimonial-item .read-testimonial {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  height: 50px;
  background: #b3022e;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.5s ease;
}

.testimonial-item .read-testimonial:hover {
  background: var(--dark-red);
  letter-spacing: 2px;
}

.testimonial-item .subtitle {
  font-size: 22px;
  padding-right: 60px;
}

.testimonial-author {
  font-weight: 500;
  line-height: 10px;
}

.testimonial-business {
  font-weight: 500;
}

/* Testimonials Hide */
.hidden {
  display: none;
}

/* Testimonials Visible */
.visible {
  display: block;
}
