*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body,html{
    width: 100%;
    height: 100%;
}
/* ================== MAIN ====================== */
/* ================== MAIN ===================== */
.news-update{
    background-color: orange;
    padding: 10px 5px 5px 5px;
}
.news-para br{
    display: none;
}
.news-para{
    background-color: whitesmoke;
    font-size: x-large;
    padding: 20px 20px 1px 15px;
}
.news-para p {
    font-size: 20px;
}
/* ----------------------- Carousel ----------------------- */
.upcoming{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.carousel{
    width: 60%;
    margin: 10px 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 10px;
}
.slides {
    display: none;
    width: 100%;
    /* border: solid 2px; */
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.slides img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}
.dots-container {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}
.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active {
    background-color: #717171;
}
/* ------------------------------------------ */
.published{
    width: 100%;
    padding: 10px;
    /* margin: 0px; */
}
.books{
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 0px;
}
.book{
    width: 285px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.book img{
    width: 90%;
    padding: 10px;
    background-color: whitesmoke;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.book img:hover{
    width: 98%;
    padding: 15px;
    transition: all 0.2s ease-in-out;
}
/* ------------------------ */
.qoute{
    background-color: whitesmoke;
    /* width: 90%; */
    text-align: center;
    padding: 30px;
    margin: 20px;
    /* box-shadow: 2px 1px 2px black;    */
}

/* ================ RESPONSIVE ======================= */
/* ------------------------------------------- */
@media (max-width:920px) and (min-width:599px){
    .carousel{
        width: 80%;
        margin: 10px 0px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }
    .slides {
        display: none;
        width: 100%;
        /* border: solid 2px; */
        padding: 25px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .slides img {
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }
    .news-para p {
        font-size: 15px;
    }
    .news-update h3{
        font-size: large;
    }
}
/* ============== Mobile Responsive ==================== */
@media (max-width:600px) and (min-width:415px){
    .carousel{
        width: 90%;
        margin: 10px 0px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }
    .slides {
        display: none;
        width: 100%;
        /* border: solid 2px; */
        padding: 25px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .slides img {
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }
    .news-para p {
        font-size: small;
    }
    .news-update h3{
        font-size: large;
    }
}
/* ================== Small Display===================== */
@media (max-width:415px) and (min-width:200px){
    .carousel{
        width: 90%;
    }
    .slides {
        display: none;
        width: 100%;
        /* border: solid 2px; */
        padding: 25px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}