.feature-bg {
}
.feature-global {
  margin: 120px 31px;
}
.feature-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}
.feature-content-bottom,
.feature-content-top {
  display: flex;
  gap: 32px;
  flex-wrap: nowrap;
}

.feature-item {
  background-color: #fcfcfd;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  flex: 1;
  border: 1px solid #eaecf0;
  border-radius: 32px;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.feature-item:hover {
  box-shadow: 0px 4px 20px 0px #0000000f;
  
}

.col-md-6 > .feature-item-img img {
  width: 100%;
  border-radius: 32px;
}
.col-md-4 > .feature-item-img img {
  width: 100%;
  border-radius: 32px;
}

.feature-content-bottom > .feature-item:last-child {
  background: url('../img/feature/Nền\ tính\ năng\ khác.png') no-repeat center center / cover;
  border: 1px solid #eaecf0;
  display: flex;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  align-self: stretch;
  position: relative;
}

.feature-content-bottom > .feature-item:last-child::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(
    179.15deg,
    rgba(255, 255, 255, 0.5) 0.73%,
    rgba(255, 255, 255, 0.5) 99.33%
  );
  pointer-events: none;
  z-index: 1;
}
.feature-content-bottom > .feature-item:last-child > * {
  position: relative;
  z-index: 2;
}

.feature-content-bottom > .feature-item:last-child .feature-item-img {
  overflow: hidden;
  height: 202px;
  border-radius: 32px;
}

.feature-content-bottom > .feature-item:last-child .feature-item-img img {
  object-fit: contain;
  width: 100%;
  height: auto;
  object-position: top center;
}

.feature-item-content {
  margin: 8px 12px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.feature-item-title {
  font-family: "Roboto";
  font-weight: 500;
  font-size: var(--text-size-3);
}
.feature-item-desc {
  font-family: "Roboto";
  font-size: var(--text-size-2);
  color: #667085;
}
.feature-item-content-title {
  font-family: "Roboto";
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
}
.feature-item-content-title span {
  font-weight: 700;
  font-size: 84px;
  line-height: 80px;
  background: linear-gradient(109.61deg, #98A2B3 6.63%, #051F41 96.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.feature-item-content-title div {
  font-size: var(--text-size-4);
  white-space: nowrap;
}
.feature-item-content-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.feature-btn {
  margin: 0 auto;
  padding-top: 16px;
}
@media (max-width: 1300px) and (min-width: 1025px) {
  .feature-item-content-icon img {
    width: 35px;
    height: 35px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .feature-content-bottom > .feature-item:last-child .feature-item-img {
    height: 80px;
  }
  .feature-item-content-title {
    background: rgba(255, 255, 255, 0.4);
  }
  .feature-item-content-icon {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, 0px);
  }
  .feature-item-content-icon img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .feature-global {
    margin: 33px 0;
  }
  .feature-content {
    margin-top: 32px;
    gap: 18px;
  }
  .feature-content-top,
  .feature-content-bottom {
    flex-direction: column;
    gap: 18px;
    margin: 0;
  }
  .feature-item {
    padding: 12px;
    gap: 8px;
    width: 100%;
  }

  .col-md-4 > .feature-item-img img,
  .col-md-6 > .feature-item-img img {
    width: 100%;
  }
  .feature-item-title {
    font-size: var(--text-size-2);
  }
  .feature-item-desc {
    font-size: var(--text-size-1);
  }
  .feature-item-content-title {
    bottom: 0px;
  }
  .feature-item-content-title > span {
    font-size: 64px;
	line-height: 65px;
  }
  .feature-item-content-title > div {
    font-size: var(--text-size-3);
  }
  .feature-item-content-icon img {
    width: 52.72px;
    height: 52.72px;
  }
  .feature-btn {
    padding-top: 14px;
  }
  .feature-content-bottom > .feature-item:last-child .feature-item-img {
    height: 160px;
    width: 100%;
  }
}


