.garden {
  padding: 60px 0
}
.garden__container {
  width: 100%;
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto
}
.garden__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px
}
.garden__title {
  text-align: left;
  color: #222;
  font-family: "Roboto Slab",sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px
}
.garden__link {
  display: flex;
  width: auto;
  padding: 13px 35px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px
}
.garden__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  width: 100%
}
.garden__item {
  width: calc(100% / 3 - 10px)
}
.garden__item img {
  width: 100%;
  height: 100%
}
@media (max-width:1240px) {
  .garden__title {
    font-size: 30px
  }
}
@media (max-width:768px) {
  .garden {
    padding: 40px 0
  }
  .garden__wrapper {
    gap: 10px
  }
  .garden__item {
    width: 100%
  }
  .garden__item:not(:first-child) {
    display: none
  }
}
@media (max-width:500px) {
  .garden__top {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 24px
  }
  .garden__title {
    font-size: 25px;
    line-height: 27px;
    margin-bottom: 30px
  }
}