*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    user-select: none;
}

header{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url(image/BG.jpg);
    background-size: cover;
    background-position: center;
}

header nav{
    width: 100%;
    height: 80px;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

header nav .logo img{
    width: 200px;
    height: auto;
    cursor: pointer;
}

header nav ul{
    list-style: none;
}

header nav ul li{
    display: inline-block;
    margin: 5px 15px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

header nav ul li:hover{
    text-decoration: underline;
    color: #ffa800;
}

header nav ul li a{
    color: #ffa800;
    text-decoration: none;
}

header nav .register{
    display: flex;
    align-items: center;
}

header nav .register .login a{
    text-decoration: none;
    color: #fff;
    padding: 7px 15px;
    transition: 0.3s ease-in-out;
}

header nav .register .login:hover a{
    color: #ffa800;
}

header nav .register .sign a{
    text-decoration: none;
    color: #fff;
    padding: 7px 15px;
    margin-left: 10px;
    transition: 0.3s ease-in-out;
}

header nav .register .sign:hover a{
    color: #ffa800;
}


header .main{
    height: 624px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    overflow: hidden;
}

header .main .M_left h1{
    color: #fff;
    font-size: 55px;
    margin-bottom: 30px;
}

header .main .M_left h1 span{
    color: #ffa800;
}

header .main .M_left .M_tag{
    width: 550px;
    color: #d7d7d7;
    font-style: italic;
    line-height: 27px;
    margin-bottom: 30px;
}

header .main .M_left button{
    border: 1px solid #ffa800;
    background: none;
    color: #ffa800;
    padding: 9px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border-radius: 5px;
}

header .main .M_left button:hover{
    background-color: #ffa800;
    color: #000;
}

header .main .M_left button i{
    margin-left: 8px;
}

header .main .M_right img{
    height: 620px;
    position: relative;
    top: 20px;
}


/*ABOUT*/

.about{
    width: 100%;
    height: 100vh;
    padding: 2% 4%;
    background-color: #000;
}

.about .A_name{
    color: #ffa800;
    font-size: 14px;
    text-align: center;
}

.about .A_box{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.about .A_box .A_left{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.about .A_box .A_left img{
    width: 240px;
    height: 240px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.about .A_box .A_left img:hover{
    transform: scale(1.04);
}

.about .A_box .A_right h2{
    color: #fff;
    margin-bottom: 30px;
}

.about .A_box .A_right .A_text{
    width: 500px;
    line-height: 24px;
    font-size: 14px;
    color: #d7d7d7;
    font-style: italic;
    margin-bottom: 30px;
}

.about .A_box .A_right .A_icon{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.about .A_box .A_right .A_icon i{
    font-size: 45px;
    color: #fff;
    margin-right: 28px;
}

.about .A_box .A_right .A_icon .A_tag h5{
    font-size: 16px;
    color: #ffa800;
    margin-bottom: 5px;
}

.about .A_box .A_right .A_icon .A_tag p{
    width: 350px;
    font-size: 12px;
    color: #d7d7d7;
}

.about .A_box .A_right button{
    border: 1px solid #ffa800;
    background: none;
    color: #ffa800;
    padding: 9px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.about .A_box .A_right button i{
    margin-left: 8px;
}

.about .A_box .A_right button:hover{
    background-color: #ffa800;
    color: #000;
}


/*MENU*/

.menu{
    width: 100%;
    height: 70vh;
    padding: 0 4%;
    background-color: #000;
}

.menu p{
    text-align: center;
    color: #ffa800;
    font-size: 14px;
    margin-bottom: 2%;
}

.menu .M_box{
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 0 20px;
    overflow: hidden;
    overflow-x: scroll;
}

.menu .M_box .M_card{
    width: 300px;
    height: 425px;
    border: 1px solid #2c2c2c;
    overflow: hidden;
    border-radius: 5px;
    background-color: #000;
    margin-bottom: 8px;
    transition: 0.3s ease-in-out;
}

.menu .M_box .M_card:hover{
    border: 1px solid #848484;
}

.menu .M_box .M_card .M_img{
    width: 300px;
    height: 300px;
    border-radius: 5px;
    overflow: hidden;
}

.menu .M_box .M_card .M_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s ease-in-out;
}

.menu .M_box .M_card:hover .M_img img{
    transform: scale(1.02);
}

.menu .M_box .M_card .M_tag{
    padding: 0 12px;
    margin-top: 10px;
}

.menu .M_box .M_card .M_tag .name_star{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.menu .M_box .M_card .M_tag .name_star h1{
    color: #fff;
    font-size: 20px;
}

.menu .M_box .M_card .M_tag .name_star .star{
    color: #ffa800;
    font-size: 12px;
}

.menu .M_box .M_card .M_tag .M_details{
    color: #d7d7d7;
    font-style: italic;
    font-size: 12px;
    margin-bottom: 10px;
    text-align: left;
}

.menu .M_box .M_card .M_tag .price_btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu .M_box .M_card .M_tag .price_btn .M_price{
    font-size: 19px;
    font-weight: bold;
}

.menu .M_box .M_card .M_tag .price_btn button{
    background: none;
    border: 1px solid #ffa800;
    color: #ffa800;
    border-radius: 5px;
    padding: 5px 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.menu .M_box .M_card .M_tag .price_btn button:hover{
    background-color: #ffa800;
    color: #000;
}

.menu .M_box .M_card .M_tag .price_btn button i{
    margin-left: 8px;
}

.menu .M_box::-webkit-scrollbar{
    height: 4px;
}

.menu .M_box::-webkit-scrollbar-thumb{
    background-color: #ffa800;
    border-radius: 25px;
    cursor: pointer;   
}


/*GALLERY*/

.gallery{
    width: 100%;
    height: 90vh;
    background: #000;
    padding: 2% 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery .G_left{
    width: 500px;
    height: 600px;
}

.gallery .G_left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery .G_right{
    width: 1007px;
    height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

.gallery .G_right img{
    width: 336px;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.gallery .G_right .G_box{
    width: 336px;
    height: 300px;
    padding: 20px;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gallery .G_right .G_box h1{
    text-align: center;
    font-family: 'segoe print';
    color: #fff;
}

.gallery .G_right .G_box p{
    font-family: 'segoe print';
    text-align: center;
    font-size: 12px;
    color: #848484;
    font-style: italic;
}


/*BANNER*/

.banner{
    width: 100%;
    height: 40vh;
    background-image: linear-gradient(to right, rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(image/Banner.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner h1{
    color: #ffa800;
    font-size: 40px;
    margin-bottom: 15px;
}

.banner p{
    color: #d7d7d7;
    font-style: italic;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    width: 1000px;
    margin-bottom: 15px;
}

.banner button{
    background: none;
    border: 1px solid #ffa800;
    color: #ffa800;
    border-radius: 5px;
    padding: 8px 11px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.banner button:hover{
    background-color: #ffa800;
    color: #000;
}

.banner button i{
    margin-left: 8px;
}


/*CONTACT*/

.contact{
    width: 100%;
    height: 98vh;
    background: #000;
    padding: 2% 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact .C_left{
    width: 40%;
    height: 620px;
    padding: 40px;
    background-color: #222222;
}

.contact .C_left h3{
    color: #ffa800;
}

.contact .C_left h1{
    color: #fff;
    font-size: 38px;
}

.contact .C_left form{
    display: flex;
    flex-direction: column;
}

.contact .C_left form label{
    color: #d7d7d7;
    font-size: 14px;
    margin-bottom: 12px;
    margin-top: 20px;
}

.contact .C_left form input{
    width: 100%;
    height: 40px;
    padding: 8px;
    background: #2c2c2c;
    border: 0;
    outline: none;
    border: 1px solid #848484;
    color: #d7d7d790;
}

.contact .C_left form input::placeholder{
    color: #d7d7d790;
}

.contact .C_left form textarea{
    width: 100%;
    height: 100px;
    padding: 8px;
    background: #2c2c2c;
    border: 1px solid #848484;
    color: #d7d7d790;
}

.contact .C_left button{
    width: 100%;
    background: none;
    border: 1px solid #ffa800;
    color: #ffa800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0 0 0;
    border-radius: 5px;
    padding: 10px 8px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.contact .C_left button:hover{
    background: #ffa800;
    color: #000;
}

.contact .C_left button i{
    margin-left: 8px;
}

.contact .C_right{
    width: 55%;
    height: 620px;
    padding: 40px 40px 0 40px;
}

.contact .C_right p{
    color: #d7d7d7;
    font-style: italic;
    font-size: 13px;
    line-height: 18px;
    text-align: left;
}

.contact .C_right .C_icon{
    width: 450px;
    padding: 20px 20px 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: left;
}

.contact .C_right .C_icon .icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
}

.contact .C_right .C_icon .icon i{
    font-size: 40px;
    color: #fff;
}

.contact .C_right .C_icon .icon h3{
    color: #fff;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact .C_right .C_icon .icon p{
    color: #d7d7d7;
    font-size: 12px;
}

.contact .C_right .map{
    width: 100%;
    height: 257px;
}

.contact .C_right .map iframe{
    width: 100%;
    height: 100%;
    border: 0;
}

.contact .C_right .map .my_map{
    filter: grayscale(100%) invert(100%);
}

.footer_img{
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_img img{
    width: 152px;
    height: 152px;
    object-fit: cover;
    object-position: center;
    transition: 0.3s ease-in-out;
}

.footer_img img:hover{
    opacity: 0.8;
}


/*FOOTER*/

footer{
    width: 100%;
    height: auto;
    background: #000;
    display: flex;
    justify-content: space-between;
    padding: 2% 4%;
}

footer .F_logo img{
    width: 200px;
    margin-bottom: 10px;
}

footer .F_logo p{
    width: 330px;
    color: #d7d7d7;
    font-size: 13px;
    line-height: 17px;
    margin-bottom: 5px;
    font-style: italic;
}

footer .F_logo a{
    color: #fff;
    font-size: 14px;
}

footer .F_time h2{
    margin-bottom: 10px;
    color: #fff;
}

footer .F_time h2 span{
    color: #ffa800;
}

footer .F_time p{
    font-size: 13px;
    color: #fff;
    margin-bottom: 5px;
}

footer .F_poster h2{
    color: #fff;
    margin-bottom: 10px;
}

footer .F_poster h2 span{
    color: #ffa800;
}

footer .F_poster .image{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

footer .F_poster .image img{
    width: 45px;
    height: 45px;
    object-fit: cover;
    object-position: center;
}

footer .F_poster .image .F_text{
    margin-left: 8px;
}

footer .F_poster .image .F_text p{
    width: 200px;
    color: #d7d7d7;
    margin-top: 4px;
    font-size: 12px;
}

footer .F_poster .image .F_text p.date{
    color: #fff;
    font-style: italic;
}

footer .F_contact h2{
    color: #fff;
    margin-bottom: 10px;
}

footer .F_contact h2 span{
    color: #ffa800;
}

footer .F_contact p{
    color: #fff;
    font-size: 13px;
    margin-bottom: 8px;
}

footer .F_contact p i{
    margin-right: 8px;
}

footer .F_contact .number{
    width: 200px;
    height: 38px;
    background: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin: 15px 0;
}

footer .F_contact .number i{
    margin-right: 10px;
}

footer .F_contact .social_icon i{
    color: #ffa800;
    font-size: 14px;
    margin-right: 8px;
}


p.end{
    color: #d7d7d7;
    text-align: center;
    font-size: 13px;
    padding: 5px;
    background-color: #000;
    border-top: 1px solid #2c2c2c;
}

p.end i{
    color: #ffa800;
}

p.end span{
    color: #ffa800;
    font-style: italic;
}