body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 30px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #888;
}

.search {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  width: 250px;
}

.menu a {
  margin: 0 10px;
  font-weight: 500;
}

.header-btns .login {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  margin-right: 10px;
}

.header-btns .business {
  background: #ffd700;
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
}

.hero {
  text-align: center;
  padding: 30px;
  background: #f5f5f5;
}

.slogan {
  font-size: 28px;
  margin-bottom: 20px;
  background: #e0e0e0;
  padding: 20px;
  display: inline-block;
}

.join-btn {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  margin-bottom: 20px;
}

.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.categories button {
  border: 2px solid #000;
  background: white;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
}

.connects {
  background: #f1f1f1;
  padding: 20px;
  text-align: center;
}

.logo-slider {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  overflow-x: auto;
}

.logo-box {
  width: 60px;
  height: 60px;
  border: 2px solid black;
  line-height: 60px;
  font-weight: bold;
  border-radius: 10px;
}

.ads {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px;
}

.ad-box {
  width: 300px;
  height: 150px;
  border: 3px solid black;
  font-size: 40px;
  text-align: center;
  line-height: 150px;
  font-weight: bold;
  border-radius: 10px;
  background: #e0f7fa;
}

.featured,
.competitions {
  padding: 40px;
  background: #fafafa;
}

.card-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  width: 180px;
  border: 2px solid #000;
  padding: 10px;
  text-align: center;
  background: white;
}

.card button {
  margin-top: 10px;
  padding: 6px 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
}

.comp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.numbers {
  padding: 30px;
  text-align: center;
  background: #f9f9f9;
}

.counters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.counter {
  padding: 15px 25px;
  border: 2px solid #333;
  border-radius: 10px;
  background: #e8f5e9;
  font-weight: bold;
}

.footer {
  background: #eee;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.footer-col {
  max-width: 250px;
  margin-bottom: 20px;
}

.footer-col h3 {
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin: 6px 0;
  cursor: pointer;
}


@media (max-width: 1256px) {
  .button__business {
    display: none;
  }

  .icon-business {
    display: inline-flex;
  }
}

@media (max-width: 1095px) {
  .btn-login {
    display: none;
  }

  .icon-login {
    display: inline-flex;
  }
}




@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: scroll 20s linear infinite;
}

.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;

}

.header .logo {
  flex-shrink: 0;
  margin-right: 1rem;
}

.header .search {
  flex-grow: 1;

  margin: 0.5rem 0;

}


.header .menu-mobile-hidden {
  display: none;
}


.header .menu-mobile-show {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
  gap: 0.5rem;
  align-items: center;
}

.header .header-btns {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

.icon-svg {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
  fill: currentColor;
}

.hamburger {
  display: block;
  cursor: pointer;
  z-index: 60;
}

@media (min-width: 768px) {
  .header {
    flex-wrap: nowrap;
    padding: 1rem 2.5rem;
  }

  .header .logo {
    margin-right: 1.5rem;
  }

  .header .search {
    flex-grow: 0;
    width: 250px;
    margin: 0;
  }

  .header .menu-mobile-hidden {
    display: flex;
    flex-direction: row;
    width: auto;
    margin-top: 0;
    gap: 1.5rem;

  }

  .header .header-btns {
    width: auto;
    margin-top: 0;
    justify-content: flex-end;
  }

  .hamburger {
    display: none;

  }
}


.ad-box img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.scrollbar-hidden::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.scrollbar-hide {
  -ms-overflow-style: none;

  scrollbar-width: none;

}