*{
    box-sizing: border-box;
    font-family: sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
}
#sec1{
    width: 100%;
    height: 120vh;
    /* background-color: brown; */
    background-image: url("../photo/h1_hero.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: chocolate; */
    width: 100%;
    height: 15vh;
    margin: auto;
    padding: 15px;
    /* height: 10vh; */
    position: fixed;
    top: 0;
    background-color: #f7f5f5cc;
    z-index: 99999;
    animation-name: nav;
}

.logo{
    /* background-color: blue; */
    width: 10%;
    height: 10vh;
    padding-left: 30px;
}
.logo img{
    width: 90%;
    height: 90%;
    padding-left: 10px;
}
.input{
    width: 45%;
    /* background-color: aqua; */
    margin-left: 180px;
}
.input ul{
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.input ul li a{
    text-decoration: none;
    font-size: 16px;
    color: black;
    text-transform: capitalize;
    font-family: sans-serif;
    transition: .5s;
}
.input ul li a:hover{
    color: orangered;
}

.butoon button{
    font-size: 19px;
    color: grey;
    padding: 19px 47px;
    background-color: transparent;
    border: 1px solid orangered;
    border-radius: 5px;
    transition: .9s;
}

.butoon button:hover{
    background-color: orangered;
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 0px 10px #11111196;
}

.div_2{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    width: 65%;
    /* background-color: gold; */
    margin: 5% 5vh ;
}
.div_2 h1{
    color: orangered;
    font-size: 16px;
    text-transform: capitalize;
    /* background-color: hotpink; */
    animation-name: animation1;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.div_2 p{
    color: black;
    font-size: 60px;
    font-weight: 800;
    text-transform: capitalize;
    word-break: .5rem;
    /* background-color: coral; */
    animation-name: animation2;
    animation-duration: .9s;
    /* animation-timing-function: ease; */
    animation-fill-mode: forwards;
    margin-top: 0px;
}
.div_2 h2{
    color: rgb(71, 69, 69);
    font-size: 15px;
    text-transform: capitalize;
    margin-top: 0;
    animation-name: animation3;
    animation-duration: .8s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    line-height: 30px;
}
.div_2 .butoon_2 button{
    font-size: 19px;
    color: #fff;
    padding: 19px 47px;
    background-color: orangered;
    border: 1px solid orangered;
    border-radius: 5px;
    transition: .9s;
    text-transform: capitalize;
    margin-top: 10px;
    animation-name: animation4;
    animation-duration: 1.2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;

}
.div_2 .butoon_2 button:hover{
    background-color: rgb(204, 55, 1);
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 0px 10px #11111196;
}
.icon{
    position: fixed;
    right: 20px;
  bottom: 20px;
}
 .fa-solid{
    font-size:30px;
    width: 80px;
    /* background-color: orangered; */
    border-radius: 20px;
}
@keyframes animation1{
    from{
        transform: translateX(-10px);
    }
    to{
        transform: translateX(50px);
    }
}
@keyframes animation2{
    from{
        transform: translateX(-10px);
    }
    to{
        transform: translateX(50px);
    }
}
@keyframes animation3{
    from{
        transform: translateX(-10px);
    }
    to{
        transform: translateX(50px);
    }
}
@keyframes animation4{
    from{
        transform: translateX(-10px);
    }
    to{
        transform: translateX(50px);
    }
}

#sec2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    /* background-color: forestgreen; */
    width: 100%;
    height: 130vh;
    /* flex-direction: column; */
    background-color: rgba(226, 220, 220, 0.116);
    margin-top: 50px;
}
.contaner{
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    /* background-color: darkmagenta; */
    padding-left: 40px;
}
.title{
    /* background-color: aquamarine; */
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    
}
.header{
    /* background-color: blue; */
    width: 90%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.photo{
    width: 50%;
    /* height: 50vh; */
    /* background-color: chocolate; */
    display: flex;
    justify-content: flex-start;
    padding-left: 10px;
    
}

.photo img{
    width: 550px;
    height: 100vh;
}
.contaner .title h1{
     color: orangered;
    font-size: 16px;
    text-transform: capitalize;
    /* background-color: hotpink; */
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.contaner .title p{
    color: black;
    font-size: 45px;
    font-weight: 800;
    text-transform: capitalize;
    word-break: .5rem;
    /* background-color: coral; */
    animation-duration: .9s;
    /* animation-timing-function: ease; */
    animation-fill-mode: forwards;
    margin-top: 0px;
}

.contaner .title h2{
    font-size: 15px;
    color: #111111cb;
    text-transform: capitalize;
    margin-top: 0;
    animation-duration: .8s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    line-height: 30px;
}

.contaner .header .header_1{
    /* background-color: brown; */
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.contaner .header .header_2{
    /* background-color: rgb(174, 223, 0); */
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.contaner .header .header_1 .row_1{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* background-color: deeppink; */
    width: 50%;
    height: 20vh;
}
.contaner .header .header_1 .row_2{
    width: 50%;
    height: 20vh;
    /* background-color: dimgray; */
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.contaner .header .header_1 .row_1 h1{
    font-size: 14px;
    color: #111111cb;
}
.contaner .header .header_1 .row_2 h1{
    font-size: 14px;
    color: #111111cb;
}

.contaner .header .header_2 .row_3{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* background-color: rgb(255, 87, 20); */
    width: 50%;
    height: 20vh;
}
.contaner .header .header_2 .row_4{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* background-color: rgb(211, 103, 184); */
    width: 50%;
    height: 20vh;
}
.contaner .header .header_2 .row_3 h1{
    font-size: 14px;
    color: #111111cb;
}
.contaner .header .header_2 .row_4 h1{
    font-size: 14px;
    color: #111111cb;
}
#sec_3{
    width: 100%;
    height: 180vh;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

#sec_3 .dinner1{
    /* background-color: brown; */
    display: flex;
    width: 100%;
    height: 40vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 50px;
}
#sec_3 .dinner1 h1{
     color: orangered;
    font-size: 16px;
    text-transform: capitalize;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
#sec_3 .dinner1 h2{
    color: black;
    font-size: 50px;
    font-weight: 800;
    text-transform: capitalize;
    word-break: .5rem;
    animation-duration: .9s;
    margin-top: 0px;
    display: inline;
    padding: 0 220px;
    margin-left: 100px;
    text-align-last: center;
    line-height: 80px;
}
#sec_3 .dinner2{
    width: 100%;
    height: 10vh;
    /* background-color: chartreuse; */
    padding: 0 180px;
   
}
#sec_3 .dinner2 ul{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 50px;
}
#sec_3 .dinner2 ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}
#sec_3 .dinner2 ul li a{
    text-decoration: none;
    color: black;
}
#sec_3 .dinner2 ul li .Special{
    border: 1 solid orangered;
     padding: 12px 25px;
    background-color: orangered;
}
.all{
    margin-top: 20px;
    background-image: url("../photo/section_bg01.png");
    background-size: 129%;
    background-repeat: no-repeat;
    background-position: center;
}
#sec_3 .dinner3{
    display: flex;
}
#sec_3 .dinner3 .im1{
    /* background-color: chartreuse; */
    width: 40%;
    object-fit: contain;
}
#sec_3 .dinner3 .im2{
    background-color: darkgreen;
    width: 50%;

}
#sec_3 .dinner3 .im2 img{
    object-fit: cover;
}
#sec_3 .dinner3 .im2 img{
    width: 100%;
    height: 100%;
}
#sec_3 .dinner3 .im3{
    /* background-color: blueviolet; */
    width: 30%;
    display: flex;
    flex-direction: column;

}
#sec_3 .dinner3 .im3 img{
    /* width: 50%; */
    height: 100%;
}
#sec_4{
    width: 100%;
    height: 130vh;
    background-color: rgba(226, 220, 220, 0.342);
    display: flex;
    justify-content: space-between;
    /* margin-top: 80px; */
    padding: 80px 50px;
}

#sec_4 .artical3{
    /* background-color: darkred; */
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
#sec_4 .artical3 h1{
    color: orangered;
    font-size: 16px;
    text-transform: capitalize;
}
#sec_4 .artical3 h2{
    color: black;
    font-size: 45px;
    font-weight: 800;
    text-transform: capitalize;
    word-break: .5rem;
}
#sec_4 .artical3 h3{
    color: rgb(71, 69, 69);
    font-size: 15px;
    text-transform: capitalize;
    line-height: 30px;
}
#sec_4 .artical3 h4{
     color: rgb(71, 69, 69);
    font-size: 15px;
    text-transform: capitalize;
    line-height: 30px;
}
#sec_4 .artical3 button{
    font-size: 19px;
    color: grey;
    padding: 19px 47px;
    background-color: transparent;
    border: 1px solid orangered;
    border-radius: 5px;
    transition: .5s;
}
#sec_4 .artical3 button:hover{
    color: #fff;
    background-color: orangered;
    box-shadow: 0px 0px 10px #11111196;
}
#sec_4 .artical3 .art{
    width: 80%;
}

#sec_5{
    width: 100%;
    height: 70vh;
    /* background-color: chocolate; */
    background-image: url("../photo/section_bg04.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
#sec_5 .chose{
  width: 70%;
  height: 25vh;
  padding: 10px;
  border: 5px solid #fff;
  margin: 0;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
#sec_5 .book{
    /* background-color: darkgreen; */
    width: 50%;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#sec_5 .book h1{
    color: orangered;
    font-size: 16px;
    text-transform: capitalize;
}
#sec_5 .book h2{
    color: black;
    font-size: 45px;
    font-weight: 800;
    text-transform: capitalize;
    word-break: .5rem;
}
#sec_5 .chose button{
    font-size: 19px;
    color: #fff;
    padding: 19px 47px;
    background-color: orangered;
    border: 1px solid orangered;
    border-radius: 5px;
    transition: .5s;
}
#sec_5 .chose button:hover{
    color: orangered;
    background-color: #fff;
    box-shadow: 0px 0px 10px #11111196;
}
#sec_6{
    width: 100%;
    height: 120vh;
    background-color: rgba(231, 231, 231, 0.185);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#sec_6 .title_2{
    /* background-color: aquamarine; */
    width: 80%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#sec_6 .table{
    /* background-color: chartreuse; */
    display: flex;
    justify-content: space-around;
    width: 90%;
    height: 80vh;
    margin-top: 20px;
}
#sec_6 .title_2 h1{
    color: orangered;
    font-size: 16px;
    text-transform: capitalize;
}
#sec_6 .title_2 h2{
    color: black;
    font-size: 45px;
    font-weight: 800;
    text-transform: capitalize;
    word-break: .5rem;
}
#sec_6 .table .table1{
    background-color: rgba(235, 236, 236, 0.342);
    width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: .5s;
}
#sec_6 .table .table2{
    background-color:  rgba(235, 236, 236, 0.342);
    width: 380px;
     display: flex;
    flex-direction: column;
    justify-content: center;
     align-items: center;
    padding: 20px;
    box-shadow: 0px 0px 10px #11111157;
    transition: .5s;
}
#sec_6 .table .table3{
    background-color:  rgba(235, 236, 236, 0.342);
    width: 380px;
     display: flex;
    flex-direction: column;
    justify-content: center;
     align-items: center;
    padding: 20px;
    transition: .5s;
}
#sec_6 .table .table1 h1{
    font-size: 30px;
}
#sec_6 .table .table1 h2{
    font-size: 15px;
    text-align-last: center;
    color: rgba(128, 128, 128, 0.767);
}
#sec_6 .table .table2 h1{
    font-size: 30px;
}
#sec_6 .table .table2 h2{
    font-size: 15px;
    text-align-last: center;
    color: rgba(128, 128, 128, 0.767);
}
#sec_6 .table .table3 h1{
    font-size: 30px;
    text-align-last: center;
}
#sec_6 .table .table3 h2{
    font-size: 15px;
    text-align-last: center;
    color: rgba(128, 128, 128, 0.767);

}
#sec_6 .table .table1:hover{
    box-shadow: 0px 0px 10px #302f2f57;
}
#sec_6 .table .table2:hover{
    box-shadow: 0px 0px 10px #302f2f57;
}
#sec_6 .table .table3:hover{
    box-shadow: 0px 0px 10px #302f2f57;
}
#sec_7{
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: flex-end;
    background-image: url("../photo/section_bg03.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#sec_7 .all_2{
    display: flex;
    /* background-color: rebeccapurple; */
    width: 50%;
    height: 80vh;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-right: 40px;
}
#sec_7 div .write{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* background-color: yellow; */
    width: 100%;
}
#sec_7 div .subscribe{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    /* background-color: burlywood; */
    width: 100%;
    height: 10vh;
}
#sec_7 div .subscribe input{
     padding: 19px 47px;
     color: gray;
     background-color: #fff;
     border-radius: 5px;
     font-size: 19px;
}
#sec_7 div .subscribe button{
    font-size: 19px;
    color: #fff;
    padding: 19px 47px;
    background-color: orangered;
    border: 1px solid orangered;
    border-radius: 5px;
    transition: .5s;
}
#sec_7 div .subscribe button:hover{
    color: orangered;
    background-color: #fff;
    box-shadow: 0px 0px 10px #11111196;
}
#sec_7 div .write h1{
    color: orangered;
    font-size: 16px;
    text-transform: capitalize;
}
#sec_7 div .write h2{
    color: black;
    font-size: 45px;
    font-weight: 800;
    text-transform: capitalize;
    word-break: .5rem;
}
#sec_7 div .write h3{
    color: rgb(71, 69, 69);
    font-size: 15px;
    text-transform: capitalize;
    line-height: 30px;
}
#sec_8 {
    width: 100%;
    height: 130vh;
    background-color: rgba(231, 231, 231, 0.185);
    display: flex;
    justify-content: center;
    padding: 80px;
    flex-direction: column;
    gap: 20px;
}
#sec_8 .artical4{
    /* background-color: blueviolet; */
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#sec_8 .photo3{
    /* background-color: brown; */
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: space-around;
}
#sec_8 .photo3 .divo1{
    width: 30%;
    height: 70vh;
    background-image: url("../photo/blog1.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    position: relative;
}

#sec_8 .photo3 .divo1:hover .divol1{
    background-color: orange;
}



#sec_8 .photo3 .divo2{
    background-image: url("../photo/blog2.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    height: 70vh;
    width: 30%;
    position: relative;
}
#sec_8 .photo3 .divo3{

    background-image: url("../photo/blog3.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    width: 30%;
    height: 70vh;
    position: relative;
}
#sec_8 .artical4 h1{
    color: orangered;
    font-size: 16px;
    text-transform: capitalize;
}
#sec_8 .artical4 h2{
    color: black;
    font-size: 45px;
    font-weight: 800;
    text-transform: capitalize;
    word-break: .5rem;
}
#sec_8 .photo3 .divo1 .divol1{
    background-color: #fff;
    width: 90%;
    height: fit-content;
    position: absolute;
    bottom: -15%;
    right: 0%;
    border-radius: 10px;
    padding-left: 20px;
}
#sec_8 .photo3 .divo2 .divol2{
    background-color: #fff;
    width: 90%;
    height: 20vh;
    position: absolute;
    bottom: 0%;
    right: 0%;
    border-radius: 10px;
    padding-left: 20px;
}
#sec_8 .photo3 .divo3 .divol3{
    background-color: #fff;
    width: 90%;
    height: 20vh;
    position: absolute;
    bottom: 0%;
    right: 0%;
    border-radius: 10px;
    transition: .5s;
    padding-left: 20px;
}
#sec_8 .photo3 .divo1 .divol1:hover{
    background-color: rgb(238, 83, 27);
}
#sec_8 .photo3 .divo2 .divol2:hover{
    background-color: rgb(238, 83, 27);
}
#sec_8 .photo3 .divo3 .divol3:hover{
    background-color: rgb(238, 83, 27);
}
#sec_9{
    width: 100%;
    height: 70vh;
    padding: 50px;
    background-image: url("../photo/section_bg02.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#sec_9 footer{
    display: flex;
    justify-content: space-around;
}
#sec_9 .logo_6{
    /* background-color: cadetblue; */
    width: 20%;
}
#sec_9 .Navigation{
    /* background-color: blueviolet; */
    width: 20%;
    height: 50vh;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
}
#sec_9 .Links{
    position: relative;
    /* background-color: brown; */
    width: 20%;
    height: 50vh;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-direction: column;
}
#sec_9 .Navigation .foot1{
    display: flex;
    /* background-color: crimson; */
    width: 100%;
    justify-content: center;
}
#sec_9 .Navigation .foot1 ul{
    display: flex;
    list-style: none;
    flex-direction: column;
    gap: 10px;
    /* background-color: chocolate; */
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}
#sec_9 .Links .foot2{
    display: flex;
    /* background-color: crimson; */
    width: 100%;
    justify-content: center;
}
#sec_9 .Links .foot2 ul{
    display: flex;
    list-style: none;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 10px;
    /* background-color: darkgoldenrod; */
    width: 100%;
}
#sec_9 .Navigation .foot1 ul li a{
    font-size: 18px;
    text-decoration: none;
    color: gray;
    transition: .5s;
}
#sec_9 .Links .foot2 ul li a{
    font-size: 18px;
    text-decoration: none;
    color: gray;
    transition: .5s;
}
.Navigation h1{
    color: #fff;
    font-size: 18px;
    position: absolute;
    top: 5px;
    left: 40px;
}
.Links h1{
    color: #fff;
    font-size: 18px;
    position: absolute;
    left: 40px;
    top: 5px;
}
#sec_9 .Navigation .foot1 ul li a:hover{
    color: orangered;
}
#sec_9 .Links .foot2 ul li a:hover{
    color: orangered;
}
#sec_9 .Instagram{
    /* background-color: burlywood; */
    width: 30%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}
#sec_9 .Instagram .final{
    /* background-color: cadetblue; */
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}
#sec_9 .Instagram h1{
    color: #fff;
    font-size: 18px;
    position: absolute;
    left: 10px;
    top: 5px;
}
.feed1{
    /* background-color: orangered; */
    width: 100%;
    height: 20vh;
    display: flex;
}
.feed2{
    /* background-color: olivedrab; */
    width: 100%;
    height: 20vh;
    display: flex;
}
#sec_9 .Instagram .final .feed1 .bic1{
    width: 50%;
    height: 18vh;
    background-image: url("../photo/instagram1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#sec_9 .Instagram .final .feed1 .bic2{
    /* background-color: blueviolet; */
    width: 50%;
    height: 18vh;
    background-image: url("../photo/instagram2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#sec_9 .Instagram .final .feed1 .bic5{
    /* background-color: rgb(226, 43, 180); */
    width: 50%;
    height: 18vh;
    background-image: url("../photo/instagram3.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#sec_9 .Instagram .final .feed2 .bic6{
    /* background-color: rgb(73, 226, 43); */
    width: 50%;
    height: 18vh;
    background-image: url("../photo/instagram6.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#sec_9 .Instagram .final .feed2 .bic3{
    /* background-color: rgb(168, 135, 222); */
    width: 50%;
    height: 18vh;
    background-image: url("../photo/instagram4.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#sec_9 .Instagram .final .feed2 .bic4{
    /* background-color: chartreuse; */
    width: 50%;
    height: 18vh;
    background-image: url("../photo/instagram5.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.instacard{
    margin-left: 10px;
}



.date_input{
    width: 200px;
    height: 40px;
    background-color: #f9f9f9;
    border: none;
    border-radius: 40px;
    text-align: center;
    color: #9d9d9d;
}