*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.section-container{
    width: 100%;
    max-width: 3000px;
    margin: 0 auto;
}

.slider-container{
    width: 100%;
    height: auto;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background: #000000;
}
.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;
    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;
}
.item-title__container h2 {
    position: relative;
    display: block;
    float: left;
    left: 55%;
    width: 40%;
    text-align: left;
}
.item-title__container p {
    position: relative;
    display: block;
    float: left;
    margin-top: 20px;
    left: 55%;
    width: 40%;
    text-align: left;
}

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

.item-title__title{
    font-size: 3.5rem;
    padding: 0rem 2rem;
    color: white;

}
.item-contenido{
    font-size: 1rem;
    padding: 0rem 2rem;
    color: white;

}

.arrow{
    position: absolute;
    z-index: 3;
    font-size: 3rem;
    height: 7rem;
    padding: 0px 1.8rem;
    background: transparent;
    font-weight: bold;
    color: white;
    top: 44%;
    transition: all .1s;
    border: none;
}

.prev-item{
    left: 0;
    background-image: url(../img/prev.png);
    background-size: 40% 45%;
    background-position: center;
    background-repeat: no-repeat;
}
.prev-item:hover {
    background:rgba(173, 173, 174, 0.5);
    border-radius: 0px 20px 20px 0px;
    background-image:url('../img/prev.png');
    background-size: 38% 50%;
    background-position: center;
    background-repeat: no-repeat;
}
/*
.prev-item:after{
    content:"<"
}
*/
.next-item{
    right: 0;
    background-image:url('../img/next.png');
    background-size: 40% 45%;
    background-position: center;
    background-repeat: no-repeat;
}
.next-item:hover {
    background:rgba(173, 173, 174, 0.5);
    border-radius: 20px 0px 0px 20px;
    background-image:url('../img/next.png');
    background-size: 38% 50%;
    background-position: center;
    background-repeat: no-repeat;
}

/*
.next-item:after{
    content:">"
}
*/
.pagination {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    gap: 1rem;
    top: 0;
    list-style: none;
    padding: 1rem;
    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: #ffff;
}

@media (max-width:1024px){


}

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

}

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



