
/* general*/
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700;800&display=swap');


*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root{
    /* background color*/
    --primary-color:#df0448;
    --secondary-color:#333333;
    --bg-black:#111111;
    --bg-dark:#1C1819;
    --bg-white:#fff;
    --bg-gray:#e5e5e5;
    

    /* text color */
    --primary-text: #df0448;
    --text-white: #fff;
    --text-black: #000000;

    /* font family*/
    --primary-font:'Ubuntu',sans-serif;
    --secondary-font:'Open Sans',sans-serif;
    }

    body{
        font-family: var(--secondary-font);
        background-color: var(--bg-white);
    }

    a{
        text-decoration:none;
    }

    /* 1 custom css*/

    

    section{
        padding: 100px 0;
    }

    .main-btn{
        display:inline-block;
        text-decoration: none;
        border-radius: 50px;
        padding:10px 27px;
        border:1px solid var(--primary-color);
        color:var(--primary-text);
        font-weight: 600;
        font-weight: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        background: linear-gradient(to right, var(--primary-color) 50%, transparent 50%);
        background-size: 200% 100%;
        background-position: right bottom;
        transition: all 0.5s ease-out;
    }

    .main-btn:hover{
        color: var(--text-white);
        background-position: left bottom;
    }

    h1{
        font-size: 80px;
        line-height: 1.2;
        font-weight: 400;
        color: var(--text-black);
        margin-bottom: 20px;
        font-family: var(--primary-font);

    }

    h1 span{
        color: var(--primary-text);

    }

    h2{
        font-weight: 700;
        font-size: 35px;
        margin-bottom: 15px;
        color: var(--text-black);
        font-family: var(--primary-font);
    }

    h3{
        font-weight: 700;
        font-size: 28px;
        margin-bottom: 15px;
        color: var(--text-black);
        font-family: var(--primary-font);
    }

    h5{
        font-weight: 700;
        font-size: 20px;
        color: var(--primary-text);
        font-family: var(--primary-font);

        }

    p{
        color: var(--text-black);
        font-size: 18px;
        line-height: 1.7;
        letter-spacing: 1px;
        font-weight: 300;

    }


    /* navbar*/

    .header-wrapper .navbar{
        padding: 15px 0;
        -webkit-transition: all .2s linear;
        -o-transition: all .2s linear;
        -moz-transition: all .2s linear;
        -ms-transition:all .2s linear;
        transition: all .2s linear;

    }

    .header-wrapper .navbar-brand img{
        max-width: 60px; 
        height: auto;
    }
   



    .header-wrapper .navbar-toggler:focus{
        box-shadow: none;
    }

    .header-wrapper .nav-item{
        margin: 0 10px;
    }

    .header-wrapper .nav-item .nav-link{
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 1px;
        color: var(--text-black);
        display: inline-block;
    }

    .header-wrapper .nav-item .nav-link:hover{
        color: var(--primary-text);

    }

    .header-scrolled{
        position: fixed;
        top: 0;
        left: 0;
        width: 100;
        background-color: var(--bg-white);
        -webkit-box-shadow: 0 4px 6px 0 rgba(12,0,46,.05);
        box-shadow: 0 4px 6px 0 rgba(12,0,46,.05);
    }

    
    /* banner*/

    .banner-wrapper{
        padding-top: 100px;
        }

        .banner-wrapper .top-menu .card{
            height: 275px;
            overflow: hidden;
            cursor: pointer;
            border: none;
            }
        
            .banner-wrapper .top-menu .card img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            
            transition: transform 500ms ease;
        
            }
        
        
            .banner-wrapper .top-menu .card:hover img{
            transform: scale(1.1);
            }
    
/* about*/
.about-wrapper{
    background-color: var(--bg-gray);
    padding-bottom: 130px;
    }

    .about-wrapper .card{
    z-index: 10;
    right: -25%;
    top: 30%;
    }
/*menu*/
    .menu-wrapper{
    width: 100%;
    height: auto;
    background-image: url("image/food-menu-banner.jpg");
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-color: var(--bg-dark);
    }

    .menu-wrapper .row{
    padding-top: 400px;
    }

    .menu-wrapper .card{
    background-color: var(--secondary-color);
    }

    .menu-wrapper .card h3,
    .menu-wrapper .card p{
    color: var(--text-white);
    }

    .menu-wrapper .card h3 span{
    background-color: var(--primary-color);
    width: 70px;
    height: 70px;
    display: inline-block;
    text-align: center;
    line-height: 70px;
    font-size: 40px;
    border-radius: 50%;
    margin-right: 20px;

    }


    .contact-wrapper {
        background-color: #f1f1f189;
    }


    .partner-wrapper .carousel-item{
    height: 300px;
        
    }

    .partner-wrapper .carousel-item img{
        height: 200px;
        width:50%;
        
    }





/*contact*/


    .contact {
        position: relative;
        width: 100%;
        padding: 45px 0 15px 0;
    }
    
    .contact .contact-information {
        min-height: 150px;
        margin: 0 0 30px 0;
        padding: 30px 15px 0 15px;
        background: rgba(0, 0, 0, .04);
    }
    
    .contact .contact-info {
        position: relative;
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .contact .contact-icon {
        position: relative;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #df0448;
        border-radius: 50px;
    }
    
    .contact .contact-icon i {
        font-size: 18px;
        color: #ffffff;
    }
    
    .contact .contact-text {
        position: relative;
        width: calc(100% - 50px);
        display: flex;
        flex-direction: column;
        padding-left: 15px;
    }
    
    .contact .contact-text h3 {
        font-size: 18px;
        font-weight: 700;
        color: #719a0a;
    }
    
    .contact .contact-text p {
        margin: 0;
        font-size: 16px;
        color: #454545;
    }
    
    .contact .contact-social a {
        margin-right: 10px;
        font-size: 18px;
        color: #df0448;
    }
    
    .contact .contact-social a:hover {
        color: #719a0a;
    }
    
    .contact .contact-form iframe {
        width: 100%;
        height: 380px;
        border-radius: 15px;
        margin-bottom: 25px;
    }
    
    .contact .contact-form input {
        padding: 15px;
        background: none;
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, .1);
    }
    
    .contact .contact-form textarea {
        height: 150px;
        padding: 8px 15px;
        background: none;
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, .1);
    }
    
    .contact .help-block ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    
    
    /*******************************/
    /********* Footer CSS **********/
    /*******************************/
    .footer {
        position: relative;
        margin-top: 45px;
        padding-top: 90px;
        background: rgba(0, 0, 0, .04);
    }
    
    .footer .footer-contact,
    .footer .footer-link,
    .footer .footer-newsletter {
        position: relative;
        margin-bottom: 45px;
        color: #454545;
    }
    
    .footer .footer-contact h2,
    .footer .footer-link h2,
    .footer .footer-newsletter h2 {
        position: relative;
        margin-bottom: 30px;
        padding-bottom: 10px;
        font-size: 22px;
        font-weight: 700;
        color: #df0448;
    }
    
    .footer .footer-contact h2::after,
    .footer .footer-link h2::after,
    .footer .footer-newsletter h2::after {
        position: absolute;
        content: "";
        width: 45px;
        height: 2px;
        bottom: 0;
        left: 0;
        background: #719a0a;
    }
    
    .footer .footer-link a {
        display: block;
        margin-bottom: 10px;
        color: #454545;
        transition: .3s;
    }
    
    .footer .footer-link a::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
        color: #df0448;
    }
    
    .footer .footer-link a:hover {
        color: #df0448;
        letter-spacing: 1px;
    }
    
    .footer .footer-contact p i {
        width: 25px;
        color: #df0448;
    }
    
    .footer .footer-social {
        position: relative;
        margin-top: 20px;
        display: flex;
    }
    
    .footer .footer-social a {
        display: inline-block;
        margin-right: 5px;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #df0448;
        border-radius: 35px;
        font-size: 16px;
        color: #ffffff;
    }
    
    .footer .footer-social a:hover {
        background: #9dbe49;
    }
    
    .footer .footer-social a:last-child {
        margin: 0;
    }
    
    .footer .footer-newsletter .form {
        position: relative;
        width: 100%;
    }
    
    .footer .footer-newsletter input {
        height: 60px;
        background: transparent;
        border: 1px solid #df0448;
        border-radius: 5px;
    }
    
    .footer .footer-newsletter .btn {
        position: absolute;
        top: 8px;
        right: 8px;
        height: 44px;
        padding: 8px 20px;
        font-size: 14px;
        font-weight: 700;
    }
    
    .footer .copyright {
        position: relative;
        width: 100%;
        padding: 30px 0;
        text-align: center;
        background: #ffffff;
    }
    
    .footer .copyright p {
        margin: 0;
        display: inline-block;
        color: #454545;
    }
    
    .footer .copyright p a {
        color: #df0448;
    }
    
    .footer .copyright p a:hover {
        color: #719a0a;
    }


    
/******* Page Header CSS *******/

.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 150px 0 90px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(image/pic-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h2 {
    position: relative;
    color: #df0448;
    font-size: 60px;
    font-weight: 700;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -1px;
    right: -7px;
    text-align: center;
    color: #df0448;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}