/* Site front page grid settings */
.front-page-content {
  height: auto;
  box-sizing: border-box;
  margin: 0;
  font-family: "Raleway", sans-serif;
}

.card-container {
  width: auto !important;
  height: auto !important;
  position: auto;
  margin-left: 25px;
  margin-right: 25px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-gap: 15px;
}

.team-status {
  width: 600px;
  background-color: #0a3654 !important;
}

@media (max-width: 1140px) {
  #wrapper.toggled .card-container {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
}
@media (max-width: 767px) {
  .card-container {
    display: inline;
    position: relative;
  }
  .items {
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20px;
    padding-top: 20px;
  }
  .team-status {
    display: none;
  }
  #wrapper.toggled .card-container {
    display: none;
  }
}
.items {
  border-radius: 20px;
  display: grid;
  grid-template-rows: 2fr 1fr;
  grid-gap: 10px;
  cursor: pointer;
  border: 3px dashed #ffe381;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.6s;
}

.icon-wrapper, .project-name {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper i, .icon-wrapper .svg-inline--fa {
  font-size: 100px;
  color: #45C4FF;
  transform: translateY(0px);
  transition: all 0.6s;
}

.icon-wrapper {
  align-self: end;
}

.project-name {
  align-self: start;
}

.project-name p {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffe381;
  transform: translateY(0px);
  transition: all 0.5s;
}

.items:hover {
  border: 3px solid #ffe381;
}
.items:hover .project-name p {
  transform: translateY(-10px);
}
.items:hover .icon-wrapper i, .items:hover .icon-wrapper .svg-inline--fa {
  font-size: 120px;
  transform: translateY(5px);
}

/*# sourceMappingURL=front-page-grid.css.map */
