@charset "utf-8";

.slider-section {
    position: relative;
}

.slider-left-arrow,
.slider-right-arrow {
    position: absolute;
    max-width: 44px;
    z-index: 10;
    height: calc(100% - 16px);
    background: rgba(0, 0, 120, 0.5);
    text-align: center;
    align-content: center;
    cursor: pointer;
}

.slider-left-arrow img,
.slider-right-arrow img {
    width: 30%;
}

.slider-left-arrow {
    top: 0;
    left: 0;
}

.slider-right-arrow {
    top: 0;
    right: 0;
}

.slick-slide img {
    width: 97%;
    margin: auto;
    height: auto;
}

.slick-active + div {
    mask-image: linear-gradient(rgba(0, 0, 120, 1), rgba(0, 0, 120, 1));
}

.slide-dots {
    display: flex;
    justify-content: center;
    margin: 0 15%;
}

.slide-dots li {
    width: calc(100% / 3);
    text-align: center;
}

.slide-dots li button {
    width: 95%;
    border: none;
    height: 4px;
    background: #9e9ecc;
}

.slide-dots .slick-active button {
    background: #000078;
}