.btn-primary {
  color: #fff;
  background-color: #efb626;
  border-color: #efb626;
}

.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: #b48025;
  border-color: var(--bs-btn-active-border-color);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #ffc626;
  border-color: #efb626;
  color: #fff;
}

.slideContent {
  user-select: none;
}

.icon-box {
  background: var(--bs-primary);
  color: white;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  text-decoration: none;
  user-select: none;
}

.info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.info-box svg {
  font-size: 60px;
  color: black;
  border-radius: 50%;
  padding: 5px;
  border: 4px dotted #efb626;
}

.info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

#hero h5 {
  color: #fff;
}

#hero h5 span {
  color: #efb626;
}

#hero h5 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  font-family: "Poppins", sans-serif;
}

#hero h6 {
  color: #efb626;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

.navbar ul li a {
  position: relative;
}

.navbar ul li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #efb626;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .nav-menu li:hover a:before, .nav-menu .active a:before {
  visibility: visible;
  width: 100%;
}

@media screen and (min-width: 0px) and (max-width: 360px) {
  #hero h5 {
    font-size: 24px;
  }
}

@media screen and (min-width: 0px) and (max-width: 360px) {
  #hero h6 {
    font-size: 20px;
  }
}

