@charset "UTF-8";
:root {
  --blank-value: 80px;
}

.projects__item-title, .projects__item-view-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}

.projects__item-view-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.projects__item-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.projects__item-view-btn {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.projects__item-title {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.projects__item-title {
  color:   #fff !important;
  z-index: 1;
}

.projects__item-view-btn {
  color:   #fff !important;
  z-index: 1;
}

.projects {
  padding: 90px 0 100px 0;
}
.projects__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 26px;
}
.projects__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 538px;
  border-radius: 30px;
  overflow: hidden;
  z-index: 1;
}
.projects__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: -1;
}
.projects__image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.projects__info {
  max-width: 250px;
  padding: 0 0 23px 35px;
}
.projects__item-title {
  font-weight: 600;
}
.projects__item-view-btn {
  display: block;
  margin-top: 10px;
}
@media only screen and (max-width: 1024px){
  :root {
    --blank-value: 50px;
  }
  .projects__list {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}
@media only screen and (max-width: 768px){
  .projects {
    padding: 79px 0 120px 0;
  }
  .projects__item {
    height: 502px;
  }
}
@media only screen and (max-width: 479px){
  .projects__list {
    grid-template-columns: 1fr;
  }
  .projects__info {
    max-width: 230px;
  }
}