<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">section.cta-grid .wrapper .boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: auto;
  gap: 16px;
}
section.cta-grid .wrapper .boxes .box {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0px 5px 12px 0px rgba(31, 41, 45, 0.1);
}
section.cta-grid .wrapper .boxes .box:hover .label {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 32px 16px;
}
section.cta-grid .wrapper .boxes .box .image {
  aspect-ratio: 1.26/1;
  width: 100%;
}
section.cta-grid .wrapper .boxes .box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.cta-grid .wrapper .boxes .box .label {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0, 127, 128, 0.9) 0%, rgba(0, 127, 128, 0.1) 100%);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  padding: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: auto;
  gap: 12px;
}
section.cta-grid .wrapper .boxes .box .label svg {
  max-width: 24px;
}
section.cta-grid .wrapper .boxes .box .label p {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: #FFF;
  line-height: 1.3;
  margin-bottom: 0;
}

@media only screen and (min-width: 601px) {
  section.cta-grid .wrapper .boxes {
    gap: 36px;
  }
  section.cta-grid .wrapper .boxes .box .image {
    aspect-ratio: 2.19/1;
  }
}
@media only screen and (min-width: 992px) {
  section.cta-grid {
    padding: 32px 16px 80px;
  }
  section.cta-grid .wrapper .boxes {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 36px;
  }
  section.cta-grid .wrapper .boxes .box {
    flex-basis: calc(50% - 18px);
  }
  section.cta-grid .wrapper .boxes .box .image {
    aspect-ratio: 1.78/1;
  }
}
</pre></body></html>