:root {
    --mws: 100%;
    --mhs: 500px;
    --textBorder: rgba(255, 255, 255, 0.5);
}



container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background-color: #454545;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.container-slider {
    display: block;
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.none-slide_title {
    display: none;
}


.slidersx {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
    transition: all 0.5s ease-out;
}

.slidex {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

    .slidex img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        transition: height 0.5s ease-in-out;
    }


.arrowsx {
    width: 50px;
    height: 100%;
    position: absolute;
    background-color: hsla(0, 0%, 27%, 0.66);
    z-index: 1000;
    cursor: pointer;
    transition: opacity 300ms ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}

    .arrowsx svg {
        fill: hsl(0, 34%, 82%);
        width: 60%;
        height: auto;
    }

.prev {
    right: 0;
}

.next {
    left: 0;
}

    .next svg {
        transform: rotate(180deg);
    }

.arrowsx.show {
    visibility: visible;
    opacity: 1;
}

.arrowsx.hide {
    visibility: hidden;
    opacity: 0;
}

.slide-top,
.slide-down {
    position: absolute;
    padding: 3%;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    z-index: 50;
    color: aliceblue;
}

.slide-top {
    font-weight: bold;
    font-size: 2.2rem;
    top: 10%;
    right: 50%;
    transform: translateX(50%) translateY(-50px);
    color: #FFF;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
    z-index: 50;
    white-space: nowrap;
    opacity: 0;
    transition: all 800ms ease-in-out;
}

.show-top {
    opacity: 1;
    transform: translateX(50%) translateY(0);
}

.slide-down {
    bottom: 10%;
    left: 5%;
    right: 5%;
    width: auto;
    padding: 15px 20px;
    box-sizing: border-box;
    text-align: right;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    border-radius: 8px;
    z-index: 50;
    opacity: 0;
    transform: translateY(50px);
    transition: all 800ms ease-in-out;
}

.show-down {
    opacity: 1;
    transform: translateY(0);
}
