@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
:root {
    --main-color: #f9d280;
    --theme-font2: 'Acme', sans-serif;;
}
body{
    background-color: #fbf8f2;
    color: #07121e;
}
img {
    max-width: 100%;
}
a {
    color: #1060EB;
    text-decoration: none;
}
.text-gray {
    color: var(--bs-gray);
}
h2 {
       font-weight: 700;
    font-size: 3rem;
    font-family: var(--theme-font2);
    margin-bottom: 1rem;
        letter-spacing: .125rem;
}
.fs-7 {
    font-size: .875rem;
}
.fs-8 {
    font-size: .75rem;
}

.scroller::-webkit-scrollbar {
  height: 3px;           /* Set the height of the scrollbar */
}
.scroller::-webkit-scrollbar-thumb {
  background: var(--bs-gray);      /* Scrollbar thumb color */
  border-radius: 4px;    /* Rounded corners */
}
.scroller::-webkit-scrollbar-thumb:hover {
  background: var(--color-theme2);      /* Darken thumb on hover */
}
.scroller::-webkit-scrollbar-track {
  background: #C3D59B;   /* Track color */
}

.fill-btn {
  background-color: #e4ad3c;
  border: 1px solid #e4ad3c;
  color: #01060f;
  border-radius: 2rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: .5rem;
  font-size: .875rem;
}
.fill-btn:hover {
  color: #01060f;
}

.outline-btn {
  background-color: transparent;
  border: 1px solid #e4ad3c;
  color: var(--main-color);
  border-radius: 2rem;
  padding: .75rem 1.5rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: .5rem;
  font-size: .875rem;
}
.outline-btn:hover {
  color: var(--main-color);
}

.custom-section {
  padding: 4rem 0
}

.bg-dark-section {
  background-image: linear-gradient(to right bottom, #02070f, #0b121b, #0f1a27, #112233, #112a3f);
  color: var(--main-color)
}
.bg-light-section {
  background-color: #f6eee1;
}
.heading-caption {
      font-weight: 500;
    margin-bottom: .5rem;
    font-size: .75rem;
}
.section-heading {
  font-size: 2.5rem;
      line-height: 2.5rem;
}
.section-description {
      color: #4a4a4a;
}
.custom-list {
    padding-left: 1.125rem;
}
.custom-list li {
      margin-bottom: .5rem;
    font-size: .875rem;
}

@media (max-width: 991px) {
  h2 {
    font-size: 20px;
  }
}