.delivery {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.delivery-title {
  font-family: Literata;
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  margin: 0;
  color: #40916C;
}

.delivery-list {
  display: flex;  
}

.delivery-item {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  width: 33%;
  border: 1px solid #FFDB93;
}

.delivery-desc {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.delivery-road {
  font-family: Literata;
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  color: #857040;
}

.delivery-item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0%;
  color: #606060;
}

.delivery-price {
  align-self: flex-end;
}

@media (max-width: 992px) {
  .delivery-list {
    flex-direction: column;
  }

  .delivery-item {
    width: 100%;
  }
}

