.page_home .slideshow-wrapper {
position:relative;
margin-top: 1rem;
}

.page_home .quotes {
position: relative;
margin: auto;
text-align: center;
min-height: 9rem;
width: 85%;
padding: 1rem 1rem;
}

.page_home .quotes p {
    display: none;
    line-height: 1.6;
    margin: 0;
    position: relative;
    width: 85%;
    min-height: 9rem;
    font-size: 1.2rem;
    box-shadow: 1rem 1rem 1rem #0000003d;
    border-radius: 0.5rem;
    background-color: #f1f8f5;
    padding: 1rem;
    padding-inline: 2.5rem;
}

.page_home .quotes p.active {
display: block;
animation: fade 0.5s ease-in-out;
}

@keyframes fade {
from { opacity: 0; }
to { opacity: 1; }
}

/* Arrows */
.page_home .arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.5);
color: white;
border: none;
border-radius: 50%;
width: 35px;
height: 35px;
font-size: 18px;
cursor: pointer;
transition: background 0.3s;
}
.page_home .arrow:hover {
background: rgba(0,0,0,0.8);
}
.page_home .arrow.left {
left: 0px; /* adjust spacing */
}
.page_home .arrow.right {
right: 0px;
}

@media screen and (max-width:640px){
    .page_home .quotes {
        padding: 0px;
        margin: 0px;
    }
}