@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/********** Template CSS **********/
:root {
    --primary: #d90035;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background-color: #d90035;
    color: white !important;
    font-weight: bolder;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5
 {
    font-weight: 700 !important;
    font-family: "Nunito", sans-serif;
    color: #d90035;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}


h6
 {
    font-weight: 500 !important;
    font-family: "Nunito", sans-serif;

}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}
*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/

.navbar.sticky-top {
    top: -50px;
    transition: .5s;
    background-color: rgba(255, 255, 255, 0.728);

}
.navbar {
    background-color: #000000;
}

.Card-Set:hover {
    background-color: #d90035 !important;
    transition: 0.6s;
    transform: translateY(-10px);
}
.Card-Set:hover .iconSet, .Card-Set:hover .h3 , .Card-Set:hover p{
    color: #f5e6e6 !important;
}
.iconSet {
    color: #d90035 !important;
}


.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    margin-top: 10px;
    padding: 25px 0;
    color: black;
    font-size: 18px;
    font-weight: 700;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #d90035;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
   
    
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar {
        padding-bottom: 10px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.Food-Menu {
    /* background-color: #ffd632; */
    background: url(../img/background-image.jpg) ;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -11;
    font-family: "Nunito Sans", sans-serif !important;
}

.btn:focus {
    outline: 0;
    box-shadow: none !important;
}

.Menu-Color {
    border: 1px solid white;
    color: white !important;
}
.Menu-Color-Main {
    color: white !important;
    font-size: 70px !important;
}
.mt-n1 {
    color: white !important;
    font-weight: bolder;
}
.border-bottom-Set {
    border-bottom: 2px solid #d90035;
    color: white;
}
.fst {
    color: white ;
    font-weight: bold;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}
.Width-Set {
    width: 500px !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:white;
    background: #d90035;
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background:white;
    border: 1px solid #d90035;
    color: #d90035;
}
@media screen and (max-width: 768px) {
    .Width-Set {
        width: 100% !important;
    }
    .Book-Now {
        width: 100% !important;
    }
    
}
.Book-Now {
    background-color: #d90035;
    color: white !important;
    box-shadow: 0px 0px 6px 2px #d90035;
}

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color:black;
    letter-spacing: 1px;
    box-shadow: none;
}
.footer {
    background-image: linear-gradient(to bottom, #ffc107, rgb(217 0 53 / 83%)), url(../img/Facebook-04.png);
}
.section-title {
    color: white;
}
.copyright {
    color: var(--light);
    background: #000000;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: #d90035;
}

/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: #d9003653;
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 100%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* text-align: justify; */
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}
.portfolio-inner img {
    object-fit: cover;
}

