/*-------------------------------------Slider ---------------------*/
.SliderBox{
    margin: 0 auto;
    position: relative;
    width: 100%;
    z-index: 0;
    float: left;
}
.Slider{
    background-position: center center;
    position: absolute;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
    display: table;
    z-index: 0;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid #d5d8d9;
}
.Slider img{
    float: left;
    height: 96vh;
    margin: 2vh 0 0 43%;
    background-size: auto 150%;
    background-position: 0 0;
}
.SliderTextBox{
    position: absolute;
    text-align: left;
    width: 600px;
    z-index: 100;
    left: 0;
    bottom: 10%;
    font-family: 'Lato', sans-serif;
    color: #7e7e7e;
    font-size: 1.6rem;
    padding-left: 50px;
}
.SliderText{
    color: #ffffff;
    display: block;
    margin: 0 auto;
    opacity: 1;
    position: absolute;
    top: 50%;
    vertical-align: middle;
    z-index: 100;
    left: 50%;
    transform: translate(-50%, 0%);
}
.SliderText h2{
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 105%;
    margin: 0 0 15px;
    width: 90%;
    max-width: 1200px;
}
.SliderText p{
    text-align: left;
    color: #ffffff;
    padding: 5px 0;
    margin: 0 0 25px;
    font-weight: 300;
    max-width: 1100px;
    line-height: 150%;
    font-size: 1.5rem;
    float: left;
}
.SliderText p strong{
    font-weight: 600;
}
.mSlideBtnPrev{
    position: absolute;
    top: 50%;
    left: 30px;
    width: 51px;
    height: 65px;
    cursor: pointer;
    background-image: url('../../img/arrowPrev.png');
    z-index: 100;
    margin-top: -24px;
    transition-duration: .3s;
}
.mSlideBtnPrevShow{
    left: 30px;
}
.mSlideBtnNext{
    position: absolute;
    top: 50%;
    right: 30px;
    width: 51px;
    height: 65px;
    cursor: pointer;
    background-image: url('../../img/arrowNext.png');
    z-index: 100;
    margin-top: -24px;
    transition-duration: .5s;
}
.mSlideBtnNextShow{
    right: 30px;
}
.mSlideBtnPrev:hover{
    background-position: -50px 0;
}
.mSlideBtnNext:hover{
    background-position: 50px 0;
}
.mSliderNav{
    left: 0;
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    z-index: 100;
}
.mSliderNavEl{
    width: 4px;
    height: 4px;
    display: inline-block;
    margin: 0 2px 0 2px;
    cursor: pointer;
    background-color: #000;
    transition-duration: .3s;
    border-radius: 50%;
}
.mSliderNavEl:hover, .mSliderNavElActive{
    background-color: #017bd9;
    width: 8px;
    height: 8px;
    margin-left: 0;
}
.mSliderNavBox{
    max-width: 1200px;
    margin: 0 auto;
    width: 10px;
}
.LinkMore{
    float: right;
    background-color: #fff;
    font-size: 1.5rem;
    margin: 0 -111px 0 0;
    font-weight: 600 !important;
    border-radius: 5px;
}
.LinkMore a{
    color: #000;
    padding: 13px 45px;
    display: inline-block;
    text-align: center;
}