/* SLIDER */

.carousel-container {
    border-radius: 0px;
    overflow: hidden;
    width: 100%;
    position: relative;
    box-shadow: 0 0 30px -20px #223344;
    margin: auto;
    z-index: 0;
    max-height: 500px;
}

.mySlides {
    display: none;
}

.mySlides img {
    display: block;
    width: 100%;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: auto;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    border-radius: 0px;
    background: rgba(173, 216, 230, 0.1);
    user-select: none;
    color: var(--pink) !important;
}

.next {
    right: 0;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.prev {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.prev:hover, .next:hover {
    background-color: rgba(173, 216, 230, 0.3);
}

.dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
}

.dots {
    cursor: pointer;
    height: 14px;
    width: 14px;
    margin: 0 4px;
    background-color: rgba(173, 216, 230, 0.2);
    backdrop-filter: blur(2px);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.active, .dots:hover {
    background-color: rgba(173, 216, 230, 0.8);
}

.animate {
    -webkit-animation-name: animate;
    -webkit-animation-duration: 1s;
    animation-name: animate;
    animation-duration: 2s;
}

@keyframes animate {
    from {
        transform: scale(1.1) rotateY(10deg);
    }
    to {
        transform: scale(1) rotateY(0deg);
    }
}
