*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: sans-serif;
}

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

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

.slider-container{
    width: 100%;
    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__title{
    text-shadow: 0rem 0.25rem 0rem black;
}

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

.prev-item{
    left:0;
    border-radius: 0 2.5rem 2.5rem 0;

}

.next-item:hover, .prev-item:hover{
    background:#cccc;
}

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

.next-item{
    right: 0;
    border-radius: 2.5rem 0 0 2.5rem;
}

.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: #cccc;
    padding: 0.4rem;
    font-size: 0rem;
    border-radius: 3.125rem;
}

.dot-active{
    background: rgb(33, 152, 67);
}

@media (max-width:1024px){


}

@media (max-width:768px){
html{
    font-size: 12px;
}

}

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