body {
  font-family: "Rubik", sans-serif !important;
}

header {
  z-index: 1;
}

.gradient-button {
  background: #50AD58;
  background: linear-gradient(90deg, rgb(80, 173, 88) 0%, rgb(140, 198, 67) 100%);
  border: 1px solid #50AD58;
}
.gradient-button:hover {
  background: #50AD58;
  background: linear-gradient(180deg, rgb(80, 173, 88) 0%, rgb(140, 198, 67) 100%);
  border: 1px solid #50AD58;
}

.bannerSection {
  background: #000;
  position: relative;
}
.bannerSection::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(assets/images/banner.png);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 800px) {
  .bannerSection::before {
    display: none;
  }
}
.bannerSection .blackButton {
  background: #383838;
  background: linear-gradient(125deg, rgb(56, 56, 56) 0%, rgb(26, 26, 26) 100%);
  padding: 15px 50px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  border-radius: 24px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 5px;
  max-width: 500px;
  margin: 80px auto 80px;
  position: relative;
  transition: all 0.5s;
}
.bannerSection .blackButton:hover {
  background: linear-gradient(185deg, rgb(56, 56, 56) 0%, rgb(26, 26, 26) 100%);
  transition: all 0.5s;
}
.bannerSection .blackButton::before {
  content: "";
  left: -12px;
  top: -11px;
  border-radius: 28px;
  border: 2px solid #4a4a4a;
  position: absolute;
  width: 105%;
  height: 126%;
}
.bannerSection .blackButton span {
  color: #94CF46;
  font-weight: 700;
}
.bannerSection .blackButton img {
  margin-right: 15px;
}
@media (max-width: 800px) {
  .bannerSection .blackButton {
    font-size: 18px;
    padding: 15px 15px;
  }
}

.iconList {
  margin: 0;
  padding: 0;
  border-top: 1px solid #707070;
}
.iconList .block {
  text-align: center;
  width: 100%;
  border-right: 1px solid #707070;
}
.iconList .block h4 {
  color: #fff;
}
.iconList .block:last-child {
  border-right: 0 !important;
}
@media (max-width: 800px) {
  .iconList .block {
    border-right: 0px solid #707070;
    border-bottom: 1px solid #707070;
  }
}

.innerbanner {
  background: #000;
  position: relative;
}
.innerbanner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(assets/images/pattern.svg);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.innerbanner .tags ul li {
  display: inline-block;
  margin-bottom: 10px;
}
.innerbanner .tags ul li .catButton {
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 8px 20px;
  display: inline-block;
  cursor: pointer;
}
.innerbanner .tags input:checked + label {
  border-radius: 8px;
  padding: 8px 20px;
  background: #50AD58;
  background: linear-gradient(90deg, rgb(80, 173, 88) 0%, rgb(140, 198, 67) 100%);
  border: 1px solid #50AD58;
}

.pricelist {
  list-style: disc;
  margin-left: 35px;
  min-height: 330px;
}
.pricelist li {
  font-size: 18px;
  padding-left: 10px;
  margin-bottom: 5px;
}