@import url('https://fonts.googleapis.com/css2?family=Battambang:wght@300;400;700&family=Poppins:wght@200;400;500;600;700;800;900&display=swap');
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none;
    text-decoration: none;
    transition: all .3s linear;
}

html {
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}

body {
    overflow: auto;
    background-color: #f1f5f9;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    background: #4cb0d4;
    color: #fff;
    padding: .8rem 3rem;
    border: .2rem solid #4cb0d4;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover {
    background: rgba(255, 166, 0, 0.39);
    color: #4cb0d4;
}


/*..........Menu..........*/

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 4px 5px 30px #bfbfbf2e;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo-navbar {
    height: 90px;
    box-sizing: border-box;
}

header .logo-navbar img {
    margin-left: -9px;
    height: 100%;
}

header .navbar a {
    color: #000;
    margin: 0 .5rem;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .45px;
    transition: all 0.3s linear;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    /* background-color: #2c1a94; */
}

header .navbar a:hover {
    color: #4cb0d4;
    border-bottom: 2px solid #4cb0d4;
}

header .navbar .books-hide span {
    text-decoration: none;
    cursor: pointer;
    margin-right: 0px;
    background-color: #4cb0d4;
    color: #000;
    line-height: 34px;
    display: inline-block;
    padding: 0px 20px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    letter-spacing: .28px;
    z-index: 2;
    border-radius: 4px;
    transition-duration: 0.3s;
    border: 2px solid #4cb0d4;
}

header .navbar span a {
    text-decoration: none;
}

header .navbar span:hover {
    color: #4cb0d4;
    text-decoration: none;
}

header .icons {
    float: right;
    margin-right: 0px;
}

header .icons i {
    font-size: 15px;
    color: #333;
    cursor: pointer;
    width: 13px;
}

.margin-left-menu {
    margin-left: 1rem;
}

header .icons i span {
    font-size: 17px;
    color: #333;
    cursor: pointer;
    margin-right: 2rem;
    transition: all .3s linear;
}

header .icons i:hover {
    color: #4cb0d4;
}

header .icons i:hover span {
    color: #4cb0d4;
}

.books-hide {
    margin: 0 auto;
}

header .icons a {
    text-decoration: none;
    cursor: pointer;
    margin-left: 2rem;
    margin-right: 0px;
    background-color: #4cb0d4;
    color: #000;
    line-height: 34px;
    display: inline-block;
    padding: 0px 20px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    letter-spacing: .28px;
    z-index: 2;
    transition-duration: 0.3s;
    border: 2px solid #4cb0d4;
    border-radius: 4px;
}

header .icons a:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #d73041;
}

header .icons a span {
    text-align: center;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
}

header .icons a:hover {
    color: #4cb0d4;
}

header .icons a:hover span {
    color: #d73041;
}

#display-inline {
    display: inline-block;
}

#books-hide {
    display: none;
}

header .search-bar-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: #333;
    border-top: .1rem solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    z-index: 1001;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .search-bar-container.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar {
    width: 100%;
    padding: 10px;
    text-transform: none;
    color: #333;
    font-size: 18px;
    border-radius: 5px;
}

header .search-bar-container label {
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    margin-left: 1.5rem;
}

header .search-bar-container label:hover {
    color: #4cb0d4;
}

.login-form-container {
    position: fixed;
    top: -120%;
    left: 0;
    z-index: 10000;
    min-height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-container.active {
    top: 0;
}

.login-form-container form {
    margin: 2rem;
    padding: 1.5rem 2rem;
    border-radius: .5rem;
    background: #fff;
    width: 50rem;
}

.login-form-container form h3 {
    font-size: 30px;
    color: #4cb0d4;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 0;
}

.login-form-container form .box {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    color: #333;
    margin: .6rem 0;
    border: .1rem solid rgba(0, 0, 0, .3);
    text-transform: none;
}

.login-form-container form .box:focus {
    border-color: yellow;
    ;
}

.login-form-container form #remember {
    margin: 2rem 0;
}

.login-form-container form label {
    font-size: 18px;
}

.login-form-container form .btn {
    display: block;
    width: 100%;
    margin-top: 1rem;
    background: #4cb0d4;
    color: #fff;
    padding: 5px;
    border: 0.2rem solid #4cb0d4;
    cursor: pointer;
    font-size: 20px;
}

.login-form-container form p {
    padding: .5rem 0;
    font-size: 18px;
    color: #666;
}

.login-form-container form p a {
    color: #4cb0d4;
}

.login-form-container form p a:hover {
    color: #e21428;
    text-decoration: underline;
}

.login-form-container #form-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.login-form-container #form-close:hover {
    color: #4cb0d4;
}

#menu-bar {
    color: #333;
    border-radius: .5rem;
    font-size: 16px;
    padding: .5rem 0px;
    cursor: pointer;
    width: 14px;
    display: none;
}

.header_btn {
    display: inline-block;
    color: #fff;
    padding: 10px;
    cursor: pointer;
}

header .navbar .active {
    transition: all 0.3s;
    color: #4cb0d4;
    border-bottom: 2px solid #4cb0d4;
}


/* media queries  */

@media (max-width:1080px) {
    header .logo-navbar img {
        margin-left: 23px;
    }
    header img {
        margin-left: 55px;
    }
    #menu-bar {
        display: initial;
    }
    #books-hide {
        display: block;
    }
    header .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #eeeeee;
        border-top: .1rem solid rgba(255, 255, 255, .2);
        padding: 1rem 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    header .navbar a {
        width: 100%;
        border: 2px solid #4cb0d4;
        display: block;
        border-radius: 8px;
        padding: 15px;
        margin: 5px 0;
        background: #fff;
        text-align: center;
    }
    header .navbar .books-hide a {
        border: none;
        background: none;
    }
    header .navbar .books-hide a:hover span {
        background-color: transparent;
        color: #4cb0d4;
    }
    header .navbar a span {
        padding: 0px;
    }
    header .icons a {
        text-decoration: none;
        cursor: pointer;
        margin-left: 2rem;
        background-color: #4cb0d4;
        color: #000;
        line-height: 34px;
        display: inline-block;
        padding: 0px 20px;
        font-size: 14px;
        text-align: center;
        font-weight: bold;
        letter-spacing: .28px;
        z-index: 2;
        transition-duration: 0.3s;
        border: 2px solid #4cb0d4;
    }
    header .icons a:hover {
        background-color: transparent;
        color: #fff;
    }
    header .icons a span {
        text-align: center;
        font-size: 17px;
        color: #333;
        cursor: pointer;
    }
    header .icons a:hover {
        color: #4cb0d4;
    }
    header .icons a:hover span {
        color: #4cb0d4;
    }
}

@media (max-width:450px) {
    .heading span {
        font-size: 2.5rem;
    }
    .contact .row form .inputBox input {
        width: 100%;
    }
}


/*..........End Menu..........*/


/*..........stroll to top..........*/

.stroll-bu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 20000;
}

.stroll-bu i {
    font-size: 20px;
    background-color: #93c6d8;
    padding: 8px 10px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition-duration: all 0.3s ease;
}

.stroll-bu i:hover {
    background-color: #4cb0d4;
}

@media (max-width:450px) {
    .stroll-bu {
        bottom: 15px;
        right: 15px;
    }
    .stroll-bu i {
        font-size: 15px;
        padding: 7px 9px;
    }
}


/*..........End stroll to top..........*/


/* container */

.container-header {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}


/* End container */