.test-wrap {
  justify-content: space-between;
}

.test-wrap .test__left {
  width:34%;
  
}

.test-wrap .test__right .tests-controls {
  padding: 20px 0 0 0;
  justify-content: center;
}



.test-wrap .test__right .tests-controls .prev-button,
.test-wrap .test__right .tests-controls .next-button {
  width: 48px;
  cursor: pointer;
}

.test-wrap .test__right .tests-controls .prev-button {
  margin-right: 20px; 
}

.test-wrap .test__right {
  width:60%;
}

.test-card {
  border: 1px solid rgba(123, 119, 101, 0.4);
  padding: 40px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}

.test-card .quotes {
  width: 75px;
  padding: 0 0 10px 20px;
}

.test-card .client {
  align-items: center;
}

.test-card .client .client__image {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
  padding: 5px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  border: 1px solid rgba(191, 213, 219, 1);
  margin-right: 15px;
}

.test-card .client .client__image img {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

@media (max-width: 767px) {
  
  .test-wrap {
    flex-direction: column;
  }
  .test-wrap .test__right .tests-controls {
  }
  .test-wrap .test__right .tests-controls .prev-button,
  .test-wrap .test__right .tests-controls .next-button {
    width: 30px;
  }
  .test-wrap .test__right .tests-controls .prev-button {
    margin-right: 12px; 
  }
  .test-wrap .test__left {
    width: 100%;
    margin-bottom: 20px;
  }
  .test-wrap .test__right {
    width:100%;
  }
  .test-card {
    padding: 20px;
  }
  .test-card .quotes {
    width: 60px;
    padding: 0 0 10px 0;
  }

}



  
}


@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}



@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-transform-origin: center;
  transform-origin: center;
}