.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide.notices_slider_wrap {
  padding: 100px 20px 50px 20px;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
}
@media only screen and (min-with: 768px) {
  .swiper-slide.notices_slider_wrap {
    padding: 150px 50px 50px 50px;
  }
}
@media only screen and (min-with: 992px) {
  .swiper-slide.notices_slider_wrap {
    padding: 150px 50px 50px 50px;
  }
}
.notices_slider_inner {
  width: 100%;
  display: flex;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  text-align: left;
  padding: 10px 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: end;
  flex-direction: column;
  border-radius: 3px;
}
@media only screen and (min-width: 768px) {
  .notices_slider_inner {
    width: 70%;
  }
}
@media only screen and (min-width: 992px) {
  .notices_slider_inner {
    width: 60%;
  }
}
.notices_slider_inner h1 {
  display: inline;
  color: white;
  font-size: 18px;
  line-height: 1.5;
  font-family: Inter;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .notices_slider_inner h1 {
    font-size: 24px;
  }
}
.swiper-pagination-bullet {
  background-color: white;
  width: 20px;
  height: 20px;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  width: 20px;
  height: 20px;
  background-color: var(--e-global-color-primary);
}
.notice_marquee_wrap {
  display: flex;
  background: #f3f3f3;
  padding: 7px;
  align-items: center;
}
.notice_marquee_title h1 {
  font-size: 19px;
  font-weight: 500;
  font-family: "Inter";
  padding-right: 5px;
  width: max-content;
  line-height: 1.3em;
}
.notice_marquee_desc {
  width: 100% !important;
}
.notice_marquee_desc marquee {
  font-size: 17px;
  color: #212529;
  font-family: "Inter";
  font-weight: 400;
  line-height: 1em;
}
/* Notice slider button wrap */
.notices_button_wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (min-width:768px){
  .notices_button_wrap{
    flex-direction: row;
    margin-top: 30px;
    align-items: center;
  }
}
.notices_button_wrap a{
  font-size: 15px;
  font-weight: 500px;
  font-family: "Inter";
  color: white;
  background: var(--e-global-color-primary);
  padding: 12px 20px;
  border-radius: 5px;
  outline: none;
  border: none;
  transition: 0.3s;
  z-index: 9999;
  text-decoration:none;
}
.notices_button_wrap a:hover{
  background:#1E76BC !important
}