.big-projects {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;

  width: 80vw;
  height: 95vh;

  color: #fff;

  overflow-y: auto;
  overflow-x: hidden;
}

.big-projects .project-type {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  width: 80vw;

  margin-bottom: 3vh;
}

.big-projects .project-type .title {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-top: 1.5vh;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 1.5vh;
  border-bottom: 1px solid var(--button-color);

  font-family: "Signika", sans-serif;
  font-size: 1.8vh;
  font-weight: 700;
}

.big-projects .project-type .title img {
  margin-right: 1vh;

  width: 4.5vh;
}

.big-projects .project-type .rows {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;

  margin-top: 1vh;

  width: 78vw;
}

.big-projects .project-type .row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  align-content: center;

  border: 1px solid var(--button-color);
  box-shadow: inset 0px 0px 10px 0px var(--button-color);
  border-radius: 20px;

  text-decoration: none;
  color: #fff;

  width: 26vh;
  height: 30vh;

  margin: 2vh;

  transition: all 0.5s;
}

.big-projects .project-type .row:hover {
  box-shadow: inset 0px 0px 20px 0px var(--button-color);

  transition: all 0.5s;
}

.big-projects .project-type .row .project-img {
  margin-top: 2vh;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  height: 15vh;
  width: 15vh;
}

.big-projects .project-type .row .project-img img {
  object-fit: cover;
  object-position: center;

  height: 15vh;
  width: 15vh;

  border-radius: 16px;
}

.big-projects .project-type .row .project-title {
  margin-top: 1vh;

  text-align: center;

  width: 30vh;

  font-family: "Signika", sans-serif;
  font-size: 1.7vh;
}

.big-projects .project-type .row .project-status {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;

  font-family: "Signika", sans-serif;
  font-size: 1.3vh;
}

.big-projects .project-type .row .project-status .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
}

.big-projects .project-type .row .project-status .icon img {
  width: 2vh;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 50px;
}

@media only screen and (max-width: 1050px) {
  .big-projects,
  .big-projects .project-type,
  .big-projects .project-type .rows {
    width: 90vw;
  }
}
