 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
 @font-face {
     font-family: 'Gracheva';
     src: url('../fonts/Gracheva.woff2') format('woff2'), url('../fonts/Gracheva.woff') format('woff'), url('../fonts/Gracheva.ttf') format('truetype');
     font-weight: normal;
     font-style: normal;
     font-display: swap;
 }
 /* ====================
1.	Reset
====================== */
 
 * {
     margin: 0;
     padding: 0;
     border: none;
     outline: none;
     line-height: inherit;
 }
 /* =========================
2.	Global Settings
============================= */
 
 :root {
     --thm-font: 'Poppins', sans-serif;
     --thm-b-font: 'Gracheva';
     --thm-base: #A0824C;
     --thm-text: #ffffff;
     --thm-hover: #000000;
 }
 
 body {
     font-size: 16px;
     font-family: var(--thm-font);
     color: var(--thm-text);
 }
 
 .thm_color {
     color: var(--thm-base);
 }
 
 ul {
     margin: 0;
     padding: 0;
     list-style: none;
 }
 
 a {
     text-decoration: none;
     cursor: pointer;
     color: var(--thm-base);
 }
 
 a:hover,
 a:focus,
 a:visited,
 a:active {
     text-decoration: none;
     box-shadow: none;
     outline: none;
 }
 
 a:hover {
     color: var(--thm-hover);
 }
 
 input,
 select,
 button {
     font-family: var(--thm-font);
 }
 
 textarea {
     overflow: hidden;
     resize: none;
 }
 
 button {
     outline: none !important;
     cursor: pointer;
 }
 
 p {
     margin-bottom: 0;
 }
 
 img {
     display: inline-block;
     max-width: 100%;
     height: auto;
 }
 
 .form-control {
     background-color: var(--thm-secedary);
 }
 
 .form-control:focus {
     box-shadow: none;
 }
 
 ::-webkit-input-placeholder {
     color: inherit;
 }
 
 ::-moz-input-placeholder {
     color: inherit;
 }
 
 ::-ms-input-placeholder {
     color: inherit;
 }
 
 .spacer {
     padding-bottom: 80px;
 }
 
 .thm-btn {
     padding: 10px 25px;
     font-size: 14px;
     font-family: var(--thm-font);
     color: #000000;
     background-color: rgba(255, 255, 255, 0.6);
     /* border: 1px solid var(--thm-base); */
     border-radius: 8px;
     cursor: pointer;
     transition: all 0.3s ease-out 0s;
     display: inline-block;
     position: relative;
     overflow: hidden;
     z-index: 1;
 }
 
 .thm-btn::before {
     content: "";
     z-index: -1;
     background: var(--thm-base);
     height: 150px;
     width: 200px;
     border-radius: 50%;
     position: absolute;
     top: 0;
     left: -200%;
     transition: all .7s;
 }
 
 .thm-btn:hover {
     /* background-color: var(--thm-base); */
     color: #ffffff;
 }
 
 .thm-btn:hover::before {
     top: -30px;
     left: -30px;
 }
 
 .thm-btn-2 {
     font-weight: 500;
     color: var(--thm-base);
     font-size: 14px;
     text-align: center;
     position: relative;
 }
 
 .thm-btn-2::after {
     content: '';
     position: absolute;
     left: 0%;
     top: auto;
     right: 0%;
     bottom: -15%;
     width: 0;
     height: 1px;
     background-color: var(--thm-hover);
     transition: all 0.4s ease-in;
 }
 
 .thm-btn-2 i {
     transition: all 0.3s ease-in;
     margin-left: 3px;
 }
 
 .thm-btn-2:hover i {
     transform: translateX(3px);
     transition: all 0.3s ease-in;
 }
 
 .thm-btn-2:hover::after {
     width: 80%;
     transition: all 0.4s ease-in;
 }
 
 .wave-btn {
     color: #fff;
     border: 1px solid var(--thm-base);
     padding: 10px 25px;
     font-size: 14px;
     font-family: var(--thm-font);
     border-radius: 10px;
     transform: translate(0px, 0px);
     overflow: hidden;
     transition: all 1s ease-out 0s;
     display: inline-block;
     position: relative;
 }
 
 .wave-btn:before {
     content: "";
     position: absolute;
     width: 250px;
     height: 250px;
     border-radius: 105px;
     background-color: var(--thm-base);
     top: 12px;
     left: 50%;
     animation: wave 7s infinite linear;
     transition: all 2s;
     z-index: -1;
     /* transform: translate(-50%); */
 }
 
 .wave-btn:hover {
     color: #ffffff;
 }
 
 .wave-btn:hover:before {
     top: -20px;
 }
 
 @keyframes wave {
     0% {
         transform: translate(-50%) rotate(-180deg);
     }
     100% {
         transform: translate(-50%) rotate(360deg);
     }
 }
 
 @media (min-width: 1400px) {
     .container {
         max-width: 1626px;
     }
 }
 /* ==========preloader ============*/
 
 .ctn-preloader {
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     cursor: default;
     display: flex;
     height: 100%;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     position: fixed;
     left: 0;
     top: 0;
     width: 100%;
     z-index: 9000;
 }
 
 .ctn-preloader .animation-preloader {
     z-index: 1000;
 }
 
 .ctn-preloader .animation-preloader .spinner {
     -webkit-animation: spinner 1s infinite linear;
     animation: spinner 1s infinite linear;
     border-radius: 50%;
     border: 4px solid #E2DFDD;
     border-top-color: #44584d;
     height: 150px;
     margin: 0 auto 3.5em auto;
     width: 150px;
 }
 
 .ctn-preloader .animation-preloader .txt-loading {
     font: bold 5em var(--thm-b-font);
     text-align: center;
     -webkit-user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
     user-select: none;
 }
 
 .ctn-preloader .animation-preloader .txt-loading .letters-loading {
     color: #E2DFDD;
     position: relative;
 }
 
 .ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
     -webkit-animation: letters-loading 4s infinite;
     animation: letters-loading 4s infinite;
     color: #44584d;
     content: attr(data-text-preloader);
     left: 0;
     opacity: 0;
     font-family: var(--thm-b-font);
     position: absolute;
     top: -3px;
     -webkit-transform: rotateY(-90deg);
     transform: rotateY(-90deg);
 }
 
 .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
     -webkit-animation-delay: 0.2s;
     animation-delay: 0.2s;
 }
 
 .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
     -webkit-animation-delay: 0.4s;
     animation-delay: 0.4s;
 }
 
 .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
     -webkit-animation-delay: 0.6s;
     animation-delay: 0.6s;
 }
 
 .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
     -webkit-animation-delay: 0.8s;
     animation-delay: 0.8s;
 }
 
 .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
     -webkit-animation-delay: 1s;
     animation-delay: 1s;
 }
 
 .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
     -webkit-animation-delay: 1.2s;
     animation-delay: 1.2s;
 }
 
 .ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
     -webkit-animation-delay: 1.4s;
     animation-delay: 1.4s;
 }
 
 .ctn-preloader.dark .animation-preloader .spinner {
     border-color: rgba(255, 255, 255, 0.2);
     border-top-color: #ffffff;
 }
 
 .ctn-preloader.dark .animation-preloader .txt-loading .letters-loading {
     color: rgba(255, 255, 255, 0.2);
 }
 
 .ctn-preloader.dark .animation-preloader .txt-loading .letters-loading:before {
     color: #ffffff;
 }
 
 .ctn-preloader p {
     font-size: 14px;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 8px;
     color: #32323D;
 }
 
 .ctn-preloader .loader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     font-size: 0;
     z-index: 1;
     pointer-events: none;
 }
 
 .ctn-preloader .loader .row {
     height: 100%;
 }
 
 .ctn-preloader .loader .loader-section {
     padding: 0px;
 }
 
 .ctn-preloader .loader .loader-section .bg {
     background-color: #939f98;
     height: 100%;
     left: 0;
     width: 100%;
     -webkit-transition: all 1500ms cubic-bezier(0.77, 0, 0.175, 1);
     -o-transition: all 1500ms cubic-bezier(0.77, 0, 0.175, 1);
     transition: all 1500ms cubic-bezier(0.77, 0, 0.175, 1);
 }
 
 .ctn-preloader .loader.dark_bg .loader-section .bg {
     background: #010103;
 }
 
 .ctn-preloader.loaded .animation-preloader {
     opacity: 0;
     -webkit-transition: 5s ease-out;
     -o-transition: 5s ease-out;
     transition: 5s ease-out;
 }
 
 .ctn-preloader.loaded .loader-section .bg {
     width: 0;
     -webkit-transition: 7s 5.7s allcubic-bezier(0.1, 0.1, 0.1, 1);
     -o-transition: 7s 5.7s allcubic-bezier(0.1, 0.1, 0.1, 1);
     transition: 7s 5.7s allcubic-bezier(0.1, 0.1, 0.1, 1);
 }
 
 @-webkit-keyframes spinner {
     to {
         -webkit-transform: rotateZ(360deg);
         transform: rotateZ(360deg);
     }
 }
 
 @keyframes spinner {
     to {
         -webkit-transform: rotateZ(360deg);
         transform: rotateZ(360deg);
     }
 }
 
 @-webkit-keyframes letters-loading {
     0%,
     75%,
     100% {
         opacity: 0;
         -webkit-transform: rotateY(-90deg);
         transform: rotateY(-90deg);
     }
     25%,
     50% {
         opacity: 1;
         -webkit-transform: rotateY(0deg);
         transform: rotateY(0deg);
     }
 }
 
 @keyframes letters-loading {
     0%,
     75%,
     100% {
         opacity: 0;
         -webkit-transform: rotateY(-90deg);
         transform: rotateY(-90deg);
     }
     25%,
     50% {
         opacity: 1;
         -webkit-transform: rotateY(0deg);
         transform: rotateY(0deg);
     }
 }
 /* ======================
3. header
====================== */
 
 .home .header-inner {
     position: absolute;
     width: 100%;
     top: 0;
     left: 0;
     background: transparent;
 }
 
 .header-inner {
     padding: 20px 0;
     background: linear-gradient(270.04deg, #203429 29.27%, #475C50 70.73%);
 }
 
 .header-inner .logo {
     position: relative;
     text-align: center;
     top: 0;
     left: 0;
     height: 0;
     z-index: 1;
 }
 
 .navbar .navbar-nav .nav-item {
     padding: 10px 30px;
 }
 
 .navbar .navbar-nav .nav-link {
     font-weight: 400;
     font-size: 18px;
     color: rgba(235, 235, 235, 0.5);
     position: relative;
 }
 
 .navbar .navbar-nav li:first-child+li+li {
     padding-right: 240px;
 }
 
 .navbar .navbar-nav .nav-link.active {
     color: #FFFFFF;
     font-weight: 600;
 }
 
 .navbar .navbar-nav .nav-link.active::before {
     content: '';
     width: 8px;
     height: 8px;
     background-color: #ffffff;
     border-radius: 50px;
     position: absolute;
     left: -5px;
     top: 50%;
     transform: translateY(-50%)
 }
 
 .navbar .navbar-nav .nav-link:hover {
     color: #ffffff;
 }
 /* ----mobile menu---- */
 
 .home .mobile-menu {
     position: absolute;
     width: 100%;
     top: 0;
     left: 0;
     background: transparent;
 }
 
 .mobile-menu {
     display: none;
     padding: 10px 0;
     background: linear-gradient(270.04deg, #203429 29.27%, #475C50 70.73%);
 }
 
 .right-menu {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: end
 }
 
 .mob-navigation .mob-icon .bars {
     display: block;
     position: relative;
     font-size: 22px;
     color: #ffffff;
     transition: all 0.2s ease
 }
 
 .mob-menu {
     width: 250px;
     height: 100%;
     padding: 20px 20px 0;
     background-color: #fff;
     box-shadow: 0 0 5px rgba(0, 0, 0, 0.70);
     position: fixed;
     right: -100%;
     top: 0;
     opacity: 0;
     z-index: 999;
     margin-top: 0;
     overflow-x: hidden;
     transition: all 0.4s ease;
 }
 
 .active.mob-menu {
     right: 0;
     opacity: 1;
     transition: all 0.2s ease;
     z-index: 9999;
 }
 
 .mob-menu .mob-close {
     font-size: 22px;
     color: var(--thm-base);
     transition: all 0.2s ease;
     text-align: right;
     width: 100%;
 }
 
 .mob-menu>ul>li {
     display: block;
     padding: 15px 0;
     border-bottom: 1px solid #eee;
 }
 
 .mob-menu>ul>li>a {
     color: var(--thm-base);
     cursor: pointer;
 }
 
 .mob-menu>ul>li>a:hover,
 .mob-menu>ul>li>a.active {
     color: var(--thm-hover);
 }
 
 .mobile-menu-overlay {
     background-color: rgba(0, 0, 0, 0.5);
     height: 100%;
     left: 0;
     opacity: 0;
     position: fixed;
     top: 0;
     transition: opacity 200ms, visibility 0ms 200ms;
     visibility: hidden;
     width: 100%;
     z-index: 9998;
     transition: all 0.5s;
 }
 
 .mobile-menu-overlay.active {
     opacity: 1;
     visibility: visible;
 }
 /* ----sticky header---- */
 
 .fixed {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 9998;
     animation: smoothScroll 0.5s ease-in-out;
 }
 
 .header-section.fixed .header-inner {
     background: linear-gradient(270.04deg, #203429 29.27%, #475C50 70.73%);
     box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
 }
 
 @keyframes smoothScroll {
     0% {
         transform: translateY(-40px);
     }
     100% {
         transform: translateY(0px);
     }
 }
 /* =================header-end=============== */
 /* ===========================
 Home Page
 =========================== */
 
 main {
     /* background: linear-gradient(270.04deg, #203429 29.27%, #475C50 70.73%); */
     background-image: url('../image/background-image.jpg');
     background-position: top center;
     background-repeat: no-repeat;
     background-size: cover;
 }
 
 .home main {
     padding-top: 130px;
 }
 /* main::before {
     content: '';
     background-image: url('../image/home-bg-tranfrent.png');
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
 } */
 /* section heading start */
 
 .divider {
     width: 50px;
     height: 2px;
     background-color: #ffffff;
 }
 
 .section-heading {
     text-align: center;
     margin-bottom: 50px;
 }
 
 .section-heading .main-title {
     font-size: 48px;
     color: #ffffff;
     font-family: var(--thm-b-font);
     margin: 0;
 }
 
 .section-heading .divider {
     margin: 0 auto 20px;
 }
 /* section heading end */
 /* ========welcome-section======= */
 
 .welcome-section .welcome-content {
     margin-left: 148px;
 }
 
 .welcome-section .welcome-content .sub-title {
     font-size: 38px;
     font-weight: 200;
 }
 
 .welcome-section .welcome-content h2 {
     font-size: 64px;
     color: #ffffff;
     font-family: var(--thm-b-font);
 }
 
 .welcome-section .welcome-content h2 span {
     font-size: 46px;
 }
 /* ========product about-section======= */
 
 .product-about-section .about-content {
     margin-left: 50px;
 }
 
 .product-about-section .about-content h2 {
     font-size: 54px;
     font-family: var(--thm-b-font);
     margin: 0 0 10px 0;
 }
 
 .product-about-section .about-content .sub-title {
     font-size: 36px;
     font-family: var(--thm-b-font);
     margin-top: 20px;
 }
 
 .product-about-section .about-content p {
     margin-bottom: 20px;
 }
 /* ==============categories section=========== */
 
 .categories-section {
     position: relative;
 }
 
 .home .categories-section::before {
     content: '';
     background-image: url('../image/right-homepage-img.png');
     background-repeat: no-repeat;
     background-size: cover;
     position: absolute;
     top: -30%;
     right: 0;
     width: 276px;
     height: 406px;
 }
 
 .categories-link {
     margin-bottom: 40px;
 }
 
 .categories-link a {
     margin-bottom: 40px;
     color: #ffffff;
 }
 
 .categories-link a:hover {
     color: var(--thm-base);
 }
 
 .home .categories-section .section-heading {
     margin-bottom: 20px;
 }
 
 .categories-box:nth-child(odd) .categories-body {
     background: linear-gradient(214.5deg, #8CA48E 0%, #203429 100%);
 }
 
 .categories-box:nth-child(even) .categories-body {
     background: linear-gradient(34.5deg, #463E3B 0%, #A0824C 100%);
 }
 
 .categories-box {
     margin-bottom: 24px;
 }
 
 .categories-box .categories-body {
     border-radius: 45px;
     overflow: hidden;
     padding: 40px;
 }
 
 .categories-box .categories-img {
     margin-bottom: 40px;
 }
 
 .categories-box .categories-img img {
     transition: transform .6s ease;
 }
 
 .categories-box:hover .categories-img img {
     transform: scale(1.2);
 }
 
 .categories-box .categories-content {
     text-align: center;
     color: #ffffff;
 }
 
 .categories-box .categories-content .categories-title {
     font-size: 32px;
     font-family: var(--thm-b-font);
 }
 
 .categories-box .categories-content .categories-desc {
     font-weight: 300;
     font-size: 13px;
 }
 /* ===========professional ============= */
 
 .professional-section {
     position: relative;
 }
 
 .home .professional-section::before {
     content: '';
     background-image: url('../image/left-homepage-img.png');
     background-repeat: no-repeat;
     background-size: cover;
     position: absolute;
     top: -30%;
     left: 0;
     width: 272px;
     height: 406px;
 }
 
 .professional-slider .owl-item:nth-child(odd) .professional-body {
     background: linear-gradient(214.5deg, #8CA48E 0%, #203429 100%);
 }
 
 .professional-slider .owl-item:nth-child(even) .professional-body {
     background: linear-gradient(34.5deg, #463E3B 0%, #A0824C 100%);
 }
 
 .professional-box {
     transition: all .46s ease;
 }
 
 .professional-box .professional-body {
     border-radius: 45px;
     overflow: hidden;
     padding: 40px;
     text-align: center;
 }
 
 .professional-box .professional-img {
     margin-bottom: 25px;
 }
 
 .professional-box .professional-img img {
     object-fit: cover;
     border-radius: 50%;
     overflow: hidden;
     width: 210px;
     height: 210px;
     border: 5px solid #ffffff;
     margin: 0 auto;
     transition: all .46s ease;
 }
 
 .professional-box .professional-content {
     margin-bottom: 20px;
 }
 
 .professional-box .professional-content .professional-name {
     font-size: 32px;
     font-family: var(--thm-b-font);
     color: #ffffff;
 }
 
 .professional-box .professional-content .designation {
     font-weight: 300;
 }
 
 .professional-box .professional-social-list li {
     display: inline-block;
     vertical-align: middle;
 }
 
 .professional-box .professional-social-list li a {
     padding: 0;
     border-radius: 8px;
     height: 40px;
     width: 40px;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #ffffff;
     transition: all 0.4s ease 0s;
     border: 1px solid #ffffff;
     margin: 0 5px 10px 5px;
 }
 
 .professional-box .professional-social-list li:hover a {
     background-color: #fff;
     color: var(--thm-base);
 }
 
 .professional-section .professional-box:hover {
     transform: scale(.97);
 }
 /* =========gallery Section========= */
 
 .gallery-section {
     position: relative;
 }
 /* .gallery-item {
     margin: 0 10px;
 } */
 /* ======================
Footer
====================== */
 
 .footer-section {
     background-color: #0C0C0C;
     padding: 50px 0;
 }
 
 .footer-block .footer-logo {
     margin-bottom: 20px;
 }
 
 .footer-block.conpany-info {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     height: 100%;
 }
 
 .footer-block .footer-block-title {
     font-size: 32px;
     font-family: var(--thm-b-font);
     color: #ffffff;
     margin-bottom: 20px;
 }
 
 .footer-block ul li {
     margin-bottom: 8px;
 }
 
 .footer-block ul li a {
     color: #ffffff;
 }
 
 .footer-block ul li a:hover {
     color: var(--thm-base);
 }
 
 .footer-block .contact-content * {
     margin-bottom: 10px;
 }
 
 .footer-block .contact-content a {
     color: #ffffff;
 }
 
 .footer-block .contact-content a:hover {
     color: var(--thm-base);
 }
 /* footer end */
 /* slick nav */
 
 .slick-arrow {
     background: var(--thm-base);
     width: 40px;
     height: 40px;
     text-align: center;
     z-index: 1;
     border-radius: 50px;
 }
 
 .slick-arrow:hover {
     background: var(--thm-hover);
 }
 
 .slick-arrow::before {
     color: #ffffff;
     font-family: 'Material Icons';
     font-size: 26px;
     opacity: 1;
 }
 
 .slick-arrow:hover::before {
     color: var(--thm-base);
 }
 
 .slick-prev {
     left: 20px;
 }
 
 .slick-prev::before {
     content: '\e5cb';
 }
 
 .slick-next {
     right: 20px;
 }
 
 .slick-next::before {
     content: '\e5cc';
 }
 /* slick nav end */
 /* slick dots */
 
 .slick-dots {
     bottom: -40px;
 }
 
 .slick-dots li button:before {
     font-size: 12px;
     color: #ffffff;
     opacity: 0.5;
 }
 
 .slick-dots li.slick-active button:before {
     color: var(--thm-base);
     opacity: 1;
 }
 /* slick dots end*/
 /* owl nav start*/
 
 .owl-carousel .owl-nav {
     margin: 0;
 }
 
 .owl-carousel .owl-nav button.owl-prev,
 .owl-carousel .owl-nav button.owl-next {
     position: absolute;
     top: 50%;
     width: 36px;
     height: 36px;
     transform: translateY(-50%);
     border-radius: 50%;
     background-color: rgba(255, 255, 255, 0.6);
     color: var(--thm-hover);
 }
 
 .owl-carousel .owl-nav button.owl-prev {
     left: 20px;
 }
 
 .owl-carousel .owl-nav button.owl-next {
     right: 20px;
 }
 
 .owl-carousel .owl-nav button.owl-prev:hover,
 .owl-carousel .owl-nav button.owl-next:hover {
     background-color: var(--thm-base);
     color: #ffffff;
 }
 
 .owl-carousel .owl-nav button i {
     vertical-align: middle;
 }
 
 .owl-dots {
     margin-top: 25px;
 }
 
 .owl-theme .owl-dots .owl-dot span {
     background-color: var(--thm-base);
     width: 12px;
     height: 12px;
     margin: 0px 4px;
 }
 
 .owl-theme .owl-dots .owl-dot.active span,
 .owl-theme .owl-dots .owl-dot:hover span {
     background-color: var(--thm-hover);
 }
 /* owl nav end */
 /* breadcrumb  */
 
 .breadcrumb-section {
     padding: 80px 0;
     background: linear-gradient(270.04deg, #203429 29.27%, #475C50 70.73%);
 }
 
 .breadcrumb-title {
     color: #ffffff;
     font-size: 64px;
     font-weight: 400;
     font-family: var(--thm-b-font);
     margin: 0;
 }
 /* breadcrumb end */
 /* ================================
 our menu
 ================================== */
 
 .food-categories {
     padding-top: 80px;
 }
 
 .food-categories .row:nth-child(odd) .categories-box:nth-child(odd) .categories-body {
     background: linear-gradient(34.5deg, #463E3B 0%, #A0824C 100%);
 }
 
 .food-categories .row:nth-child(odd) .categories-box:nth-child(even) .categories-body {
     background: linear-gradient(214.5deg, #8CA48E 0%, #203429 100%);
 }
 
 .food-categories .row:nth-child(even) .categories-box:nth-child(odd) .categories-body {
     background: linear-gradient(214.5deg, #8CA48E 0%, #203429 100%);
 }
 
 .food-categories .row:nth-child(even) .categories-box:nth-child(even) .categories-body {
     background: linear-gradient(34.5deg, #463E3B 0%, #A0824C 100%);
 }
 /* coffee categories section */
 
 .coffee-categories .categories-box:nth-child(odd) .categories-body {
     background: linear-gradient(34.5deg, #463E3B 0%, #A0824C 100%);
 }
 
 .coffee-categories .categories-box:nth-child(even) .categories-body {
     background: linear-gradient(214.5deg, #8CA48E 0%, #203429 100%);
 }
 
 .drinks-categories {
     position: relative;
 }
 
 #ourMenu .drinks-categories::before {
     content: '';
     background-image: url('../image/right-homepage-img.png');
     background-repeat: no-repeat;
     background-size: cover;
     position: absolute;
     top: -20%;
     right: 0;
     width: 276px;
     height: 406px;
 }
 
 .coffee-categories {
     position: relative;
 }
 
 #ourMenu .coffee-categories::before {
     content: '';
     background-image: url('../image/left-homepage-img.png');
     background-repeat: no-repeat;
     background-size: cover;
     position: absolute;
     top: -20%;
     left: 0;
     width: 272px;
     height: 406px;
 }