/*********************************/

.slider_one_big_picture {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    user-select: none;
    overflow: hidden;
}

.slider_one_big_picture > * {
    transition: ease all 1s;
}

.slider_one_big_picture .hidden {
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider_one_big_picture .active {
    opacity: 1;
    position: absolute;
    top: 0px;
    left: 0%;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slider_one_big_picture .prev1,
.slider_one_big_picture .next1 {
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0%;
    width: 0px;
    height: 100%;
    z-index: 0;
}

.slider_one_big_picture .next1 {
    left: 100%;
}

.slider_one_big_picture .prev2,
.slider_one_big_picture .next2 {
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0%;
    width: 0px;
    height: 100%;
    z-index: 0;
}

.slider_one_big_picture .next2 {
    left: 100%;
}

/*********************************/


/*********************************/



.nav_indicators {
    position: absolute;
    bottom: 2.5%;
    right:2.5%;
    text-align: center;
    z-index: 50000;
}

.nav_indicators ul {
    position: static;
    display: inline-block;
    padding: 0;
}

.nav_indicators ul li {
    position: static;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    padding: 0;
    overflow: hidden;
    background-color: #fff;
    color: rgba(0, 0, 0, 0);
    border-radius: 50%;
    cursor: pointer;
}

.nav_indicators ul li.active {
    position: static;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    padding: 0;
    background-color: #93aed6;
    color: rgba(0, green, blue, alpha);
    border-radius: 50%;
    cursor: pointer;
}

.next_button,
.prev_button {
    position: absolute;
    top: 40% !important;
    right:0 !important;
    /* left: 100% !important;
    margin: -15px 0 0 -25px !important; */
    width: 67px !important;
    height: 78px !important;
    /* border: 1px solid #000 !important; */
    /* background: #fff !important; */
    opacity: 0.25 !important;
    z-index: 5000 !important;
    cursor: pointer;
    background-image: url(../img/next.png);
    background-repeat: no-repeat;
    background-size: 67px 78px ;
    
}

.prev_button {
    position: absolute;
    left: 0% !important;
    background-image: url(../img/prev.png);
    
}
.slider_one_big_picture>div a{
    display: block;
    width:100%;
    height: 400px;
}
.next_button:hover,
.prev_button:hover {
    opacity: 1 !important;
}
.next_button:after,
.prev_button:after {
    content: "";
    position: absolute;
    /* top: 50%;
    left: 50%; */
    width: 1px;
    height: 1px;
    /* margin-top: -10px; */
}

.next_button:after {
    /* border-left: 15px solid #000;
    border-right: 15px solid transparent;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    margin-left: -5px; */
}

.prev_button:after {
    /* border-right: 15px solid #000;
    border-left: 15px solid transparent;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    margin-left: -25px; */
}


div.slider > div:not(.nav_indicators):not(.next_button):not(.prev_button) {
    text-align: center;
    box-sizing: border-box;
    /* font-size: 150px; */
}


.infoBar{
    background-color: rgba(17, 71, 150, 0.8);
    position: absolute;
    z-index: 999;
    bottom:0;
    height:90px;
    font-size: 14px;
    width:100%;
    text-align: left;
    color:#fff;
    padding:0 2.5%;
}
.infoBar>p{
    font-size: 26px;
    font-weight: bold;
    width:80%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-bottom: 10px;
    padding-top: 10px;

}
.infoBar>p+span{
    display: block;
    width:80%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}