.hero {
  background-color: blue;
}

.mt {
  margin-top: 5rem;
}

.cx-heading {
  text-align: center;
  margin-bottom: 2.8rem;
}
.cx-heading h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}
.cx-heading h1 span {
  color: #24a6ca;
  display: block;
}
.cx-heading p {
  font-size: 1.1rem;
  color: #fff;
}

.cx-card {
  background-color: #151515;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.2rem;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border: 2px solid #333537;
  position: relative;
  z-index: 0;
  gap: 0.5rem;
}
.cx-card.hover:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem; /* same radius */
  padding: 1px; /* = border-width */
  background: linear-gradient(to right, #00ffff 0%, #00bcd4 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.cx-card h3,
.cx-card p {
  color: #fff;
}
.cx-card img {
  height: 60px;
}

.cx-navigation {
  background-color: #151515;
  border-radius: 1rem;
  border: 2px solid #333537;
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 4rem;
  aspect-ratio: 1;
}
.cx-navigation::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem; /* same radius */
  padding: 1.5px; /* = border-width */
  background: linear-gradient(to right, #00ffff 0%, #00bcd4 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.cx-navigation:hover {
  background: linear-gradient(to right, #00ffff 0%, #00bcd4 100%);
}

.container-small {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-small {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-small {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-small {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-small {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-small {
    max-width: 1100px;
  }
}

/*# sourceMappingURL=custom.css.map */
