#projects {
  padding-top: 80px;
  padding-bottom: 60px;
  background-image: url('images/bg.svg');

}

.title {  
  text-align: center;
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 48px;
  line-height: 117%;
  color: #373B32;
  margin-bottom: 40px;
}

.cats__holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

@media (max-width: 1200px) {
  .cats__holder {
      justify-content: center;
    }
}

.cat__item {
  max-width: 570px;
  height: 92px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
  filter: drop-shadow(0px 0px 20px rgba(94, 182, 202, 0.15));
  border-radius: 10px;
  /* background-image: url('images/bg_item1.jpg'); */
  background-repeat: no-repeat;
  background-color: white;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

.item__title {
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: black;
}

.cat__item:hover {
  border: none;
  background-image: url('images/bg_item.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 110%;
  background-color: #83aa51;
}

.cat__item:hover .item__title {
  color: white;
}

.cat__item.active {
  border: none;
  background-image: url('images/bg_item.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 110%;
  background-color: #83aa51;
}

.cat__item.active .item__title {
  color: white;
}

.prod__item--title {
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 24px;
  line-height: 142%;
  color: #373B32;
  margin-bottom: 15px;
}

.products {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 45px;
  overflow: hidden;
  max-height: 530px;
}

.products.opened {
  max-height: 100%;
}

@media (max-width: 1170px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

@media (max-width: 800px) {
  .products {
    grid-template-columns: repeat(1, 1fr);
  }
}

.product__item_holder {
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(94, 182, 202, 0.2);
  border-radius: 10px;
  cursor: pointer;
  max-width: 370px;
  width: 100%;
}

.product__item__image {
  width: 370px;
  height: 230px;
  max-width: 100%;

}
.product__item__image img{
  width: 370px;
    height: 230px;
    max-width: 100%;
    object-fit: cover;
}
.descr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.descr_item {
  display: flex;
  align-items: center;
}

.descr_item--img {
  margin-right: 15px;
}

.projects__text {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #373B32;
}

.prod_descr {
  padding: 30px;
}

.descr {
  width: 261px;
  margin-bottom: 15px;
}

.item__price {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 24px;
  line-height: 142%;
  color: #373B32;
  margin-bottom: 20px;
}

.item__btn {
  max-width: 254px;
  width: 100%;
}

.projects_btn {
  background: #83aa51;
  border: 2px solid #83aa51;
  border-radius: 10px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  text-align: center;
  padding: 15px 30px;
  display: inline-block;
}

.projects_btn:hover {
  background: #fff;
  color: #83aa51;
}

.more_projects {
  font-family: 'Inter';
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #83aa51;
  margin: 0 auto;
  padding: 15px 0px;
  background: #FFFFFF;
  border: 2px solid #83aa51;
  border-radius: 10px;
  width: 304px;
  text-align: center;
  cursor: pointer;
}

.more_projects:hover {
  color: #fff;
  background: #83aa51;
}

@media (max-width: 425px) {
  .product__item_holder {
    max-width: 100%;
  }

  .more_projects {
    width: 270px;
  }

  .title {
    font-size: 36px;
  }
}