#creation {
  color: #2EC0CB;
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 56px;
}

.row::before {
  display: none;
}

.title-container {
  margin: 56px auto;
}

.subtitle {
  margin-bottom: 8px;
}

.trigger-container {
  display: flex;
  flex-direction: row;
  margin-top: 16px;
  margin-bottom: 24px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.trigger {
  display: inline-block;
  background-color: #FFF;
  color: #2EC0CB;
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trigger.active {
  background-color: #1B7076;
  color: #FFF;
}

.trigger:hover {
  background-color: #1B7076;
  color: #FFF;
}

.trigger + .trigger {
  margin-left: 16px;
}

.filter-divider {
  border-width: 2px;
  border-color: #2EC0CB;
  margin-top: 0;
  margin-bottom: 40px;
}

.creation-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.creation-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 32px 0;
  width: 30%;
  max-width: 300px;
  background-color: #FFF;
  border-radius: 36px;
  overflow: hidden;
  margin: 1.5% 1.5%;
}

.creation-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 32px;
  background-color: transparent;
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFF;
}

.creation-item .image-logo {
  width: 70px;
}

.creation-item .image-creation {
  width: 65% !important;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.creation-item:hover .overlay {
  background-color: rgba(93, 206, 215, 0.6);
  z-index: 3;
  opacity: 1;
}

.overlay .more-button {
  background-color: #FFF;
  color: #2EC0CB;
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .creation-container {
    justify-content: space-between;
    padding: 0 40px;
  }
  
  .creation-item {
    width: 47%;
  }
}

@media screen and (max-width: 425px) {
  .creation-container {
    justify-content: space-between;
    padding: 0 16px;
  }
  
  .creation-item {
    width: 47%;
    margin-bottom: 8px;
  }

  .creation-item .overlay h3 {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
  }

  .creation-item .more-button {
    display: none;
  }

  .creation-item::before {
    width: 40vw;
    height: 40vw;
  }
}