.hero {
  background-color: #0165b3;
  min-height: 420px;
}

.hero-text .main-span {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
}

.hero-text p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  width: 80%;
}

.hero-text span {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  width: 60%;
  position: relative;
  display: inline-block;
  text-align: start;
}

@media screen and (max-width: 1399px) {
  .hero-text p {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .hero-text {
    width: 100%;
  }

  .hero-text span {
    width: 100% !important;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    height: auto !important;
    padding: 2rem 0rem;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4rem !important;
  }

  .hero-text {
    width: 100%;
    align-items: center !important;
    text-align: center;
  }

  .hero-text span {
    text-align: center;
  }
}

.deliberations-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.deliberations-track {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.deliberations-track .deliberation-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.deliberationbox {
  background-color: #f3f3f3;
  margin: 0;
  max-width: 350px;
  width: 100%;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all ease 0.2s;
}

/* .deliberationbox:hover {
  transform: translateX(-10px);
} */

.deliberationbox p {
  font-size: 14px;
}

.deliberation-foreas {
  font-size: 13px;
  color: #00b1ef;
  font-weight: bold;
  display: block;
  margin-top: 4px;
}

.deliberationbox.no-posts p {
  font-size: 15px;
}

.deliberationbox .status-indicator::before {
  margin-bottom: -2px !important;
  height: 12px !important;
  width: 12px !important;
  margin-right: 5px;
}

.heroboxlink {
  text-decoration: none;
}

.deliberationdate {
  color: #515058;
  text-decoration: none;
  font-size: 12px;
}

.hero-text a {
  background-color: #ffffff;
  color: #0165b3 !important;
  border-radius: 5px;
  width: 100%;
  max-width: 250px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  padding: 1rem;
  font-weight: 600;
  margin: 2rem 0;
  transition: all ease 0.2s;
}

.hero-text a:hover {
  background: #003476;
  color: #fff !important;
}

.hero-slides-col {
  align-items: stretch !important;
}

.hero-slides-col .deliberations-slider {
  flex: 1;
  width: 100%;
}

.hero-slides-col .deliberations-track {
  height: 100%;
}

.hero-slides-col .deliberation-slide {
  height: 100%;
}

.hero-slides-col .deliberationbox,
.hero-slides-col .deliberationbox.no-posts {
  max-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider-controls {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 8px;
}

.slider-prev,
.slider-next {
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  outline: none !important;
  transition: all ease-in-out 0.2s;
}

.slider-prev {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.slider-next {
  background-color: #073476;
  border: 1px solid #073476;
  color: #fff;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: #00B0F0;
  border-color: #00B0F0;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .hero-content {
    padding: 2rem 0;
  }

  .deliberationbox {
    max-width: 100%;
  }
}