main {
    background-image: url("../IMAGES/General/Testimonials-Background.jpg");
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the background fixed */
}

.menu {
  position: sticky; /* Keeps the menu at the top */
}

.speech-bubble {
  position: relative; /* Needed for absolute positioning of caption */
  margin: 0 auto; 
  margin-top: 10px;
  margin-bottom: 60px;
  width: 80%;
  background-color: rgb(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 15px 10px;
}

.speech-bubble .caption {
  position:absolute;
  bottom: -25px;
  font-size: 19px;
  color: #000000;
  font-weight: 800;
  pointer-events: none;

}

.speech-bubble .caption-long {
  position:absolute;
  bottom: -45px;
  font-size: 19px;
  color: #000000;
  font-weight: 800;
  pointer-events: none;

}


.testimonial:nth-child(2n) .speech-bubble .caption { 
  left: 0;
  right: 0;
  padding-left: 70px;   /* Indent from left */
  padding-right: 0;
  text-align: left;
}

.testimonial:nth-child(2n+1) .speech-bubble .caption,.testimonial:nth-child(2n+1) .speech-bubble .caption-long {
  left: 0;
  right: 0;
  padding-left: 0;
  padding-right: 70px;  /* Indent from right */
  text-align: right;
}

.testimonial:nth-child(2n) .speech-bubble::after {
  content: '';
  padding: 0px;
  position: relative;
  bottom: -43px;
  left: 20px;
  border-width: 30px 0 0 30px;
  border-style: solid;
  border-color: #ffffff transparent;
  display: block;
  width: 0;
}

.testimonial:nth-child(2n+1) .speech-bubble::after {
  margin-left: auto;
  content: '';
  padding-top: 0px;
  position: relative;
  bottom: -43px;
  right: 20px;
  border-width: 30px 30px 0 0;
  border-style: solid;
  border-color: #ffffff transparent;
  display: block;
  width: 0;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  
}



@media (min-width: 1024px) {

  .speech-bubble {
    margin-bottom: 120px;
  }
  .speech-bubble p{
    font-size: 20px;

  }
  .speech-bubble .caption,.speech-bubble .caption-long {
    bottom: -30px;
    font-size:  25px;
  }
}
