img.header-logo {
    width: 150px;
}


img.header-logo-2 {
    width: 150px;
}


img.footer-logo {
    width: 150px;
}


img.top-book-image {
    width: 100%;
}

img.home-image {
    width: 100%;
    height: 850px;
}


.hero-1 {
    position: relative;
    padding: 170px 0 260px;
    background: black;
}


img.client-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}



img.shop-image {
    width: 234px;
    height: 280px;
}

footer.footer-section.fix {
    padding: 50px 0 0px;
}

.about-image {
    width: 100%;
    height: 876px;
}


img.blog-image {
    width: 100%;
    height: 300px;
}

p.mt-3.wow.fadeInUp {
    color: black;
    text-align: justify;
}

img.two-book1 {
    width: 400px;
}

img.two-book2 {
    width: 400px;
    position: relative;
    top: 550px;
    left: 30px;
}


img.about-book1 {
    width: 300px;
}

img.about-book2 {
    width: 450px;
}



/*book animation css*/
.book-shape {
    position: absolute;
    left: 50px;
    top: 50px;
    animation: floatUpDown 4s ease-in-out infinite;
}

.book-shape-2 {
    position: absolute;
    right: 50px;
    bottom: 50px;
    animation: floatUpDown 5s ease-in-out infinite;
}

.about-book1,
.about-book2 {

    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }
}