.customer-revs {
  height: 100%;
      background: #FFF2EB;
  padding: 100px 0px;
  font-family: 'Lato', sans-serif;
}

.mySlides-main-quote-image img {
 position: relative;
  bottom: 10px;
}

.rectangle {
  width: 40%;
  height: 100vh;
  background: #FFF2EB;

  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}


/* slideshow container */
.slideshow-container {
  position: relative;
  width: 100%;
  height: fit-content;
}

/* Slides */
.mySlides {

}

.mySlides-main {
  color: #3E4149;
  width: 60%;
}

.mySlides-main-quote-person {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: normal;
    color: #3E4149 !important;
}

.mySlidesContainer {
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.mySlides-main-quote {
 margin: 20px 0px 10px 0px;; 
}

/* next & previous buttons */
.prev,
.next {
  border: 1px solid #FF5500;
  height: 30px;
    width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
  color: #232323;
  font-weight: bold;
  font-size: 3rem;
  user-select: none;
  transition: 0.4s;
  border-radius: 50%;
  background: white;
}

.arrow-left-right {
 margin-top: 0px; 
  display: flex;
}

.mySlides-right {
 display: flex;
  flex-direction: column;
  
}

.mySlides-right img {
      animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, -8px); }
    100%   { transform: translate(0, 0px); }    
}

.mySlides-right img {
 max-height: 400px; 
   max-width:400px; 
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
}


/* position the "next button" to the right */
.next {
  margin-left: 25px;
}

/* on hover, add a black bg color with a little bit see-through */
.prev:hover,
.next:hover {
  color: #f6eac1;
  text-decoration: none;
}

/* the dot/bullet/indicator container */
.dot-container {
  position: absolute;
  text-align: center;
  margin-top: 25px;
  display: flex;
    justify-content: center;
  align-items: center;
}

/* the dots/bullets/indicators */
.dot {
  height: 0.9375rem;
  width: 0.9375rem;
  margin: 0 2px;
  background-color: #E5E5E5;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.4s ease;
}

/* add bg color to the active dot/circle */
.active {
 /* background-color:#FFFFFF; /* FF5500 */ */
}

@media (max-width:768px){
      .mySlides-right img {
     max-height: 300px; 
            max-width: 250px !important;
    }

}


@media (max-width:450px){  
  
  .mySlides-main { 
   height: 250px; 
  }
  
        .mySlides-right img {
     max-height: 200px; 
              max-width: 250px !important;
    }
  
  
  .mySlidesContainer {
    flex-direction: column-reverse;
      justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .mySlides-main {
  color: #3E4149;
  width: 90%;
    margin-top:  50px;
    margin-bottom: 30px;
}
  
  .arrow-left-right {
    margin-top: 0px;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  
  .mySlides-main-quote-image img {
 max-width: 30px !important;
}

  .dot-container {

  margin-top: 95px;

}
  
  .dot {
  height: 0.6375rem;
  width: 0.6375rem;
}
  
}

