.bg-3 {
  width: 100%;
  height: 504px;
  background: #F5F6F7;

  display: flex;
  align-items: center;
  justify-content: space-between;

  overflow: hidden;
}


.user-card {
  width: 298px;
  height: 175px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  margin-left: 100px;
}

.user-card h3 {
  height: 20px;

  font-weight: 500;
  font-size: 16px;
  line-height: 20px;

  letter-spacing: 2.4px;
  text-transform: uppercase;

  color: #373737;
}

.user-card__content {
  width: 100%;
  height: 80px;

  font-size: 14px;
  line-height: 144%;
  text-align: center;

  color: #4E4E4E;
}



.slider-items__navigation {
  width: 70px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-left: 5px;
}

.arrow {
  width: 8px;
  height: 8px;
  cursor: pointer;
}

.arrow-right {
  border-top: 2px solid #373737;
  border-right: 2px solid #373737;
  transform: rotate(45deg);
}

.arrow-right:hover,
.arrow-left:hover {
  opacity: 0.5;
}

.arrow-left {
  border-top: 2px solid #373737;
  border-right: 2px solid #373737;
  transform: rotate(-135deg);
}

.nums {
  font-size: 16px;
}

.slider-items {
  width: 100%;
  height: 270px;
  position: relative;
  overflow: hidden;
}

.clider-items__images {
  height: 150px;
  display: flex;
  position: absolute;
  left: 0;
  top: 25px;

  transition: .5s;
}

.clider-items__images img {
  width: 407px;
  height: 244px;
  margin-right: 5px;
}



@media (max-width: 1599px) {
  .clider-items__images img {
    width: 300px;
    height: 175px;
  }

  .slider-items {
    height: 200px;
  }
}

@media (max-width: 1199px) {

  .user-card {
    margin-left: 40px;
  }

  .slider-items {
    height: 175px;
  }

  .clider-items__images img {
    width: 240px;
    height: 150px;
  }
}

@media (max-width: 899px) {

  .user-card {
    margin-left: 0;
  }

  .bg-3 {
    height: 440px;
    flex-direction: column;
    justify-content: space-around;
  }
}

@media (max-width: 599px) {

  .bg-3 {
    height: 420px;
  }

  .slider-items nav {
    margin-left: 10px;
  }

  .clider-items__images {
    display: flex;
  }

  .clider-items__images img {
    margin-left: 5px;
  }

  .clider-items__images img:first-child {
    margin-left: 0;
  }
}