.solution {
  padding: 0 4rem;
  margin-bottom: 20rem;
}

.solution__top {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  margin-bottom: 6rem;
}
.solution__top__select {
  display: none;
  width: 100%;
  height: 56px;
  padding-left: 3rem;
  border: 1px solid var(--color-white);
  font-size: 2rem;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  margin-bottom: 6rem;
}
.solution__top__select .option {
  color: var(--color-white);
  background-color: var(--color-black);
}

.solution__top__select {
  /* Increase the width of the select element to allow for padding */

  /* Add padding to the left of the select element */
  padding-left: 20px;
  /* Remove the default arrow style */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add a custom arrow image */
  background-image: url("/assets/frontend/images/Vector.svg");
  /* Position the arrow image to the right and center of the select element */
  background-position: right 2rem center;
  /* Add some padding to the right side of the arrow image */
  padding-right: 10px;
  /* Specify the width and height of the arrow image */

  /* Ensure the arrow image does not repeat */
  background-repeat: no-repeat;
  /* Add a border to the select element if desired */
  border: 1px solid #ccc;
}

/* Increase the size of the down arrow */
.solution__top__select::-ms-expand {
  transform: scale(1.5);
}

.solution__top__select::-webkit-select-arrow {
  transform: scale(1.5);
}

.solution__top__select::-moz-select-arrow {
  transform: scale(1.5);
}

.solution__top__select::-o-select-arrow {
  transform: scale(1.5);
}

.solution__top__select::-khtml-select-arrow {
  transform: scale(1.5);
}

.solution__items {
  /* display: grid; */
  column-count: 3;
  gap: 2rem;
}

.solution__item {
  margin: 0;
  margin-bottom: 2rem;
  position: relative;
}

.solution__item .solution__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    rgba(118, 192, 78, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution__item:hover .solution__overlay {
  opacity: 1;
}

.solution__item-title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3rem;
}

.solution__item-more {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.solution__item-more i {
  transform: rotate(45deg);
  font-size: 1.4rem;
}

.solution__item > img {
  grid-row: 1 / -1;
  grid-column: 1;
}

@media screen and (max-width: 912px) {
  .solution__items {
    display: grid;
    padding: 0 1rem;
  }
}

@media screen and (max-width: 768px) {
  .solution {
    padding: 0 1rem;
    margin-bottom: 9rem;
  }

  .solution__top {
    display: none;
  }
  .solution__top__select {
    display: block;
  }
}

@media screen and (max-width: 480px) {


  .solution__item-title {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
