.awards-block {
  margin: 10rem auto;
  background-color: #fff;
}

.aw-container {
  max-width: 1384px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.aw-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--soft-grey);
  max-width: 44rem;
  width: 100%;
  border-radius: 16px;
  flex-basis: 32%;
  padding-bottom: 23px;
}
.aw-item__header {
  font-family: "Source Serif Pro", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  color: #F63D7E;
  margin-top: 25px;
  margin-bottom: 26px;
}
.aw-item__block {
  height: 170px;
  margin-bottom: 35px;
}
.aw-item__img {
  height: 100%;
}
.aw-item__text {
  font-family: "Source Serif Pro", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 19px;
  line-height: 32px;
  text-align: center;
  color: #333333;
  position: relative;
  margin-bottom: 8px;
  margin-top: 0;
  text-decoration: none;
  transition: all cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s;
}
.aw-item__text a {
  text-decoration: none;
  color: #333333;
  transition: all cubic-bezier(0.39, 0.575, 0.565, 1) 0.3s;
}
.aw-item__text a:hover {
  color: #fff;
  background-color: #333333;
}
.aw-item__text--line::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 32px;
  background-color: #F63D7E;
  top: 36px;
  transform: translateX(-50%);
  left: 50%;
  margin: 0 auto;
}
@media (max-width: 1450px) {
  .aw-container {
    max-width: 1192px;
  }
}
@media (max-width: 1280px) {
  .aw-container {
    padding: 0 4.4rem;
  }
  .aw-item__header {
    font-size: 18px;
    margin-top: 11px;
    margin-bottom: 11px;
  }
  .aw-item__text {
    font-size: 15px;
    line-height: 22px;
  }
  .aw-item__img {
    /* height: 64%; */
  }
  .aw-item__block {
    height: 111px;
    margin-bottom: 11px;
  }
  .aw-item__text--line::after {
    top: 25px;
  }
  .aw-item {
    padding-bottom: 23px;
  }
}
/* @media (max-width: 1000px) {
  .aw-container {
    max-width: 760px;
  }
} */
@media (max-width: 800px) {
  .awards-block {
    margin: 5rem auto;
    background-color: #fff;
  }
  .aw-container {
    max-width: 360px;
    padding: 0 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .aw-item {
    flex-basis: 100%;
    margin-bottom: 32px;
  }
}
@media (max-width: 640px) {
}
@media (max-width: 360px) {
  .aw-item {
    /* flex-basis: 75%; */
  }
}
