/* @import url('../fonts/Outfit-Light.ttf'); */

@font-face {
    font-family: "Outfitlight";
    src: url("../fonts/Outfit-Light.ttf");
}

@font-face {
    font-family: "Outfitbold";
    src: url("../fonts/Outfit-Bold.ttf");
}

@font-face {
    font-family: "OutfitRegular";
    src: url("../fonts/Outfit-Regular.ttf");
}

@font-face {
    font-family: "OutfitSemiBold";
    src: url("../fonts/Outfit-SemiBold.ttf");
}

nav {
    width: 100%;
    background: #ffffff;
}

nav .wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    font-family: 'OutfitRegular';
}

@media screen and (max-width: 1920px) and (min-width: 1651px) {
    nav .wrapper {
        padding: 0px 135px;
    }
}

@media screen and (max-width: 1650px) and (min-width: 1201px) {
    nav .wrapper {
        padding: 0px 30px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 1025px) {
    nav .wrapper {
        padding: 0px 20px;
    }
}

@media screen and (max-width: 1024px) {
    nav .wrapper {
        padding: 0px 15px;
    }
}

.wrapper a.logo {
    top: 0;
}

.wrapper a.logo img {
    width: 300px;
}

@media screen and (max-width: 1300px) and (min-width: 1201px) {
    .wrapper a.logo img {
        width: 200px;
        top: -6px;
        position: relative;
    }
}

@media screen and (max-width: 1200px) and (min-width: 0px) {
    .wrapper a.logo img {
        width: 180px;
    }
}

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
    margin-top: 20px;
}

.nav-links li a {
    color: #3a3a3a !important;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    padding: 0px 12px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #ea5a0b !important;
}

.nav-links li a i {
    font-size: 0.8rem;
    margin-left: 0.3rem;
    position: relative;
    top: 2px;
}

.nav-links li a.icon i {
    font-size: 1.2rem;
    position: relative;
    top: 0px;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .mobile-item2 {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #242526;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #ffffff;
    padding: 25px 30px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #eeeeee;
    box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.15);
    background-color: #edefea;
    /* background-image: url('/fruitsnroots/assets/images/category_banner/37e59d50188a1c6b75b066a529a0c72a.jpg'); */
}

.mega-box .content .row {
    width: 100%;
    max-width: 1650px;
    margin: 0 auto;
    /* line-height: 45px; */
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row .header {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: #edefea !important;
    color: #eb5e09 !important;
    line-height: 40px;
}

.content .row .mega-links {
    padding-left: 0px;
    margin-top: -15px;
}

.row .mega-links li {
    padding: 0px;
    margin: 0px 0px 8px 0px;
    line-height: normal;
}

.row .mega-links li a {
    padding: 0px;
    color: #d9d9d9;
    font-size: 0.95rem;
    font-weight: 300;
    display: block;
    text-indent: 5px;
}

.row .mega-links li a:hover {
    /* color: #f2f2f2; */
}

.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
}

@media screen and (max-width: 1024px) {
    .wrapper .btn {
        display: block;
    }
    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #ffffff;
        display: block;
        padding: 50px 10px;
        line-height: 40px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }
    /* custom scroll bar */
     ::-webkit-scrollbar {
        width: 6px;
    }
     ::-webkit-scrollbar-track {
        background: #e6e6e6;
    }
     ::-webkit-scrollbar-thumb {
        background: #c2c2c2;
    }
    .btn.menu-btn {
        color: #c5c4c5;
        padding: 5px 10px;
        border: 1px solid #ececec;
        border-radius: 6px;
    }
    .btn.close-btn {
        color: #c5c4c5;
        font-size: 2rem;
    }
    #menu-btn:checked~.nav-links {
        left: 0%;
    }
    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }
    #close-btn:checked~.btn.menu-btn {
        display: block;
    }
    .nav-links li {
        /* margin: 0px; */
        margin: 0 0 8px 0;
    }
    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 0.95rem;
    }
    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }
    .nav-links .desktop-item {
        display: none;
    }
    .nav-links .mobile-item {
        display: inline-block;
        color: #000000;
        font-size: 0.95rem;
        padding-left: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .nav-links .mobile-item2 {
        display: inline-block;
    }
    .nav-links .mobile-item:hover {}
    .drop-menu li {
        margin: 0;
    }
    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }
    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 0px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }
    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }
    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
        margin-top: 0px;
    }
    .row .mega-links li {
        /* margin: 0; */
        margin: 0 0 8px 0;
    }
    .content .row .header,
    .content .row a.header {
        color: #000000;
        font-size: 1.2rem;
        font-weight: 500;
    }
}

nav input {
    display: none;
}

.body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text div {
    font-size: 45px;
    font-weight: 600;
}


/* Menu Image */

.menu-frame .image {
    width: 100%;
    background-image: linear-gradient(270deg, var(--darkgreen2), var(--lightgreen2));
    padding: 1px;
    object-fit: cover;
    overflow: hidden;
    margin-bottom: 12px;
}

.menu-frame .image img {
    height: 100%;
    width: 100%;
}

.menu-frame .title {
    color: #000000;
    font-size: 1.2rem;
    line-height: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.menu-frame .price {
    font-size: 1.3rem;
    line-height: 1.3rem;
    font-weight: 500;
    color: var(--darkgreen);
}