/* Lines Before */
.goods-box::before,
.contacts-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(135deg, rgba(20, 155, 209, 0.8), rgba(6, 100, 207, 0.8));
  background: -moz-linear-gradient(135deg, rgba(20, 155, 209, 0.8), rgba(6, 100, 207, 0.8));
  background: -o-linear-gradient(135deg, rgba(20, 155, 209, 0.8), rgba(6, 100, 207, 0.8));
  background: linear-gradient(135deg, rgba(20, 155, 209, 0.8), rgba(6, 100, 207, 0.8));
  z-index: 0;
  opacity: 0.8;
}

.offer::before, .why-choose::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../asset/home//lines.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  opacity: 0.8;
}
/* Section */

.section-title {
  color: var(--theme-primary);
  font-weight: 600 !important;
}

.section-subtitle {
  background-color: var(--theme-primary);
  width: max-content;
  padding: 0.2rem 0.8rem;
  border-radius: 3rem;
  text-transform: uppercase;
}

.line {
  width: 50%;
  height: 2px;
  background-color: var(--theme-primary);
}

/* Animation */
.wave-up-down {
  animation: wave 3s infinite alternate ease-in-out;
}

@keyframes wave {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(-20px);
  }
}

/* Check List */
.check-list li::before {
  content: "";
  position: relative;
  background-image: url(../asset/check-badge.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  display: inline-flex;
  bottom: -6px;
}

/* bookmark */
.bookmark {
  background-image: url("../asset/bookmark.jpg");
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-attachment: fixed;
  -moz-background-attachment: fixed;
  -o-background-attachment: fixed;
  background-attachment: fixed;
}

.bookmark::before {
  content: "";
  position: absolute;
  background: -webkit-linear-gradient(135deg, rgba(20, 155, 209, 0.8), rgba(6, 100, 207, 0.8));
  background: -moz-linear-gradient(135deg, rgba(20, 155, 209, 0.8), rgba(6, 100, 207, 0.8));
  background: -o-linear-gradient(135deg, rgba(20, 155, 209, 0.8), rgba(6, 100, 207, 0.8));
  background: linear-gradient(135deg, rgba(20, 155, 209, 0.8), rgba(6, 100, 207, 0.8));
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.bookmark a {
  color: #fff;
}

/* goods-box */
.goods-box {
 background-image: url(../asset/bg-goods.jpg);
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
  position: relative;
  overflow: hidden;
}

.goods-box .card {
  background-color: rgba(255, 255, 255, 0.09) !important;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  color: #ffffff;

  @supports not ((backdrop-filter: blur(3px)) or (-webkit-backdrop-filter: blur(3px))) {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.goods-box .list-group-item {
  background-color: transparent !important;
  color: #ffffff;
}
