@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    position: relative;
    font-family: "Poppins", sans-serif;
    background: #000;
    overflow-x: hidden;
}

:root {
    --theme-color: #eb7c1e;
    --theme-secondary-color: #86b941;
    --white: #fff;
    --black: #000;
    --backgroundColor: #A8A5A8;
}

p {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    color: var(--white);
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lora', serif;
    color: #fff;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

a:hover,
button:hover {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

.themeBtn {
    background: linear-gradient(to bottom, var(--white), var(--white));
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: center center;
    background-color: var(--theme-color);
    border: 2px solid var(--theme-color);
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    color: var(--black);
    transition: all 0.4s ease-in-out;
    display: inline-block;
    border-radius: 30px;
    font-weight: 600;
}

.themeBtn:hover {
    background-size: 100% 100%;
    color: var(--theme-color);
}

.themeBtn2 {
    background-position: center;
    background-color: var(--gray);
}

.themeBtn2:hover {
    border-right-color: var(--gray);
    border-left-color: var(--gray);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}

.themeMainBtn {
    background-color: var(--white);
    padding: 1rem 2rem 1rem 8rem;
    text-transform: uppercase;
    color: var(--black);
    transition: all 0.4s ease-in-out;
    display: inline-block;
    border-radius: 30px;
    position: relative;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2rem;
}

.themeMainBtn:hover {
    color: var(--black);
}

.themeMainBtn:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: #fff;
    background-image: url("../images/btnImg.png");
    background-position: center center;
    background-repeat: no-repeat;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.themeMainBtn:hover:before {
    animation: btnHover 5s linear infinite;
}

@keyframes btnHover {
    from {
        transform: translateY(-50%) rotate(0);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

section {
    position: relative;
    padding: 8em 0;
}

.secHeading {
    font-size: 4.125rem;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.secHeading span {
    display: block;
    color: var(--theme-secondary-color);
}

.socials {
    margin: 0 20px 0 0;
    display: flex;
    gap: 1rem;
}

.rate {
    height: 46px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.rate:not(:checked) > input {
    transform: translate(6px, 9px);
    position: absolute;
    opacity: 0;
}

.rate:not(:checked) > label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}


.rate > input:checked ~ label {
    color: #ffc700;
    z-index: 99999;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}


/*content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ ";*/


.rate .star:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f005";
    width: 90%;
    overflow: hidden;
    color: #ccc;
}

.star {
    display: inline-block;
    position: relative;
    font-size: 15px;
    color: #ccc;
    font-weight: bolder;
}

.star.content:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f005";
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.star.ww-0:after {
    width: 5%;
    color: #f80;
}

.star.ww-100:after {
    width: 100%;
    color: #f80;
}

.star.ww-90:after {
    width: 90%;
    color: #f80;
}

.star.ww-80:after {
    width: 80%;
    color: #f80;
}

.star.ww-70:after {
    width: 70%;
    color: #f80;
}

.star.ww-60:after {
    width: 60%;
    color: #f80;
}

.star.ww-50:after {
    width: 50%;
    color: #f80;
}

.star.ww-40:after {
    width: 40%;
    color: #f80;
}

.star.ww-30:after {
    width: 30%;
    color: #f80;
}

.star.ww-20:after {
    width: 20%;
    color: #f80;
}

.star.ww-10:after {
    width: 10%;
    color: #f80;
}

/*header css*/

header {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 11;
    background-color: rgb(0, 0, 0,0.4);
}

.navbar {
    padding: 0;
}

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar-nav .nav-link,
.navbar-nav .nav-link.active {
    color: var(--white);
    position: relative;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 8px 0 0 0 !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--theme-secondary-color);
}

.navbar-nav .nav-link.search:before {
    content: none;
}

.navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--theme-secondary-color);
    transition: all 0.4s ease-in-out;
}

.navbar-nav .nav-item:hover .nav-link:before,
.navbar-nav .nav-item .nav-link.active:before {
    width: 100%;
}

.navbar-nav .nav-item .themeBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 500;
}

header .bottom {
    border-top: 2px solid rgba(0, 0, 0, 0.15);;
    padding-top: 1rem;
}

header .content {
    display: flex;
    width: 100%;
    /* align-items: center; */
    gap: 1rem;
}

header .content p {
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 1rem;
}

header .content p a {
    color: var(--theme-color);
}

/*main banner*/

.mainBanner {
    padding: 0;
}

.mainBanner .mainImg {
    padding-top: 5rem;
}

.mainBanner .container {
    position: absolute;
    inset: 0;
    display: flex;
    /* align-items: center; */
}

.mainBanner .bannerImgs {
    position: relative;
    display: flex;
    justify-content: center;
}

.mainBanner .bannerImgs .starImg {
    position: absolute;
    top: 20%;
    transform: translateY(-20%);
    left: 0;
}

.mainBanner .bannerImgs .dishImg1 {
    position: absolute;
    left: -90px;
    bottom: 5%;
    transform: translateY(5%);
    border-radius: 100%;
}

.mainBanner .bannerImgs .dishImg2 {
    position: absolute;
    top: 25%;
    transform: translateY(-25%);
    right: -140px;
    border-radius: 100%;
    height: 400px;
    width: 400px;
    object-fit: cover;
}

.mainImg {
    border-radius: 150px 0 150px 0;
}

.mainBanner h2 {
    font-size: 3.625rem;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
}

.mainBanner p {
    width: 75%;
    margin-left: 0;
}

.topBorder {
    position: absolute;
    left: 0;
    bottom: 0;
}

.bottomBorder {
    position: absolute;
    bottom: 0;
    right: 0;
}

/*about us*/

.aboutSec {
    padding: 15em 0;
}

.aboutSec .aboutBg {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;

}

.aboutSec .stars {
    position: absolute;
    top: 5%;
    left: 75%;
    transform: translate(-75%, -5%);
}

/*product sec*/

.productSec,
.testimonialSec {
    background: #fcebcf;
    padding-bottom: 3rem;
}

.productSwiper {
    padding-bottom: 5rem;
}

.productSec .secHeading {
    color: var(--black);
    margin-bottom: 3rem;
}

.productCard {
    position: relative;
    border-radius: 5rem 0 5rem 0;
    overflow: hidden;
    background: #fff;
}

.productCard > figure img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
}

.productCard > .content {
    padding: 2rem 1rem 3rem;
}

.productCard > .content .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.productCard > .content .head h4 {
    font-size: 2rem;
    color: var(--black);
}

.productCard > .content .head h5 {
    color: #000;
    font-size: 2.25rem;
    font-weight: 700;
}

.productCard > .content p {
    color: #000;
}

.productCard > .content .productBtn {
    color: #fff;
    background: var(--theme-secondary-color);
    width: 150px;
    display: inline-block;
    height: 70px;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 5rem;
    font-size: 2rem;
}

.productSwiper .swiper-pagination-bullet {
    background: transparent;
    width: 20px;
    height: 20px;
    opacity: 1;
    border: 1px solid var(--theme-color);
}

.productSwiper .swiper-pagination-bullet-active {
    background: var(--theme-color)
}

/*different sec*/

.differentSec .bannerImgs {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differentSec .bannerImgs .starImg {
    position: absolute;
    left: -70px;
    top: 5%;
    transform: translateY(-5%);
}

.differentSec .bannerImgs .dishImg1 {
    position: absolute;
    left: -50px;
    bottom: 5%;
    border-radius: 5rem 0 5rem 0;
}

.differentSec .bannerImgs .dishImg2 {
    position: absolute;
    right: -120px;
    border-radius: 0 5rem;
    top: 30%;
    transform: translateY(-30%);
}

/*testimonial sec*/

.testimonialSlider {
    padding-bottom: 3rem;
}

.testimonialSec .secHeading {
    margin-bottom: 4rem;
}

.swiper-slide-active .testimonialCard {
    opacity: 1;
    transform: scale(1);
}

.testimonialCard {
    background: #fff;
    text-align: center;
    border-radius: 0 5rem;
    transform: scale(0.8);
    padding: 1rem 3rem;
    opacity: 0.5;
    transition: all 0.4s ease-in-out;
}

.testimonialCard > figure img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonialCard .content p {
    color: #000;
}

.testimonialCard > .content {
    padding-top: 2rem;
}

.testimonialCard .content h4 {
    color: #000;
    font-size: 1.5rem;
    font-family: "poppins";
    margin: 0;
}

.testimonialCard .content h5 {
    color: #000;
    font-size: 1rem;
    font-family: "poppins";
}

/*footer*/

footer {
    position: relative;
    padding: 8em 0;
}

footer .footerCaption {
    margin-top: 1.5rem;
}

.footerLinks h2 {
    font-family: "Poppins";
    font-size: 1.25rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    /* border-bottom: 3px solid #c4121e; */
    position: relative;
}

.footerLinks h2:before {
    position: absolute;
    bottom: 0;
    width: 30px;
    left: 0;
    height: 3px;
    background: #c4121e;
    content: '';
}

.footerLinks ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footerLinks ul li a {
    font-size: 1rem;
    color: #Fff;
    position: relative;
    transition: all 0.4s linear;
}

.footerLinks ul li a:before {
    height: 1px;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    background: var(--theme-color);
    transition: all 0.4s linear;
}

.footerLinks ul li a:hover {
    color: var(--theme-color);
}

.footerLinks ul li a:hover:before {
    width: 100%;
}

.footerLinks .info {
    display: flex;
    gap: 0 1rem;
    align-items: center;
}

.footerLinks .info i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #000;
    background: #f7cb08;
    border-radius: 100%;
    font-size: 1rem;
    /* display: inline-flex; */
}

.footerLinks .info p {
    width: calc(100% - 60px);
    /* font-size: 0.875rem; */
}

.footerLinks .info + .info {
    margin-top: 1rem;
}

.footerLinks p {
    font-size: 0.875rem;
}

.footerLinks form .inputCont {
    position: relative;
    background: #Fff;
    border-radius: 5px;
    height: 40px;
    overflow: hidden;
    margin-top: 1rem;
}

.footerLinks form .inputCont input {
    /* position: absolute; */
    color: #000;
    background: none;
    border: none;
    height: 100%;
    box-shadow: none;
    padding-left: 20px;
    padding-right: 65px;
    width: 100%;
}

.footerLinks form .inputCont button {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    background: #f7cb08;
}

footer > figure img {
    position: absolute;
    bottom: 0;
    opacity: 0.35;
}

footer .footerBorder {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 1;
}

/* about inner */
.mainBanner.banInner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.banElm-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

img.mainBg {
    width: 100%;
}

.prosecInner .productCard {
    margin-top: 3rem;
}
/* about inner End */


/* careers page */
.careerSec {
    background-color: #fcebcf;
}

.chefCard h3 {
    color: #363636;
    font-size: 2.5rem;
    font-weight: 400;
}

.chefCard p {
    padding: 0;
    color: #555555;
    font-size: 1.125rem;
}

.chefCard figure {
    height: 100px;
    width: 100px;
    background-color: #8cc640;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.chefCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    background-color: #fef5e7;
    border: 2px solid white;
    border-radius: 0 100px 0;
    gap: 10px;
    margin-top: 3rem;
}
.careerSec .secHeading,
.contactSec .secHeading {
    color: #363636;
}
/* careers page End */

/* contact Page */
.contactSec {
    background-image: url(../images/getBg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contForm form input {
    height: 60px;
    border-radius: 30px;
    border: 1px solid #e1e1e1;
    margin-bottom: 1rem;
}

.contForm form textarea {
    height: 150px;
    border-radius: 30px;
    resize: none;
    margin-bottom: 1rem;
}

.contForm form label {
    color: #34384b;
    font-size: 1.125rem;
    padding: 10px 20px;
}

.contForm form input:focus, .contForm form textarea:focus {
    border-color: #86b941;
    outline: none;
    box-shadow: none;
}
.contForm form button {
    border: none;
}


.cntAddrs h3 {
    color: #34384b;
    font-size: 1.563rem;
    font-family: 'Poppins';
    font-weight: 600;
    margin-top: 1rem;
    line-height: 1;
    text-transform: uppercase;
}

.cntAddrs p {
    color: #34384b;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1;
}

.cntAddrs {
    margin-top: 3rem;
}
.cntAddrs figure {
    height: 130px;
}
/* contact Page End */

/* dropDown  */

.navbar-expand-lg .navbar-nav .nav-item ul {
    background: var(--white);
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1rem;
    left: 0;
    display: none;
    top: 17px;
    left: 0;
    transform: translateY(0);
    width: 305%;
    /* padding: 1rem; */
    z-index: 11;
    border: 1px solid rgb(0 0 0 / 15%);
}
.navbar-expand-lg .navbar-nav .nav-item {
    position: relative;
}
.navbar-expand-lg .navbar-nav .nav-item:hover > ul,
.navbar-expand-lg .navbar-nav .nav-item ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}

.navbar-expand-lg .navbar-nav .nav-item ul li {
    clear: both;
    width: 100%;
}
.navbar-expand-lg .navbar-nav .nav-item ul li a {
    font-size: 0.875rem;
    color: var(--black);
    display: block;
}

.navbar-expand-lg .navbar-nav .nav-item ul li {
    padding: 10px 10px;
    transition: .2s all ease-in-out;
}

.navbar-expand-lg .navbar-nav .nav-item ul li:hover {
    background-color: var(--primary);
}
.navbar-expand-lg .navbar-nav .nav-item ul.subMenu {
    top: 40px;
}
#navbarNav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-expand-lg .navbar-nav .nav-item .nav-link.nav-Dol i {
    padding-left: 10px;
}

.navbar-expand-lg .navbar-nav .nav-item ul li:hover {
    background-color: #86b941;
}

.navbar-expand-lg .navbar-nav .nav-item ul li:hover a {
    color: #fff;
}
/* dropDown end */


/* product */


.products-sec .productCard > .content .head h5 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
}

.products-sec .productCard > .content .head h4 {
    font-size: 1.5rem;
}

.products-sec h5 {
    color: #000;
}

.products-sec .productCard {
    margin-top: 40px;
}
.contForm form select {
    height: 60px;
    border-radius: 30px;
    border: 1px solid #e1e1e1;
    margin-bottom: 1rem;
}

.tilesSec .row .col-lg-3 {
    width: 20%;
}

.tilesSec img {
    width: 100%;
}

/* product */

.menBtn {
    background-color: #fff;
    padding: 1rem;
    border-radius: 100px;
    font-size: 1.25rem;
    color: #000;
    font-weight: 600;
}

.menBtn i {
    padding: 0 15px;

}

.menBtn:hover {
    color: #fff;
    background-color: #86b941;
}
.navbar-brand img {
    width: 100%;
}





/* single page */
.sg-product h2 {
    font-size: 3.5rem;
    font-weight: 900;
}

.sg-product h3 {
    padding: 20px 0;
    font-size: 2rem;
    color: #f0572d;
}

.sg-product p {
    font-size: 1.25rem;
    padding: 20px 0;
}

.sg-product h4 i {
    color: #f7a922;
}
.sg-product form .inputCls {
    height: 60px;
    margin: 10px 0;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid #f0572d;
    border-radius: 0;
}
.sg-product form .custom-file-input {
    margin: 10px 0;
}
.sg-product form label {
    color: var(--white);
    font-size: 1.125rem;
    margin-top: 1rem;
}
.sg-product form textarea {
    height: 200px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #f0572d;
    border-radius: 0;
    resize: none;
    margin: 10px 0;
}
.sg-product form .form-check-label {
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
}

.sg-product form .form-check {
    margin-top: 10px;
}
.sg-product form .inputCls:focus, .sg-product form textarea:focus, .sg-product form select:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
    border-bottom: 2px solid #f0572d;
}
.sg-product form select {
    height: 60px;
    margin: 10px 0;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid #f0572d;
    border-radius: 0;
}
.sg-product form {
    border-top: 2px solid #8cc640;
    margin-top: 2rem;
    padding-top: 3rem;
}
.heading h4 {
    font-size: 2rem;
}
/* single page end */

.navbar-brand {
    width: 22%;
}
.ban-logo {
    width: 50%;
}