.media__abous__us {
  margin-top: 100px;
}
.media__abous__us--content {
  padding-left: 40px;
  padding-right: 40px;
}

.media__abous__us--content__heading {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.pagination__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.pagination__buttons--left,
.pagination__buttons--right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border: 1px solid black;
  transition: all 0.4s;
  cursor: pointer;
}
.pagination__buttons--left:hover,
.pagination__buttons--right:hover {
  background-color: #c3cdb2;
}

.media {
  width: 100%;
  margin-top: 30px;
  overflow: hidden;
  height: auto;
  align-self: stretch;
}
.slider-media {
  height: auto;
  align-self: stretch;
  padding-bottom: 30px;
}
.media__card__container--info {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.media__card__container h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: black;
}
.media__card__container p {
  color: rgba(0, 0, 0, 0.49);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.media__card__container--preview {
  aspect-ratio: 100/56;
  overflow: hidden;
  width: 100%;
}
.media__card__container--preview img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .pagination__buttons--left,
  .pagination__buttons--right {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .media__abous__us--content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
