.landing {
  position: relative;
  overflow: hidden;
  background-color: #000;
  color: white;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='10' cy='10' r='1' fill='rgba(255,255,255,1)'%3E%3C/circle%3E%3C/svg%3E");
  background-size: 50px 50px;
  animation: particles-animation 5s linear infinite;
}

@keyframes particles-animation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

.sub-title {
  font-size: 85px;
  min-width: fit-content;
}

@keyframes blink-caret {
  from,
  to {
    color: transparent;
  }
  50% {
    color: white;
  }
}

.landing-container {
  padding-bottom: 120px;
  padding-top: 135px;
  height: fit-content;
}

.landing-text {
  max-width: 285px;
  font-size: 18px;
}

.text {
  max-width: 50px;
  font-size: 70px;
}

.bg-blackcolor {
  background-color: #151515;
}

.title-card {
  font-size: 54px;
}

.card-text-container {
  padding-top: 138px;
}

.card-text {
  font-size: 18px;
  font-weight: 500;
}

.list-section-group {
  background-color: #000000;
}

.help-section {
  background-color: #000000;
}

.seperator-line::before {
  content: "";
  background-color: white;
  display: block;
  width: 1fr;
  height: 1px;
}

#first-seperator::before {
  content: "";
  background-color: white;
  display: block;
  width: 1fr;
  height: 1px;
}
#last-seperator::after {
  content: "";
  background-color: white;
  display: block;
  width: 1fr;
  height: 1px;
}

.accordion {
  --bs-accordion-button-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path fill='white' d='M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'/></svg>");
}

.accordion-design .accordion-button::after {
  background-image: var(--bs-accordion-button-icon);
}

.accordion-design .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'><path fill='white' d='M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 141.2V448c0 17.7 14.3 32 32 32s32-14.3 32-32V141.2L329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160z'/></svg>");
}

.accordion-design .accordion-button,
.accordion-collapse {
  background-color: #000000;
  color: white;
  font-weight: 500;
  font-size: 16px;
  border: none;
  box-shadow: none;
}

.accordion-design .accordion-button:not(.collapsed) {
  background-color: #000000;
  color: white;
  box-shadow: none;
  border: none;
}
.accordion-design .accordion-button:focus {
  box-shadow: none;
}

.fade-in-fix {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.fade-in-fix.fade-in-visible {
  opacity: 1;
}

@media (width >= 768px) {
  .landing {
    background-color: #000000;
    height: 1015px;
    overflow: hidden;
  }
  .container .img-fluid {
    height: 565px;
  }
  .desc-text {
    min-width: 399px;
  }
  .image-container {
    height: 400px;
    overflow: hidden;
  }
  .section-list-container {
    font-size: 20px;
    width: 500px;
    padding-top: 1px;
    padding-bottom: 5px;
  }
  .accordion-design .accordion-button,
  .accordion-collapse {
    background-color: #000000;
    color: white;
    font-weight: 500;
    font-size: 20px;
    border: none;
    box-shadow: none;
    height: 80px;
  }
}
@media (width <= 768px) and (width >= 325px) {
  .sub-title {
    font-size: 45px;
    padding-bottom: 10px;
  }

  .landing-text {
    max-width: fit-content;
  }
  .title-card {
    font-size: 30px;
  }
  .section-list-container {
    font-size: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

@media (width <= 325px) {
  .sub-title {
    font-size: 38px;
  }
  .title-card {
    font-size: 30px;
  }
  .section-list-container {
    font-size: 20px;
    padding-top: 1px;
    padding-bottom: 5px;
  }
}
