.notice{
    background-color: $primaryColor;
    position: relative;
    &::after{
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        height: 100%;
        width: 20%;
        background-color: #2459A8;
    }
    .notice_wrapper{
        position: relative;
        z-index: 2;
        .notice_board{
            background-color: #2459A8;
            height: 200px; 
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            h5{
                font-size: 26px;
                font-weight: 500;
                color: $white;
                text-align: center;
            }
        }
        .notice_item{
            display: flex;
            align-items: center;
            .notice_date{
                .date_box{
                    height: 100px;
                    width: 100px;
                    background-color: #FBFF33;
                    border-radius: 50%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                }
                .date_number{
                    font-size: 30px;
                    font-weight: 700;
                    color: #000;
                }
                .date_mounth{
                    font-size: 18px;
                    font-weight: 500;
                    color: #282828;
                    padding-top: 3px;
                }
            }
            .notice_content{
                padding-left: 12px;
                .notice_title{
                    font-size: 18px;
                    font-weight: 500;
                    color: $white;
                    text-transform: uppercase;
                }
                .notice_details{
                    font-size: 15px;
                    font-weight: 300;
                    color: #ccd2db;
                    line-height: 20px;
                    padding-top: 6px;
                }
            }
        }
        .swiper-button-prev{
            height: 45px;
            width: 45px;
            background-color: #f3f3f3c4;
            border-radius: 50%;
            position: absolute;
            right: 0;
            bottom: 0;
            &::after{
                font-size: 20px;
                color: $white;
            }
        }
        .swiper-button-next{
            height: 50px;
            width: 50px;
            background-color: #f3f3f392;
            border-radius: 50%;
            &::after{
                font-size: 20px;
                color: $white;
            }
        }
       
    }
}