html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.content {

  flex: 1 0 auto;
  min-height: 100vh;
}
.footer {
  flex-shrink: 0;
}
.slide-image{
    object-fit: cover;
    width: 100vw;
    height: auto;
    background-size: cover;
    background-position: center center;
}
.book-cover{
    width: 350px;
}
.book-container, .author-container{
    width: 80vw;

    margin-top:40px;
}
.book-image{
    margin-top: 100px;
    width: 280px;
}
.books{
    padding-left: 200px;
    padding-right: 100px;

}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
    margin-top: -250px;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
    margin-top: -250px;

}
.book-slide{
    width: 250px;

}
.author-image{
    width: 103px;
    border-radius: 100%;
    height: 103px;
}
/**
    ***COLORS***

**/
.primary-color{
     color: #333;;
}
.secondary-color{
    color: #8b8b8b;

}
.base-color{
    color: white;
}

.swiper-button-prev::after, .swiper-container-rtl .swiper-button-next::after {
  font-size: 16px;
width: 30px !important;
height: 30px !important;
border-radius: 50%;
background: #fff !important;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
z-index: 1;
text-align: center;
padding-top: 8px;
}
.swiper-button-next::after, .swiper-container-rtl .swiper-button-prev::after {
  font-size: 16px;
width: 30px !important;
height: 30px !important;
border-radius: 50%;
background: #fff !important;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
z-index: 1;
text-align: center;
padding-top: 8px;
}
.reset-padding{
    padding: 0;
}

.header{
    text-align: center;
    height: 300px;
   
 background-size: cover;
    background-position: center center;

}
header{
    width: 100%;
        padding: 50px 10px;
}
.terms{
    background: #e6e7e8;
    text-transform: uppercase;
    color: #333;
    font-size: 14px;
    font-weight: bold;
}
.reset-margin{
    margin: 0;
}
footer a{
    color: white;
}
footer a:hover{
    color: white;
}
/**
    ***TOPOGRAPHY***

**/

.list-style-none{
    list-style: none;

}
.inline li{
    display: inline;
    padding-right: 10px;
}
.subtitle{
   font-size: 14px;
    text-transform: capitalize;
    margin-top: 20px;
    font-weight: bold;
}
.swiper-slide{

}
.title{
    font-size: 19px;
    font-weight: bold;
    text-transform: capitalize;
}
.text-align-center{
    text-align: center;
}



/**
    ***TOPOGRAPHY***

**/



/*
      ##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) {



    }

    /*
    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) {

        .book-image{
            width: 120px;
        }
        .book-container .swiper-slide{
            width: 180px !important;
        }
        footer ul{
            font-size: 13px;

        }
    }