@charset "UTF-8";


.announcement-carousel.slick-slider{
    margin-bottom: 20px;
}
.announcement-content{
    padding: 0;
    padding-top: 5px;
    
    position: relative;
    overflow: hidden;
}
.announcement-content::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #eaedffa3;
    backdrop-filter: blur(10px);
}
.announcement-content-bg {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.announcement-content button.slick-arrow{
    display: none !important;
    opacity: 0;
    width: 0;
    height: 0;
}
.announcement-item{
    background-color: #fff;
    overflow: hidden;
    display: block;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 10px;
    padding: 0;
    border-radius: 4px;
    aspect-ratio: 8 / 5;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.announcement-item:hover {
    cursor: pointer;
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -ms-transform: scale(1.07);
    -o-transform: scale(1.07);
    transform: scale(1.07);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
ul.announcement-dots button::before {
    content: "";
    width: 0;
    height: 0;
}
ul.announcement-dots button {
    border: 0;
    background-color: #c0c0c0;
    height: 3px;
    padding: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.announcement-dots li:hover button,
.announcement-dots li.slick-active button {
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.announcement-dots li:hover button::before,
.announcement-dots li.slick-active button::before {
    color: transparent;
}