.categories-wrapper {
  height: 100vh;
  width: 100vw;
}

.categories-list {
  width: 100%;
  height: 100%;
  display: flex;
}

.category-item {
  width: 20%;
  transition: all 0.3s;
  overflow: hidden;
}

.background-image {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.background-image::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  opacity: 0;
  background-color: rgba(0, 35, 90, 0.9);
  transition: all 0.3s;
}

.category-description {
  position: absolute;
  top: 50%;
  left: 10%;
  font-weight: 700;
  font-size: 32px;
  opacity: 0;
  transition: all 0.6s ease-in-out;
  text-wrap: balance;
}

.category-link {
  text-decoration: none;
  color: white;
}

.category-item:hover {
  width: 50vw;

  .category-description {
    opacity: 1;
    top: 60%;
    left: 10%;
  }

  .background-image::before {
    opacity: 1;
  }
}