@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

::selection{
  background: rgba(23,162,184,0.3);
}
.wrapper{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.wrapper .box{
  background: #fff;
  /*width: calc(33% - 10px);*/
  padding: 25px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
      display: flex;
    flex-direction: column;
    justify-content: space-between;
    height:500px;
}
.wrapper .box i.quote{
  font-size: 20px;
  color: #ed141f;
}
.wrapper .box .content{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.box .info .name{
  font-weight: 600;
  font-size: 17px;
  color : #000;
}
.box .info .job{
  font-size: 16px;
  font-weight: 500;
  color: #ed141f;
}
.box .info .stars{
  margin-top: 2px;
}
.box .info .stars i{
  color: #ed141f;
}
.box .content .image{
  height: 75px;
  width: 75px;
  padding: 3px;
  background: #ed141f;
  border-radius: 50%;
}
.content .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}
.box:hover .content .image img{
  border-color: #fff;
}

@media (max-width: 1045px) {
  .wrapper .box{
    /*width: calc(50% - 10px);*/
    margin: 10px 0;
  }
}
@media (max-width: 702px) {
  .wrapper .box{
    width: 100%;
    height: 600px;
  }
}
