.feature {
  margin-top: 56px;
}
@media (max-width: 767px) {
  .feature {
    margin-top: 6px;
  }
}
.feature__wrap {
  max-width: 1470px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .feature__wrap {
    padding: 0 24px;
  }
}
.feature__flex {
  display: flex;
  gap: 52px;
}
@media (max-width: 767px) {
  .feature__flex {
    flex-direction: column;
    gap: 15px;
  }
}
.feature__top {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .feature__top {
    flex-direction: column;
    gap: 25px;
  }
}
.feature__description {
  max-width: 400px;
}
@media (max-width: 1024px) {
  .feature__description {
    max-width: 100%;
  }
}
.feature__grid {
  display: grid;
  grid-template-columns: repeat(5, calc(20% - 19px));
  margin-top: 49px;
  gap: 24px;
}
@media (max-width: 1024px) {
  .feature__grid {
    grid-template-columns: repeat(3, calc(33.33% - 16px));
  }
}
@media (max-width: 767px) {
  .feature__grid {
    grid-template-columns: repeat(2, calc(50% - 8px));
    gap: 16px;
    margin-top: 34px;
  }
}
.feature-card {
  height: 268px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 44px;
  justify-content: center;
  position: relative;
  background-repeat: no-repeat;
  background-image: url("../../assets/image/features/red.png");
  width: 100%;
  background-size: 100% 100%;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .feature-card {
    height: 228px;
  }
}
@media (max-width: 767px) {
  .feature-card {
    height: 181px;
    padding: 0 3px;
    padding-bottom: 26px;
  }
}
.feature-card:hover::after {
  opacity: 1;
}
.feature-card::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
  width: 99%;
  height: 99%;
  box-shadow: 0px 1px 1px #8358FF, inset 0px 2px 2px #8358FF;
  border-radius: 16px;
  top: 0;
  left: 2px;
  opacity: 0;
  border-radius: 20px;
}
.feature-card__title {
  font-family: "Play";
  font-weight: 700;
  font-size: 24px;
  position: absolute;
  bottom: 30px;
  line-height: 28px;
  text-align: center;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #EBEBEB;
}
@media (max-width: 767px) {
  .feature-card__title {
    font-size: 18px;
    bottom: 14px;
  }
}
.feature-card__icon {
  width: 100%;
  max-width: 220px;
  max-height: 175px;
}
@media (max-width: 767px) {
  .feature-card__icon {
    max-width: 175px;
  }
}
.feature .Red {
  background-image: url("../../assets/image/features/red.png");
}
.feature .Red::after {
  box-shadow: 0px 1px 1px #E50648, inset 0px 2px 2px #E50648;
}
.feature .Green {
  background-image: url("../../assets/image/features/green.png");
}
.feature .Green::after {
  box-shadow: 0px 1px 1px #72F037, inset 0px 2px 2px #72F037;
}
.feature .Orange {
  background-image: url("../../assets/image/features/orange.png");
}
.feature .Orange::after {
  box-shadow: 0px 1px 1px #FF9B1A, inset 0px 2px 2px #FF9B1A;
}
.feature .Purple {
  background-image: url("../../assets/image/features/purlpe.png");
}
.feature .Purple::after {
  box-shadow: 0px 1px 1px #8358FF, inset 0px 2px 2px #8358FF;
}
.feature .Blue {
  background-image: url("../../assets/image/features/blue.png");
}
.feature .Blue::after {
  box-shadow: 0px 1px 1px #3BA1FF, inset 0px 2px 2px #3BA1FF;
}