/*-------------------------------------Slider ---------------------*/
.SliderBox{
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 0;
}
.Slider{
    background-position: right 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: 100%;
}
.SliderText{
    color: #ffffff;
    display: block;
    margin: 0 auto;
    opacity: 1;
    position: absolute;
    text-align: left;
    top: 50%;
    transform: translate(0, -50%);
    vertical-align: middle;
    width: 50%;
    padding: 0 50px;
    z-index: 100;
    left: 0;
}
.SliderText h2{
    color: #000;;
    font-size: 4rem;
    font-weight: 600;
    line-height: 105%;
    margin: 0;
    width: 100%;
}
.SliderText p{
    color: #6f6f6f;
    padding: 5px 0;
    margin: 0;
    font-weight: 600;
    line-height: 200%;
    opacity: 0;
    font-size: 1.5rem;
    letter-spacing: 4px;
}
.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{
    right: 30px;
    position: absolute;
    text-align: left;
    bottom: 58px;
    z-index: 100;
}
.mSliderNavEl{
    display: inline-block;
    cursor: pointer;
    transition-duration: .3s;
    width: 15px;
    height: 15px;
    background-color: #f1f2ec;
    margin-left: 11px;
}
.mSliderNavEl:hover, .mSliderNavElActive{
    background-color: #ef7c00;
}
.mSliderNavBox{
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
}
.LinkMore{
    text-align: center;
}
.LinkMore a{
    color: #ffffff;
    padding: 13px 47px 13px 35px;
    background-color: #fff;
    display: inline-block;
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 20px;
    position: relative;
    color: #000;
    letter-spacing: normal;
    text-transform: uppercase;
}
.LinkMore a:after{
    content: '>';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    color: #f1592a;
    line-height: 100%;
    font-weight: 800;
}