.noticeSection .notice-bg {
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 11;
  padding: 20px;
}

.noticeSection .notice-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../../assets/img/notice/noticeBg.jpg") center/cover
    no-repeat;
  opacity: 0.5;
  z-index: -1;
}

/* .notice {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 20px;
    background: #fff;
    position: relative; 
    z-index: 1; 
} */

.noticeSection .noticeContent {
  display: flex;
  align-items: center;
}

.noticeSection .notice-date {
  background: var(--accent-color);
  color: var(--white-color);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.noticeSection .notice-date:hover {
  transform: scale(1.05);
}
.noticeSection .notice-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  padding-top: 5px;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.noticeSection .notice-title:hover {
  color: var(--secondary-color);
}

.noticeSection .notice-img {
  height: 400px;
  width: 90%;
  float: right;
  z-index: 22;
  position: relative;
}

@media (max-width: 1490px) {
  .noticeSection .notice-img {
    height: 320px;
    width: 90%;
    float: right;
  }
}
.noticeSection .noticePaddingTopBottom {
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 1440px) {
  .noticeSection .noticePaddingTopBottom {
    margin-top: 120px;
    margin-bottom: 122px;
    text-align: left;
  }
}
