button {
  background: #13444B;
  background: linear-gradient(90deg, rgb(19, 68, 75) 0%, rgb(28, 96, 105) 100%);
  border-radius: 1000px;
  padding: 10px 20px;
  padding-right: 36px;
  color: #fff;
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  position: relative;
}
button.light {
  background: #E1E7AE;
  background-color: #E1E7AE;
  color: #13444B;
}
button.light::after {
  background-image: url("../assets/icons/arrow.svg");
}
button::after {
  content: "";
  display: block;
  width: 8px;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/icons/arrow-white.svg");
  right: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.main-trapezoid {
  width: 100%;
  height: 100%;
  background: #13444B;
  background: linear-gradient(90deg, rgb(19, 68, 75) 0%, rgb(28, 96, 105) 100%);
  /* Top-left, Top-right, Bottom-right, Bottom-left */
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.solution_card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 0;
}
.solution_card img {
  width: 100%;
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
}
.solution_card h3 {
  font-size: 1.25rem;
}
.solution_card button {
  margin-top: auto;
  margin-left: auto;
}

.solution_line {
  width: 1px;
  background-color: #D7D7D7;
  height: 100%;
}

.footprint-info {
  position: relative;
}
.footprint-info::after {
  content: "";
  height: calc(100% - 24px);
  width: 1px;
  background-color: #E2E7AE;
  position: absolute;
  left: 10px;
}

.absolute-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gradient-bg {
  background: #13444B;
  background: linear-gradient(90deg, rgb(19, 68, 75) 0%, rgb(28, 96, 105) 100%);
}
.gradient-bg.gradient-opacity {
  background: linear-gradient(90deg, rgba(19, 68, 75, 0.8) 0%, rgba(28, 96, 105, 0.8) 100%);
}/*# sourceMappingURL=reusable.css.map */