.general-product-tech-icons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 14px;
  align-items: flex-start;
  justify-content: space-evenly;
  margin: 22px 0 18px;
  padding: 24px 0 18px;
  border-top: 0;
  border-bottom: 1px solid rgba(34, 151, 211, 0.24);
}

.general-product-tech-icons::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 151, 211, 0.1), rgba(34, 151, 211, 0.46), rgba(34, 151, 211, 0.1));
}

.general-product-tech-icon {
  position: relative;
  display: inline-grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
  justify-items: center;
  align-items: start;
  flex: 0 1 96px;
  color: #06608e;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  isolation: isolate;
  text-align: center;
  transition:
    color 0.18s ease,
    transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

.general-product-tech-icon:hover,
.general-product-tech-icon:focus-within {
  color: #06608e;
  transform: translateY(-3px);
}

.general-product-tech-icon-media {
  position: relative;
  display: grid;
  width: 61px;
  height: 61px;
  place-items: center;
  border: 1px solid rgba(34, 151, 211, 0.34);
  border-radius: 10px;
  background: rgba(217, 237, 247, 0.62);
  color: currentColor;
  overflow: hidden;
  box-shadow: 0 7px 16px rgba(34, 151, 211, 0.1);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.general-product-tech-icon-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.74), transparent 44%);
  opacity: 0.58;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.general-product-tech-icon-media::after {
  content: "";
  position: absolute;
  inset: -42% -95%;
  background: linear-gradient(100deg, transparent 36%, rgba(255, 255, 255, 0.42) 50%, transparent 64%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-70%) rotate(14deg);
  transition:
    opacity 0.22s ease,
    transform 0.58s ease;
}

.general-product-tech-icon:hover .general-product-tech-icon-media,
.general-product-tech-icon:focus-within .general-product-tech-icon-media {
  border-color: rgba(34, 151, 211, 0.92);
  background: linear-gradient(135deg, #2297d3, #06608e);
  color: #fff;
  box-shadow:
    0 14px 24px rgba(34, 151, 211, 0.24),
    0 0 0 5px rgba(34, 151, 211, 0.12);
  transform: scale(1.07);
}

.general-product-tech-icon:hover .general-product-tech-icon-media::before,
.general-product-tech-icon:focus-within .general-product-tech-icon-media::before {
  opacity: 0.18;
}

.general-product-tech-icon:hover .general-product-tech-icon-media::after,
.general-product-tech-icon:focus-within .general-product-tech-icon-media::after {
  opacity: 1;
  transform: translateX(70%) rotate(14deg);
}

.general-product-tech-icon-media svg,
.general-product-tech-icon-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 43px;
  height: 43px;
  object-fit: contain;
  color: currentColor;
  transition:
    filter 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.general-product-tech-icon-media svg [stroke]:not([stroke="none"]) {
  stroke: currentColor;
  transition: stroke 0.22s ease;
}

.general-product-tech-icon-media svg [fill]:not([fill="none"]) {
  fill: currentColor;
  transition: fill 0.22s ease;
}

.general-product-tech-icon-media svg:not(.general-tech-icon-svg) path,
.general-product-tech-icon-media svg:not(.general-tech-icon-svg) rect,
.general-product-tech-icon-media svg:not(.general-tech-icon-svg) circle,
.general-product-tech-icon-media svg:not(.general-tech-icon-svg) ellipse,
.general-product-tech-icon-media svg:not(.general-tech-icon-svg) polygon,
.general-product-tech-icon-media svg:not(.general-tech-icon-svg) polyline,
.general-product-tech-icon-media svg:not(.general-tech-icon-svg) line {
  fill: currentColor !important;
  stroke: currentColor !important;
  transition:
    fill 0.22s ease,
    stroke 0.22s ease;
}

.general-product-tech-icon-media svg:not(.general-tech-icon-svg) [fill="none"] {
  fill: none !important;
}

.general-product-tech-icon:hover .general-product-tech-icon-media svg,
.general-product-tech-icon:focus-within .general-product-tech-icon-media svg {
  color: #fff;
  transform: scale(1.04);
}

.general-product-tech-icon:hover .general-product-tech-icon-media img,
.general-product-tech-icon:focus-within .general-product-tech-icon-media img {
  filter: brightness(0) invert(1);
  transform: scale(1.04);
}

.general-product-tech-icon-copy {
  display: grid;
  gap: 3px;
  justify-items: center;
  min-width: 0;
  width: 100%;
}

.general-product-tech-icon-copy::before {
  content: "";
  width: 34px;
  height: 1px;
  margin-bottom: 1px;
  border-radius: 999px;
  background: rgba(34, 151, 211, 0.38);
  transition:
    background 0.18s ease,
    width 0.18s ease;
}

.general-product-tech-icon-copy strong {
  overflow: hidden;
  color: #101418;
  font-size: 13.5px;
  font-weight: 950;
  line-height: 1.05;
  text-overflow: ellipsis;
  transition: color 0.18s ease;
}

.general-product-tech-icon-copy small {
  color: #5d686b;
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1.08;
  transition: color 0.18s ease;
}

.general-product-tech-icon:hover .general-product-tech-icon-copy strong,
.general-product-tech-icon:focus-within .general-product-tech-icon-copy strong {
  color: #06608e;
}

.general-product-tech-icon:hover .general-product-tech-icon-copy::before,
.general-product-tech-icon:focus-within .general-product-tech-icon-copy::before {
  width: 42px;
  background: rgba(6, 96, 142, 0.64);
}

.general-product-tech-icon:hover .general-product-tech-icon-copy small,
.general-product-tech-icon:focus-within .general-product-tech-icon-copy small {
  color: #3d484b;
}

@media (prefers-reduced-motion: reduce) {
  .general-product-tech-icon,
  .general-product-tech-icon-media,
  .general-product-tech-icon-media::after,
  .general-product-tech-icon-media svg,
  .general-product-tech-icon-media img {
    transition: none;
  }

  .general-product-tech-icon:hover,
  .general-product-tech-icon:focus-within,
  .general-product-tech-icon:hover .general-product-tech-icon-media,
  .general-product-tech-icon:focus-within .general-product-tech-icon-media,
  .general-product-tech-icon:hover .general-product-tech-icon-media svg,
  .general-product-tech-icon:focus-within .general-product-tech-icon-media svg,
  .general-product-tech-icon:hover .general-product-tech-icon-media img,
  .general-product-tech-icon:focus-within .general-product-tech-icon-media img {
    transform: none;
  }
}

@media (max-width: 980px) {
  .general-product-tech-icons {
    gap: 16px 12px;
  }

  .general-product-tech-icon {
    flex-basis: 90px;
  }
}

@media (max-width: 560px) {
  .general-product-tech-icons {
    gap: 12px 8px;
    margin-top: 18px;
    padding-top: 20px;
  }

  .general-product-tech-icon {
    flex-basis: 78px;
  }

  .general-product-tech-icon-media {
    width: 57px;
    height: 57px;
  }

  .general-product-tech-icon-media svg,
  .general-product-tech-icon-media img {
    width: 40px;
    height: 40px;
  }

  .general-product-tech-icon-copy strong {
    font-size: 12.5px;
  }

  .general-product-tech-icon-copy small {
    font-size: 10px;
  }
}
