@font-face {
  font-family: "Futura LT Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Futura LT Regular"), url("FuturaLT.woff") format("woff");
}
: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: #000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #284e62;
  --contrast-color: #ffffff;
}
div#content p {
  margin: 0;
  color: #000;
}
/* 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: "Futura LT Regular" !important;
}

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: #000;
  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 5px;
  }

  .navmenu a,
  .navmenu a:focus {
padding: 25px 15px;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-transform: capitalize;
        border-bottom: 2px solid #ffffff;
        font-size: 16px;
        letter-spacing: 0.05em;
        font-family: 'Futura LT Regular';
        color: #000;
  }
  .current-menu-item a,
  .navmenu a:hover,
  .navmenu a:focus {
    color: #993500 !important;
        outline: 0 !important;
        border-bottom: 2px solid #993500;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #993500 !important;
    outline: 0 !important;
    background: unset;
  }

  .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 .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;
}

/*--------------------------------------------------------------
# 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: #000;
}
.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;
}
.buttonsUsed a {
  border: 1px solid #4d24e1;
  font-size: 16px;
  padding: 10px 20px;
  line-height: 20px;
  margin-top: 20px;
  display: inline-flex;
  color: #000;
}
.buttonsUsed a:hover {
  background: #fffccc;
  color: #993500 !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: #000;
  font-weight: 600;
}
.footer_menu li a {
  padding: 8px 20px;
  line-height: 13px !important;
  font-size: 14px;
  text-transform: capitalize;
  color: #000 !important;
  background: #fffccc;
  border-radius: 20px;
}
.footer_menu li:last-child a {
  border-right: 0px;
}
footer .current-menu-item a {
  color: #000 !important;
  background: #c9c8fb;
}
.footerMenu p {
  padding: 10px 0;
}
.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;
}
/*homepage*/
h1.wp-block-heading.mainBanner {
    font-size: 30px;
    color: #fff;
    width: max-content;
    border-bottom: 1px solid #fff;
}figure.wp-block-image.size-full.w-50 img {
    width: 150px;
    margin-left: 50px;
    margin-top: 50px;
}h5.belowAbout {
    font-size: 30px;
    font-weight: 600;
    color: #d50a0a;
    line-height: 32px;
    margin-bottom: 0px;
}.imgPadding img {
    margin-left: 50px;
    margin-top: 50px;
margin-bottom: 20px;	
}
.innerBannerPosition h2 {
    font-size: 50px;
    color: #fff !important;
    line-height: 50px;
    font-weight: 600;
    letter-spacing: 1px;
margin-top: 10px;
}
.wp-block-columns.requirementSection.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1629px;
  height: 218px;
  background: url("data:image/svg+xml,%3Csvg id='comp-mbbu5gny-bottom' preserveAspectRatio='xMidYMax slice' data-bbox='0 100.625 1920 199.375' viewBox='0 100.625 1920 199.375' height='100%25' width='100%25' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-mbbu5gny-bottom %7B fill: %23FFFFFF; %7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath d='M1920 300V136.017c0-19.547-15.846-35.392-35.392-35.392h-713.155a68.497 68.497 0 0 0-51.925 23.825l-109.805 127.637a68.497 68.497 0 0 1-51.925 23.825H40.629C18.468 275.913.394 258.157 0 236v64h1920z'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat;
  background-size: cover;
  transform: scale(-1, 1);
  opacity: 1;
}
.wp-block-columns.requirementSection.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex {
  position: relative;
  padding: 0;
  margin: 0;
  direction: ltr;
  background: radial-gradient(
    circle at 15% 90%,
    #ccc3bb 10.1%,
    #8c8adb 24.2%,
    #ff5700 32.3%,
    #ccc3bb 54.3%
  );
  overflow: hidden;
  padding: 100px 0;
}
.requirementSection .wp-block-heading {
  font-size: 50px;
  line-height: 1.2;
}
.requirementSection p {
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 20px;
}
.wp-block-columns {
  margin-bottom: 0;
}
.homeBanner img {
  width: 100%;
}
.homeBanner h1.has-black-color {
  font-size: 58px;
  color: #fff !important;
  letter-spacing: 1px;
}
.successSection {
  padding: 58px 0 0;
  text-align: center;
}
.successSection h2.wp-block-heading {
  font-family: 'Futura LT Regular';
  margin-bottom: 30px;
  font-weight: 900;
}
.successSection p {
  font-size: 18px;
  line-height: 30px;
}
.successSection h2 span {
  color: #d12412;
}
.successSection .wp-block-button {
  margin: 0 auto !important;
}
.successNext {
  padding: 50px 0;
}
.successNext .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
  text-align: center;
  margin-bottom: 35px;
}
.successNext figure.wp-block-image.size-full img {
  text-align: center;
  margin: 0 auto;
}
.successNext h2.wp-block-heading {
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 50%;
  margin: 10px auto;
}
.successNext p {
  padding: 0 15%;
  font-size: 16px;
  line-height: 22px;
}
.innerSecondSection {
  background: #000;
}
.innerSecondSection h2.wp-block-heading {
  font-size: 54px;
  color: #fff;
  font-family: sans-serif;
  line-height: 46px;
  font-weight: 600;
  padding: 15% 20px 30px;
}
.innerSecondSection p {
  font-size: 33px;
  color: #fff !important;
  width: 100%;
  text-align: left;
  line-height: 24px;
  font-weight: 400;
  padding: 0px 15% 0 20px;
}
.innerSecondSection p {
  font-size: 34px;
  color: #fff !important;
  width: 95%;
  text-align: left;
  line-height: 40px;
  font-weight: 400;
  padding: 0px 44px 0 20px;
  letter-spacing: 1px;
}
.innerSecondSection
  .wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
  padding-top: 20px;
  padding-left: 20px;
}
.wp-block-column.roadmapSection.is-layout-flow.wp-block-column-is-layout-flow {
  padding: 60px 0;
  background: #f2f2f2;
}
.roadmapSection h2.wp-block-heading.has-text-align-center {
  font-size: 40px;
  font-weight: bold;
  width: 80%;
  margin: 0 auto;
}
img.wp-image-432 {
  margin: 0 auto;
}
.roadmapSection h2 span {
  font-size: 100px;
  font-weight: bolder;
  color: #8f1313;
  line-height: 100px;
}
.roadmapSection .wp-block-gallery {
  width: 75%;
  margin: 30px auto;
}
.roadmapSection
  .wp-block-gallery.has-nested-images.is-cropped
  figure.wp-block-image:not(#individual-image)
  img {
  flex: 1 0 0%;
  height: 50px;
  object-fit: contain;
  width: 177px;
  border-right: 2px solid #000;
  border-radius: 0;
  padding-right: 20px;
}
.roadmapSection .wp-image-434 {
  border-right: 0 !important;
}
.thinkBeyondSection h3 {
  line-height: 70px;
  color: #fff;
  max-width: 100%;
}
.thinkBeyondSection img {
  width: 100%;
}
.thinkSpan {
  background: #fff;
  color: #8f1313;
}
.thinkBeyondSection marquee {
  position: absolute;
  bottom: 0;
  font-size: 100px;
  font-weight: 900;
  color: #c93a18;
  font-family: "Lato", san-serif;
}
.thinkBeyondSection
  .homelastSection
  .wp-block-columns.container.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex {
  top: 40%;
}
.techDrivenSection h2 {
  font-size: 40px;
  font-weight: 100;
  font-family: "Futura LT Regular" !important;
}
.techDrivenSection {
  padding: 60px 0;
}
.techDrivenSection p {
  font-size: 20px;
  color: #fff !important;
  padding-right: 0;
  text-align: justify;
  width: 63%;
  font-weight: 100;
  padding-bottom: 20px;
}
.productListRight p {
  color: #fff !important;
  font-size: 52px;
  width: 90%;
  font-weight: 300;
  font-family: "Lato";
  line-height: 60px;
  padding: 60px 70px;
  letter-spacing: 1px;
}
.guideSection .wp-block-column.productListRight {
  background: rgba(4, 81, 132, 0.85);
}
.wp-block-column.productListRight {
  background: #0057e1;
  padding-left: 50px;
}
.productListLeft h3.wp-block-heading {
  width: 64%;
  letter-spacing: 7px;
  font-size: 30px;
  margin: 0;
}
.wp-block-columns.sourcingHub {
  gap: 0;
}
.sourcingHub .productListLeft {
  padding: 5% 70px 8% 80px !important;
}
.productListLeft h2.wp-block-heading {
  font-size: 54px;
  font-weight: bolder;
  line-height: 60px;
}
.productListLeft h3.wp-block-heading {
  width: 60%;
  letter-spacing: 7px;
  font-size: 30px;
  margin: 0;
}
.productListLeft p {
  font-size: 26px;
  line-height: 32px;
  margin-top: 20px !important;
}
.productListLeft h2.wp-block-heading span {
  color: #c93a18;
}
.guideSection .productListRight p {
    width: 75%;
    font-weight: 500;
    margin: 0 auto !important;
    margin-right: 40px !important;
}
.guideSection .productListRight p span {
  color: #000;
}
.guideSection .productListLeft p {
  font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
}
/*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 {
  line-height: 54px;
  color: #fff;
  letter-spacing: 0;
  padding-right: 20px;
  margin-bottom: 25px;
font-size: 48px !important;
}
div#content .deliverySection p {
  font-size: 20px;
  color: #fff;
  padding-right: 30px;
  line-height: 28px;
}
.deliverySection
  .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:last-child {
  position: relative;
  padding: 3% 30px;
}.deliverySection
  .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:last-child h4.wp-block-heading {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid #fff;
    width: max-content;
}.economicLeft a.wp-block-button__link.wp-element-button {
    background-color: #000 !important;
    color: #fff !important;
}.economicLeft h4.wp-block-heading {
    width: max-content;
    border-bottom: 1px solid #000;
font-size: 20px;
    font-weight: 600;
}
.deliverySection a.wp-block-button__link.wp-element-button {
  background: #000;
  color: #fff;
}
.economicSection h2.wp-block-heading {
  line-height: 54px;
  color: #000;
  letter-spacing: 0;
  padding-right: 20px;
  margin-bottom: 25px;
}
div#content .economicSection p {
  font-size: 20px;
  padding-right: 30px;
  line-height: 28px;
}
.economicSection {
  background: #f1f1f1;
}
.economicLeft {
  max-width: 50%;
  padding: 50px 5%;
}
.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%;
  left: 50px;
}
.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;
}

.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 h4.wp-block-heading:after {
    content: "";
    width: 80px;
    height: 2px;
    background: #959292;
    position: absolute;
    left: 50px;
    bottom: -5px;
    /* right: auto; */
}.wp-block-column.supportInformation{
    margin: 20px 0;
}
.allServices h4.wp-block-heading {
  font-size: 20px;position: relative;
  font-family: "Lato";
  font-weight: 600;
  padding: 40px 50px 1px;
  color: #959292;
  text-transform: capitalize;
}
.allServices h2.wp-block-heading {
  font-size: 46px;
  font-weight: 600;
  padding: 0px 50px 20px;
  margin-top: 20px;
  line-height: 60px;
  text-transform: capitalize;
}
.allServices p {
  font-size: 16px;
  font-family: "Lato";
  padding: 0 50px;
  line-height: 24px;
  color: #000;
  text-align: justify;
}
.innerbannerScetion img {
  width: 100%;
}
.allServices a.wp-block-button__link.wp-element-button {
  background: #0057e1;
  color: #fff;
  border-radius: 0;
  padding: 10px 40px;
  font-size: 16px;
  margin-left: 22px;
}
.allServices a.wp-block-button__link.wp-element-button:hover {
  background: #993500;
}
.allServices {
  margin: 25px 0;
}
.innerBannerPosition .serviceBanerHeading {
  font-size: 56px;
  line-height: 56px;
  color: #fff !important;
  letter-spacing: 3px;
  text-transform: capitalize;
}
.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;
background: #000;
}
.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: #000;
}
.contentSection.w-100 {
  padding-right: 100px;
  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;
}
/* new css */
.allServices.whyUae h2.wp-block-heading.expansion_rader {
  width: 65%;
  margin: 30px auto;
  font-size: 52px;
  padding: 0;
}
.allServices.whyUae h2.wp-block-heading {
    font-size: 40px;
    font-weight: 600;
    padding: 0px 10% 20px 50px;
    margin-top: 10px;
    line-height: 40px;
    text-transform: capitalize;
}
.allServices.whyUae p {
  font-size: 18px;
  font-family: "Lato";
  padding: 0 15% 0 50px;
  line-height: 28px;
  color: #000;
  text-align: justify;
}.missionVision .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 50px;
    /* text-align: justify; */
}.missionVision h3.wp-block-heading {
    font-size: 20px;
    margin: 10px 0;
    font-weight: 600;
    color: #d32121;
}.missionVision p{
font-size: 16px;
line-height:24px;
}.missionVision img {
    width: 120px;
    margin: 0 auto;
}
.allServices.whyUae img.wp-image-491,
.allServices.whyUae img.wp-image-489 {
  max-width: 100%;
  height: 85vh;
  object-fit: cover;
  object-position: 75% 0%;
}
.industryThrive .productListRight p {
  font-size: 32px;
  line-height: 40px;
  padding: 60px 50px;
}
.blogBox {
  margin-bottom: 20px;
}
.blogBox h2 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 15px 0;
  margin-bottom: 0;
  text-transform: capitalize;
}
.blogBox p {
  font-size: 20px;
  line-height: 28px;
  padding-right: 20px;
}
.blogBox p a {
  color: #ff0000;
  font-weight: 500;
  letter-spacing: 1px;
}
h1.blogHeading {
  font-size: 70px;
  font-weight: bolder;
  padding-top: 60px;
}
.blogBox h5 {
  font-size: 20px;
  font-weight: 500;
}
.singlepageBanner {
  position: relative;
  max-width: 100%;
}
.singlepageBanner img {
  max-width: 100%;
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: center;
}
.SingleBannerContent {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translate(0, -50%);
  text-align: center;
  /* background: #000; */
}
.bannerBox {
  background: #000;
  padding: 30px 10px;
  /* color: #fff; */
  width: 80%;
  margin: 0 auto;
}
.bannerBox > h1 {
  color: #fff;
  font-size: 56px;
  line-height: 70px;
  font-family: "Futura LT Regular";
  letter-spacing: 2px;
  text-transform: capitalize;
}
.bannerBox h2 {
  font-size: 36px;
  line-height: 44px;
  color: #fff;
}
.singlePageContent {
  padding: 80px 0 40px;
}
.singlePageContent div#secondary {
  max-width: 100%;
  width: 100%;
  float: unset;
}
button.wp-block-search__button.wp-element-button {
  position: absolute;
  right: 0;
  height: 100%;
  background-color: #000;
  color: #fff;
  padding: 0 15px;
}
label.wp-block-search__label {
  display: none;
}
.wp-block-search__inside-wrapper {
  position: relative;
}
input#wp-block-search__input-1 {
  background: unset;
  box-shadow: unset;
  border: 1px solid #ccc;
}
.widget h2.wp-block-heading {
  font-size: 24px;
  color: #d12412;
  font-weight: bold;
}
.widget ul.wp-block-latest-posts__list.wp-block-latest-posts {
  margin-top: 10px;
}
.widget a.wp-block-latest-posts__post-title {
  line-height: 30px;
  outline: 0;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 400;
}
ol.wp-block-latest-comments {
  margin-top: 10px;
}
.widget h2.wp-block-heading {
  font-size: 24px;
  color: #d12412;
  font-weight: bold;
}
article footer.wp-block-latest-comments__comment-meta {
  border: 0;
  color: #000;
  font-size: 18px;
  line-height: 24px;
}
.widget article footer.wp-block-latest-comments__comment-meta a {
  color: #000;
  font-size: 18px;
  outline: 0;
  font-weight: 400;
}
.widget ul.wp-block-latest-posts__list.wp-block-latest-posts {
  margin-top: 10px;
}
.singlePageContent div#secondary .widget a.wp-block-latest-posts__post-title {
  line-height: 30px;
  outline: 0;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 400;
}
.widget-area .widget {
  margin-bottom: 20px;
}
input#submit {
  background-color: #000 !important;
  color: #fff;
  font-size: 16px;
  font-family: "Futura LT Regular";
  font-weight: 400;
  letter-spacing: 1px;
}
input#submit:hover {
  background-color: #d12412 !important;
}
.comment-respond input {
  background-color: unset !important;
  border: 1px solid #000 !important;
  border-radius: 5px;
  margin-bottom: 15px;
}
p.comment-form-comment textarea {
  height: 100px;
  background: unset;
  border: 1px solid #000;
  border-radius: 5px;
  margin-bottom: 15px;
}
footer .social-media i.bi {
  filter: gray;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
footer .social-media i.bi:hover {
  filter: none;
  -webkit-filter: grayscale(0);
}
footer .social-media .bi-facebook:hover {
  color: #3b5998;
}
footer .social-media .bi-twitter-x:hover {
  color: #1da1f2;
}
footer .social-media .bi-whatsapp:hover {
  color: #25d366;
}
footer .social-media .bi-linkedin:hover {
  color: #0077b5;
}
@media (max-width: 1300px) {
  .allServices.whyUae img.wp-image-491, .allServices.whyUae img.wp-image-489 {
    max-width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: 75%;
  }
}
@media (max-width: 1199px) {
  .homelastSection .wp-block-columns.container {
    max-width: 100%;
  }
  .innerSecondSection h2.wp-block-heading {
    font-size: 48px;
    line-height: 42px;
    padding: 15% 20px 15px;
  }
  .innerSecondSection p {
    font-size: 32px;
    width: 100%;
    line-height: 36px;
    padding: 0px 35px 0 20px;
  }
  .innerBannerPosition .serviceBanerHeading {
    font-size: 50px;
    line-height: 54px;
  }
  .thinkBeyondSection h3 {
    line-height: 66px;
    color: #fff;
    max-width: 100%;
    font-size: 56px !important;
  }
  .thinkBeyondSection marquee {
    position: absolute;
    bottom: 0;
    font-size: 75px;
  }
  .productListRight p {
    color: #fff !important;
    font-size: 50px;
    width: 100%;
    font-weight: 300;
    font-family: "Lato";
    line-height: 56px;
    padding: 60px 70px;
    letter-spacing: 1px;
  }
.guideSection .productListRight p {
    width: 100%;
}
}
@media (max-width: 1160px) {
  .deliverySection h2.wp-block-heading {
     font-size: 44px !important;
     line-height: 44px;
  }.deliverySection .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow:last-child {
    padding: 3% 30px;
}.economicSection h2.wp-block-heading {
    line-height: 48px;
    font-size: 44px !important;
}.allServices.whyUae h2.wp-block-heading {
    font-size: 44px;
    font-weight: 600;
    padding: 20px 15% 20px 50px;
    line-height: 48px;
}    .allServices.whyUae img.wp-image-491, .allServices.whyUae img.wp-image-489 {
        height: 450px;
    }
.wp-block-columns.requirementSection.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex::after {

    width: 1550px;
}.homelastSection h2.wp-block-heading {
    font-size: 96px;
}
  h1.blogHeading {
    font-size: 64px;
  }
  .blogBox h2 {
    font-size: 38px;
  }
}
@media (max-width: 1024px) {
  .innerBannerPosition {
    top: 40%;
  }
  .homeBanner h1.has-black-color {
    font-size: 46px;
    color: #fff !important;
    letter-spacing: 1px;
  }
  .homeBanner {
    padding-bottom: 0;
  }
  .wp-block-columns.requirementSection.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex::after {
    width: 1443px;
  }
  .requirementSection p {
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 20px;
  }
  .requirementSection .wp-block-heading {
    font-size: 46px;
    line-height: 1;
  }
  .wp-block-columns.requirementSection.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex {
    padding: 80px 0;
  }
  .successSection > h2.wp-block-heading {
    font-size: 58px !important;
  }
  .successNext p {
    padding: 0 0%;
  }
  .successNext h2.wp-block-heading {
    width: 80%;
  }
  .innerSecondSection h2.wp-block-heading {
    font-size: 44px;
    line-height: 42px;
    padding: 11% 0px 15px 20px;
  }
  .innerSecondSection p {
    font-size: 28px;
    width: 100%;
    line-height: 32px;
    padding: 0px 0 0 20px;
  }
  .roadmapSection h2.wp-block-heading.has-text-align-center {
    font-size: 36px;
    font-weight: bold;
    width: 80%;
    margin: 0 auto;
  }
  .roadmapSection h2 span {
    font-size: 70px;
    line-height: 65px;
  }
  .thinkBeyondSection h3 {
    line-height: 50px;
    font-size: 50px !important;
  }
  .thinkBeyondSection marquee {
    bottom: -10px;
    font-size: 50px;
  }
  .productListLeft h2.wp-block-heading {
    font-size: 50px;
    font-weight: bolder;
    line-height: 50px;
  }
  .productListLeft h3.wp-block-heading {
    width: 70%;
    letter-spacing: 7px;
    font-size: 26px;
    margin: 0;
  }
  .sourcingHub .productListLeft {
    padding: 8% 30px 8% 50px !important;
  }
  .productListRight p {
    color: #fff !important;
    font-size: 44px;
    width: 100%;
    font-weight: 300;
    font-family: "Lato";
    line-height: 50px;
    padding: 60px 10px;
    letter-spacing: 1px;
  }
  .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 50px 0px;
    line-height: 36px;
    margin: 0;
  }
  .allServices p {
    font-size: 16px;
    line-height: 20px;
  }
  .blogBox h2 {
    font-size: 36px;
  }
  .innerBannerPosition .serviceBanerHeading {
    font-size: 44px;
    line-height: 44px;
  }
  h1.blogHeading {
    font-size: 60px;
  }
  .allServices h4.wp-block-heading {
    font-size: 22px;
    padding: 20px 50px 1px;
  }
}
@media (max-width: 992px) {
.innerSecondSection .wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
    margin-top: 0;
}    .innerSecondSection p {
        font-size: 26px;
        line-height: 30px;
    }    .innerSecondSection h2.wp-block-heading {
        font-size: 36px;
        line-height: 40px;
    }    .roadmapSection h2 span {
        display: inline-block;
    }    .thinkBeyondSection h3 {
        line-height: 46px;
        font-size: 44px !important;
    }.productListLeft h2.wp-block-heading {
        font-size: 48px;
    }
.guideSection .productListRight p {
    width: 91%;}
}
@media (max-width: 781px) {
  .homeBanner h1.has-black-color {
    font-size: 40px;
  }.contentSection.w-100 {
    padding-right: 0;
    text-align: justify;
}
  .innerBannerPosition {
    position: unset;
    top: 50%;
    transform: translateY(0%);
    width: 100%;
    left: 0;
    margin: 0 auto;
    display: inline-table !important;
  }
  .homeBanner img {
    width: 100%;
    height: 60vh !important;
    object-fit: cover;
    object-position: 100% 100%;
  }
  .wp-block-columns.requirementSection.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex::after {
    display: none;
  }
  .successSection h2.wp-block-heading {
    margin-bottom: 30px;
    font-size: 50px !important;
  }
  .successNext h2.wp-block-heading {
    width: 80%;
    font-size: 18px !important;
  }
  .techDrivenSection p {
    font-size: 18px;
    width: 100%;
  }
  .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: 90%;
    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;
  }
  .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: 5px 30px 15px;
  }.allServices h4.wp-block-heading {
        padding: 20px 30px 1px;
    }.allServices a.wp-block-button__link.wp-element-button {
    margin-left: 0;
}
  .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;
  }
  h1.blogHeading {
    font-size: 56px;
  }
  .productListLeft h2.wp-block-heading {
    font-size: 40px;
    line-height: 46px;
  }
  .productListLeft p {
    font-size: 24px;
    line-height: 30px;
  }
  .productListLeft h3.wp-block-heading {
    font-size: 26px;
    letter-spacing: 5px;
  }
  .techDrivenSection h2 {
    font-size: 36px;
  }
.allServices.whyUae h2.wp-block-heading {
    font-size: 40px;
    padding: 20px 10% 20px 30px;
    line-height: 50px;
}.allServices.whyUae p {
    font-size: 18px;
    padding: 0 10% 0 30px;
    line-height: 24px;
}
.economicLeft {
    max-width: 100%;
}.allServices.whyUae h2.wp-block-heading.expansion_rader {
    width: 85%;
    margin: 30px auto;
    font-size: 44px;
    padding: 0;
}
}
@media (max-width: 575px) {
  .col-md-6.col-sm-6.nopadding {
    margin-top: 30px;
  }
  .blogBox h2 {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .successSection h2.wp-block-heading {
    font-size: 46px !important;
  }
  .successSection p {
    font-size: 18px;
    line-height: 24px;
  }
  .successNext {
    padding: 30px 0 0;
  }
  .successNext .wp-block-column.is-layout-flow.wp-block-column-is-layout-flow {
    text-align: center;
    margin-bottom: 10px;
  }
  .roadmapSection h2.wp-block-heading.has-text-align-center {
    font-size: 34px;
  }
  .roadmapSection h2 span {
    font-size: 56px;
    line-height: 60px;
  }
  .thinkBeyondSection h3 {
    line-height: 40px;
    font-size: 40px !important;
  }
  .successNext h2.wp-block-heading {
    font-size: 20px !important;
margin-bottom:15px;
  }
  .homelastSection
    .wp-block-columns.container.is-layout-flex.wp-container-core-columns-is-layout-28f84493.wp-block-columns-is-layout-flex {
    width: 100%;
    padding: 0 20px;
    left: 0;
  }
  a.wp-block-button__link {
    font-size: 16px;
  }
  .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;
  }
  .innerBannerPosition .serviceBanerHeading {
    font-size: 40px;
    line-height: 45px;
  }

  .allServices h4.wp-block-heading {
    font-size: 20px;
padding: 20px 30px 1px;
  }
.allServices a.wp-block-button__link.wp-element-button {
    margin-left: 0;
}

  .allServices h2.wp-block-heading {
    font-size: 32px;
    line-height: 40px;
  }
  .economicLeft {
    max-width: 100%;
    padding: 50px 5%;
  }
  .economicSection h2.wp-block-heading {
    line-height: 36px;
    font-size: 30px !important;
  }
  div#content .economicSection p {
    font-size: 18px;
    padding-right: 30px;
    line-height: 24px;
  }
  .allServices.whyUae h2.wp-block-heading.expansion_rader {
    width: 90%;
    font-size: 38px;
    padding: 0;
    line-height: 44px;
  }
  .allServices.whyUae h2.wp-block-heading {
    font-size: 34px;
    line-height: 42px;
  }
  .allServices.whyUae img.wp-image-491,
  .allServices.whyUae img.wp-image-489 {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  .wp-block-column.productListRight {
    background: #0057e1;
    padding-left: 0px;
  }
  .contentSection.w-100 {
    padding: 0 10px;
  }    .allServices.whyUae p {
        font-size: 16px;
        padding: 0 10% 0 30px;
        line-height: 22px;
    }
  .blogBox h2 {
    font-size: 30px;
  }
  .blogBox p {
    font-size: 18px;
    line-height: 24px;
    padding-right: 20px;
  }
  .blogBox h5 {
    font-size: 18px;
    font-weight: 500;
  }
  h1.blogHeading {
    font-size: 48px;
  }
  .productListLeft h2.wp-block-heading {
    font-size: 36px;
    line-height: 40px;
  }
  .productListLeft h3.wp-block-heading {
    font-size: 22px;
  }
  .productListLeft p {
    font-size: 22px;
    line-height: 28px;
  }
  .techDrivenSection h2 {
    font-size: 32px;
  }
}

.sitename {
  color: #d12412 !important;
}
