* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Poppins", sans-serif;
}
nav {
    background-color: #FAE3B6;
    padding: 47px 0px;
}
/* Common CSS Start */
a {
    text-decoration: none;
}
ul,
ol {
    list-style: none;
}
.container {
    width: 1280px;
    margin: 0 auto;
}
.box {
    display: flex;
}
/* Common CSS End */
/* Navbar Part Start */
nav .box {
    align-items: center;
}
.logo {
    width: 15%;
}
.menu {
    width: 65%;
    justify-items: center;
}
.menu ul {
    display: flex;
    column-gap: 59px;
}
.menu ul li a {
    font-size: 24px;
    font-weight: 600;
    color: black;
    font-family: "Poppins", sans-serif;
    justify-content: center;
}
.button {
    width: 20%;
    text-align: right;
}
.button a {
    background-color: #FDBB57;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: .7s;
}
.button a:hover {
    background-color: transparent;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.button a:last-child {
    margin-left: 10px;
}
/* Navbar Part End */
/* Banner Part Start */
.banner {
    background-color: #FAE3B6;
    padding-top: 117px;
    padding-bottom: 102px;
}
.bannertext {
    width: 50%;
}
.bannertext h1 {
    font-size: 64px;
    font-weight: 600;
    width: 500px;
}
.bannertext p {
    font-size: 22px;
    font-weight: 400;
    padding-top: 30px;
    padding-bottom: 76px;
}
.bannertext a {
    background-color: black;
    color: white;
    font-size: 24px;
    padding: 25px 91px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: .7s;
}
.bannertext a:hover{
    border: 1px solid black;
    background-color: transparent;
    color: black;
}
.bannerimage {
    width: 50%;
    margin-left: 210px;
}
/* Banner Part End */

/* Collection Part Start  */

.collection{
    padding-top: 217px;
    padding-bottom: 188px;
}
.collection h1{
    text-align: center;
    font-weight: 700;
    font-size: 64px;
    font-family: "Frank Ruhl Libre", serif;;
}

.collection_card{
    width: 349px;
    height: 402px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    
}
.collection_card img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.collection_card .overlay{
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: .8;
    position: absolute;
    top: 100%;
    left: 0;
    transition: .7s;
    padding-top: 320px;
    padding-left: 15px;
    padding-right: 15px;
    
    
}
.collection_card:hover .overlay{
    top: 0;
    left: 0;
}
.overlay p{
    background-color: white;
    display: inline-block;
    padding: 9px 108px;
    border-radius: 20px;
    font-weight: 400;
    font-size: 24px;
    color: black;
    font-family: "Poppins", sans-serif;
    
}
.collection .box{
    justify-content: space-between;
    padding-top: 106px;
}


/* Collection Part End  */
/* Overview Section Start */
.overview_image{
    width: 50%;
}
.overview_image img{
    z-index: 2;
    position: relative;
    margin-bottom: 335px;
}
.overview_description{
    width: 50%;
}
.overview .box{
    column-gap: 124px;
    display: flex;
    position: relative;
}
.overview_description h1{
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 700;
    font-size: 64px;
    width: 437px;
    margin-top: 71px;
    margin-bottom: 63px;
}
.overview_description p{
    font-weight: 600;
    font-size: 24px;
    width: 443px;
    margin-bottom: 132px;
}
.overview_information{
    width: 762px;
    height: 280px;
    background-color: #FEECC8;
    position: absolute;
    top: 606px;
    left: 528px;
    z-index: 1;
    display: flex;
    align-items: center;
}
.information{
    border-right: 1px solid black;
    width: 33.33%;
    justify-items: center;
}
.information h4{
    font-family: "Podkova", serif;
    font-size: 64px;
}
.information p{
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 28px;
}
.information:last-child{
    border-right: none;
}
/* Overview Section End */
/* Best Seller Section Start */
.bestseller{
    background-color: #CFA485;
}
.bestseller .box{
    padding-top: 40px;
    padding-bottom: 191px;
    column-gap: 80px;
}
.best_seller_description{
    align-content: space-between;
} 
.best_seller_description h1{
    font-family: "Frank Ruhl Libre", serif;
    font-size: 64px;
    font-weight: 700;
    color: white;
    width: 437px;
    height: 162px;
    margin-bottom: 43px;
}
.best_seller_description p{
    font-family: "Frank Ruhl Libre", serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    width: 437px;
    height: 270px;
    margin-bottom: 40px;
}
.best_seller_description a {
    background-color: black;
    color: white;
    font-size: 24px;
    padding: 25px 91px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: .7s;
}
.best_seller_description a:hover{
    border: 1px solid black;
    background-color: transparent;
    color: black;
}

.image_box{
    width: 366px;
    height: 550px;
    
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    position: relative;
    overflow: hidden;
    
}
.image_box img{
    width: 100%;
    height: 100%;
    
}
.overlay1{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    opacity: 1;
    
    transition: .5s;

}
.image_box:hover .overlay1{
    top: 80%;
    left: 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.overlay1{
    padding-top: 10px;
    padding-left: 20px;
}
.fa-star{
    font-size: 15px;
    color: #FFAF37;
}
.overlay1 h5{
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
}
.overlay1 h6{
    color: #C4C4C4;
    font-size: 24px;
    
    font-weight: 400;
}
.price{
    color: black;
    margin-left: 57px;
}
.best_seller_image{
    display: flex;
    column-gap: 30px;
}
/* Best Seller Section End */

