*{
    box-sizing: border-box;
}
body ,h1 ,h2 ,h3 ,h4 ,p{
    margin: 0;
    padding: 0;
    font-family: "Libertinus Serif Display", system-ui;
    scroll-behavior: smooth;
}
.contaner{
    width: 90%;
    margin: auto;
}
/* start of scrollbar */
::-webkit-scrollbar{
    width: 10px;
}
::-webkit-scrollbar-track {
  background: #b17a4c6b 
}
::-webkit-scrollbar-thumb {
  background: #BC5F13; 
  border-radius: 22px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bc5f13a9; 
}
::-webkit-scrollbar-button{
    background-color: #BC5F13;
    border-radius: 22px;
}
/* end of scrollbar */


/* start header */
.header{
    width: 100%;
    height: 100vh;
    background-image: url("../photo/section.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid;
    display: flex;
    align-items: flex-end;
    position: relative;
    background-color:  #33271d4f ;
    overflow: hidden;
    background-blend-mode: darken;
}
.header nav{
    width: 90%;
    height: 10vh;
    border-radius: 137px;
    border: 1px solid #FFFFFFCC;
    position: fixed;
    top: 46px;
    left: 5%;
    /* position: relative; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 0px 3%;
    background-image: url("../photo/nav.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: +999 !important;
    background: radial-gradient(50.89% 326.4% at 12.61% 176.25%, rgba(255, 255, 255, 0.275) 0%, rgba(255, 255, 255, 0.22) 100%);
    backdrop-filter: blur(90px);
    box-shadow: 0px 4px 25px 0px #281B134D;
}

.nav_layer{
    background-image: url("../photo/nav.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;  
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1 !important;
    opacity: .3;
}
.header nav .part_1{
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: aqua; */
}
.header nav .part_1 ul{
    width: 449px;
    height: 22px;
    list-style: none;
    display: flex;
    gap: 55px;
}
.header nav .part_1 ul li a{
    text-decoration: none;
    color: #211B15;
    font-size: 18px;
    transition: .3s;
}
.header nav .part_1 ul li a:hover{
    color: #BC5F13;
    font-size: 20px;
}
.header nav .part_2{
    display: flex;
    gap: 20px;
    align-items: center;
}
.header nav .part_2 .lang{
    color: #211B15;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}
.header nav .part_2 .lang:hover{
    font-size: 20px;
    color: #BC5F13;
}
.header nav .part_2 button ,.header .header_content button{
    background-color: transparent;
    border-radius: 99px;
    border: 1px solid #211B15;
    color: #211B15;
    padding: 10px 24px;
    transition: .3s;
    cursor: pointer;
}
.header nav .part_2 button:hover{
    color: #BC5F13;
    padding: 12px 26px;
    border: 1px solid #BC5F13;
}
.header nav div ul , .header nav div h2{
    margin: 0;
    padding: 0;
}

.header .header_content{
    width: 90%;
    position: absolute;
    bottom: 0;
    left: 5%;
    height: 20vh;
}
.header .header_content button{
    color: #FFF9F1;
    border: 1px solid #FFF9F1;
    cursor: pointer;
}
.header .header_content button:hover{
    border: 1px solid #BC5F13;
    background-color: #BC5F13;
    color: #FFF9F1;
    transition: .3s;
    transform: scale(1.2);
}
.header .header_content h1{
    font-size: 72px;
    font-weight: 700;
    color: #FFF9F1;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    animation-name: h1;
    animation-duration: 10s;
}
@keyframes h1 {
    from{width: 0;}
    to{
        width: 100%;
    }
}
/* end header */

/* start section 1 */
#sec_1{
    width: 100%;
    height: 150vh;
}
#sec_1 .contaner .head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 15vh;
    margin-top: 20px;
}
#sec_1 .contaner .head h1{
    font-size: 52px;
    line-height: 135%;
    font-family: "Libertinus Serif Display", system-ui;
}
#sec_1 .contaner .head h4{
    font-family: "Libertinus Serif Display", system-ui;
    font-size: 28px;
    line-height: 135%;
    transition: .3s;
    cursor: pointer;

}
#sec_1 .contaner .head h4:hover{
    color: #BC5F13;
    font-size: 30px;
    text-decoration: underline;
    text-decoration-color: #BC5F13;
}

.cards1{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}
.cards1 .cont{
    width: 100%;
    height: 95%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 20px;
}
.cards1 .cont .card_1{
    width: 90%;
    height: 100%;
    cursor: pointer;
    transition: .3s;
    /* animation-name: card1;
    animation-duration: 3s; */
}

/* @keyframes card1{
    from{
        transform: scale(0);
    }
    to{
        transform: scale(1);
    }
} */
.cards1 .cont .card_1:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
.cards1 .cont .card_1 .img{
    width: 390px;
    height: 507px;
    background-image: url("../photo/Living\ Room.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 22px;
}
.cards1 .cont .card_1 .text h1{
    color: #191511;
    font-size: 32px;
    font-family: "Libertinus Serif Display", system-ui;
}
.cards1 .cont .card_1 .text h2{
    color: #BC5F13;
    font-size: 32px;
    font-family: "Libertinus Serif Display", system-ui;
}

.cards1 .cont .card_2{
    width: 90%;
    height: 100%;
    cursor: pointer;
    transition: .3s;
}
.cards1 .cont .card_2:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
.cards1 .cont .card_2 .img{
    width: 390px;
    height: 507px;
    background-image: url("../photo/Bed\ Room.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 22px;
}
.cards1 .cont .card_2 .text h1{
    color: #191511;
    font-size: 32px;
    font-family: "Libertinus Serif Display", system-ui;
}
.cards1 .cont .card_2 .text h2{
    color: #BC5F13;
    font-size: 32px;
    font-family: "Libertinus Serif Display", system-ui;
}

.cards1 .cont .card_3{
    width: 90%;
    height: 100%;
    transition: .3s;
    cursor: pointer;
}
.cards1 .cont .card_3:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
.cards1 .cont .card_3 .img{
    width: 390px;
    height: 507px;
    background-image: url("../photo/Dining\ Room.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 22px;
}
.cards1 .cont .card_3 .text h1{
    color: #191511;
    font-size: 32px;
    font-family: "Libertinus Serif Display", system-ui;
}
.cards1 .cont .card_3 .text h2{
    color: #BC5F13;
    font-size: 32px;
    font-family: "Libertinus Serif Display", system-ui;
}
/* end section 1 */



/* start section2 */

#sec_2{
    width: 100%;
    height: 230vh;
    /* background-color: aquamarine; */
}
#sec_2 .up{
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#sec_2 .up .logo2 h1{
    font-size: 52px;
    color: #191511;
    font-family: "Libertinus Serif Display", system-ui;
}
#sec_2 .up .select{
    display: flex;
    gap: 20px;
}
#sec_2 .up .select h2{
    color: #191511;
    font-size: 32px;
    font-family: "Libertinus Serif Display", system-ui;
}
#sec_2 .up .select #Prize{
    color: #191511;
    border: 1px solid #191511;
    border-radius: 99px;
    width: 103px;
    height: 38px;
    padding: 4px 15px 4px 15px;
    cursor: pointer;
    transition: .3s;
}
#sec_2 .up .select #Prize:hover{
    transform: scale(1.1);
    box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
}
#sec_2 .up .select #Date{
    color: #191511;
    border: 1px solid #191511;
    border-radius: 99px;
    width: 103px;
    height: 38px;
    padding: 4px 15px 4px 15px;
    cursor: pointer;
    transition: .3s;
}
#sec_2 .up .select #Date:hover{
    transform: scale(1.1);
    box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
}
#sec_2 .up .select #Relevance{
    color: #191511;
    border: 1px solid #191511;
    border-radius: 99px;
    width: 194px;
    height: 38px;
    padding: 4px 15px 4px 15px;
    cursor: pointer;
    transition: .3s;
}
#sec_2 .up .select #Relevance:hover{
    transform: scale(1.1);
    box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
}
#sec_2 .down{
    display: flex;
    /* background-color: green; */
    width: 100%;
    height: 210vh;
}
#sec_2 .down .left{
    /* background-color: blueviolet; */
    width: 35%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
#sec_2 .down .left .but1{
    width: 401px;
    height: 66px;
    border: 1px solid #231E18;
    border-radius: 100px;
    padding: 13px 147px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: .3s;
}
#sec_2 .down .left .but1:hover{
    transform: scale(.9);
    background-color: #bc5f135e;
    border: 1px solid #bc5f135e;
}
#sec_2 .down .left .but1  button{
    color: #191511;
    font-size: 28px;
    background-color: transparent;
    border: 1px solid transparent;
}
#sec_2 .down .left .but2{
    width: 401px;
    height: 66px;
    border: 1px solid #231E18;
    border-radius: 100px;
    padding: 13px 147px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: .3s;
}
#sec_2 .down .left .but2:hover{
        transform: scale(.9);
    background-color: #bc5f135e;
    border: 1px solid #bc5f135e;
}
#sec_2 .down .left .but2  button{
    color: #191511;
    font-size: 28px;
    background-color: transparent;
    border: 1px solid transparent;
}
#sec_2 .down .left .but3{
    width: 401px;
    height: 66px;
    border: 1px solid #231E18;
    border-radius: 100px;
    padding: 13px 147px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: .3s;
}
#sec_2 .down .left .but3:hover{
        transform: scale(.9);
    background-color: #bc5f135e;
    border: 1px solid #bc5f135e;
}
#sec_2 .down .left .but3  button{
    color: #191511;
    font-size: 28px;
    background-color: transparent;
    border: 1px solid transparent;
}
#sec_2 .down .left .but4{
    width: 401px;
    height: 66px;
    border: 1px solid #231E18;
    border-radius: 100px;
    padding: 13px 147px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: .3s;
}
#sec_2 .down .left .but4:hover{
        transform: scale(.9);
    background-color: #bc5f135e;
    border: 1px solid #bc5f135e;
}
#sec_2 .down .left .but4  button{
    color: #191511;
    font-size: 28px;
    background-color: transparent;
    border: 1px solid transparent;
}
#sec_2 .down .left .but5{
    width: 401px;
    height: 66px;
    border: 1px solid #231E18;
    border-radius: 100px;
    padding: 13px 147px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: .3s;
}
#sec_2 .down .left .but5:hover{
    transform: scale(.9);
    background-color: #bc5f135e;
    border: 1px solid #bc5f135e;
}
#sec_2 .down .left .but5  button{
    color: #191511;
    font-size: 28px;
    background-color: transparent;
    border: 1px solid transparent;
}
#sec_2 .down .left .but6{
    width: 401px;
    height: 66px;
    border: 1px solid #231E18;
    border-radius: 100px;
    padding: 13px 147px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: .3s ease;
}
#sec_2 .down .left .but6:hover{
    transform: scale(.9);
    background-color: #bc5f135e;
    border: 1px solid #bc5f135e;
    
}
#sec_2 .down .left .but6  button{
    color: #191511;
    font-size: 28px;
    background-color: transparent;
    border: 1px solid transparent;
}

#sec_2 .down .right{
    /* background-color: chartreuse; */
    width: 80%;
    height: 210vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
#sec_2 .down .right .row1{
    /* background-color: brown; */
    display: flex;
    justify-content: space-around;
    /* height: fit-content; */
    /* width: 80%;
    height: 200vh; */
}
#sec_2 .down .right .row1 .card1{
    width: 250px;
    height: 380px;
    transition: .3s;
    cursor: pointer;
}
#sec_2 .down .right .row1 .card1:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
#sec_2 .down .right .row1 .card1 .img1{
    background-image: url("../photo/Modern\ Luxe\ Chair.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 300px;
    border-radius: 22px;
}
#sec_2 .down .right .row1 .card1 h1{
    font-size: 32px;
    color: #191511;
}
#sec_2 .down .right .row1 .card1 h2{
    font-size: 32px;
    color: #BC5F13;
}


#sec_2 .down .right .row1 .card2{
    width: 250px;
    height: 380px;
    transition: .3s;
    cursor: pointer;
}
#sec_2 .down .right .row1 .card2 .img1{
    background-image: url("../photo/Noir\ Dresser.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 300px;
    border-radius: 22px;
}
#sec_2 .down .right .row1 .card2:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
#sec_2 .down .right .row1 .card2 h1{
    font-size: 32px;
    color: #191511;
}
#sec_2 .down .right .row1 .card2 h2{
    font-size: 32px;
    color: #BC5F13;
}


#sec_2 .down .right .row1 .card3{
    width: 250px;
    height: 380px;
    transition: .3s;
    cursor: pointer;
}
#sec_2 .down .right .row1 .card3:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
#sec_2 .down .right .row1 .card3 .img1{
    background-image: url("../photo/Luxe\ Comfort\ Rug.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 300px;
    border-radius: 22px;
}
#sec_2 .down .right .row1 .card3 h1{
    font-size: 32px;
    color: #191511;
}
#sec_2 .down .right .row1 .card3 h2{
    font-size: 32px;
    color: #BC5F13;
}









#sec_2 .down .right .row2{
    /* background-color: brown; */
    display: flex;
    justify-content: space-around;
    /* height: fit-content; */
}
#sec_2 .down .right .row2 .card1{
    width: 250px;
    height: 380px;
    transition: .3s;
    cursor: pointer;
}
#sec_2 .down .right .row2 .card1:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
#sec_2 .down .right .row2 .card1 .img1{
    background-image: url("../photo/Harmony\ \ Table.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 300px;
    border-radius: 22px;
}
#sec_2 .down .right .row2 .card1 h1{
    font-size: 32px;
    color: #191511;
}
#sec_2 .down .right .row2 .card1 h2{
    font-size: 32px;
    color: #BC5F13;
}


#sec_2 .down .right .row2 .card2{
    width: 250px;
    height: 380px;
    transition: .3s;
    cursor: pointer;
}
#sec_2 .down .right .row2 .card2:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
#sec_2 .down .right .row2 .card2 .img1{
    background-image: url("../photo/Crystal\ Hive\ Sofa.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 300px;
    border-radius: 22px;
}
#sec_2 .down .right .row2 .card2 h1{
    font-size: 32px;
    color: #191511;
}
#sec_2 .down .right .row2 .card2 h2{
    font-size: 32px;
    color: #BC5F13;
}


#sec_2 .down .right .row2 .card3{
    width: 250px;
    height: 380px;
    transition: .3s;
    cursor: pointer;
}
#sec_2 .down .right .row2 .card3:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
#sec_2 .down .right .row2 .card3 .img1{
    background-image: url("../photo/Cove\ Coffee\ Sofa.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 300px;
    border-radius: 22px;
}
#sec_2 .down .right .row2 .card3 h1{
    font-size: 32px;
    color: #191511;
}
#sec_2 .down .right .row2 .card3 h2{
    font-size: 32px;
    color: #BC5F13;
}


#sec_2 .down .right .row3{
    /* background-color: brown; */
    display: flex;
    justify-content: space-around;
    /* height: fit-content; */
}
#sec_2 .down .right .row3 .card1{
    width: 250px;
    height: 380px;
    transition: .3s;
    cursor: pointer;
}
#sec_2 .down .right .row3 .card1:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
#sec_2 .down .right .row3 .card1 .img1{
    background-image: url("../photo/Artisan\ Highboy.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 300px;
    border-radius: 22px;
}
#sec_2 .down .right .row3 .card1 h1{
    font-size: 32px;
    color: #191511;
}
#sec_2 .down .right .row3 .card1 h2{
    font-size: 32px;
    color: #BC5F13;
}


#sec_2 .down .right .row3 .card2{
    width: 250px;
    height: 380px;
    transition: .3s;
    cursor: pointer;
}
#sec_2 .down .right .row3 .card2:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
#sec_2 .down .right .row3 .card2 .img1{
    background-image: url("../photo/Opulent\ Chair.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 300px;
    border-radius: 22px;
}
#sec_2 .down .right .row3 .card2 h1{
    font-size: 32px;
    color: #191511;
}
#sec_2 .down .right .row3 .card2 h2{
    font-size: 32px;
    color: #BC5F13;
}


#sec_2 .down .right .row3 .card3{
    width: 250px;
    height: 380px;
    transition: .3s;
    cursor: pointer;
}
#sec_2 .down .right .row3 .card3:hover{
    box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -webkit-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    -moz-box-shadow: -7px 8px 21px 8px rgba(48,47,47,0.49);
    border-radius: 22px;
    background-color: #302f2f21;
    transform: scale(.9);
}
#sec_2 .down .right .row3 .card3 .img1{
    background-image: url("../photo/Tradition\ Wool\ Rug.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 300px;
    border-radius: 22px;
}
#sec_2 .down .right .row3 .card3 h1{
    font-size: 32px;
    color: #191511;
}
#sec_2 .down .right .row3 .card3 h2{
    font-size: 32px;
    color: #BC5F13;
}
/* end section 2 */


/* start section 3 */

#sec_3{
    width: 100%;
    height: 220vh;
    /* background-color: #BC5F13; */
}
#sec_3 .Interior{
    /* background-color: aqua; */
    width: 100%;
    height: 15vh;
    display: flex;
    align-items: center;
}
#sec_3 .Interior h1{
    font-size: 52px;
    color: #191511;
}
#sec_3 .sec3_cards{
    /* background-color: blueviolet; */
    width: 100%;
    height: 220vh;
    display: flex;
}
#sec_3 .sec3_cards .card_right{
    width: 50%;
    height: 190vh;
    /* background-color: chartreuse; */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
#sec_3 .sec3_cards .card_right .img1{
    width: 600px;
    height: 576px;
    background-image: url("../photo/iii.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 22px;
    transition: .3s;
}
#sec_3 .sec3_cards .card_right .img1:hover{
    transform: scale(.9);
    box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
}
#sec_3 .sec3_cards .card_right .img2{
    width: 600px;
    height: 576px;
    background-image: url("../photo/www.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 22px;
    transition: .3s;
}
#sec_3 .sec3_cards .card_right .img2:hover{
     transform: scale(.9);
    box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
}
#sec_3 .sec3_cards .card_left{
    width: 50%;
    height: 190vh;
    /* background-color: rgb(255, 17, 0); */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#sec_3 .sec3_cards .card_left .img1{
    width: 500px;
    height: 748px;
    background-image: url("../photo/rrr.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 22px;
    transition: .3s;
}
#sec_3 .sec3_cards .card_left .img1:hover{
     transform: scale(.9);
    box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
}
#sec_3 .sec3_cards .card_left .img2{
    width: 500px;
    height: 401px;
    background-image: url("../photo/qqq.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 22px;
    filter: brightness(0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}
#sec_3 .sec3_cards .card_left .img2:hover{
     transform: scale(.9);
    box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
}
#sec_3 .sec3_cards .card_left .img2 a{
    text-decoration: none;
    font-size: 36px;
    color: #FFF9F1;
}
/* end section 3 */


/* start section 4 */
#sec_4{
    width: 100%;
    height: 100vh;
    /* background-color: aquamarine; */
}
#sec_4 .Popular{
    width: 100%;
    height: 15vh;
    /* background-color: blue; */
    display: flex;
    align-items: center;
}
#sec_4 .Popular h1{
    font-size: 52px;
    color: #191511;
}
#sec_4 .row{
    width: 100%;
    height: 85vh;
    /* background-color: darkgreen; */
    display: flex;
    gap: 20px;
    overflow: hidden;
}
#sec_4 .row .card1{
    border-radius: 22px;
    transition: .3s;
}
#sec_4 .row .card1:hover{
     transform: scale(.9);
    box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
}
#sec_4 .row .card1 .img{
    width: 350px;
    height: 427px;
    border-radius: 22px;
    background-image: url("../photo/aa.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#sec_4 .row .card1 .discription h2{
    font-size: 32px;
    color: #191511;
}
#sec_4 .row .card1 .discription h3{
    font-size: 32px;
    color: #BC5F13;
}




#sec_4 .row .card2{
    border-radius: 22px;
    transition: .3s;
}
#sec_4 .row .card2:hover{
     transform: scale(.9);
    box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
}
#sec_4 .row .card2 .img{
    width: 350px;
    height: 427px;
    border-radius: 22px;
    background-image: url("../photo/sofaaa.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#sec_4 .row .card2 .discription h2{
    font-size: 32px;
    color: #191511;
}
#sec_4 .row .card2 .discription h3{
    font-size: 32px;
    color: #BC5F13;
}

#sec_4 .row .card3{
    border-radius: 22px;
    transition: .3s;
}
#sec_4 .row .card3:hover{
     transform: scale(.9);
    box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
}
#sec_4 .row .card3 .img{
    width: 350px;
    height: 427px;
    border-radius: 22px;
    background-image: url("../photo/draggg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#sec_4 .row .card3 .discription h2{
    font-size: 32px;
    color: #191511;
}
#sec_4 .row .card3 .discription h3{
    font-size: 32px;
    color: #BC5F13;
}
#sec_4 .row .card4{
    border-radius: 22px;
    transition: .3s;
}
#sec_4 .row .card4:hover{
     transform: scale(.9);
    box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -webkit-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
    -moz-box-shadow: 3px 6px 24px 0px rgba(0,0,0,0.55);
}
#sec_4 .row .card4 .img{
    width: 350px;
    height: 427px;
    border-radius: 22px;
    background-image: url("../photo/ttt.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#sec_4 .row .card4 .discription h2{
    font-size: 32px;
    color: #191511;
}
#sec_4 .row .card4 .discription h3{
    font-size: 32px;
    color: #BC5F13;
}
/* end section 4 */

/* start sectoion 5 */
#sec_5{
    width: 100%;
    height: 110vh;
    /* background-color: blanchedalmond; */
    margin-top: 10px;
}
#sec_5 .all{
    width: 1222px;
    height: 565px;
    border-radius: 32px;
    background-image: url("../photo/all.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
#sec_5 .all .art{
    width: 559px;
    height: 287px;
    background-color: #191511;
    border: 1px solid #191511;
    border-radius: 26px;
    position: absolute;
    left: 70px;
    top: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 20px;
}
#sec_5 .all .art h2{
    color: #FFF9F1;
    font-size: 32px;
}
#sec_5 .all .art p{
    color: #FFF9F1;
    font-size: 24px;
}
/* end sectoion 5 */


/* start footer */
footer{
    width: 100%;
    height: 50vh;
    background-color: #191511; 
    display: flex;
}
footer .oil{
    display: flex;
}
footer .right{
    display: flex;
    width: 50%;
    height: 50vh;
    /* background-color: #BC5F13; */
    position: relative;
}
footer .right .Serene{
    position: absolute;
    left: 0px;
    top: 50px;
}
footer .right .Serene h1{
    font-size: 22px;
    color: #FFF9F1;
}
footer .right .Collection{
    position: absolute;
    left: 250px;
    top: 50px;
}
footer .right .Collection ul{
    list-style: none;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

footer .right .Collection ul li a{
    text-decoration: none;
    font-size: 20px;
    color: #FFF9F1;
    cursor: pointer;
    transition: .3s;
}
footer .right .Collection ul li a:hover{
    color: #BC5F13;
}
footer .right .About{
    position: absolute;
    left: 400px;
    top: 50px;
}
footer .right .About ul{
    list-style: none;
    gap: 20px;
    display: flex;
    flex-direction: column;
}
footer .right .About ul li a{
    text-decoration: none;
    font-size: 20px;
    color: #FFF9F1;
    cursor: pointer;
    transition: .3s;
}
footer .right .About ul li a:hover{
    color: #BC5F13;
}
footer .oil .left{
    width: 50%;
    height: 50vh;
    /* background-color: brown; */
    display: flex;
    flex-direction: column;
    position: relative;
}
footer .oil .left .join{
    position: absolute;
    left: 110px;
    top: 50px;
}
footer .oil .left .join h3{
    font-size: 26px;
    color: #FFF9F1;
}
footer .oil .left .email{
    position: absolute;
    left: 110px;
    top: 100px;
}
footer .oil .left .email input{
    width: 281px;
    height: 44px;
    border-radius: 83px;
    border: 1px solid #FFF9F1;
    padding: 10px 20px;
    color: #191511;
    font-size: 18px;
}
footer .oil .left .email button{
    width: 104px;
    height: 44px;
    border-radius: 83px;
    padding: 10px 25px;
    font-size: 18px;
    color: #191511;
    cursor: pointer;
}
/* end footer */