* {
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #104e80;
  --black: #000;
  --white: #fff;
  --btnprimary: #104f81;
}

@font-face {
  font-family: "Blinker";
  src: url("../fonts/blinker/Blinker-Regular.woff") format("woff");
}
@font-face {
  font-family: "BlinkerSemiBold";
  src: url("../fonts/blinker/Blinker-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "BlinkerLight";
  src: url("../fonts/blinker/Blinker-Light.woff") format("woff");
}
@font-face {
  font-family: "BlinkerBold";
  src: url("../fonts/blinker/Blinker-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "BlinkerExtraBold";
  src: url("../fonts/blinker/Blinker-ExtraBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "RobotoLight";
  src: url("../fonts/roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
}

body {
  font-family: "RobotoLight", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  margin-top: 80px;
}

.ingredient-focus-select option[disabled][selected] {
  color: #999; /* Light gray or any custom color */
}

/* Optional: Make sure selected regular options are normal color */
.ingredient-focus-select option:not([disabled]) {
  color: #000; /* Regular text color */
}

.ingredient-focus-select {
  color: #999; /* Initial placeholder color */
}

.blinker {
  font-family: "Blinker", "Segoe UI", sans-serif;
}

.blinkerBold {
  font-family: BlinkerBold;
}

.blinkerSemiBold {
  font-family: BlinkerSemiBold;
}

.text--primary {
  color: var(--primary-color);
}
.bg--primary {
  background-color: var(--primary-color);
}

/* custom */
.link--nav > a {
    color: #000;
    text-decoration: none;
}
.ul--list > li {
  color: #000000;
  font-size: 20px;
  display: flex;
  align-items: baseline;
}

.ul--list {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-left: 4px;
}

.ul--list > li:not(:last-child) {
  margin-bottom: 15px;
}

.ul--list > li > .spec--box {
  width: 14px;
  height: 14px;
  background: #000;
  display: inline-block;
  margin-right: 15px;
}
.ul--list > li > .spec--value {
  flex: 1;
}
.roboto--head {
  font-family: "Roboto";
  font-weight: 600;
  font-size: 28px;
}

.dual--btn {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.custom--btn {
  border-radius: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 20px;
  transition: 0.3s;
  font-family: "Blinker";
  font-size: 18px;
}
.custom--btn:hover {
  background: #104e80;
}
.custom--btn--outline {
  background: transparent;
  color: var(--primary-color);
}
.heading--with--content {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.big--btn {
  max-width: 290px;
  width: 100%;
}

.outline--btn {
  background: transparent;
  color: var(--primary-color);
}

.mw-auto {
  max-width: fit-content;
}
.max-w-575 {
  max-width: 575px;
}
.max-w-600 {
  max-width: 600px;
}
.max-w-700 {
  max-width: 700px;
}
.max-w-1000 {
  max-width: 1000px;
}
.max-w-1200 {
  max-width: 1200px;
}
/* custom end */
.text--secondary {
  font-size: clamp(16px, 2vw, 20px);
}

/* custom font */
strong {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 600;
}
.heading--h1 {
  font-size: clamp(28px, 5vw, 55px);
}
.heading--h2 {
  font-size: clamp(25px, 4vw, 45px);
  line-height: 1;
}
.heading--h3 {
  font-size: clamp(24px, 3vw, 45px);
}
.heading--h4 {
  font-size: clamp(20px, 2vw, 28px);
}
/* custom font end */

/* header */

.main--header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px 0px #0000001a;
  background: #f6f6f6 !important;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.main--logo > img {
  width: 65px;
}

.main--menu ul {
  gap: clamp(10px, 2vw, 25px);
}

.main--header > .navbar {
    padding: 0px !important;
}

.main--menu ul li > a {
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: "BlinkerSemiBold";
  font-size: 17px;
  min-height: 80px;
  display: flex;
  align-items: center;
}

.main--menu > ul.navbar-nav > li.nav-item > a.nav-link:hover {
    color: #000 !important;
}

.main--menu > ul.navbar-nav > li.nav-item > a.nav-link {
    color: var(--primary-color) !important;
}

.main--menu > .right--header > .custom--btn {
  min-height: 30px;
  padding: 5px 10px;
  font-size: 17px;
}

.main--banner--slide .owl-stage-outer > .owl-stage > .owl-item > .item {
  min-height: 665px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  background-position: center;
}

.main--banner--slide
  .owl-stage-outer
  > .owl-stage
  > .owl-item
  > .item
  .slide--content
  > .slide--head {
  color: var(--primary-color);
  line-height: 1;
}

.main--banner--slide
  .owl-stage-outer
  > .owl-stage
  > .owl-item
  > .item
  .slide--content {
  max-width: 636px;
  width: 100%;
}

.main--banner--slide
  .owl-stage-outer
  > .owl-stage
  > .owl-item
  > .item
  .slide--content
  > .slide--content--description {
  font-size: 18px;
}

.banner--slider {
  position: relative;
}

.banner--slider .owl-dots {
  position: absolute;
bottom: 9%;
    left: 8%;
}

.banner--slider .owl-dots > .owl-dot > span {
  width: 20px;
  height: 5px;
  margin: 0 2px;
}

.banner--slider .owl-dots > .owl-dot.active > span {
  width: 35px;
  background: var(--primary-color);
}

.main--header .navbar-toggler {
  padding: 7px;
}

.main--header .navbar-toggler > .navbar-toggler-icon {
  width: 22px;
  height: 22px;
  background-image: url("../images/menu-toggle.png");
}
.main--header .navbar-toggler.active--toggle > .navbar-toggler-icon {
  background-image: url("../images/menu-toggle-close.png");
}

/* header end */

/* heading mega menu */
img.nav--down {
    width: 15px;
    margin-left: 5px;
}

.mega--menu {
    position: absolute;
    top: 100%;
    width: 100%;
    background: #104e80;
    left: 0px;
    min-height: 590px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
   transform: translateY(50px);
   transition: 0.3s;
}

.main--menu ul li > a.active + .mega--menu {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    transform: translateY(0px);
}

.mega--menu > .container {
    padding: 30px 25px;
}

.mega--menu .mega--menu--heading {
    color: #fff;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}

.mega--menu .mega--menu--list {
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 33%;
    position: relative;
}

.mega--menu .mega--menu--list > li > a , .mega--menu .mega--menu--list > li {
    color: #fff;
}

.mega--menu .mega--menu--list > li, .mega--menu .mega--menu--list > li > .sub--menu--mega > ul > li, .dropdown--menu--menu > li {
    margin-top: 12px;
}

.mega--menu .sub--menu--mega {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: 0.3s;
    transform: translateX(-50px);
}

.mega--menu .sub--menu--mega > ul {
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.mega--menu .sub--menu--mega > ul > li > a, .mega--menu .mega--menu--list > li > a {
    color: #fff;
    text-transform: capitalize;
    font-family: "Blinker";
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
    border-bottom: solid 1px transparent;
    display: inline;
    min-height: auto;
}

.mega--menu .sub--menu--mega > ul > li > a:hover, .mega--menu .mega--menu--list > li > a:hover {
    opacity: 1;
    border-bottom: solid 1px #ffffff;
}

.dropdown--menu--menu > li > a.active {
border-bottom: solid 1px #ffffff !important;
    opacity: 1 !important;
}

.mega--menu .sub--menu--mega > ul > li > a > span, .mega--menu .mega--menu--list > li > a > span {
    margin-right: 0;
}

.mega--menu .sub--menu--mega > ul > li > a > img, .mega--menu .mega--menu--list > li > a > img {
    filter: brightness(0) invert(1);
}

.dropdown--menu--menu > li > a.active + .sub--menu--mega {
    visibility: visible;
    opacity: 1;
    z-index: 1;
    transform: translateX(0px);
}
.back--menu, .destop--hiden--menu {
	display: none;
}

/* heading mega menu end */

.redefining--ingredient {
  padding: 90px 0px;
  position: relative;
  padding-bottom: 0;
  margin-bottom: -250px;
}

.bg--image {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  z-index: -1;
  height: 90%;
  object-fit: cover;
  object-position: top;
}

.ingredient--box {
  display: flex;
  padding: 0px 50px;
  padding-left: 100px;
  gap: 15px;
  padding-top: 80px;
}

.ingredient--box > .ingredient--item {
  max-width: 460px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 50px;
  height: fit-content;
}

.ingredient--box > .ingredient--item:nth-child(2) {
  position: relative;
  top: 50px;
}

.ingredient--box > .ingredient--item:nth-child(3) {
  position: relative;
  top: -300px;
}

.ingredient--box > .ingredient--item:nth-child(2) > .ingredient--image > img {
  min-height: 335px;
}

.ingredient--box > .ingredient--item:nth-child(3) > .ingredient--image > img {
  min-height: 590px;
}

.ingredient--box > .ingredient--item > .ingredient--image {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}

.ingredient--box
  > .ingredient--item
  > .ingredient--image
  > .ingredient--heading {
  position: absolute;
  bottom: 4%;
  z-index: 1;
  color: var(--white);
  left: 10%;
  width: 100%;
  max-width: 54%;
}

.ingredient--box > .ingredient--item > .ingredient--image > img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.ingredient--box > .ingredient--item:nth-child(1) > .ingredient--image > img {
  min-height: 260px;
}

.ingredient--box > .ingredient--item > .ingredient--image:before {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}

.ingredient--box
  > .ingredient--item
  > .ingredient--image
  > .ingredient--heading
  > h3 {
  font-size: clamp(22px, 3vw, 35px);
  line-height: 1;
  text-shadow: 2px 2px #00000080;
}

.ingredient--box > .ingredient--item > .ingredient--content {
  padding: 15px 40px;
}

/* // ingredients */

.ingredients--container {
  background: var(--white);
  padding-top: 150px;
  padding-bottom: 100px;
}

.ingredient-tabs--container {
  padding-top: 50px;
}
.ingredient-tabs--container .ingredient-tabs {
  max-width: 395px;
  width: 100%;
}

.ingredient-tabs--container .ingredient-tabs > .nav-link {
  background: #fff;
  color: #000000;
  font-family: "Blinker", "Segoe UI", sans-serif;
  font-weight: 400;
  min-height: 70px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ingredient-tabs--container .ingredient-tabs > .nav-link.active {
  background: #edffe9;
}

.ingredient-tabs--container {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.ingredient-tabs--container > .tab-content {
  width: 100%;
}

.ingredient-tabs--container > .tab-content > .tab-pane > .tabs--image > img {
  width: 100%;
}

.ingredient-tabs--container > .tab-content > .tab-pane {
  border-radius: 50px;
  background: #f3f3f3;
  overflow: hidden;
}

.ingredient-tabs--container > .tab-content > .tab-pane.active {
  display: flex;
}

.ingredient-tabs--container > .tab-content > .tab-pane > .tabs--content {
  padding: 50px;
  width: 100%;
}

.ingredient-tabs--container > .tab-content > .tab-pane > .tabs--image {
  max-width: 400px;
  width: 100%;
}

.ingredient-tabs--container > .tab-content > .tab-pane > .tabs--content > h4 {
  margin-bottom: 20px;
}

.partnering--across--borders {
  background: #d8e3d3;
  padding: 90px 0px;
}

.beyond--ingredients {
  padding: 90px 0px;
}

.solution--card--container {
  padding-top: 100px;
}

.beyond--ingredients .solution--card {
  position: relative;
}

.beyond--ingredients .solution--card > img {
  position: absolute;
  bottom: 0;
  max-width: clamp(100px, 15vw, 220px);
  right: 0;
}

.beyond--ingredients .solution--card {
  background: #e3f2ff;
  border-radius: 20px;
  padding: 30px;
  min-height: 290px;
}

.solution--card--container
  > .solution--card--item:last-child
  > .solution--card {
  background: #d8e3d3;
}

.beyond--ingredients .solution--card > .solution--content {
  max-width: 64%;
  width: 100%;
}

.beyond--ingredients .solution--card > .solution--content > h3 {
  margin-bottom: 20px;
}

.beyond--ingredients .solution--card > .solution--content > p {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 20px;
}

/* animated box */
.banner--animation {
  position: relative;
  height: 65vh;

  display: flex;
  align-items: center;
  justify-content: end;
  background: #fff;
  padding-right: 100px;
}

.banner--animation > .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.banner--animation > .banner-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform-style: preserve-3d;
  transform: scale3d(0.4, 0.4, 1) translate3d(0, 0, 0);
}

.impact-card {
  position: relative;
  z-index: 1;
  background-color: #e6f0ec;
  max-width: 550px;
  margin: 2rem auto;
  padding: 50px;
  border-radius: 12px;
  transform: translateY(100px);
  transition: 0.3s ease;
  /* padding-bottom: 100px; */
}

.impact-card > .impact-card-header {
  margin-bottom: 20px;
}

.image--card--container {
  position: relative;
}

img.cup-partner {
  max-width: 200px;
  width: 100%;
  transform: translateY(-50px);
  opacity: 0;
}
/* animated box end */

/* ingredient img with box */
.ingredient--container {
  display: flex;
}

.ingredient--container > .ingredient--right {
  display: flex;
  flex: 1;
}

.ingredient--container > .ingredient--right > .ingredient--img {
  width: 100%;
  margin-right: -150px;
  padding-left: 100px;
  flex: 1;
}
.ingredient--container > .ingredient--right > .ingredient--img > img {
  max-width: 85%;
  margin: 0 auto;
  padding-top: 50px;
}
.ingredient--container .ingredient--item--box h3 {
  color: var(--primary-color);
  font-family: "BlinkerSemiBold";
  font-size: clamp(18px, 2vw, 32px);
}
.ingredient--img--mobile {
  display: none;
}

.ingredient--container .ingredient--item--box > p {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.ingredient--container .ingredient--item--box > a {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: "Blinker";
}

.ingredient--container
  .ingredient--left
  > .ingredient--item--box:not(:last-child),
.ingredient--container
  .ingredient--right
  > .without--items
  > .ingredient--item--box:not(:last-child) {
  margin-bottom: 30px;
}

.ingredient--container .ingredient--item--box {
  width: 100%;
}

.ingredient--container > .ingredient--left {
  max-width: 340px;
  padding-top: 100px;
}

.ingredient--container > .ingredient--right > .without--items {
  max-width: 395px;
  padding-top: 100px;
}
.image--hover {
  width: 100%;
  position: relative;
  transition: 0.3s;
}

.image--hover > .back--packing {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}

.image--hover:hover .back--packing {
  opacity: 1;
}

.ingredient--img--mobile > .back--mobile--packaging {
  display: none;
}

.ingredient--img--mobile:hover .back--mobile--packaging {
  display: block;
}

.ingredient--img--mobile:hover .front--mobile--packaging {
  display: none;
}
/* ingredient img with box end */

.blog--section {
  padding-bottom: 100px;
}

.blog--section .custom-owl-nav > button {
  background: var(--primary-color);
  opacity: 1;
  width: 55px;
  aspect-ratio: 1 / 1;
  border-radius: 50px;
  position: relative;
  border: none;
  align-items: center;
  justify-content: center;
  display: flex;
}

.blog--section .custom-owl-nav {
  display: flex;
  gap: 10px;
  justify-content: end;
}

.blog--section .custom-owl-nav > button > .carousel-control-prev-icon,
.blog--section .custom-owl-nav > button > .carousel-control-next-icon {
  width: 23px;
}

.blog--section .blog-carousel {
  padding-top: 50px;
}
.blog--section .blog-carousel .blog-card > .blog--thum {
  border-radius: 30px;
  overflow: hidden;
  display: block;
}

.blog--section .blog-carousel .blog-card > .blog--thum > img {
  min-height: 340px;
  object-fit: cover;
  object-position: center;
}

.blog--section .blog-carousel .blog-card > .blog--content {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 20px 0px;
}

.blog--section .blog-carousel .blog-card > .blog--content > .comment--post {
  display: flex;
  align-items: center;
  gap: 3px;
  max-width: 35px;
  width: 100%;
  color: #bbbbbb;
  font-size: 14px;
  font-family: "Roboto", Arial, sans-serif;
}

.blog--section
  .blog-carousel
  .blog-card
  > .blog--content
  > .comment--post
  > img {
  width: 20px !important;
}

.blog--section .blog-carousel .blog-card > .blog--content > .left--content {
  width: 100%;
}

.blog--section
  .blog-carousel
  .blog-card
  > .blog--content
  > .left--content small {
  color: #bbbbbb;
  font-size: 14px;
  font-family: "Roboto", Arial, sans-serif;
}

.blog--section .blog-carousel .blog-card > .blog--content > .left--content small.tag--label {
    display: flex;
    background: #d8e3d3;
    border-radius: 50px;
    padding: 3px 10px;
    color: #000;
    font-family: 'BlinkerSemiBold';
}
.blog--section .blog-carousel .blog-card > .blog--content > .left--content .blog--tags {
    display: flex;
    gap: 2px;
    justify-content: space-between;
}

.blogs--grid > .blogs--card > .blog--content > .meta--blog .created--by > small {
    color: #bbbbbb;
    font-size: 14px;
    font-family: "Roboto", Arial, sans-serif;
}

.blogs--grid > .blogs--card > .blog--content > .meta--blog .created--by > small.tag--label {
    display: flex;
    background: #d8e3d3;
    border-radius: 50px;
    padding: 3px 10px;
    color: #000;
    font-family: 'BlinkerSemiBold';
}

.blogs--grid > .blogs--card > .blog--content > .meta--blog .created--by {
    display: flex;
    gap: 2px;
    justify-content: space-between;
    width: 100%;
}

.blog--section
  .blog-carousel
  .blog-card
  > .blog--content
  > .left--content
  > h5 {
  font-family: BlinkerSemiBold;
  font-size: 20px;
}

.blog--section .blog-carousel .blog-card > .blog--content > .left--content > a {
  color: #104f81;
  font-size: 16px;
  font-family: "Blinker", "Segoe UI", sans-serif;
}
.subscription--form {
  max-width: 1000px;
  margin: 0 auto;
}

.subscription--form input {
  min-height: 60px;
  padding: 10px 20px;
  border-radius: 10px;
}

.subscription--form button[type="submit"] {
  margin: 0 auto;
  /* max-width: 250px; */
  width: 100%;
  margin-top: 30px;
  min-height: 50px;
}

.subscription--form > p {
  margin-bottom: 30px;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.2;
}

/* footer */
.footer--col--container {
  display: flex;
}

.footer--col--container > .footer--social {
  width: 20%;
}

.footer--col--container > .footer--social {
  border-left: 1px solid #d4d4d4;
  padding: 0px 50px;
}

.footer--col--container > .footer--links {
  width: 45%;
  display: flex;
  padding: 0px 50px;
}

.footer--col--container > .footer--links > .footer--link {
  width: 100%;
}

.footer--col--container > .logo--footer {
  border-right: 1px solid #d4d4d4;
  display: flex;
  justify-content: center;
  padding: 15px;
  padding-right: 50px;
  flex-direction: column;
  width: 45%;
}

.footer--address {
  margin-top: 20px;
}

.footer--address > p {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #000;
  text-decoration: none;
  font-family: "Roboto", Arial, sans-serif;
}

.main--footer {
  padding: 50px 0px;
}

.footer--col--container > .footer--links > .footer--link > h5,
.footer--col--container > .footer--social > h5 {
  color: var(--primary-color);
  font-family: BlinkerSemiBold;
  font-size: 26px;
  padding-top: 20px;
}

.footer--col--container > .footer--links > .footer--link > ul {
  padding-left: 0;
  list-style: none;
  padding-top: 10px;
}

.footer--col--container > .footer--links > .footer--link > ul > li > a {
  color: #000;
  text-decoration: none;
  font-family: "Roboto", Arial, sans-serif;
}

.footer--col--container
  > .footer--links
  > .footer--link
  > ul
  > li:not(:last-child) {
  margin-bottom: 8px;
}

.footer--col--container > .footer--social > ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer--col--container > .footer--social > ul > li > a {
  display: block;
  line-height: normal;
}

.footer--col--container > .footer--social > ul > li > a > img {
  height: 35px;
}
/* footer end */

/* inner page */
.heading--section {
  padding: 90px 0px;
}
.sub--heading {
  font-family: BlinkerSemiBold;
  font-size: 18px;
}
.our--network {
  background: #e8eee6;
  padding: 90px 0px;
}

.our--partners {
  padding: 90px 0px;
}
/* inner page end */

/* pertnership */

.partner-carousel {
  padding-top: 50px;
}
.partner-carousel .owl-dots {
  margin-top: 50px !important;
}
.partner-carousel .owl-item > .item > img {
  max-width: 160px;
  width: 100%;
  height: 100px;
  object-fit: contain;
}

/* pertnership end */

.why--partnership--section {
  padding: 90px 0px !important;
  padding-top: 0px !important;
}

.why--partner--img {
  max-height: 550px;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}

/* inquery form modal */
.inquery--modal {
  backdrop-filter: blur(54px);
}
.inquery--modal > .modal-dialog > .container {
  max-width: 100%;
}
.inquery--modal > .modal-dialog > .container::-webkit-scrollbar {
  width: 0px;
}
.inquery--modal > .modal-dialog {
  width: 100%;
  max-width: 100%;
  margin: 0;
  height: 100%;
}
.inquery--modal .btn-close {
  right: 2%;
  position: absolute;
  top: 5%;
  color: #949494;
  opacity: 0.5;
  z-index: 9;
}

.modal.modal-static .modal-dialog {
  transform: none !important;
}
.inquery--modal .inquery--modal--left {
  color: white;
  padding-right: 100px;
}

.inquery--modal .inquery--modal--left .speciality--list > ul {
  padding: 0;
  list-style: none;
}

.inquery--modal
  .inquery--modal--left
  .speciality--list
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.inquery--modal .inquery--modal--left .speciality--list > ul > li {
  padding: 15px 0px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.inquery--modal .inquery--modal--left .speciality--list > ul > li:before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/star--icon.svg");
  display: block;
  background-repeat: no-repeat;
  background-position: center;
}

.inquery--modal .inquery--modal--left .speciality--list > ul > li > span {
  width: 100%;
}

.inquery--modal .inquery--modal--right > .inqury--modal--form {
  background: white;
  padding: 40px;
  border-radius: 40px;
  z-index: 1;
  position: relative;
}

.inquery--modal .inquery--modal--right > .inqury--modal--form > h3 {
  color: #949494;
  font-family: "Blinker";
  max-width: 270px;
  width: 100%;
  margin-bottom: 30px;
}

.inquery--modal .inquery--modal--right > .inqury--modal--form input,
.inquery--modal .inquery--modal--right > .inqury--modal--form select {
  border: 1px solid #949494;
  min-height: 50px;
  border-radius: 10px;
  padding: 5px 25px;
}

.inquery--modal .inquery--modal--right > .inqury--modal--form textarea {
  border: 1px solid #949494;
  border-radius: 10px;
  min-height: 100px;
  padding: 10px 25px;
}

.inquery--modal .inquery--modal--right > .inqury--modal--form textarea::placeholder {
    font-size: 16px;
}

.request--spec-sheet > .form--heading > h3 {
    color: #949494;
    font-family: "Blinker";
    max-width: 270px;
    width: 100%;
}

.request--spec-sheet > .form--heading {
    margin-bottom: 30px;
}

.request--spec-sheet > .form--heading {
    position: relative;
}

.inquery--modal .inquery--modal--right > .inqury--modal--form.request--spec-sheet {
  padding: 30px 40px;
}
.request--spec-sheet > .form--heading > button.btn-close {
  right: 0;
}

.upload--file--container {
    position: relative;
    height: 50px;
}

.upload--file--container > .form-control {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.upload--file--container > .upload--file {
    display: flex;
    align-items: center;
    border: 1px solid #949494;
    padding: 5px 15px;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    gap: 10px;
    justify-content: space-between;
}

.upload--file--container > .upload--file > img {
    width: 24px;
}

.upload--file--container > .upload--file > label {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.inquery--modal
  .inquery--modal--right
  > .inqury--modal--form
  button[type="submit"] {
  min-height: 50px;
  border-radius: 30px;
  background: var(--primary-color);
  font-family: "Blinker";
  border-color: var(--primary-color);
}

.inquery--modal .inquery--modal--right > .inqury--modal--form .text-muted {
  font-size: 12px;
  color: #949494;
}

.inquery--modal
  .inquery--modal--right
  > .inqury--modal--form
  input::placeholder,
.inquery--modal
  .inquery--modal--right
  > .inqury--modal--form
  textarea::placeholder {
  color: #949494;
  font-size: 14px;
}
.inquery--modal--left > .sub--heading {
  font-family: "Blinker";
  letter-spacing: 0.5px;
}
/* inquery form modal end */

/* about us */
.about--grid--images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
  grid-template-rows: 100px 100px 100px 100px 100px;
}

.about--grid--images > .about--grid--item:nth-child(1) {
  grid-row: 1 / 6;
  grid-column: 1 / 3;
}

.about--grid--item > img {
  object-fit: cover;
  transition: 0.3s;
  height: 100%;
}

.about--grid--item {
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.about--grid--item:hover img {
  transform: scale(1.09) !important;
  transition: 0.3s;
}

.about--grid--images > .about--grid--item:nth-child(4) {
  grid-column: 3 / 7;
  grid-row: 3 / 6;
}

.about--grid--images > .about--grid--item:nth-child(2),
.about--grid--images > .about--grid--item:nth-child(3) {
  grid-row: 1 / 3;
}

.about--grid--images > .about--grid--item:nth-child(2) {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
}

.about--grid--images > .about--grid--item:nth-child(3) {
  grid-column: 5 / 7;
  grid-row: 1 / 3;
}

.mission--container {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 100px;
}

section.contact--map {
    padding-bottom: 90px;
}

.mission--col {
  display: flex;
  gap: 0px;
  flex-wrap: nowrap;
  margin-top: 50px;
}

.mission--col > .mission--col--item {
  border-radius: 0px;
  overflow: hidden;
  width: 100%;
  min-height: clamp(400px, 32vw, 489px);
  position: relative;
  padding: clamp(20px, 3vw, 50px);
  display: flex;
  align-items: end;
  justify-content: end;
  transition: 0.3s;
}

.mission--col > .mission--col--item:hover {
  width: 200%;
}

.mission--col > .mission--col--item:hover .content--mission > h3 {
  transform: none;
  writing-mode: lr;
}

.mission--col > .mission--col--item:hover .content--mission > p {
  display: block;
}
.mission--col > .mission--col--item > img {
  position: absolute;
  top: 0px;
  height: 100%;
  left: 0px;
  object-fit: cover;
}

.mission--col > .mission--col--item > .content--mission {
  z-index: 2;
  position: relative;
  color: #fff;
  opacity: 0;
  transition: 0.3s;
  transform: translateY(50px);
}

.mission--col > .mission--col--item:before {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0px;
  z-index: 1;
}

.mission--col > .mission--col--item > .content--mission > h3 {
  font-family: "BlinkerSemiBold";
  font-size: clamp(26px, 4vw, 55px);
}

.mission--col > .mission--col--item > .content--mission > p {
  font-size: clamp(16px, 2vw, 22px);
}

.mission--col > .mission--col--item:hover > .content--mission {
  opacity: 1;
  transform: translateY(0px);
}

.mission--col > .mission--col--item:hover > .vertical--heading {
  opacity: 0;
  transition: 0.3s;
  visibility: hidden;
}

.vertical--heading {
  z-index: 2;
  position: absolute;
  right: 5%;
  bottom: 5%;
  visibility: visible;
}

.vertical--heading > h3 {
  transform: scaleX(-1) scaleY(-1);
  writing-mode: vertical-rl;
  color: #fff;
  font-family: "BlinkerSemiBold";
  font-size: clamp(26px, 4vw, 55px);
}

.values--container {
  padding-top: 100px;
  padding-bottom: 100px;
  /* background: rgba(244, 244, 244, 1); */
}

.values--col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 15px;
  padding-top: 50px;
}

/* .values--col > .values--col--item:nth-child(1) {
  grid-column: 1 / 3;
}

.values--col > .values--col--item:nth-child(2) {
  grid-column: 3 / 5;
}

.values--col > .values--col--item:nth-child(3) {
  grid-column: 5 / 7;
}

.values--col > .values--col--item:nth-child(4) {
  grid-column: 1 / 4;
}

.values--col > .values--col--item:nth-child(5) {
  grid-column: 4 / 7;
} */

.values--col > .values--col--item > img {
  max-width: 50px;
}

.values--col > .values--col--item {
  text-align: center;
}

.values--col > .values--col--item > .content--value {
  color: #000;
  padding-top: 30px;
}

.values--col > .values--col--item > .content--value > h3 {
  font-family: "BlinkerSemiBold";
  font-weight: 400;
  font-size: clamp(16px, 2vw, 28px);
}

.values--col > .values--col--item > .content--value > p {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 215px;
  margin: 0 auto;
  line-height: normal;
  margin-top: 15px;
}

.leadership--container {
  /* background: rgba(244, 244, 244, 1); */
  padding-top: 100px;
  padding-bottom: 100px;
}

.leadership--col {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 20px;
  margin-top: 30px;
}

.leadership--col .leadership--col--item {
  min-height: 500px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  padding: 40px;
  display: flex;
  align-items: end;
}

.leadership--col .leadership--col--item > img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0px;
  height: 100%;
    object-fit: cover;
    object-position: top;
}
.leadership--col .leadership--col--item:hover > img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.leadership--col .leadership--col--item > .content--value {
  z-index: 2;
  position: relative;
  color: #fff;
}

.leadership--col .leadership--col--item:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: 1;
}

.leadership--col
  .leadership--col--item
  > .info--container--leader
  > .content--value
  > h3 {
  font-family: "BlinkerSemiBold";
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 0px;
}
.leadership--col
  .leadership--col--item
  > .info--container--leader
  > .content--value
  > p {
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 0px;
}

.info--container--leader {
  z-index: 2;
  position: absolute;
  bottom: 0;
  transform: translateY(calc(100% - 130px));
  left: 0;
  padding: 20px;
  color: #fff;
  transition: 0.3s;
}
.info--container--leader .social--leadership {
    filter: brightness(0) invert(1);
}

.info--container--leader .social--leadership img {
    width: 30px;
}

.profile--link {
    width: 24px;
    display: block;
    margin-bottom: 5px;
}

.profile--link > img {
    filter: brightness(0) invert(1);
}

.info--container--leader > .info--leader {
  transition: 0.3s;
  z-index: 2;
  color: #fff;
  position: relative;
  opacity: 0;
}

.leadership--col .leadership--col--item:hover .info--container--leader {
  transform: translateY(0px);
}
.leadership--col
  .leadership--col--item:hover
  .info--container--leader
  > .info--leader {
  opacity: 1;
}
.leadership--col
  .leadership--col--item
  .info--container--leader
  > .info--leader
  > p {
  font-size: 16px;
  margin-top: 15px;
}
.leadership--col .leadership--col--item > img.show--hover {
  opacity: 0;
  transition: 0.3s;
}

.leadership--col .leadership--col--item:hover img.show--hover {
  opacity: 1;
  transition: 0.3s;
}
.leadership--col .leadership--col--item > .content--value {
  transform: translateY(120px);
  transition: 0.3s;
}

.leadership--col .leadership--col--item > .content--value > .info--leader > p {
  margin-bottom: 0px;
  font-size: 16px;
  margin-top: 10px;
  width: 100%;
}

.leadership--col .leadership--col--item:hover .content--value > .info--leader {
  transition: 0.3s;
  opacity: 1;
}

.leadership--col .leadership--col--item {
  transition: 0.3s;
}

.leadership--col .leadership--col--item > .content--value > .info--leader {
  transition: 0.3s;
  opacity: 0;
}

.leadership--col .leadership--col--item:hover .content--value {
  transform: translateY(0px);
  transition: 0.3s;
}

.right--button {
  max-width: 150px;
  width: 100%;
}

.sticky--container .sticky--img {
  position: absolute;
  top: -80px;
  right: 0;
  max-width: 189px;
  right: 5%;
}

.sticky--container {
  position: relative;
}

.sticky--container .sticky--img > img {
  width: 100%;
}

/* timeline horizontal */

.timeline-container {
  height: 100vh;
  overflow: hidden;
  position: relative;
  /* background-image:url(../../assets/images/about/timeline-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top; */
}
.timeline-container > .heading--with--content > .sub--heading {
  margin-top: 25px;
}

.timeline-wrapper {
  display: flex;
  padding-top: 50px;
}

.timeline-wrapper > .timeline-panel {
  display: flex;
  padding: 0;
  flex: 0 0 100vw;
  height: calc(100vh - 176px);
  justify-content: space-between;
}
.timeline-wrapper > .timeline-panel > .content > .heading--timeline {
  padding-left: 100px;
  font-size: 40px;
  font-family: "BlinkerSemiBold";
  color: var(--primary-color);
  margin-bottom: 30px;
  max-width: 400px;
  line-height: 1;
}
.timeline-wrapper
  > .timeline-panel.timeline--panel--2
  > .content
  > .heading--timeline {
  max-width: 500px;
}
.timeline-wrapper
  > .timeline-panel.timeline--panel--3
  > .content
  > .heading--timeline {
  max-width: 500px;
}

.timeline-wrapper > .timeline-panel > .content > .inner--content:after {
  content: "";
  width: 100vw;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0px;
  border-bottom: 1px solid var(--primary-color);
}

.timeline-wrapper > .timeline-panel > .content > .line {
  /* width: 300vw; */
  /* border-bottom: 1px solid; */
  /* border-color: rgb(16, 79, 129); */
  /* height: 315px; */
  /* position: relative; */
}

.timeline-wrapper > .timeline-panel > .year {
  font-size: clamp(100px, 13vw, 200px);
  font-weight: 400;
  color: #0b3c68;
  flex-shrink: 0;
  margin-right: 2rem;
  font-family: "Blinker";
}

.timeline-wrapper > .timeline-panel > .content {
  max-width: 50%;
  width: 50%;
  height: calc(100vh - 176px);
  display: flex;
  align-items: start;
  flex-direction: column;
  padding-top: 126px;
}

.timeline-wrapper > .timeline-panel > .content h3 {
  color: #00457c;
  margin-bottom: 1rem;
  font-size: clamp(35px, 4vw, 55px);
  font-family: "BlinkerSemiBold";
}

.timeline-wrapper > .timeline-panel > .content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.timeline-wrapper > .timeline-panel > .content strong {
  font-weight: bold;
}

.timeline-wrapper > .timeline-panel > .img {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  gap: 30px;
  grid-template-rows: 10px 50px 20px 50px 50px 100px 100px;
  z-index: 2;
  width: 75%;
  height: 100%;
}
.timeline-wrapper > .timeline-panel > .img > .timeline-1 {
  /* max-width: 100%; */
  width: 100%;
  object-fit: cover;
  grid-row: 1 / 9;
  height: calc(100% - 90px);
  /* object-position: top; */
  grid-column: 1 / 3;
}

.timeline-wrapper > .timeline-panel > .img > .timeline-2 {
  /* width: 100%; */
  /* object-fit: cover; */
  grid-row: 2 / 5;
  height: calc(100% - 18px);
  grid-column: 3 / 4;
  max-width: 241px;
  /* padding-top: 25px; */
  object-fit: cover;
}

.timeline-wrapper > .timeline-panel > .img > .timeline-3 {
  grid-row: 5 / 8;
  grid-column: auto;
  height: 100%;
  width: 100%;
  padding-top: 20px;
  object-fit: cover;
}

.timeline-wrapper > .timeline-panel > .content > .inner--content {
  padding-top: 40px;
  position: relative;
  padding-left: 100px;
  padding-right: 50px;
}
.timeline-wrapper > .timeline-panel > .content > .inner--content:before {
  content: "";
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  position: absolute;
  top: -15px;
  left: 100px;
  border-radius: 50px;
  border: 6px solid #fff;
  outline: 1px solid var(--primary-color);
  z-index: 1;
}

.timeline-panel-2 > .year,
.timeline-panel-3 > .year {
  opacity: 0;
}

.timeline-wrapper > .timeline-panel-2 > .content > .line > span,
.timeline-wrapper > .timeline-panel-3 > .content > .line > span {
  font-size: clamp(100px, 13vw, 200px);
  font-weight: 400;
  color: #0b3c68;
  font-family: "Blinker";
  line-height: normal;
  transform: translateX(-200px);
}

.timeline-wrapper > .timeline-panel-2 > .content > .line,
.timeline-wrapper > .timeline-panel-3 > .content > .line {
  display: flex;
  align-items: end;
}

.timeline-wrapper > .timeline-panel-2 > .img {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 50px 1fr;
  row-gap: 0;
}

.timeline-wrapper > .timeline-panel-2 > .img > .timeline-1 {
  grid-column: auto;
  grid-row: 1 / 4;
  height: calc(100% - 50px);
}

.timeline-wrapper > .timeline-panel-2 > .img > .timeline-4 {
  grid-column: auto;
  width: 100%;
  grid-row: 2 / 2;
}

.timeline-wrapper > .timeline-panel-2 {
  flex: 0 0 145vw;
}

.timeline-wrapper > .timeline-panel-2 > .year {
  font-size: 150px;
}

.timeline-wrapper > .timeline-panel-3 > .year {
  font-size: 40px;
}

.timeline-wrapper > .timeline-panel-3 > .content > .line > span {
  transform: translateX(0px);
}

.timeline-wrapper > .timeline-panel-3 > .content > .inner--content:before {
  left: 0;
}

.timeline-wrapper > .timeline-panel-3 > .content > .inner--content {
  padding-left: 0;
}

.timeline-wrapper > .timeline-panel-3 > .content {
  max-width: 1300px;
}

.timeline-wrapper > .timeline-panel-3 > .content > .line > span {
  transform: translateX(0px);
}

.timeline-wrapper > .timeline-panel-3 > .content > .inner--content:before {
  left: 0;
}

.timeline-wrapper > .timeline-panel-3 > .content > .inner--content {
  padding-left: 0;
}

.timeline-wrapper > .timeline-panel-3 > .content {
  max-width: 1300px;
}

.timeline-wrapper > .timeline-panel-3 {
  flex: 0 0 180vw;
}

.timeline-wrapper > .timeline-panel-3 > .img {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100px 400px 100px;
  row-gap: 0;
}

.timeline-wrapper > .timeline-panel-3 > .img > .timeline-1 {
  grid-column: auto;
  grid-row: 1 / 4;
  height: 100%;
}

.timeline-wrapper > .timeline-panel-3 > .img > .timeline-5 {
  grid-column: auto;
  width: 100%;
  grid-row: 2 / 2;
  height: 100%;
  object-fit: cover;
}

.timeline-wrapper > .timeline-panel-4 > .img {
  grid-template-rows: 100px 100px 50px 50px 100px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  height: 95vh;
}

.timeline-wrapper > .timeline-panel-4 > .img > .timeline-1 {
  grid-row: 1 / 4;
  grid-column: 1 / 4;
}

.timeline-wrapper > .timeline-panel-4 > .img > .timeline-4 {
  grid-row: 2 / 5;
  height: 100%;
  grid-column: 4 / 7;
}

.timeline-wrapper > .timeline-panel-4 > .img > .timeline-5 {
  grid-row: 4 / 6;
  grid-column: 1 / 4;
  height: 100%;
  object-fit: cover;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
}
.timeline-wrapper > .timeline-panel > .img.timeline--2 > .timeline-1 {
  height: 100%;
}

.timeline-wrapper > .timeline-panel > .img.timeline--2 > .timeline-2 {
  max-width: 100%;
  grid-row: 3 / 8;
  height: calc(100% - 115px);
}
/* 
.timeline-wrapper > .timeline-panel > .img.timeline--2 {
    width: 50%;
} */

.timeline-wrapper > .timeline-panel > .img.timeline--3 {
  grid-template-columns: 1fr 50px 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
}

.timeline-wrapper > .timeline-panel > .img.timeline--3 > .timeline-1 {
  height: 205px;
  grid-row: 1 / 3;
  max-width: 69%;
  margin-left: auto;
  grid-column: 1 / 2;
  padding-top: 50px;
}

.timeline--panel--3 .timeline--3 > .timeline-5 {
    grid-row: 1 / 2;
    height: 145px;
    margin-left: auto;
    margin-top: 50px;
}

.timeline-wrapper > .timeline-panel > .img.timeline--3 > .timeline-2 {
  grid-row: 1 / 8;
  max-width: 100%;
  grid-column: 2 / 4;
  height: 100%;
}

.timeline-wrapper > .timeline-panel > .img.timeline--3 > .timeline-3 {
  grid-row: 2 / 7;
  margin-top: 20px;
}

.timeline-wrapper
  > .timeline-panel.timeline--panel--4
  > .content
  > .heading--timeline {
  max-width: 100%;
}

.timeline-wrapper > .timeline-panel.timeline--panel--4 > .content {
  width: 100%;
}

.timeline-wrapper > .timeline-panel > .img.timeline--4 {
  grid-template-columns: 1fr 0px 1fr;
}

.timeline-wrapper > .timeline-panel > .img.timeline--4 > .timeline-1 {
  grid-row: 2 / 8;
}

.timeline-wrapper > .timeline-panel > .img.timeline--4 > .timeline-2 {
  grid-row: 1 / 7;
  max-width: 100%;
}

/* about us end */

/* ingredients */
.ingredieant--section {
  background: #ebf6ff;
}

.list--ingredients {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
  padding: 15px 40px;
  z-index: 2;
  position: relative;
}

.ingredieant--section--mobile{
  display: none;
}

.list--ingredients .ingredient--item {
  width: 100%;
  min-height: 520px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 30px;
  padding: 35px 30px;
  background: #fff;
  text-align: center;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s;
  outline: 1px solid var(--white);
}

.list--ingredients .ingredient--item:hover {
  outline: 1px solid var(--primary-color);
}

.list--ingredients .ingredient--item .ingredient--link {
  max-width: 220px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transition: 0.3s;
  transform: translateY(30px);
}

.list--ingredients .ingredient--item > .inner--ingredient {
  transform: translateY(20px);
  transition: 0.3s;
}

.list--ingredients .ingredient--item:hover .inner--ingredient {
  transform: translateY(0px);
}

.list--ingredients .ingredient--item:hover .ingredient--link {
  transform: translateY(0px);
  opacity: 1;
}

.list--ingredients
  .ingredient--item:hover
  .inner--ingredient
  > .ingredient--img
  .default-img {
  display: none;
}

.list--ingredients
  .ingredient--item
  > .inner--ingredient
  > .ingredient--img
  > .hover-img {
  display: none;
}

.list--ingredients
  .ingredient--item:hover
  .inner--ingredient
  > .ingredient--img
  .hover-img {
  display: block;
}

.list--ingredients .ingredient--item .ingredient--img > img {
  width: 100%;
  height: 163px;
  object-fit: contain;
}

.list--ingredients .ingredient--item h3 {
  margin-top: 30px;
}

.list--ingredients .ingredient--item p {
  font-size: clamp(15px, 2vw, 20px);
}

.list--ingredients > .ingredient--row:nth-child(1) {
  margin-top: -116px;
}

.list--ingredients > .ingredient--row:nth-child(2) {
  margin-top: -232px;
}

.list--ingredients > .ingredient--row:nth-child(4) {
  margin-top: 232px;
}

.wave--bg {
  position: absolute;
  bottom: -150px;
  z-index: -1;
}

.ingredient--main--img {
    border-radius: 40px;
    height: 365px;
    object-fit: cover;
    object-position: center;
}

.faq--section {
  padding: 90px 0px;
  padding-top: 250px;
  margin-top: -180px;
  background: #fff;
}
.faq--section .accordion {
  margin-top: 20px;
}
.faq--section .accordion > .accordion-item {
  border: none !important;
  border-bottom: 1px solid #d2d2d2 !important;
}

.faq--section
  .accordion
  > .accordion-item
  > .accordion-header
  > .accordion-button
  > .question-number {
  margin-right: 35px;
}

.faq--section .accordion > .accordion-item > .accordion-header {
}

.faq--section
  .accordion
  > .accordion-item
  > .accordion-header
  > .accordion-button {
  /* text-transform: uppercase !important; */
  font-size: 20px;
  font-family: "Roboto";
  padding-left: 0;
  padding-right: 0;
}

.faq--section
  .accordion
  > .accordion-item
  > .accordion-header
  > .accordion-button:focus {
  box-shadow: none;
}

.faq--section
  .accordion
  > .accordion-item
  > .accordion-header
  > .accordion-button:not(.collapsed) {
  background: transparent;
  font-weight: 600;
  color: var(--primary-color);
}

.faq--section .accordion > .accordion-item:last-child {
  border-bottom: 0px !important;
}

.faq--section
  .accordion
  > .accordion-item
  > .accordion-header
  > .accordion-button:after {
  background: url("../../assets/images/plus-faq.svg");
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.faq--section
  .accordion
  > .accordion-item
  > .accordion-header
  > .accordion-button:not(.collapsed):after {
  background: url("../../assets/images/minus-faq.svg");
}
/* ingredients end */

/* ingredient details */
.breadcrumbs--ingredient .list--ingredient--ul {
  overflow: auto;
}
.breadcrumbs--ingredient .list--ingredient--ul > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.breadcrumbs--ingredient .list--ingredient--ul > ul > li > a {
  color: #a7a7a7;
  text-decoration: none;
  padding: 15px;
  position: relative;
  font-family: "Blinker";
  font-size: 20px;
  display: block;
  min-width: max-content;
}

.breadcrumbs--ingredient .list--ingredient--ul > ul > li:nth-child(1) > a {
  padding-left: 0;
}

.breadcrumbs--ingredient .list--ingredient--ul > ul > li > a:after {
  content: "";
  width: 100%;
  height: 4px;
  background: #f1f1f1;
  position: absolute;
  left: 0;
  bottom: 0;
}

.breadcrumbs--ingredient .list--ingredient--ul > ul > li > a.active:after {
  background: var(--primary-color);
}

.breadcrumbs--ingredient .list--ingredient--ul > ul > li > a.active {
  color: var(--primary-color);
  font-family: "BlinkerSemiBold";
}

.breadcrumbs--ingredient {
  padding-top: 50px;
  margin-bottom: -30px;
}
.ingredient--dual--btn .custom--btn {
  padding-right: 25px;
  padding-left: 25px;
}
.ingredient--img--container > .ingredient--img--item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

.ingredient--img--container {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin-top: 50px;
}

.ingredient--img--container > .ingredient--img--item {
  padding: 0px;
  border-radius: 15px;
  overflow: hidden;
  min-height: 600px;
  transition: 0.3s;
}

.ingredient--img--container > .ingredient--img--item:nth-child(1) {
  max-width: 15%;
  width: 100%;
}

.ingredient--img--container > .ingredient--img--item:nth-child(2) {
  max-width: calc(20% - 15px);
}

.ingredient--img--container > .ingredient--img--item:nth-child(3) {
  max-width: calc(28% - 15px);
}

.ingredient--img--container > .ingredient--img--item:nth-child(4) {
  max-width: calc(37% - 15px);
}

.ingredient--img--container > .ingredient--img--item:hover img {
  transform: scale(1.09);
}
.ingredient--description {
  padding-top: 100px;
}

.ingredient--description > .container {
  max-width: 1100px;
}
.key--items--list {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 15px;
  row-gap: 50px;
  margin-top: 80px;
}

.key--benefits--section {
  background: #f8f8f8;
  padding: 100px 20px;
  position: relative;
}

.key--items--list > .key--item {
  text-align: center;
}

.key--items--list > .key--item > .key--item--icon > img {
  max-width: 90px;
}

.key--items--list > .key--item > .key--item--icon {
  margin-bottom: 25px;
}

.key--items--list > .key--item > .key--item--description {
  font-family: "Blinker";
  font-size: 22px;
  max-width: 250px;
  margin: 0 auto;
  line-height: normal;
}
.sticky--key {
  position: absolute;
  top: -35px;
  right: 6%;
  max-width: 200px;
}

.applications--section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.challengess--list {
  margin-top: 80px;
  /* display: flex;
    border-top: 1px solid #D2D2D2;
    border-bottom: 1px solid #D2D2D2; */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.challengess--list > .challenges:nth-child(4n) {
  border-right: 0px;
}

.challengess--list > .challenges:nth-child(1),
.challengess--list > .challenges:nth-child(2),
.challengess--list > .challenges:nth-child(3),
.challengess--list > .challenges:nth-child(4) {
  border-top: 1px solid #d2d2d2;
}

.challengess--list
  > .challenges
  > .challenges--inner
  > .challenges--icon
  > img {
  width: 100%;
  transition: 0.3s;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  position: relative;
}
.challengess--list > .challenges:hover .challenges--icon > img {
  padding: 10px;
}

.challengess--list > .challenges {
  width: 100%;
  text-align: center;
  transition: 0.3s;
  position: relative;
  background: #fff;
  border-right: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}
.challengess--list > .challenges > .challenges--inner {
  padding: 35px 50px;
}
.challengess--list > .challenges:before,
.challengess--list
  > .challenges
  > .challenges--inner
  > .challenges--icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #d4e7f7;
  clip-path: circle(0% at 50% 50%);
  transition: 1.25s;
}
.challengess--list
  > .challenges
  > .challenges--inner
  > .challenges--icon:before {
  background-color: #fff;
  transition: 0.5s;
}
.challengess--list > .challenges:hover:before {
  clip-path: circle(100% at 50% 50%);
}
.challengess--list
  > .challenges:hover
  > .challenges--inner
  > .challenges--icon:before {
  clip-path: circle(50% at 50% 50%);
}
.challengess--list > .challenges > .challenges--inner > .challenges--title {
  font-family: "BlinkerSemiBold";
  font-size: 27px;
  line-height: normal;
  z-index: 1;
  position: relative;
}
.challengess--list
  > .challenges
  > .challenges--inner
  > .challenges--description {
  width: 100%;
  z-index: 1;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: translateY(30px);
}
.challengess--list > .challenges:hover .challenges--description {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.challengess--list > .challenges > .challenges--inner > .challenges--icon {
  border-radius: 100%;
  aspect-ratio: 1 / 1;
  max-width: 250px;
  height: 250px;
  margin: 0 auto;
  padding: 0px;
  margin-bottom: 30px;
  margin-top: 25px;
  transition: 0.3s;
  z-index: 1;
  position: relative;
  width: 100%;
}
.ingredient--tech-specs {
  padding-top: 100px;
  padding-bottom: 25px;
}

.ingredient--tech-specs .tech--specs--info {
  padding-top: 20px;
  padding-left: 30px;
}

.ingredient--tech-specs .tech--specs--info > .italic--tech {
  font-style: italic;
  font-size: 22px;
  margin-top: 10px;
}

.ingredient--tech-specs .tech--specs--info > .tech--specs--list {
  list-style: none;
  padding-left: 0;
  padding-top: 25px;
  padding-bottom: 35px;
  margin-bottom: 0;
}

.ingredient--tech-specs .tech--specs--info > .tech--specs--list > li {
  color: #000000;
  font-size: 20px;
}

.ingredient--tech-specs
  .tech--specs--info
  > .tech--specs--list
  > li
  > .spec--box {
  width: 16px;
  height: 16px;
  background: #000;
  display: inline-block;
  margin-right: 15px;
}

.ingredient--tech-specs
  .tech--specs--info
  > .tech--specs--list
  > li
  > .spec--label {
  font-weight: bold;
}

.ingredient--tech-specs
  .tech--specs--info
  > .tech--specs--list
  > li:not(:last-child) {
  margin-bottom: 15px;
}

.ingredient--tech-specs
  .tech--specs--info
  > .tech-specs-spacial
  > .tech--specs--btns
  > .btn {
  max-width: 270px;
  width: 100%;
}

.ingredient--tech-specs .tech--specs--info > .tech-specs-spacial > h5 {
  color: #000;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.ingredient--tech-specs .tech--specs--img > img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  border-radius: 30px;
  object-position: center;
}
/* ingredient details end */

/* our team */
.our--team--container .row > .team--box--item > .team--box {
  display: block;
}

.our--team--container .row > .team--box--item > .team--box > .team--box--image {
  min-height: 430px;
  display: flex;
  align-items: flex-end;
}

.our--team--container
  .row
  > .team--box--item
  > .team--box
  > .team--box--image
  > .team--box--details {
  position: relative;
  width: 100%;
}

.our--team--container
  .row
  > .team--box--item
  > .team--box
  > .team--box--image
  > .team--box--details
  > img {
  object-fit: cover;
  max-height: 430px;
  aspect-ratio: 16 / 25;
  border-radius: 5px;
  transition: all 0.5s ease 0s;
  bottom: 20px;
  position: absolute;
}

.our--team--container
  .row
  > .team--box--item
  > .team--box
  > .team--box--image
  > .team--box--details
  > p {
  font-size: 16px;
  font-weight: 600;
  color: #676057;
  font-style: italic;
  text-transform: unset;
  line-height: 1.5;
  padding: 20px 0 10px;
}

.our--team--container
  .row
  > .team--box--item
  > .team--box
  > .team--box--info
  > h3 {
  line-height: 1.2;
  margin-bottom: 5px;
  font-family: BlinkerSemiBold;
  font-size: 28px;
}

.our--team--container
  .row
  > .team--box--item
  > .team--box
  > .team--box--info
  > p {
  font-size: 18px;
}

.our--team--container
  .row
  > .team--box--item:hover
  > .team--box
  > .team--box--image
  > .team--box--details
  > img {
  bottom: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.our--team--container .row.team--row1 > .team--box--item:nth-child(2) {
  margin-top: 260px;
}

.our--team--container .row.team--row1 > .team--box--item:nth-child(4) {
  margin-top: -40px;
}
.our--team--container .row.team--row2 {
  margin-top: 70px;
}

.our--team--container .row.team--row2 > .team--box--item:nth-child(2) {
  margin-top: 80px;
}

.our--team--container .row.team--row2 > .team--box--item:nth-child(3) {
  margin-top: 120%;
}

.our--team--container .row {
  grid-gap: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.our--team--container .row > .team--box--item {
  width: 100%;
}

.our--team--container .row.team--row2 > .team--box--item:nth-child(4) {
  margin-top: -180px;
}

.our--team--container .row.team--row3 {
  margin-top: 70px;
}

.our--team--container .row.team--row3 > .team--box--item:nth-child(1) {
  margin-top: -250px;
}

.our--team--container .row.team--row3 > .team--box--item:nth-child(2) {
  margin-top: -100px;
}

.our--team--container .row.team--row2 > .team--box--item:nth-child(2) {
  margin-top: 80px;
}

.our--team--container .row.team--row2 > .team--box--item:nth-child(3) {
  margin-top: 120%;
}

.our--team--container .row {
  grid-gap: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.our--team--container .row > .team--box--item {
  width: 100%;
  padding: 0;
}

.our--team--container .row.team--row2 > .team--box--item:nth-child(4) {
  margin-top: -180px;
}

.our--team--container .row.team--row3 {
  margin-top: 70px;
}

.our--team--container .row.team--row3 > .team--box--item:nth-child(1) {
  margin-top: -250px;
}

.our--team--container .row.team--row3 > .team--box--item:nth-child(2) {
  margin-top: -100px;
}

.our--team--container {
  padding: 50px 0 100px;
  background-color: #e8eee6;
  position: relative;
  z-index: 1;
}

.our--team--container:before {
  content: "";
  width: 100%;
  min-height: 275px;
  background-color: #ffffff;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
/* our team end */

/* contact us */
.contact--info--container {
  padding-top: 50px;
  padding-left: 50px;
}

.contact--info--container h2 {
  font-family: "BlinkerSemiBold";
  font-size: 30px;
}

.contact--info--container > .text--secondary {
  font-size: 17px;
}

.contact--info--container .contact--info-list {
  list-style: none;
  padding: 0;
}

.contact--info--container .contact--info-list > li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact--info--container .contact--info-list > li > .icon--container {
  background: #eff8ff;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact--info--container .contact--info-list > li > .details--contact {
  flex: 1;
}

.contact--info--container .contact--info-list > li > .details--contact > h5 {
  font-family: "BlinkerSemiBold";
  font-size: 16px;
}

.contact--info--container .contact--info-list > li > .details--contact > p,
.contact--info--container .contact--info-list > li > .details--contact > p > a {
  font-size: 16px;
  color: #000000;
  margin-bottom: 0;
  line-height: normal;
  text-decoration: none;
}

.contact--info--container .contact--info-list > li {
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  padding: 10px;
}

.contact--info--container .contact--info-list > li:not(:last-child) {
  margin-bottom: 20px;
}

.contact--form--container {
  background: #f1f1f1;
  padding: 40px;
  border-radius: 40px;
}

.contact--form--container > h2 {
  color: #949494;
  font-family: "Blinker";
  font-size: 30px;
  margin-bottom: 20px;
}

.contact--form--container input,
.contact--form--container select {
  border: 1px solid #949494;
  background: #f1f1f1;
  min-height: 50px;
  border-radius: 10px;
  padding-left: 25px;
}

.contact--form--container select {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-size: 16px;
  background-position: calc(100% - 20px) 17px;
  background-repeat: no-repeat;
}

.contact--form--container textarea {
  border: 1px solid #949494;
  background: #f1f1f1;
  min-height: 150px;
  padding: 15px;
  padding-left: 25px;
}

.contact--form--container button[type="submit"] {
  min-height: 50px;
  border-radius: 30px;
  background: var(--primary-color);
  font-family: "Blinker";
  border-color: var(--primary-color);
}

.contact--map .map--container {
  border-radius: 15px;
  overflow: hidden;
}
/* contact us end */

/* ingredient-category */
.ingredient--category--grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  grid-auto-rows: 344px;
}

.ingredient--category--grid > .ingredient--category--card {
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}

.ingredient--category--grid > .ingredient--category--card:hover > img {
  transform: scale(1.09);
}

.ingredient--category--grid
  > .ingredient--category--card:hover
  > .ingredient--category--overlay
  > .arrow {
  transform: rotate(45deg);
}

.ingredient--category--grid > .ingredient--category--card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}

.ingredient--category--grid > .ingredient--category--card:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 1;
}

.ingredient--category--grid > .ingredient--category--card:nth-child(2) {
  grid-column: 5 / 13;
  grid-row: 1 / 1;
}

.ingredient--category--grid > .ingredient--category--card:nth-child(3) {
  grid-row: 2 / 2;
  grid-column: 1 / 5;
}

.ingredient--category--grid > .ingredient--category--card:nth-child(4) {
  grid-row: 2 / 2;
  grid-column: 5 / 9;
}

.ingredient--category--grid > .ingredient--category--card:nth-child(5) {
  grid-row: 2 / 4;
  grid-column: 9 / 13;
}

.ingredient--category--grid > .ingredient--category--card:nth-child(6) {
  grid-row: 3 / 3;
  grid-column: 1 / 5;
}

.ingredient--category--grid > .ingredient--category--card:nth-child(7) {
  grid-row: 3 / 3;
  grid-column: 5 / 9;
}

.ingredient--category--grid > .ingredient--category--card:nth-child(8) {
  grid-row: 4 / 4;
  grid-column: 1 / 8;
}

.ingredient--category--grid > .ingredient--category--card:nth-child(9) {
    grid-row: 4 / 4;
    grid-column: 8 / 13;
}

.ingredient--category--grid
  > .ingredient--category--card
  > .ingredient--category--overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.7) 81.4%
  );
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: end;
  gap: 15px;
  text-decoration: none;
}

.ingredient--category--grid
  > .ingredient--category--card
  > .ingredient--category--overlay
  > .content--category {
  color: var(--white);
  flex: 1;
}

.ingredient--category--grid
  > .ingredient--category--card
  > .ingredient--category--overlay
  > .content--category
  > h3 {
  font-family: "BlinkerSemiBold";
  font-size: 35px;
  line-height: 2.5rem;
  margin-bottom: 5px;
}

.ingredient--category--grid
  > .ingredient--category--card
  > .ingredient--category--overlay
  > .content--category
  > p {
  margin-bottom: 0;
}

.ingredient--category--grid
  > .ingredient--category--card
  > .ingredient--category--overlay
  > .arrow {
  width: 64px;
  aspect-ratio: 1 / 1;
  transition: 0.3s;
}

.ingredient--category--grid
  > .ingredient--category--card
  > .ingredient--category--overlay
  > .arrow
  > img {
  width: 100%;
}

/* ingredient-category end */

/* solutions */
.ingredients--tailored--tabs {
  display: grid;
  grid-template-columns: 1fr clamp(300px, 33vw, 500px) 1fr;
  gap: 20px;
  align-items: start;
  padding: 80px 0px;
  max-width: 1195px;
  width: 100%;
  margin: 0 auto;
}

.ingredients--tailored--tabs > .tabs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ingredients--tailored--tabs > .tabs > .tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "Blinker";
}

.ingredients--tailored--tabs > .tabs > .tab:hover {
  background: #e7fbe7;
}

.ingredients--tailored--tabs > .tabs > .tab.active {
  background: #e7fbe7;
}

.ingredients--tailored--tabs > .tabs > .tab > img {
  width: 25px;
  aspect-ratio: 1 / 1;
}

.ingredients--tailored--tabs > .tab-content {
  background: #f9f9f9;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ingredients--tailored--tabs > .tab-content > img {
  width: 100%;
  height: clamp(200px, 19vw, 290px);
  object-fit: cover;
}

.ingredients--tailored--tabs > .tab-content > .tab-body {
  padding: clamp(15px, 2vw, 30px);
}

.ingredients--tailored--tabs > .tab-content > .tab-body h2 {
  font-size: clamp(15px, 2vw, 30px);
  margin-bottom: 8px;
  font-family: "BlinkerSemiBold";
}

.ingredients--tailored--tabs > .tab-content > .tab-body p {
  color: #000;
  line-height: 1.5;
  font-family: "Blinker";
  font-weight: 300;
}

.container--excellence {
  max-width: 1400px;
  margin-left: auto;
}
.engineered--excellence--container {
  background: #f1f1f1;
  padding: 80px 0px;
  overflow: hidden;
}

.engineered--excellence--container .owl-carousel .item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.engineered--excellence--container .owl-carousel .owl-stage {
  padding-left: 0 !important;
}

.engineered--excellence--container .owl-carousel .owl-dots {
  text-align: left;
  margin-top: 0px !important;
}
.engineered--excellence--container .owl-carousel .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #ccc;
  display: block;
  border-radius: 50%;
  transition: background 0.3s;
}
.engineered--excellence--container
  .owl-carousel
  .owl-dots
  .owl-dot.active
  span {
  background: #3b82f6;
}

.engineered--excellence--container .owl-carousel .owl-dots > .owl-dot > span {
  width: 18px;
  height: 5px;
  border-radius: 10px;
  margin: 0px;
  background: #d1d1d1 !important;
  transition: 0.3s;
}

.engineered--excellence--container .owl-carousel .owl-dots > .owl-dot {
  padding: 0px !important;
  margin-right: 2px;
}

.engineered--excellence--container
  .owl-carousel
  .owl-dots
  > .owl-dot.active
  > span {
  background: #104f81 !important;
  width: 40px;
}

.warehousing--container {
  padding: 80px 0px;
}

.grid--warehousing {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.grid--warehousing > .grid--warehousing--item {
  background: #e8eee6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  min-height: 103px;
  transition: 0.3s;
}
.grid--warehousing > .grid--warehousing--item:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.grid--warehousing > .grid--warehousing--item > p {
  margin: 0px;
  font-family: "Roboto";
  font-weight: 500;
  font-size: 18px;
}

.warehousing--content {
  max-width: 660px;
  margin: 0 auto;
}

.strategic--sourcing {
  background: #f1f1f1;
}

.strategic--sourcing {
  background: #f1f1f1;
  padding: 80px 0px;
}

.strategic--sourcing .tech--specs--info > .tech--specs--list > li {
  font-size: 18px;
}

.strategic--sourcing .tech--specs--img > img {
  height: 585px;
}

.apart--sets {
  padding: 80px 0px;
}

.apart--sets .apart--sets--grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
}

.apart--sets .apart--sets--grid > .apart--sets--grid--item > img {
  width: 45px;
  margin-bottom: 25px;
}

.apart--sets
  .apart--sets--grid
  > .apart--sets--grid--item
  > .content--apart
  > h3 {
  font-family: "BlinkerSemiBold";
  font-size: 25px;
}

.apart--sets .apart--sets--grid > .apart--sets--grid--item > .content--apart {
  max-width: 355px;
  width: 100%;
}

/* solutions end */


/* blog archive */
.blogs--grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    row-gap: 50px;
}

.blogs--grid > .blogs--card {
    box-shadow: 0px 4px 4px 0px #00000040;
    transition: 0.3s;
}

.blogs--grid > .blogs--card > .blog--thum{
    width: 100%;
    height: clamp(200px,24vw,355px);
    overflow: hidden;
    display: block;
}

.blogs--grid > .blogs--card:hover .blog--thum > img {
  transform: scale(1.09);
}

.blogs--grid > .blogs--card > .blog--thum > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}

.blogs--grid > .blogs--card > .blog--content {
    padding: 25px;
}

.blogs--grid > .blogs--card > .blog--content > .meta--blog {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    color: #BBBBBB;
    font-family: 'Roboto';
    font-size: 14px;
    margin-bottom: 10px;
}

.blogs--grid > .blogs--card > .blog--content > .content--title > h3 {
    color: #000;
    font-family: 'BlinkerSemiBold';
    font-size: 20px;
}

.blogs--grid > .blogs--card > .blog--content > .content--title > .link-post {
    color: #104F81;
    font-family: 'Blinker';
    font-size: 17px;
}
/* blog archive end */

/* blog details */
.link--nav > a {
    color: #000;
    text-decoration: none;
}

.meta--blog--single {
    display: flex;
    gap: 50px;
    margin-top: 25px;
}

.meta--blog--single h4 {
    font-family: 'BlinkerSemiBold';
    font-size: 18px;
    color: #000;
}

.meta--blog--single p {
    color: #BBBBBB;
    font-size: 16px;
    font-family: 'Roboto';
}

.post--thum--single img {
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.single--blog--content h1, .single--blog--content h2, .single--blog--content h3, .single--blog--content h4, .single--blog--content h5, .single--blog--content h6 {
    font-family: 'BlinkerSemiBold';
}

.single--blog--content a {
    color: #000;
    font-weight: 600;
}

.latest--blog {
    height: 100%;
}

.latest--blog > .latest--blog--sticky {
    border: 1px solid #D4D4D4;
    padding: 25px;
    position: sticky;
    top: 20px;
}

.latest--blog > .latest--blog--sticky > .list--post--latest {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest--blog > .latest--blog--sticky > h3 {
    color: #104F81;
    margin-bottom: 20px;
}

.latest--blog > .latest--blog--sticky > .list--post--latest > li {
    display: flex;
    gap: 15px;
}

.latest--blog > .latest--blog--sticky > .list--post--latest > li:not(:last-child) {
    border-bottom: 1px solid #D4D4D4;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.latest--blog > .latest--blog--sticky > .list--post--latest > li > .thum--small {
    width: 101px;
}

.latest--blog > .latest--blog--sticky > .list--post--latest > li > .content--latest--post {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}

.latest--blog > .latest--blog--sticky > .list--post--latest > li > .content--latest--post > .created--by {
    color: #BBBBBB;
    font-size: 14px;
    font-family: 'Roboto';
}

.latest--blog > .latest--blog--sticky > .list--post--latest > li > .content--latest--post > .heading--latest--post > h3 {
    font-size: 20px;
    margin-bottom: 0;
}
.latest--blog > .latest--blog--sticky > .list--post--latest > li > .content--latest--post > .heading--latest--post > h3 > a {
    text-decoration: none;
}
/* blog details end */

/* thank you */
.thank--you--container {
    padding-top: 100px;
    text-align: center;
}

.thank--you--container h1 {
    color: var(--primary-color);
    font-family: 'BlinkerExtraBold';
    font-size: clamp(35px,7vw,100px);
}

.bg--thank {
    margin-top: -50px;
    z-index: -1;
    position: relative;
}
/* thank you end */

.map--banner {
    position: relative;
}

.map--banner:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    border-right: 16px solid #e8eee6;
    left: 0;
    top: 0;
    z-index: 1;
    border-left: 16px solid #e8eee6;
}

/* search bar */

.search--list--container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding-top: 50px;
}

.search--form .inner--search {
    display: flex;
}

.search--form .inner--search > input {
    width: 100%;
    border-radius: 0px;
    border: 1px solid #6F6F6F;
    padding: 5px 25px;
    font-family: 'Roboto';
}

.search--form .inner--search > input::placeholder {
    color: #6F6F6F;
    opacity: 0.7;
}

.search--form .inner--search > button {border-radius: 0px;background: var(--primary-color);border-color: var(--primary-color);min-height: 50px;display: flex;align-items: center;justify-content: center;}

.search--form .inner--search > button > img {
    filter: brightness(0) invert(1);
}

.search--form .inner--search > input:focus-visible {
    box-shadow: none;
    outline: none;
}

.searchresult--head {
    font-family: 'BlinkerSemiBold';
    font-size: clamp(18px, 2vw, 32px);
    margin-top: 20px;
    margin-bottom: 25px;
}

.searchlist--result {
    box-shadow: 0px 4px 4px 0px #00000040;
    padding: 25px;
    margin-bottom: 25px;
    padding-bottom: 30px;
}

.searchlist--result > .link--resualt--tag {
    background: #E8F5DD;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'BlinkerSemiBold';
    font-size: 15px;
    margin-bottom: 10px;
}

.searchlist--result > h2 {
    font-family: 'BlinkerSemiBold';
    font-size: clamp(18px, 2vw, 32px);
}

.searchlist--result > h2 > a {
    text-decoration: none;
    color: var(--primary-color);
}

.searchlist--result > p {
    font-family: 'Roboto';
    margin-bottom: 0;
}
.search--header, .search--header--mobile {
    cursor: pointer;
}
.search--header--mobile {
    display: none;
}
.search--sticky {
    position: absolute;
    top: 100%;
    background: #0000008c;
    width: 100%;
    height: 100vh;
}

.search--sticky > .search--sticky--container > .search--form {max-width: 800px;margin: 0 auto;}

.search--sticky > .search--sticky--container {
    background: #f6f6f6;
    padding: 20px;
    padding-bottom: 50px;
}

.search--sticky > .search--sticky--container > .search--form > .search--list {
    list-style: none;
    padding: 0;
    padding-top: 20px;
    display: none;
}

.search--sticky > .search--sticky--container > .search--form > .search--list > .heading--search--list {
    font-family: 'BlinkerSemiBold';
    font-size: 20px;
    margin-bottom: 17px;
}

.search--sticky > .search--sticky--container > .search--form > .search--list > li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.search--sticky > .search--sticky--container > .search--form > .search--list > li > img {
    width: 20px;
    filter: brightness(0);
}

.search--sticky > .search--sticky--container > .search--form > .search--list > li > span {
    font-size: 16px;
    text-decoration: none;
    color: #000;
    font-family: 'RobotoLight';
}

.search--sticky > .search--sticky--container > .search--form > .search--list > li > a:hover {
    text-decoration: underline;
}

.search--list--container > .search--form > .search--list {
    list-style: none;
    padding: 0;
    padding: 20px;
    position: absolute;
    top: 100%;
    width: 100%;
    background: #fff;
    box-shadow: 0px 2px 1px 1px #dedede;
    display: none;
}

.search--list--container > .search--form > .search--list > li.heading--search--list {
    font-family: 'BlinkerSemiBold';
    font-size: 20px;
    margin-bottom: 17px;
}

.search--list--container > .search--form > .search--list > li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.search--list--container > .search--form > .search--list > li > img {
    width: 20px;
    filter: brightness(0);
}

.search--list--container > .search--form > .search--list > li > span {
    font-size: 16px;
    text-decoration: none;
    color: #000;
    font-family: 'RobotoLight';
}

.search--list--container > .search--form {
    position: relative;
}

#blogCategory {
    max-width: fit-content;
    font-size: 15px;
    width: 100%;
}

.policy--page {
    padding-top: 50px;
    padding-bottom: 50px;
}

.policy--page h1, .policy--page h2, .policy--page h3 {
    font-family: BlinkerSemiBold;
    color: var(--primary-color);
}

.policy--page h2 {
    font-size: clamp(23px, 2vw, 32px);
    line-height: 1;
    margin-top: 10px;
}

.policy--page h1 {
    font-size: clamp(28px, 5vw, 55px);
}

.policy--page .ul--list {
    margin-bottom: 20px;
    padding-left: 15px;
}

.policy--page p {
    font-size: 16px;
    text-align: justify;
}

.policy--page .ul--list li {
    font-size: 16px;
}

.policy--page .ul--list > li:not(:last-child) {
    margin-bottom: 10px;
}

.policy--page a {
    color: var(--primary-color);
    font-weight: 600;
}