* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    outline: 0;
}
html, body {
    overflow-x: hidden;
}

header {
    width: 100%;
    height: 10vh;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    z-index: 9999;
}

header>div>h1 {
    font-size: 35px;
    font-weight: 700;
    color: #000;
}


header>ul {
    display: flex;
    gap: 40px;
}

header>ul>li {
    line-height: 10vh;
    position: relative;

}

header>ul>li>a {
    color: #7f7f90;
    font-weight: 600;
    font-size: 17px;
    padding: 5px 0;
    position: relative;
    transition: 1s;
}

header>ul>li>a::after {
    content: '';
    top: 0px;
    position: absolute;
    right: 0px;
    width: 0%;
    height: 2px;
    background-color: red;
    transition: 1s;
}

.menu-item .dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    top: 100%;
    left: 0;
    width: 200px;
    z-index: 999;
}

.menu-item:hover .dropdown {
    display: block;
}

.dropdown > li > a {
    padding: 0 8px;
    font-size: 14px;
    display: block;
    color: #333;
}

.dropdown > li > a:hover {
    color: #d00000;
}

.deep-dropdown {
    position: relative;
}

.deep-dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.deep-dropdown:hover .deep-dropdown-menu {
    display: block;
}

.deep-dropdown-menu > li > a {
    padding: 0 8px;
    font-size: 14px;
    display: block;
    color: #333;
}

.deep-dropdown-menu > li > a:hover{
    color: #d00000;
}


header>ul>li>a::before {
    content: '';
    bottom: 0px;
    position: absolute;
    left: 0px;
    width: 0%;
    height: 2px;
    background-color: red;
    transition: 1s;
}

header>ul>li:hover>a {
    color: #000;
}

header>ul>li:hover>a::before {
    width: 100%;
}

header>ul>li:hover>a::after {
    width: 100%;
}


header>button {
    background-color: #ce1212;
    font-size: 17px;
    color: #fff;
    padding: 10px 20px;
    margin-left: 30px;
    border-radius: 50px;
    transition: 0.3s;
    border: 0;
    cursor: pointer;
}

header>button:hover {
    background-color: #ce1212c4;

}

.home1 {
    width: 100%;
    background-color: #EEEEEE;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.home1>.home1_sag {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home1>.home1_sag>h1 {
    font-family: "Amatic SC", sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.home1>.home1_sag>p {
    font-size: 21px;

}

.home1>.home1_sag>div {
    display: flex;
    gap: 17px;
    align-items: center;
}

.home1>.home1_sag>div>button {
    background-color: #ce1212;
    font-size: 17px;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s;
    border: 0;
    cursor: pointer;
}

.home1>.home1_sag>div>button:hover {
    background-color: #ce1212c4;
    box-shadow: 0 8px 28px rgba(206, 18, 18, 0.2);

}

.home1>.home1_sag>div>.div2 {
    display: flex;
    gap: 5px;
    align-items: center;
    cursor: pointer;
}

.home1>.home1_sag>div>.div2>i {
    font-size: 32px;
    color: #910808;

}

.home1>.home1_sag>div>.div2:hover>i {
    color: #be0808;
}

.home1>.home1_sag>div>.div2>a {
    font-weight: 600;
    font-size: 17px;
}

.home1>.home1_sag>div>.div2:hover>a {
    color: #be0808;
}

.home1>img {
    height: 80vh;
    animation: food 10s infinite;
}

@keyframes food {
    50% {
        transform: rotate(180deg);
    }
}

.About {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}
.About_text>h1 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    line-height: 10vh;
    font-family: "Amatic SC", sans-serif;
}

.About_text>h4 {
    color: #7f7f90;
    text-align: center;
}

.About_text>h1>span {
    color: #ce1212;
    font-family: "Amatic SC", sans-serif;
}
.About>.About_main{
    width: 100%;
    padding: 10px;
    display: flex;
    gap: 30px;
}
.About>.About_main>.About_main_img {
    width: 60%;
    min-height: 700px;
    background: url("restoran.jpg") no-repeat;
    position: relative;
    object-fit: cover;
    top: 0;
    left: 0;
    
}

.About>.About_main>.About_main_img>.About_main_img_text {
    position: absolute;
    width: 80%;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
    background-color: #ffffff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 5px;
}
.About>.About_main>.About_main_img>.About_main_img_text>h2:nth-child(2){
    color: #be0808;
}
.About>.About_main>.About_main_text{
    width: 40%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.About>.About_main>.About_main_text>ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.About>.About_main>.About_main_text>span,ul>li,p{
    font-size: 1.1rem;
}
.About>.About_main>.About_main_text>div{
    position: relative;
}
.About>.About_main>.About_main_text>div>img{
    width: 100%;
}
.About>.About_main>.About_main_text>div>a{
    width: 94px;
    height: 94px;
    background: radial-gradient(#ce1212 50%, rgba(206, 18, 18, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
    transition: .4s;
}
.About>.About_main>.About_main_text>div>a::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.About>.About_main>.About_main_text>div>a::after{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: buttonn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(206, 18, 18, 0.7);
    top: -20%;
    left: -20%;
    background: rgba(198, 16, 0, 0);
}
@keyframes buttonn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
    
}
.About>.About_main>.About_main_text>div>a:hover{
    background-color:rgb(206, 18, 18);
}
.About2{
    width: 100%;
    background-color: rgb(198, 198, 198);
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 80px;
}
.About2>.Choose{
    width: 33%;
    background-color: rgb(178, 7, 7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px;
}
.About2>.Choose>h1,h4{
    color: #fff;
}
.About2>.Choose>button{
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 10px  24px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
    border: 0;
    cursor: pointer;
}
.About2>.Choose>button:hover{
    background-color: #e9e9e9;
    color: #910808;
}
.Choose2{
    width: 100%;
    display: flex;
    gap: 20px;
}
.Choose2>.Choose2_main{
    width: 33.33333333%;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-color: #ffffffd2;
    padding: 40px 50px;
    gap: 30px;
    transition: 1s;
}
.Choose2>.Choose2_main:hover{
    scale: 1.1;
}
.Choose2>.Choose2_main>.logo{
    width: 50px;
    height: 50px;
    background-color: rgba(206, 18, 18, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.Choose2>.Choose2_main>.logo>i{
    font-size: 1.8rem;
    color: #ce1212;
}
.Choose2>.Choose2_main>.logo_main{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.Choose2>.Choose2_main>.logo_main>h2{
    font-size: 20px;
    text-align: center;
}
.Choose2>.Choose2_main>.logo_main>h4{
    font-size: 20px;
    color: #6c757d;
}
.menu_2{
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(stats-bg.jpg) center center;
    background-size: cover;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    overflow: clip;
    background-attachment:fixed;
}
.menu_2>ul{
    display: flex;
    width: 80%;
    justify-content: space-around;
}
.menu_2>ul>li{
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 700
}
.about3{
    background-color: rgb(213, 213, 213);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}
.about3>.about3_main{
    display: flex;
    width: 80%;
    gap: 30px;
    padding: 40px ;
    
}
.about3>.about3_main >.about3_main_text{
    width: 80%;
    border-left: #be0808 3px solid;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about3_main>img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid white;
}
.about4{
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(events-1.jpg) center center;
    overflow: clip;
    background-size: cover;
    background-attachment:fixed;
    position: relative;
}
.about4>div{
    position: absolute;
    bottom: 40px;
    left: 20px;
}
.about4>div>.about4_h1,.about4_h2,.about4_span{
    color: white;
    display: block;
    margin-top: 10px;
    font-size: 27px;
}
.about4>div>.about4_h1{
    display:  inline-block;
    font-weight: 700;
    border-bottom: 3px solid red;
}
.about4>div>.about4_span{
    font-size: 17px;
}
.about_Chefs{
    background-color: rgb(213, 213, 213);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 50px 30px;
}
.about_Chefs>.main_chefs{
    width: 90%;
    display: flex;
    gap: 70px;
}
.about_Chefs>.main_chefs>.main_chefs_2{
    width: 33%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    transition: 1s;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
}
.about_Chefs>.main_chefs>.main_chefs_2>.img_back{
    height: 350px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}
.about_Chefs>.main_chefs>.main_chefs_2>.img_back>img{
    object-fit: cover;
    width: 100%;
    height: 100%;

}
.about_Chefs>.main_chefs>.main_chefs_2>.img_back::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: -5px;
    height: 100%;
    width: 100%;
    background: url(team-shape.svg) no-repeat center bottom;
    background-size: contain;
    z-index: 1;
}
.about_Chefs>.main_chefs>.main_chefs_2:hover{
    scale: 1.07;
}
.about_Chefs>.main_chefs>.main_chefs_2>.img_back>.main_chefs_contact{
    display: flex;
    flex-direction: column;
    gap: 3px;
    background-color: #ffffffb7;
    position: absolute;
    right: -50px;
    top: 50px;
    transition: 1s;
    border-radius: 2px;
    padding: 2px;
}
.about_Chefs>.main_chefs>.main_chefs_2:hover>.img_back>.main_chefs_contact{
    right: 1px;
}
.about_Chefs>.main_chefs>.main_chefs_2>.img_back>.main_chefs_contact>i{
    color: #6c757d;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 99;
}
.about_Chefs>.main_chefs>.main_chefs_2>.img_back>img{
    position: absolute;
    bottom: 0;
}
.about_Chefs>.main_chefs>.main_chefs_2>.chef_text{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 15px;
}
.about_Chefs>.main_chefs>.main_chefs_2>.chef_text>h5{
    font-size: 16px;
    font-style: italic;
    font-weight: 100;
    line-height: 21px;
}
.form{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
}
.form>.form_main{
    display: flex;
    width: 80%;
    background-color: #f3f3f3;
    border-radius: 5px;
}
.form>.form_main>img{
    width: 27%;
    height: 400px;
    object-fit: cover;
}
.form>.form_main>form{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
}
.form>.form_main>form>input{
    padding: 5px 10px;
    border: #7f7f90c1;
    transition: 1s;
    width: 30%;
    height: 40px;
    border-radius: 10px;
    border: transparent;
}
.form>.form_main>form>input:focus{
    border: 1px solid orange;
}
.form>.form_main>form>textarea{
    border-radius: 10px;
    width: 95%;
    height: 200px;
    padding: 10px;
    border: 0;
    transition: 1s;
    border: transparent;

}
.form>.form_main>form>textarea:focus{
    border: 1px solid orange;
}

.form>.form_main>form>input:nth-last-child(1){
    background-color: #ce1212;
    font-size: 17px;
    color: #fff;
    height: 40px;
    border-radius: 50px;
    transition: 0.3s;
    border: 0;
    cursor: pointer;

}
.adress{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 30px;
}
.contacts {
    display: flex;
    align-items: center;
    padding: 30px  20px;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 50px;
    width: 70%;
}

.contacts .contacts_about {
    display: flex;
    gap: 10px;
    padding: 30px 40px;
    width: 47%;
    background-color: #e9e9e9;
    border-radius: 5px;
}

.contacts .contacts_about .icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #be0808;
    border-radius: 50%;
}

.contacts .contacts_about .icon-wrapper i {
    font-size: 1.6rem;
    color: white;
}

.contacts .contacts_about .about h3 {
    font-size: 21px;
    color: #6c757d;
    font-weight: 700;
}

.contacts .contacts_about .about h5 {
    line-height: 25px;
    font-size: 14px;
    color: #7f7f90;
}

.contacts .contacts_about .about h5 span {
    font-weight: 900;
    color: #000;
}
.form_main2{
    display: flex;
    width: 66%;
    background-color: #f3f3f3;
    border-radius: 5px;
    margin: 40px auto;
}
.form_main2>form{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    width: 100%;
}
.form_main2>form>.form_input{
    width: 100%;
    display: flex;
    gap: 5px;
}
.form_main2>form>.form_input>input{
    width: 100%;
    padding: 5px 10px;
    border: #7f7f90c1;
    transition: 1s;
    height: 40px;
    border-radius: 10px;
    border: transparent;
}
.form_main2>form>.form_input2{
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
.form_main2>form>.form_input2>input{
    width: 100%;
    padding: 5px 10px;
    border: #7f7f90c1;
    transition: 1s;
    height: 40px;
    border-radius: 10px;
    border: transparent;
    
}
.form_main2>form>.form_input2>textarea{
    border-radius: 10px;
    width: 100%;
    height: 200px;
    padding: 10px;
    border: 0;
    transition: 1s;
    border: transparent;
    margin-top: 10px;

}
.form_main2>form>.form_input2>textarea:focus{
    border: 1px solid rgb(255, 0, 0);
}

.form_main2>form>input:nth-last-child(1){
    background-color: #ce1212;
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    border-radius: 50px;
    transition: 0.3s;
    border: 0;
    cursor: pointer;
    padding: 0 20px;

}
footer{
    display: flex;
    flex-direction: column;
    background-color: #1f1f24;
    justify-content: center;
    align-items: center;
    padding: 45px;
}
footer>.contac_wrapper{
    display: flex;
    gap: 30px;
    justify-content: space-around;
    width: 80%;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(53, 53, 53, 0.944);
    padding-bottom: 40px;
}
footer>.contac_wrapper>.contac_ab{
    display: flex;
    gap: 5px;

}
footer>.contac_wrapper>.contac_ab>i{
    font-size: 27px;
    color: white;
}
footer>.contac_wrapper>.contac_ab>.contac>h3{
    font-weight: bold;
    color: #fff;
    padding-bottom: 10px;
}
footer>.contac_wrapper>.contac_ab>.contac>p{
    color:rgb(211, 211, 211);
    font-size: 1rem;
}
footer>.contac_wrapper>.contac_ab>.contac>p>span{
    font-weight: 700;
}
footer>.contac_wrapper>.socials>h3{
    font-weight: bold;
    color: #fff;
    padding-bottom: 10px;
}
footer>.contac_wrapper>.socials>.socials_icon{
    display: flex;
    gap: 5px;
}
footer>.contac_wrapper>.socials>.socials_icon>i{
    color: #7f7f90;
    padding: 10px;
    font-size: 20px;
    border-radius: 50%;
    border: 1px solid #7f7f90;
    cursor: pointer;
    transition: .7s;
}
footer>.contac_wrapper>.socials>.socials_icon>i:hover{
    color: #ffffff;
}
footer>.end{
    padding: 30px;
}
footer>.end>p{
    color: rgb(170, 170, 170);
    font-size: 16px;
    padding-bottom: 5px;
    text-align: center;
}
footer>.end>p>span{
    font-weight: 600;

}
@media (max-width: 1200px) {
    .Choose2 {
        flex-direction: column;
    }
    .Choose2 .Choose2_main {
        width: 100%;
    }
}

@media (max-width: 992px) {
    header {
        padding: 0 20px;
        justify-content: space-between;
    }
    header > ul {
        display: none;
    }
    header > button {
        padding: 8px 15px;
        font-size: 15px;
    }
    .home1 {
        flex-direction: column;
        padding-top: 150px;
        text-align: center;
        gap: 40px;
    }
    .home1 .home1_sag {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .home1 > img {
        width: 80%;
        height: auto;
        animation: none;
    }
    .About_main {
        flex-direction: column;
    }
    .About_main_img {
        width: 100% !important;
        min-height: 350px;
    }
    .About_main_text {
        width: 100% !important;
    }
    .About2 {
        flex-direction: column;
        padding: 50px 20px;
    }
    .About2 .Choose {
        width: 100%;
    }
    .Choose2 {
        flex-direction: column;
        width: 100%;
    }
    .Choose2 .Choose2_main {
        width: 100%;
    }
    .about3_main {
        flex-direction: column;
        align-items: center;
    }
    .about3_main_text {
        width: 100% !important;
        padding-left: 20px;
    }
    .about3_main img {
        width: 130px;
        height: 130px;
    }
    .about_Chefs .main_chefs {
        flex-direction: column;
        gap: 30px;
    }
    .main_chefs_2 {
        width: 100% !important;
    }
    .form_main {
        flex-direction: column;
    }
    .form_main img {
        width: 100% !important;
        height: 250px;
    }
    .contacts {
        width: 100%;
    }
    .contacts_about {
        width: 100% !important;
    }
    .form_main2 {
        width: 90%;
    }
    footer .contac_wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .home1_sag h1 {
        font-size: 48px !important;
    }
    .About_text h1 {
        font-size: 32px !important;
    }
    .Choose h1 {
        font-size: 28px;
    }
    .Choose2 .logo_main h4 {
        font-size: 16px;
    }
    .about4 h1 {
        font-size: 22px !important;
    }
    .menu_2 ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    header > button {
        font-size: 13px;
        padding: 6px 12px;
    }
    .home1_sag h1 {
        font-size: 38px !important;
    }
    .home1_sag p {
        font-size: 16px !important;
    }
    .About_main_text span,
    .About_main_text p,
    .About_main_text ul li {
        font-size: 15px !important;
    }
    .Choose {
        padding: 25px !important;
    }
    .Choose2 .Choose2_main {
        padding: 25px 20px !important;
    }
    .about3_main_text p {
        font-size: 15px !important;
    }
    .contacts_about {
        padding: 20px !important;
    }
    .form_main2 {
        width: 95%;
    }
    footer {
        padding: 25px;
    }
}

