/*!**********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/(marketing)/home.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************/
.news-ticker-wrapper {
  position: relative;
  background: linear-gradient(90deg, #607d8b, #607d8b);
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.news-ticker-label {
  position: absolute;
  left: 0;
  background: #1e2022;
  color: white;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.news-ticker-label i {
  margin-right: 8px;
}

.news-ticker {
  width: 100%;
  overflow: hidden;
  margin-left: 140px;
}

.news-ticker-content {
  display: flex;
  white-space: nowrap;
  padding-right: 100%;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  padding: 0 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.ticker-item:hover {
  color: #1e2022;
  transform: scale(1.05);
}

.ticker-bullet {
  margin-right: 10px;
  font-size: 16px;
}

.ticker-loading,
.ticker-error {
  color: white;
  padding: 0 20px;
  font-size: 14px;
}

.news-ticker:hover .news-ticker-content {
  animation-play-state: paused;
}

.navbar-area {
  margin-top: 16px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .news-ticker-label {
    padding: 0 15px;
    font-size: 12px;
  }
  .news-ticker {
    margin-left: 110px;
  }
  .ticker-item {
    font-size: 13px;
    padding: 0 20px;
  }
  .news-ticker-content {
    animation-duration: 40s;
  }
}

@media (max-width: 480px) {
  .news-ticker-wrapper {
    height: 35px;
  }
  .news-ticker-label {
    padding: 0 10px;
    font-size: 11px;
  }
  .news-ticker {
    margin-left: 90px;
  }
  .ticker-item {
    font-size: 12px;
    padding: 0 15px;
  }
}

