 

.section-title{
    font-size: 3.5rem;
    width: 100%;
    padding: 2rem 1rem;
    text-align: center;
}

.section-container{
    max-width: 1550px;
    margin: 0 auto;
    height: 600px;
}

.slider-container{
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}
.slider-item{
    height: 25rem;
    max-height: 37.5rem;
    
}

.slider-prev{
    animation: arrowPrev .7s;
    -webkit-animation: arrowPrev .7s;
}

.slider-next{
    animation: arrowNext .7s;
    -webkit-animation:arrowNext .7s;
}

@keyframes arrowNext{
    0%{opacity:0;
        right:-100%;}
    100%{right:0%;
        opacity:1;}
}

@keyframes arrowPrev{
    0%{opacity:0;
        left:-100%;}
    100%{left:0%;
        opacity:1;}
}

@-webkit-keyframes arrowPrev{
    0%{opacity:0;
        right:-100%;}
    100%{right:0%;
        opacity:1;}
}

@-webkit-keyframes arrowNext{
    0%{opacity:0;
        left:-100%;}
    100%{left:0%;
        opacity:1;}
}

.item-title__container{
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,rgb(0 0 0 / 0%),rgb(0 0 0 / 69%));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item-background{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}

.item-title__title{
    text-align: center;
    font-size: 3rem;
    padding: 0rem 3rem;
    color: white;

}

.item-title__p{
    text-align: center;
    font-size: 1rem;
    padding: 3rem 3rem;
    color: white;

}


.item-title__title{
    text-shadow: 0rem 0.25rem 0rem black;
}

.arrow{
    background: none;
    position: absolute;
    z-index: 3;
    font-size: 3rem;
    height: 4rem;
    padding: 0 1.5rem;
     font-weight: bold;
     color:rgb(180, 180, 180);
     top: 45%;
    transition: all .2s;
    border: none;
}

.prev-item{
    left:0;
    border-radius: 0 2.5rem 2.5rem 0;
    color:rgb(180, 180, 180);

}

.next-item:hover, .prev-item:hover{
 }

.prev-item:after{
    content:"<"
}

.next-item{
    right: 0;
    border-radius: 2.5rem 0 0 2.5rem;
    color:rgb(180, 180, 180);

}

.next-item:after{
    content:">"
}

.pagination {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    gap: 1rem;
    top: 0;
    list-style: none;
    padding: 2rem;
    align-items: flex-end;
    justify-content: center;
}

.dot {
    border: none;
    background: #ab3131cc;
    padding: 0.4rem;
    font-size: 0rem;
    border-radius: 3.125rem;
}

.dot-active{
    background: red;
}

@media (max-width:1024px){


}

@media (max-width:768px){
 

}

@media (max-width:480px){
    .item-title__title, .arrow{
        font-size: 2.5rem;   
    }
}



