/* essential styles: start */

/* #slider_single_home {
    height: 85vh;
} */

#slides {
    display: block;
    position: relative;
    list-style: none;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

#slides li:first-child {
    display: block;
    position: relative;
    float: left;
}

.slide {
    z-index: 1;
    opacity: 0;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;

    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.slides_li_animation {
    z-index: 2;
    opacity: 1;
}

.slide iframe {
    z-index: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center;
}

.slide img {
    z-index: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center;
}

.slide .slide_details {
    position: absolute;
    right: 12px;
    top: 50%;
    /* transform: translateY(-50%); */

    text-align: center;
    font-size: calc(9px + .4vw);
    font-style: italic;
    color: #000000;
    background-color: #dae9f9;
    border-radius: 21px;
    max-width: 32%;
    max-height: 90%;
    padding: 10px 12px;
    overflow: hidden;
    opacity: 0.8;
    z-index: 11;
    white-space: normal;
}

.slide .slide_details h2 {
    font-family: "Cinzel", serif;
    font-style: normal;
    color: #000000;
    opacity: 1;
}

.slide_details_animation {
    transform-origin: center;
    animation-name: keyframes_slide_section_zoom;
    animation-duration: 1s;
}

@keyframes keyframes_slide_section_zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.slide .slide_details .slider_link {
    position: absolute;
    bottom: 5px;
    right: 10px;
    width: auto;
    height: auto;
    padding: 3px 10px;
    margin: 0 0 0 7px;
    text-align: center;
    font-size: 9px;
    font-style: italic;
    color: white;
    background-color: orange;
    border-radius: 8px;
    cursor: default;
}

.slide .slide_details .slider_link:hover {
    color: blue;
    background-color: rgb(122, 241, 10);
}

/* SLIDER-BUTTONS START */
.div_slider_btns {
    position: relative;
    z-index: 10;
    top: -50px;
    text-align: center;
    width: auto;
    clear: none;
}

.div_slider_btns {
    visibility: hidden;
}

#slides:hover~.div_slider_btns {
    visibility: visible;
}

.div_slider_btns:hover {
    visibility: visible;
}

.slider_btns {
    background: rgba(250, 246, 246, 0.726);
    text-align: center;
    color: rgb(0, 0, 0);
    border: none;
    padding: 3px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: 3px solid rgb(199, 192, 192);
    margin: 10px 0px 10px 10px;
    width: 27px;
    height: 27px;
    line-height: 1;
    border-radius: 50%;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.75);
}

.slider_btns:hover,
.slider_btns:focus {
    background: #eee;
    color: #333;
}

/* SLIDER-BUTTONS END */

/* ##Device = Desktops ##Screen = 1281px to higher resolution desktops */

@media (min-width: 1281px) {}


/* ##Device = Laptops, Desktops ##Screen = B/w 1025px to 1280px */

@media (min-width: 1025px) and (max-width: 1280px) {}


/* ##Device = Tablets, Ipads (portrait) ##Screen = B/w 768px to 1024px */

@media (min-width: 768px) and (max-width: 1024px) {}


/* ##Device = Tablets, Ipads (landscape) ##Screen = B/w 768px to 1024px */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {}


/* ##Device = Low Resolution Tablets, Mobiles (Landscape) ##Screen = B/w 481px to 767px */

@media (min-width: 481px) and (max-width: 767px) {}


/* ##Device = Most of the Smartphones Mobiles (Portrait) ##Screen = B/w 320px to 479px */

@media (min-width: 320px) and (max-width: 480px) {}


/* ##Device = Laptops, Desktops ##Screen = above 768px */

@media (min-width: 0px) and (max-width: 767px) {

    .slide .slide_details h2 {
        font-size: 11px;
    }

    .div_slider_btns {
        top: -27px;
    }

    .slider_btns {
        font-size: 9px;
        width: 23px;
        height: 23px;
        margin: 0 2px 0 0;
        padding: 1px;
    }
}


/* ## MMK- Device = Some  of the very small Smartphones Mobiles (Portrait) ##Screen = B/w 0px to 479px */

@media (min-width: 0px) and (max-width: 479px) {
    .slide .slide_details h2 {
        font-size: 10px;
        font-weight: normal;
    }

    .slide .slide_details .slide_descri {
        display: none;
    }

    .div_slider_btns {
        top: -27px;
    }

    .slider_btns {
        font-size: 9px;
        width: 23px;
        height: 23px;
        margin: 0 2px 0 0;
        padding: 1px;
    }
}