:root {
  --default-font: "Lato",  sans-serif;
}

/* Global Colors */
:root { 
  --background-color: #ffffff;
  --default-color: #555555;
  --heading-color: #1e4356;
  --accent-color: #68a4c4; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
}

/* Nav Menu Colors */
:root {
  --nav-color: rgb(6 11 62 / 83%);  
  --nav-hover-color: #68a4c4;
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #555555; 
}

.light-background {
  --background-color: #f4f8fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1e4356;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #284e62;
  --contrast-color: #ffffff;
}
div#content p {
    margin: 0 ;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-family: 'LATO';
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--background-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  --background-color: var(--background-color);
  background-color: #fff;
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
  font-family: var(--default-font);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: rgb(6 11 62 / 83%);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #1e4356;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 992px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    padding: 0 15px;
  }

  .navmenu a, .navmenu a:focus {
        color: var(--nav-color);
        padding: 25px 0px;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-transform: uppercase;
        border-bottom: 2px solid #fff;
    }
.current-menu-item a, .navmenu a:hover, .navmenu a:focus {
    border-bottom: 2px solid rgb(201 58 24);
        color: rgb(201 58 24) !important;
        outline: 0 !important;
}
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 18px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  i.mobile-nav-toggle.d-xl-none.bi.bi-list {
    display: none;
  }
}
.mobileViewHd{
display: none;
}
/* Navmenu - Mobile */
@media (max-width: 992px) {
.desktoView{
display: none;
}
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
header#header {
    padding: 12px 0;
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
  .navmenu-active ul#menu {
      opacity: 0;
      transform: translateX(-100%);
      animation: slideInLeft 0.6s ease-out forwards;
    }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 65px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }div#cookie-notice {
    z-index: 9 !important;
}
    li#menu-item-231 {
        position: absolute;
        bottom: 20%;
        width: 100%;
    }.mobileViewHd{
display: block;
}
  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid #ec7024;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
.homeBanner {
    background: #000;
    padding-bottom: 70px;
}
.footer_menu ul {
    text-align: left;
}
.footer_menu li {
    display: list-item;
}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}
footer .current-menu-item a {
    color: #fff !important;
}
.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}
.bg-gray {
    background: #2d3238;
    margin: 20px 0;
}
.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

.navmenu-active ul#menu {
    display: block;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0px;
    background: #000;
    padding-top: 70px;
    border-radius: 0;
}
/*--------------------------------------------------------------
# Footer section
--------------------------------------------------------------*/
.footer_menu ul {
    list-style: none;
    margin: 0;
    line-height: 40px;
}.footer_menu a {
    border: 0;
    text-transform: uppercase;
    color: var(--backgrount-color);
}
footer hr {
    margin-top: 40px;
}
footer {
    border-top: 7px solid #e1ba26;
}
footer i.bi:hover {
    color: #c93a18;
}.locations a {
    color: #fff;
}.locations i.bi {
    color: red;
    margin-right: 5px;
    vertical-align: text-top;
    margin-top: 2px;
}
footer p{
	color: var(--backgrount-color);
       margin-bottom: 10px;
    font-size: 16px;
    line-height: 20px;
	margin-bottom: 14px !important;
}
button.btn.newsletter {
    border: 1px solid #e1ba26;
    color: #e1ba26;
    border-radius: 100px;
    font-size: 18px;
    text-transform: uppercase;
    padding: 5px 25px;
    margin: 10px 0;
}
button.btn.newsletter:hover{
background-color:#e1ba26;
color:#000;
}
footer h3, footer h4{
    color: var(--backgrount-color);
    font-weight: 600;
    
}
.footer_menu li a {
    border-right: 1px solid #ccc;
    padding-right: 8px;
    line-height: 13px !important;
    font-size: 14px;
}.footer_menu li:last-child a{ border-right:0px;
}
.allAddress {
    padding-right: 30%;
}.allAddress p {
    display: flex
;
    /* gap: 5px; */
}.allAddress span {
    margin-left: 5px;
}
.footer_menu li {
    width: max-content;
    /* border-right: 1px solid; */
    display: unset;
    margin-right: 10px;
}
/*Banner Section CSS*/
.bannerScetion{
    position: relative;
    height: 100vh;
    width: 100%;
}
.bannerScetion:before {
    background: url('https://naturepluck.com/wp-content/uploads/2025/05/little-boy-clutching-chopsticks-bowl_28914-55527-1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    height: 100vh;
    position: absolute;
    width: 100%;
    content: "";
    left: 0;
    z-index: -1;
    /* animation: bgZoomInOut 8s ease-in-out; */
}
.bannerScetion h2.wp-block-heading {
    padding-top: 100px;
    font-size: 2.5rem;
    color: #30345f;
    font-weight: 900;    
    font-family: 'Lato';
    width: 100%;
   
}
.bannerScetion .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:first-child{
order:2;
}
.bannerScetion mark.has-inline-color {
    line-height: 4.5rem;
}

.bannerScetion a.wp-block-button__link:hover {
    background: var(--wp--preset--color--luminous-vivid-amber) !important;
    color:#30345f !important;
}
.secondSection  ol.wp-block-list {
    margin: 0;
    padding-left: 40px;
    border-left: 1px solid #000;
}
.secondSection ol.wp-block-list li{
    position:relative;
}
.secondSection ol.wp-block-list li:before {
    font-weight: bold;
    font-size: 1.2em;
    content: counters(list-item, ".");
    background: #ccc;
    border-radius: 100%;
    min-width: 50px;
    min-height: 50px;
    /* line-height: 2em; */
    /* padding: 10px 20px; */
}
.sectionpart2 h2.wp-block-heading {
    padding-top: 50px;
    padding-bottom: 20px;
}
.sectionpart2 ol.wp-block-list {
    line-height: 28px;
    margin: 0;
    padding-left: 18px;
    font-size: 18px;
}
.sectionpart2 ol.wp-block-list li{
        margin-bottom: 10px;
    color: #000;
    font-weight: 600;
    font-family: 'Lato';
    position: relative;
    padding-left: 45px;
    list-style: none;
    border-bottom: 1px solid #c9c9c9;
    padding-top: 10px;
    padding-bottom: 20px;
    margin-right: -10px;
}
.sectionpart2 ol.wp-block-list li:before {
    font-weight: bold;
    font-size: 1em;
    content: counters(list-item, ".");
    background: #c93a18;
    border-radius: 100%;
    min-width: 45px;
    color: #fff;
    min-height: 45px;
    /* line-height: 2em; */
    /* padding: 10px 20px; */
    position: absolute;
    left: -7%;
    transform: translate(50%, -50%);
    text-align: center;
    line-height: 45px;
    top: 40%;
}
.sectionpart2 .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:last-child {
    position: relative;
}
.sectionpart2 .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:last-child img{
position: absolute;
    bottom: 40px;
    width: 100%;
}
.section3full img {
    width: 100%;
}
.imageHeading{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: unset;
    background: #1c1a1a7a;
    padding-top: 20px;
}.imageheading.is-layout-flow.wp-block-column-is-layout-flow {
    margin: 0 auto;
}
.imageheading h2 {
    color: #fff !important;
    font-weight: 600;
    width: 70%;
    font-family: 'Lato', sans-serif;
}
.fruitSectins2 .wp-block-column-is-layout-flow {
    box-shadow: 1px 1px 2px 1px #ccc;
    font-family: 'Lato', sans-serif;
    background: #000;
    padding: 40px 30px;
    text-align: left;
}.fruitSectins2 h3 {
    padding: 5px 0;
    /* background: #0ecd6e; */
    color: #fff;
    font-size: 30px !important;
    border-bottom: 1px solid #ccc;
}.fruitSectins2 p.is-service-description {
    padding: 10px 0;
    margin: 0;
    color: #fff;
}.fruitSectins2 {
    margin: 0 !important;
    gap: 0 !important;
}
.imageheading.is-layout-flow.wp-block-column-is-layout-flow .wp-block-buttons {
    padding-bottom: 50px;
}
.Section3nature{
    margin-bottom: 0;
}
.wp-block-column.transforming.is-layout-flow.wp-block-column-is-layout-flow {
    position: relative;
}

.deliverySection {
    padding: 0;
    vertical-align: middle;
    background: #c93a18;
}.productsSections .wp-block-spacer:last-child {
    margin: 0;
}.deliverySection a.wp-block-button__link.wp-element-button:hover {
    background: #fff;
    color: #000;
}.imageheading a.wp-element-button:hover {
    color: #fff !important;
    background-color: #000 !important;
}
.deliverySection h2.wp-block-heading {
    /* padding: 50% 0; */
    line-height: 54px;
    color: #fff;
    letter-spacing: -2px;
    font-family: 'Lato', sans-serif;
}
.deliverySection .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:last-child {
    position: relative;
    padding: 8% 30px;
}
.deliverySection a.wp-block-button__link.wp-element-button {
    background: #000;
    color: #fff;
}
.blendingSection h2.wp-block-heading, .professionalSection h2.wp-block-heading, .innerSecondSection h2{
    font-size: 42px;
    font-family: 'Lato', sans-serif;
    line-height: 46px;
    font-weight: 600;
    padding: 30px 20px 20px;
}
.blendingSection p, .professionalSection p, .innerSecondSection p {
    font-size: 16px;
    font-family: 'Lato';
    line-height: 24px;
    font-weight: 400;
    padding: 0px 15% 0 20px;
    color:#000;
    text-align: justify;
}
.qualitySection {
    background: #000;
margin-bottom:0;
}
.blendingSection .wp-block-button, .professionalSection .wp-block-button {
    padding: 0 20px;
}
.qualitySection h2.wp-block-heading {
    line-height: 54px;
    color: #fff;
    letter-spacing: -2px;
    font-family: 'Lato', sans-serif;
    font-size: 58px;
    font-weight: 600;
}
 .qualitySection a.wp-block-button__link:hover {
    background-color: #000 !important;
    color: #fff !important;
}
.qualitySection .wp-container-core-columns-is-layout-28f84493{
    padding: 30px 60px;
    position: relative;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}
.homelastSection a.wp-element-button:hover {
    background-color: #bc3616 !important;
    color: #fff !important;
}
.homelastSection .wp-block-columns.container.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}.homelastSection.is-layout-flow.wp-block-column-is-layout-flow {
    position: relative;
}.homelastSection h2.wp-block-heading {
    font-size: 100px;
    font-weight: 600;
    font-family: 'Lato';
    color: #fff;
    line-height: 80px;
    letter-spacing: -2px;
}
.homelastSection img {
    transform: scaleX(-1);
}
.holisticSection h2.wp-block-heading.holisticMain {
    font-size: 46px;
    font-weight: 600;
    padding-top: 55px;
    line-height: 46px;
}

.holisticSection .wp-block-group.is-vertical.is-nowrap {
    box-shadow: 1px 1px 1px 2px #a56d6d96;
    padding: 20px;
gap:5px;
}
.holisticSection img.wp-image-181 {
    position: absolute;
    bottom: 0;
}.holisticSection .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:first-child{
position:relative;
}
.holisticSection h2.wp-block-heading {
    font-size: 20px;
    font-weight: 600;
font-family:"Lato";
}.holisticSection p{
font-family:"Lato";
font-size: 16px;
    font-weight: 400;
text-align: justify;
}
/* Animation effect */
@keyframes bgZoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5); /* Slight zoom in */
  }
  100% {
    transform: scale(1);   /* Back to original */
  }
}


    @keyframes fadeInSlide {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
/* Animation effect */
/* Innerpages Register school*/
.innerBannerPosition {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    margin: 0 auto;
    display: inline-table !important;
}.innerbannerScetion {
    position: relative;
}
.innerBannerPosition .container {
    margin: 0 auto;
}
.innerBannerPosition h1>mark.has-inline-color.has-white-color {
    font-size: 58px;
    line-height: 80px;
    padding: 0px 5px;
    text-spacing-trim: space-first;
}
.innerBannerPosition .wp-block-button__link:not(.has-background):hover, .innerBannerPosition .wp-block-button__link:not(.has-background):focus, .innerBannerPosition .wp-block-button__link:not(.has-background):active {
    border-color: #c93a18;
    background-color: #c93a18;
color:#fff;
}
.innerSecondSection .wp-block-button__link:not(.has-background) {
    background-color: #c93a18;
    color: #fff;
margin-left: 20px;
}
.howItWorks h4.wp-block-heading {
    font-size: 24px;
    font-family: 'Lato';
    font-weight: 600;
    line-height: 32px;
    color: #fff;
    margin: 0;
}
.wp-block-column.howItWorks.is-layout-flow.wp-block-column-is-layout-flow {
    background: #000;
padding-bottom:50px;
}.howItWorks h2.wp-block-heading.has-text-align-center {
    font-size: 50px;
    font-weight: 600;
    font-family: "Lato";
    padding: 50px 0 20px;
    color: #fff;
}
.howItWorks .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
    padding: 50px 30px;
    text-align: center;
	border-right:1px solid #ccc;
border-bottom:1px solid #ccc;
}
.howItWorks .wp-block-columns.is-layout-flex {
    gap: 0px !important;
    margin: 0;
}.howItWorks i.bi {
    font-size: 50px;
    color: #fff;
}.howItworks2ndSection .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
    border-bottom: 0;
}
.middleSectis .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:first-child {
    padding: 4% 0;
    margin: 3% 0;
    position: relative;
    top: 0%;
    transform: translateY(5%);
}.middleSectis h2.wp-block-heading {
    color: #000;
    font-weight: 600;
    font-size: 50px;
    font-family: 'Lato';
    line-height: 50px;
    padding: 10px 10%;
}.middleSectis p {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Lato';
    color: #000 !important;
    margin-bottom: 40px;
    padding: 0 15% 0 10%;
    text-align: justify;
}
.middleSectis figure.wp-block-image.size-full {
    margin: 0;
}.middleSectis .wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
    padding: 0 10%;
}.middleSectis a.wp-block-button__link.wp-element-button:hover{
background-color:#000 !important;
}
.allServices .wp-block-columns.container:nth-child(odd) {
    background: #fff;
    box-shadow: 1px 3px 3px 1px #f1f1f1;
}
.allServices .wp-block-columns.container:nth-child(even) {
    box-shadow: 1px 3px 3px 1px #f1f1f1;
    background: #f1f1f1;
}
.allServices .wp-block-columns.container {
    gap: 0;
    padding: 0;
}
.allServices h2.wp-block-heading {
    font-size: 48px;
    font-family: "Lato";
    font-weight: 600;
    padding: 50px 50px 15px;
}.allServices p {
    font-size: 16px;
    font-family: 'Lato';
    padding: 0 50px;
    line-height: 24px;
    color: #000;
   text-align: justify;
}
.allServices a.wp-block-button__link.wp-element-button {
    background: #c93a18;
    color: #fff;
}
.allServices .wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex{ padding: 0 30px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #e51a1a;
    color: #fff;
    border-radius: 100px;
width:100%;
}
input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number {
    width: 160%;
}span.nemeField {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    /* font-weight: bold; */
}.fomrfilds {
    position: relative;
}button.btn-close {
    display: none;
}
.fomrContact input {
    max-width: 100%;
    border: 1px solid #ccc !important;
    background-color: unset !important;
    border-radious: 5px;
    width: 100%;
    padding-left: 40px !important;
}.nopadding input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    padding-left: 20px !important;
}div#wpcf7-f230-o1 {
    padding: 0 30px;
}
.modal-header {
    display: flex
;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
    border: 0 !important;
}
h5#myMenuModalLabel {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    width: 100%;
    padding: 30px 0 20px;
    color: #e51a1a;
}
.homeBanner.is-layout-flow.wp-block-column-is-layout-flow {
    position: relative;
}.blendingSection.sectionpart2 .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:last-child img {
    position: static;
    bottom: auto;
    width: 90%;
    right: -10%;
    margin-left: 20px;
}.blendingSection.sectionpart2 h2.wp-block-heading {
    padding-left: 0;
    padding-top: 20%;
}
.deliverySection.homepageexp .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:last-child {
    position: relative;
    padding: 6% 30px;
}
.homelastSection.homemedia img {
    transform: scaleX(-1);
    width: 100%;
    object-fit: cover;
    max-height: 100vh;
    object-position: -59% 20%;
    object-view-box: unset;
}
.homelastSection.homemedia .wp-block-columns.container.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex {
    position: absolute;
    z-index: 1;
    top: 50%;
    /* transform: translateY(-50%); */
    width: 100%;
    left: 55%;
    transform: translate(-50%, -50%);
}
.middleSectis img.wp-image-249 {
    height: 95vh;
    width: 85%;
    object-fit: cover;
}
.homepageexp p {
    font-size: 60px;
    color: #fff;
    margin: 0;
    line-height: 56px;
    font-family: 'Lato';
    width: 100%;
}
.homepageexp p span {
    width: 100%;
    display: flex;
}
.lastsect {margin: 0;
}.removemargin {
    margin-bottom: 0;
}
.locations p:nth-child(2) {
    display: flex;
}.locations p:nth-child(2) span {
    margin-left: 3px;
width: 64%;
}h3.fw-bold, p.pt-2 b {
    color: #d12412;
}.contentSection.w-100 {
    padding-right: 0px;
    text-align: justify;
}
.corporate img.wp-image-260 {
    object-fit: cover;
    height: 100vh;
    object-position: 0% 0%;
}.allServices p {
    margin-bottom: 10px !important;
}
li#menu-item-231 a {
    background: #d12412;
    padding: 10px 20px;
    border-radius: 100px;
    color: #fff;
}li#menu-item-231 a:hover{
	background: #000;
    padding: 10px 20px;
    color: #fff !important;
	border:0 !important;
}.wp-block-column.contactBannerSection.is-layout-flow.wp-block-column-is-layout-flow {
    background: #000;
}
.contactBannerSection .container .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:first-child {
    /* padding: 20% 0 0; */
    position: relative;
    top: 50%;
    transform: translateY(50%);
    height: max-content;
}.contactBannerSection mark.has-inline-color.has-black-color {
    /* line-height: 70px; */
    padding: 0;
}.contactBannerSection h1 {line-height: 75px;}

#cookie-notice {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: none;
}

#cookie-notice a {
    color: #ffffff;
    background: #dd0505db;
    padding: 7px 10px;
    border-radius: 100px;
    font-size: 15px;
    margin-left: 10px;
}
#cookie-notice button {
    margin-left: 15px;
    padding: 5px 10px;
    border-radius: 100px;
}
h3.address {
    font-size: 18px;
    font-weight: 900;
    margin: 5px 0;
    width: max-content;
    border-bottom: 1px solid #f50e0e;
    line-height: 16px;
}.justify-content-end.text-right {
    text-align: right;
}
.reserveContent p {
    font-size: 14px;
}.reserveContent p a {
    color: #cb2414;
}
.contactSection .contactOffice {
    border: 1px solid #d9d5d5;
}
.contactOffice > h2.wp-block-heading {
    font-size: 56px;
    text-align: left;
    font-family: 'Lato';
    font-weight: 600;
    padding: 50px 50px 0px;
}.addressContact{
    padding: 20px 50px;
}
.addressContact p {
    padding: 20px 0;
    border-bottom: 1px solid #000;
    color: #000;
    font-family: 'Lato';
    font-size: 16px;
    margin-bottom: 40px !important;
}.addressContact h2.wp-block-heading {
    font-size: 24px;
    font-weight: 600;
    font-family: 'Lato';
    text-transform: uppercase;
}.contactForm > p {
    font-family: 'Lato';
    padding: 0px 15px 10px;
    color: #000;
}
.contactForm h2.wp-block-heading {
    font-size: 34px;
    font-weight: 600;
    font-family: 'Lato';
    padding: 50px 15px 10px;
}form.wpcf7-form.init {
    padding: 0 15px;
}h3.wp-block-heading.contactHeading {
    font-size: 30px;
    font-weight: 600;
    font-family: 'Lato';
    margin-bottom: 15px;
    padding: 0 15px;
}.fomrContact input {
    box-shadow: unset;
    font-family: 'Lato';
    font-size: 16px;
}.fomrContact {
    margin-bottom: 30px;
}
.supportInformation .wp-block-columns.container {
    gap: 10px;
}.supportInformation .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
    background: #f6f6f6;
    padding: 5% 3%;
    text-align: center;
    /* margin: 5px !important; */
}.supportInformation i.bi {
    font-size: 90px;
}.supportInformation h3.wp-block-heading {
    margin: 0;
    font-size: 26px;
    text-transform: uppercase;
    font-family: 'Lato';
    font-weight: 600;
    margin-bottom: 10px;
}.supportInformation p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
    margin-bottom: 15px !important;
}a.emailId {
    font-size: 20px;
    color: #000;
    font-weight: bold;
    font-family: 'Lato';
}
.privacyPolicy h2 {
    font-size: 34px;
    font-weight: 600;
    padding: 20px 0;
}.privacyPolicy h1.wp-block-heading {
    font-size: 58px;
    padding: 50px 0 30px;
}.privacyPolicy {
    font-family: 'Lato';
}.privacyPolicy p {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 0 20px;
}span.wpcf7-not-valid-tip {
    position: absolute;
}
#cookie-notice p {
    display: inline;
}
@media (max-width:1199px){
 .homelastSection .wp-block-columns.container{
    max-width: 100%;
}
}
@media (max-width:1160px){
.deliverySection h2.wp-block-heading {
    font-size: 50px !important;
    line-height: 44px;
}
}
@media (max-width:1024px){
.deliverySection h2.wp-block-heading {
    font-size: 46px !important;
    line-height: 41px;
}
.contactBannerSection .container .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:first-child {
    /* padding: 20% 0 0; */
    position: relative;
    top: 20%;
    transform: translateY(10%);
    height: max-content;
}.contactBannerSection h1 {
    line-height: 60px;
    font-size: 44px !important;
}a.emailId {
    font-size: 15px;
}
.innerBannerPosition h1>mark.has-inline-color.has-white-color {
    font-size: 45px;
    line-height: 65px;
}.homelastSection h2.wp-block-heading {
    font-size: 66px;
    line-height: 60px;
}
.allServices h2.wp-block-heading {
    font-size: 30px;
    padding: 20px 30px 0px;
}.allServices p {
    font-size: 16px;
    line-height: 22px;
}
}
@media (max-width:781px){
.innerBannerPosition {
    position: unset;
    top: 50%;
    transform: translateY(0%);
    width: 100%;
    left: 0;
    margin: 0 auto;
    display: inline-table !important;
}
.holisticSection img.wp-image-181 {
    position: relative;
    bottom: 0;
}
.homelastSection {
    padding-bottom: 60px;
}
.bannerScetion:before {
    background: url(https://naturepluck.com/wp-content/uploads/2025/05/little-boy-clutching-chopsticks-bowl_28914-55527-1.jpg);
    background-repeat: no-repeat;
    background-position: 17% 0;
    background-size: cover;
    height: 50vh;
    position: absolute;
    width: 100%;
    content: "";
    left: 0;
    z-index: 1;
    /* animation: bgZoomInOut 8s ease-in-out; */
}
    .bannerScetion .container.wp-container-core-columns-is-layout-28f84493 {
        position: relative;
        top: 80vh;
        transform: translateY(-50%);
    }
.sectionpart2 .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:first-child {
    order: 2;
}
.sectionpart2 .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:last-child img {
                position: relative;
        bottom: -100px;
        width: 100%;
        margin-top: 0px;
    }.sectionpart2 h2.wp-block-heading {
    margin-top: 30px !important;
}
.wp-block-columns.alignwide.fruitSectins2.is-layout-flex.wp-container-core-columns-is-layout-cbe57604 .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: 50% !important;
    }
.fruitSectins2 h3 {
    font-size: 24px !important;
    border-bottom: 1px solid #ccc;
}
.homelastSection .wp-block-columns.container.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex {
    z-index: 1;
    top: 40%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 20px;
}
.homelastSection h2.wp-block-heading {
    font-size: 80px;
}
.transforming img.wp-image-137 {
    min-height: 300px;
    object-fit: cover;
}
.imageheading h2 {
width:100%;
    font-size: 30px !important;
}
.howItWorks .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
    flex-basis: 50% !important;
}
.middleSectis .wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
    margin-bottom: 50px;
}
.homelastSection.is-layout-flow.wp-block-column-is-layout-flow {
    position: relative;
    padding: 0%;
}
.allServices .wp-block-columns.container:nth-child(even) .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:first-child {
    order: 2;
}.allServices .wp-block-columns.container:nth-child(even) .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:last-child {
    order: 1;
}.allServices .wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
    padding: 0 30px;
    margin-bottom: 20px;
}
.homeBanner img.wp-image-247 {
    height: 60vh;
    object-fit: cover;
    object-position: 15% 0;
}
.homeBanner img.wp-image-92 {
    height: 60vh;
    object-fit: cover;
    object-position: 100% 100%;
}
.privacyPolicy h2 {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 20px 0;
}.privacyPolicy h1.wp-block-heading {
    font-size: 2.7rem;
    padding: 50px 0 30px;
}
.contactBannerSection .container .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:first-child {
    /* padding: 20% 0 0; */
    position: relative;
    top: 50%;
    transform: translateY(0%);
    height: max-content;
    order: 2;
padding-bottom: 30px;
}
    .homelastSection img {
        transform: scaleX(-1);
        object-fit: cover;
        min-height: 65vh;
        object-position: 100% 100%;
    }
.footer_menu li {
        display: list-item;
    }
.footer_menu li a {
    border-right: 0px solid #ccc;
}
.innerBannerPosition{
    padding: 0 20px;
}
.bg-gray, .contentSection.w-100,.locations, footer h4, .social-media  {
    padding: 0 20px;
}    .bannerScetion .container.wp-container-core-columns-is-layout-28f84493 {
        background: #c30909;
        padding-bottom: 40px;
    }
    .bannerScetion mark.has-inline-color {
        background-color: unset !important;
	line-height: 50px;
        padding: 0;
    }
    .bannerScetion h2.wp-block-heading {
        padding-top: 60px;
        font-size: 50px;
        font-weight: 600;
        line-height: 54px;
    }
    .bannerScetion .container.wp-container-core-columns-is-layout-28f84493 {
        padding-left: 20px;
        padding-right: 20px;
    }
.allServices p {
    padding: 0 30px;
}.allServices .wp-block-columns.container {
    gap: 0;
    padding: 0 20px;
}.innerbannerScetion{
    background: #c30909;
}
.sectionpart2 {
    padding: 0 20px;
}.wp-block-columns.imageHeading {
    padding: 0 20px;
}.holisticSection {
    padding: 0 20px;
}.wp-block-columns.corporate {
    background: #c30909;
}    .innerBannerPosition h1>mark.has-inline-color.has-white-color {
        background-color: unset !important;
    }
.section3full img {
    width: 100%;
    height: 60vh !important;
    object-fit: cover;
}
    div#cookie-notice {
        padding: 10px 50px !important;
    }
.howItWorks h4.wp-block-heading {
    margin: 0 auto;
    width: 100%;
}
.corporate img.wp-image-260 {
    object-fit: cover;
    height: 60vh;
    object-position: 60% 0%;
}    .innerBannerPosition h1>mark.has-inline-color.has-white-color {
        font-size: 51px;
        line-height: 51px;
    }.contactBannerSection mark.has-inline-color.has-black-color {
    /* line-height: 70px; */
    padding: 0;
    color: #fff !important;
    background-color: #000 !important;
}.contactBannerSection h1 {
    line-height: 52px;
}    .schoolAndcorp .bannerScetion .container.wp-container-core-columns-is-layout-28f84493 {
        background: #000;
        padding-bottom: 40px;
    }
li#menu-item-231 a {
    background: #d12412;
    padding: 10px 30px;
    border-radius: 100px;
    color: #fff;
    width: max-content;
    margin: 0 auto;
}
.innerbannerScetion img.wp-image-217 {
    margin: 10px;
    max-width: 95.5%;
    height: 60vh;
        object-fit: cover;
        object-position: 100% 80%;		
}
    .allServices h2.wp-block-heading {
        font-size: 30px;
        padding: 20px 30px 15px;
    }
.privacyPolicy.is-layout-flow.wp-block-column-is-layout-flow {
    padding: 0 20px;
}
.howItWorks h2.wp-block-heading.has-text-align-center {
    font-size: 44px;
}
#cookie-notice p {
    display: inherit;
}
}
@media (max-width:575px){
.col-md-6.col-sm-6.nopadding {
    margin-top: 30px;
}
}
@media (max-width:480px){
.howItWorks h4.wp-block-heading {
    margin: 0 auto;
    width: 50%;
}
.qualitySection h2.wp-block-heading {
    line-height: 34px;
    color: #fff;
    letter-spacing: -2px;
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-weight: 600;
}
    .deliverySection h2.wp-block-heading {
        font-size: 40px !important;
        line-height: 41px;
    }
    .homelastSection h2.wp-block-heading {
        font-size: 60px;
    }
.qualitySection .wp-container-core-columns-is-layout-28f84493 {
    padding: 30px 20px;
}
.sectionpart2 ol.wp-block-list li:before {
    min-width: 40px;
    color: #fff;
    min-height: 40px;
    position: absolute;
    left: -10%;
    top: 40%;
line-height:40px;
}
.fruitSectins2 .wp-block-column-is-layout-flow {
    box-shadow: unset;
    font-family: 'Lato', sans-serif;
    background: #000;
    padding: 20px 30px;
    text-align: left;
}
.fruitSectins2 h3 {
        width: max-content;
    }



.wp-block-column.bannerScetion.is-layout-flow.wp-block-column-is-layout-flow {
    overflow-x: hidden;
    overflow-y: visible;
}
.header {
    padding: 10px 0;
}.howItworks2ndSection .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
    border-bottom: 1px solid #ccc;
}
    .bannerScetion:before {
        background-position: 24% center;
        background-size: cover;
        
    }

.bannerScetion mark.has-inline-color {
    line-height: 55px;
}
.sectionpart2 ol.wp-block-list {
    line-height: 22px;
    margin: 0;
    padding-left: 18px;
    font-size: 16px;
}
.sectionpart2 ol.wp-block-list li {
    padding-right: 30px;
}    .innerBannerPosition h1>mark.has-inline-color.has-white-color {
        font-size: 51px;
        line-height: 50px;
        padding: 0px 5px;
        font-weight: 600;
        font-family: 'Lato';
        color: #fff;
        letter-spacing: -2px;
    }
    .howItWorks .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
        flex-basis: 100% !important;
    }
.innerbannerScetion img.wp-image-191 {
    height: 50vh;
    object-fit: cover;
    object-position: 100% 100%;
}
.homepageexp p {
    font-size: 40px;
    line-height: 40px;
}
.middleSectis h2.wp-block-heading {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
}
.middleSectis img.wp-image-249 {
    height: auto;
    width: 100%;
}
div#cookie-notice {
    z-index: 9 !important;
}
}

.sitename {
	color: #d12412 !important;
    
}