.centerAll {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-shade-red {
  background-color: #F2E3E2;
}

#mainBG {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}

#mainBG .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-size: 1000px 100px;
}

#mainBG .wave.wave1 {
  animation: wave-animate 30s linear infinite;
  z-index: 303;
  opacity: 1;
  animation-delay: 0s;
  bottom: 0;
}
#mainBG .wave.wave2 {
  animation: wave-animate2 15s linear infinite;
  z-index: 302;
  opacity: 0.5;
  animation-delay: -5s;
  bottom: 10px;
}
#mainBG .wave.wave3 {
  animation: wave-animate 30s linear infinite;
  z-index: 301;
  opacity: 0.2;
  animation-delay: -2s;
  bottom: 15;
}
#mainBG .wave.wave4 {
  animation: wave-animate2 5s linear infinite;
  z-index: 300;
  opacity: 0.7;
  animation-delay: -5s;
  bottom: 20px;
}

@keyframes wave-animate {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1000px;
  }
}

@keyframes wave-animate2 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -1000px;
  }
}

.title-deco {
  position: relative;
}

.title-deco::after {
  position: absolute;
  content: "";
  width: 42px;
  height: 4px;
  background: #EB6866;
  left: 0;
  bottom: 0px;
}

.avatar {
    width: 150px;
    height: 150px;
    margin: 10px;
    border-radius: 500px;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border: 3px solid #F2E3E2;
}

#testimonials {
    overflow: hidden;
    padding: 70px 0px 0px 0px;
    margin: auto;
}

.testimonial-wrap {
    padding-top: 50px;
}

.testimonal-div {
    position: relative;
    background: rgba(247,247,247,.59);
    padding: 15px;
    text-align: center;
    padding-bottom: 25px;
    border: 1px solid #d7d7d7;
    height: 100%;
}

.clients-image {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: -70px;
    border: 3px solid #F2E3E2;
}

.company-image {
    vertical-align: middle;
    display: inline;
    width: 100px;
    max-height: 100px;
    margin: auto;
}

.frame {
    height: 100px;
    display: flex;
    align-items: center;
}

.client-text {
    font-style: italic;
    text-align: center;
    padding: 15px;
    margin-bottom: 10px;
}

.testimonal-div h4 {
    color: #ce2027;
    font-weight: 600;
    font-size: 18px;
    margin-top: 12px;
}

.testimonal-div h5 {
    color: #555;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
}

.row {
    display: flex;
}
