.skin .relative {
  z-index: 3;
  position: relative;
  background: #13101A;
  padding: 20px 13px;
  height: 100%;
  border-radius: 8px;
}
.skin__card {
  background: #13101A;
  max-width: 139px;
  border-radius: 8px;
  width: calc(11.1111111111% - 14px);
  position: relative;
}
@media (max-width: 1024px) {
  .skin__card {
    width: calc(33.333% - 10px);
    max-width: 100%;
  }
}
.skin__card:hover::before {
  opacity: 1;
}
.skin__card::before {
  content: "";
  position: absolute;
  left: -1px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 0;
  right: -1px;
  top: -1px;
  bottom: -1px;
  background: linear-gradient(360deg, #04D9FF 0%, rgba(4, 217, 255, 0) 99.27%);
  border-radius: 8px;
}
.skin__inner {
  display: flex;
  justify-content: center;
  width: 100%;
}
.skin__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  margin-top: 7px;
}
.skin__description {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #75899C;
}
.skin__grid {
  display: flex;
  gap: 16px;
  margin-top: 26px;
}
@media (max-width: 1024px) {
  .skin__grid {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.skin__image {
  width: 100%;
  max-width: 100px;
}