.testimonialPage h1 {
  font-family: Oswald;
  font-size: 36.02px;
  font-weight: 400;
  line-height: 53.38px;
  text-align: center;
  color: #eb5805;
  text-transform: uppercase;
}

.reviewVideo {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 40px;
  justify-content: center;
  gap: 30px;
}

.reviewImg {
  width: 600px;
  height: 350px;
}

.artistName {
  font-family: Oswald;
  font-size: 40px;
  font-weight: 400;
  line-height: 59.28px;
  text-align: center;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: white;
  gap: 10px;
  padding-right: 100px;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  background-color: #eb5805;
  padding: 35px 0;
}

.marquee {
  display: flex;
  justify-content: space-between;
  animation: animate_text 10s linear infinite;
  white-space: nowrap;
  /* background-color: #eb5805; */
}

@keyframes animate_text {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.testimonialREviews {
  padding: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}

.testimonialREviews p {
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  width: 70%;
}

.loadMore{
    display: flex;
    justify-content: center;
    margin: 0 0 30px;
}
.loadMore button{
    font-family: Oswald;
font-size: 18.04px;
font-weight: 400;
line-height: 26.74px;
text-align: center;
color: white;
background-color: #eb5805;
padding: 5px 15px;
border: none;
}

@media(max-width:580px){
    
    .reviewVideo iframe{
        width:300px !important;
        height:250px !important;
    }
    
    .reviewImg {
        width: 100%;
        height: 100%;
    }
    
    .marquee-container {
        padding: 25px 0;
    }
    
    .testimonialREviews {
        padding: 30px;
         gap: 50px;
    }
    
    .testimonialREviews p {
        font-size: 17px;
          line-height: 20px;
        width: 100%;
    }
}