.review {
  position: relative;
  z-index: 3;
  padding: 5vw 25px 70px;
  overflow: hidden;
  color: #fff;
  margin-top: 20px;
}
.review::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #172982);
  /* border-bottom-left-radius: 100px; */
  
  /* background: linear-gradient(to bottom, transparent, #172982); */
  /* box-shadow: #1a50bb 0 10px 60px; */
  /* background: #fff; */
}
@media (min-width: 996px) {
  .review {
    padding-bottom: 5vw;
  }
}
.review__box {
  position: relative;
  z-index: 1;
}
.review__box::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  left: -50px;
  top: 0;
  z-index: 2;
  /* background: linear-gradient(to left, #172982, rgba(0, 0, 0, 0)); */
}
.review__box::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  right: -50px;
  top: 0;
  z-index: 2;
  /* background: linear-gradient(to right, #172982, rgba(0, 0, 0, 0)); */
}
@media (min-width: 996px) {
  .review__box {
    display: flex;
    width: 100%;
    margin: 0 auto;
    max-width: 1600px;
  }
}
.review__awards {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
  padding: 50px 0;
  background: #fff;
}
.review__awards::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  left: -50px;
  top: 0;
  z-index: 2;
  /* background: linear-gradient(to left, #172982, rgba(0, 0, 0, 0)); */
}
.review__awards::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 100%;
  right: -50px;
  top: 0;
  z-index: 2;
  /* background: linear-gradient(to right, #172982, rgba(0, 0, 0, 0)); */
}
.review .awards {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.review .awards a {
  animation: marquee 20s linear infinite;
  flex: 0 0 100px;
}
@media (min-width: 996px) {
  .review .awards a {
    flex: 0 0 200px;
  }
}
.review .awards img {
  height: 80px;
  width: auto;
}
@media (min-width: 996px) {
  .review .awards img {
    height: 100px;
  }
}
.review__item {
  padding: 25px;
}
@media (min-width: 996px) {
  .review__item {
    flex: 1;
    padding: 40px;
  }
}
.review__item h3 {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
  font-weight: 300;
  text-transform: capitalize;
  font-size: 20px;
}
@media (min-width: 996px) {
  .review__item h3 {
    font-size: 28px;
    padding-bottom: 40px;
  }
}
.review__item h3 b {
  position: relative;
  font-size: 200%;
}
.review__item h3 span {
  position: relative;
  padding-bottom: 15px;
  padding-left: 20px;
}
.review__item:nth-child(1) {
  background: #05203c;
}
.review__item:nth-child(2) {
  background: #1b4c7e;
}
.review__item:nth-child(3) {
  background: #369;
}
.review__item p {
  opacity: 0.7;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}