

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600;800&family=Poppins:ital,wght@0,500;1,600;1,900&family=Vollkorn+SC:wght@400;700;900&family=Vollkorn:wght@400;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Kalnia:wght@100..700&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');



:root{
    --light-grey-1: #f1f0ee;
    --black: #161616;
    --white: white;
    --orange: #ff7448;
    --red: #ff4848;
    --bgcolor:#f7d3a6;
    --purple: rgba(125, 191, 123);
    --gren-light: #f1ffed;;
    --purple-ex: rgb(72, 60, 221);;
    --purple1: #6248ff;
    --purple-light1: #2196f3;
    --purple-light2: #7986cb;
    --medium-grey: #686868;
    --tertiary-button-hover: rgba(36,26,11,.05);
    --light-grey-3: #d8d5d1;
    --error: #df3434;
    --light-grey-2: #e4e2df;
    --outlines: rgba(22,22,22,.15);
    --lavender-blush: #faeeee;
    --green: #2baa6d;
    --green1: #7dbf7b;
    --light-purple: #e0daff;
    --dark-gray: #222;
    --font-title:  "Dosis", sans-serif;
    --font-text-main:  "Kalnia", serif;
}
/*
font-family: "EB Garamond", serif;
#f3ede4
    --light-grey-1: #f1f0ee;
    --black: #161616;
    --white: white;
    --orange: #ff7448;
    --red: #ff4848;
    --purple: #6248ff;
    --medium-grey: #686868;
    --tertiary-button-hover: rgba(36,26,11,.05);
    --light-grey-3: #d8d5d1;
    --error: #df3434;
    --light-grey-2: #e4e2df;
    --outlines: rgba(22,22,22,.15);
    --lavender-blush: #faeeee;
    --green: #2baa6d;
    --light-purple: #e0daff;
    --dark-gray: #222;
*/
body{
    font-family: "Vollkorn", serif;
    overflow-x: hidden;
}

*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    box-sizing: border-box;
}
*::after,
*::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
section{
    margin-bottom: 90px;
}
ul{
    list-style: none;
}
header{
    height: 200px;
    background-color:#f5f5f5 ;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: auto;
}
.navbar-top{
    height: 30px;
    display: flex;
    justify-content: space-between;
    margin-right: 20px;
}
.navbar-top .lang .select-lang{
    padding: 4px;
    border: 1px solid var(--purple);
    color: var(--purple);
    margin: 3px;
}
.navbar-top ul{
    display: flex;
    align-items: center;
    justify-content: start;
}
.navbar-top ul li{
    margin-left: 10px;
}
.navbar-top ul li a{
    color: var(--green1);
}
.header-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 10px;
}
header .logo{
    display: flex;
    align-items: center;
    gap:10px;
}
header .logo img{
    height: 120px;
}
header .logo h1{
    color: var(--purple);
    font-size: 36px;
    font-family: var(--font-text-main);
    text-transform: uppercase;
    font-weight: 100;
    border: 2px solid var(--purple);
    padding: 0 3px;

}
header .search-menu{
    position: relative;
}
header .search-menu .search-result{
    position: absolute;
    top: 100%;
    left: -20%;
    width: 140%;
    z-index: 9999;
    background-color: #f9f9f9;
    border: 3px solid var(--purple);
    border-radius: 4px;
    display: none;
}
header .search-menu .search-result.active{
    display: block !important;
}
header .search-menu .search-result  ul li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 20px;
    width: 100%;
    font-weight: 700;

}
header .search-menu .search-result  ul li a div{
    display: flex;
    align-items: center;
    gap: 5px;
}
header .search-menu .search-result h1{
    width: 100%;
    padding: 5px;
    text-align: center;
}
header .search-menu .search-result  ul li{
    border-bottom: 1px dashed var(--purple);
}
header .search-menu .search-result  ul li img{
    height: 40px;
}
header .search-menu input{
    height: 54px;
    width: 400px;
    border: 2px solid var(--purple);
    outline: none;
    padding-inline-start: 15px;
    color: var(--purple);
    font-weight: 700;
    font-size: 20px;
    background: #f5f5f5;
}
header .search-menu .btn{
    height: 38px;
    width: 40px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    margin-left: -50px;
    color: var(--purple);
}
header .menu{
    display: flex;
}
header .menu ul{
    display: flex;
    gap: 15px;
}
header .menu ul li a{
    color: var(--purple);
    font-size: 24px;
}
header .menu ul li .users-menu{
    position: absolute;
    top: 90%;
    background-color: #f9f9f9;
    z-index: 9999;
    right: 0;
    border-radius: 5px;
    padding: 3px;
    display: none;
    flex-direction: column;
    overflow: hidden;
}
header .menu ul li .users-menu.active{
    display: flex;
}
header .menu ul li .users-menu li{
    padding: 5px;

}
header .menu ul li .users-menu li:hover{
    background-color: var(--gren-light);
}

header .menu ul li{
    position: relative;
}
header .menu ul li >span.show-list{
    position: absolute;
    top: -12px;
    right: -8px;
    border-radius: 100%;
    height: 24px;
    width: 24px;
    background-color: var(--purple);
    text-align: center;
    line-height: 24px;
    color: #fff;
    display: none;
}
header .menu ul li >span.show-list.active{
    display: block;
}
header .menu ul li .cover-shopping,
header .menu ul li .cover-favories
{
    position: absolute;
    top: 100%;
    right: -100%;
    width: 350px;
    border: 1px solid var(--purple);
    z-index: 9999;
    background-color: var(--white);
    padding: 4px;
    border-radius: 4px;
    display: none;
}
header .menu ul li .cover-shopping.active,
header .menu ul li .cover-favories.active
{
    display: block;
}
.cover-shopping h1,
.cover-favories h1
{
    text-align: center;
    padding: 3px;
    font-size: 32px;
}
.cover-shopping ul,
.cover-favories ul
{
    display: flex;
}
.cover-shopping ul li,
.cover-favories ul li
{
    display: flex;
    justify-content: space-between;
    padding-block-start: 5px;
}
.cover-favories ul li {
    border-bottom: 1px dotted var(--light-grey-3);
    padding: 5px;
}
.cover-favories ul li a{
    color: var(--light-grey-3);
}
.cover-shopping ul li span,
.cover-favories ul li span
{
    color: var(--purple);
}
.cover-shopping ul li button,
.cover-favories ul li button
{
    color: var(--purple);
    padding: 2px 3px;
    border: none;
    font-size: 18px;
    background-color: transparent;
}
.cover-shopping div{
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}
.cover-shopping a.btn{
    color: var(--white) !important;
}
.cover-shopping div a{
    color: var(--purple) !important;
}
.cover-shopping div .btn-book i{
    color: var(--light-grey-3);
    background-color: transparent;
}
.cover-shopping ul:hover,
.cover-shopping ul:hover i{
    color: var(--purple);
}
.dropShoping ul{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted var(--purple);
    align-items: center;
}
header .nav{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--purple);
    transition: height 0.3s ease-in-out;
    overflow: hidden;
}
header .nav ul{
    display: flex;
    justify-content: center;

}
header .nav ul li{
    position: relative;
}

header .nav ul li a{
    color: #fff;
    padding: 10px 7px;
    display: block;
    font-size: 20px;
    font-family: var(--font-text-main);
    font-weight: 300;
}

header .nav ul li a span{
    padding: 3px;
    border-radius: 3px;
}
header .nav ul li:first-child a{
    height: 46px;
    line-height: 46px;
    display: block;
    padding: 0 10px;
}
header .nav ul li:first-child a i.uil-times{
    display: none;
}
header .nav ul li:first-child a.active i.uil-times{
    display: block;
}

header .nav ul li:first-child a.active i.uil-bars{
    display: none;
}
header .nav ul li:first-child a i{
    font-size: 30px;
}
header .nav ul li a:hover{
    background-color: #6aa668;;
}
header .nav ul li:hover span{
    border: 1px dashed #2c9241;
}
header .nav ul li:first-child{
    display: none;
}
header .nav .sub-menu{
   padding: 0;
}

header .nav .down-menu{
    overflow: hidden;
    background-color: #147516;
    padding: 0;
    margin: 0;
    height: 0;
}
header .nav ul .sub-menu ul{
    display: none;
    flex-direction: column;
}
header .nav ul .down-menu ul  li{
    width: 100%;
    border-bottom: 1px dotted var(--light-grey-2);
}
header .nav ul .down-menu ul li:first-child{
    height: 39px !important;
}
/*==========CARUSEL======= */
.slider-section{
    padding-top: 0px;
}

.slider{
    width: 1400px;
    max-width: 100vw;
    height: 600px;
    margin: auto;
    position: relative;
    overflow: hidden;

}
.list{
    position: absolute;
    top:0;
    left:0;
    height:100%;
    display: flex;
    width: max-content;
    transition: 1s;

}
.list img{
    width: 1400px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.buttons{
    position: absolute;
    top:45%;
    left:5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.buttons button{
    width: 54px;
    height: 36px;
    border-radius: 30px;
    background-color: #fff5;
    color: #7dbf7b;
    font-family: monospace;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
    border: 1px solid #7dbf7b;
}
.buttons button:hover{
    background-color: #7dbf7b;
    color: #fff;
}


.list .item{
    position: relative;
}
.list .item .content{
    position: absolute;
    top: 5%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.list .item .content  h1{
    margin: 15px 0;
    color: #7dbf7b;
    font-size: 5em;
    font-weight: bold;
}
.list .item .content h4{
    margin: 10px 0;
    font-size: 3em;
}
.list .item .content  a{
    border: none;
    background-color: #7dbf7b;
    letter-spacing: 3px;
    font-weight: 500;
    padding: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 2em;
}


/*==========END CARUSEL======= */
section, section.book,section.newest{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    margin-top: 30px;
}
slider-section{
    padding-top: 0;
}
.info-sales{
    background-color: var(--light-grey-1);
    padding: 20px 30px;
}
.row-sales{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.box-sales {
    padding: 20px 5px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.box-sales h2{
    font-size: 22px;
    color: var(--purple);
}
.box-sales i{
    color: var(--purple);
    font-size: 36px;
    padding: 4px;
}
/* */
section{
    margin: auto;
    padding-top: 30px;
}
section.books{
    margin-top: 30px;
    padding-top: 20px;
}
.header-section{
    padding: 20px;
    width: 100%;

}
.books-body{
    margin-top: 80px;
    margin-inline: 30px;
}
.container-box{
    display: none;
}
.container-box.active{
    display: block;
}
.header-section h1{
    width: 100%;
    text-align: center;
    font-size: 36px;
    color: var(--medium-grey);
}
.header-section .groups-tabs ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.header-section .groups-tabs ul li{
    width: 120px;
    height: 45px;
    background-color: var(--white);
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    color: var(--purple);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: all 0.3s ease-in-out;
    font-size: 24px;
}
.header-section .groups-tabs ul li.active{
    background-color: var(--purple);
    color: var(--white);
}
.header-section .groups-tabs ul li:hover{
    background-color: var(--purple);
    color: var(--white);
}
.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-wraper{
    flex-wrap: wrap;
}
.row .box-book{
    height: 520px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 60px;
    width: 220px !important;
    border: 1px solid var(--tertiary-button-hover);
    min-width: 220px;
}
.row .box-book:hover{
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.row .box-book .image-view{
    height:320px;
    width:100%;
    position: relative;
    overflow: hidden;
}
.row .box-book .btn-link{
    margin-inline: 20px;
}
.swiper-wrapper{
    height: auto !important;
}
.row .box-book .info-book{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:2px;
    text-align: center;
    height: 190px;
    transition: all 0.3s ease-in-out;
}

.row .box-book .image-view img{
    height: 100%;
    width: 100%;
    transition: all 0.4s ease-in-out;
    object-fit: cover;
}
.row .box-book h1{
    margin: 3px;
    text-align: center;
    font-size:18px;
    max-height: 70px;
    overflow: hidden;
}
.row .box-book p{
    text-align: center;
    font-size: 18px;

}
.row .box-book .price{
    text-align: center;
}
.row .box-book .price span{
    padding: 8px;
    color: red;
    text-decoration: line-through;
}
.row .box-book:hover img{
    transform: scale(1.06);
}
.btn{
    cursor: pointer;
}
.btn-groups{
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 24%;
    gap: 20px;
    align-items: end;
    transition: all 0.3s ease;
    right: -100%;
}
.btn-book{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 3px;
}
.btn-book i{
    padding: 7px 10px;
    border-radius:100% ;
    font-size: 22px;
    color: var(--white);
    background-color:  rgba(125, 191, 123, 0.93);;
}
.btn-book span{
    padding: 6px;
    visibility: hidden;
    outline: none;
    background-color:var(--purple);
    font-size: 18px;
    position: relative;
    color: #fff;

}
.btn-book span::after,
.btn-book span::before{
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid var(--purple);
    border-top:16px solid transparent;
    border-bottom: 16px solid transparent;
    transform: translateY(-50%);
}
.btn-book:hover span{
    visibility: visible;
}

.box-book:hover .btn-groups{
    right: 0%;
}
.btn-link{
    margin: auto;
    display: block;
    padding: 6px 8px;
    background-color: var(--purple);
    color: #fff;
    margin-block: 10px 15px;
    position: relative;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    font-size: 22px;
    border-radius: 4px;
}
.btn-link::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #a393fb;;
    top: 5px;
    left: 5px;
    z-index: -1;
    opacity: 0.4;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #fff;
}
.btn-link:hover{
    letter-spacing: 1px;
}
.btn-link:hover::after{
    top: 0;
    left: 0;
}
/* banner */
.banner{
    margin-top: 20px;
    height: 400px;
    background-color: var(--purple);
}
.container-banner{
    position: relative;
    height: 380px;

}
.image-content{
    width: 100%;
    height: 100%;
    background-image:url('../images/library.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;

}
.image-banner{
    position: absolute;
    top: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    z-index: 90;
}
.image-banner img{
    width: 100%;
    object-fit: cover;
    background-attachment: fixed;
}
.contex{
    position: absolute;
    top: 5%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
    z-index: 99;
}
.contex h1{
    font-size: 48px;
    margin-block: 20px 24px;

    border-left: 5px solid var(--purple);
    text-shadow:  rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.contex h1 span{
    background-color: var(--gren-light);
    color: #000;
}

.contex h2{
    font-size: 36px;
    margin-block: 20px 24px;
    border-left: 5px solid var(--purple);
}
.contex h2 span{
    background-color: var(--gren-light);
    color: #000;
}
.section-header{
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.section-title{
    width: 100%;
    margin-top: 20px;
}
.section-title h1{
    font-size: 36px;
    text-align: center;
    position: relative;
    width: 90%;
    margin-inline: auto;
    margin-block-start: 20px;
}
.section-title h1 span{
    background-color: #fff;
    padding: 8px 12px;
    color:var(--purple);
    z-index: 2;
}
.section-title h1::after{
    content: '';
    width: 100%;
    height: 4px;
    background-color: var(--purple);
    top: 50%;
    left: 0;
    position: absolute;
    z-index: -1;
}
section.mail{
    margin-top: 20px;
    position: relative;
    width: 100%;
}
.cover-image{
    height: 450px;
}
.cover-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form-email{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7dbf7b45;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-email form{
    padding: 10px;
    background-color: var(--purple);
}
.form-email form input[type="text"]{
    padding: 7px;
    width: 420px;
    border-radius: 3px 0 0 3px;
    border: none;
    outline: none;
}
.form-email form label{
    font-size: 20px;
    color: #fff;
    text-align:center;
}
.btn-default{
    font-size: 20px;
    background-color: transparent;
    border: none;
    color: #fff;

}

/* footer */
footer{
    background-color: var(--purple);
    margin: auto;
}
.banner-paymet{
    text-align: center;
    padding: 12px;
    width: 100%;
    background-color: rgb(125, 191, 123);
    line-height: 13px;
    border-bottom: 1px dashed #2c9241;
}

.container-footer{
    margin: 10px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(20rem,1fr));
    gap: 1.5rem;
}
.box-fotter p{
    padding: 5px;
    color: #fff;
    font-size: 20px;
}
.box-fotter ul li{
    padding: 10px 0;
    list-style: none;
}
.box-fotter ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}
.copyright{
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 10px;
    border-top: 1px dashed #2c9241;
}

/* cover page */

.cover-page{
    display: flex;
    position: fixed;
    top: 0;
    right: 0%;
    left: -100%;
    height: 100vh;
    width: 100%;
    background-color: rgba(255,255,255,0.8);
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in;
    z-index: 99999;
}
.cover-page.active{
    left: 0%;
}
.container-form-user{
    width: 360px;
    background-color: #fff;
    padding: 20px;
    border: 1px solid var(--purple-light1);
    box-shadow: 0 .5rem 3rem rgba(0,0,0,0.7);
    justify-content: space-between;
    flex-direction: column;
    gap: 12px;
}
.container-form-user.disactive{
    display: none;
}
.container-form-user h1{
    text-align: center;
    padding: 12px;
}
.container-form div{
    display: flex;
    flex-direction: column;
    padding: 15px;
}
.container-form div input{
    padding: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease-in-out;
}
.container-form div input:focus{
    border-color: var(--purple);
}
.container-form div input[type="submit"]{
    background-color: var(--purple);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}
.container-form span{
    font-size: 24px;
    margin: 2px;
}
.container-form div p{
    font-size: 18px;
}
.close-btn {
    position: absolute;
    top: 60px;
    right: 60px;
    font-size: 60px;
    color: var(--purple);
    background-color: transparent;
    font-weight: 900;
    cursor: pointer;
    border: none;
}
.container-form-pwd{
    width: 360px;
    background-color: #fff;
    padding: 20px;
    border: 1px solid var(--purple-light1);
    box-shadow: 0 .5rem 3rem rgba(0,0,0,0.7);
    justify-content: space-between;
    flex-direction: column;
    gap: 12px;
}
.container-form-pwd.disactive{
    display: none;
}
.container-form-registry{
    width: 360px;
    background-color: #fff;
    padding: 10px 15px;
    border: 1px solid var(--purple-light1);
    box-shadow: 0 .5rem 3rem rgba(0,0,0,0.7);
    justify-content: space-between;
    flex-direction: column;
    gap: 5px;
}
.container-form-registry.disactive{
    display: none;
}
.container-form-registry div{
    padding: 5px;
}
.container-form-registry h1{
    text-align: center;
}
/* left  */
.left-page-cover{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8);
    z-index: 999;
    left: 100%;
    transition: all 0.3s ease-in-out;
}
.left-page-cover.active{
    left: 0%;
}
.container-shopping{
    position: absolute;
    width: 300px;
    height: auto;
    top: 0;
    right: 0;
    background-color: #ddddddc2;
}
.container-shopping h1{
    margin-block: 22px 10px;
    text-align: center;
    text-decoration: underline;
}
.box-shopping{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    color: var(--purple);
    font-size: 22px;
    border-bottom: 2px dashed #fff;
}
.box-shopping .image-shopping{
    height: 100px;

}
.box-shopping .image-shopping img{
    height: 100%;
}
.box-shopping p{
    color: var(--purple);

}
.box-shopping i{
    color: var(--purple);
}
.box-shopping .btn-book-remove{
    background-color: transparent;
    border: none;
    font-size: 24px;
}
.close-shopping{
    position: absolute;
    left: 50px;
    top: 50px;
    color: var(--purple);
    font-size: 60px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
/* week book */
.week-book{
    position: relative;
}
.week-book{
    margin-top: 30px;
    border-top: 2px solid var(--purple);
}
.container-week{
    height:auto ;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 30px;
}
.info-week{
    flex: .7;
    text-align: center;
}
.info-week h1{
    color: var(--purple);
    font-size: 42px;
    padding: 4px;
}

.info-week h2{
    color: var(--purple);
    font-size: 24px;
    padding: 4px;
}
.info-week p{
    font-size: 18px;
    letter-spacing: 1.2px;
    color: var(--purple);
    margin-bottom: 15px;
    font-family: var(--font-text-main);
    font-weight: 400;
    line-height: 30px;
}
.image-week{
    height: 100%;
    flex: .45;
    justify-content: center;
    display: flex;
    align-items: center;
}
.image-week img{
    height: 300px;
    color: var(--light-purple);
    border: 3px solid var(--color-success)
}
.btn-section{
    position: absolute;
    top:40%;
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: var(--purple);
    font-size: 32px;
    border: none;
    z-index: 100;
    cursor: pointer;
}
.btn-left{
    left: 5%;
}
.btn-right{
    right: 5%;
}
.container-books{
    position: relative;
    margin-top: 20px;
    padding-inline: 20px;
}
.container-slider{

}
/* category */

.navigator{
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-inline: auto;
    margin-block-start: 50px;
}
.navigator select{
    border: 2px solid var(--purple);
    padding: 0.25em 0.5em;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1.1;
    background-color: #fff;
    background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
    outline: none;
    color: var(--purple);
}
.navigator .nav-title{
    color: var(--purple);
    border: 2px solid var(--bgcolor);
    padding: 3px;
}
.container-book-lists{
    width: 94%;
    margin-inline: auto;
    margin-block-start: 30px;
    display: grid;
    grid-template-columns: 1fr 4fr;

}
.books-lists{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.book-list{
    width: 240px;
    padding: 5px;
    height: 520px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.book-list:hover{
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.book-image{
    width: 230px;
    height: 320px;
    border: none;
    overflow: hidden;
}

.book-image img{
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.book-list:hover img{
    transform: scale(1.1);
}
.book-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 180px;
    text-align: center;

}
.book-info div h3 a{
    color: #000;
}
.book-info a{
    font-size: 18px;
    font-weight: 500;
    color: var(--purple);
}
.book-info div a{
    font-size: 17px;
    color: #fff;
}

.container-book-lists .options-category ul{
    margin-top: 30px;
}
.container-book-lists .options-category ul li a{
    padding: 5px;
    font-size: 24px;
    color: var(--purple);
    font-weight: 700;
}
.container-book-lists .options-category ul li a.active{
    color: rgb(70, 113, 69);
}
.options-category .title-categori{
    margin-bottom: 20px;
    position: relative;
}
.options-category .title-categori::after{
    content: '';
    bottom: -2px;
    width: 35%;
    left: -0%;
    position: absolute;
    height: 2px;
    background-color: var(--purple);
}
.options-category .title-categori span{
    font-size: 30px;
    color: var(--purple);
    width: 60%;
    padding: 2px 6px;
}
.paginations{
    width: 100%;
    display: inline-flex;
    justify-content: center;
    margin-block: 25px;
}
.paginations ul{
    display: flex;
    gap: 8px;
}
.paginations ul li a{
    height: 35px;
    width: 35px;
    background-color: var(--purple);
    display: block;
    text-align: center;
    line-height: 35px;
    color: #fff;
    font-size: 24px;
    border-radius: 4px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.3s ease-in;
}
.paginations ul li a:hover{
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.paginations ul li a.active{
    transform: scale(1.2);

}
/* BOOK DETAİLS */
.container-detail{
    padding: 20px;
}
.book-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.show-image{
    height: 450px;
    text-align: center;
}
.show-image  img{
    height: 100%;
    border: 1px dotted var(--purple);
}
.show-image  img:hover{

}
.info-book-detail{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 20px;
}
.attribue{
    display: flex;
    justify-content: start;
    font-size: 22px;
    gap: 15px;
}
.attribue div:first-child{
    display: inline-block;
    min-width: 100px;
}
.attribute-buy{
    width: 271px;
    display: flex;
    gap: 7px;
}

.about-book{
    padding: 10px;
    font-size: 19px;
    margin: 15px;

}
.about-book h1{
    padding-left: 10px;
}
.about-book p{
    padding: 15px 10px;
    font-size: 19px;
    font-family: var(--font-text-main);
    font-weight: 300;
}

.section-comment h1{
    text-align: center;
    width: 100%;
}
.box-comment h4{
    font-size: 24px;
    text-decoration: underline;
    margin-left: 10px;
}
.box-comment p{
    background-color: #eee;
    padding: 10px;
    font-size: 19px;
    border: 2px dashed #ddd;
}
.box-comment{
    margin: 10px;
}
.writer-comment{
    padding: 10px;
}
.section-profile{
    display: grid;
    grid-template-columns: 1fr 3fr;
    width: 100%;
    padding: 20px 30px;
    gap: 20px;
    margin-bottom: 250px;
    margin-top: 40px;
}

.profile-navigator {
    padding: 10px;
    flex:0.5;
    background-color: #1924ca;
}
.profile-navigator ul li:first-child{
    margin-bottom: 20px;
    border: none;
}

.profile-navigator ul li{

    padding: 8px 4px;
    border-bottom: 1px dashed var(--purple-light2);

}
.profile-navigator ul li a{
    font-size: 22px;
    color: #fff;
}
.profile-content{
    padding: 0 40px;
}
.title-buy{
    width: 100%;
    text-align: center;
    margin: 20px;
}
.title-buy h1{
    text-align: center;
}
.section-buy{
    border: none;
    padding: 60px 10px;
}
.lists-buy{
    margin-inline: 20px;
    margin-block: 35px;
}
.lists-buy ul{
    display: grid;
    grid-template-columns: 6fr 1fr 1fr;
    justify-content: space-between;
    border-bottom: 1px dashed var(--purple);
    margin-bottom: 25px;
    align-items: center;
    position: relative;
    gap: 10px;
    padding-bottom: 3px;
}
.lists-buy ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.lists-buy ul li span{
    font-size: 20px;
}
.profile{
    margin: auto;
    padding: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.profile h1{
    font-size: 22px;
    margin: 20px;
}
.profile div.profile-menu{
    background-color: var(--purple);
    padding: 5px;
}
.profile div ul li{
    padding:10px;
    border-bottom: 1px dashed #2c9241;
}
.profile div.profile-menu ul li:last-child{
    border: none;
}
.profile div.profile-menu ul li a{
    color: #fff;
    font-size: 20px;
}
.box-adress ul{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--purple);
}
.box-adress ul li{
    border-bottom: none !important;
}

.sparis-boxes ul{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--purple);
}
.sparis-boxes ul li{
    border: none !important;
}
.form-contact{
    padding: 20px;
    margin-block: 30px;
}
.p-kisisel{
    letter-spacing: 1.2px;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
}
.social{
    margin-bottom: 28px;
    margin-left: 50px;
}
.section-book-detail{
    padding: 20px 10px;
}
.social ul{
    display: flex;
    justify-content: start;
    margin: 15px 0px;
    gap: 10px;
}
.social ul li a{
    color: var(--purple);
    font-size: 24px;
}
.social ul li button{
    padding: 4px;
    background-color: var(--purple);
    border-radius: 3px;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}
.select-adress{
    padding:9px;
    border: 1px solid var(--purple);
    color: var(--purple);
    margin: 3px;
    border-radius: 4px;
    max-width: 220px;
}
.container-letter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 10px 0;
}
.letter {
    border: 1px solid #7dbf7b;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    font-weight: bold;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.container-publish {
    padding: 30px;
    margin: 30px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.box-publish {
    padding: 6px 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: all 0.3s ease-in-out;
}
@media screen and (min-width:1400px) {
    header,
    section,.carousel,
    footer{
        max-width: 1400px;
        margin: auto;
    }

}
@media screen and (max-width:1300px) {
    .carousel{
        height: 475px;
    }
}
@media screen and (max-width:1200px) {
    .carousel{
        height: 450px;
    }
    .slider {
        height:530px;
    }
    .banner {
        height:360px;
        margin-bottom:10px;
    }

}
@media screen and (max-width:1100px) {
    .carousel{
        height: 440px;
    }
    .carousel .list .item .topic{
        font-size: 4em;
    }
    .carousel .list .item .content{
        left: 40%;
    }
    .slider {
        height:490px;
    }
    .banner {
        height:330px;
    }

}

@media screen and (max-width:1050px) {
    .banner {
        width:300px;
        margin-bottom:10px;
    }
}
@media screen and (max-width:950px) {
    .carousel{
        height: 400px;
    }
    .container-week{
        height: auto;
        flex-direction: column-reverse;
    }
    .with-classic{
        width: 100%;
    }
    .slider {
        height:410px;
    }
    .banner {
        height:275px;
        margin-bottom:10px;
    }

}
@media screen and (max-width:853px) {
    header .logo h1 {
        font-size: 30px;
    }

    header .search-menu input {
        height: 45px;
        width: 340px;
    }

    .carousel {
        height: 360px;

    }
    .carousel .list .item .topic{
        font-size: 3em;
    }
    .carousel .list .item .content{
        padding: 10px;
    }
    .banner-paymet img{
        width: 98%;
    }
    .slider {
        height:370px;
    }
    .banner {
        height:250px;

    }


}
@media screen and (max-width:715px) {
    header .logo h1 {
        font-size: 30px;
    }
    header .search-menu input {
        height: 45px;
        width: 250px;
    }
    .book-container {
        grid-template-columns: 1fr;
    }
    .slider {
        height:310px;
    }
    .banner {
        height:250px;

    }

}
@media screen and (max-width:767px) {
    header .search-menu input {
        width: 300px;
    }
    header .logo h1 {
        font-size: 32px;
    }
    header .logo h1{
        font-size: 30px;
    }
    .header-top {
        margin-inline: 2%;
    }
    .carousel{
        height: 360px;
    }
    .box-sales i{
        font-size: 30px;
    }
    .box-sales h2{
        font-size: 18px;
    }
    .form-email form input[type="text"] {
        width: 340px;
    }
    header .search-menu input {
        width: 240px;
    }
    header .menu ul {
        gap: 8px;
    }
    header .search-menu .search-result ul li a {
        font-size: 16px;
        font-weight: 500;
    }
    header .nav ul li a {
        padding: 10px 5px;
    }
    header .nav ul {
        width: 100%;
    }
    .banner-paymet img{
        width: 100%;
    }
    .slider {
        height:320;
    }
    .banner {
        height:225px;

    }
    .contex h1 {
        font-size: 36px;

    }
}
@media screen and (max-width:678px) {
    header .menu ul li a {
        font-size: 22px;
    }
    header .search-menu input {
        width: 280px;
    }
    .carousel{
        height: 300px;
    }
    .box-sales{
        padding: 15px 3px;;
    }
    .info-sales {
        padding:20px 10px;
    }
    .thumbnail .item {
        width: 160px;
        height: 120px;
    }
    header{
        height: auto;
    }
    .form-email form{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;;
    }
    .books-lists {
        justify-content: center;
    }
    .container-book-lists {
        grid-template-columns: 1fr 1fr;
    }
    header .logo h1 {
        font-size: 24px;
    }
    header .search-menu input {
        height: 36px;
        width: 230px;
    }
    header .nav ul li a {
        padding: 8px 3px;
        font-size: 17px;
    }
    header .nav ul li a span {
        padding: 2px;
    }
    .carousel .list .item .content{
        top: 1%;
    }
    .carousel .list .item .topic{
        font-size: 2em;
    }
    .carousel .list .item .des{
        font-size: 15px;
    }
    .slider {
        height:530px;
    }
    .slider {
        height:290px;
    }
    .banner {
        height:200px;

    }
}

@media screen and (max-width:578px) {
    .header-top{
        flex-direction: column;
        align-items: center;
        margin-block: 10px;
        gap: 25px;
    }
    header .search-menu{
        width: 100%;
        text-align: center;
    }
    .carousel{
        height: 280px;
    }
    .box-sales{
        padding: 15px 5px;
    }
    .box-sales i{
        font-size: 24px;
    }
    .box-sales h2{
        font-size: 16px;
    }
    .thumbnail .item {
        width: 120px;
        height: 75px;
    }
    .contex h1 {
        font-size: 24px;
    }
    .contex h2 {
        font-size: 30px;
    }
    header .logo img {
        height: 80px;
    }
    header .logo h1 {
        font-size: 30px;
    }
    header .search-menu input {
        width: 280px;
        height: 40px;
    }
    header .nav ul li a {
        font-size: 16px;
    }
    header .menu ul li .cover-shopping, header .menu ul li .cover-favories {
        width: 300px;

    }
    header .menu ul li .cover-shopping{
        right: -460%;
    }
    header .menu ul li .cover-favories{
        right: -320%;
    }
    header .search-menu .search-result {
        left:0;
        width:100%;
    }
    .slider {
        height:530px;
    }
    .slider {
        height:250px;
    }
    .banner {
        height:175px;

    }

}
@media screen and (max-width:530px) {
    header .nav ul li:first-child {
        display: block;
    }
    header .nav ul {
        flex-direction: column;
        width: 100%;
        height: 46px;
        justify-content: start;
    }
    header .nav ul li{
        width: 100%;
        border-bottom: 1px dashed #eee;
    }
    .info-sales{
        padding: 15px 4px;
    }
    .carousel{
        height: 300px;
    }
    .box-sales{
        padding: 12px 2px;
    }
    .box-sales i{
        font-size: 20px;
    }
    .box-sales h2{
        font-size: 15px;
    }
    header .menu ul li .cover-shopping{
        right: -520%;
    }
    header .menu ul li .cover-favories{
        right: -380%;
    }
    .slider {
        height:225px;
    }
    .banner {
        height:140px;

    }

}
@media screen and (max-width:520px) {
    .container-box .row{
        justify-content: center;
    }
    .row .box-book {
        width: 230px !important;

    }
    .carousel{
        height: 220px;
    }
    .slider {
        height:220px;
    }
    header .nav ul .sub-menu ul{
        display: flex;
    }

}

@media screen and (max-width:450px) {
    .row-sales{
        flex-direction: column;
    }
    .box-sales{
        padding: 15px 4px;
    }
    .box-sales i{
        font-size: 24px;
    }
    .box-sales h2{
        font-size: 18px;
    }
    .header-section .groups-tabs ul {
        gap: 6px;
    }
    .header-section .groups-tabs ul li {
        font-size: 20px;
    }
    .form-email form input[type="text"] {
        width: 300px;
    }
    .carousel{
        height: 300px;
    }
    header .search-menu .search-result {
        left:0;
        width:100%;
    }
    .slider {
        height:190px;
    }
    .banner {
        height:200px;

    }

}
@media screen and (max-width:430px) {
    .options-category{
        display: none;
    }
    .container-book-lists {
        grid-template-columns: 1fr;
    }
    .navigator{
        flex-direction: column;
        gap: 13px;
        align-items: center;
    }
    .container-books {
        padding-inline: 0;
        margin-inline: 20px;
    }

}
@media screen and (max-width:430px) {

    .container-books {
        padding-inline: 10px;
        margin-inline: 60px;
    }
    .row .box-book {
        width: 100% !important;

    }
    .row .box-book img{
        width: 90%;
    }
}

@media screen and (max-width:360px) {
    .form-email form input[type="text"] {
        width: 240px;
    }
    .form-email form {
        padding: 4px;
    }
    .row .box-book {
        width: 100% !important;

    }
    .flex-wraper{
        margin-inline: 20px;
    }
    .container-books {
        padding-inline: 0;
        margin-inline: 30px;
    }
}
