/*--------mobile-------*/
#slider {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: center;
    border: 5px solid #eddddd;
}
img {
    width: 100%;
    height: 100vh;
    position: absolute;
}
i {
    font-size: 1.4em;
    cursor: pointer;
    z-index: 6;
}
i:hover {
    box-shadow: 1px 1px 25px #fff;
}
#arrows {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h1 {
    color: #fff;
    position: absolute;
    z-index: 8;
    top: 74%;
    text-transform: uppercase;
    font-weight: bold;
}
#descript {
    position: absolute;
    z-index: 8;
    top: 80%;
    width: 250px;
    height: 65px;
    background-color: silver;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
    opacity: 0.7;
    border-radius: 4px;
    box-shadow: 0 0 6px #000;
}
p {
    color: #fff;
    text-align: center;
    position: absolute;
    z-index: 10;
    width: 250px;
    height: 55px;
    line-height: 1.4;
    top: 82%;
}


/*------tablet, laptop, desctop------*/
@media (min-width: 992px) {
    #slider {
        width: 800px;
        height: 400px;
        margin: 100px auto;
    }
    i {
        border-radius: 3px;
        border: 1px solid #6b6b6b;
    }
    i {
        color: #575151;
        background-color: #fff;
    }
    i:nth-child(1) {
        padding-left: 6px;
        padding-bottom: 2px;
        padding-top: 2px;
        width: 26px;
        margin: 0 0 0 6px;
    }
    i:nth-child(2) {
        padding-left: 7px;
        padding-top: 2px;
        padding-bottom: 2px;
        width: 26px;
        margin: 0 6px 0 0;
    }
    i:hover {
        background-color: silver;
        transition: 0.4s;
        color: #fff;
    }
    h1 {
        font-size: 1.4em;
    }
    #descript {
        top: 81%;
        height: 55px;
    }
}