/***** Projects Header *****/
.projects-list {
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  margin-bottom: 35px;
}

.projects-list .list-item {
  margin-left: 50px;
  text-transform: uppercase;
  cursor: pointer;
}

.projects-list .list-item.active {
  border-bottom: 2px solid #CF2028;
}

.projects-list .list-item:hover {
  border-bottom: 2px solid #CF2028;
}

/***** Project Images *****/
.image-container {
  padding: 0 3.5%;
  margin-bottom: 50px;
}

.image-container .image-row {
  justify-content: space-evenly;
}

.image-container .image-column {
  width: 23%;
  margin-bottom: 30px;
  margin-left: 5px;
  position: relative;
}

.image-container .image-thumbnail {
  cursor: pointer;
  width: 100%;
  transition: all .34s ease-in-out;
}

.image-container .image-column:hover .image-thumbnail {
  box-shadow: 0 0 10px 1px #707070;
  z-index: 2;
  transform: scale(1.15);
}

.image-container .projects-tooltip {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 45px;
  text-align: center;
  color: #fff;
  top: 0;
  left: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, .5);
  opacity: 0;
  cursor: pointer;
  transition: all .34s ease-in-out;
}

.image-container .image-column:hover .projects-tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 3;
  transform: scale(1.15);
}

/***** Projects Banner *****/
.projects-banner .banner {
  height: 65px;
}

/***** No Projects Message *****/
.no-projects {
  display: none;
  font-weight: 700;
  font-size: 18px;
}

.no-projects.show {
  display: block;
}

@media only screen and (max-width: 599px) {
  .projects-list {
    justify-content: space-evenly;
  }

  .projects-list .list-item {
    margin: 0;
    text-transform: initial;
  }

  .image-container .projects-tooltip {
    padding: 15px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1199px) {
  .projects-list {
    justify-content: space-evenly;
  }

  .projects-list .list-item {
    margin-left: 25px;
  }

  .image-container .projects-tooltip {
    padding: 25px;
  }
}