/* story */

.section-title--story {
  text-align: center;
}

.story__text {
  font-family: var(--font-family);
  font-size: 28px;
  line-height: 177%;
  text-align: center;
}

/* catering */

.catering__content {
  display: flex;
  gap: 112px;
}

.section-title--catering {
  margin-bottom: 0;
}

.catering__image {
  position: relative;
  width: 358px;
  height: 446px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 3px 4px 7px 0 rgba(0, 0, 0, 0.2);
  margin-right: 27px;
  margin-bottom: 29px;
}

.catering__image::after {
  content: '';
  position: absolute;
  top: 29px;
  left: 27px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: 2;
}

.catering__right {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.catering__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 170%;
}

/* why-us */

.section-title--why-us {
  text-align: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 146px;
}

.stats__item span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 77px;
  line-height: 110%;
  color: var(--gold);
}

.stats__item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
}

/* we-offer */

.section-title--offer {
  text-align: center;
}

.offer__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 90px;
  row-gap: 50px;
}

.offer__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer__img {
  background-color: #d9d9d9;
  width: 150px;
  height: 150px;
}

.offer__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #151515;
}

.offer__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #151515;
  opacity: 0.6;
}

/* experience-awards */

.section-wrapper--experience {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.experience__row {
  display: flex;
  justify-content: space-between;
  /* display: grid;
  grid-template-columns: repeat(2, 1fr); */
}

.row__text-sec {
  color: var(--text-color-gray);
  /* margin-right: 100px; */
  width: 43%;
}

.row__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 137%;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.row__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 171%;
}

.row__img-sec {
  position: relative;
  width: 50%;
  height: 380px;
}

.row__img-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1440px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .catering__content {
    gap: 25px;
  }

  .catering__image {
    width: 307px;
    height: 380px;
    margin-right: 23px;
    margin-bottom: 24px;
  }

  .catering__image::after {
    top: 24px;
    left: 23px;
  }

  .catering__right {
    gap: 20px;
  }

  .offer__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 30px;
  }

/*   .offer__img {
    width: 60px;
    height: 60px;
  } */

  .section-wrapper--experience {
    gap: 50px;
  }

  .experience__row {
    flex-direction: column;
    gap: 20px;
  }

  .row__text-sec {
    width: 100%;
    order: 2 !important;
  }

  .row__img-sec {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-self: center;
    order: 1 !important;
  }

  .row__title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .story__text {
    font-size: 14px;
    text-align: justify;
  }

  .catering__content {
    flex-direction: column;
  }

  .catering__text {
    font-size: 14px;
    text-align: justify;
  }

  .stats__item span {
    font-size: 36px;
  }

  .stats__item p {
    font-size: 15px;
  }

  .offer__title {
    font-size: 18px;
  }

  .offer__text {
    font-size: 14px;
  }

  .stats__item {
    align-items: start;
  }
}
