/***** Slideshow Top Header *****/
._slider{
    width: 100%;
    background: #1a202c;
}
._slide{
    display:none;
    width:100%;
    height:100%;
    position: relative;
    overflow: hidden;
}
._slide._active{
    width: 100%;
    display: block;
}
._slider img{
    width: 100%;
    height: 100%;
    animation-name: img;
    animation-duration: 30s;
}
@keyframes img {
    from{transform: scale(1,1)}
    to{transform: scale(1.4,1.4)}
}
._fade{
    animation-name: fade;
    animation-duration: 2s;
}
@keyframes fade {
    from {opacity: 0.8}
    to{opacity: 1}
}
/***** Slide Show Top Button Click *****/
._prev, ._next{
    color: white;
    text-decoration: none;
    font-size: 50px;
    position: absolute;
    top:50%;
    transform: translate(0,-50%);
}
._next{
    right: 10px;
}
._prev{
    left: 10px;
}
._dots{
    width: 100%;
    position: absolute;
    bottom: 30px;
}
._dots_div{
    width: auto;
    height: 100%;
    text-align: center;
    margin: 0 auto;
}
._dot{
    text-align: center;
    display: inline-block;
    width: 35px;
    height: 10px;
    background: white;
    margin-left: 10px;
}
._dot._active{
    background: #608e37;
}

/***** Slide Show Top Text *****/
._text{
    position: absolute;
    top: 30%;
    z-index: 1;
    width: 100%;
    height: auto;
}
._text_slide{
    width: 60%;
    height: auto;
    margin: 0 auto;
    color: white;
}
._text_slide h1{
    opacity: 0;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 30px;
    background: rgba(0,0,0,0.5);
    animation: slideshow_h1 4s ease forwards;
    animation-delay: 1s;
}
@keyframes slideshow_h1 {
    0%{
        opacity: 0;
        transform: translateY(-100px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
._text_slide p{
    width: 100%;
    direction: rtl;
    text-align: justify;
    height: auto;
    padding: 15px 20px;
    font-size: 20px;
    margin-top: 20px;
    opacity: 0;
    background: rgba(0,0,0,0.50);
    animation: slideshow_p 4s ease forwards;
    animation-delay: 3s;
}
@keyframes slideshow_p {
    0%{
        opacity: 0;
        transform: translateX(100px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}

/***** Slide Show Click Button *****/
._slider_down{
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    text-align: center;
}
._slider_down a{
    line-height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    padding: 10px 14px;
}
._slider_down i{
    font-size: 18px;
}

/***** Clock SlideShow *****/
._clock_slideshow{
    width: 300px;
    height: 70px;
    position: absolute;
    bottom: 20px;
    left: 5px;
    z-index: 3;
    text-align: center;
}
._clock_slideshow>span{
    width: 100%;
    height: 100%;
    padding: 10px 30px;
    line-height: 70px;
    text-align: center;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    box-shadow: inset 2px 3px 4px rgba(255,255,255,.1),
    2px 3px 4px rgba(0,0,0,0.7);
}
@media only screen and (max-width:1400px){

    /***** Slide Show Top Button Click *****/
    ._prev, ._next{
        font-size: 44px!important;
    }
    ._next{
        right: 15px;
    }
    ._prev{
        left: 15px;
    }
    ._dot{
        width: 30px;
        height: 7.5px;
    }

    /***** Slide Show Click Button *****/
    ._slider_down{
        width: 50px;
        height: 50px;
    }
    ._slider_down a{
        line-height: 40px;
        padding: 9px 14px;
    }
    ._slider_down i{
        font-size: 15px;
    }

    /***** Slide Show Top Text *****/
    ._text_slide h1{
        font-size: 27px;
        padding: 20px;
    }
    ._text_slide p{
        font-size: 17px;
    }

    /***** Clock SlideShow *****/
    ._clock_slideshow{
        width: 250px;
        height: 60px;
    }
    ._clock_slideshow>span{
        line-height: 60px;
        font-size: 15px;
    }
}
@media only screen and (max-width:1200px){

    /***** Slide Show Top Text *****/
    ._text_slide h1{
        font-size: 24px;
        padding: 20px;
    }
    ._text_slide p{
        font-size: 15px;
    }

    /***** Clock SlideShow *****/
    ._clock_slideshow{
        width: 250px;
        height: 60px;
    }
    ._clock_slideshow>span{
        line-height: 60px;
        font-size: 15px;
    }
}
@media only screen and (max-width:992px){
}
@media only screen and (max-width:765px){
}
@media only screen and (max-width:576px){
}
