/*-------------------------------------Slider ---------------------*/
.SliderBox{
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 0;
    float: left;
    background-color: #ffffff;
}
.Slider{
    background-position: center center;
    position: absolute; 
    height: 100%;
    margin-bottom: 0;
    margin-top: 0;
    overflow: hidden;
    width: 100%;
    display: table;
    z-index: 0;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.SliderText{
    color: #ffffff;
    opacity: 1;
    position: absolute;
    text-align: right;
    width: calc(100% - 100px);
    padding: 0;
    z-index: 100;
    left: 50%;
    max-width: 1400px;
    transform: translate(-50%,0);
    bottom: 10%;
}
.SliderText p:nth-child(1){
    float: right;
    color: #ffffff;
    font-size: 4.6rem;
    font-weight: 600;
    line-height: 105%;
    margin: 0;
    width: 100%;
    text-align: right;
}
.SliderText p{
    float: right;
    width: 100%;
    text-align: right;
    color: #ffffff;
    padding: 5px 0;
    margin: 0;
    font-weight: 300;
    max-width: 1100px;
    line-height: 150%;
    opacity: 0;
    font-size: 2.6rem;
}
.SliderText p strong{
    font-weight: 600;
}
.mSlideBtnPrev{
    position: absolute;
    top: 50%;
    left: -100px;
    width: 30px;
    height: 72px;
    cursor: pointer;
    background-image: url('../../img/arrowPrev.png');
    z-index: 100;
    margin-top: -30px
}
.mSlideBtnPrevShow{
    left: 30px;
}
.mSlideBtnNext{
    position: absolute;
    top: 50%;
    right: -100px;
    width: 30px;
    height: 72px;
    cursor: pointer;
    background-image: url('../../img/arrowNext.png');
    z-index: 100;
    margin-top: -30px
}
.mSlideBtnNextShow{
    right: 30px;
}
.mSlideBtnPrev:hover, .mSlideBtnNext:hover{
    background-position: 0 -72px;
}
.mSliderNav{
    height: 18px;
    left: 0;
    position: absolute;
    text-align: left;
    bottom: 40px;
    width: 100%;
    z-index: 100;
}
.mSliderNavEl{
    width: 11px;
    height: 11px;
    display: inline-block;
    margin: 0 2px;
    cursor: pointer;
    background-color: #e8e8e8;
    transition-duration: .3s;
}
.mSliderNavEl:hover, .mSliderNavElActive{
    background-color: #ff0000;
}
.mSliderNavBox{
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}
.LinkMore{
}
.LinkMore a{
    color: #ffffff;
    padding: 15px 35px;
    background-color: #ff6600;
    display: inline-block;
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 3px;
    margin-top: 20px;
}