* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a{
  color: #35759B;
}

@font-face {
  font-family: 'CalibriCustom';
  src: url('../font/calibri.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Verdana';
  src: url(https://442228277.fs1.hubspotusercontent-ap1.net/hubfs/442228277/raw_assets/public/icba/font/Verdana.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Verdana Bold';
  src: url(https://442228277.fs1.hubspotusercontent-ap1.net/hubfs/442228277/raw_assets/public/icba/font/Verdana-Bold.ttf) format('truetype');
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: Arial, sans-serif;
}
.btn {
  padding: 16px 35px;
  color: #ffffff;
  border-radius: 32px;
  display: block;
  max-width: 221px;
  text-decoration: none;
}
.btn span {
  font-size: 18px;
  color: #ffffff;
}
.btn-primary {
  background-color: #50c5d4;
}
.btn-text {
  background-color: transparent;
}
.btn-text span{
  color: #212121;
  text-decoration: underline;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

header {
  width: 100%;
  background: #fff;
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 80px;
}

nav {
  flex: 1;
  width: 100%;
}

nav ul {
  list-style: none;
  display: flex;
  margin-left: 20px;
  margin-right: 16px;
  gap: 25px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Dropdown */
nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  list-style: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 180px;
}

nav ul li:hover ul {
  display: block;
}

nav ul li ul li {
  padding: 5px 20px;
  white-space: nowrap;
}

nav ul li ul li a {
  color: #333;
}

/* Right section */
.right-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 25px 7px 9px;
  border: 1px solid #ddd;
  border-radius: 32px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.login-btn .icon {
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.login-btn .icon img {
  height: 20px;
  width: 20px;
}

/* SVG arrow styling */
.dropdown-arrow {
  width: 10px;
  height: 7px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when submenu is open */
li.open > a .dropdown-arrow {
  transform: rotate(180deg);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: auto;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-dropdown {
  position: relative;

}

.lang-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #121212;
  font-weight: 500;
}

.lang-dropdown ul {
  min-width: 100px;
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 8px 0;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.lang-dropdown:hover ul {
  display: block;
}

.lang-dropdown ul li a {
  display: block;
  padding: 5px 15px;
  color: #121212;
  text-decoration: none;
}

.lang-dropdown ul li a:hover {
  background: #f5f5f5;
}

/* Responsive */

@media (max-width: 1320px) {
  .series .bottom .divider{
    display: none;
  }
}
@media (min-width: 768px) {
  .solSlider .slick-next, .solSlider .slick-prev {
    top: -71px !important;
}

  .left-side{
  min-width: 700px;
  }
}
@media (min-width: 991px) {
  nav ul {
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .intro-wrapper .dnd-column {
    width: 100% !important;
  }
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    transform: translateY(-120%);
    transition: 0.3s ease;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    margin-right: 12px
  }

  nav.active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  nav ul li ul {
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }
  nav ul li:focus-within ul {
  display: block;
  }

  nav ul li:hover ul {
    display: none;
  }

  nav ul li.open ul {
    display: block;
  }
   .hero {
    padding: 120px 20px;
    justify-content: center;
  }
  .hero .ttl {
    font-size: 42px;
  }
  .wrapper{
    padding-bottom: 50px;
}
  .main-wrapper{
    flex-wrap: wrap;
  }
  .main-wrapper .left-side{
    flex: auto;
    width: 100%;
  }
  .main-wrapper .right-side{
    margin-bottom: 40px;
    box-shadow: 0px 40px 40px 0px #0000000D;
  }
   .login {
    flex-direction: column;
    height: auto;
  }
  .login .left,
  .login .right {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 40px 20px;
  }
  .login .left {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .login .left .ttl{
    font-size: 24px;
    margin-bottom: 16px;
  }
  .login .left p {
    max-width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  footer {
  padding: 60px 20px 18px!important;
}
td {
  padding: 15px!important;
  font-size: 14px!important; 
  }
.solSlider .slick-prev{
     left: 56%!important;
   }
  #nav ul .mobile-lang,
  #nav ul .mobile-login {
    /* padding: 10px 15px; */
    /* border-top: 1px solid #eee; */
  }

  #nav ul .mobile-lang a,
  #nav ul .mobile-login a {
    color: #121212;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  #nav ul .mobile-login .icon img {
    width: 18px;
    height: 18px;
  }
}

/* Banner Start */
.banner {
  position: relative;
  background-image: url(./assets/images/banner-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 104px;
  padding-bottom: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 115px;
  z-index: 1;
}

/* .banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
} */

.banner .banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .banner-content .backArrow {
  display: block;
  position: absolute;
  top: 50px;
}

.ttl {
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}
.des {
  font-size: 20px;
  color: #545454;
  margin-bottom: 65px;
}
.searchbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 903px;
  background-color: #fff;
  border-radius: 40px;
  overflow: hidden;
  padding-right: 10px;
}
.searchbar input {
  border: 0;
  outline: 0;
  width: 100%;
  padding: 24px 0px 24px 37px;
  background-color: transparent;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.searchbar button {
  background-color: #50c5d4;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  padding: 14px;
  border: 0;
  outline: 0;
 cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.searchbar button svg {
  height: 25px;
  width: 25px;
}

/* Intro section Starts */
.intro {
  position: relative;
  background-color: transparent !important; 
}
.intro p,
.intro ul li {
  font-size: 18px;
  color: #797979;
  font-family: Arial, sans-serif;
}
.intro ul li {
  list-style: none;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.intro ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 21px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="20" viewBox="0 0 21 20" fill="none"><path d="M2.10517 9.01655C1.70655 9.01767 1.31639 9.13162 0.979836 9.34522C0.643279 9.55883 0.374076 9.86336 0.203372 10.2236C0.0326671 10.5838 -0.0325628 10.985 0.0152287 11.3807C0.0630201 11.7765 0.22188 12.1506 0.473429 12.4598L5.83586 19.0288C6.02706 19.2662 6.27215 19.4546 6.55076 19.5782C6.82937 19.7019 7.13347 19.7573 7.4378 19.7399C8.08868 19.7049 8.67632 19.3567 9.05097 18.7842L20.1901 0.844664C20.192 0.841666 20.1938 0.838705 20.1958 0.835781C20.3003 0.675303 20.2664 0.357279 20.0507 0.157492C19.9914 0.102628 19.9216 0.0604778 19.8454 0.0336361C19.7692 0.00679439 19.6884 -0.00417006 19.6078 0.00141825C19.5272 0.00700656 19.4487 0.0290293 19.3769 0.0661299C19.3052 0.103231 19.2418 0.154624 19.1907 0.217144C19.1867 0.22206 19.1826 0.226901 19.1783 0.231668L7.94437 12.9244C7.90163 12.9727 7.84971 13.012 7.79164 13.0401C7.73356 13.0681 7.67049 13.0844 7.60609 13.0879C7.54168 13.0914 7.47722 13.082 7.41646 13.0604C7.3557 13.0387 7.29984 13.0052 7.25214 12.9618L3.52379 9.569C3.13657 9.21404 2.63047 9.01695 2.10517 9.01655Z" fill="%2350C5D4"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.intro .ttl {
  position: relative;
}
.intro .ttl::before,
.intro .ttl::after {
  content: "";
  position: absolute;
  background: #50c5d4;
  height: 3px;
  width: 84px;
  bottom: 0;
  border-radius: 4px;
}
.intro .ttl::before {
left: 92px;
  width: 30px;
}
.intro .ttl::after {
  left: 0;
}
.intro p {
  margin-bottom: 20px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #545454;
  font-size: 16px;
}
.intro .intro-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 70px;
}
.watermark {
  position: absolute;
  z-index: -1;
  top: -92px;
  left: -140px;
}
.intro ul {
  list-style: 0;
  padding: 0;
  margin: 0;
}
.intro ul li{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #545454;
  font-size: 16px;
}
/* Divider */
.divider {
  position: relative;
  height: 1px;
  background-color: #ccc;
  border-radius: 5px;
  margin: 100px auto;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: #cfcfcf;
  border-radius: 50%;
  transform: translateY(-50%);
}

.divider::before {
  left: 0; /* half of circle width */
}

.divider::after {
  right: 0;
}

/* Tips Section starts */
.tips {
  background-color: #effcff;
  padding-top: 83px !important;
  padding-bottom: 100px !important;
  margin-bottom: 115px;
}
.tips .ttl {
  position: relative;
  text-align: center;
  padding-bottom: 16px;
font-family: "Open Sans", sans-serif;
  color: #121212;
  font-weight: 700;
  margin-bottom: 35px;
}
.tips .btn {
  margin: auto;
}
.tips .ttl::before,
.tips .ttl::after {
  content: "";
  position: absolute;
  background: #50c5d4;
  height: 3px;
  width: 84px;
  bottom: 0;
  display: inline-block;
  border-radius: 4px;
  left: calc(50% - 65px);
  transform: translateX(-50%);
}
.tips .ttl::before {
  left: 50%;
  width: 30px;
}
.tips .ttl::after {
  /* left: 0; */
}
th:first-child,
td:first-child {
  border-right: 1px solid #F2F2F2;
}
.tips .table-container table th:first-child {
  padding: 20px;
}
.tips .table-container table td b{
   font-family: Verdana Bold;
}
.table-container {
  margin: auto;
  overflow: hidden;
  margin-bottom: 35px;
  box-shadow: none;
  margin-bottom: 0;
}

.tips .table-container {
    max-width: 1460px;
  box-shadow: 0px 4px 12px 1px #d4eaef;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

thead {
  background-color: #50c5d4;
  color: white;
  text-align: center;
}
.tips th {
  font-size: 20px;
}
th {
  padding: 15px;
  font-size: 18px;
}

td {
  padding: 35px;
  vertical-align: center;
  border-top: 1px solid #f2f2f2;
  background-color: white;
  font-size: 16px;
  color: #545454;
  font-family: Verdana, Geneva, Tahoma, sans-serif;

}

td b {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  color: #545454;
  font-weight: 800
}

/* Video Insights Series */
.series {
  margin-bottom: 115px;
  background-color: transparent;
}
.series .ttl {
  position: relative;
  text-align: center;
 padding-bottom: 18px;
  margin-bottom: 58px;
}
.series .ttl::before,
.series .ttl::after {
  content: "";
  position: absolute;
  background: #50c5d4;
  height: 3px;
  width: 84px;
  bottom: 0;
  display: inline-block;
  border-radius: 4px;
  left: calc(50% - 65px);
  transform: translateX(-50%);
}

.series .ttl::after {
    left: 50%;
    width: 30px;
}
.series .cardSlider{
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 60px;
}
.series .cardSlider .card{
  border: 1px solid #CCEEF6;
  max-width: 467px;
  padding: 20px 20px 23px;
  margin: 0 20px;
}
.series .cardSlider .card .cardImage {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
}
.series .cardSlider .card .cardImage {
  object-fit: cover;

}
.series .cardSlider .card .cardImage .playIcon{
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
}
.series .cardSlider .card .cardContent h2{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-bottom: 24px;
  color: #545454;
}
.series .cardSlider .card .cardContent p{
/*   font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  color: #545454; */
  margin-bottom: 24px;
}
.series .cardSlider .card .cardContent .cardBtn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  color: #121212;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}
.series .bottom{
  display: flex;
  align-items: center; justify-content: center;
}

.series .bottom .divider{
  position: absolute;
/*   display: block; */
  width: 100%;
  max-width: 1000px;
  background-color: #CCEEF6;
}
.series .bottom .divider::before,
.series .bottom .divider::after{
  display: none;
}
.series .cardSlider .slick-prev,
.series .cardSlider .slick-next {
  bottom: -85px!important;
}
.series .cardSlider  .slick-next {
  left: 80px!important;
}
.cardSlider .card.slick-slide.slick-current.slick-active {
  box-shadow: 0px 24px 40px 0px #CBE2E7;
  transition: box-shadow 0.3s ease;
  margin-bottom: 50px;
}
/* .cardSlider .card.slick-slide.slick-current.slick-active .cardBtn {
  color: #70C2D2;
}

.cardSlider .card.slick-slide.slick-current.slick-active .cardBtn svg path {
  fill: #70C2D2;
} */
.series .cardSlider .card .cardContent .cardBtn svg{
    color: #121212;
}
.series .cardSlider .card .cardContent .cardBtn:hover span{
    color: #70C2D2;
}
.series .cardSlider .card .cardContent .cardBtn:hover svg{
    color: #70C2D2!important;
    fill: #70C2D2!important;
}
.series .btn{
  max-width: 150px;
  position: relative;
  margin-top: -15px;
  margin-left: auto!important;
}
/* SOLUTION SRCTION */
.solSlider{
  display: flex;
}
.solSlider .item img{
  margin-bottom: 26px;
}
.solution {
  background-color: transparent;
   padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.solution .ttl {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 95px;
}
.solution .ttl::before,
.solution .ttl::after {
  content: "";
  position: absolute;
  background: #50c5d4;
  height: 3px;
  width: 84px;
  bottom: 0;
  display: inline-block;
  border-radius: 4px;
  left: 30px;
  transform: translateX(-50%);
}

.solution .ttl::after {
    left: 95px;
    width: 30px;
}
.solSlider .item h3{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  margin-bottom: 24px;
  color: #545454;
  text-transform: capitalize;
}
.solSlider .item {
  max-width: 500px;
  padding: 30px;
  margin-bottom: 115px;
}
.solSlider .item p{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  color: #545454;
  margin-bottom: 24px;
}
.solSlider .item .cardBtn{
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  color: #121212;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}
.solSlider .slick-prev,
.solSlider .slick-next {
  height: 20px;
  top: -150px!important;
}
.solSlider .slick-prev{
  left: 85%;
}
.solSlider .slick-next {
  right: 0;
}
.solSlider .item .cardBtn:hover span, 
.solSlider .item .cardBtn:hover svg{
  color: #50C5D4; 
}
/* .solSlider .item.slick-slide.slick-current.slick-active .cardBtn {
  color: #50C5D4; 
}

.solSlider .item.slick-slide.slick-current.slick-active .cardBtn svg path {
  fill: #50C5D4; 
} */
.solSlider .item.slick-slide.slick-current.slick-active {
  box-shadow: 0px 40px 40px 0px #0000000D;
  transition: box-shadow 0.3s ease;
}

/* Login Form */
.login {
  background-image: url(https://442228277.fs1.hubspotusercontent-ap1.net/hubfs/442228277/raw_assets/public/icba/images/login-bg.png) ;
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  display: flex;
}

/* Left text area */
.login .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 150px 100px;
  color: #fff;
}

.login .left .ttl {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.login .left p {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.6;
}

/* Right form area */
.login .right {
  height: 100vh;
  /* overflow: auto; */
  flex: 0.4;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 60px 40px;
  box-shadow: -20px 0px 80px 0px #00000040;
}

/* Form container */
.login .form {
  width: 100%;
  max-width: 380px;
  text-align: center;
}

.login .form img {
  width: 150px;
  margin-bottom: 25px;
}

.login .form-ttl {
  font-size: 30px;
  font-weight: 700;
  color: #121212;
  margin-bottom: 8px;  
  font-family: "Open Sans", sans-serif;
}

.login .form-des {
  color: #545454;
  font-size: 15px;
  margin-bottom: 25px;
  font-family: 'CalibriCustom', sans-serif;
  font-weight: 300;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #676666;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 300;
  color: #545454;
}
.login .right .btn {
  max-width: none;
  border-radius: 7px;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}
.forgot {
  display: block;
  font-size: 16px;
  margin-bottom: 20px;
  color: #545454;
  text-decoration: none;
  text-align: right!important;
  font-family: 'CalibriCustom', sans-serif;
}
/* Login button */

.login .btn.btn-primary {
  background: #50c5d4;
  color: #fff;
  padding: 12px;
  display: block;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.login .btn.btn-primary:hover {
  background: #3eb2c1;
}


/* Food Processing Page */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 150px 20px;
  margin-bottom: 60px;
  color: #fff; 
}

.hero .banner2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; 
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
/* .main .row-fluid-wrapper .row-fluid .span12.widget-span.widget-type-cell{
  display: none !important;
} */

.text-primary{
  color: #50C5D4;
  text-align: right;
  font-size: 24px;
  font-family: 'CalibriCustom', sans-serif;
  font-weight: 700;
  margin: 40px 0
}
.text-left{
  text-align: left!important;
  margin-bottom: 12px!important;
}
.hero .ttl {
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}


/* ✅ Mobile */
@media (max-width: 576px) {
  .hero {
    padding: 100px 15px;
  }

  .hero .ttl {
    font-size: 30px;
  }
  .footer-bottom .right{
    display: flex;
    align-items: start;
    justify-content center;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}
.footer-bottom .right a span{
  display: none;
}
  .footer-bottom .right a{
    display: block;
    margin: 0 0;
}
  
}

.download-bar {
    margin-left: auto;
}


 .download-bar .btn-primary {
 background: #50c5d4;
  color: #fff;
  padding: 18px 35px;
  color: #ffffff;
  border-radius: 32px;
  display: block;
  max-width: none;
  white-space: nowrap;
  text-decoration: none;
  border-color: transparent;
  outline: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-bar  .btn-primary svg {
  margin-left: 8px;
}

.download-bar  .btn-primary:hover {
  background-color: #34b1b1;
}

/* Main Two Column Layout */
.main-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.left-side {
  flex: 2;
}
.left-side .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.left-side .top-bar .heading {
  color: #121212;
  font-size: 40px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
}
.sidebar-box {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-width: 340px;
  min-width: 250px;
}

/* Top header */
.sidebar-box .ttl {
  background-color: #50C5D4; /* Teal/blue background */
  color: #ffffff;
  margin: 0;
  font-family: 'CalibriCustom', sans-serif;
  font-size: 22px;
  font-weight: 400;
  padding: 18px 25px;
}

/* Sidebar list */
.sidebar {
  background-color: white;
  margin: 0;
  list-style: none;
  padding: 0;
}

.sidebar li {
  font-weight: 400;
  color: #121212;
  padding: 18px 25px;
  font-size: 20px;
  font-family: 'CalibriCustom', sans-serif;
  border-bottom: 1px solid #50C5D4;
  cursor: pointer;
  border-radius: 0;
}
.sidebar li.active {
  color: #50C5D4;
}

.sidebar li:last-child {
  border-bottom: none;
}
.italic-des{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-style: italic;
  font-size: 16px;
  color: #545454;
  margin: 20px 0;
}
/* Accordion Styles */
.accordion {
  background-color: transparent;
  color: #414699;
  cursor: pointer;
  padding-top: 30px;
  padding-bottom: 35px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #50C5D4;
  display: flex;
  align-items: center;
  gap: 21px;
}

.accordion::before {
  content: "";
  display: inline-block;
  width: 33px;
  height: 33px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33' fill='none'><path d='M6.54688 11.5833L16.6238 21.6602L26.7007 11.5833' stroke='%23414699' stroke-width='2.41846' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}

.accordion.active::before {
  transform: rotate(-180deg);
}

.panel {
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-top: 20px;
  border-radius: 0 0 5px 5px;
}

.panel ul {
  padding: 15px 0;
  margin: 0;
  list-style: disc;
  padding-left: 20px;
}
.panel ul li{
 font-family: Verdana;
  font-size: 16px;
  color: #545454;
  line-height: 1.4;
}
.panel ul li:not(:last-child){
  margin-bottom: 20px;
}
.panel .arrowTxt{
  display: block;
  margin-bottom: 20px;
  font-family: Verdana;
  font-size: 16px;
  color: #545454;
  line-height: 1.4;
}
.panel p {
  padding: 15px 0;
}

.policy {
  padding-bottom: 60px;
}
.policy ul li, 
.policy ol li, .policy span{
 font-family: Verdana;
  font-size: 16px;
  color: #545454;
}
 .policy span{
  margin-bottom: 16px;
 }
.policy ul li{
  margin-left: 30px;
}
.policy ul li:not(:last-child),
.policy ol li:not(:last-child){
  margin-bottom: 10px;
}
/* Taxation Page */
.forum {
  width: 100%;
}

.forum .table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Maintain your existing styles */
.forum table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
  margin-bottom: 40px;
  min-width: 900px;
}

.forum th,
.forum td {
  border: 1px solid #58a7c7;
  padding: 30px 15px;
  text-align: center;
  vertical-align: middle;
  background: transparent;
}

.forum thead {
  background-color: transparent;
}

.forum th {
  background-color: transparent;
  padding: 40px 20px;
  font-family: 'Verdana Bold', sans-serif;
  font-size: 18px;
  color: #545454;
}

.forum tbody tr:nth-child(even) {
  background-color: transparent;
}

.forum td:first-child {
  width: 35%;
}

.forum td {
  font-size: 14px;
  color: #545454;
}
.forum td a{
  color: #50C5D4;
  display: inline-block;
  margin-bottom: 30px;
}
.forum td span{
  color: #545454;
}
/* ✅ Default: hide the nav EN (for desktop) */
.hide {
  display: none;
}

/* ✅ Show .hide (EN inside nav) and hide .right-section lang-dropdown on mobile */
@media (max-width: 991px) {
  .hide {
    display: block;
  }

  .right-section .lang-dropdown {
    display: none;
  }
}
@media (max-width: 991px) {
  .lang-dropdown {
    display: none;
  }

  .login-btn {
    display: none;
  }
}
/* No design changes — only ensure scroll works smoothly */
@media (max-width: 1024px) {
.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_inline_text {
max-width: 600px;
  }
  .solSlider .slick-prev{
    left: 78%
   }
  .left-side .top-bar .heading {
    font-size: 34px;
    width: 100%;
  }
  .forum .table-container {
    overflow-x: auto;
  }
  .forum table {
    min-width: 900px;
  }
  .insight .searchbar {
    max-width: 100%;
  }
  .searchbar {
    width: 100%;
/*     max-width: 350px; */
  }
  .watermark {
    max-height: 250px;
  }
  nav ul {
    gap: 12px;
  }
  .intro .intro-row {
    flex-wrap: wrap;
  }
  .ingredients {
    padding: 0 12px 50px!important;
}

}
.content-part ul li{
 font-family: Verdana;
  font-size: 16px;
  color: #545454;
  line-height: 1.4;
}
.content-part .arrowTxt{
  display: block;
  margin-bottom: 20px;
  font-family: Verdana;
  font-size: 16px;
  color: #545454;
  line-height: 1.4;
}

/* Video Insights page */
.series {
   padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.series .card-group{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
/*   align-items: center; */
  justify-content: space-between;
}
.series .card-group .card{
  overflow: hidden;
  max-width: 450px;
  margin-bottom: 25px;
}
.series .card-group .card .cardImage {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  height: 320px;

}
.series .card-group .card .cardImage .cardImg{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.series .card-group .card .cardImage .playIcon{
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
}
.series .card-group .card .cardContent{
  padding: 24px;
}
.series .card-group .card .cardContent h2{
  font-family: Verdana Bold;
  font-size: 20px;
  margin-bottom: 8px;
  color: #363636;
  font-weight: 600;
}
/* .series .card-group .card .cardContent p{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  color: #545454;
  margin-bottom: 20px;
} */
.series .card-group .card .card-desc p,
.series .card-group .card .card-desc ul{
  margin-bottom: 20px;
}
.series .card-group .card .cardContent .cardBtn{
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  color: #121212;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

.custom-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 50px;

}
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 215;
  padding: 20px 40px 20px 35px;
  font-size: 20px;
  border: 1px solid #545454;
  background-color: transparent;
  color: #363636;
  cursor: pointer;
  outline: none;
  font-weight: 600;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.select-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; 
  color: #58a7c7;
  transition: transform 0.2s ease;
}

.custom-select:focus + .select-chevron,
.custom-select:active + .select-chevron {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select:hover {
  border-color: #4e99b4;
}
.insight .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.insight .ttl{
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}
.insight .subTtl {
  font-size: 20px;
  color: #FFFFFF;
  font-family: 'Verdana';
  margin-bottom: 24px;
  text-align: center;
}
.insight .searchbar {
  background: #FFFFFF33;
  backdrop-filter: blur(36px)
}
.insight .searchbar input::placeholder{
  color: #ffffff;
  font-size: 20px;
}
.insight .searchbar button {
  background-color: #ffffff;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  padding: 14px;
  border: 0;
  outline: 0;
  display: flex;
  align-items: center;
}

/* Ingredients */
/* .ingredients .item{
  width: 393px;
  height: 444px;
  overflow: hidden;
  border-radius: 15px;
}
.ingredients .item img{
  height: 100%;
  width: 100%;
  object-fit: cover;
} */
.ingredients {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 100px;
  padding-top: 50px;
}

.ingredients .item {
  position: relative;
  max-width: 393px;
  height: 444px;
  overflow: hidden;
  border-radius: 10px;
  width: calc((100% - 75px) / 4);
}

.ingredients .item .txt a{
  text-decoration: none;
  color: #ffffff;
  display: flex;
  gap: 12px;
}

.ingredients .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ingredients .item .txt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 35px;
}

.ingredients .item .txt .ttl {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'Open Sans', sans-serif;
  max-width: 206px;
}
@media (max-width: 1200px) {
  .ingredients .item {
    width: calc((100% - 50px) / 3); /* 3 per row */
  }
}

@media (max-width: 768px) {
  .tips {
   margin-bottom: 75px;
  }
  .ingredients .item {
    width: calc((100% - 25px) / 2); /* 2 per row */
  }
  .solSlider .slick-next, .solSlider .slick-prev {
    top: -80px!important;
   }
.intro-wrapper .widget-type-linked_image img {
  padding-right: 0!important;
}
}

@media (max-width: 480px) {
  .ingredients .item {
    width: 100%; /* single column */
  }
  .download-bar {
width: 100%
}
     .left-side .top-bar .heading {
text-align: center!important;
}

}

/* Emulsifier */
.emulseImg{
  max-height: 780px;
  margin-top: 20px;
  object-fit: contain;
  width: 100%;
}

.flag{
  display: flex;
  align-items: center;
  gap: 20px;
}

.lncs .item {
  width: calc((100% - 75px) / 3)!important;
}
.lncs .item .txt {
    background: rgba(0, 0, 0, 0.25);
}
/* Footer */
footer {
  background-color: #414699;
  color: white;
  padding: 60px 20px 48px;
  width: 100%;
}

.footer-top {
  border-bottom: 1px solid #c1b7b75c;
  padding-bottom: 46px;
}
.footwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-icon {
  height: 18px;
  width: 23px;
  object-fit: contain;
}

.footer-section {
      flex: 1 1 200px;
}
.footer-section:not(:last-child){
  border-right: 1px solid #c1b7b75c
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFFFFF;
  font-size: 22px;
}

.footer-section i {
  margin-right: 10px;
}

.footer-section p,
.footer-section a {
  color: #FFFFFF;
  font-weight: 300;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  font-family: 'CalibriCustom', sans-serif;
}

.newsletter-input {
  display: flex;
  align-items: center;
  margin-top: 10px;
  background-color: #ffffff;
  border-radius: 26px;
  padding: 4px;
}

.newsletter-input input {
  flex: 1;
  padding: 21px;
  border: none;
  outline: none;
  font-size: 14px;
  background-color: transparent;
}

.newsletter-input button {
  background-color: #423f94;
  border: none;
  padding: 0 20px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 30px;
  font-size: 13px;
  color: #ffffff;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .main-wrapper {
    gap: 0;
  }
  .left-side {
    padding-bottom: 0;
  }
  .left-side .top-bar .heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
    .main-wrapper .right-side{
      margin: 0 auto 40px;
    }
    .left-side .top-bar{
    flex-wrap: wrap;
  }
   /* table, thead, tbody, th, td, tr {
    display: block;
  }
  thead {
    display: none;
  }
  tr {
    margin-bottom: 20px;
    border: 1px solid #00a6c0;
    border-radius: 6px;
    overflow: hidden;
  }
  td {
    border: none;
    border-bottom: 1px solid #f2f2f2;
    position: relative;
    padding-left: 50%;
  }
  td::before {
    content: attr(data-label);
    position: absolute;
    left: 20px;
    top: 20px;
    font-weight: bold;
    color: #00a6c0;
  }
  td:last-child {
    border-bottom: none;
  } */
  .solSlider {
    margin-bottom: 30px;
  }
  .ttl {
    font-size: 30px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 28px;
  }
   .divider {
         margin: 30px auto;
   }
  .intro-col .aboutImg {
    max-height: 300px;
  }
  .footer-section h4 {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 18px;
    margin-bottom: 16px
  }
  .footer-section:not(:last-child) {
    border-right: 0;
  }
  .footer-section p{
    text-align: left;
  }
  .footer-bottom .left{
    order: 1;
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
 td b {
    font-size: 14px;
  }
}


/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: move;
  cursor: grab;
  cursor: -webkit-grab;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: 0;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  font-size: 0px;
  cursor: pointer;
  background-color: transparent;
  color: transparent;
  /* top: 50%; */
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 1;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background-color: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-prev:before,
.slick-next:before {
  line-height: 1;
  color: #000;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 0;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "";
}
[dir=rtl] .slick-prev:before {
  content: "";
}
.slick-next {
  /* right: 0; */
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "";
}
[dir=rtl] .slick-next:before {
  content: "";
}

.slick-dots {
  position: absolute;
  bottom: -40px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  width: 40px;
  height: 5px;
  border: 0;
  background-color: rgba(0, 77, 85, 0.6);
  outline: none;
  font-size: 0px;
  color: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
}
.slick-dots li.slick-active button {
  background-color: var(--bs-primary);
  opacity: 1;
}

.intro-wrapper .dnd-column {
   width: 50%;
}

.intro-wrapper .widget-type-linked_image img {
  width: 100% !important;
  padding-right: 70px;
}

.tips.intro {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Additional Styling */
.no-list,
.hs-form-field label,
.hs-form-field .hs-login-widget-show-password 
.hs-form-field #hs_login_reset,
.hs-form-field .hs-login-widget-show-password,
.hs-form-field #hs-login-widget-remember,
#hs-login-self-registration-link p
{
  display: none;
}
.hs-form-field {
    margin-bottom: 15px;
}
.hs-form-field .hs-input{
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #676666;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 300;
    color: #545454;
}
#hs_login_reset{
    color: #545454;
    font-family: CalibriCustom, sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: right !important;
    display: block;
    text-decoration: none;
}
.hs-button.primary.large{
    background: #50c5d4;
    color: #fff;
    padding: 12px;
    display: block;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
    width: 100%;
    outline: 0;
    border: none;
    font-size: 18px;
}