#section-hero img {
  width: 70%;
}

#section-hero .hero-header,
#section-hero .hero-description {
  text-align: center;
  margin-top: 30px;
}

#section-hero .hero-header {
  font-size: 1.5em;
}

#section-hero .hero-description {
  font-size: 0.9em;
}

#section-services,
#section-partner-courses,
#section-categories {
  background-color: #F1F6FA;
}

#section-services p {
  font-size: 14px;
}

.section-header {
  text-align: center;
}

.section-header-btn {
  display: none;
}

.section-description {
  font-size: 0.8em;
}


#container-categories {
  width: 100%;
  overflow: hidden;
}


#group-categories {
  display: flex;
  width: max-content;
  gap: 2rem;
  margin-right: 0rem;
  margin-left: 1rem;

}


#list-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  padding-left: 8px;
  padding-right: 8px;
  width: 94vw;
  transition: transform 0.3s ease-in-out;
}

#list-categories .col-lg-3,
#list-categories .col-6 {
  padding-left: 8px;
  padding-right: 8px;
}

#list-categories a {
  text-decoration: none;
  color: black;
}

.category-items {
  background: linear-gradient(to right, #999999, #d1d1d1);
  color: white;
  padding: 20px;
  border-radius: 12px;
  height: 140px;
  display: flex;
  flex-direction: column;
}

.category-title {
  font-size: 1rem;
}

@media (max-width: 1067px) {
    .category-title {
      font-size: 0.95rem;
    }
}

@media (min-width: 1300px) {
  .custom-wrap {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* .category-items:hover {
  background: linear-gradient(to right, #41bfe2, #61bdd6);
} */

.category-slider-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

.category-slider-indicators .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.category-slider-indicators .dot.active {
  background-color: #ffffff;
}


#next,
#prev {
  display: none;
}

footer {
  display: block;
}

/* @media (max-width: 992px) {
  #section-hero .input-group {
    display: none;
  }
} */

@media (min-width: 768px) {
  #section-hero img {
    margin-top: 30px;
  }

  #section-hero .hero-header,
  #section-hero .hero-description {
    text-align: left;
  }

  #section-hero .hero-header {
    font-size: 1.5em;
  }

  .section-header {
    text-align: left;
  }

  .section-header-btn {
    display: inherit;
  }

  #section-partner-courses .section-header-btn:hover {
    color: #007AB0 !important;
  }

  #container-categories {
    width: 97%;
    overflow: hidden;
  }

  #group-categories {
    display: flex;
    width: max-content;
    gap: 2rem;
    margin-right: 1rem;
    margin-left: 0rem;

  }

  #list-categories {
    display: flex;
    flex-wrap: wrap;
    padding-left: 8px;
    padding-right: 8px;
    width: 90vw;
    transition: transform 0.3s ease-in-out;
  }

  #next,
  #prev {
    display: block;
  }
}