#notice-section{
    width: 100%;
    margin-top: 10vh;
}

.notice-slide-container{
    max-width: 1400px;
    height: 550px;
    width: 100%;
    padding: 12px;
}

.notice-slide-content{
    padding: inherit;
}

.notice-card{
    // width: 350px !important;
    height: 100%;
    border-radius: 10px;
    background-color: #e1ffdb;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.notice-image-content, .notice-card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notice-card-content{
    padding: 12px;
}


.notice-card-image{
    position: relative;
    transition: 0.3s;
}

.notice-image-content img {
    height: 360px;
    width: 360px;
}

.notice-title{
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.notice-subtitle{
    font-size: 14px;
    color:  #555;
}

.notice-date{
    font-size: 12px;
    color:  #555;
}
.notice-title, .notice-subtitle, .notice-date{
    text-align: center;
}

.swiper-button {
    position: absolute;
    top: 50%;
    border: none;
    width: 50px;
    height: 50px;
    margin: 1rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    color: #DDFFD4;
    background-color: #12491C;
    transition: background-color 0.3s ease;
}

.swiper-button:hover {
    color: #12491C;
    background-color: #DDFFD4;
}

.notice-button-next {
    right: 0;
    align-self: flex-end;
}

[aria-disabled="true"] { 
    display: none;
 }



@media (min-width: 1024px) and (max-width: 1440px) {
  .notice-card{
  	margin:auto !important ;
  }
}