.slider{
    max-width: 100%;
    position: relative;
    height: 250px;
}
.slider .item img {
    object-fit: cover;
    width: 100%;
    height: 250px;
    border: none !important;
    box-shadow: none !important;
}
.slider .prev, .slider .next {
    cursor: pointer;
    position: absolute;
    top: 0;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}
.slider .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.slider .prev:hover,
.slider .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.slideText {
    position: absolute;
    color: #fff;
    font-size: 26px;
    left: 12px;
    top: 12px;
    text-shadow: 0px 0px 10px #000, 0 0 1em #000;
    font-family: Impact;
}
.slider-dots {
    text-align: center;
    position: absolute;
    z-index: 2;
    bottom: 5px;
    width: 70px;
    margin: 0px calc(50% - 70px / 2);
}
.slider-dots_item{
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 2px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    border: 2px solid #DDD;
}
.active,
.slider-dots_item:hover {
    background-color: #CCCCCC;
}
.slider .item {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name:  fade;
    animation-duration: 1.5s;
}
@-webkit-keyframes fade {
    from {
        opacity: 0.4
    }
    50% {
        opacity: 0.8
    }
    to {
        opacity: 1
    }
}
@keyframes fade {
    from {
        opacity: 0.4
    }
    50% {
        opacity: 0.8
    }
    to {
        opacity: 1
    }
}


.slider-container {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}
.logotyped {
    height: ;
    font-size: 35px;
    color: #FFF;
    padding: 0px 0px 0px 0px;
    margin: 0;
    margin-bottom: ;
    text-shadow: none;
    height: 40px;
}
