html {
    scroll-behavior: smooth;
}
body {
    background-color: #fff;
}
/*
 *  STYLE 15
 */

body::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
    background-color: #ebebeb;
}

body::-webkit-scrollbar
{
    width: 8px;
    background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb
{
    background-color: #FFF;
    background-image: -webkit-gradient(linear,
    0% 0%,
    0% 84%,
    from(var(--lgreen)),
    to(var(--dgreen)),
    color-stop(.6,var(--lgreen)))
}

.header-btn {
    background-color: var(--dgreen);
    color: #fff;
    padding: 8px 25px;
    margin-left: 15px;
    border-radius: 20px;
    box-shadow: 0px 0px 6px var(--dgreen);
    border: 1px solid var(--lgreen);
}

.header-btn:hover {
    background-color: var(--lgreen);
    border: 1px solid var(--dgreen);
    color: #fff;
    text-decoration: none;
    box-shadow: 0px 0px 6px var(--lgreen);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: rgb(0 0 0 / 85%);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid transparent;
    border-top-color: var(--lgreen);
    border-bottom-color: var(--lgreen);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

section {
    padding: 30px 0;
    overflow: hidden;
}
.section-title {
    padding-bottom: 40px;
}
.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}
.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    margin: 4px 10px;
}
.section-title p {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    color: var(--dgreen);
    text-transform: uppercase;
    text-decoration: underline;
}
/* about section start */
.about {
    background: url("/public/default/assets/images/dashboard/BG-2.jpg") center center;
    background-size: cover;
    position: relative;
    padding: 80px 0;
    color: #000;
    height: 400px;
}

.about:before {
    content: "";
    background: rgb(0 0 0 / 1%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.about .about-img {
    position: relative;
    transition: .5s;
}

.about .about-img img {
    max-width: 100%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.about .about-img::before {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
    content: '';
    border-left: 5px solid #cda45e;
    border-top: 5px solid #cda45e;
    transition: .5s;
}

.about .about-img::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 2;
    content: '';
    border-right: 5px solid #cda45e;
    border-bottom: 5px solid #cda45e;
    transition: .5s;
}

.about .about-img:hover {
    transform: scale(1.03);
}

.about .about-img:hover::before {
    left: 10px;
    top: 10px;
}

.about .about-img:hover::after {
    right: 10px;
    bottom: 10px;
}

.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #cda45e;
}

.about .content p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .about {
        background-attachment: fixed;
    }
}
/* about section end */
.why-us {
    background-image: url("/public/default/assets/images/dashboard/BG-4.jpg");
    background-position: right;
    background-repeat: no-repeat;
}
.why-us .box {
    box-shadow: 5px 5px 15px rgb(0 0 0 / 10%);
    transition: all ease-in-out 0.3s;
    background: #fff;
    width: 100%;
    height: 100%;
}
.why-us .box span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--lgreen);
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}
.why-us .box h4 {
    font-size: 24px;
    font-weight: 600;
    padding: 0;
    margin: 10px 0;
    color: var(--lgreen);
    display: flex;
    justify-content: flex-end;
}
.why-us .box p {
    color: #aaaaaa;
    font-size: 15px;
    margin: 0;
    padding: 0;
}
/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs {
    background-image: url("/public/default/assets/images/dashboard/BG-3.png");
    background-position: left;
    background-repeat: no-repeat;
}
.chefs .member {
    text-align: center;
    margin-bottom: 20px;
    background: #343a40;
    position: relative;
    overflow: hidden;
}

.chefs .member .member-info {
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}

.chefs .member .member-info-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
    color: #fff;
}

.chefs .member .member-info-content span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
}

.chefs .member .social {
    position: absolute;
    left: 0;
    bottom: -38px;
    right: 0;
    height: 48px;
    transition: bottom ease-in-out 0.4s;
    text-align: center;
}

.chefs .member .social a {
    transition: color 0.3s;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
}

.chefs .member .social a:hover {
    color: #cda45e;
}

.chefs .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.chefs .member:hover .member-info {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
    opacity: 1;
    transition: 0.4s;
}

.chefs .member:hover .member-info-content {
    bottom: 60px;
    transition: bottom 0.4s;
}

.chefs .member:hover .social {
    bottom: 0;
    transition: bottom ease-in-out 0.4s;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background-color: #333;
    border-top: 1px solid #333;
    color: #999;
    padding: 0 0 30px 0;
    font-size: 14px;
}

#footer .footer-top {
    border-bottom: 1px solid #28251f;
    background-color: #333;
    border-top: 1px solid #333;
    color: #999;
    padding: 60px 0 10px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}
.footer-authorized img {
    margin-bottom: 20px;
}
#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Playfair Display", serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #28251f;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #cda45e;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

/*#footer .footer-top .footer-links {
    margin-bottom: 30px;
}*/
#footer .footer-top .footer-link .nav-link {
    color: #999;
}
#footer .footer-top .footer-link .nav-link:hover {
    color: #fff;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #cda45e;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #cda45e;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #28251f;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
    background: #28251f;
    color: white;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: #cda45e;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #d3af71;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}
#footer .follow-us img {
    width: 40px;
    height: 40px;
    margin-right: 5px;
}
@media only screen and (max-width: 350px) {
    .header-btn {
        font-size: 12px;
        line-height: 12px;
        padding: 10px 15px;
        margin-left: 10px;
    }
    .why-us .box {
        width: 100%;
        height: 100%;
    }
}
@media only screen and (max-width: 600px) {
    .chefs {
        background-image: none;
    }
}