*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    width: 100%;
    height: 100vh;
    background: grey;
    display:flex;
    align-items: center;
    justify-content: center;
}

.carousel{
    display:flex;
    width: 80%;
    height: 400px;
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    /* background: black; */
}

.left, .right{
    position: absolute;
    top: 50%;
    height: 60px;
    width: 30px;
    transform: translateY(-50%);
    border: 0px;
    background: #00000020;
    color: white;
    font-size: 20px;
    font-family: sans-serif;
    border: 1px solid #ffffff50;
    transition: all 250ms ease;
    z-index: 5;
    display:flex;
    align-items: center;
    justify-content: center;
}

.left img, .right img{
    height: 30px;
    filter: invert(80%);
}

.right img{
    transform: rotate(180deg);
}

.left:hover, .right:hover{
    background: #00000060;
}

.left{
    left: 0;
    border-radius: 0 4px 4px 0;
}

.right{
    right: 0;
    border-radius: 4px 0 0 4px;
}

.slide-page{
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display:flex;
    gap: 15px;
}

.page-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    box-shadow: 3px 3px 5px #00000060;
}

.active-dot{
    transform: scale(1.2);
}

.slide{
    width: 100%;
    height: 100%;
    position: relative;
    display:none;
}

.show{
    display:block;
}

.slide p{
    width: 60%;
    position: absolute;
    z-index: 2;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 20px;
    background: #00000050;
    border-radius: 8px;
    padding: 5px 10px;
    color: white;
    filter: blur(0.5);
    /* box-shadow: 15px 15px 15px #00000050,
                -15px -15px 15px #00000050; */
}

.slide p::before{
    content: open-quote;
    position: absolute;
    left: 0;
    top: -20px;
    transform: scale(4);
    color: #ffffff60;
}

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}