.projects {
  padding-top: 6.7708333333rem;
  padding-bottom: 6.7708333333rem;
}



.projects__top {
  display: flex;
  justify-content: space-between;
  gap: 0.5208333333rem;
  align-items: center;
}

.projects__link {
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 0.7291666667rem;
  line-height: 0.9166666667rem;
  font-weight: 500;
  margin-right: 0.2083333333rem;
}

.projects__list {
  margin-top: 1.9270833333rem;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5625rem;
}

.projects__item {
  width: calc(25% - 1.1979166667rem);
  overflow: hidden;
  border-radius: 1.0416666667rem;
  -webkit-border-radius: 1.0416666667rem;
  -moz-border-radius: 1.0416666667rem;
  -ms-border-radius: 1.0416666667rem;
  -o-border-radius: 1.0416666667rem;
  border: solid 0.0520833333rem #e4e4e4;
}
.projects__item .preview_picture {
  width: 100%;
  height: auto;
  aspect-ratio: 126/125;
  object-fit: cover;
	/* max-height: 16.6rem; */
}

.projects__item:nth-child(1) .preview_picture {
  aspect-ratio: 262/125;
}

.projects__item:nth-child(1) {
  width: calc(50% - 0.78125rem);
}

.projects__item-link {
  width: 100%;
  height: 100%;
  display: block;
}

.projects__img {
  width: 100%;
  max-height: 16.6666666667rem;
  object-fit: cover;
}

.projects__name {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.21875rem;
  display: block;
  padding: 0.78125rem 0.9895833333rem 1.0416666667rem;
}

.projects-product-title {
  font-size: 1.979166666666667rem;
  font-weight: 500;
  line-height: 1.3;
}

@media screen and (max-width: 1200px) {
  .projects {
    padding-top: 70px;
    padding-bottom: 100px;
  }
  .projects-product-title{
    font-size: 38px;
    line-height: 49.4px;
  }
  
  .projects__link {
    margin-right: 0;
    font-size: 14px;
    line-height: 17.6px;
  }
  .projects__item .preview_picture{
    max-height: 300px;
  }

  .projects__name {
    font-size: 18px;
    line-height: 23.4px;
    padding: 15px;
  }

  .projects__list {
    gap: 20px;
    margin-top: 27px;
  }

  .projects__item {
    width: calc(50% - 10px);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }

  .projects__item:nth-child(1) {
    width: 100%;
  }

  .projects__img {
    max-height: 351px;
  }
}

@media screen and (max-width: 767px) {

  .projects__page .projects__item .preview_picture{
    aspect-ratio: 3/2;
  }
  .projects {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .projects-product-title{
    font-size: 24px;
    line-height: 31px;
    text-align: center;
  }
  .projects__top {
    justify-content: center;
  }

  .projects__link {
    display: none;
  }

  .projects__list {
    margin-top: 20px;
    gap: 10px;
  }

  .projects__item {
    height: auto;
    width: 100%;
  }

  .projects__img {
    max-height: 220px;
  }

  .projects__name {
    font-size: 16px;
    line-height: 20.8px;
  }
}