.right-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;

}

.right-container .item {
  flex: 1;
  margin-bottom: 25px;
}

.testimonial-header {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  width: 100%;
  border-radius: 12px;
  text-transform: uppercase;
  line-height: 40px;
  font-size: var(--header-title-font-size);
}

.testimonials {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--footer-background);
  font-size: 11px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  padding: 10px;
  top: -20px;
  z-index: -1;
}

.testimonial-holder {
  animation: test_1 10s linear infinite;
}

.testimonial-holder p:hover {
  animation-play-state: paused;
}

.right-title {
  color: var(--bs-primary);
  text-transform: uppercase;
}

@keyframes test_1 {
  0% {
    transform: translatey(0%);
  }

  100% {
    transform: translatey(-100%);
  }
}

.weekly-email-header {
  color: var(--bs-secondary);
  font-weight: bold;
  font-style: italic;
}

.email-description {
  color: var(--bs-primary);
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .testimonial-block {
    display: none;
  }

}


@media (max-width: 1400px) {
  .right-container {
    flex-direction: row;
    margin-top: 40px;
  }

}