@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@200;300;400;500;600;700;800;900&family=Merienda:wght@300;400;500;600;700;800;900&display=swap");
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --primary: #f2c40d;
  --secondary: #f2520d;
  --black: #28251c;
  --bg: color-mix(in srgb, var(--primary), #fff 85%);
  --bg-black: #182628;
  --white: #fff;
  --primary-font: "Merienda", cursive;
  --secondary-font: "League Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  color: var(--secondary);
  overflow-x: hidden;
  background: var(--bg);
}

a {
  color: var(--primary);
  text-decoration: none;
  font-family: var(--secondary-font);
}
.nav-link {
  color: var(--bg-black);
}
.nav-link:hover {
  color: var(--primary);
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
}

p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: var(--secondary);
}

ul {
  list-style: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary);
  width: 40px;
  height: 40px;
  transition: all 0.4s;
  border-radius: 50px;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover i {
  color: var(--primary);
}

.back-to-top:hover {
  background: var(--secondary);
  color: var(--primary);
  margin-bottom: 10px;
  border: 2px solid var(--primary);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader img {
  width: 100px;
  height: 100px;
  -webkit-animation: animate-preloader 2s linear infinite;
  animation: animate-preloader 2s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
header {
  height: 100px;
  position: sticky;
  top: 0px;
  z-index: 999;
  background: #fff;
  box-shadow: color-mix(in srgb, var(--secondary), #fff 85%) 0px 2px 8px 0px;
}
.logo-section {
  /* background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%); */
  /* background: linear-gradient(180deg, var(--black) 0%, #000 100%);  */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  width: 100%;
  height: 95px;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}
header nav a {
  color: var(--bg-black);
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 29px;
}
header nav a.active {
  color: #f2520d;
}
header .nav-call h6 {
  color: var(--secondary);
  font-family: var(--secondary-font);
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
}
header .nav-call h4 {
  color: var(--bg-black);
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.icon-call {
  width: 40px;
}

.search-section {
  background: var(--bg-black);
  overflow: hidden;
}

@keyframes rotateAnimation {
  from {
    transform: rotateY(45deg);
  }
  to {
    transform: rotateY(225deg);
  }
}
.logo-3d-rotate img {
  transform: rotateY(45deg);
  animation: rotateAnimation 2s linear infinite;
  /* background: var(--white); */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  /* border-radius: 100%; */
  /* border: 4px solid var(--white); */
  width: 160px;
}

.search-section-title {
  height: 60px;
}
p.nametag {
  position: absolute;
  opacity: 0;
  animation-name: textFader;
  animation-duration: 18s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  color: var(--white);
  text-align: center;
  font-size: 50px;
}

.nametag:first-of-type {
  animation-delay: 0s;
}
.nametag:nth-of-type(2) {
  animation-delay: 4.5s;
}
.nametag:nth-of-type(3) {
  animation-delay: 9s;
}
.nametag:nth-of-type(4) {
  animation-delay: 13.5s;
}

@keyframes textFader {
  0% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  22% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.search-section-bar {
  display: flex;
  padding: 4px;
  border-radius: 40px;
  height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 80%;
  border: 1px solid var(--white);
}
.search-section-bar .form-control,
.search-section-bar .form-control:focus {
  color: var(--secondary);
  margin-left: 20px;
  font-family: var(--secondary-font);
  font-size: 20px;
  border-bottom: 0px;
  margin-top: 5px;
}
::placeholder {
  color: var(--secondary);
  opacity: 1;
}

::-ms-input-placeholder {
  color: var(--secondary);
}
.search-section-bar button {
  background: linear-gradient(80deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 40px;
  height: 100%;
  padding: 0px 24px;
  display: flex;
  align-items: center;
  border: 0px;
  color: var(--white);
  gap: 10px;
  font-family: var(--secondary-font);
  font-size: 18px;
  font-weight: 600;
  border: 1px solid var(--white);
}
.search-section-bar button:hover {
  background: linear-gradient(-80deg, var(--primary) 0%, var(--secondary) 100%);
}
.search-section h6 {
  color: var(--white);
  margin-top: 20px;
  font-family: var(--secondary-font);
  font-size: 26px;
}
.idr-shop-btn {
  background: var(--white);
  width: fit-content;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 11px;
  cursor: pointer;
  border: 1px solid transparent;
}
.idr-shop-btn:hover {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--white);
}

.fade-words {
  /* display: inline-block; */
  overflow: hidden;
  /* vertical-align: top; */
  height: 2rem;
  color: var(--white);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
}

.fade-words span {
  display: block;
  animation: fadeWords 7s linear infinite 0s;
  opacity: 0;
  position: absolute;
}

.fade-words span:nth-child(1) {
  animation-delay: 0s;
}
.fade-words span:nth-child(2) {
  animation-delay: 2s;
}
.fade-words span:nth-child(3) {
  animation-delay: 4s;
}
.fade-words span:nth-child(4) {
  animation-delay: 6s;
}

@keyframes fadeWords {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

img.milk-drop-main-one {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 80%;
  margin: auto;
}

img.milk-drop-main-two {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -170px;
  margin: auto;
  height: 80%;
}
.milk-drop-sub-one {
  position: absolute;
  left: 20px;
  top: 30px;
  width: 40px;
}
.milk-drop-sub-two {
  position: absolute;
  left: 160px;
  top: 260px;
  width: 30px;
}
.milk-drop-sub-three {
  position: absolute;
  left: 400px;
  bottom: 100px;
  width: 30px;
}

/*--------------------------------------------------------------
# TOP BAR
--------------------------------------------------------------*/
.top-bar {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
}
.top-bar h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 29px;
}

.blink-soft {
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.highlights-box {
  border: 1px solid color-mix(in srgb, var(--secondary), transparent 95%);
  background: var(--bg);
  padding: 50px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all ease 0.35s;
  position: relative;
  overflow: hidden;
  height: 355px;
}
.highlights-box-title h4 {
  color: #182628;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  z-index: 2;
}
.highlights-box:hover {
  flex-direction: column-reverse;
  transition: all ease 0.15s;
  border: 1px solid rgba(69, 152, 8, 0.04);
  transition-delay: 0.4s;
  background: radial-gradient(
    72.14% 72.14% at 50% 50%,
    var(--black) 0%,
    var(--bg-black) 100%
  );
}
.highlights-box:hover .highlights-box-title h4 {
  visibility: hidden;
}
.highlights-box-title-animated {
  transition: 0.5s ease-in;
  position: absolute;
}
.highlights-box-title-animated h4 {
  top: calc(100% + 20px);
  transform: translate(-0%, 100%);
  width: 100%;
  right: 0;
  left: 0;
  margin: auto;
  transition: all ease 0.35s;
  color: #fef9da00;
  z-index: 1;
  font-size: 10px;
}
.highlights-box-img {
  position: relative;
}
.highlights-box-img img {
  z-index: 99 !important;
  position: relative;
  transition: all ease 0.35s;
  filter: drop-shadow(0px 4px 15px var(--secondary) 36);
  width: 110px;
  height: 110px;
}
.highlights-box:hover .highlights-box-img img {
  filter: drop-shadow(0px 4px 15px rgba(217, 217, 217, 0.45));
  transform: rotate(20deg);
  transition-delay: 0.4s;
}
.highlights-box-img svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.highlights-box:hover .highlights-box-title-animated h4 {
  top: 100px;
  transform: translate(-0%, -135%);
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  z-index: -1;
  font-weight: 700;
}

.highlights-box:hover svg.left-drops {
  transform: translate(-85%, 80%);
  transition: all ease 0.25s;
  transition-delay: 0.4s;
}
.highlights-box:hover svg.right-drops {
  transform: translate(100%, -80%);
  transition: all ease 0.25s;
  transition-delay: 0.4s;
}

/*--------------------------------------------------------------
# LETTER SCROLL
--------------------------------------------------------------*/
.m-scroll {
  display: flex;
  position: relative;
  margin: auto;
  overflow: hidden;
  z-index: 1;
  height: 150px;
  width: 100%;
}
.m-scroll__title {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  transform: scale(2);
  transition: all 1s ease;
}
.m-scroll__title > div {
  display: flex;
  -webkit-animation: scrollText 33s infinite linear;
  animation: scrollText 33s infinite linear;
}
.m-scroll__title h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 4px;
  transition: all 2s ease;
  -webkit-text-stroke: 0.5px var(--primary) 3d;
  /* color: color-mix(in srgb, var(--bg-black), transparent 80%); */
  color: #f6ca0eba;
  font-family: var(--secondary-font);
  text-shadow: 2px 2px 5px color-mix(in srgb, var(--secondary), #fff 85%);
}

/*div:hover {
    animation-play-state: paused;
  }*/
@-webkit-keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.about-bg {
  border: 3px solid var(--secondary);
  background: linear-gradient(
    138deg,
    var(--primary) 14.08%,
    var(--secondary) 83.44%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 100%;
  width: 550px;
  height: 550px;
}

.about-bg img.about-img {
  overflow: hidden;
  width: 400px;
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}
.natural {
  position: absolute;
  top: 20px;
  right: 40px;
  background: var(--secondary);
  stroke: #fff;
  filter: drop-shadow(0px 4px 15px rgba(83, 83, 83, 0.5));
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 200px;
  border: 2px solid #fff;
  transform: translatey(0px);
  animation: float-two 6s ease-in-out infinite;
}
.natural img {
  width: 60%;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes float-two {
  0% {
    transform: translatey(-10px);
  }
  50% {
    transform: translatey(-0px);
  }
  100% {
    transform: translatey(-10px);
  }
}

#about {
  background: #fff;
}
#about h6 {
  color: var(--primary);
  font-family: var(--secondary-font);
  font-size: 22px;
  font-weight: 500;
}
#about h2 {
  font-size: 54px;
  font-weight: 700;
  color: var(--bg-black);
}
#about h3 {
  font-size: 60px;
  font-weight: 400;
  color: var(--bg-black);
}
#about p {
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
  color: var(--bg-black);
  font-family: var(--secondary-font);
}
.check img {
  background: var(--secondary);
  padding: 5px;
  border-radius: 20px;
  border: 2px solid var(--white);
  filter: drop-shadow(0px 4px 5px rgba(183, 183, 183, 0.5));
}

.product-block {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 24px;
  transition: all 0.35s ease-in-out;
  /* background-color: var(--white);
    border-radius: 30px 30px 0 0; */
}
.product-transition {
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease-in-out;
  padding: 14px;
}
.product-transition::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(35%);
  border-radius: 24px 24px 0 0;
  background-color: var(--white);
  transition: all 0.35s ease-in-out;
  z-index: -1;
  width: 100%;
}
.product-image img {
  display: block;
  width: 260px;
  height: 260px;
  object-fit: contain;
  border-radius: 20px;
  transition: transform 0.4s ease;
}
.product-block:hover .product-image img {
  transform: scale(1.05);
}
.product-image.image-main {
  display: flex;
  justify-content: center;
}
.product-caption {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 30px 30px;
  background-color: var(--white);
  border-radius: 0 0 24px 24px;
}
.product-caption h4 {
  color: var(--bg-black);
  font-family: var(--secondary-font);
  font-size: 18px;
  font-weight: 600;
}
.product-caption h4 span {
  font-size: 14px;
  font-weight: 600;
}
.product-caption h6 {
  color: var(--bg-black);
  font-size: 20px;
}
a.idr-btn {
  border-radius: 30px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 10px;
  color: var(--white);
  padding: 10px 30px;
  font-size: 18px;
  margin-top: 10px;
}
a.idr-btn:hover {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
}
.product-block:hover .product-transition::before {
  height: calc(100%);
  filter: drop-shadow(0px 4px 5px rgba(183, 183, 183, 0.5));
}

.title h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--secondary-font);
}
.title h4 {
  font-size: 44px;
  font-weight: 700;
  color: var(--bg-black);
}
.title h5 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--primary);
  font-family: var(--secondary-font);
}

.dishes-banner {
  background: var(--primary);
  background-image: url("../img/banner/all-idr-products.avif");
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
}
.founder-box {
  padding: 30px;
  background: #fff;
  border-radius: 400px 70px 70px 400px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: color-mix(in srgb, var(--secondary), #fff 80%) 0px 4px 12px;
}
.founder-box-two {
  border-radius: 70px 400px 400px 70px;
}
.founder-box img {
  border-radius: 400px;
  object-fit: cover;
  height: 400px;
  width: 400px;
}
.founder-message {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 30px;
  border-left: 5px solid var(--primary);
}
.founder-message h6 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.64px;
  font-family: var(--secondary-font);
  color: var(--bg-black);
}
.founder-message h4 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}
.founder-message p {
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  font-family: var(--secondary-font);
  color: var(--bg-black);
}
.founder-message h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 29px;
  font-family: var(--secondary-font);
  color: var(--bg-black);
}
.founder-message h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  font-family: var(--secondary-font);
  color: var(--bg-black);
}
.team-img img {
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  object-fit: cover;
}
.team-section h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
  color: var(--bg-black);
  font-family: var(--secondary-font);
}
.team-section h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: var(--bg-black);
  font-family: var(--secondary-font);
}

.contact-box {
  border-radius: 30px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
  /* box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.07); */
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--secondary);
}
.contact-box a{
  font-size: 20px;
  color: var(--bg-black);
}
.form-control {
  background: transparent;
  color: var(--bg-black);
  border: 0px solid #ced4da;
  border-bottom: 2px solid var(--bg-black);
  border-radius: 0px;
  padding: 6px 0px;
}
.form-control:focus {
  color: var(--bg-black);
  background-color: transparent;
  border-color: var(--secondary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 109, 253, 0);
}
.contact-box i {
  font-size: 50px;
  color: var(--secondary);
}
::placeholder {
  color: var(--bg-black) !important;
  opacity: 1;
}

::-ms-input-placeholder {
  color: var(--bg-black);
}
button.idrBtn {
  background: var(--secondary);
  border: 0px;
  padding: 12px;
  border-radius: 40px;
  color: var(--white);
}
button.idrBtn:hover {
  background: var(--primary);
  color: var(--white);
}
.bg-black-contact {
  background: #182628;
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  z-index: -1;
}
footer {
  background: #182628;
}
.footer-logo {
  border-left: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
.footer-left {
  text-align: right;
  padding-right: 20px;
}
.footer-right {
  text-align: left;
  padding-left: 20px;
}
footer h6,
footer h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
footer a,
footer p {
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  color: var(--white);
  font-family: var(--secondary-font);
}
.copyrights {
  font-size: 12px;
  color: var(--white);
  font-family: var(--secondary-font);
}
.social a:hover img {
  background: var(--primary);
  border-radius: 100%;
}
.social-footer a:hover img {
  background: var(--primary);
  border-radius: 100%;
  /* padding: 1px; */
}

.pl {
  margin: auto;
  width: 8em;
  height: 8em;
}
.pl__line,
.pl__line-g,
.pl__lines {
  animation: lineRotate 2s ease-in-out infinite;
}
.pl__line {
  animation-name: lineMove;
  animation-timing-function: ease-in;
}
.pl__line-g {
  animation-name: lineFade;
  animation-timing-function: linear;
}
.pl__line-g:nth-child(2),
.pl__line-g:nth-child(2) .pl__line {
  animation-delay: 0.1666666667s;
}
.pl__line-g:nth-child(3),
.pl__line-g:nth-child(3) .pl__line {
  animation-delay: 0.25s;
}
.pl__line-g:nth-child(4),
.pl__line-g:nth-child(4) .pl__line {
  animation-delay: 0.3333333333s;
}
.pl__line-g:nth-child(5),
.pl__line-g:nth-child(5) .pl__line {
  animation-delay: 0.4166666667s;
}
.pl__line-g:nth-child(6),
.pl__line-g:nth-child(6) .pl__line {
  animation-delay: 0.5s;
}
.pl__line-g:nth-child(7),
.pl__line-g:nth-child(7) .pl__line {
  animation-delay: 0.5833333333s;
}
.pl__line-g:nth-child(8),
.pl__line-g:nth-child(8) .pl__line {
  animation-delay: 0.6666666667s;
}
.pl__line-g:nth-child(9),
.pl__line-g:nth-child(9) .pl__line {
  animation-delay: 0.75s;
}
.pl__line-g:nth-child(10),
.pl__line-g:nth-child(10) .pl__line {
  animation-delay: 0.8333333333s;
}
.pl__line-g:nth-child(11),
.pl__line-g:nth-child(11) .pl__line {
  animation-delay: 0.9166666667s;
}
.pl__line-g:nth-child(12),
.pl__line-g:nth-child(12) .pl__line {
  animation-delay: 1s;
}
.pl__lines {
  transform-origin: 64px 64px;
}
.pl__layer .pl__lines {
  stroke: var(--primary);
}
.pl__layer + .pl__layer .pl__lines {
  stroke: var(--secondary);
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 90%, 10%);
    --fg: hsl(var(--hue), 90%, 90%);
  }
}
/* Animations */
@keyframes lineRotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(0.5turn);
  }
}
@keyframes lineFade {
  from,
  50%,
  to {
    opacity: 0;
  }
  10%,
  45% {
    opacity: 1;
  }
}
@keyframes lineMove {
  from {
    stroke-dashoffset: -32;
  }
  50%,
  to {
    stroke-dashoffset: 32;
  }
}

.about-banner-img img {
  border-radius: 200px 20px 200px 20px;
  border: 5px solid var(--primary);
}
.media video {
  border-radius: 20px;
  border: 6px solid var(--white);
  box-shadow: 0px 4px 27px 0px color-mix(in srgb, var(--secondary), #fff 85%);
}

.page-title-section.about-page {
  background: url("../img/team-banner.avif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.page-title-section.product-page {
  background: url("../img/product-banner.avif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.page-title-section.contact-page {
  background: url("../img/contact-banner.avif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.page-title-section.farm-page {
  background: url("../img/farm-banner.avif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.page-title-section.career-page {
  background: url("../img/career.avif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}

.vision-mission-section-banner {
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0px 4px 27px 0px color-mix(in srgb, var(--secondary), #fff 85%);
  padding: 30px;
  position: relative;
}
.vision-mission-section-banner h6 {
  color: var(--secondary);
  font-size: 30px;
  margin-bottom: 10px;
}
.vision-mission-section-banner p {
  color: var(--bg-black);
  font-size: 22px;
  font-family: var(--secondary-font);
  font-weight: 300;
  line-height: 26px;
}
.vision-mission-section-banner img {
  position: absolute;
  bottom: 0px;
  width: 400px;
}
img.milk-left {
  position: absolute;
  left: -50px;
  width: 300px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  z-index: 1;
}
img.milk-right {
  position: absolute;
  right: -50px;
  width: 300px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  z-index: 1;
}
a.quick-view {
  position: absolute;
  right: 8px;
  top: 8px;
  background: var(--white);
  color: var(--secondary);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  cursor: pointer;
}
a.quick-view:hover {
  color: var(--primary);
}
.product-modal-body p {
  font-size: 18px;
  font-family: var(--secondary-font);
  font-weight: 300;
  line-height: 22px;
  color: var(--bg-black);
}
.product-modal-body h2 {
  font-size: 26px;
  font-family: var(--secondary-font);
  font-weight: 600;
  line-height: 22px;
}
.social-footer img {
  width: 30px;
}
.social img {
  width: 20px;
}
section {
  overflow-x: hidden;
}

.process-section h3 {
  font-size: 30px;
}
.process-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  padding: 16px;
  box-shadow: color-mix(in srgb, var(--secondary), #fff 85%) 0px 2px 8px 0px;
  margin-bottom: 14px;
  height: 100%;
}
.process-card img {
  border-radius: 10px;
  margin-bottom: 18px;
}
.process-card h6 {
  font-size: 26px;
  font-family: var(--secondary-font);
  font-weight: 600;
  margin-bottom: 8px;
}
.process-card p {
  font-size: 18px;
  font-family: var(--secondary-font);
  font-weight: 300;
  color: var(--bg-black);
}

.process-card span {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
  font-family: var(--secondary-font);
  color: var(--white);
  position: absolute;
  top: 0px;
  left: 0;
  font-weight: 600;
  letter-spacing: 1px;
  right: 0;
  width: fit-content;
  margin: auto;
  padding: 10px 20px;
  border-radius: 0px 0px 20px 20px;
}
.career-section-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: color-mix(in srgb, var(--secondary), #fff 85%) 0px 2px 8px 0px;
}
.career-section .form-control,
.career-section .form-select {
  color: var(--bg-black);
  border: 1px solid var(--primary);
  font-family: var(--secondary-font);
  border-radius: 10px;
  padding: 6px;
  font-size: 18px;
}
.career-section .form-label {
  font-size: 14px;
  font-family: var(--secondary-font);
  margin-bottom: 4px;
  color: var(--bg-black);
}
.career-section .form-label span {
  color: red;
}
.career-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.career-section-title h3 {
  font-size: 22px;
  font-family: var(--secondary-font);
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}
.career-section-title span {
  height: 1px;
  width: 100%;
  background: var(--primary);
}
.form-text {
  font-size: 12px;
  font-family: var(--secondary-font);
}

.gallery-section .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    justify-content: center;
}
.gallery-section .nav-tabs{
  border-bottom: 1px solid var(--primary);
}
.gallery-section .nav-tabs .nav-item.show .nav-link, .gallery-section .nav-tabs .nav-link.active{
  color: var(--secondary);
  background-color: transparent;
  border-color: transparent;
}
.nav-link:hover{
  background-color: transparent;
  border-color: transparent;
  color: var(--primary);
}
.gallery-section h4 {
  font-size: 28px;
  font-family: var(--secondary-font);
  margin-bottom: 6px;
  font-weight: 600;
}
.gallery-card {
  background: var(--white);
  border-radius: 20px;
  padding: 10px;
  box-shadow: color-mix(in srgb, var(--secondary), #fff 85%) 0px 2px 8px 0px;
}
.gallery-card img {
  border-radius: 10px;
}

section#contact {
  overflow: hidden;
}
.gallery-main-section {
  height: 70vh;
  scroll-behavior: smooth;
  background: color-mix(in srgb, var(--secondary), var(--white) 80%);
  border: 1px solid color-mix(in srgb, var(--primary), var(--white) 40%);
  border-radius: 20px;
  overflow: hidden;
}

.gallery-main-section .carousel {
  position: relative;
  z-index: 1;
  height: 70vh;
  overflow: hidden;
  pointer-events: none;
}

.gallery-main-section .carousel-item {
  --items: 10;
  --width: clamp(150px, 30vw, 300px);
  --height: clamp(200px, 40vw, 400px);
  --x: calc(var(--active) * 800%);
  --y: calc(var(--active) * 200%);
  --rot: calc(var(--active) * 120deg);
  --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
  overflow: hidden;
  position: absolute;
  z-index: var(--zIndex);
  width: var(--width);
  height: var(--height);
  margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
  border-radius: 10px;
  top: 50%;
  left: 50%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transform-origin: 0% 100%;
  box-shadow: 0 10px 50px 10px rgba(0, 0, 0, 0.133);
  background: black;
  pointer-events: all;
  transform: translate(var(--x), var(--y)) rotate(var(--rot));
  transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
  display: block;
  position: absolute;
}
.gallery-main-section .carousel-item .carousel-box {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  opacity: var(--opacity);
  font-family: "Orelo-sw-db", serif;
}
.gallery-main-section .carousel-item .carousel-box:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.5)
  );
}
.gallery-main-section .carousel-item .title {
  position: absolute;
  z-index: 1;
  color: #fff;
  bottom: 20px;
  left: 20px;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  font-size: clamp(20px, 3vw, 30px);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.gallery-main-section .carousel-item .num {
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 10px;
  left: 20px;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  font-size: clamp(20px, 10vw, 80px);
}
.gallery-main-section .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}



.container .gallery {
  height: 400px;
  width: 100%;
  display: flex;
  gap: 20px;
}
.container .panel-container {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  width: 10%;
  background: #eee;
  transition: width 3s, visibility 2s,
    transform cubic-bezier(0.15, 0.1, 0.25, 1.3);
  user-select: none;
  box-shadow: 0px 4px 27px 0px color-mix(in srgb, var(--secondary), #fff 85%);
  border: 5px solid var(--white);
}
.container .panel-container:nth-child(1) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 0s forwards;
  transform: translateY(100%);
  animation: fly 2s 0s forwards;
}
.container .panel-container:nth-child(2) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 0.5s forwards;
}
.container .panel-container:nth-child(3) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 1s forwards;
  transform: translateY(100%);
  animation: fly 2s 1s forwards;
}
.container .panel-container:nth-child(4) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 1.5s forwards;
}
.container .panel-container:nth-child(5) {
  visibility: hidden;
  transform: translateY(-100%);
  animation: fall 2s 2s forwards;
  transform: translateY(100%);
  animation: fly 2s 2s forwards;
}
.container .panel-container:hover {
  cursor: pointer;
  outline-color: #948979;
}
.container .panel-container:has(.panel-control:checked) {
  width: 60%;
}
.container .panel-container:has(.panel-control:checked):hover {
  user-select: initial;
  cursor: initial;
  outline-color: #dfd0b8;
}
.container .panel-container .panel {
  height: 100%;
  padding: 10px;
  position: relative;
}
.container .panel-container .panel-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.25rem;
  object-fit: cover;
}
.container .panel-container .panel-id {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.75);
  transform: rotate(90deg) translateX(50%);
}
.container .panel-container .panel-id::before {
  content: "#";
}
.container .panel-container .panel-control {
  display: none;
}
.container .panel-container .panel-control:checked ~ .panel-id {
  display: none;
}
.container .panel-container .panel-control:checked ~ .panel-content {
  display: flex;
}
.container .panel-container .panel-content {
  height: 100%;
  flex-direction: column;
  color: white;
  letter-spacing: 0.01rem;
  position: relative;
  z-index: 5;
  overflow: hidden;
  display: none;
  transition: display 1s;
}
.container .panel-container .panel-content .head {
  padding: 10px;
  font-size: 2.5rem;
  position: relative;
}
.container .panel-container .panel-content .head::before {
  content: "";
  border-radius: 0.25rem;
  border: 2.5px solid white;
  margin-right: 0.75rem;
}
.container .panel-container .panel-content .head::after {
  content: "";
  height: 78%;
  width: 0;
  border-radius: 0.25rem;
  margin: 7px 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background: #15344899;
  animation: squeezeout 2s 1s forwards;
}
.container .panel-container .panel-content .icon {
  color: inherit;
  height: 1.125rem;
}
.container .panel-container .panel-content .alt {
  vertical-align: bottom;
}
.container .panel-container .panel-content .alt .value::after {
  content: " mts.";
}
.container .panel-container .panel-content .spacer {
  flex: 1 0 auto;
}
.container .panel-container .panel-content .body {
  padding: 10px;
  font-size: 1.125rem;
  line-height: 1.5rem;
  position: relative;
  transform: translateY(100%);
  animation: slideInTop 2.5s 3s forwards;
}
.container .panel-container .panel-content .body::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0.25rem;
  border-top: 2.5px solid #dfd0b8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #15344899;
}
.container .panel-container .panel-content .title {
  color: limegreen;
}
.container .panel-container .panel-content .value {
  margin-bottom: 0.75rem;
}

@keyframes fall {
  0% {
    visibility: hidden;
    transform: translateY(-100%);
  }
  100% {
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes fly {
  0% {
    visibility: hidden;
    transform: translateY(100%);
  }
  100% {
    visibility: visible;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translateX(50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideInBottom {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes slideInTop {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reveal {
  0% {
    flex: 1;
  }
  100% {
    flex: 80%;
  }
}
@keyframes squeezeout {
  0% {
    width: 1px;
  }
  100% {
    width: 100px;
  }
}


/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/

@media screen and (max-width: 600px) {
  .top-bar h6 {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
  header {
    height: 75px;
  }
  .logo-section {
    position: relative;
    top: 0px;
    width: 100%;
    height: 75px;
  }
  .organic {
    top: 15px;
    right: -5px;
    width: 90px;
    height: 90px;
  }
  .about-bg {
    padding: 20px;
    width: 100%;
    height: 380px;
    margin-bottom: 40px;
  }
  #about h6 {
    font-size: 18px;
  }
  #about h2 {
    font-size: 32px;
  }
  #about h3 {
    font-size: 34px;
    margin-bottom: 5px;
  }
  #about p {
    font-size: 18px;
    line-height: 21px;
  }
  .title h4 {
    font-size: 30px;
    line-height: 43px;
  }
  .highlights-box {
    height: 200px;
  }
  .highlights-box-title h4 {
    font-size: 18px;
  }
  .highlights-box:hover .highlights-box-title-animated h4 {
    font-size: 18px;
    line-height: 26px;
  }
  .highlights-box-img svg {
    width: 35%;
  }
  .highlights-box-img {
    text-align: center;
  }
  .highlights-box-img img {
    width: 80px;
    height: 80px;
  }
  .founder-message p {
    font-size: 16px;
  }
  .about-banner-img img {
    border-radius: 80px 20px 80px 20px;
  }
  .dishes-banner {
    min-height: 150px;
    background-attachment: inherit;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .footer-left {
    text-align: center;
    padding-right: 0px;
    padding-bottom: 30px;
  }
  .footer-right {
    text-align: center;
    padding-left: 0px;
    padding-top: 30px;
  }
  .footer-logo {
    border-left: 0px solid var(--white);
    border-right: 0px solid var(--white);
    border-top: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    padding: 30px;
  }
  div#offcanvasExample {
    border-radius: 0 16px 16px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 70%;
  }
  .offcanvas {
    background: none;
  }
  .nav-link {
    color: var(--white);
  }
  .nav-link:hover {
    color: var(--white);
  }
  .product-image img {
    width: 100%;
    height: 130px;
  }
  .product-transition {
    padding: 0px 4px 4px 4px;
  }
  .product-caption h4 {
    font-size: 14px;
  }
  .product-caption h4 span {
    font-size: 12px;
    font-weight: 600;
  }
  .product-caption {
    padding: 0px 10px 6px;
    border-radius: 0 0 14px 14px;
  }
  .product-caption h6 {
    font-size: 14px;
  }
  .product-transition::before {
    height: calc(50%);
  }
  .form-control {
    font-size: 0.88rem;
  }
  .page-title-section.about-page,
  .page-title-section.product-page,
  .page-title-section.contact-page,
  .page-title-section.farm-page,
  .page-title-section.career-page {
    height: 150px;
  }
  .m-scroll__title h1 {
    font-size: 24px;
  }
  .m-scroll {
    height: 90px;
  }
  img.milk-right,
  img.milk-left {
    display: none;
  }
  .founder-box img {
    height: 300px;
    width: 300px;
  }
  .vision-mission-section-banner img {
    position: relative;
    width: 100%;
  }
  .vision-mission-section-banner {
    padding-bottom: 0px;
  }
  .founder-box {
    flex-direction: column;
    border-radius: 400px 400px 70px 70px;
  }
  .founder-message {
    padding: 0px;
    margin-top: 10px;
    border-left: 0px solid var(--primary);
    border-top: 3px solid var(--primary);
    padding-top: 14px;
  }
  .founder-message h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 36px;
  }
  .founder-message p {
    font-size: 17px;
    line-height: 24px;
    text-align: justify;
  }
  .founder-message h5 {
    font-size: 17px;
  }
  .vision-mission-section-banner p {
    font-size: 18px;
    line-height: 23px;
  }

  img.milk-drop-main-one {
    display: none;
  }

  img.milk-drop-main-two {
    display: none;
  }
  .milk-drop-sub-one {
    display: none;
  }
  .milk-drop-sub-two {
    display: none;
  }
  .milk-drop-sub-three {
    display: none;
  }
  .logo-3d-rotate img {
    width: 100px;
  }
  p.nametag {
    font-size: 38px;
    line-height: 50px;
  }
  .search-section-bar {
    width: 100%;
    margin-top: 10px;
  }
  .search-section h6 {
    font-size: 20px;
  }
  .search-section-bar button span {
    display: none;
  }
  a.idr-btn {
    padding: 6px 30px;
    font-size: 12px;
  }
  .gallery-main-section {
    height: 50vh;
  }

  .gallery-main-section .carousel {
    height: 50vh;
  }
  .container .gallery {
    height: 250px;
    width: 100%;
    display: flex;
    gap: 6px;
  }
  .container .panel-container .panel-img{
    border-radius: 10px;
  }
  .container .panel-container {
    transition: width 1s, visibility 2s,
      transform cubic-bezier(0.15, 0.1, 0.25, 1.3);
    user-select: none;
  }
}
@media screen and (max-width: 400px) {
  .highlights-box-title h4 {
    font-size: 13px;
    line-height: 18px;
  }
  .highlights-box:hover .highlights-box-title-animated h4 {
    font-size: 14px;
    line-height: 27px;
  }
}



.social-icons .icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: coral;
  transition: width 0.5s ease;
  cursor: pointer;
}

.social-icons .icon:first-child {
  border-top-right-radius: 5px;
}

.social-icons .icon:last-child {
  border-bottom-right-radius: 5px;
}

.social-icons .icon:hover {
  width: 60px;
}

/************************************************* Lijo Commented Code ***************************************************



.social-icons {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.3rem;
  z-index: 99999;
}

.social-icons .icon.yt {
    color: #fff;
    background: #FF0000;
}
.social-icons .icon.in {
    color: #fff;
    background: linear-gradient(to right, #833ab4,#fd1d1d,#fcb045 );
}

.social-icons .icon.fb {
    color: #fff;
    background: #1877F2;
}
.social-icons .icon.wt {
    color: #fff;
    background: #25d366;
}

/************************************************* Lijo Edit *************************************************  */


.social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.3rem;
  z-index: 99999;
}

.social-icons .icon.yt {
  color: #ff0000;
  background: transparent;
}
.social-icons .icon.in {
  color: #fa2eac;
  background: transparent;
}

.social-icons .icon.fb {
  color: #1877f2;
  background: transparent;
}
.social-icons .icon.wt {
  color: #25d366;
  background: transparent;
}

a.idr-shop-btn {
    font-family: var(--primary-font);
}