@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700&display=swap");

:root {
  --title-dark-black: #000000;
  --title-light-black: #191919;
  --title-dark-white: #ffffff;
  --title-light-white: #f8fdfb;
  --desc-white: #f4fbf8;
  --desc-black: rgb(78, 95, 119);
  --title-dark-green: #005637;
  --title-light-green: #00bb77;
  --bold-light: #313131;
  --black-light: #777777;
  --desc-light: #676767;
  --button-bg: #00a152;
  --shadow-color: #80c29d;
  --footer-bg: #060b0d;
  --get-foot-bg: #132327;
  --section-green: #00bb77;

  --food-aggregator: #47a8a2;
  --food-data-scraping: #290dea;
  --food-data-api: #a236ec;

  --box-section-bg: #f5f5f5;
  --scrape-section-bg: #f5faf7;
  --slider-bg: #f8f8f8;

  --about-title: #ffa300;


  /* font */

  --font-family: "Poppins", sans-serif;

  /* social */

  --link-size: 64px;
  --trans-property: all 0.3s ease;
}

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

body {
  background-color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none !important;
}

img {
  max-width: 100%;
}

.main {
  overflow: hidden;
}

h1 {
  text-align: start !important;
  font-size: 38px !important;
  /* text-transform: uppercase !important; */
  text-transform: initial !important;
  font-weight: 700 !important;
  color: rgb(6, 43, 71) !important;
  font-family: var(--font-family) !important;
}

h2 {
  font-size: 33px !important;
  text-transform: uppercase !important;
  line-height: 47px !important;
  font-weight: 400 !important;
  letter-spacing: -1px !important;
  font-family: var(--font-family) !important;
}

p {
  text-align: justify;
  font-size: 17px;
  padding-top: 4px;
  font-family: var(--font-family);
  color: var(--desc-black);
  line-height: 25px;
}

/* =========================== button css ================================================== */

.custom-btn {
  color: #fff;
  border-radius: 7px;
  padding: 10px 20px;
  font-family: var(--font-family) !important;
  font-weight: 400 !important;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.custom-btn a {
  color: #fff;
}

.btn-13 {
  background-color: #189991;
  background-image: linear-gradient(147deg, #47a8a2 5%, #21a274 74%);
  border: none;
  z-index: 1;
  text-decoration: none;
  position: relative;
}

.btn-13:hover {
  color: #fff;
  box-shadow: 0 5px 10px rgba(111, 111, 111, 0.2);
  transform: translateY(-2px);
}

.btn-13::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 7px;
  top: 0;
  left: 0;
  background-color: #189991;
  background-image: linear-gradient(147deg, #47a8a2 5%, #21a274 74%);
  z-index: -1;
  transition: all 0.8s ease;
}

.btn-13:hover:before {
  transform: scaleX(1.1) scaleY(1.3);
  opacity: 0;
}

.btn-13:hover:after {
  top: 0;
  height: 100%;
}

.btn-13:active {
  top: 0px;
}

.btn-13 .services-center .center-btn {
  display: flex;
  justify-content: center;
}

.blog-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #47a8a2 5%, #098156 74%);
  padding: 12px 20px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  font-family: var(--font-family) !important;
  transition: all 2s ease;
}

.blog-slider__button:hover {
  color: #fff;
  box-shadow: 0px 10px 50px rgba(56, 252, 160, 0.2);
  background-image: linear-gradient(147deg, #3e9e97 5%, #077951 74%);
  transition: all 2s ease;
}

/* ===================================== thanks btn ============================= */

.error-page-content-wrap h1 {
  display: block !important;
  text-align: center !important;
}

.error-page-content-wrap p {
  display: block !important;
  text-align: center !important;
}

.thanks {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks a {
  width: auto !important;
}

/* ================================================ header & nav ====================================================== */

header {
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(255, 255, 255);
  padding: 0 70px;
  position: sticky;
  font-family: var(--font-family);
  z-index: 2000;
  top: 0;
  left: 0;
  /* justify-content: space-around; */
  justify-content: space-between;
  box-shadow: rgb(0 0 0 / 8%) 0px 8px 51px;
}

.logo {
  padding: 8px 0 10px;
  z-index: 1001;
}

.hamburger {
  display: none;
}

.nav-bar ul {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
}

.nav-bar ul li a {
  display: flex;
  padding: 10px 5px;
  font-size: 17px;
  color: var(--title-dark-black);
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  margin: 0 2px;
  font-family: var(--font-family);
  text-align: start;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.5px;
  background: none;
  justify-content: flex-start;
  align-items: center;
}

.dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-bar ul li {
  margin: 0 15px;
}

.nav-bar ul li a {
  color: var(--title-dark-black) !important;
}

.nav-bar ul li ul .drop-box li a {
  color: var(--title-dark-black) !important;
  padding: 10px 15px;
  transition: all ease;
  font-size: 15px;
  white-space: normal;
}

.nav-bar ul li a:hover {
  color: var(--title-light-green) !important;
}

.nav-bar ul li ul .drop-box li a:hover {
  color: var(--title-dark-white) !important;
  transition: all ease;
  background: linear-gradient(32.2deg,
      rgb(39, 111, 83) 0%,
      rgb(29, 184, 125) 100%) !important;
}

.nav-bar ul li ul .drop-box li div {
  height: 45px;
  width: 45px;
  min-width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  border-radius: 10px;
  box-shadow: rgb(6 43 71 / 6%) 6.6px 6.6px 18.6px;
}

.nav-bar ul li ul .drop-box li a:hover {
  background: linear-gradient(32.2deg,
      rgb(39, 111, 83) 0%,
      rgb(29, 184, 125) 100%);
  border-radius: 10px;
}

.nav-bar ul li ul .drop-box li a:hover div {
  background: #fff;
}

.nav-bar .active {
  color: var(--title-dark-green);
  font-weight: 500 !important;
}

.dropdown i {
  font-size: 20px;
  font-weight: 600;
  color: var(--title-dark-black);
}

.nav-bar ul li:hover i {
  color: var(--title-light-green) !important;
  transition: 0.5s;
}

.drop-box a img {
  display: block;
  max-width: 38px;
}

.dropdown.opens i {
  transform: rotate(-180deg);
  /* color: var(--title-light-green) !important; */
}

/* .dropdown.opens a {
    color: var(--title-light-green) !important;
} */

/* ------------------- header -------------------------- */

@media screen and (max-width: 1500px) {
  header {
    padding: 0 10px;
  }
}

/* ============================================================== home & banner =========================================== */

.food-home-page {
  padding: 20px 40px;
}

.food-home-page h2,
h1,
p {
  display: flex;
  align-items: center;
}

.food-text {
  /* padding-left: 200px; */
  /* padding-right: 50px; */
  z-index: 2;
  position: relative;
  margin: 20px auto;
}

.food-text .tag-title {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(124, 190, 223);
  margin-bottom: 10px;
}

.start-btn {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 10px;
}

.food-text h1 {
  text-transform: capitalize !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 45px !important;
  /* font-size: 35px !important; */
  line-height: 60px !important;
  /* line-height: 50px !important; */
  margin-bottom: 10px;
}

.food-text p {
  font-size: 18px !important;
  text-align: start !important;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 29px !important;
  display: block;
}

.home-right-img {
  display: flex;
  justify-content: center;
  align-items: end;
}

.food-home-img .home-right-img img {
  align-items: end;
  display: flex;
  justify-content: center;
}

.image-container {
  position: absolute !important;
  margin-bottom: 50px !important;
}

/* ============================== home blog  ============================ */

/* 
.blog-slider {
    width: 100%;
    position: relative;
    max-width: 768px;
    margin: auto;
    background: #fff;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 25px;
    height: 400px;
    transition: all .3s;
    cursor: pointer;
}
  
   

    
.blog-slider .swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: .2s;
    transition: all 0.5s ease-in;
}
    
.blog-slider .swiper-slide-active .blog-slider__content > * {
    opacity: 1;
    transform: none;


}
  
  
.blog-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    border-radius: 20px;
    transform: translateX(-80px);
    overflow: hidden;;
  }
    
.blog-slider:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(147deg, #179b00e1 0%, #27af76 74%);
    border-radius: 20px;
    opacity: 0.8;
    cursor: pointer;
}
    
.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    border-radius: 20px;
    transition: all .3s;
}
    
    
   
@media screen and (max-width: 768px) {
    .blog-slider__img{
        transform: translateY(-50%);
        width: 90%;
    }
}

@media screen and (max-width: 576px) {
    .blog-slider__img{
        width: 95%;
    }
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider__img{
        height: 270px;
    }
}

  
.blog-slider__content {
    padding-right: 25px;
}

@media screen and (max-width: 768px) {
    .blog-slider__content{
        margin-top: -80px;
        text-align: center;
        padding: 0 30px;
    }
}
    
@media screen and (max-width: 576px) {
    .blog-slider__content{
        padding: 0;
    }
}

.blog-slider__content > * {
    opacity: 0;
    transform: translateY(25px);
    transition: all .4s;  
}
    
  
  
.blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}
  
.blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
}
  
.blog-slider__text {
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.5em;
    font-family: var(--title-light-white) !important;
}
  
.blog-slider__button {
    display: inline-flex;
    background-image: linear-gradient(147deg, #47a8a2 5%, #005637 74%);
    padding: 15px 35px;
    border-radius: 50px;
    color: #fff;
    box-shadow: 0px 14px 80px rgba(252, 56, 56, 0.4);
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
    font-family: var(--font-family) !important;
}

.blog-slider__button:hover{
    color: #fff;
    box-shadow: 0px 14px 80px rgba(223, 252, 56, 0.4);
    background-image: linear-gradient(147deg, #80c29d 5%, #047c42 74%);
    transition: all 1s ease;

}

@media screen and (max-width: 576px) {
    .blog-slider__button{
        width: 100%;
    }
} 


.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
    
}

.blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px!important;
    text-align: center;
    left: auto!important;
    top: 50%;
    bottom: auto!important;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    .blog-slider__pagination{
        transform: translateX(-50%);
        left: 50%!important;
        top: 205px;
        width: 100%!important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 8px 3px !important;
}

@media screen and (max-width: 768px) {
    .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
        margin: 0 5px;
    }
}
    
.blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all .3s;
}

.blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #005637;
    height: 30px;
    box-shadow: 0px 0px 20px rgba(252, 56, 56, 0.3);
}
        
@media screen and (max-width: 768px) {
    .blog-slider__pagination .swiper-pagination-bullet{
        height: 11px;
        width: 14px;
    }
}



@media screen and (max-width: 1600px) {
    .blog-slider{
        max-width: 720px;
        height: 400px;
    }

    .blog-slider__img {
        height: 240px;
        width: 240px;
    }
}

@media screen and (max-width: 1420px) {
    .blog-slider{
        max-width: 650px;
        height: 400px;
    }

    .blog-slider__img {
        transform: translateX(-100px);
    }
}
  
@media screen and (max-width: 1300px) {
    .blog-slider{
        height: 380px;
        max-width: 600px;
    }

    .blog-slider__img {
        transform: translateX(-75px);
    }
}

@media screen and (max-width: 1228px) {
    .blog-slider{
        height: 380px;
        max-width: 580px;
    }
}

@media screen and (max-width: 1228px) {
    .blog-slider{
        height: 350px;
        max-width: 550px;
    }

    .blog-slider__img {
        height: 230px;
        width: 230px;
    }

    
}

@media screen and (max-width: 1055px) {
    .blog-slider{
        height: 350px;
        max-width: 500px;
        padding: 0px;
    }

    .blog-slider__img {
        height: 200px;
        width: 200px;
        transform: translateX(-50px);
    }

    .blog-slider__button {
        padding: 8px 35px;
    }
    
    .blog-slider__text {
        margin-bottom: 20px;
        line-height: 1.3em;
    }
}

@media screen and (max-width: 993px) {
    .blog-slider{
        height: 350px;
        max-width: 650px;
        padding: 10px;
    }

    .blog-slider__img {
        height: 230px;
        width: 230px;
        transform: translateX(-90px);
    }
}
  
  

    
@media screen and (max-width: 768px) {
    .blog-slider__item{
        flex-direction: column;
    }

    .blog-slider__img {
        transform: translateX(0%);
        transform: translateY(0%);
    }

    .blog-slider{
        height: 500px;
    }
    .blog-slider__content {
        margin-top: 0px;
        text-align: center;
        padding: 15px 30px;
    }

    .blog-slider__pagination {
        bottom: 0px !important;
        top: 20px;
        transform: translateX(0%);
        right: 0;
        left: 0 !important;
        position: relative;
    }
}


@media screen and (max-height: 501px) and (min-width: 992px) {
    .blog-slider{
        height: 350px;
    }
}
  
  .blog-slider__item {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 500px) {
    .blog-slider{
        max-width: 500px;
    }
}


@media screen and (max-width: 405px) {
    .blog-slider__img {
        height: 180px;
        width: 180px;
    }

    .blog-slider{
        height: 470px;
    }
}

@media screen and (max-width: 405px) {
    .blog-slider__img {
        height: 160px;
        width: 160px;
    }

    .blog-slider{
        height: 500px;
    }
}
 */

/* ===================================================== brand box ================================================== */

.food-brand {
  padding: 60px 0;
}

.grid-box-main {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin-top: 30px;
}

.grid-box img {
  border: 1px solid #b8b7b7;
  padding: 15px;
  height: 85px;
  object-fit: contain;
  width: 100%;
}

.grid-box {
  cursor: pointer;
}

.grid-box img {
  filter: grayscale(1);
  transition: 0.4s ease-in-out;
}

.grid-box:hover img {
  filter: grayscale(0);
  transition: 0.4s ease-in-out;
}

/* ==================================================== green section ========================================================= */

.green-section {
  background: #fff;
  padding: 50px;
  border-bottom: 1px solid rgba(78, 95, 119, 0.15);
}

.green-left {
  text-align: start;
  margin-top: 30px;
  background: linear-gradient(-77.79deg,
      rgb(250, 250, 250) 17.79%,
      #e6fffd 82.21%);
  padding: 20px 30px;
  border-radius: 15px;
  position: relative;
}

.green-left:hover .convert-icon {
  left: -10%;
  transition: all 0.5s ease-in-out;
}

.convert-icon {
  position: absolute;
  left: -13%;
  top: -25%;
  transform: rotate(180deg);
}

.convert-icon i {
  font-size: 65px;
  color: #00a152;
}

.green-left p {
  color: rgb(6, 43, 71);
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.green-right {
  text-align: start;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.gr-cont {
  display: flex;
  align-items: center;
}

.gr-cont div {
  display: flex;
  align-items: center;
}

.gr-cont div h2 {
  margin-right: 10px;
}

.gr-cont img {
  height: auto;
  width: 70px;
  margin-right: 20px;
}

.green-right .center-btn a {
  margin-top: 0 !important;
}

.green-right h2 {
  font-family: var(--font-family);
  color: var(--title-dark-black);
  font-size: 30px;
  text-transform: capitalize !important;
  font-weight: 600 !important;
  letter-spacing: 0.2px;
  line-height: 42px;
  margin-bottom: 0;
}

.green-right span {
  color: rgb(6, 43, 71);
  font-family: var(--font-family);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.green-right p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 26px;
  color: rgb(6, 43, 71);
  padding-top: 1px;
  font-weight: 400;
}

/* ----------------------------------------- always section ---------------------------------------- */

.always-section {
  margin: 30px 0;
}

.always-bg {
  position: relative;
  padding-top: 100px;
  padding-bottom: 80px;
  background: linear-gradient(-77.79deg,
      rgb(250, 250, 250) 17.79%,
      #e6fffd 82.21%);
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
  max-width: 1700px;
  margin: 0 auto;
}

.always-content {
  max-width: 1033px;
  margin: 0px auto;
  position: relative;
}

.always-content h2 {
  font-family: var(--font-family);
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 40px !important;
  line-height: 53px !important;
  text-align: center;
  color: rgb(6, 43, 71) !important;
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 20px;
}

.always-content p {
  font-family: var(--font-family);
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 17px !important;
  line-height: 30px !important;
  color: rgb(78, 95, 119) !important;
  text-align: center;
  margin-bottom: 20px;
  display: block;
}

.center-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.common-btn {
  display: block;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  padding: 12px 40px 12px;
  font-family: var(--font-family);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  color: rgb(9, 55, 90);
  border: 2px solid rgb(124, 190, 223);
  background-color: transparent;
  border-radius: 7px;
  text-decoration: none;
  transform: translateZ(0px);
  transition: all 0.3s ease 0s;
  font-size: 17px;
  line-height: 29px;
  text-transform: initial !important;
}

.common-btn:hover {
  border-color: rgb(8, 147, 189);
  color: rgb(9, 55, 90);
}

.common-btn-hover:hover {
  background-color: rgb(8, 147, 189);
  border-color: rgb(8, 147, 189);
  color: #fff;
}

.alw-img-1 {
  width: 80px;
  position: absolute;
  bottom: 0px;
  left: -75px;
}

.alw-img-2 {
  width: 65px;
  position: absolute;
  top: -20px;
  left: -130px;
}

.alw-img-3 {
  width: 75px;
  position: absolute;
  top: -10px;
  right: -80px;
}

/* ==================================================== data box ===================================================== */

.data-box {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.data-box-title {
  max-width: 1050px;
  margin: 0 auto;
}

.data-box-title h2 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 38px !important;
  line-height: 53px !important;
  text-align: center !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
}

.main-data-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  gap: 20px;
  row-gap: 30px;
  position: relative;
}

.main-data-box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 120px;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%,
      rgb(166, 221, 227) 0%,
      rgba(139, 214, 222, 0) 100%);
  opacity: 0.3;
  z-index: 20;
}

.text-box {
  text-align: center;
  justify-content: center;
  padding: 25px;
  width: 180px;
  min-height: 180px;
  background: linear-gradient(-77.79deg,
      rgb(250, 250, 250) 17.79%,
      #f6fff8c1 82.21%);
  margin: auto;
}

.text-box:nth-of-type(1) {
  border-bottom-left-radius: 90px;
}

.text-box:nth-of-type(2) {
  border-top-left-radius: 90px;
  border-bottom-right-radius: 90px;
}

.text-box:nth-of-type(4) {
  border-top-left-radius: 90px;
  border-bottom-left-radius: 90px;
  border-bottom-right-radius: 90px;
}

.text-box:nth-of-type(5) {
  border-bottom-left-radius: 90px;
}

.text-box:nth-of-type(6) {
  border-top-left-radius: 90px;
  border-bottom-left-radius: 90px;
}

.text-box:nth-of-type(3) {
  border-top-left-radius: 90px;
}

.text-box h3 {
  font-size: 28px;
  display: flex;
  justify-content: center;
  font-weight: 700;
  color: rgb(4, 145, 166) !important;
}

.text-box p {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
  color: rgb(6, 43, 71) !important;
}

/* =================================================== gif animation ============================== */

.transformation-animation {
  max-width: 95%;
  width: 1100px;
  margin: 0px auto;
}

.transformation-center {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  margin-top: 20px;
}

.transformation-center .transformation-leftside-img {
  opacity: 0.5;
  margin-bottom: 165px;
  width: 359px;
  transform: translateX(130px);
}

.transformation-center .transformation-rightside-img {
  opacity: 0.5;
  margin-top: 165px;
  width: 359px;
  transform: translateX(130px);
}

.transformation-circle {
  width: 225px;
  height: 225px;
  border-radius: 5px;
  box-shadow: 0 2px 30px #da65bf02;
  /*background: lighten(#f0f4c3, 10%);*/
  position: relative;
  overflow: hidden;
  /* transform: translate3d(0, 0, 0); */
  transform: translateX(-335px);
}

.transformation-circle .wave {
  opacity: 0.4;
  position: absolute;
  top: 12%;
  left: 12%;
  background: #10def6;
  width: 175px;
  height: 175px;
  /* margin-left: -100px; */
  /* margin-top: -100px; */
  transform-origin: 50% 46%;
  border-radius: 44%;
  animation: drift 3000ms infinite linear;
}

.transformation-circle .wave-one {
  animation: drift 5000ms infinite linear;
}

.transformation-circle .wave-two {
  animation: drift 4000ms infinite linear;
  opacity: 0.3;
  background: #2200817d;
}

.transformation-circle .wave-three {
  animation: drift 3000ms infinite linear;
  background: #00c771;
}

.transformation-circle::after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  transform: translate3d(0, 0, 0);
}

.transformation-title {
  position: absolute;
  left: 15%;
  top: 11%;
  width: 70%;
  z-index: 1;
  text-align: center;
  transform: translate3d(0, 0, 0);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 50%;
}

.transformation-title .transformation-mobile-img {
  width: 58px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.transformation-title .transformation-text-img {
  width: 100%;
}

@keyframes drift {
  from {
    transform: rotate(0deg);
  }

  from {
    transform: rotate(360deg);
  }
}

/* ========================================== our services ============================================== */

/* .our-services {
    padding: 100px 0 120px;
    position: relative;
}

.overlay {
    display: flex;
    justify-content: center;
    position: relative;
}

.overlay h3 {
    font-size: 170px !important;
    font-weight: 700 !important;
    opacity: .1 !important;
    position: absolute !important;
}

.services-data p {
    padding-top: 154px !important;
    text-align: end !important;
    font-size: 22px !important;
    line-height: 36px !important;
    font-family: var(--font-family) !important;
    color: var(--desc-black) !important;
    font-weight: 400 !important;
}

.overlay .black-line:after {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    right: 0;
    display: block;
    width: 1px;
    height: 55%;
    border-left: 1px solid var(--title-dark-black);
}

.services-data {
    padding: 0 10px;
}

.services-data h2 {
    padding-top: 113px !important;
    font-size: 84px !important;
    font-weight: 700 !important;
    text-align: start !important;
    font-family: var(--font-family) !important;
    color: var(--title-light-green) !important;
    line-height: 100px !important;
}


.animation {
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
}
.animation--infinite {
  animation-iteration-count: infinite;
}
.animation--up-down {
  animation-name: upDown;
}

@keyframes upDown {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

.figure1 {
    z-index: 5;
}

.figure2 {
    z-index: 4;
} */
/* ============================================== food-data-scrap ============================================ */

.food-data {
  padding: 90px 50px;
  background: #fff;
}

.box-food-data {
  padding: 30px 40px;
  background: linear-gradient(-77.79deg,
      rgb(248, 248, 248) 17.79%,
      #edfff7 70.21%);
  margin-bottom: 40px;
  border-radius: 20px;
}

.food-data p {
  color: rgb(6, 43, 71);
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.food-data h3 {
  color: var(--title-dark-green);
  font-family: var(--font-family);
  font-weight: 600;
  display: inline-block;
  text-transform: capitalize;
  font-size: 22px;
}

.food-data .container .row:nth-child(1),
.food-data .container .row:nth-child(3) {
  justify-content: start !important;
}

.food-data .container .row:nth-child(2) {
  justify-content: end !important;
}

/* ============================================= restaurent data ====================================================== */

.restaurant-box {
  padding: 50px 0 50px;
}

.rest-con h2 {
  font-size: 35px !important;
  font-weight: 600 !important;
  font-family: var(--font-family) !important;
  color: rgb(6, 43, 71) !important;
  margin-bottom: 0;
}

.rest-con p {
  color: rgb(6, 43, 71) !important;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.2px;
  margin-bottom: 0;
}

.main-rest-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 50px 0;
}

.rest-box {
  padding: 10px 20px;
  height: 88px !important;
  background: linear-gradient(-77.79deg,
      rgb(250, 250, 250) 17.79%,
      #e6fffd 82.21%);
  display: flex;
  align-items: center;
  border-radius: 20px;
}

.rest-box .rest-icon {
  /* background: linear-gradient(147deg, #47a8a2 5%, #005637 74%); */
  background: linear-gradient(45deg, rgb(104 241 255) 0%, rgb(0 170 195) 100%);
  margin-right: 15px;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.rest-icon img {
  height: 40px;
  width: 40px;
}

.rest-box h4 {
  font-size: 20px;
  color: rgb(4, 145, 166);
  font-weight: 600;
  font-family: var(--font-family);
  margin-bottom: 0;
}

.rest-box p {
  color: rgb(6, 43, 71);
  font-family: var(--font-family) !important;
  font-size: 15px;
  text-align: start;
  font-weight: 500;
  letter-spacing: 0.1px;
  margin-bottom: 0;
  padding: 0;
}

/* ======================================================== slider ========================================================= */

.flickity-viewport {
  height: 500px !important;
}

.min-h-screen {
  min-height: 70vh !important;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px var(--button-bg);
}

.flickity-button {
  color: var(--button-bg) !important;
}

.flickity-page-dots .dot.is-selected {
  background: var(--button-bg) !important;
}

.min-h-screen {
  background: var(--slider-bg);
}

.px-2 img {
  border-radius: 5px !important;
  width: 100%;
}

/* ========================================= review box ============================================ */

/* .re-icon {
    text-align: center;
    width: 130px !important;
    height: 140px;
    border-radius: 5px;
    filter: drop-shadow(0 0 4px rgba(5, 117, 229, 0.15));
    background-color: #ffffff;
    margin: 15px 10px !important;
    padding: 18px 10px !important;
    cursor: pointer;
    display: flex;
}

.re-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 8px rgba(5, 229, 162, 0.15));
    transition: all 0.5s ease-in-out;
}

.review-i-block {
    display: inline-block!important;
}

.re-icon p {
    text-transform: capitalize;
    display: block;
    text-align: center;
    padding-top: 15px;
} */

.review-box h2 {
  color: rgb(6, 43, 71);
  font-family: var(--font-family) !important;
  font-weight: 700 !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
}

.review-box p {
  color: rgb(6, 43, 71);
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: center;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.review-box .swiper-wrapper .swiper-slide {
  border-radius: 10px;
  box-shadow: rgb(143 143 143 / 27%) 0px 3px 3px 0px,
    rgb(242 255 242 / 72%) 1px 1px 0px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.mySwiper .swiper-wrapper {
  margin-top: 30px;
  padding: 5px;
  align-items: center;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-box .swiper-wrapper .swiper-slide a img {
  border-radius: 10px;
}

.review-box .swiper-wrapper .swiper-slide p {
  margin-bottom: 0;
  display: block;
  text-align: center;
  font-size: 16px;
  color: var(--title-dark-black);
  font-weight: 500;
  font-family: var(--font-family);
}

/* =============================================== left = right =================================================== */

.main-food-section {
  padding: 80px 0;
}

.list-style li {
  position: relative;
}

.food-pd {
  padding: 10px 20px !important;
}

.food-pd h2 {
  /* font-size: 33px !important;
    font-weight: 700!important;
    font-family: var(--font-family) !important;
    line-height: 38px !important;
    padding-bottom: 10px;
    color: var(--title-dark-black);
    text-transform: capitalize !important; */

  color: rgb(6, 43, 71);
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
}

.food-pd p {
  color: rgb(78, 95, 119);
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.justify {
  text-align: justify !important;
  padding: 10px 0 !important;
  font-family: var(--font-family) !important;
}

.food-pd ul {
  padding-left: 2rem;
}

.food-pd ul li {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 35px;
  color: rgb(78, 95, 119);
  position: relative;
}

.food-pd ul li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgb(16, 190, 117);
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  top: calc(50% - 0px);
  left: -26px;
  transform: translateY(-50%);
}

.food-pd ul li:nth-of-type(1)::after {
  background-color: rgb(238, 98, 77);
}

.food-pd ul li:nth-of-type(3)::after {
  background-color: rgb(13, 138, 233);
}

.quotes-Decorations {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 20px 0px;
}

.quotes-icon {
  display: block;
  width: 45px;
}

.quotes-line {
  width: calc(100% - 60px);
  height: 1px;
  background-color: rgb(231, 241, 244);
}

/* ========================= video ========================= */

.food-video-banner {
  border-radius: 10px;
  margin: auto 0;
  max-width: 600px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 338px;
}

.food-video-banner iframe {
  width: 100%;
  height: 100%;
}

.food-video-banner img {
  width: 100%;
  height: 100%;
}

.food-video-banner #player {
  display: none;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.play-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  border: 0;
}

.play-btn i {
  font-size: 80px;
  color: rgb(255 4 4);
}

/* =================================================== testimonial ==================================================== */

.new-testimonial {
  padding: 40px 0;
}

.new-testimonial-heading {
  margin-bottom: 50px;
}

.new-testimonial-heading h2 {
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 36px !important;
  line-height: 58px !important;
  color: rgb(6, 43, 71) !important;
  font-family: var(--font-family) !important;
  margin-bottom: 15px;
  text-transform: capitalize !important;
  text-align: center;
}

.new-testimonil-data {
  max-width: 535px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(225.02deg, rgb(243, 243, 243) 0%, #e6f7ff 92.34%);
  border-top-left-radius: 55px;
  border-bottom-right-radius: 55px;
  height: 470px;
}

.new-testimonil-data-img-box {
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(6 43 71 / 7%) 6.6px 6.6px 18.6px;
  border-radius: 100px;
  width: 140px;
  height: 140px;
  position: relative;
  margin: 0 auto;
}

.new-testimonil-data-img-box img {
  max-width: 98%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 100px;
}

.new-testimonial-pera {
  margin-top: 15px;
}

.new-testimonial-pera p {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: rgb(78, 95, 119);
  opacity: 0.8;
}

.new-testimonial-title h3 {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  color: rgb(6, 43, 71);
}

.new-testimonial-title h6 {
  font-weight: 600;
  font-size: 16px;
  color: rgb(5, 33, 54);
  opacity: 0.7;
}

.new-testimonial-content .swiper .swiper-button-next,
.new-testimonial-content .swiper .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 1px);
}

.new-testimonial-content .swiper .swiper-button-next::after,
.new-testimonial-content .swiper .swiper-button-prev::after {
  font-size: 24px !important;
  font-weight: 900 !important;
  color: rgb(124, 190, 223);
}

/* ================================================ our location ============================================== */

.ft-pads h5 {
  text-align: start;
  font-size: 20px;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  font-family: var(--font-family) !important;
  font-style: normal;
  line-height: 36px !important;
  color: rgb(6, 43, 71) !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 0;
}

.ft-pads span {
  text-align: start;
  font-size: 15px;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  font-family: var(--font-family) !important;
  font-style: normal;
  line-height: 36px !important;
  color: rgb(6, 43, 71) !important;
  letter-spacing: 0.8px !important;
}

.ft-pads ul li p {
  text-align: start;
  font-size: 20px !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  font-family: var(--font-family) !important;
  font-style: normal;
  line-height: 30px !important;
  color: rgb(6, 43, 71) !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 0;
}

.ft-pads ul li p span {
  display: flex !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  font-family: var(--font-family) !important;
  text-align: start !important;
  color: rgb(6, 43, 71) !important;
}

.ft-pads ul li a {
  font-family: var(--font-family) !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 500;
  text-align: start !important;
  color: rgb(6, 43, 71) !important;
}

.ft-pads ul {
  padding-left: 0;
}

.ft-pads ul li img {
  width: 45px;
  height: 40px;
  margin-right: 10px;
}

.main-contact {
  position: relative;
}

.main-contact .chart-contact {
  position: absolute;
  width: 80px;
  top: 125px;
  left: -40px;
}

.main-contact .circle-contact {
  position: absolute;
  width: 56px;
  bottom: 120px;
  left: -53px;
}

/* ============================================== footer ======================================================= */

/* .food-footer {
    padding: 80px 0;
    position: relative;
    background-image: linear-gradient(
  0deg,
  hsl(204deg 100% 99%) 0%,
  hsl(203deg 97% 99%) 77%,
  hsl(202deg 95% 99%) 87%,
  hsl(200deg 93% 99%) 92%,
  hsl(199deg 90% 98%) 95%,
  hsl(198deg 88% 98%) 97%,
  hsl(197deg 85% 98%) 98%,
  hsl(196deg 83% 98%) 99%,
  hsl(195deg 80% 98%) 100%,
  hsl(193deg 78% 97%) 100%,
  hsl(192deg 76% 97%) 100%,
  hsl(191deg 73% 97%) 101%,
  hsl(192deg 74% 97%) 101%,
  hsl(193deg 75% 97%) 101%,
  hsl(193deg 75% 98%) 101%,
  hsl(194deg 75% 98%) 101%,
  hsl(195deg 75% 98%) 101%,
  hsl(196deg 74% 98%) 100%,
  hsl(197deg 73% 98%) 100%,
  hsl(198deg 72% 99%) 100%,
  hsl(198deg 69% 99%) 100%,
  hsl(199deg 65% 99%) 100%,
  hsl(200deg 60% 99%) 100%
);

}

.foot-width {
    max-width: 1580px;
    margin: 0 auto;
}

@media screen and (max-width: 1400px){
    .foot-width {
        width: auto;
        margin: 0 auto;
    }
}

.foot-logo {
    margin-bottom: 20px;
}


.food-footer ul {
    padding-left: 0px !important;
}


.foot-pera p {
    font-family: var(--font-family) !important;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    margin-top: 10px;
    color: rgb(78, 95, 119);
    text-align: start;
    letter-spacing: 0.2px;
}

.food-footer h5 {
    font-family: var(--font-family) !important;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: rgb(6, 43, 71);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    
}

.footer-address-list li {
    display: flex !important;
    padding-right: 9px;
    align-items: center;
    margin-bottom: 10px;
}

.ftr-details li {
    margin-bottom: 20px;
}

.footer-address-list li a {
    font-family: var(--font-family) !important;
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 23px;
    text-decoration: none;
    color: rgb(78, 95, 119);
    letter-spacing: 0.2px;
}

.footer-address-list li img {
    padding-right: 5px;
}

.link-hover a {
    padding: 3px 0 !important;
    position: relative !important;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s !important;
    z-index: 1 !important;
}


.footer-address-list li > span {
    position: relative !important;
    top: 5px !important;
}

.footer-address-list li i {
    margin: 0 15px 0 0 !important;
    display: initial !important;
    font-size: 21px !important;
    color: var(--title-dark-white);
}

.footer-address-list li p {
    font-weight: 600 !important;
    font-size: 18px !important;
    font-family: var(--font-family) !important;
    line-height: 25px !important;
    display: block !important;
    color: var(--title-dark-white);
    margin-bottom: 0;
}

.footer-address-list li p span {
    display: flex !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    font-family: var(--font-family) !important;
}

.copy-right p {
    font-family: var(--font-family) !important;
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    text-decoration: none;
    color: rgb(78, 95, 119);
    letter-spacing: 0.2px;
}

.foot-client a img {
    width: 136px;
}

.footer-copyrights- p {
    color: var(--title-dark-white);
    text-align: start;
    padding-top: 10px;
}

.food-social-icons {
    margin-top: 20px;
}

.foot-client-content {
    padding-top: 8px;
}

.foot-client {
    padding: 10px;
}

.food-social-icons a {
    margin-right: 5px;
}

.food-social-icons i {
    font-size: 26px;
}

.food-social-icons a:nth-child(1) i {
    color: #3b5998 !important;
}

.food-social-icons a:nth-child(2) i{
    color: #c8232c !important;
}

.food-social-icons a:nth-child(3) i{
    color: #0A66C2 !important;
}

.food-social-icons a:nth-child(4) i{
    color: rgb(214, 41, 118) !important;
}

.food-social-icons a:nth-child(5) i{
    color: #000 !important;
}

.food-social-icons a:nth-child(6) i{
    color: #00acee !important;
}

.food-social-icons a:nth-child(7) i{
    color: rgb(250, 0, 0) !important;;
}

.foot-btn a {
    color: var(--title-dark-white);
}

.foot-contact {
    display: block;
    font-family: var(--font-family) !important;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 23px;
    text-decoration: none;
    color: rgb(78, 95, 119);
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

.foot-contact:hover {
    color: rgb(78, 95, 119);
}
 */

/* ================================== new footer ============================== */

.new-footer {
  padding: 50px 0px 10px;
  background-image: linear-gradient(0deg,
      hsl(204deg 100% 99%) 0%,
      hsl(203deg 97% 99%) 77%,
      hsl(202deg 95% 99%) 87%,
      hsl(200deg 93% 99%) 92%,
      hsl(199deg 90% 98%) 95%,
      hsl(198deg 88% 98%) 97%,
      hsl(197deg 85% 98%) 98%,
      hsl(196deg 83% 98%) 99%,
      hsl(195deg 80% 98%) 100%,
      hsl(193deg 78% 97%) 100%,
      hsl(192deg 76% 97%) 100%,
      hsl(191deg 73% 97%) 101%,
      hsl(192deg 74% 97%) 101%,
      hsl(193deg 75% 97%) 101%,
      hsl(193deg 75% 98%) 101%,
      hsl(194deg 75% 98%) 101%,
      hsl(195deg 75% 98%) 101%,
      hsl(196deg 74% 98%) 100%,
      hsl(197deg 73% 98%) 100%,
      hsl(198deg 72% 99%) 100%,
      hsl(198deg 69% 99%) 100%,
      hsl(199deg 65% 99%) 100%,
      hsl(200deg 60% 99%) 100%);
}

.new-footer-wrapper {
  /* max-width: 95%;
  width: 1570px;
  margin: 0px auto; */

  max-width: 100%;
  width: calc(100% - 140px);
  margin: 0px auto;
}

.new-footer-head-row {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  align-items: center;
}

.new-footer-head-left {
  width: 40%;
}

.new-foot-head-logo {
  margin-bottom: 20px;
}

.new-foot-head-content {
  margin-bottom: 20px;
}

.new-foot-head-content p {
  color: rgb(78, 95, 119);
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.new-footer-head-right {
  width: 33%;
}

.new-foot-head-contact {
  padding: 5px;
}

.new-foot-title-tag {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 800;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(107 196 241);
  position: relative;
}

.new-foot-title-tag::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 160px;
  right: 0px;
  height: 2px;
  background: rgb(107 196 241);
  width: 12%;
  border-radius: 50px;
}

.new-foot-contact-details {
  margin-top: 20px;
}

.new-foot-contact-flex {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 12px;
}

.new-foot-contact-flex i {
  font-size: 18px;
  font-weight: 500;
  margin-right: 6px;
  color: rgb(8, 147, 189);
}

.new-foot-contact-details a {
  display: inline-block;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  text-decoration: none;
  color: #000;
  letter-spacing: 0.8px;
  margin-bottom: 0px;
}

.new-foot-contact-details a:hover {
  color: rgb(81, 170, 214);
}

.new-foot-contact-details span {
  display: block;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  text-decoration: none;
  color: #000;
  letter-spacing: 0.2px;
  margin-bottom: 0px;
}

.new-footer-main-row {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
  /* border-bottom: 1px solid #09798730; */
  padding-bottom: 18px;
}

.new-footer-main-first {
  width: 30%;
  margin-top: 30px;
  margin-right: 20px;
}

.new-footer-main-second {
  width: 18%;
  margin-top: 30px;
  margin-right: 20px;
}

.new-footer-main-third {
  width: 12%;
  margin-top: 30px;
  margin-right: 20px;
}

.new-footer-main-four {
  width: 35%;
  margin-top: 30px;
}

.new-foot-main-title-tag {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(107 196 241);
}

.new-foot-main-first-row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  margin-top: 15px;
}

.new-foot-first-logo {
  width: 48%;
  margin-bottom: 20px;
}

.new-foot-first-logo a {
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  text-decoration: none;
  color: rgb(56, 71, 92);
  letter-spacing: 0.4px;
  margin-left: 10px;
}

.new-foot-first-logo a:hover {
  color: rgb(81, 170, 214);
}

.new-foot-main-commen-row {
  margin-top: 15px;
}

.new-foot-main-commen-row a {
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  color: rgb(56, 71, 92);
  letter-spacing: 0.4px;
  margin-bottom: 20px;
  display: block;
}

.new-foot-main-commen-row a:hover {
  color: rgb(81, 170, 214);
}

.new-foot-main-achievement-row {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-around;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
}

.new-foot-main-achievement-row .achievement-logo {
  width: calc(45% - 40px);
  min-width: 30%;
  margin-bottom: 25px;
  margin-top: 15px;
}

.new-foot-main-achievement-row .achievement-logo img {
  width: 100%;
}

/* ---------- footer social ---------------- */

.new-footer-social {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.new-footer-social-icon {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 40px;
  height: 40px;
  margin: 8px 10px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: all 0.3s ease;
}

.new-footer-social-icon i {
  margin: auto;
  font-size: 22px;
  color: #67798e;
  z-index: 1;
  transition: all 0.3s ease;
}

.new-footer-social-icon svg {
  margin: auto;
}

.new-footer-social-icon svg path {
  fill: #67798e;
}

.new-footer-social-icon:after {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  transform: translate(0, 50px);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.new-footer-social-icon.facebook:after {
  background-color: #1769ff;
}

.new-footer-social-icon.pinterest:after {
  background-color: #c8232c;
}

.new-footer-social-icon.spotify:after {
  background-color: #62e947;
}

.new-footer-social-icon.amazon:after {
  background-color: #64cce6;
}

.new-footer-social-icon.linkedin:after {
  background-color: #0a66c2;
}

.new-footer-social-icon.instagram:after {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
}

.new-footer-social-icon.medium:after {
  background-color: #000;
}

.new-footer-social-icon.twitter:after {
  background-color: #000;
}

.new-footer-social-icon.youtube:after {
  background-color: #ff0000;
}

.new-footer-social-icon.youtube:after {
  background-color: #ff0000;
}

.new-footer-social-icon.blogger:after {
  background-color: #ff7b00;
}

/*** Animations ***/
.new-footer-social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
}

.new-footer-social-icon:hover i {
  color: #fff;
}

.new-footer-social-icon:hover svg {
  z-index: 1;
}

.new-footer-social-icon:hover svg path {
  fill: #fff;
}

.new-footer-social-icon:hover:after {
  transform: translate(0) scale(1.2);
}

.new-footer-copyright {
  display: inline-block;
  text-align: start;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  color: #000;
  letter-spacing: 0.4px;
}

/* ------- new footer media quary -------- */

@media screen and (max-width: 1400px) {
  .new-footer-head-left {
    width: 46%;
  }

  .new-footer-head-right {
    width: 36%;
  }

  .new-footer-main-first {
    width: 26%;
  }

  .new-footer-main-second {
    width: 17%;
  }

  .new-footer-main-third {
    width: 12%;
  }

  .new-footer-main-four {
    width: 40%;
  }
}

@media screen and (max-width: 1200px) {
  .new-footer-main-row {
    flex-wrap: wrap;
  }

  .new-footer-main-first {
    width: 35%;
  }

  .new-footer-main-second {
    width: 28%;
  }

  .new-footer-main-third {
    width: 25%;
  }

  .new-footer-main-four {
    width: 100%;
  }

  .new-foot-main-achievement-row .achievement-logo {
    width: calc(25% - 70px);
    min-width: 18%;
  }
}

@media screen and (max-width: 992px) {
  .new-footer-head-left {
    width: 50%;
  }

  .new-footer-head-right {
    width: 45%;
  }

  .new-foot-first-logo {
    width: 50%;
  }

  .new-footer-main-first {
    width: 40%;
  }

  .new-footer-main-second {
    width: 25%;
  }

  .new-footer-main-third {
    width: 20%;
  }
}

@media screen and (max-width: 768px) {
  .new-footer {
    padding: 50px 10px 10px;
  }

  .new-foot-head-content p {
    font-size: 14px;
    line-height: 25px;
  }

  .new-foot-contact-details a {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .new-foot-contact-details span {
    font-size: 14px;
  }

  .new-footer-main-first {
    width: 46%;
  }

  .new-footer-main-second {
    width: 40%;
  }

  .new-footer-main-third {
    width: 22%;
  }

  .new-footer-main-four {
    width: 71%;
  }
}

@media screen and (max-width: 580px) {
  .new-footer-head-row {
    flex-wrap: wrap;
  }

  .new-footer-head-left {
    width: 100%;
  }

  .new-footer-head-right {
    width: 100%;
  }

  .new-footer-main-first {
    width: 100%;
    margin-right: 0;
  }

  .new-footer-main-second {
    width: 100%;
    margin-right: 0;
  }

  .new-footer-main-third {
    width: 100%;
    margin-right: 0;
  }

  .new-footer-main-four {
    width: 100%;
    margin-right: 0;
  }
}

@media screen and (max-width: 500px) {
  .new-foot-main-achievement-row .achievement-logo {
    width: calc(25% - 12px);
    min-width: 24%;
  }

  .new-footer-social {
    margin-top: 4px;
  }

  .new-footer-main-four {
    margin-top: 6px;
  }

  .new-footer-social-icon {
    width: 36px;
    height: 36px;
    margin: 6px 6px;
  }

  .new-footer-social-icon i {
    font-size: 18px;
  }

  .new-footer-copyright {
    margin-top: 22px;
  }
}

@media screen and (max-width: 376px) {
  .new-foot-main-achievement-row .achievement-logo {
    width: calc(40% - 12px);
    min-width: 40%;
  }
}

/* ====================================================== services page ======================================================== */

.services-home-section {
  padding: 160px 10px 80px;
  display: flex;
  align-items: center;
}

.sc-home {
  padding: 0px 140px !important;
  text-align: justify;
}

.sc-main-title {
  padding-bottom: 20px;
}

.sc-main-title h1 {
  text-transform: capitalize !important;
}

.sc-main-sub p {
  font-size: 20px !important;
}

.food-image-banner video {
  width: 100%;
  height: 100%;
}

.food-image-banner iframe {
  width: 100% !important;
  padding-top: 15px;
}

/* ====== */

.wrapper {
  position: relative;
  width: 100%;
}

.wrapper img {
  max-width: 100%;
  /* height: 440px; */
  width: 100%;
  position: relative;
  height: 100%;
}

.wrapper iframe {
  display: none;
  width: 100%;
  height: 440px;
}

.wrapper iframe body {
  background-color: transparent !important;
}

/* ================================================================ list-data ======================================================= */

.list-data {
  background: var(--black-light);
  padding: 20px 0;
}

.list-data-right {
  padding: 5px 10px;
  /* display: flex; */
}

.list-data-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-data-right h1 {
  text-transform: capitalize !important;
  color: var(--title-dark-white) !important;
  font-family: var(--font-family) !important;
  padding: 30px 0;
}

.list-data-flex {
  display: inline-flex;
}

.list-data-flex ul {
  padding-right: 5px;
}

.list-data-flex li {
  padding: 5px 0;
}

.list-data-flex li a {
  font-size: 20px;
  color: var(--desc-white) !important;
  font-family: var(--font-family) !important;
  text-transform: capitalize;
}

/* ========================================================== new data field ================================================== */

.new-data-field-wrapper {
  padding-bottom: 20px;
  max-width: 95%;
  width: 1570px;
  margin: 0px auto;
}

.new-data-field-wrapper-content {
  background-color: rgb(246, 247, 248);
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  padding: 30px 40px;
  margin-top: 15px;
  margin-bottom: 30px;
  position: relative;
}

.new-data-field-row {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  align-items: stretch;
}

.new-data-field-left {
  width: 40%;
  padding: 40px 50px;
}

.new-data-field-img-box img {
  width: 100%;
}

.new-data-field-title {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 38px;
  line-height: 58px;
  color: rgb(6, 43, 71);
  letter-spacing: 0.2px;
}

.new-data-field-right {
  width: 60%;
  padding: 40px 50px;
}

/* -------- */

.new-data-field-heading {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.new-data-field-img-box {
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(6 43 71 / 7%) 6.6px 6.6px 18.6px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  position: relative;
  margin-right: 15px;
}

.new-data-field-img-box img {
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.new-data-field-List {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: rgba(6, 43, 71, 0.8);
  display: flex;
  margin-top: 20px;
}

.new-data-field-List .new-data-field-listitem {
  padding-left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.new-data-field-List .new-data-field-listitem li {
  width: 33%;
}

.new-data-field-List li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
}

.new-data-field-List li::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgb(60, 75, 96);
  border-radius: 2px;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  left: 0px;
}

/* ============================================== contact us ============================================ */

.contact-home-section {
  height: 665px;
  background: url(../img/contact/Contact-us.png);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-home-section h2 {
  text-align: center;
  color: #fff;
  text-transform: capitalize !important;
}

.contact-home-section h4 {
  color: var(--title-light-white);
  text-align: center;
  display: block;
}

.contact-home-section h2 i {
  color: #fff;
  font-size: 12px;
  margin: 0 20px;
}

.contact-home-section h1 {
  color: #fff !important;
  text-align: center !important;
  display: block !important;
  text-transform: capitalize !important;
  font-size: 48px !important;
}

/* ============================================== contact form ============================================ */

.contact-form {
  padding: 50px 0;
}

.contact-title,
.contact-sub {
  max-width: 1200px !important;
  margin: 0 auto;
}

.contact-title h2 {
  font-weight: 600 !important;
  text-transform: capitalize !important;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-size: 40px !important;
  line-height: 43px !important;
  color: rgb(6, 43, 71) !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.5px !important;
  text-align: center;
}

.contact-sub p {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 30px;
  color: rgb(78, 95, 119);
  text-align: center;
  display: block;
}

.main-contact form {
  padding: 56px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(106 133 154 / 15%) 0px 30px 80px;
  border-bottom-left-radius: 45px;
  border-top-right-radius: 45px;
  position: relative;
  margin-top: 20px;
}

.main-contact form img {
  position: absolute;
  width: 100px;
  top: 64px;
  right: -48px;
}

.form-control {
  min-width: 100% !important;
  background: #f5fdfc !important;
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
  padding: 8px 13px !important;
  border: none !important;
  border-bottom: 2px solid #cbdef3 !important;
  transition: 0.3s !important;
  /* margin-bottom: 20px; */
  font-family: var(--font-family) !important;
  color: rgb(6, 43, 71) !important;
  font-size: 16px !important;
  letter-spacing: 0.4px !important;
  font-weight: 500 !important;
}

.form-control option {
  font-size: 16px !important;
}

.form-control::placeholder {
  font-size: 13px !important;
  color: rgb(100, 137, 166) !important;
}

.form-select {
  border: none !important;
  margin: 10px 0 !important;
  padding: 5px !important;
  border-bottom: 1px solid var(--black-light) !important;
  border-radius: 0px !important;
}

.con-text-main {
  margin: 0 !important;
  line-height: 3 !important;
}

#formFile {
  margin-top: 35px !important;
}

.btn {
  margin-top: 30px !important;
  width: 100% !important;
  border-radius: 25px !important;
}

.form-control:focus {
  border-color: #6ba2dc !important;
  box-shadow: none !important;
}

.form-select:focus {
  box-shadow: none !important;
}

.form-check-input {
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
  box-shadow: none !important;
}

.submit-button {
  display: block;
  position: relative;
  overflow: hidden;
  min-width: max-content;
  padding: 15px 44px 12px;
  font-family: var(--font-family);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  color: rgb(9, 55, 90);
  border: 2px solid rgb(124, 190, 223);
  background-color: transparent;
  border-radius: 7px;
  text-decoration: none;
  transform: translateZ(0px);
  transition: all 0.3s ease 0s;
  font-size: 17px;
  line-height: 29px;
  text-transform: initial !important;
  margin-top: 20px;
}

.submit-button:hover {
  border-color: rgb(44, 128, 170);
  color: rgb(14, 80, 130);
}

input::file-selector-button {
  background: #f5fdfc !important;
  outline: none !important;
  border: none !important;
  border-radius: 6px;
  padding: 8px 13px !important;
  border-bottom: 2px solid #cbdef3 !important;
  font-family: var(--font-family) !important;
  font-size: 15px !important;
  color: rgb(100, 137, 166) !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
}

.trusted-client {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
}

.trusted-client .pertner {
  width: calc(33% - 40px);
  min-width: 26%;
  margin-bottom: 25px;
  margin-top: 15px;
}

.trusted-client .pertner img {
  display: block;
  max-width: 100%;
  margin: 0px auto;
  opacity: 0.82;
}

/* ============================================== zomato-api-services page ================================================= */

.main-about {
  padding: 200px 0 150px;
  /* background: url(../img/api-inner/banner.jpg); */
  background-size: cover;
  background-repeat: no-repeat;
}

.ab-pad {
  padding: 10px 0px;
}

.ab-col {
  padding: 0 30px;
  display: flex;
}

.ab-line {
  position: relative;
}

.ab-line::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0;
  display: block;
  width: 1px;
  height: 108%;
  border-left: 2px solid var(--title-dark-black);
}

.ab-pad h1 {
  text-transform: capitalize !important;
  font-size: 52px !important;
  color: var(--title-dark-white) !important;
}

.ab-pad p {
  font-size: 22px;
  text-align: justify;
  line-height: 40px;
  color: var(--title-dark-white);
  padding-left: 20px;
}

/* -------------------------  */

.ab-api {
  padding: 31px 0;
}

.ab-api h1 {
  text-transform: capitalize !important;
  display: block;
  text-align: center !important;
  padding: 10px 0;
}

.ab-api p {
  font-size: 20px;
  text-align: center;
  color: var(--desc-black) !important;
  justify-content: center;
}

.ab-api-list {
  display: flex;
  justify-content: center;
}

.ab-api-list li {
  font-size: 20px;
  padding: 3px;
}

.food-pd p {
  display: block;
}

.ab-api-list ul li i {
  margin-top: 2px;
}

.ab-api-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== quation ========= */

.quation {
  padding: 20px 0;
}

.quation-title {
  margin-bottom: 30px;
}

.quation-title h2 {
  color: rgb(6, 43, 71);
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
  text-align: center;
  border: none !important;
}

.accordion-item h2 button {
  font-family: var(--font-family) !important;
  font-size: 20px;
  line-height: 35px;
  color: rgb(6, 43, 71);
  position: relative;
  padding-right: 60px;
  cursor: pointer;
  font-weight: 600;
  border: none !important;
}

.accordion-item {
  padding: 25px 15px;
  border-bottom: 1px solid rgba(78, 95, 119, 0.1) !important;
}

.accordion-item:last-child {
  border-bottom: none !important;
}

.accordion-button {
  padding: 0 !important;
}

.accordion-body {
  font-family: var(--font-family) !important;
  padding: 0 !important;
  margin-top: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: rgb(78, 95, 119);
  border: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  border: none !important;
  background: transparent !important;
  color: rgb(6, 43, 71) !important;
  box-shadow: none !important;
}

.accordion {
  padding: 5px 12px;
}

/* ============================================= new api page ============================================ */

.new-ab-api {
  padding: 50px 0;
}

.new-ab-api-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 160px);
  max-width: 1460px;
  margin: 0 auto;
}

.new-ab-api-row .new-ab-api-left {
  width: 50%;
}

.new-ab-api-row .new-ab-api-right {
  width: 50%;
}

.api-code {
  padding: 18px;
}

.api-code pre {
  background: linear-gradient(90deg,
      rgb(6, 43, 71) 0%,
      rgb(28, 62, 87) 48.75%,
      rgb(6, 43, 71) 100%);
  color: #efefef;
  height: 400px;
}

.api-code pre {
  padding: 50px;
  border-top-left-radius: 100px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 20px;
}

.api-code pre::-webkit-scrollbar {
  width: 4px !important;
  height: 4px !important;
}

.api-code pre::-webkit-scrollbar-track {
  background: transparent !important;
  margin-top: 10px !important;
}

.api-code pre::-webkit-scrollbar-thumb {
  border-radius: 50px !important;
  border: none !important;
  background: #fff !important;
}

.api-code pre[class*="language-"]::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.ab-api-left-right {
  padding: 50px;
}

.ab-api-left-right h2 {
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 36px !important;
  line-height: 58px !important;
  text-align: start !important;
  color: rgb(6, 43, 71) !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
}

.ab-api-left-right p {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 30px;
  text-align: start;
  color: rgb(78, 95, 119);
  opacity: 0.7;
  margin: 17px 0px 30px;
  display: block;
}

.api-right-highlight ul {
  padding-left: 0;
}

.api-right-highlight ul li {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: rgb(78, 95, 119);
  font-family: var(--font-family);
  text-transform: capitalize;
  letter-spacing: 0.2px;
  margin-bottom: 2px;
  position: relative;
  padding-left: 32px;
}

.api-right-highlight ul li::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0px;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-image: url(../img/icon/tick.png);
}

.new-zomato-api-box {
  background: linear-gradient(-77.79deg,
      rgb(249, 255, 254) 17.79%,
      #eefcffc1 82.21%);
  padding: 70px 0 100px;
}

.new-zomato-api-wrapper h3 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 38px !important;
  line-height: 53px !important;
  text-align: center !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 20px;
}

.new-api-color-box {
  padding: 30px;
  background: linear-gradient(225.02deg,
      rgb(255 250 250) 0%,
      rgb(201 235 255) 92.34%);
  padding-bottom: 8vh;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 3px;
  margin-top: 30px;
  height: 242px;
}

.new-api-color-data h4 {
  font-size: 22px;
  line-height: 34px;
  color: rgb(6, 43, 71);
  font-weight: 600;
  font-family: var(--font-family);
  margin-bottom: 8px;
}

.new-api-color-data p {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px !important;
  color: rgb(78, 95, 119);
  font-family: var(--font-family);
  text-align: start;
}

/* ======================================== food App page ===================================================== */

.food-home-section {
  background: url(../img/foodapp/food-app_background.jpg) !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.food-home-section p {
  color: var(--title-dark-white);
  padding: 10px;
}

/* ======================================== grocery App page ===================================================== */

.grocery-section {
  background: url(../img/grocery/grocery_background.jpg) !important;
  background-size: cover;
  background-repeat: no-repeat;
}

.grocery-section p {
  color: var(--title-dark-white);
  padding: 10px;
}

/* ======================================== API page ===================================================== */

.api-home-section {
  height: 665px;
  background: url(../img/api-icon/bg1.jpg);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.api-home-section p {
  color: var(--title-dark-white);
}

.api-home-section .center-btn {
  display: flex;
  justify-content: center;
}

.api-home-section h2 {
  text-align: center;
  color: #fff;
  text-transform: capitalize !important;
}

.api-home-section h2 i {
  color: #fff;
  font-size: 12px;
}

.api-home-section h1 {
  color: #fff !important;
  text-align: center !important;
  display: block !important;
  text-transform: capitalize !important;
  font-size: 48px !important;
}

.api-box-section {
  padding: 80px 0;
}

#search-api input {
  /* position: relative; */
  padding: 15px 40px 15px 20px;
  width: 100%;
  color: #525252;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  border: none;
  border-radius: 8px;
  background: #d4faff80;
  transition: width 0.4s ease;
  outline: none;
}

[type="search"] {
  outline: none !important;
}

#search-api {
  position: relative;
}

#search-api i {
  position: absolute;
  right: 10px;
  color: rgb(124, 190, 223);
  font-size: 25px;
  top: 8px;
  cursor: pointer;
}

#search-api i:hover {
  color: rgb(64, 168, 221);
}

.api-box {
  margin-bottom: 35px;
  background-color: #fff;
  padding: 30px;
  background: linear-gradient(225.02deg,
      rgb(243, 243, 243) 0%,
      rgb(234, 255, 255) 92.34%);
  padding-bottom: 8vh;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.api-box a {
  width: 80px;
  height: 80px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: rgb(6 43 71 / 6%) 6.6px 6.6px 18.6px;
  z-index: 5;
  transition: all 0.3s ease 0s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.api-box img {
  border-radius: 8px;
}

.api-box h4 {
  margin-bottom: 15px !important;
  font-size: 22px !important;
  line-height: 32px !important;
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
}

.api-box h4 {
  margin-top: 10px;
  margin-bottom: 2px !important;
}

.api-box h4 a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: auto;
  width: auto;
  background: transparent;
  box-shadow: none;
  font-size: 22px;
  line-height: 34px;
  color: rgb(6, 43, 71);
}

.api-box p {
  margin-bottom: 15px !important;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  font-size: 15px !important;
  text-align: start !important;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.api-box button span a {
  height: auto;
  width: auto;
  background: transparent;
  box-shadow: none;
}

.api-box button {
  border: none !important;
  background: transparent;
}

.mobileapp-btn span a {
  display: block;
  position: relative;
  overflow: hidden;
  min-width: 220px;
  padding: 12px 18px 12px;
  font-family: var(--font-family);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  color: rgb(9, 55, 90);
  border: 2px solid rgb(124, 190, 223);
  background-color: transparent;
  border-radius: 7px;
  text-decoration: none;
  transform: translateZ(0px);
  transition: all 0.3s ease 0s;
  font-size: 16px;
  line-height: 24px;
  text-transform: initial !important;
}

.mobileapp-btn span a:hover {
  border-color: rgb(8, 147, 189);
  color: rgb(9, 55, 90);
}

/* ====================== api button ========================== */

.btn-3 {
  background: #00bb77;
  background: linear-gradient(0deg, #029c64 0%, #00bb77 100%);
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
}

.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.btn-3:before,
.btn-3:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #005637;
  transition: all 0.3s ease;
}

.btn-3:before {
  height: 0%;
  width: 2px;
}

.btn-3:after {
  width: 0%;
  height: 2px;
}

.btn-3:hover {
  background: transparent;
  box-shadow: none;
}

.btn-3:hover:before {
  height: 100%;
}

.btn-3:hover:after {
  width: 100%;
}

.btn-3 span:hover {
  color: var(--title-dark-green);
}

.btn-3 span:before,
.btn-3 span:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #005637;
  transition: all 0.3s ease;
}

.btn-3 span:before {
  width: 2px;
  height: 0%;
}

.btn-3 span:after {
  width: 0%;
  height: 2px;
}

.btn-3 span:hover:before {
  height: 100%;
}

.btn-3 span:hover:after {
  width: 100%;
}

.btn-3:hover span a {
  color: var(--button-bg);
}

.foot-boder-bottom {
  border-bottom: 1px solid #09798730;
  padding-bottom: 20px;
  display: block;
  text-align: center;
}

/* ================================================ about us page =================================================== */

/* .about-home-section {
    height: 665px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/about-us/Aboutus.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.about-home-section h2 {
    text-align: center;
    color: #fff;
    text-transform: capitalize !important;
}

.about-home-section h2 i {
    color: #fff;
    font-size: 12px;
}

.about-home-section h1 {
    color: #fff !important;
    text-align: center !important;
    display: block !important;
    text-transform: capitalize !important;
    font-size: 48px !important;
}


.about-col {
    padding: 70px 0;
}

.ab-col-content h1 {
    text-transform: capitalize !important;
    padding-bottom: 15px;
}


.roadmap {
    padding: 80px 0;
}

.road-title {
    padding: 30px 0;
}

.road-title  h1 {
    text-transform: capitalize !important;
    color: var(--about-title) !important;
    position: relative;
}

.road-box h2{
    display: block;
    text-align: center;
    padding-bottom: 12px;
    text-transform: capitalize !important;
    font-weight: 600 !important;
}

.road-box p {
    padding: 0 45px;
    color: var(--desc-light);
}


.road-title  h1::after{
    content: '';
    position: absolute;
    top: 50%;
    left: -30%;
    right: 0;
    display: block;
    width: 150px;
    height: 1px;
    border: 1px solid var(--title-dark-black);
}



.value-content {
    padding-left: 15px;
    padding: 20px 0;
}

.row-green{
    background: var(--section-green) !important;
}

.value-content h1 {
    padding-bottom: 10px;
    text-transform: capitalize !important;
}

.value-content h2 {
    text-transform: capitalize !important;
}

.value-content p {
    font-size: 15px;
    color: var(--desc-white);
} */

/* =================== new about us ================ */

.highlight-title {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(124, 190, 223);
  margin-bottom: 10px;
}

.new-roadmap-wrapper {
  padding-bottom: 20px;
  max-width: 95%;
  width: 1430px;
  margin: 0px auto;
}

.new-roadmap-wrapper-content {
  background-color: rgb(246, 247, 248);
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
  padding: 30px 40px;
  margin-top: 15px;
  margin-bottom: 30px;
  position: relative;
}

.new-roadmap-row {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  align-items: center;
}

.new-roadmap-left-content {
  width: 40%;
  padding: 40px 50px;
}

.new-roadmap-title {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 44px;
  color: rgb(6, 43, 71);
  letter-spacing: 0.2px;
}

.new-roadmap-right-content {
  width: 60%;
  padding: 40px 50px;
}

.new-roadmap-List {
  margin-top: 30px;
}

.new-roadmap-List .new-tag-title {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(124, 190, 223);
}

.new-blod-title {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 44px;
  color: rgb(6, 43, 71);
  letter-spacing: 0.2px;
}

.new-roadmap-List .road-map-disk {
  color: rgb(78, 95, 119);
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.new-value-content {
  margin: 20px 0;
}

.new-value-content .highlight-title {
  margin-bottom: 0 !important;
  position: relative;
  padding-left: 30px;
}

.new-value-content .highlight-title::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0px;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-image: url(../img/icon/tick.png);
}

.new-value-content p {
  padding: 0 !important;
}

/* ================================== new card & gallery ==================================== */
.new-about-heading {
  margin: 15px 0;
}

.new-about-heading h2 {
  color: rgb(6, 43, 71);
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
  text-align: center;
}

.about-gallery {
  width: 100%;
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
}

.about-gallery-content {
  position: relative;
  display: block;
  width: 90%;
  height: auto;
  margin: 0 auto 2rem;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: all 0.4s ease;
}

.about-gallery-content figure {
  margin: 0;
}

@media screen and (min-width: 37.5em) {
  .about-gallery-content {
    height: auto;
  }
}

@media screen and (min-width: 45em) {
  .about-gallery-content {
    display: inline-block;
    width: 45%;
    margin: 0 auto 3rem;
  }
}

.about-gallery-img {
  width: 100%;
  display: block;
  opacity: 1;
  margin: 0 auto;
  object-fit: cover;
}

.about-gallery-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
}

.about-gallery-overlay::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #1b1b1b;
  opacity: 0;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  transition: all 0.3s ease;
}

.about-gallery-title {
  margin-top: 15px !important;
  font-family: var(--font-family) v;
  text-align: center !important;
  transition: all 0.3s cubic-bezier(0.3, 0, 0, 1.3) !important;
  position: relative;
  top: -200px;
  font-style: normal !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  line-height: 30px !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: rgb(124, 190, 223) !important;
}

.about-gallery-disk {
  position: relative;
  display: block;
  width: 90%;
  top: 232px;
  padding: 10px;
  margin: 0 auto;
  font-family: var(--font-family);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.2px;
  transition: all 0.3s cubic-bezier(0.3, 0, 0, 1.3);
}

.about-gallery-content:hover .about-gallery-title,
.about-gallery-content:hover .about-gallery-disk {
  top: 10%;
}

.about-gallery-content:hover .about-gallery-overlay:after {
  opacity: 0.75;
}

@media screen and (max-width: 500px) {
  .about-gallery-title {
    margin-top: 0px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 23px !important;
    letter-spacing: 0.1em !important;
  }

  .about-gallery-disk {
    width: 96%;
    padding: 6px;
    font-size: 14px;
  }
}

/* ============================================= card ============================================= */

.main-card {
  padding: 50px 0;
  background: #f6f6f6 !important;
}

.main-card-title h2 {
  display: block;
  text-align: center;
}

.main-card-title h1 {
  display: block !important;
  text-align: center !important;
}

.page-content {
  display: grid;
  grid-gap: 1rem;
  padding: 4rem;
  max-width: 1024px;
  margin: 0 auto;
  font-family: var(--font-family) !important;
}

@media (min-width: 600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
  height: 400px !important;
  border: none !important;
}

@media (min-width: 600px) {
  .card {
    height: 350px;
  }
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}

.card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.009) 11.7%,
      rgba(0, 0, 0, 0.034) 22.1%,
      rgba(0, 0, 0, 0.072) 31.2%,
      rgba(0, 0, 0, 0.123) 39.4%,
      rgba(0, 0, 0, 0.182) 46.6%,
      rgba(0, 0, 0, 0.249) 53.1%,
      rgba(0, 0, 0, 0.32) 58.9%,
      rgba(0, 0, 0, 0.394) 64.3%,
      rgba(0, 0, 0, 0.468) 69.3%,
      rgba(0, 0, 0, 0.54) 74.1%,
      rgba(0, 0, 0, 0.607) 78.8%,
      rgba(0, 0, 0, 0.668) 83.6%,
      rgba(0, 0, 0, 0.721) 88.7%,
      rgba(0, 0, 0, 0.762) 94.1%,
      rgba(0, 0, 0, 0.79) 100%);
  transform: translatey(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}

.card:nth-child(1):before {
  background-image: url(../img/about-us/research-and-analysis.png);
}

.card:nth-child(2):before {
  background-image: url(../img/about-us/affordable-prices.png);
}

.card:nth-child(3):before {
  background-image: url(../img/about-us/Innovative-Solutions.png);
}

.card:nth-child(4):before {
  background-image: url(../img/about-us/Transparency-with-Easy-Work.png);
}

.card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}

.card-content p {
  font-weight: var(--font-family) !important;
  color: var(--title-dark-white) !important;
  font-size: 20px;
}

.card-content>*+* {
  margin-top: 1rem;
}

.card-title {
  font-size: 1.3rem !important;
  font-weight: bold !important;
  line-height: 1.2 !important;
}

@media (hover: hover) and (min-width: 600px) {
  .card:after {
    transform: translatey(0);
  }

  .card-content {
    transform: translatey(calc(100% - 4.5rem));
  }

  .card-content>*:not(.card-title) {
    opacity: 0;
    transform: translatey(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .card:hover,
  .card:focus-within {
    align-items: center;
  }

  .card:hover:before,
  .card:focus-within:before {
    transform: translatey(-4%);
  }

  .card:hover:after,
  .card:focus-within:after {
    transform: translatey(-50%);
  }

  .card:hover .card-content,
  .card:focus-within .card-content {
    transform: translatey(0);
  }

  .card:hover .card-content>*:not(.title),
  .card:focus-within .card-content>*:not(.title) {
    opacity: 1;
    transform: translatey(0);
    transition-delay: calc(var(--d) / 8);
  }

  .card:focus-within:before,
  .card:focus-within:after,
  .card:focus-within .card-content,
  .card:focus-within .card-content>*:not(.title) {
    transition-duration: 0s;
  }
}

/* ============================================== three box ============================== */

.th-box h1 {
  display: block !important;
  text-align: center !important;
}

/* ============================= dubble section =================================== */

/* .dubble-section {
    background: #f6f6f6!important;
}

.d-last-sec {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dubble-title h1 {
    text-transform: capitalize !important;
    padding-bottom: 20px !important;
} */

/* ======================================== blog page  ============================================ */

/* .blog-home-section {
    height: 665px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/blog/blog-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-home-section h1 {
    color: var(--title-dark-white) !important;
    text-align: center !important;
    display: block !important;
    text-transform: capitalize !important;
    font-size: 48px !important;
}

.blog-home-section p {
    color: var(--title-dark-white);
    padding-top: 10px;
}

.ptb-80 {
    padding: 80px 0;
}

#search-blog input {
    width: 100%;
    padding: 7px;
    border-radius: 5px;
    border: 1px solid var(--black-light);
}

#search-blog input:focus {
    border: 1px solid var(--title-light-green) !important;
    outline: none;
}

.blog-article {
    text-decoration: none;
    padding: 40px 25px 40px;
    border-top-left-radius: 37px;
    border-bottom-right-radius: 37px;
    height: 100%;
    transition: all 0.4s ease 0s;
}

.blog-article:hover{
    transform: translateY(-2px);
    background-color: rgb(250, 250, 250);
}

.blog-items {
    padding-bottom: 28px;
}

.blog-article a {
    text-decoration: none;
    display: block;
    color: rgb(6, 43, 71);
    font-family: var(--font-family) !important;
}

.article-img img {
    flex-shrink: 0;
    width: 100%;
    height: 285px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    border-top-right-radius: 40px;
}

.blog-info span {
    font-size: 14px;
    color: rgb(6, 43, 71) !important;
    font-family: var(--font-family) !important;
    font-weight: 600;
    opacity: 0.7;
}

.main-blog .article-content .blog-title-main {
    overflow: hidden;
    padding-top: 10px;
}

.article-content {
    padding: 1rem 0rem;
}

.article-content a h2 {
    font-weight: 600 !important;
    font-family: var(--font-family);
    text-align: start;
    text-transform: capitalize !important;
    font-style: normal;
    font-weight: 600 !important;
    font-size: 24px !important;
    line-height: 38px !important;
    color: rgb(6, 43, 71);
}

.limit-2-line-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-content p {
    font-family: var(--font-family);
    line-height: 1.40;
    font-size: 17px;
    padding-top: 15px;
}

.blog-button a {
    font-size: 16px;
    font-weight: 600;
    color: rgb(6, 43, 71) !important;
    opacity: 0.7;
}

.blog-button a:hover {
    color: rgb(8, 62, 104);
} */

/* ---------------- */

.new-blog-page {
  padding: 80px 0;
  position: relative;
  margin: auto 145px;
}

.new-blog-title {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
  margin-top: 42px;
  margin-bottom: 30px;
}

.new-blog-title h2 {
  font-style: normal;
  font-weight: 600 !important;
  font-size: 50px !important;
  line-height: 72px !important;
  color: rgb(25, 16, 12) !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
}

.new-blog-title p {
  font-family: var(--font-family);
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  color: rgb(24, 15, 42);
  opacity: 0.7;
  margin-bottom: 0;
  margin-left: 30px;
  font-weight: 500;
  text-align: start;
}

.latest-blog {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 40px;
  border-top: 1px solid rgba(112, 107, 104, 0.2);
  border-bottom: 1px solid rgba(112, 107, 104, 0.2);
  margin-bottom: 50px;
}

.letest-left-side {
  width: 50%;
}

.letest-right-side {
  width: 50%;
}

.letest-left-img {
  padding: 15px;
}

.letest-left-img img {
  width: 90%;
}

.letest-tag {
  font-family: var(--font-family);
  font-style: normal;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgb(124, 190, 223);
  font-weight: 600;
}

.letest-title {
  font-family: var(--font-family);
  font-style: normal;
  font-size: 34px;
  line-height: 42px;
  color: rgb(25, 16, 12);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.letest-title a {
  font-family: var(--font-family);
  font-style: normal;
  font-size: 34px;
  line-height: 42px;
  color: rgb(25, 16, 12);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.letest-title a:hover {
  color: rgb(25, 16, 12);
}

.letest-button {
  margin: 5px 0px;
}

.letest-button a {
  font-family: var(--font-family);
  font-style: normal;
  font-size: 14px;
  text-decoration: none;
  line-height: 27px;
  text-align: left;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #189991;
  position: relative;
  display: inline-block;
  margin: 5px 0px 0px;
  font-weight: 600;
  border-bottom: 2px solid #189991;
}

.letest-button a:hover {
  color: #189991;
}

.letest-disk p {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
  color: rgb(0, 0, 0);
  opacity: 0.7;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

.main-blog-bottom {
  margin-bottom: 60px !important;
  margin-top: 30px !important;
}

/* =================================== new blog page ============================================= */

.new-blog-section {
  padding: 50px 0;
}

.new-blog-post-row {
  display: flex;
  align-items: flex-start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
}

.new-blog-post {
  width: 30%;
  margin-right: 1.5%;
  margin-left: 1.5%;
  position: relative;
  margin-bottom: 10px;
}

.new-blog-post a {
  text-decoration: none !important;
  display: block;
}

.new-blog-post-img {
  max-width: 100%;
  margin-bottom: 25px;
}

.new-blog-post-img img {
  width: 100%;
  border-radius: 0px 20px;
}

.new-post-item-content {
  padding-left: 20px;
  position: relative;
}

.new-post-item-content::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0px;
  top: 6.5px;
  border-radius: 0px 6px;
  background-color: rgb(84, 194, 200);
}

.new-post-item-title {
  font-family: var(--font-family) !important;
  text-decoration: none !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 23px !important;
  line-height: 32px !important;
  color: rgb(6, 43, 71) !important;
  text-transform: capitalize !important;
  letter-spacing: 0.2px !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.new-post-item-meta {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  font-family: var(--font-family);
  font-size: 14px;
  font-style: normal;
  color: rgb(6, 43, 71);
  opacity: 0.8;
  margin-top: 9px;
  font-weight: 600;
}

.new-post-slash {
  background-color: rgb(6, 43, 71);
  opacity: 0.4;
  transform: rotate(15deg);
  width: 2px;
  height: 18px;
  margin-left: 8px;
  margin-right: 8px;
}

.new-post-author a {
  color: rgb(6, 43, 71);
}

.new-post-author a:hover {
  color: rgb(8, 65, 109);
}

.post-item-date {
  color: rgb(6, 43, 71);
}

/* ======================================== blog page inside ======================================= */

.main-blog-content {
  padding: 20px 0;
}

.blog-details-wrap h1 {
  padding-bottom: 15px;
  text-transform: capitalize !important;
}

.blog-details-wrap p {
  display: block;
  margin: 0 !important;
  padding: 10px 0;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: rgb(78, 95, 119);
  letter-spacing: 0.2px;
}

.blog-details-wrap p.mt-5 {
  margin-top: 0rem !important;
}

.blog-details-wrap {
  padding-top: 10px;
}

.blog-details-info {
  margin-top: 15px;
}

.blog-details-info .mt-2 {
  margin-top: 0 !important;
}

.blog-details-info .mt-5 {
  margin-top: 0 !important;
}

.blog-details-wrap img {
  padding: 10px 0 !important;
  width: 80%;
}

.blog-details-info img {
  padding: 10px 0 !important;
  width: 100%;
}

@media screen and (max-width: 768px) {

  .blog-details-info img,
  .blog-details-wrap img {
    width: 100%;
  }
}

.blog-details-info h3 {
  padding: 10px 0;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 37px;
  color: rgb(25, 16, 12);
  margin-top: 32px;
  margin-bottom: 0px;
  letter-spacing: 0.3px;
}

.blog-details-info h4 {
  padding: 10px 0;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 37px;
  color: rgb(25, 16, 12);
  margin-top: 20px;
  margin-bottom: 0px;
  letter-spacing: 0.3px;
}

.blog-details-info ul {
  list-style: disc;
  margin: 10px 0;
}

.blog-details-info ul li {
  margin: 0 !important;
  padding: 10px 0;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: rgb(78, 95, 119);
  letter-spacing: 0.5px;
}

.blog-details-wrap ul {
  list-style: disc;
}

.blog-details-wrap ul li {
  font-family: var(--font-family);
  color: rgb(78, 95, 119);
}

.blog-details-info ul li {
  padding-bottom: 15px;
}

.blog-social {
  border: 1px solid #03c8a8;
  padding: 20px;
  border-radius: 10px;
  margin-top: 80px;
  margin-left: 20px;
  position: sticky;
  top: 150px;
}

.blog-social h2 {
  text-transform: capitalize !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  border-bottom: 1px solid rgb(195, 195, 195);
  margin-bottom: 15px;
}

.blog-social i {
  font-size: 26px;
}

/* ----------------- inside blog updated ------------- */

.blog-details .col-lg-9 {
  width: 85% !important;
}

.new-blog-inside-section {
  padding: 5px 0 20px;
  position: relative;
  margin: auto 180px;
}

.new-blog-inside-row {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

.new-blog-inside-left {
  width: 50%;
}

.new-blog-inside-right {
  width: 50%;
}

.new-blog-inside-full {
  width: 100%;
}

.new-blog-inside-img {
  padding: 15px;
}

.new-blog-inside-img img {
  width: 100%;
}

.new-blog-inside-content {
  padding-left: 80px;
}

.new-case-study-inside {
  padding-left: 0;
  padding-right: 80px;
}

.new-blog-inside-content h1 {
  font-style: normal;
  font-size: 26px !important;
  line-height: 40px;
  color: #000 !important;
  margin-top: 5px;
  font-weight: 800 !important;
  letter-spacing: 0.2px;
  margin-bottom: 15px;
  text-transform: capitalize !important;
}

.new-blog-inside-social {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 30px;
}

.social-icon-inside {
  display: flex;
  position: relative;
  overflow: hidden;
  width: var(--link-size);
  height: var(--link-size);
  margin: 8px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: var(--trans-property);
}

.social-icon-inside i {
  margin: auto;
  font-size: 24px;
  color: #67798e;
  z-index: 1;
  transition: var(--trans-property);
}

.social-icon-inside:after {
  content: "";
  width: var(--link-size);
  height: var(--link-size);
  position: absolute;
  transform: translate(0, var(--link-size));
  border-radius: 50%;
  transition: var(--trans-property);
}

.social-icon-inside.facebook:after {
  background-color: #1769ff;
}

.social-icon-inside.spotify:after {
  background-color: #1cee15;
}

.social-icon-inside.pinterest:after {
  background-color: #c8232c;
}

.social-icon-inside.linkedin:after {
  background-color: #0a66c2;
}

.social-icon-inside.instagram:after {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
}

.social-icon-inside.medium:after {
  background-color: #000;
}

.social-icon-inside.twitter:after {
  background-color: #000;
}


.social-icon-inside.twitter svg {
  margin: auto;
}

.social-icon-inside.twitter:hover svg {
  z-index: 1;
}

.social-icon-inside.twitter svg path {
  fill: #67798e;
}

.social-icon-inside.twitter:hover svg path {
  fill: #fff;
}

/*** Animations ***/
.social-icon-inside:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
}

.social-icon-inside:hover i {
  color: #fff;
}

.social-icon-inside:hover:after {
  transform: translate(0) scale(1.2);
}

/* ================================================= responsive menu ======================================================== */

.dropdown-menu {
  flex-direction: column !important;
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
}

.dropdown-item:active {
  background-color: none !important;
  border: none !important;
  border-radius: 0px;
}

.dropdown-item:focus {
  background: none !important;
}

.dropdown-item:hover {
  background-color: #e9ecef;
  border-radius: 0px;
}

.dropdown .nav-link:active {
  background: none !important;
}

.dropdown ul li a {
  margin: 0 !important;
}

.opens .dropdown-menu {
  display: block !important;
  /*show the menu when its parent has class "open"*/
}

/* .dropdown:hover .dropdown-menu{
    display: block !important;
} */

.dropdown-toggle::after {
  vertical-align: 0.15em !important;
}

@media only screen and (max-width: 1400px) and (min-width: 768px) {
  .nav-bar ul {
    padding-left: 0 !important;
  }
}

@media only screen and (max-width: 1320px) {
  header {
    padding: 10px 30px;
  }
}

@media only screen and (max-width: 1400px) {
  header {
    justify-content: space-between;
  }

  .drop-box {
    padding: 10px 15px;
  }
}

@media only screen and (max-width: 1400px) and (min-width: 768px) {
  .nav-bar ul li a {
    padding: 10px 6px;
  }
}

@media only screen and (max-width: 1100px) {
  header {
    padding: 12px 25px;
  }
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
  .logo a img {
    max-width: 70%;
  }

  .nav-bar ul li a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 952px) {
  .nav-bar ul li a {
    padding: 10px 9px;
  }

  .logo img {
    width: 80%;
  }
}

@media only screen and (max-width: 1400px) {
  .hamburger {
    display: block;
    cursor: pointer;
    padding: 5px 8px;
  }

  .hamburger i {
    font-size: 26px;
    color: var(--title-dark-green);
    font-weight: 600;
  }

  .nav-bar {
    height: 0;
    position: absolute;
    top: 80px;
    right: -100%;
    text-align: center;
    width: 50%;
    transition: 0.5s;
    background: #fff;
    overflow: hidden;
  }

  .nav-bar ul {
    display: block;
    width: 100%;
    margin: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .dropdown {
    justify-content: start;
  }

  .nav-bar ul li a {
    margin-bottom: 0px;
  }

  .nav-bar.active {
    right: 0;
    width: 50%;
    height: 100vh;
    transition: all 0.8s ease;
    overflow-y: auto;
  }

  .nav-bar.active ul {
    opacity: 1;
    position: relative;
    text-align: start;
    margin: 0;
  }

  .dropdown ul {
    margin: 8px auto;
  }
}

@media only screen and (max-width: 768px) {
  .nav-bar ul {
    padding-left: 0 !important;
  }

  .nav-bar.active {
    width: 100%;
  }
}

@media only screen and (max-width: 1400px) {
  .nav-bar ul li a {
    font-size: 17px;
  }

  .desktop-btn {
    display: none;
  }

  .my-new-dekstop-btn {
    display: block !important;
  }

  .nav-bar .dropdown {
    position: relative !important;
    /* display: inline-flex; */
    flex-wrap: wrap;
  }

  .drop-box .drop-half-box h2 {
    width: 75%;
    display: block;
    font-family: var(--font-family) !important;
    font-style: normal !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    line-height: 24px !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    color: rgb(25, 16, 12) !important;
    opacity: 0.5 !important;
    margin-bottom: 0;
  }

  .dropdown-menu {
    border: none !important;
    background: linear-gradient(278deg,
        rgba(243, 255, 254, 1) 0%,
        rgba(227, 242, 255, 1) 100%);
    border-radius: 15px !important;
  }

  .nav-bar ul li ul .drop-box li div {
    height: 46px;
    width: 46px;
  }

  .nav-bar ul li ul .drop-box li a {
    padding: 7px 15px;
    font-size: 16px;
  }

  .drop-box a img {
    display: block;
    max-width: 30px;
  }

  .nav-bar ul li {
    margin: 5px 15px;
  }

  .mobile-btn {
    margin: 20px 15px;
  }

  .blog-slider__button {
    padding: 12px 30px;
    font-size: 15px;
  }
}

@media only screen and (min-width: 1401px) {
  .mobile-btn {
    display: none;
    width: 100%;
  }

  .nav-bar .dropdown {
    position: initial !important;
  }

  .nav-bar .dropdown-menu {
    width: 100%;
    background: rgb(255, 255, 255);
    box-shadow: 0 15px 18px 0px rgb(0 0 0 / 7%);
    padding: 16px 0px;
    border-bottom-left-radius: 55px;
    border-bottom-right-radius: 55px;
    border: none;
    transform: translateY(-15px);
  }

  .nav-bar ul li.pad-nav {
    padding: 10px 0;
  }

  .drop-box {
    max-width: 1875px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateY(10px);
  }

  .dropdown-menu .drop-box li {
    /* width: 14% !important; */
    display: inline-block;
    margin: 10px 10px;
    background: none !important;
    border-radius: 0 !important;
  }

  .dropdown-menu .drop-box li:hover {
    background: none !important;
    border-radius: 0 !important;
  }

  .drop-box .drop-half-box {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .drop-box .drop-half-box h2 {
    width: 75%;
    display: block;
    font-family: var(--font-family) !important;
    font-style: normal !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    line-height: 24px !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    color: rgb(25, 16, 12) !important;
    opacity: 0.5 !important;
    margin-bottom: 0;
  }

  .drop-box .drop-half-box li {
    width: 40%;
  }

  .drop-box .drop-half-box:nth-of-type(1) {
    border-right: 2px solid rgba(25, 16, 12, 0.04);
  }
}

@media only screen and (max-width: 500px) {
  .nav-bar.active {
    width: 100%;
  }

  .nav-bar ul {
    padding-left: 0px !important;
  }

  header {
    padding: 12px 15px;
  }

  .food-new-cta-section {
    padding: 18px 20px !important;
  }

  .food-new-cta-title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1400px) {
  .dropdown-menu .drop-box .drop-center-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
  }

  .dropdown-menu .drop-box .drop-center-box li {
    width: 22%;
  }

  .dropdown-menu .drop-box .drop-center-box .drop-center-box-pera {
    width: 46%;
  }

  .dropdown-menu .drop-box .drop-center-box .drop-center-box-pera a {
    background: linear-gradient(32.2deg,
        rgb(39, 111, 83) 0%,
        rgb(29, 184, 125) 100%);
  }

  .dropdown-menu .drop-box .drop-center-box .drop-center-box-pera a {
    height: 100%;
    width: 100%;
    box-shadow: none;
  }

  .dropdown-menu .drop-box .drop-center-box .drop-center-box-pera a p {
    width: 100%;
    max-width: 100%;
    color: #fff;
    margin-bottom: 0;
    padding: 10px;
    font-size: 15px;
  }

  .dropdown-menu .drop-box .drop-center-box-pera:hover>a {
    background: linear-gradient(32.2deg,
        rgb(136, 247, 204) -5%,
        rgb(0, 72, 45) 40%) !important;
    transition: all 0.5s ease-in-out;
  }

  .dropdown-menu .drop-box .drop-center-box .drop-center-box-pera a i {
    color: #fff !important;
    transform: rotate(-90deg);
  }
}

@media screen and (min-width: 1500px) {
  .dropdown-menu .drop-box .drop-center-box {
    width: 92%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .dropdown-menu .drop-box .drop-center-box li {
    width: 22%;
  }
}

@media screen and (min-width: 1700px) {
  .dropdown-menu .drop-box .drop-center-box {
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
  }

  .dropdown-menu .drop-box .drop-center-box li {
    width: 22%;
  }
}

/* ========================================== 1680px ======================================= */

@media only screen and (max-width: 1680px) {
  .food-text {
    padding-left: 150px;
  }
}

/* ========================================== 1660px ======================================= */

@media only screen and (max-width: 1660px) {
  .food-text {
    padding-left: 100px;
  }
}

/* ========================================== 1420px ======================================= */
@media only screen and (max-width: 1420px) {
  .food-text {
    padding-left: 30px;
  }

  .rest-title h3 {
    font-size: 46px !important;
    line-height: 63px !important;
  }
}

@media only screen and (min-width: 1400px) {
  .limit-2-line-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ========================================== 1400px ======================================= */

/* ========================================== 1330px ======================================= */

/* ========================================== 1226px ======================================= */
@media only screen and (max-width: 1226px) {
  .food-text {
    padding-left: 20px;
  }

  h2 {
    font-size: 31px !important;
    line-height: 41px !important;
    margin-bottom: 15px;
  }

  h1 {
    font-size: 37px !important;
  }

  p {
    font-size: 16px;
    line-height: 23px;
  }

  .main-food-section {
    padding: 50px 0;
  }

  .food-pd h2 {
    font-size: 30px !important;
    line-height: 36px !important;
  }

  .food-pd ul li {
    font-size: 15px;
  }

  .review {
    padding: 35px 0;
  }

  .testimonial {
    margin: 70px;
  }

  .country {
    padding-bottom: 173px;
  }
}

/* ========================================== 1226px ======================================= */
@media only screen and (max-width: 1226px) {
  .food-home-page h2 {
    font-size: 28px !important;
    line-height: 38px !important;
    margin-bottom: 20px;
  }

  .food-home-page h1 {
    font-size: 34px !important;
  }

  .our-services {
    padding: 50px 0 79px;
  }

  .overlay h3 {
    font-size: 155px !important;
  }

  .services-data p {
    padding-top: 133px !important;
    font-size: 17px !important;
    line-height: 31px !important;
  }

  .services-data h2 {
    padding-top: 103px !important;
    font-size: 77px !important;
    line-height: 83px !important;
  }

  .owl-pagination {
    margin-top: -30px;
  }
}

/* ========================================== 1200px ======================================= */
@media only screen and (max-width: 1200px) {
  .main-rest-box {
    grid-template-columns: repeat(2, 1fr);
    margin: 50px 0;
    padding-top: 0px;
  }

  .food-social-icons i {
    color: var(--section-green);
    font-size: 28px;
  }

  .food-footer h5 {
    font-size: 22px !important;
  }

  .list-data-flex ul {
    padding-right: 25px;
  }

  /* ========================================== services page ======================================= */

  .sc-main-title h1 {
    font-size: 27px !important;
  }

  .sc-main-sub p {
    font-size: 15px !important;
  }

  .sc-home {
    padding: 10px !important;
  }

  .list-data-flex ul {
    padding-left: 0px !important;
    padding-left: 10px;
  }

  .list-data-flex li a {
    font-size: 14px !important;
  }
}

/* ========================================== 1070px ======================================= */
@media only screen and (max-width: 1070px) {
  .food-home-page h2 {
    font-size: 27px !important;
  }

  .food-home-page h2 {
    font-size: 27px !important;
  }

  .restaurant-box {
    padding: 70px 0;
  }

  .rest-title h3 {
    font-size: 42px !important;
    line-height: 58px !important;
  }

  .main-food-section {
    padding-bottom: 50px;
  }

  .test-content {
    padding-left: 33px;
  }

  .testimonial .content {
    padding: 23px 35px;
  }

  .test-content h5 {
    font-size: 20px;
  }

  .testimonial P {
    font-size: 13px;
    padding: 34px 0;
  }

  .food-social-icons i {
    font-size: 27px;
  }

  .ftr-brand p {
    padding-top: 23px;
  }

  .food-footer h5 {
    font-size: 22px !important;
  }

  .footer-address-list li a {
    font-size: 15px !important;
  }
}

/* ========================================== 1055px ======================================= */
@media only screen and (max-width: 1055px) {
  .food-home-page h1 {
    font-size: 32px !important;
  }

  .main-food-section {
    padding-bottom: 30px;
  }

  .grid-box-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
  }
}

/* ========================================== 1007px ======================================= */
@media only screen and (max-width: 1007px) {
  .food-home-page h2 {
    font-size: 24px !important;
    line-height: 35px !important;
  }

  .food-home-page h1 {
    font-size: 30px !important;
  }
}

/* ========================================== 992px ======================================= */
@media only screen and (max-width: 992px) {
  .food-text {
    padding-bottom: 45px;
  }

  .food-home-page h2 {
    display: block;
    text-align: center;
    margin-bottom: 16px;
  }

  .food-home-page h1 {
    font-size: 40px !important;
    display: block;
    text-align: center !important;
  }

  .center-btn {
    display: flex;
    justify-content: center;
  }

  .green-section {
    padding: 50px 0px;
  }

  .green-left p {
    font-size: 14px;
    line-height: 22px;
  }

  .green-right h2 {
    font-size: 27px !important;
    line-height: 36px !important;
  }

  .overlay h3 {
    font-size: 105px !important;
  }

  .services-data p {
    padding-top: 77px !important;
    font-size: 17px !important;
    line-height: 28px !important;
  }

  .services-data h2 {
    padding-top: 58px !important;
    font-size: 73px !important;
    line-height: 79px !important;
  }

  .overlay .black-line:after {
    top: 35%;
  }

  .food-data {
    padding: 35px;
  }

  .rest-title h3 {
    font-size: 29px !important;
    line-height: 42px !important;
  }

  .main-rest-box {
    margin: 50px 0 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .rest-box p {
    display: none;
  }

  .food-pd h2 {
    font-size: 26px !important;
    line-height: 36px !important;
  }

  .new-food p {
    font-size: 15px;
    line-height: 21px;
  }

  .food-pd ul li {
    font-size: 14px;
  }

  .mobile-app-list ul li {
    font-size: 17px;
  }

  .main-food-section {
    padding-bottom: 0px;
  }

  .mobile-app-data {
    padding-bottom: 40px;
  }

  .owl-carousel .owl-item {
    width: 717px !important;
  }

  .test-content h5 {
    font-size: 14px;
  }

  .testimonial p {
    font-size: 14px;
    padding: 21px 0;
    font-weight: 400;
    font-family: var(--font-family) !important;
  }

  .country {
    padding-bottom: 65px;
  }

  .food-footer {
    padding-top: 30px;
  }

  .food-social-icons {
    padding-top: 0px;
  }

  .food-social-icons i {
    font-size: 32px;
  }

  .ftr-brand {
    padding-bottom: 25px !important;
  }

  .new-food-img {
    align-items: center;
    justify-content: center;
    display: flex;
  }

  .ft-pads {
    padding-top: 40px !important;
  }

  /* ======================================== services ===================================================== */

  .list-data-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .list-data-title h1 {
    display: block;
    text-align: center !important;
  }

  .ful-center {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .list-data-flex {
    display: block;
    text-align: center;
  }

  /* ============================================ about us ========================= */

  .road-title h1::after {
    display: none;
  }

  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }

  /* =============================================== api ================================== */

  .main-about {
    padding: 170px 0 65px;
  }

  .ab-line p::after {
    left: -14%;
  }

  .loc-pad {
    padding-top: 50px;
  }

  /* ----- header ------ */
  .dropdown-menu {
    position: relative !important;
  }
}

/* ========================================== 768px ======================================= */
@media only screen and (max-width: 768px) {
  .green-left p {
    display: block;
    text-align: center !important;
  }

  .green-right h2 {
    display: block;
    text-align: start;
  }

  .d-box-none {
    display: none;
  }

  .main-data-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
  }

  .text-box {
    padding: 13px 0;
    height: 175px;
  }

  .text-box p {
    font-size: 17px;
  }

  .overlay h3 {
    display: none;
  }

  .overlay .black-line:after {
    display: none;
  }

  .services-data p {
    padding-top: 0px !important;
    display: block;
    text-align: center !important;
  }

  .services-data h2 {
    display: none;
    padding-top: 30px !important;
    font-size: 65px !important;
    line-height: 58px !important;
    display: block;
    text-align: center !important;
  }

  .services-data h2 br {
    display: none;
  }

  .food-data p {
    padding-right: 2px;
  }

  .rest-title h3 {
    font-size: 29px !important;
    line-height: 35px !important;
    text-align: center !important;
  }

  .main-rest-box {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0px;
  }

  .testimonial {
    margin: 20px !important;
  }

  .content {
    display: block;
  }

  .testi-img {
    padding-bottom: 20px;
  }

  .testi-img img {
    height: 150px;
    width: 150px;
  }

  .owl-carousel .owl-item {
    width: 516px !important;
  }

  .testimonial .content {
    box-shadow: none;
  }

  .owl-theme .owl-controls {
    margin-top: 32px !important;
  }

  .custom-btn {
    padding: 10px 20px;
  }

  .home-btn {
    padding: 10px 20px !important;
  }

  .ftr-details li {
    padding: 0 !important;
  }

  .food-link-icon li {
    padding-right: 50px;
  }

  .test-content {
    padding-left: 4px;
  }

  #first {
    order: 2;
  }

  #second {
    order: 1;
  }

  /* =================================================== services ========================================= */

  .services-home-section {
    padding: 114px 10px 32px;
  }

  /* ================================================= about us ====================================== */

  .custom-btn {
    padding: 0px 0px;
  }

  .ab-line p::after {
    display: none;
  }

  /* ======================================================= api ========================================== */

  .ab-pad p {
    font-size: 23px;
  }

  .main-contact {
    padding: 20px;
  }
}

/* ========================================== 576px ======================================= */
@media only screen and (max-width: 576px) {
  .owl-carousel .owl-item {
    width: 472px !important;
  }

  .testimonial {
    margin: 20px !important;
  }

  .testimonial .content {
    padding: 20px 15px;
  }

  .test-content h5 {
    font-size: 14px;
  }

  .testimonial P {
    font-size: 13px;
    padding: 3px 0;
  }

  .food-footer h5 {
    padding-bottom: 0px;
    padding-top: 15px;
  }

  .ft-pad {
    padding: 0 30px !important;
  }

  .test-content {
    padding-left: 4px;
  }
}

/* ========================================== 576px ======================================= */
@media only screen and (max-width: 576px) {
  .owl-carousel .owl-item {
    width: 529px !important;
  }

  .testimonial {
    margin: 44px !important;
  }

  .test-content {
    padding-left: 4px;
  }
}

@media only screen and (max-width: 568px) {
  .food-link-icon li {
    padding-right: 0px;
  }
}

/* ========================================== 550px ======================================= */
@media only screen and (max-width: 550px) {
  .owl-carousel .owl-item {
    width: 516px !important;
  }

  .testimonial {
    margin: 66px !important;
  }

  .test-content {
    padding-left: 4px;
  }
}

/* ========================================== 500px ======================================= */
@media only screen and (max-width: 500px) {
  .food-home-page {
    padding: 110px 0 50px;
  }

  .food-home-page h2 {
    font-size: 22px !important;
  }

  .food-home-page h1 {
    font-size: 30px !important;
  }

  p {
    font-size: 15px;
  }

  .food-text {
    padding-bottom: 25px;
  }

  .grid-box-main {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3px;
  }

  .data-box::before {
    top: -12px;
    left: 25%;
    width: 25px;
    height: 25px;
  }

  .services-data h2 {
    padding-top: 30px !important;
    font-size: 52px !important;
    line-height: 58px !important;
  }

  .our-services {
    padding: 40px 0 40px;
  }

  .food-data p {
    font-size: 14px;
  }

  .restaurant-box {
    padding: 49px 0;
  }

  .rest-title h3 {
    font-size: 26px !important;
    line-height: 30px !important;
  }

  .co-sub h2 {
    font-size: 23px !important;
  }

  .co-title h1 {
    font-size: 46px !important;
  }

  .owl-carousel .owl-item {
    width: 470px !important;
  }

  .testimonial {
    margin: 10px !important;
  }

  .test-content {
    padding-left: 4px;
  }

  .owl-carousel .owl-item {
    padding: 0px 20px !important;
  }

  /* ============================== about us ============================== */

  .page-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ========================================== 450px ======================================= */
@media only screen and (max-width: 450px) {
  .owl-carousel .owl-item {
    width: 424px !important;
  }

  .test-content {
    padding-left: 4px;
  }

  /* =================================== services ======================= */

  .main-contact {
    padding: 36px 29px;
  }

  /* ================================= api ============================== */

  .ab-pad h1 {
    font-size: 53px !important;
  }

  .ab-pad p {
    font-size: 17px;
  }
}

/* ========================================== 440px ======================================= */
@media only screen and (max-width: 440px) {
  .owl-carousel .owl-item {
    width: 409px !important;
  }
}

/* ========================================== 415px ======================================= */
@media only screen and (max-width: 415px) {
  .owl-carousel .owl-item {
    width: 380px !important;
  }

  .test-content {
    padding-left: 4px;
  }

  /* ========================== api ======================== */

  .ab-pad p {
    font-size: 15px;
  }

  .ab-pad h1 {
    font-size: 48px !important;
  }

  .ab-api p {
    font-size: 16px;
  }

  .ab-api-list li {
    font-size: 18px;
  }
}

/* ========================================== 405px ======================================= */
@media only screen and (max-width: 405px) {
  .food-home-page h1 {
    font-size: 28px !important;
  }

  .food-text {
    padding-left: 0px;
    padding-right: 0px;
  }

  .main-data-box {
    grid-template-columns: repeat(1, 1fr);
  }

  .services-data p {
    font-size: 14px !important;
  }

  .services-data h2 {
    padding-top: 23px !important;
    font-size: 45px !important;
    line-height: 45px !important;
  }

  .main-rest-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-food-section {
    padding: 38px 0;
  }

  .food-pd h2 {
    font-size: 24px !important;
    line-height: 30px !important;
  }

  .new-food p {
    font-size: 14px;
  }

  .food-pd ul li {
    font-size: 13px;
  }

  .main-food-section {
    padding: 17px 0;
  }

  .testi-img img {
    width: 85% !important;
  }

  .testimonial .content {
    padding: 20px 12px;
  }

  .owl-carousel .owl-item {
    width: 377px !important;
  }

  .test-content h5 {
    font-size: 14px;
  }

  .testimonial p {
    font-size: 13px;
    padding: 0px;
  }

  .testimonial span {
    font-size: 15px;
  }

  .test-content {
    padding-left: 0px;
  }

  .owl-theme .owl-controls .owl-page span {
    height: 7px;
    width: 16px !important;
    margin: 5px 3px;
  }

  .country {
    padding: 13px 0;
    padding-bottom: 35px;
  }
}

/* ========================================== 390px ======================================= */
@media only screen and (max-width: 390px) {
  .owl-carousel .owl-item {
    width: 360px !important;
  }

  .owl-pagination {
    margin-top: -40px;
  }
}

/* ========================================== 370px ======================================= */
@media only screen and (max-width: 370px) {
  .food-data {
    padding: 16px;
  }

  .food-main h3 {
    font-size: 18px;
  }

  .owl-carousel .owl-item {
    width: 342px !important;
  }

  .testimonial {
    margin: 3px !important;
    padding: 0 14px;
  }
}

/* ========================================== 359px ======================================= */
@media only screen and (max-width: 359px) {
  .owl-carousel .owl-item {
    width: 324px !important;
  }

  .testimonial {
    margin: 3px !important;
    padding: 0 6px;
  }
}

/* ========================================== 343px ======================================= */
@media only screen and (max-width: 343px) {
  .testimonial {
    padding: 0 10px;
    margin: 0px !important;
  }

  .owl-carousel .owl-item {
    width: 301px !important;
  }
}

/* ========================================== 326px ======================================= */
@media only screen and (max-width: 326px) {
  .owl-carousel .owl-item {
    width: 301px !important;
  }
}

/* ========================================== 320px ======================================= */
@media only screen and (max-width: 320px) {
  .rest-title h3 {
    font-size: 21px !important;
  }

  .text-box {
    height: 150px;
  }

  .owl-carousel .owl-item {
    width: 290px !important;
  }

  .testi-img img {
    width: 90% !important;
  }

  .testimonial p {
    font-size: 10px;
  }

  .test-content h5 {
    font-size: 8px;
  }

  .testimonial span {
    font-size: 12px;
  }

  .co-sub h2 {
    font-size: 19px !important;
  }

  .co-title h1 {
    font-size: 38px !important;
  }

  .con-title {
    padding-top: 27px;
  }

  .ftr-brand p {
    font-size: 13px !important;
    line-height: 24px !important;
  }

  .food-social-icons i {
    font-size: 26px;
  }

  .food-footer {
    padding-bottom: 10px;
  }

  .testi-img img {
    display: none;
  }
}

/* .btn-1{
    border: none;
    padding-bottom: 30px;
    background-color: transparent;
} */

.blog-details-info p {
  display: block !important;
  margin: 0 !important;
  padding: 10px 0;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: rgb(78, 95, 119);
  letter-spacing: 0.5px;
}

.blog-details p>a,
.blog-details ul li a,
.zik-modal-content p a,
.case-study-details p a,
.case-study-subtitle p a,
.zik-main-tick p a {
  color: #189991;
  border-bottom: 2px solid #189991;
}

.blog-details p strong,
.zik-modal-content p strong,
.case-study-details p strong,
.case-study-subtitle p strong {
  font-weight: 600;
}

.blog-details p>a:hover,
.blog-details ul li a:hover,
.zik-modal-content p a:hover,
.case-study-details p a:hover,
.case-study-subtitle p a:hover {
  color: #098156;
  border-bottom: none;
}

.food-ag-section {
  padding-top: 150px;
  padding-bottom: 5px;
}

.food-ag-title h1 {
  font-size: 38px;
  font-weight: 600;
  line-height: 45px;
  color: rgb(48, 59, 69) !important;
  font-family: var(--font-family);
  text-transform: capitalize !important;
  margin-bottom: 18px;
}

.food-ag-sub p {
  font-family: 20px;
  font-weight: 300;
  line-height: 28px;
  color: rgb(82, 99, 115) !important;
  font-family: var(--font-family);
  text-align: center;
}

.ag-process {
  background: linear-gradient(-77.79deg,
      rgb(249, 255, 254) 17.79%,
      #eefcffc1 82.21%);
  padding: 70px 0 100px;
  height: 650px;
}

.main-ag-process h3 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 38px !important;
  line-height: 53px !important;
  text-align: center !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 20px;
}

.ag-box {
  padding: 30px;
  background: linear-gradient(225.02deg,
      rgb(255 250 250) 0%,
      rgb(201 235 255) 92.34%);
  padding-bottom: 8vh;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 3px;
  margin-top: 30px;
  min-height: 280px;
}

.ag-box h4 {
  font-size: 22px;
  line-height: 34px;
  color: rgb(6, 43, 71);
  font-weight: 600;
  font-family: var(--font-family);
  margin-bottom: 8px;
}

.ag-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px !important;
  color: rgb(78, 95, 119);
  font-family: var(--font-family);
  text-align: start;
}

.aggre-absolute {
  position: relative;
}

.elementor-image {
  position: absolute;
  left: 33%;
  top: 60%;
}

/* ======================================== */

.ag-advantage {
  padding: 70px 0 50px;
}

.ag-advantage h3 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 38px !important;
  line-height: 53px !important;
  text-align: center !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 20px;
}

.advantage-box {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  margin-top: 30px;
}

.advantage-box h4 {
  font-weight: 600;
  font-size: 22px;
  line-height: 34px;
  color: rgb(6, 43, 71);
  margin: 10px 0px 20px;
  letter-spacing: 0.3px;
  font-family: var(--font-family);
  text-align: center;
  min-height: 68px;
}

.advantage-box p {
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 25px;
  color: rgb(78, 95, 119);
  text-align: start;
  font-weight: 500;
  letter-spacing: 0.1px;
  min-height: 400px;
  height: 100%;

}

.ag-advantage p.ag-subline {
  text-align: center !important;
  display: block;
  margin-bottom: 30px;
  font-family: var(--font-family);
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 17px !important;
  line-height: 30px !important;
  color: rgb(78, 95, 119) !important;
}

@media screen and (max-width: 992px) {
  .main-ag-process h3 {
    font-size: 25px;
  }

  .elementor-image img {
    position: relative !important;
  }

  .ag-box {
    padding: 35px 20px 15px 40px;
  }

  .ag-advantage {
    padding: 45px 0 20px;
  }

  .ag-advantage h3 {
    font-size: 25px;
  }

  .food-ag-box {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .main-ag-process h3 {
    font-size: 18px;
  }

  .ag-advantage h3 {
    font-size: 19px;
  }

  #order-0 {
    order: 0;
  }

  #order-1 {
    order: 1;
  }
}

@media screen and (max-width: 500px) {
  .food-ag-section {
    padding-bottom: 80px;
  }

  .ag-advantage h3 {
    font-size: 14px;
  }

  .main-ag-process h3 {
    font-size: 14px;
  }

  .food-ag-title h1 {
    font-size: 28px !important;
  }
}

.food-ag-box {
  border-radius: 10px;
  background-color: rgb(250, 252, 255);
  padding: 35px;
  min-height: 480px;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.advantage-box img {
  width: 20%;
  height: 100%;
  margin-bottom: 20px;
}


.bl-title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1245px;
  margin: 0 auto;
}

.bl-title h4 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 36px !important;
  line-height: 44px !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
}

.bl-title p {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: rgb(78, 95, 119);
  text-align: start;
  display: block;
}

.blog-details-info pre {
  border: 1px solid #272c3d;
  background-color: #272c3d;
  padding: 10px 20px;
  border-radius: 8px;
}

.blog-details-info pre code {
  font-size: 16px;
  font-family: "Liberation Mono", "Courier New", monospace;
  color: #fff;
  letter-spacing: 0.3px;
}

.inteligence {
  height: 550px;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.food-intell-bg {
  background-image: linear-gradient(to right bottom,
      #72b38f,
      #67c78a,
      #60da80,
      #5fed6f,
      #66ff57);
}

.intell-content h1 {
  text-transform: capitalize !important;
  letter-spacing: 0.5px;
  font-size: 55px;
  margin-bottom: 15px;
  color: #030c14 !important;
}

.intell-content p {
  letter-spacing: 0.3px;
  text-align: start;
}

.intell-pera {
  margin: 30px 0;
}

.intell-pera p {
  text-align: center;
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.main-content {
  padding: 60px 0;
}

.main-content .main-content-img {
  margin-bottom: 20px;
}

.main-content .main-content-data {
  margin-bottom: 20px;
}

.main-content .main-content-data h2 {
  text-transform: capitalize !important;
  font-size: 35px !important;
  letter-spacing: 0.2px !important;
  font-weight: 600 !important;
}

.main-content .main-content-data p {
  letter-spacing: 0.1px !important;
}

@media screen and (max-width: 992px) {
  .inteligence {
    height: auto;
  }

  .devlope-content h2 {
    text-align: start !important;
    overflow-wrap: break-word;
  }
}

.intell-img img {
  max-width: 100%;
}

/* --------------------------------- new added --------------------------------- */

.food-home-radius {
  /* background: linear-gradient(180deg, rgba(249, 243, 243, 0) 0%, #F9F3F3 47.4%); */
  min-height: 730px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 44px;
  /* background-image: url(../img/home-slider/Mask-group.png); */
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
  /* background-position: center; */
  position: relative;
  flex-direction: column;
}

.food-home-radius::after {
  /* background: linear-gradient(-90deg, rgba(249, 243, 243, 0) 0%, #F9F3F3 47.4%); */
  /* background: linear-gradient(-90deg, rgba(249, 243, 243, 0) 0%, #e6fffd 47.4%); */
  background: #e6fffd;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  border-bottom-left-radius: 44px;
}

.home-video {
  z-index: 5;
  position: relative;
}

.home-video video {
  width: 100%;
  border-radius: 8px;
}

.home-img {
  z-index: 5;
  position: relative;
}

.home-img img {
  width: 100%;
  height: auto;
}

.slide-track-title {
  z-index: 5;
  position: relative;
}

.track-top {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1550px;
}

.slide-track-title h3 {
  font-weight: 550;
  font-size: 24px;
  line-height: 36px;
  color: rgb(6, 43, 71);
  margin-right: 20px;
}

.slide a img {
  width: 100%;
  height: 100%;
  animation: scroll 60s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 5));
  }
}

.slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 5;
  position: relative;
}

.slider::before,
.slider::after {
  content: "";
  position: absolute;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 60s linear infinite;
  display: flex;
  width: calc(250px * 18);
}

@media screen and (max-width: 1680px) {
  .food-text {
    padding-left: 0px;
  }

  .track-top {
    width: 1400px;
  }
}

@media screen and (max-width: 1500px) {
  .food-text h1 {
    font-size: 40px !important;
    line-height: 58px !important;
  }

  .track-top {
    width: 1200px;
  }
}

@media screen and (max-width: 1300px) {
  .track-top {
    width: 1068px;
  }
}

@media screen and (max-width: 1200px) {
  .track-top {
    margin-top: 50px;
    width: 980px;
  }

  .main-data-box::before {
    display: none;
  }

  .green-right h2 {
    font-size: 24px !important;
  }

  .convert-icon i {
    font-size: 50px;
  }

  .convert-icon {
    left: -9%;
    top: -21%;
  }

  .text-box {
    width: 148px;
    min-height: 200px;
  }

  .data-box {
    padding: 50px 0;
  }

  .article-content a h2 {
    font-size: 25px !important;
    line-height: 40px !important;
  }
}

@media screen and (max-width: 1100px) {
  .track-top {
    margin-top: 50px;
    width: 885px;
  }
}

@media screen and (max-width: 992px) {
  .food-home-radius {
    height: auto;
  }

  .food-text p {
    text-align: center !important;
  }

  .track-top {
    display: block;
    margin-bottom: 20px;
  }

  .slide-track-title h3 {
    text-align: center;
  }

  .slider {
    width: 85%;
  }

  .main-data-box::before {
    display: none;
  }

  .convert-icon {
    display: none;
  }

  .slider {
    width: 60%;
  }

  .track-top {
    margin-top: 50px;
    width: 660px;
  }

  .green-right .center-btn {
    display: flex;
    justify-content: start;
  }

  .text-box {
    width: 200px;
    min-height: 210px;
  }

  .terms-content {
    margin-top: 50px !important;
  }

  .main-contact form {
    padding: 25px !important;
  }

  .trusted-client .pertner {
    min-width: 30%;
  }

  .data-box-title h2 {
    font-size: 30px !important;
    line-height: 42px !important;
  }

  .rest-con h2 {
    font-size: 24px !important;
    letter-spacing: 0.2px !important;
    margin: 0 !important;
  }

  .rest-con p {
    font-size: 15px;
  }

  .review-box h2 {
    font-weight: 600 !important;
    font-size: 26px !important;
  }
}

@media screen and (max-width: 768px) {
  .slide-track {
    width: calc(250px * 7);
  }

  .slide-track-title h3 {
    margin-right: 0;
  }

  .food-home-page {
    padding: 20px 18px;
  }

  .green-right h2 {
    font-size: 20px !important;
    letter-spacing: 0.2px;
  }

  .text-box {
    width: 162px;
    min-height: 188px;
    padding: 20px;
  }

  .solution-box .sol-box {
    max-width: calc(50% - 8px) !important;
    margin-right: 8px !important;
  }

  .solution-box .sol-box img {
    max-width: 40px !important;
    margin-right: 12px !important;
  }

  .solution-box .sol-box h3 {
    font-size: 16px !important;
    max-width: 130px !important;
  }

  .solution-box .sol-box svg {
    width: 23px !important;
  }

  .ft-pads h5 {
    text-align: center;
    line-height: 30px !important;
  }

  .main-contact form {
    padding: 35px !important;
  }

  .flavor .swiper {
    padding: 0 8px !important;
  }
}

@media screen and (max-width: 700px) {
  .track-top {
    margin-top: 40px;
    width: 442px;
  }
}

@media screen and (max-width: 550px) {
  .main-data-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .text-box {
    width: 185px;
  }

  .text-box:nth-of-type(3) {
    border-top-right-radius: 0px;
  }

  .text-box:nth-of-type(2) {
    border-top-right-radius: 80px;
  }

  .text-box:nth-of-type(4) {
    border-bottom-left-radius: 0px;
  }

  .text-box:nth-of-type(5) {
    border-bottom-left-radius: 80px;
  }

  .text-box:nth-of-type(6) {
    border-bottom-right-radius: 80px;
  }
}

@media screen and (max-width: 500px) {
  .food-text h1 {
    font-size: 34px !important;
    line-height: 47px !important;
  }

  .food-text p {
    font-size: 16px !important;
  }

  .track-top {
    width: 370px;
  }

  .slide-track-title h3 {
    font-size: 17px;
    line-height: 23px;
  }

  .slider {
    width: 90%;
  }

  .green-right h2 {
    line-height: 28px !important;
    text-align: center;
  }

  .green-right .center-btn {
    justify-content: center;
  }

  .text-box {
    width: 172px;
    min-height: 169px;
    padding: 14px;
  }

  .main-data-box {
    row-gap: 30px;
    column-gap: 0px;
    margin-top: 5px;
  }
}

@media screen and (max-width: 400px) {
  .food-text h1 {
    font-size: 30px !important;
    line-height: 38px !important;
  }

  .food-text p {
    font-size: 14px !important;
  }

  .track-top {
    width: 295px;
    margin-top: 10px;
  }

  .slide-track-title h3 {
    font-size: 13px;
    line-height: 23px;
  }

  .green-left {
    padding: 20px 12px;
  }

  .text-box {
    min-height: 155px;
    height: 155px;
    width: 155px;
  }

  .text-box h3 {
    font-size: 24px;
  }

  .text-box p {
    font-size: 15px;
  }
}

@media screen and (max-width: 355px) {
  .food-text h1 {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .food-text p {
    font-size: 12px !important;
  }

  .food-text {
    padding-bottom: 16px;
  }

  .food-text {
    padding-bottom: 25px;
  }
}

/* ===== */

.solution-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-right: 10px;
  position: relative;
  margin-top: 30px;
}

.solution-box::after {
  content: "";
  position: absolute;
  top: -120px;
  left: -130px;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%,
      #65ccd89a 0%,
      rgba(124, 246, 113, 0) 100%);
  opacity: 0.32;
  z-index: 20;
}

.solution-box .sol-box {
  width: 294px;
  text-decoration: none;
  max-width: calc(50% - 20px);
  /* background: linear-gradient(-77.79deg, #3fa854c1 1%, #28983ec1 99%); */
  /* background: linear-gradient(-77.79deg, #1fab3bbf 1%, #3ce55ea3 99%); */
  /* background: linear-gradient(-77.79deg, rgb(86 188 142) 17.79%, #0c6450 82.21%); */
  /* background: linear-gradient(45deg, rgb(0, 167, 192) 0%, rgb(139, 214, 222) 100%); */
  /* background: linear-gradient(45deg, rgb(139, 214, 222) 0%, rgb(0, 167, 192) 100%); */
  background: linear-gradient(45deg, rgb(169 247 255) 0%, rgb(0 170 195) 100%);
  border-radius: 10px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 16px 17px;
  margin-bottom: 30px;
  margin-right: 20px;
  position: relative;
  z-index: 30;
  box-shadow: rgb(239 102 80 / 0%) -20px 30px 45px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  overflow: hidden;
}

.solution-box .sol-box:nth-of-type(2n + 1) {
  transform: translateY(20px);
}

.solution-box .sol-box img {
  max-width: 50px;
  display: block;
  margin-right: 15px;
  position: relative;
  z-index: 30;
}

.solution-box .sol-box h3 {
  max-width: 144px;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.02em;
  /* text-transform: uppercase; */
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 30;
  margin-bottom: 0;
}

.solution-box .sol-box svg {
  width: 40px;
  margin-left: 8px;
  position: relative;
  z-index: 30;
  transition: all 0.3s ease 0s;
}

.solution-box .sol-box:hover svg {
  transform: translateX(7px);
}

.solution-content {
  max-width: 500px;
  margin: 0 auto;
}

.solution-content h3 {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: rgb(6, 43, 71);
  margin-bottom: 25px;
}

.solution-content p {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 30px;
  color: rgb(78, 95, 119);
}

/* =================================== header changes ===================================== */

.nav-bar .mobile-nav-logo {
  display: none;
}

.nav-bar.active .mobile-nav-logo {
  display: block;
  height: 70px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 1501px) {
  .drop-box .drop-half-box {
    width: 40%;
  }
}

@media screen and (max-width: 1550px) {
  .main-data-box::before {
    left: 50px;
  }
}

@media screen and (max-width: 1500px) {
  .drop-box .drop-half-box {
    width: 50%;
  }

  .nav-bar ul li {
    margin: 0 10px;
  }
}

@media screen and (max-width: 1400px) {
  header {
    padding: 0 8px;
  }

  .nav-bar ul li {
    margin: 0 0px !important;
  }
}

@media screen and (max-width: 1290px) {
  .nav-bar ul li {
    margin: 0 8px;
  }

  .nav-bar ul li a {
    font-size: 14px;
  }
}

@media screen and (min-width: 1258px) {
  .nav-bar ul li {
    margin: 0 8px;
  }
}

@media screen and (max-width: 1257px) {
  .nav-bar ul li {
    margin: 0 5px;
  }
}

@media screen and (max-width: 1400px) {
  .nav-bar {
    top: 0;
  }

  .nav-bar.active .mobile-nav-logo a img {
    max-width: 70%;
  }

  .nav-bar.active .mobile-nav-logo i {
    font-size: 30px;
    right: 2%;
    position: relative;
    cursor: pointer;
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgb(95 190 237);
    color: #fff;
  }

  .nav-bar ul li {
    margin: 0;
  }

  .drop-center-box-pera {
    display: none;
  }

  .nav-bar.active {
    padding: 15px;
  }

  .drop-box .drop-half-box {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .nav-bar ul li {
    margin-left: 15px;
  }

  .nav-bar ul .pad-nav {
    position: relative;
    padding: 10px 0;
  }

  .nav-bar ul .pad-nav::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0px;
    height: 1px;
    background: linear-gradient(278deg,
        rgb(225 255 253) 0%,
        rgb(198 229 255) 100%);
    width: 100%;
    border-radius: 50px;
  }

  header {
    padding: 5px 18px;
  }
}

@media screen and (max-width: 376px) {
  .nav-bar ul li ul .drop-box li a {
    font-size: 14px;
  }
}

@media screen and (min-width: 1401px) {
  .new-menu .dropdown:hover .dropdown-menu {
    display: block !important;
    transition: all 0.5s ease;
  }

  .new-menu .dropdown.opens:hover .dropdown-menu {
    display: block !important;
    transition: all 0.5s ease;
  }

  .new-menu .dropdown.opens:focus .dropdown-menu {
    display: none !important;
    transition: all 0.5s ease;
  }

  .new-menu .dropdown.opens .dropdown-menu {
    display: none !important;
    transition: all 0.5s ease;
  }

  .new-menu .dropdown:hover i {
    transform: rotate(-180deg);
    transition: 0.5s;
  }

  .new-menu .dropdown.opens:hover i {
    transform: rotate(-180deg);
    transition: 0.5s;
  }

  .new-menu .dropdown.opens i {
    transform: rotate(0deg);
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .dropdown-menu .drop-box .drop-center-box li {
    width: 25%;
  }

  .drop-box .drop-half-box h2 {
    width: 92%;
  }

  .drop-box .drop-half-box li {
    width: 50%;
  }

  .nav-bar .dropdown-menu {
    padding: 16px 0px 35px;
  }

  .nav-bar ul li {
    margin: 10px 0px !important;
  }

  .drop-box .drop-half-box {
    width: 49%;
  }
}

/* =================================== header changes end ===================================== */

/* ========================================= new contact form star ====================================== */

.new-contact-form {
  padding: 80px 0;
  position: relative;
  margin: auto 145px;
}

.contact-bradcumbs {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.contact-bradcumbs a {
  display: block;
  text-decoration: none;
  color: rgba(21, 45, 45, 0.4);
  margin-right: 10px;
  font-size: 18px;
  font-weight: 500;
}

.contact-bradcumbs a:hover {
  color: rgba(21, 45, 45, 0.4);
}

.contact-bradcumbs i {
  display: block;
  text-decoration: none;
  color: rgba(21, 45, 45, 0.4);
  margin-right: 10px;
  font-size: 18px;
  font-weight: 500;
  transform: translateY(2px);
}

.contact-bradcumbs p {
  margin-bottom: 0;
  color: rgb(6, 43, 71);
  font-size: 17px;
  font-weight: 500;
  text-align: start !important;
}

.new-contact-title {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
  margin-top: 42px;
}

.new-contact-title h2 {
  font-style: normal;
  font-weight: 600 !important;
  font-size: 50px !important;
  line-height: 72px !important;
  color: rgb(25, 16, 12) !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
}

.new-contact-title p {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 25px;
  color: rgb(24, 15, 42);
  opacity: 0.7;
  width: 300px;
  margin-left: 30px;
  font-weight: 500;
  text-align: start;
}

.new-main-contact {
  margin-top: 60px;
}

.new-main-contact label {
  font-size: 15px !important;
  text-align: start !important;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: rgb(119, 119, 119);
  opacity: 0.7;
}

.new-main-contact .form-control {
  background: #f8fdffb5 !important;
}

.new-contact-bg {
  width: 390px;
  position: absolute;
  right: 0%;
  top: 15%;
}

.new-contact-bg img {
  width: 100%;
}

.start-btn {
  display: flex;
  justify-content: start;
  align-items: center;
}

.transformSection {
  position: relative;
  display: flex;
  align-items: flex-start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  background-color: rgb(243, 243, 241);
  border-top-right-radius: 140px;
  padding-bottom: 140px;
}

.transform-col {
  width: 50%;
  margin-right: 5%;
  position: relative;
}

.transform-col:nth-child(1) img {
  max-width: 100%;
  display: block;
}

.transform-col-sc {
  position: relative;
}

.transform-col-sc:nth-child(2) {
  width: 45%;
  max-width: 600px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.trans-content {
  margin-bottom: 25px;
}

.transformSection .trans-title {
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 70px !important;
  color: rgb(25, 16, 12) !important;
  font-family: var(--font-family) !important;
  text-transform: initial !important;
  letter-spacing: 0.3px !important;
}

.transform-col-sc:nth-child(2) p {
  max-width: 395px;
}

.transformSection .trans-Description {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  margin-top: 15px;
  margin-bottom: 30px;
  color: rgb(0, 0, 0);
  opacity: 0.8;
  text-align: start;
  letter-spacing: 0.1px;
}

.Trans-dot-1 {
  position: absolute;
  bottom: 300px;
  right: 5%;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0px 9px 16px;
  border-color: transparent transparent rgb(63, 181, 197);
  transform: rotate(40deg);
  z-index: 99;
}

.Trans-dot-2 {
  position: absolute;
  inset: 90px 5% 300px -50px;
  width: 13px;
  height: 13px;
  background-color: rgb(137, 209, 94);
  border-radius: 50%;
}

.Trans-triangle {
  position: absolute;
  width: 8px;
  height: 8px;
  bottom: 30px;
  left: -40px;
  border-radius: 50%;
  background-color: rgb(76, 146, 237);
}

/* ========================================= new contact form end ====================================== */

.terms-across {
  padding: 50px 0;
}

.terms-content {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 80px !important;
}

.terms-box {
  width: 30%;
  margin-bottom: 100px;
}

.terms-heading {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.terms-img-box {
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(6 43 71 / 7%) 6.6px 6.6px 18.6px;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  position: relative;
  margin-right: 15px;
}

.terms-img-box img {
  max-width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.terms-subtitle {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: rgb(6, 43, 71);
}

.terms-List {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: rgba(6, 43, 71, 0.8);
}

.terms-List ul {
  padding-left: 0px !important;
}

.terms-List li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
}

.terms-List li::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgb(60, 75, 96);
  border-radius: 2px;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  left: 0px;
}

.terms-btn {
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: rgb(45, 157, 148);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

.terms-btn i {
  font-size: 18px;
  transition: all 0.3s ease 0s;
}

.terms-btn:hover {
  color: rgb(45, 157, 148);
}

.terms-btn:hover i {
  transform: translateX(7px);
}

.terms-box:nth-of-type(4) {
  margin-left: 13%;
}

.terms-box:nth-of-type(n + 4) {
  width: 29%;
  padding-left: 40px;
}

/* ======================= footer slider =================== */

.flavor {
  padding: 50px 0;
}

.swiper-content {
  margin-bottom: 20px;
  width: 92%;
  margin: 0 auto;
}

.swiper-content h2 {
  font-family: var(--font-family);
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 40px !important;
  line-height: 53px !important;
  color: rgb(6, 43, 71) !important;
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 10px;
}

.swiper-content p {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: rgb(78, 95, 119);
  margin-top: 6px;
}

.main-foot-slider {
  margin: 50px 0;
}

.slider-foot-img {
  width: 200px;
  max-width: 100%;
  border-radius: 20px;
  max-height: 200px;
  height: 200px;
  object-fit: cover;
}

.flavor .swiper {
  padding: 0 20px;
}

.flavor .swiper .swiper-button-next,
.flavor .swiper .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 1px);
}

.flavor .swiper .swiper-button-next::after,
.flavor .swiper .swiper-button-prev::after {
  font-size: 24px !important;
  font-weight: 900 !important;
  color: rgb(124, 190, 223);
}

.flavor .swiper .swiper-slide a h3 {
  font-size: 20px;
  margin: 5px 0;
  display: block;
  text-align: center;
  color: rgb(16, 96, 136);
}

.flavor .swiper .swiper-slide .slide-price {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flavor .swiper .swiper-slide .slide-price img {
  margin-right: 8px;
  transform: translateY(-1px);
}

.flavor .swiper .swiper-slide .slide-price h3 {
  font-size: 20px;
  margin: 5px 0;
  display: block;
  text-align: center;
  color: rgb(10, 62, 88);
}

/* ============================================== mobile app ================================================== */

.food-tab {
  margin: 50px 0 20px;
}

.food-tab .nav-tabs {
  border: none;
  outline: none;
  display: flex;
  justify-content: center;
}

.food-tab .nav-tabs .nav-item {
  margin: 2px 10px;
}

.food-tab .nav-tabs .nav-item .nav-link {
  display: block;
  position: relative;
  overflow: hidden;
  min-width: 220px;
  padding: 15px 44px 12px;
  font-family: var(--font-family);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  color: rgb(9, 55, 90);
  border: 2px solid rgb(124, 190, 223);
  background-color: transparent;
  border-radius: 7px;
  text-decoration: none;
  transform: translateZ(0px);
  transition: all 0.3s ease 0s;
  font-size: 17px;
  line-height: 29px;
  text-transform: initial !important;
}

.food-tab .nav-tabs .nav-item .nav-link.active {
  border-color: rgb(8, 147, 189);
  color: rgb(8, 147, 189);
  background-color: rgb(8, 147, 189);
  color: #fff;
}

.mobile-app-list {
  margin: 10px 0 25px;
}

.mobile-app-list ul {
  display: flex;
  flex-wrap: wrap;
}

.mobile-app-list ul li {
  width: 33%;
}

.mobile-app-list ul li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgb(7, 174, 105);
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  border-bottom-right-radius: 6px;
  top: calc(50% - 0px);
  left: -26px;
  transform: translateY(-50%);
}

.mobile-app-list ul li:nth-of-type(3n + 1)::after {
  background-color: rgb(248 68 41);
}

.mobile-app-list ul li:nth-of-type(3n)::after {
  background-color: rgb(4 112 193);
}

.mobile-app-list ul li a {
  color: #005be2;
  font-family: var(--font-family);
  font-size: 16px;
  letter-spacing: 0.1px;
  font-weight: 500;
}

.mobile-app-list ul li a:hover {
  border-bottom: 2px solid #005be2;
  transition: all ease;
}

/* -------------------------------- new food aggregater ----------------- */

.custom-secrecy {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: 120px auto 110px;
  padding: 85px 0px 85px;
  background-color: rgb(250, 250, 250);
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  border-top-left-radius: 85px;
  border-bottom-right-radius: 85px;
  overflow: hidden;
}

.secrecy-leftimg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 20%;
}

.secrecy-rightimg {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 20%;
}

.secrecy-inner {
  max-width: 41%;
  text-align: center;
}

.secrecy-title {
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 58px;
  color: rgb(6, 43, 71);
  margin-bottom: 32px;
  font-family: var(--font-family);
}

.secrecy-text {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: rgb(78, 95, 119);
}

.secrecy-text p {
  margin: 20px 0px;
  display: block;
  text-align: center;
}

/* ====================================================== new food intelligence ===================================================== */

.intelligence-wrapper {
  width: calc(100% - 40px);
  margin: -20px auto 0px;
  padding: 60px 0px 60px;
  background: linear-gradient(225.02deg, rgb(243, 243, 243) 0%, #e6fffd 92.34%);
}

.plateform-container {
  width: calc(100% - 160px);
  max-width: 1460px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
}

.plateform-title {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 58px;
  text-align: center;
  color: rgb(6, 43, 71);
}

.plateform-title h1 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 40px !important;
  line-height: 58px !important;
  text-align: center !important;
  color: rgb(6, 43, 71) !important;
  text-transform: initial !important;
}

.plateform-subtitle {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 30px;
  text-align: center;
  max-width: 865px;
  color: rgb(78, 95, 119);
  opacity: 0.7;
  margin: 17px 0px 50px;
}

.plateform-structure {
  display: flex;
  width: 100%;
}

.plateform-structure-leftside {
  margin: -25px 0px 25px;
  width: 26%;
  height: 500px;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
}

.plateform-structure-leftside-box {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  width: 200px;
  height: 120px;
  padding: 16px;
  background: linear-gradient(45deg,
      rgb(0, 167, 192) 0%,
      rgb(139, 214, 222) 100%);
  box-shadow: rgb(61 188 206 / 30%) 0px 4px 12px,
    rgb(202 207 215) 0px 20px 28px -10px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 2;
}

.plateform-structure-leftside-arrow {
  position: absolute;
  top: 50%;
  right: 0px;
  width: calc(100% - 170px);
  height: 10px;
  background: url(../img/food-intelligence/left_center.png) center center / cover no-repeat;
  z-index: 1;
}

.plateform-structure-leftside-arrow::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 225px;
  background: url(../img/food-intelligence/left_top.png) center center / cover no-repeat;
}

.plateform-structure-leftside-arrow::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 225px;
  background: url(../img/food-intelligence/left_bottom.png) center center / cover no-repeat;
}

.plateform-structure-center {
  width: 48%;
  position: relative;
}

.plateform-structure-center .center-btn {
  margin-top: 50px;
}

.plateform-structure-centerimage {
  width: 100%;
  border-radius: 20px;
  box-shadow: rgb(122 147 159 / 15%) 1px 25px 15px -5px;
}

.plateform-structure-rightside {
  margin: -25px 0px 25px;
  width: 26%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
}

.plateform-structure-rightside-box {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  width: 200px;
  height: 140px;
  padding: 30px;
  row-gap: 10px;
  background-color: rgb(12 177 147);
  box-shadow: rgb(240 106 83 / 30%) 0px 4px 12px,
    rgb(246 139 111 / 20%) 0px 20px 28px -10px;
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

.rightsidebox-icon {
  width: 50px;
}

.plateform-structure-rightside-text {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: rgb(255, 255, 255);
}

.plateform-structure-rightside-arrow {
  position: absolute;
  top: 50%;
  left: -3px;
  width: calc(100% - 180px);
  height: 10px;
  background: url(../img/food-intelligence/right_center.png) center center / cover no-repeat;
  z-index: 1;
}

.plateform-structure-rightside-arrow::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 225px;
  background: url(../img/food-intelligence/right_top.png) center center / cover no-repeat;
}

.plateform-structure-rightside-arrow::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 225px;
  background: url(../img/food-intelligence/right_bottom.png) center center / cover no-repeat;
}

.start-intelligence-btn {
  margin-top: 40px;
}

.intelligence-light {
  background: linear-gradient(225.02deg, rgb(243, 243, 243) 0%, #e6fffd 92.34%);
  padding: 70px 0;
}

.intelligence-content-title {
  margin-bottom: 75px;
  width: 100%;
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

.intelligence-light-title {
  font-style: normal;
  font-weight: 600;
  font-size: 54px;
  line-height: 60px;
  color: #062b47;
  padding: 0 30px;
  text-align: center;
  font-family: var(--font-family);
  background: linear-gradient(225.02deg, #f0f6f5 0%, #ebfaf8 92.34%);
  position: relative;
}

.intelligence-content-title::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto 0px;
  width: 100%;
  height: 5px;
  background: linear-gradient(45deg,
      rgb(0, 144, 192) 0%,
      rgb(100, 179, 211) 100%);
}

.intelligence-margin {
  margin: 10px 0 90px !important;
}

/* ============================================================== new media quary ======================================================= */

@media screen and (max-width: 1700px) {
  .always-bg {
    max-width: 1350px;
  }
}

@media screen and (max-width: 1400px) {
  .always-bg {
    max-width: 1125px;
  }

  .alw-img-2 {
    top: -62px;
    left: -29px;
  }

  .alw-img-1 {
    bottom: -32px;
    left: 20px;
  }

  .alw-img-3 {
    top: -73px;
    right: -10px;
  }

  .flavor {
    padding: 25px 0;
  }

  .transformSection {
    padding-bottom: 0;
  }

  .transform-col {
    width: 46%;
    margin-right: 1%;
  }

  .transform-col-sc:nth-child(2) {
    width: 45%;
    max-width: 550px;
    padding-top: 86px;
    padding-bottom: 107px;
  }

  .transformSection .trans-title {
    font-size: 44px !important;
    line-height: 62px !important;
  }

  .new-contact-form {
    margin: auto 40px;
  }

  .new-blog-page {
    margin: auto 40px;
  }

  .new-blog-inside-section {
    margin: auto 40px;
  }

  .new-blog-inside-content {
    padding-left: 30px;
  }

  .new-case-study-inside {
    padding-left: 0;
    padding-right: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .always-bg {
    max-width: initial;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .solution-box::after {
    display: none;
  }

  .solution-box .sol-box img {
    max-width: 32px;
    margin-right: 9px;
  }

  .solution-box .sol-box h3 {
    font-size: 14px;
  }

  .solution-box .sol-box svg {
    width: 30px;
  }

  .gr-cont div {
    flex-direction: column;
    align-items: start;
  }

  .new-contact-bg {
    display: none;
  }

  .secrecy-inner {
    max-width: 50%;
  }

  .secrecy-leftimg {
    width: 22%;
  }

  .plateform-container {
    width: calc(100% - 55px);
  }

  .intelligence-light-title {
    font-size: 40px;
    line-height: 46px;
    padding: 0 12px;
  }

  .new-blog-post {
    width: 45%;
    margin-bottom: 40px;
  }

  .new-data-field-List .new-data-field-listitem li {
    width: 50%;
  }

  .new-data-field-left {
    width: 50%;
    padding: 10px 10px;
  }

  .new-data-field-right {
    width: 50%;
    padding: 10px 10px;
  }

  .new-data-field-wrapper-content {
    padding: 20px 12px;
  }

  .new-roadmap-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .new-roadmap-left-content {
    width: 60%;
  }

  .new-roadmap-right-content {
    width: 100%;
  }

  .transformation-center .transformation-leftside-img {
    margin-bottom: 175px;
    width: 260px;
    transform: translateX(158px);
  }

  .transformation-center .transformation-rightside-img {
    margin-top: 66px;
    width: 260px;
    transform: translateX(132px);
  }

  .transformation-circle {
    width: 210px;
    height: 210px;
    transform: translateX(-205px);
  }

  .transformation-circle .wave {
    height: 130px;
    width: 130px;
    top: 7%;
    left: 11%;
  }

  .transformation-title {
    left: 15%;
    top: 5%;
    width: 58%;
  }
}

@media screen and (max-width: 992px) {
  #first-order {
    order: 1;
  }

  #second-order {
    order: 2;
  }

  #third-order {
    order: 3;
  }

  .solution-content {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 50px;
  }

  .solution-box .sol-box img {
    max-width: 50px;
    margin-right: 15px;
  }

  .solution-box .sol-box h3 {
    font-size: 17px;
  }

  .solution-box .sol-box svg {
    width: 40px;
  }

  .solution-box {
    margin-right: 0px;
    justify-content: center;
  }

  .home-btn {
    display: flex;
    justify-content: center;
  }

  .green-right {
    text-align: center;
  }

  .terms-content {
    margin-top: 40px !important;
  }

  .terms-box:nth-of-type(4) {
    margin-left: 0%;
  }

  .terms-box:nth-of-type(n + 4) {
    width: 33%;
    padding-left: 0px;
  }

  .terms-box {
    width: 33%;
    margin-bottom: 56px;
  }

  .transform-col-sc:nth-child(2) {
    padding-bottom: 53px;
  }

  .home-img {
    padding-bottom: 15px;
  }

  .food-text .tag-title {
    text-align: center;
  }

  .start-btn {
    justify-content: center;
    margin-top: 22px;
  }

  .defalt-start {
    justify-content: start;
  }

  .elementor-image {
    display: none;
  }

  .ag-process {
    height: auto;
    min-height: initial;
  }

  .ag-box {
    height: auto;
    min-height: initial;
  }

  .food-ag-box {
    min-height: initial;
  }

  .secrecy-inner {
    max-width: 65%;
  }

  .plateform-title {
    font-size: 22px;
    line-height: 36px;
  }

  .plateform-title h1 {
    font-size: 22px !important;
    line-height: 36px !important;
  }

  .plateform-subtitle {
    font-size: 15px;
    line-height: 26px;
    margin: 8px 0px 50px;
  }

  .plateform-structure {
    flex-direction: column;
  }

  .plateform-structure-leftside {
    margin: 0px auto;
    width: 100%;
    max-width: 388px;
    height: auto;
    flex-direction: row;
  }

  .plateform-structure-leftside-box {
    width: 120px;
    height: 88px;
    font-size: 14px;
    line-height: 16px;
    padding: 6px;
  }

  .plateform-structure-leftside-arrow {
    top: 87px;
    left: 0px;
    margin: 0px auto;
    width: 250px;
    height: 112px;
    background: url(../img/food-intelligence/up.png) center center / cover no-repeat;
  }

  .plateform-structure-leftside-arrow::after {
    display: none;
  }

  .plateform-structure-leftside-arrow::before {
    display: none;
  }

  .plateform-structure-center {
    width: 100%;
    margin: 112px 0px;
  }

  .plateform-structure-centerimage {
    width: 100%;
    border-radius: 20px;
    box-shadow: rgb(122 147 159 / 15%) 1px 25px 15px -5px;
  }

  .plateform-structure-rightside {
    margin: 0px auto;
    width: 100%;
    max-width: 388px;
    height: auto;
    flex-direction: row;
  }

  .plateform-structure-rightside-box {
    width: 120px;
    height: 90px;
  }

  .rightsidebox-icon {
    width: 40px;
  }

  .plateform-structure-rightside-text {
    font-size: 13px;
    line-height: 16px;
  }

  .plateform-structure-rightside-arrow {
    top: -100px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    width: 250px;
    height: 112px;
    background: url(../img/food-intelligence/down.png) center center / cover no-repeat;
  }

  .plateform-structure-rightside-arrow::after {
    display: none;
  }

  .plateform-structure-rightside-arrow::before {
    display: none;
  }

  .intelligence-content-title {
    margin-bottom: 60px;
  }

  .intelligence-content-title::before {
    display: none;
  }

  .intelligence-light-title {
    background: transparent;
    font-size: 36px;
    line-height: 43px;
  }

  .intelligence-margin {
    margin: 10px 0 33px !important;
  }

  .new-blog-title {
    flex-direction: column;
    align-items: start;
  }

  .new-blog-title p {
    margin-left: 5px;
    width: 100%;
  }

  .letest-title {
    font-size: 28px;
  }

  .transformation-animation {
    display: none;
  }

  .new-blog-inside-row {
    flex-direction: column;
  }

  .new-blog-inside-left {
    width: 100%;
  }

  .new-blog-inside-right {
    width: 100%;
  }

  .new-ab-api-row {
    width: calc(100% - 50px);
  }

  .ab-api-left-right {
    padding: 6px;
  }
}

@media screen and (max-width: 768px) {
  .green-right {
    flex-direction: column;
  }

  .green-right .center-btn {
    margin-top: 10px;
  }

  .gr-cont div h2,
  .gr-cont div p {
    text-align: start !important;
  }

  .green-right .center-btn {
    justify-content: start;
    width: 50%;
  }

  .terms-box {
    width: 50%;
  }

  .terms-box:nth-of-type(n + 4) {
    width: 50%;
  }

  .rest-box h4 {
    font-size: 16px;
  }

  .rest-box {
    padding: 10px 10px;
    height: 75px !important;
  }

  .rest-icon img {
    height: 34px;
    width: 34px;
  }

  .rest-box .rest-icon {
    height: 55px;
    width: 55px;
  }

  .terms-across {
    padding: 40px 0 10px;
  }

  .contact-form {
    padding: 30px 0 10px;
  }

  .restaurant-box {
    padding: 15px 0;
  }

  .ptb-80 {
    padding: 40px 0 10px;
  }

  .swiper-content h2 {
    font-size: 25px !important;
    line-height: 40px !important;
    margin-bottom: 0px;
  }

  .swiper-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .main-contact .chart-contact {
    top: -6px;
    left: 22px;
  }

  .main-contact .circle-contact {
    bottom: -22px;
    left: 37px;
    z-index: 1;
  }

  .transform-col {
    display: none;
  }

  .transform-col-sc:nth-child(2) {
    width: 100%;
    max-width: initial;
    padding: 80px 50px;
  }

  .Trans-triangle {
    bottom: 42px;
    left: 200px;
  }

  .Trans-dot-1 {
    bottom: 218px;
    right: 20%;
  }

  .Trans-dot-2 {
    display: none;
  }

  .transformSection .trans-title {
    font-size: 34px !important;
    line-height: 50px !important;
    font-weight: 600 !important;
  }

  .new-contact-title {
    flex-direction: column;
    -webkit-box-align: start;
    align-items: start;
  }

  .new-contact-title p {
    margin: 0;
  }

  .main-ag-process h3 {
    font-size: 30px !important;
    line-height: 42px !important;
  }

  .ag-advantage h3 {
    font-size: 30px !important;
    line-height: 42px !important;
  }

  .ag-process {
    padding: 50px 0;
  }

  .secrecy-leftimg,
  .secrecy-rightimg {
    width: 30%;
  }

  .intelligence-common {
    padding-bottom: 18px;
  }

  .intelligence-light {
    padding: 32px 0;
  }

  .intelligence-light-title {
    padding: 0;
    font-size: 28px;
    line-height: 40px;
  }

  .intelligence-content-title {
    margin-bottom: 15px;
  }

  .new-blog-post {
    width: 100%;
    margin-bottom: 40px;
  }

  .bl-title {
    padding: 0 16px;
  }

  .new-data-field-left {
    width: 100%;
  }

  .new-data-field-right {
    width: 100%;
  }

  .new-data-field-row {
    flex-direction: column;
  }

  .new-data-field-List .new-data-field-listitem li {
    width: 33%;
  }

  .new-roadmap-left-content {
    width: 100%;
  }

  .latest-blog {
    flex-direction: column;
  }

  .letest-left-side {
    width: 100%;
  }

  .letest-right-side {
    width: 100%;
  }

  .letest-rihgt-content {
    padding: 15px;
  }

  .new-ab-api-row {
    width: calc(100% - 0px);
    flex-direction: column;
  }

  .new-ab-api-row .new-ab-api-left {
    width: 100%;
    padding: 5px;
  }

  .new-ab-api-row .new-ab-api-right {
    width: 100%;
    padding: 5px;
  }

  .ab-api-left-right {
    padding: 20px;
  }
}

@media screen and (max-width: 600px) {
  .new-data-field-List .new-data-field-listitem li {
    width: 50%;
  }
}

@media screen and (max-width: 500px) {
  .alw-img-2 {
    top: -86px;
    left: -40px;
  }

  .alw-img-1 {
    bottom: -75px;
    left: -4px;
  }

  .alw-img-3 {
    top: -73px;
    right: -10px;
  }

  .solution-box .sol-box {
    padding: 14px 10px;
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0px;
    background: transparent;
    -webkit-box-pack: start;
    justify-content: flex-start;
    transform: none !important;
  }

  .solution-box .sol-box img {
    max-width: 38px !important;
    margin-right: 25px !important;
  }

  .solution-box .sol-box h3 {
    font-weight: 500;
    color: rgb(6, 43, 71);
    flex: 1 1 0%;
    line-height: 21px;
  }

  .solution-box .sol-box svg {
    margin-left: auto;
    width: 35px;
    transform: none !important;
  }

  .solution-box .sol-box svg path {
    fill: rgb(124, 190, 223);
  }

  .solution-box .sol-box {
    margin-right: 0px !important;
    margin-bottom: 6px;
  }

  .green-right p {
    text-align: center;
  }

  .terms-box {
    width: 70%;
  }

  .terms-content {
    justify-content: center;
  }

  .terms-box:nth-of-type(n + 4) {
    width: 70%;
  }

  .main-contact {
    padding: 3px 5px;
  }

  .main-contact form img {
    display: none;
  }

  .solution-box {
    width: 340px;
    margin: 0 auto;
    max-width: 100%;
  }

  .rest-box div:nth-child(2) {
    width: 60%;
  }

  .blog-article {
    padding: 15px 15px 8px;
  }

  .main-contact .chart-contact {
    top: -17px;
    left: 16px;
    width: 42px;
  }

  .main-contact .circle-contact {
    bottom: -31px;
    left: 58px;
    z-index: 1;
    width: 45px;
  }

  .always-content h2 {
    font-size: 29px !important;
    line-height: 40px !important;
  }

  .always-bg {
    padding-top: 80px;
  }

  .gr-cont {
    align-items: self-start;
  }

  .rest-con h2 {
    font-size: 17px !important;
    line-height: 20px !important;
  }

  .rest-con p {
    font-size: 13px;
    line-height: 19px;
  }

  .data-box-title h2 {
    font-size: 19px !important;
    line-height: 30px !important;
  }

  .solution-content h3 {
    font-size: 25px;
    line-height: 36px;
    margin-bottom: 9px;
  }

  .solution-content p {
    font-size: 15px;
    line-height: 26px;
  }

  .Trans-triangle,
  .Trans-dot-1 {
    display: none;
  }

  .custom-secrecy {
    margin: 40px auto 40px;
    padding: 290px 0px 290px;
  }

  .secrecy-leftimg,
  .secrecy-rightimg {
    width: 65%;
  }

  .secrecy-inner {
    max-width: 100%;
  }

  .secrecy-title {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 10px;
  }

  .intelligence-wrapper {
    width: 100%;
  }

  .plateform-container {
    width: calc(100% - 20px);
  }

  .plateform-title {
    font-size: 20px;
    line-height: 32px;
  }

  .plateform-title h1 {
    font-size: 20px !important;
    line-height: 32px !important;
  }

  .plateform-subtitle {
    font-size: 14px;
    line-height: 26px;
    margin: 12px 0px 32px;
  }

  .plateform-structure-leftside {
    max-width: 100%;
  }

  .plateform-structure-leftside-box {
    width: 100%;
    height: 78px;
    font-size: 12px;
    line-height: 16px;
    padding: 6px;
  }

  .plateform-structure-leftside-box:nth-child(2) {
    margin: 0 5px;
  }

  .plateform-structure-leftside-arrow {
    top: 60px;
  }

  .plateform-structure-center {
    margin: 98px 0px;
  }

  .plateform-structure-rightside {
    max-width: 100%;
  }

  .plateform-structure-rightside-box {
    width: 100%;
    height: 95px;
    font-size: 12px;
    line-height: 16px;
    padding: 6px;
  }

  .plateform-structure-rightside-box:nth-child(2) {
    margin: 0 5px;
  }

  .plateform-structure-rightside-arrow {
    top: -90px;
  }

  .intelligence-margin:last-child {
    margin-bottom: 0px !important;
  }

  .intelligence-light-title {
    text-align: start;
    padding: 0 15px;
    font-size: 25px;
    line-height: 35px;
  }

  .intelligence-content-title {
    justify-content: start;
  }

  .food-pd ul li {
    line-height: 25px;
  }

  .mobile-app-list ul li {
    line-height: 30px;
  }

  .food-pd p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 0;
  }

  .new-blog-section {
    padding: 50px 0 20px;
  }

  .terms-box {
    width: 85%;
  }

  .new-testimonial-heading h2 {
    font-size: 28px !important;
    line-height: 38px !important;
    margin-bottom: 5px;
  }

  .new-testimonil-data {
    height: 510px;
  }

  .new-data-field-title {
    font-size: 24px;
  }

  .new-data-field-img-box img {
    max-width: 58%;
  }

  .new-data-field-img-box {
    width: 50px;
    height: 50px;
  }

  .new-data-field-List li {
    padding-left: 10px;
    font-size: 14px;
  }

  .new-data-field-List li::after {
    width: 6px;
    height: 6px;
    top: calc(50% - 0px);
  }

  .new-data-field-right {
    padding: 10px 5px;
  }

  .food-video-banner {
    height: 222px;
  }

  .play-btn i {
    font-size: 60px;
  }

  .new-roadmap-left-content {
    padding: 10px;
  }

  .new-roadmap-right-content {
    padding: 10px;
  }

  .new-roadmap-wrapper-content {
    padding: 30px 20px;
  }

  .new-roadmap-title {
    line-height: 30px;
    font-size: 20px;
  }

  .new-roadmap-List {
    margin-top: 20px;
  }

  .new-roadmap-List .road-map-disk {
    font-size: 15px;
  }

  .new-blog-page {
    margin: auto 5px;
    padding: 20px 0;
  }

  .new-blog-title h2 {
    font-size: 36px !important;
    line-height: 50px !important;
  }

  .latest-blog {
    padding-top: 30px;
    padding-bottom: 25px;
  }

  .main-blog-bottom {
    margin-bottom: 22px !important;
    margin-top: 24px !important;
  }

  .new-blog-inside-section {
    margin: 0px;
  }

  .blog-bradcumbs {
    margin-bottom: 5px;
  }

  .blog-bradcumbs p {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-bradcumbs a {
    margin-right: 6px;
    font-size: 13px;
    white-space: nowrap;
  }

  .new-blog-inside-content {
    padding-left: 5px;
  }

  .new-case-study-inside {
    padding-left: 0;
    padding-right: 5px;
  }

  .new-blog-inside-content h1 {
    font-size: 21px !important;
    line-height: 34px;
    font-weight: 600 !important;
  }

  .new-blog-inside-social {
    margin-top: 16px;
  }

  .social-icon-inside {
    width: 45px;
    height: 45px;
  }

  .blog-details-wrap p {
    font-size: 15px;
  }

  .blog-details-info h3 {
    font-size: 24px;
    line-height: 37px;
    margin-top: 5px;
    margin-bottom: 4px;
  }

  .blog-details .col-lg-9 {
    width: 100% !important;
  }

  .api-code pre {
    padding: 46px 25px;
    height: 275px;
  }

  .ab-api-left-right h2 {
    font-size: 28px !important;
    line-height: 37px !important;
  }

  .ab-api-left-right p {
    font-size: 16px;
    line-height: 30px;
    margin: 4px 0px 16px;
  }

  .api-right-highlight ul li {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 10px;
  }

  .new-zomato-api-box {
    padding: 40px 0 50px;
  }

  .new-zomato-api-wrapper h3 {
    font-size: 26px !important;
    line-height: 38px !important;
    letter-spacing: 0.5px !important;
  }

  .quation {
    padding: 40px 0;
  }

  .quation-title {
    margin-bottom: 0px;
  }

  .quation-title h2 {
    font-size: 20px !important;
  }

  .accordion-item {
    padding: 15px 0;
  }

  .accordion-item h2 button {
    font-size: 15px;
    line-height: 28px;
  }

  .accordion-body {
    margin-top: 7px;
    font-size: 14px;
    line-height: 23px;
  }

  .api-box-section {
    padding: 38px 0;
  }
}

@media screen and (max-width: 456px) {
  .rest-box {
    padding: 10px 10px;
  }

  .rest-box p {
    line-height: 20px;
  }

  .rest-box .rest-icon {
    height: 55px;
    width: 55px;
  }

  .rest-icon img {
    height: 36px;
    width: 36px;
  }

  .food-text .tag-title {
    font-size: 12px;
    line-height: 18px;
  }

  .food-text h1 {
    font-size: 27px !important;
    line-height: 34px !important;
  }

  .mobile-app-list ul li {
    width: 50%;
  }

  .mobile-app-list ul li:nth-of-type(1n + 1)::after {
    background-color: rgb(7, 174, 105);
  }

  .mobile-app-list ul li:nth-of-type(2n + 1)::after {
    background-color: rgb(4 112 193);
  }

  .highlight-title {
    font-size: 14px;
  }

  .new-value-content .highlight-title {
    margin-bottom: 5px !important;
  }

  .new-testimonial-heading h2 {
    font-size: 23px !important;
    line-height: 33px !important;
    margin-bottom: 0px;
  }

  .api-box-section {
    padding: 30px 0;
  }

  .api-box-section .mt-5 {
    margin-top: 1rem !important;
  }
}

@media screen and (max-width: 420px) {
  .rest-box h4 {
    font-size: 14px;
  }

  .rest-box .rest-icon {
    margin-right: 7px;
  }

  .alw-img-2 {
    width: 50px;
    top: -81px;
    left: -26px;
  }

  .alw-img-3 {
    width: 46px;
    top: -65px;
    right: 6px;
  }

  .alw-img-1 {
    width: 56px;
    bottom: -92px;
    left: 20px;
  }

  .new-contact-form {
    margin: 0;
  }

  .main-ag-process h3 {
    font-size: 23px !important;
    line-height: 35px !important;
  }

  .ag-advantage h3 {
    font-size: 23px !important;
    line-height: 35px !important;
  }

  .ag-advantage p.ag-subline {
    font-size: 15px !important;
    line-height: 24px !important;
  }

  .advantage-box p {
    font-size: 15px;
  }
}

@media screen and (max-width: 400px) {
  .terms-box {
    width: 100%;
    padding-left: 10px;
  }

  .terms-box:nth-of-type(n + 4) {
    width: 100%;
  }

  .main-contact .chart-contact {
    top: -36px;
    left: 1px;
    width: 36px;
  }

  .main-contact .circle-contact {
    bottom: -31px;
    left: 58px;
    z-index: 1;
    width: 45px;
  }

  .transform-col-sc:nth-child(2) {
    padding: 42px 26px;
  }

  .custom-secrecy {
    padding: 260px 0px 260px;
  }

  .secrecy-title {
    font-size: 27px;
  }

  .blog-details-wrap ul li {
    width: 100%;
  }

  .new-blog-inside-content h1 {
    font-size: 20px !important;
    line-height: 30px;
  }

  .social-icon-inside {
    width: 35px;
    height: 35px;
    margin: 6px;
  }

  .social-icon-inside i {
    font-size: 18px;
  }

  .blog-details-wrap {
    padding-top: 4px;
  }

  .blog-details-wrap p {
    font-size: 14px;
  }

  .blog-details-info h3 {
    font-size: 20px;
    line-height: 29px;
    margin-top: 0px;
  }

  .blog-details-info {
    margin-top: 4px;
  }

  .blog-details-info ul li {
    font-size: 14px;
    line-height: 25px;
  }

  .new-footer-social-icon {
    width: 34px;
    height: 34px;
    margin: 5px 5px;
  }

  .new-footer-social-icon i {
    font-size: 17px;
  }
}

@media screen and (max-width: 992px) {
  .letest-title {
    font-size: 18px;
    line-height: 30px;
  }
}

@media screen and (max-width: 376px) {
  .new-testimonil-data {
    height: 530px;
  }

  .new-testimonial-pera p {
    font-size: 14px;
  }
}

@media screen and (max-width: 340px) {
  .new-data-field-List .new-data-field-listitem li {
    width: 100%;
  }
}

/* .slug-Buttons {
    display: flex;
    align-items: flex-start;
}

.PrimaryButton-Button {
    border: none;
    background: none;
    position: relative;
    appearance: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none!important;
}

.PrimaryButton-Button a {
    display: block;
    position: relative;
    overflow: hidden;
    min-width: 210px;
    padding: 15px 24px 12px;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    letter-spacing: 0.4px;
    letter-spacing: 0.02em;
    color: rgb(255, 255, 255);
    background-color: rgb(49, 192, 154);
    border-radius: 7px;
    text-decoration: none;
    transform: translateZ(0px);
}


.PrimaryButton-Button span {
    display: block;
    position: relative;
    z-index: 10;
}

.PrimaryButton-Button a:hover {
    color: #fff;
}

.PrimaryButton-Button a::after {
    content: "";
    position: absolute;
    top: 31.8281px;
    left: 193.5px;
    width: 0px;
    height: 0px;
    background: radial-gradient(circle closest-side, rgba(84, 241, 199, 0.761), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.2s ease 0s, height 0.2s ease 0s;
}

.PrimaryButton-Button a:hover::after {
    width: 300px;
    height: 300px;
} */

/* ==================================================== faqs ============================================ */

.faqs {
  padding: 40px 0;
}

.faqs h2 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 38px !important;
  line-height: 53px !important;
  text-align: center !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 20px;
}

.faqs .accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #e5e5e5 !important;
  padding: 5px 0;
}

.faqs .accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid rgb(124, 190, 223);
}

.faqs .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.faqs .accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: rgb(124, 190, 223);
}

.faqs .accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: rgb(124, 190, 223);
  border: 1px solid rgb(124, 190, 223);
  border: none;
}

.faqs .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
  color: rgb(6, 43, 71);
  letter-spacing: 0.3px;
  font-family: var(--font-family);
}

.faqs .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 12px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.faqs .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.faqs .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.faqs .accordion button[aria-expanded="true"] {
  color: rgb(124, 190, 223);
}

.faqs .accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.faqs .accordion button[aria-expanded="true"]+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.faqs .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.faqs .accordion .accordion-content p {
  margin: 1em;
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 25px;
  color: rgb(78, 95, 119);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.faqs .accordion .accordion-item:last-child {
  border: none !important;
}

/* ====================================== case study ============================================ */

.case-study-subtitle {
  position: relative;
  background-color: rgb(243, 243, 241);
  border-top-right-radius: 140px;
  border-bottom-right-radius: 140px;
  display: block;
  padding: 40px 60px 40px 20px;
}

.case-study-subtitle p {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 30px;
  color: rgb(78, 95, 119);
  text-align: start;
  display: block;
}

.case-study-details {
  display: flex;
  padding: 50px;
  border-top: 1px solid rgb(226, 226, 226);
  justify-content: center;
}

.case-study-details .case-study-title {
  width: 30%;
  padding: 0 10px;
}

.case-study-details .case-study-title h2 {
  font-weight: 500 !important;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-size: 24px !important;
  line-height: 40px !important;
  color: rgb(6, 43, 71);
  margin-bottom: 10px;
  letter-spacing: 0.5px !important;
  text-align: start;
  text-transform: initial !important;
}

.case-study-details .case-study-content h3 {
  font-weight: 500 !important;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-size: 18px !important;
  line-height: 30px !important;
  color: rgb(6, 43, 71);
  margin-bottom: 5px;
  letter-spacing: 0.5px !important;
  text-align: start;
  text-transform: initial !important;
}

.case-study-details .case-study-content p {
  text-align: start;
  font-size: 17px;
  padding-top: 4px;
  font-family: var(--font-family);
  color: var(--desc-black);
  line-height: 25px;
  display: block;
}

.case-study-details .case-study-content p strong {
  letter-spacing: 0.5px;
  font-weight: 600 !important;
}

.case-study-details .case-study-content ul li {
  text-align: start;
  font-size: 17px;
  padding-top: 4px;
  font-family: var(--font-family);
  color: var(--desc-black);
  line-height: 25px;
  display: block;
  margin-bottom: 10px;
  list-style: disc outside none;
  display: list-item;
}

.case-study-details .case-study-content {
  width: 70%;
  padding: 0 15px;
}

@media screen and (max-width: 992px) {
  .case-study-details {
    flex-direction: column;
  }

  .case-study-details .case-study-title {
    width: 100%;
  }

  .case-study-details .case-study-content {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .case-study-details {
    padding: 50px 0;
  }
}

.case-study-img {
  margin-bottom: 20px;
}

/* ========================================================== popup form ===================================================== */

#new-popup-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(23, 48, 51, 0.37);
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 9999;
  overflow: auto;
}

/* Center the form vertically and horizontally */
#new-popup-form .new-popup-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 10px;
  background: url(../img/contact/bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 5px -5px 80px #a5a5a5, -5px 5px 80px #ffffff;
}

.new-full-popup {
  position: relative;
  padding: 30px;
}

.new-full-popup .new-main-contact label {
  color: #000;
  opacity: 0.9;
}

.new-full-popup .new-main-contact .form-control {
  background: #edf9ffb5 !important;
}

.new-full-popup .new-main-contact .submit-button {
  border-color: rgb(8, 147, 189);
  background-color: rgb(8, 147, 189);
  color: #fff;
}

.new-full-popup .new-main-contact .submit-button:hover {
  border-color: rgb(8, 147, 189);
  background-color: #fff;
  color: rgb(8, 147, 189);
}

#new-popup-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  height: 30px;
  width: 30px;
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: rgb(58 155 204);
  display: flex;
  align-items: center;
  justify-content: center;
}

#new-popup-close-btn i {
  font-size: 20px;
}

/* -------- popup button ---------- */

.food-popup-btn {
  margin-top: 20px;
}

.new-popup-open-btn {
  font-family: inherit;
  background: linear-gradient(147deg, #47a8a2 5%, #098156 74%);
  color: white;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.new-popup-open-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

/* .new-popup-open-btn:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
} */

.new-popup-open-btn span {
  display: block;
  transition: all 0.3s;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  font-family: var(--font-family) !important;
}

.new-popup-open-btn svg {
  width: 25px;
  height: 25px;
  fill: white;
  transition: all 0.3s;
}

/* .new-popup-open-btn .svg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    margin-right: 0.5em;
    transition: all 0.3s;
}

.new-popup-open-btn:hover .svg-wrapper {
    background-color: rgba(255, 255, 255, 0.5);
}

.new-popup-open-btn:hover svg {
    transform: rotate(45deg);
} */

@media screen and (max-width: 768px) {
  #new-popup-form {
    padding: 10px;
  }

  #new-popup-form .new-popup-box {
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
  }

  .new-blog-inside-img {
    padding: 15px 5px;
  }

  .new-full-popup {
    padding: 0;
  }
}

.new-foot-btn a {
  display: inline-block;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.2px;
  margin-right: 10px;
  border: 2px solid rgb(8, 147, 189);
  border-radius: 5px;
  padding: 10px 20px;
  background-color: rgb(8, 147, 189);
  transition: all 0.3s ease;
  margin-top: 5px;
}

.new-foot-btn a:hover {
  color: rgb(8, 147, 189);
  background-color: #fff;
}

.food-country-name {
  padding: 10px 0px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.food-country-name i {
  font-size: 40px;
  color: var(--button-bg);
  margin-left: 3px;
  margin-right: 5px;
}

.food-country-name i:nth-of-type(2) {
  color: rgb(6, 43, 71);
  font-size: 20px;
}

.food-country-name h4 {
  display: inline-block;
  box-shadow: none;
  font-size: 40px;
  line-height: 34px;
  color: rgb(6, 43, 71);
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

.food-country-name img {
  width: 43px;
  margin-right: 14px;
}

/* ================================================= video ================================================ */

.new-video-inside-section {
  padding: 5px 0 20px;
  position: relative;
  margin: auto 140px;
}

.new-video-inside-row {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  /* -webkit-box-align: center; */
  /* align-items: center; */
}

.new-video-inside-right {
  width: 59%;
}

.new-video-inside-left {
  width: 35%;
}

.new-video-inside-content iframe {
  width: 100%;
  height: 530px;
}

.new-recent-video {
  padding-left: 50px;
}

.new-recent-video h2 {
  font-style: normal;
  font-size: 26px !important;
  line-height: 40px !important;
  color: rgb(6, 43, 71) !important;
  margin-top: 5px;
  font-weight: 600 !important;
  letter-spacing: 0.6px !important;
  margin-bottom: 15px;
  text-transform: capitalize !important;
}

.new-recent-video a img {
  height: 68%;
  width: 68%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.video-details {
  padding: 50px;
}

.video-title h1 {
  font-size: 30px !important;
  font-weight: 600 !important;
  line-height: 50px;
}

@media screen and (max-width: 1600px) {
  .new-recent-video {
    padding-left: 25px;
  }

  .new-video-inside-right {
    width: 65%;
  }

  .new-video-inside-left {
    width: 35%;
  }
}

@media screen and (max-width: 1400px) {
  .new-video-inside-section {
    margin: auto 40px;
  }
}

@media screen and (max-width: 1200px) {
  .new-video-inside-row {
    justify-content: center;
    flex-direction: column;
  }

  .new-video-inside-right {
    width: 100%;
  }

  .new-video-inside-left {
    width: 100%;
    margin-top: 20px;
  }

  .new-recent-video h2 {
    font-size: 20px !important;
  }

  .new-recent-video a img {
    height: 24%;
    width: 24%;
  }
}

@media screen and (max-width: 768px) {
  .new-video-inside-content iframe {
    width: 100%;
    height: 368px;
  }

  .video-title h1 {
    font-size: 24px !important;
    line-height: 36px;
  }
}

@media screen and (max-width: 576px) {
  .new-video-inside-content iframe {
    width: 100%;
    height: 260px;
  }

  .new-recent-video a img {
    height: 40%;
    width: 40%;
  }
}

@media screen and (max-width: 500px) {
  .new-video-inside-section {
    margin: 0;
  }

  .new-video-inside-content iframe {
    width: 100%;
    height: 257px;
  }

  .new-recent-video a img {
    height: 45%;
    width: 45%;
  }

  .video-details {
    padding: 50px 0;
  }
}

.new-video-title {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: space-between;
  margin-top: 42px;
  margin-bottom: 30px;
}

.new-video-title-content {
  display: flex;
  /* align-items: center; */
}

.new-video-title-content h1 {
  max-width: 400px;
}

.new-video-title-content p {
  font-family: var(--font-family);
  font-style: normal;
  font-size: 15px;
  line-height: 25px;
  color: rgb(24, 15, 42);
  opacity: 0.7;
  margin-bottom: 0;
  margin-left: 30px;
  font-weight: 500;
  text-align: start;
  max-width: 500px;
}

.video-tab-wrapper {
  display: flex;
}

.f-tab-1 {
  display: block;
  width: 140px;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
  line-height: 30px;
  padding: 7px 0px;
  color: rgb(25, 16, 12);
  text-align: center;
  border-top: 2px solid rgb(231, 233, 228);
  border-bottom: 2px solid rgb(231, 233, 228);
  border-left: 2px solid rgb(231, 233, 228);
  border-right: 2px solid rgb(231, 233, 228);
  border-image: initial;
  cursor: pointer;
}

.f-tab-red {
  display: block;
  width: 140px;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
  line-height: 30px;
  padding: 7px 0px;
  text-align: center;
  border-top-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-style: solid;
  border-image: initial;
  border-right-width: 2px;
  cursor: pointer;
  color: rgb(25, 16, 12);
}

.video-tab-link {
  border-color: rgb(231, 233, 228);
}

.video-tab-link:first-child {
  border-top-left-radius: 20px;
  border-right: initial;
}

.video-tab-link:last-child {
  border-bottom-right-radius: 20px;
  border-left: initial;
}

.border-research:first-child,
.border-research:last-child {
  border-left: 2px solid;
  /* border-right: 2px solid; */
  border-color: rgba(0, 192, 111, 0.314);
}

.video-tab-link {
  text-decoration: none;
}

.video-tab-link:hover {
  color: initial;
}

.active-f-tab {
  border-color: rgba(0, 192, 111, 0.314);
  background-color: rgba(139, 222, 182, 0.314);
}

@media screen and (max-width: 1200px) {
  .new-video-title {
    flex-direction: column;
    align-items: start;
  }

  .new-video-title-content p {
    width: 100%;
    max-width: 100%;
  }

  .new-video-title-content h1 {
    width: 100%;
    max-width: 100%;
  }

  .new-video-title-content {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 500px) {
  .new-video-title-content {
    flex-direction: column;
    align-items: start;
  }

  .new-video-title-content p {
    margin-left: 0;
  }

  .f-tab-1 {
    width: auto;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .f-tab-red {
    width: auto;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ====================================  */

.new-module-highlight {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.highlight-wrapper {
  max-width: 95%;
  width: 900px;
  margin: 0px auto;
  height: 580px;
}

.hightlight-content-row {
  padding: 50px 0;
  width: 600px;
}

.hightlight-title {
  color: rgb(6, 43, 71);
  font-family: var(--font-family);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  font-size: 40px;
  display: block;
  text-align: center;
  font-style: normal;
  margin-bottom: 25px;
}

.hightlight-disk {
  color: rgb(78, 95, 119);
  font-family: var(--font-family);
  font-size: 16px;
  text-align: start;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
  display: block;
  text-align: center;
  font-style: normal;
}

.rounded-button {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 25px;
}

.rnd-btn {
  display: block;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  padding: 12px 40px 12px;
  font-family: var(--font-family);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  border: 2px solid rgb(9, 55, 90);
  background-color: rgb(9, 55, 90);
  border-radius: 40px;
  text-decoration: none;
  transform: translateZ(0px);
  transition: all 0.3s ease 0s;
  font-size: 17px;
  line-height: 29px;
  text-transform: initial !important;
}

.rnd-btn:hover {
  border: 2px solid rgb(124, 190, 223);
  background-color: transparent;
  color: rgb(9, 55, 90);
}

.hightlight-bg-content {
  background-image: url(../img/foodservice-prospecting/hero-blue-gradient-shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-tabs {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.module-tabs-wrapper {
  padding-bottom: 20px;
  max-width: 100%;
  width: 1400px;
  margin: 0px auto;
}

.tabs-container {
  padding: 15px;
}

.tabs-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-col-size-1,
.tabs-col-size-2 {
  width: 50%;
}

.tabs-contenet {
  padding: 20px;
}

.tab-nav-link {
  padding: 20px;
  margin-bottom: 10px;
  border: 2px dashed #cee1f8;
  border-radius: 15px;
  cursor: pointer;
}

.tab-link-title {
  color: rgb(6, 43, 71);
  font-family: var(--font-family);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  font-size: 26px;
  display: block;
  text-align: start;
  font-style: normal;
  margin-bottom: 6px;
  line-height: 34px;
}

.tab-link-disk {
  /* display: none; */
  color: rgb(78, 95, 119);
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start;
  line-height: 25px;
  font-weight: 400;
  letter-spacing: 0.1px;
  transition: all 0.3s ease;
}

.tab-img {
  display: none;
}

.tab-img.tab-active {
  display: block;
}

.tabs-images {
  padding: 20px;
}

.tab-nav-link .tab-link-disk {
  display: none;
  transition: all 0.3s ease;
}

.tab-nav-link.tab-active .tab-link-disk {
  display: block;
  transition: all 0.3s ease;
}

.tab-img {
  padding: 10px;
}

.tab-nav-link .tabs-boder-bottm {
  margin: 5px 0;
  height: 3px;
  width: 8%;
  background: #cee1f8;
  border-radius: 40px;
  transition: all 0.5s ease;
}

.tab-nav-link.tab-active .tabs-boder-bottm {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .tabs-row {
    flex-direction: column;
  }

  .tab-od-1 {
    order: 1;
  }

  .tab-od-2 {
    order: 2;
  }

  .tabs-col-size-1,
  .tabs-col-size-2 {
    width: 100%;
  }

  .highlight-wrapper {
    max-width: 100%;
    width: 768px;
    height: 550px;
  }

  .tab-img.tab-active {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .highlight-wrapper {
    max-width: 100%;
    width: 100%;
  }

  .hightlight-content-row {
    padding: 25px 0;
    width: 75%;
  }

  .hightlight-title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .module-tabs {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .hightlight-content-row {
    width: 100%;
    padding: 50px 0;
  }

  .highlight-wrapper {
    height: 100%;
  }

  .hightlight-bg-content {
    background-image: none;
    background: #dfdfe1;
    border-radius: 50px;
  }

  .hightlight-title {
    font-size: 25px;
  }

  .hightlight-disk {
    font-size: 15px;
  }

  .tab-link-title {
    font-size: 20px;
    line-height: 28px;
  }

  .tab-nav-link .tabs-boder-bottm {
    margin: 8px 0;
  }

  .tabs-images {
    padding: 5px;
  }
}

@media screen and (max-width: 400px) {
  .tab-img {
    padding: 0px;
  }

  .tabs-contenet {
    padding: 5px;
  }

  .tab-link-title {
    font-size: 18px;
    line-height: 25px;
  }

  .hightlight-title {
    font-size: 22px;
  }
}

@media screen and (min-width: 1400px) {
  .membo-list li {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }

  .membo-list ::after {
    top: calc(50% - 0px);
  }
}

/* --------------------------- popup box ---------------------------------- */

.popup {
  display: block;
  position: fixed;
  top: 225px;
  right: 50px;
  width: 260px;
  background-color: #e8f1f5;
  border: 1px solid #c2d4ee;
  border-radius: 16px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 999;
  cursor: move;
}

.content {
  display: none;
}

.dash-pop-img {
  margin-bottom: 20px;
}

.dash-pop-img img {
  border-radius: 8px;
}

.dash-pop-title {
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 29px;
  font-family: var(--font-family);
  color: rgb(6, 43, 71) !important;
}

.dash-pop-btn {
  margin-top: 20px;
}

.dash-pop-btn a {
  display: inline-block;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.2px;
  border: 2px solid rgb(8, 147, 189);
  border-radius: 5px;
  padding: 10px 20px;
  background-color: rgb(8, 147, 189);
  transition: all 0.3s ease;
  width: 100%;
}

.dash-pop-btn a:hover {
  background-color: transparent;
  color: rgb(8, 147, 189);
}

.pop-close-btn {
  position: absolute;
  top: -13px;
  right: -13px;
  width: 28px;
  height: 28px;
  background-color: rgb(8, 147, 189);
  color: white;
  padding: 5px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.pop-close-btn i {
  font-size: 20px;
}

@media screen and (max-width: 500px) {
  .popup {
    padding: 10px;
    width: 195px;
  }

  .dash-pop-title {
    line-height: 22px;
    font-size: 13px;
  }

  .dash-pop-img {
    margin-bottom: 8px;
  }

  .dash-pop-btn {
    margin-top: 8px;
  }

  .dash-pop-btn a {
    font-weight: 500;
    font-size: 14px;
    padding: 6px 10px;
  }
}

@media (min-width:1024px) and (max-width:1480px) {
  .popup {
    top: 105px !important;
    right: 23px !important;
    width: 161px;
  }

  .dash-pop-title {
    text-align: start;
    line-height: 19px;
  }

  .dash-pop-btn a {
    line-height: 15px;
    font-size: 14px;
    letter-spacing: 0.2px;
    padding: 6px 9px;
  }
}

/* ---------------------------- grocery-price-dashboard logo slider ------------------------ */

.dashbord-space-evenly {
  justify-content: space-evenly;
}

.dashbord-slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 1700px;
  z-index: 5;
}

.dashbord-slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.dashbord-slider::before {
  left: 0;
  top: 0;
}

.dashbord-slider .dashbord-slide-track {
  animation: dashbordscroll 40s linear infinite;
  display: flex;
  width: calc(250px * 16);
}

.dashbord-slider .dashbord-slide {
  height: 100px;
  width: 250px;
}

@keyframes dashbordscroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 8));
  }
}

/* ---------- */

.work-section {
  padding: 80px 0;
}

.work-heading h2 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 38px !important;
  line-height: 53px !important;
  text-align: center !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
}

.work-heading p {
  font-family: var(--font-family);
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 17px !important;
  line-height: 30px !important;
  color: rgb(78, 95, 119) !important;
  text-align: center;
  margin-bottom: 20px;
  display: block;
}

/* -------------- work tab ----------- */

.work-tabs-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 25px;
}

.work-tabs-button .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none !important;
  width: 100%;
  flex-direction: column;
}

.work-tabs-button .nav-tabs .nav-link {
  width: 300px;
  text-decoration: none;
  max-width: calc(50% - 20px);
  background: linear-gradient(45deg,
      rgb(169 247 255 / 42%) 0%,
      rgb(0 201 231) 100%);
  border-radius: 10px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 16px 17px;
  position: relative;
  z-index: 30;
  box-shadow: rgb(239 102 80 / 0%) -20px 30px 45px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  overflow: hidden;
  border: none !important;
  margin-bottom: 20px;
}

.work-tabs-button .nav-tabs .nav-link.active {
  background: rgb(0 78 88);
}

.work-tabs-button .nav-tabs .nav-link img {
  max-width: 50px;
  display: block;
  margin-right: 15px;
  position: relative;
  z-index: 30;
}

.work-tabs-button .nav-tabs .nav-link h3 {
  max-width: 144px;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.02em;
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 30;
  margin-bottom: 0;
}

.work-tabs-button .nav-tabs .nav-link svg {
  width: 30px;
  margin-left: 8px;
  position: relative;
  z-index: 30;
  transition: all 0.3s ease 0s;
}

.work-tabs-button .nav-tabs .nav-link:hover svg {
  transform: translateX(7px);
}

.work-tabs-content {
  padding: 45px;
  background: #f9fcffbd;
  border-radius: 20px;
  box-shadow: inset 0px 0px 44px -12px rgba(0, 0, 0, 0.1);
}

.work-tabs-inner {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.work-tabs-inner h3 {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: rgb(6, 43, 71);
  text-align: center;
}

.work-tabs-inner p {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: rgba(6, 43, 71, 0.8);
  text-align: center;
}

/* ---------------------------- */

.dashbord-tab-section {
  padding: 100px 0;
  background: linear-gradient(-77.79deg,
      rgb(250, 250, 250) 17.79%,
      #e6fffd52 82.21%);
}

.dashbord-tabs-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none !important;
  width: 100%;
  flex-direction: row;
}

.nav-tabs-new {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #dee2e6;
  --bs-nav-tabs-border-radius: 0.375rem;
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

dashbord-center-conten .dashbord-tabs-button .nav-tabs {
  border: none !important;
}

.dashbord-tabs-button .nav-tabs .nav-link {
  min-width: 240px;
  text-decoration: none;
  max-width: calc(50% - 20px);
  background: #064c541c;
  border-radius: 10px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 16px 17px;
  position: relative;
  z-index: 30;
  box-shadow: inset 0px 0px 44px -12px rgb(0 0 0 / 8%);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #064c541c;
  margin-bottom: 20px;
  margin-left: 5px;
  margin-right: 5px;
}

.dashbord-tabs-button .nav-tabs .nav-link.active {
  background: #064c541c;
  box-shadow: inset 0px 0px 44px -12px rgb(0 0 0 / 8%);
  border: 2px solid #00707c54;
}

.dashbord-tabs-button .nav-tabs .nav-link img {
  max-width: 50px;
  display: block;
  margin-right: 15px;
  position: relative;
  z-index: 30;
}

.dashbord-tabs-button .nav-tabs .nav-link h3 {
  max-width: 144px;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.02em;
  color: rgb(6, 43, 71);
  position: relative;
  z-index: 30;
  margin-bottom: 0;
}

.btn-1 {
  width: 70%;
  border-radius: 20px !important;
  box-shadow: 2px 2px 5px rgba(20, 20, 43, 0.08) !important;
  margin-bottom: 25px;
  margin-left: -150px;
}

.btn-2 {
  width: 70%;
  border-radius: 20px !important;
  box-shadow: 2px 2px 5px rgba(20, 20, 43, 0.08) !important;
  margin-bottom: 25px;
  margin-left: -150px;
}

.btn-5 {
  width: 70%;
  border-radius: 20px !important;
  box-shadow: 2px 2px 5px rgba(20, 20, 43, 0.08) !important;
  margin-bottom: 25px;
  margin-left: -150px;
}

.dashbord-tabs-content {
  padding: 45px;
  background: #f3f8f9bd;
  border-radius: 20px;
  box-shadow: inset 0px 0px 44px -12px rgb(0 0 0 / 8%);
}

.dashbord-tabs-inner {
  padding: 20px;
}

.dashbord-tabs-inner h3 {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: rgb(6, 43, 71);
  text-align: start;
}

.dashbord-tabs-inner p {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: rgba(6, 43, 71, 0.8);
  text-align: start;
}

.dashbord-inner-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-btn {
  color: rgb(6, 43, 71);
  display: flex;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.8px;
  font-weight: 600;
  text-align: left;
  padding: 0;
  line-height: 2;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  font-family: var(--font-family);
}

.text-btn i {
  transform: rotate(-45deg);
  display: inline-block;
  font-size: 20px;
  margin-left: 4px;
  position: relative;
  top: 0px;
  transition: 0.4s all;
  color: rgb(6, 43, 71);
}

.text-btn:hover i {
  transform: rotate(0);
  color: rgb(8, 147, 189);
}

.text-btn:hover {
  color: rgb(8, 147, 189);
}

/* ------------- */

.dashbord-center-content {
  padding: 100px 0;
  background-image: linear-gradient(0deg,
      hsl(204deg 100% 99%) 0%,
      hsl(203deg 97% 99%) 77%,
      hsl(202deg 95% 99%) 87%,
      hsl(200deg 93% 99%) 92%,
      hsl(199deg 90% 98%) 95%,
      hsl(198deg 88% 98%) 97%,
      hsl(197deg 85% 98%) 98%,
      hsl(196deg 83% 98%) 99%,
      hsl(195deg 80% 98%) 100%,
      hsl(193deg 78% 97%) 100%,
      hsl(192deg 76% 97%) 100%,
      hsl(191deg 73% 97%) 101%,
      hsl(192deg 74% 97%) 101%,
      hsl(193deg 75% 97%) 101%,
      hsl(193deg 75% 98%) 101%,
      hsl(194deg 75% 98%) 101%,
      hsl(195deg 75% 98%) 101%,
      hsl(196deg 74% 98%) 100%,
      hsl(197deg 73% 98%) 100%,
      hsl(198deg 72% 99%) 100%,
      hsl(198deg 69% 99%) 100%,
      hsl(199deg 65% 99%) 100%,
      hsl(200deg 60% 99%) 100%);
}

.dashbord-center-new {
  padding: 100px 0;
  background-color: white;
}

.work-heading span {
  font-size: 20px;
  font-weight: 600;
  color: rgb(4, 145, 166) !important;
  text-align: center;
  font-style: normal;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.dashbord-center-img {
  margin-top: 40px;
}

.dashbord-center-img img {
  width: 100%;
}

/* --- dashbord faqs ------- */

.dashbord-faq {
  padding: 100px 0;
}

.dashbord-faq-container {
  padding: 45px;
  background: #f9fcffbd;
  border-radius: 20px;
  box-shadow: inset 0px 0px 44px -12px rgb(0 0 0 / 1%);
}

.dashbord-faq-container .accordion-item {
  padding: 0;
  border-bottom: none !important;
  margin-bottom: 20px;
  border-radius: 10px !important;
  box-shadow: inset 0px 0px 44px -12px rgb(0 0 0 / 12%) !important;
  background: #ebf3fb26;
}

.dashbord-faq-container .accordion-item h2 button {
  padding: 15px 20px !important;
  border-radius: 10px !important;
  font-weight: 500 !important;
  background-color: transparent !important;
}

.dashbord-faq-container .accordion-item .accordion-body {
  padding: 0px 20px 20px 20px !important;
  border-radius: 10px !important;
  margin-top: 0 !important;
}

.dashbord-faq-container .accordion-item h2 button:hover,
.dashbord-faq-container .accordion-item h2 button:focus {
  cursor: pointer;
  color: rgb(6, 43, 71) !important;
}

@media screen and (max-width: 1800px) {
  .dashbord-slider {
    width: 1400px;
  }
}

@media screen and (max-width: 1500px) {
  .dashbord-slider {
    width: 992px;
  }
}

@media screen and (max-width: 1200px) {
  .dashbord-slider {
    width: 890px;
  }
}

@media screen and (max-width: 992px) {
  .dashbord-space-evenly {
    padding-bottom: 15px;
  }

  .dashbord-space-evenly .home-video {
    padding-bottom: 20px;
  }

  .dashbord-slider {
    width: 576px;
  }

  .dashbord-slider .dashbord-slide {
    height: 100px;
    width: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dashbord-slider .dashbord-slide-track {
    gap: 10px;
  }

  .work-section {
    padding: 40px 0;
  }

  .dashbord-tab-section {
    padding: 50px 0;
  }

  .dashbord-center-content {
    padding: 50px 0;
  }

  .dashbord-faq {
    padding: 50px 0;
  }

  .dashbord-faq-container .accordion-item h2 button {
    font-size: 16px !important;
  }

  .dashbord-faq-container .accordion-item .accordion-body {
    font-weight: 400;
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .dashbord-slider {
    width: 400px;
  }

  .dashbord-slider .dashbord-slide {
    height: 100px;
    width: 100px;
  }

  .work-tabs-button {
    margin-top: 0;
  }

  .work-tabs-button .nav-tabs .nav-link {
    width: 100%;
    max-width: calc(90% - 20px);
  }

  .work-tabs-button .nav-tabs .nav-link h3 {
    max-width: 100%;
  }

  .dashbord-faq-container .accordion-item h2 button {
    line-height: 26px;
  }

  .dashbord-faq-container {
    padding: 10px;
  }
}

@media screen and (max-width: 576px) {
  .work-heading h2 {
    font-size: 27px !important;
    line-height: 34px !important;
  }

  .dashbord-tabs-content {
    padding: 10px;
  }

  .dashbord-slider {
    width: 350px;
  }

  .work-section .mt-5,
  .dashbord-tab-section .mt-5 {
    margin-top: 1rem !important;
  }

  .work-section {
    padding: 20px 0;
  }

  .dashbord-tabs-button .nav-tabs .nav-link {
    min-width: 190px;
    padding: 8px 8px;
  }

  .dashbord-tabs-button .nav-tabs .nav-link img {
    max-width: 32px;
    margin-right: 8px;
  }

  .dashbord-tabs-button .nav-tabs .nav-link h3 {
    max-width: 100%;
    font-size: 15px;
    line-height: 20px;
  }
}

/* -------------- stripe -------------- */

.stripe-diwali {
  height: 100%;
  width: 100%;
  overflow: hidden;
  z-index: 2000;
  position: relative;
}

.stripe-img {
  height: 100%;
  width: 100%;
}

.stripe-img img {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .desktop-balck {
    display: none;
  }

  .mobile-balck {
    display: block;
  }
}

@media screen and (min-width: 501px) {
  .desktop-balck {
    display: block;
  }

  .mobile-balck {
    display: none;
  }
}

/* ---------------------- chritsmas ------------------------- */

.christmas-container {
  height: 100%;
  width: 100%;
  position: relative;
  display: block;
}

.christmas-wrraper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 1000;
  /* background: rgba(10, 57, 8, 0.65); */
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: url(../img/stripe/blur.png);
}

.christmas-content {
  position: relative;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 800px;
  height: auto;
}

.christmas-content a {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.christmas-content img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0px 0px 70px 10px rgba(0, 0, 0, 0.1);
}

.christmas-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background-color: rgb(187 44 85);
  color: white;
  padding: 4px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.christmas-close i {
  font-size: 22px;
}

.christmas-close:hover {
  background-color: rgb(215 62 106);
  transition: all 0.3s ease;
}

@media screen and (max-width: 1300px) {
  .christmas-content {
    max-width: 650px;
  }
}

@media screen and (max-width: 800px) {
  .christmas-content {
    max-width: 98%;
  }
}

/* ---------------------------- New classis------------------------ */

.accordion-item h2 button {
  font-family: var(--font-family) !important;
  font-size: 20px;
  line-height: 35px;
  color: rgb(6, 43, 71);
  position: relative;
  padding-right: 60px;
  cursor: pointer;
  font-weight: 500;
  border: none !important;
  border-radius: 10px !important;
  background-color: transparent !important;
}

.accordion-item {
  box-shadow: inset 0px 0px 44px -12px rgb(0 0 0 / 12%) !important;
  background: #b3c5d71f !important;
}

.image-scetion {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.image-scetion img {
  width: 100%;
  height: auto;
}

.accordion-button:not(.collapsed)::after {
  color: black;
}

.item-1 {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px !important;
  font-family: "Courier New", Courier, monospace;
}

.nav-tab-new {
  border-bottom: none !important;
}

.dashbord-new {
  margin-top: 50px;
}

.heading-new {
  margin-top: 30px;
}

.box-new h3 {
  font-size: 20px !important;
  padding: 0 15px;
}

.dashbord-tems-button {
  justify-content: center !important;
}

/* ------------------------------------- research report --------------------------------------------- */

.hero-reasrch-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 90px);
  height: 100%;
}

.bgreasrch {
  background: url(../img/research-report/theme/bg.png) center bottom / contain no-repeat,
    linear-gradient(131deg, rgb(29 129 154) 22.59%, rgb(84 183 222) 71.78%);
  background-position: center bottom;
  background-size: cover;
}

.research-text-padding {
  padding: 20px;
}

.research-breadcrumbs {
  padding: 10px 20px;
}

.research-breadcrumbs span {
  color: #fff;
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start !important;
  line-height: 29px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.research-breadcrumbs a {
  color: #e1e1e1 !important;
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start !important;
  line-height: 29px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.research-text h1 {
  text-transform: capitalize !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 45px !important;
  line-height: 60px !important;
  text-align: start !important;
  color: var(--title-dark-white) !important;
  font-family: var(--font-family) !important;
}

.research-form {
  padding: 56px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(106 133 154 / 15%) 0px 30px 80px;
  border-bottom-left-radius: 45px;
  border-top-right-radius: 45px;
  position: relative;
  margin-top: 20px;
}

.research-form .form-control {
  background: #e4f0f526 !important;
  padding: 15px 15px !important;
  border: 2px solid rgb(124 190 223 / 52%) !important;
}

.research-form .form-control:focus {
  border-color: rgb(124, 190, 223) !important;
}

.research-form img {
  position: absolute;
  width: 85px;
  top: 10px;
  right: -48px;
}

.zik-main-section {
  margin: 100px 0;
  display: block;
}

.zik-flex-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.zik-flex-content .zik-content {
  width: 50%;
  height: 100%;
}

.zik-main-info {
  height: 100%;
  padding: 20px;
}

.zik-main-info h2 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 38px !important;
  line-height: 53px !important;
  text-align: left !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
}

.zik-main-info p {
  color: rgb(78, 95, 119);
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start !important;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
  display: block;
}

.zik-main-img {
  position: relative;
  height: 100%;
}

.zik-main-img-overlay {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(0deg,
      rgba(153, 84, 222, 0) 8.36%,
      rgb(159 231 253 / 87%) 45.27%,
      rgb(15 188 241 / 76%) 87.57%);
  min-height: 385px;
}

.zik-flex-content:nth-of-type(1) .zik-main-img-overlay {
  border-top-right-radius: 200px;
}

.zik-flex-content:nth-of-type(2) .zik-main-img-overlay {
  border-top-left-radius: 200px;
}

.zik-main-img img {
  height: auto;
  width: 100%;
  object-fit: cover;
  max-height: 100%;
}

.zik-main-info-left {
  padding-right: 60px;
}

.zik-main-info-right {
  padding-left: 60px;
}

.zik-main-tick {
  padding: 15px 0px;
}

.zik-main-tick ol {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.zik-main-tick ol li {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(6, 43, 71);
  position: relative;
  padding-left: 50px;
  display: block;
  flex-direction: column;
}

.zik-main-tick ol li:not(:last-of-type) {
  margin-bottom: 20px;
}

.zik-main-tick ol li strong {
  font-size: 20px;
  line-height: 34px;
  display: block;
  font-weight: 600;
}

.zik-main-tick ol li::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background: url(../img/research-report/theme/tick.svg);
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.zik-modal-section {
  padding: 25px 0 50px;
  display: block;
  position: relative;
}

.zik-modal-section ul li a {
  color: #189991;
  border-bottom: 2px solid #189991;
}

.zik-modal-section ul li a:hover {
  color: #098156;
  border-bottom: none;
}

.zik-modal-wrap {
  padding-bottom: 50px 0;
}

.zik-modal-wrap h2,
.zik-modal-wrap-disk h2 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 38px !important;
  line-height: 53px !important;
  text-align: left !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
}

.zik-modal-wrap h3,
.zik-modal-wrap-disk h3 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  line-height: 36px !important;
  text-align: left !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
}

.zik-modal-wrap-disk {
  padding-top: 25px;
}

.zik-modal-wrap-disk p {
  display: block;
  margin: 0 !important;
  padding: 10px 0;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgb(78, 95, 119);
  letter-spacing: 0.2px;
}

.zik-modal-wrap img {
  padding: 15px 0;
  max-width: 100%;
  width: 100%;
}

.zik-modal-wrap-disk img {
  padding: 15px 0;
  max-width: 1000px;
  width: 100%;
}

.zik-modal-wrap .quotes-Decorations {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 20px 0px;
}

.zik-modal-wrap .quotes-Decorations .quotes-icon {
  display: block;
  width: 45px;
}

.zik-modal-wrap .quotes-Decorations .quotes-line {
  width: calc(100% - 60px);
  height: 1px;
  background-color: rgb(231, 241, 244);
}

.zik-modal-wrap-disk h3 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 24px !important;
  line-height: 42px !important;
  text-align: left !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
}

.zik-modal-wrap span {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: var(--desc-black);
  display: block;
}

.zik-modal-wrap p {
  display: block;
}

.zik-modal-wrap ul li {
  text-align: start;
  font-size: 17px;
  padding-top: 4px;
  font-family: var(--font-family);
  color: var(--desc-black);
  line-height: 25px;
  display: block;
  margin-bottom: 10px;
  list-style: disc outside none;
  display: list-item;
}

@media screen and (max-width: 1400px) {
  .research-form img {
    top: -36px;
    right: 0px;
  }
}

@media screen and (max-width: 992px) {
  .research-home-radius {
    padding: 50px 0;
  }

  .research-text-padding {
    padding: 5px;
  }

  .zik-flex-content {
    flex-direction: column;
  }

  .zik-flex-content .zik-content {
    width: 100%;
  }

  .zik-main-info {
    padding: 20px 5px;
  }

  .order-992-1 {
    order: 1;
  }

  .order-992-2 {
    order: 2;
  }

  .zik-main-section {
    margin: 20px 0;
  }
}

@media screen and (max-width: 576px) {
  .research-text h1 {
    font-size: 21px !important;
    line-height: 34px !important;
    font-weight: 600 !important;
  }

  .zik-main-info h2 {
    font-size: 24px !important;
    line-height: 37px !important;
  }

  .zik-main-info p {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
  }

  .zik-main-tick ol li {
    padding-left: 40px;
  }

  .zik-main-tick ol li strong {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
  }

  .zik-main-tick ol li {
    font-size: 14px;
  }

  .zik-modal-section {
    padding: 0px 0 50px;
  }

  .zik-modal-wrap h2,
  .zik-modal-wrap-disk h2 {
    font-size: 24px !important;
    line-height: 37px !important;
  }

  .zik-modal-wrap h3,
  .zik-modal-wrap-disk h3 {
    font-size: 16px !important;
    line-height: 26px !important;
  }

  .zik-modal-wrap p,
  .zik-modal-wrap-disk p {
    font-size: 15px;
  }

  .zik-modal-wrap-disk h3 {
    font-size: 16px !important;
    line-height: 32px !important;
  }

  .research-form {
    padding: 25px;
  }

  .research-form img {
    top: -32px;
    width: 60px;
  }
}

.overlay-zik {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.bg-zik-full {
  background: rgb(0 209 255 / 53%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  height: 100%;
  width: 100%;
  z-index: 5;
  position: relative;
}

#getAccessBtn {
  display: flex;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.5px;
  border: 2px solid rgb(8, 147, 189);
  border-radius: 5px;
  padding: 10px 30px;
  background-color: rgb(8, 147, 189);
  transition: all 0.3s ease;
  width: fit-content;
  margin: 50px auto;
  z-index: 10;
  position: relative;
}

.zik-modal-section.get-form .overlay-zik,
.zik-modal-section.get-form #getAccessBtn {
  display: none;
}

.research-form .form-control.border-danger {
  border-color: rgb(206, 31, 31) !important;
}

.Infographics-details {
  padding: 20px 0;
}

.Infographics-wrap {
  padding-top: 10px;
}

.Infographics-wrap img {
  border-radius: 5px;
  width: 100%;
}

@media screen and (min-width: 1400px) {
  .new-Infographics-inside-content {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
  }
}

/* -------------------------------- new styling for included blog, case study, report ---------------- */

.new-container {
  max-width: 1600px;
  margin: 0 auto;
}

.new-added-flex-delta {
  display: flex;
  width: 100%;
  align-items: start;
  justify-content: space-between;
}

.delta-1 {
  width: 30%;
}

.delta-2 {
  width: 70%;
}

.delta-tab-section {
  padding: 30px;
  padding-left: 0;
}

.new-blog-post-row.tab-content {
  justify-content: space-evenly;
  margin-top: 0;
  /* display: none; */
}

/* .new-blog-post-row.tab-content.active {
    display: flex;
} */

.delta-tab-link {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 20px;
  padding: 15px 0px;
}

.tab-btn {
  outline: none;
  text-decoration: none;
  border: none;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: rgb(45, 157, 148);
  letter-spacing: 2px;
  position: relative;
  background: transparent;
  cursor: pointer;
  padding-left: 30px;
}

.tab-btn.active {
  color: rgb(6, 43, 71) !important;
}

.tab-btn::before {
  background-color: rgb(45, 157, 148);
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  width: 0;
}

.tab-btn.active::before {
  background-color: rgb(6, 43, 71);
  width: 1.25rem;
}

.tab-btn:hover:before {
  width: 1.25rem;
}

.tab-btn.active:hover::before {
  background-color: rgb(6, 43, 71);
}

@media screen and (max-width: 1600px) {
  .new-container {
    max-width: 1400px;
    margin: 0 auto;
  }

  .new-added-flex-delta {
    flex-direction: column;
  }
}

@media screen and (max-width: 1400px) {
  .new-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .delta-tab-section {
    padding: 0;
    padding-left: 0;
  }

  .delta-1 {
    width: 100%;
  }

  .delta-2 {
    width: 100%;
  }
}

.whitepaper-container {
  max-width: 1600px;
  margin: 0 auto;
}

.whitepaper-top-section {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 100px 0 50px;
}

.whitepaper-wrap {
  width: 100%;
  height: 600px;
  background: url(../img/whitepaper/page-turner.svg) center bottom / contain no-repeat,
    linear-gradient(131deg, rgb(35 133 97) 22.59%, rgb(17 70 59) 71.78%);
  background-position: center top;
  background-size: cover;
  border-radius: 10px;
  border-top-left-radius: 200px;
  border-bottom-right-radius: 200px;
  padding: 90px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: relative;
  flex-direction: column;
}

.whitepaper-content {
  max-width: 950px;
}

.whitepaper-content h1 {
  text-transform: capitalize !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 45px !important;
  line-height: 60px !important;
  text-align: start !important;
  color: var(--title-dark-white) !important;
  font-family: var(--font-family) !important;
}

.wh-absolute-title {
  width: 100%;
  max-width: 950px;
}

.wh-absolute-title span {
  display: block;
  text-align: start;
  font-style: italic;
  font-weight: 600;
  font-size: 80px;
  line-height: initial;
  color: #bbbbbb;
  font-family: var(--font-family);
}

.whitepaper-information {
  padding-bottom: 100px;
}

.wp-content-container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.wp-content-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wp-content-1 {
  width: 60%;
}

.wp-content-2 {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-content-full {
  width: 100%;
}

.wp-wrap-content {
  padding: 30px;
  padding-left: 0;
}

.wp-image {
  padding: 30px;
}

.wp-image {
  max-width: 600px;
  width: auto;
  height: auto;
}

.wp-image img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 10px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 105px;
}

.wp-wrap-content p {
  display: block;
  margin: 0 !important;
  padding: 10px 0;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgb(78, 95, 119);
  letter-spacing: 0.2px;
  text-align: start;
}

.wp-wrap-content h2 {
  font-weight: 500 !important;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-size: 24px !important;
  line-height: 40px !important;
  color: rgb(6, 43, 71);
  margin-bottom: 10px;
  letter-spacing: 0.5px !important;
  text-align: start;
  text-transform: initial !important;
}

.wp-block-section {
  padding: 50px 0;
}

.wp-block-spacer p {
  color: rgb(78, 95, 119);
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start;
  line-height: 29px;
  font-weight: 500;
  display: block;
  letter-spacing: 0.1px;
}

.wp-block-spacer .wp-space-title {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: rgb(6, 43, 71);
  margin-top: 30px;
}

.wp-block-spacer ul li {
  color: rgb(78, 95, 119);
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start;
  line-height: 38px;
  font-weight: 500;
  letter-spacing: 0.1px;
  list-style: disc outside none;
  display: list-item;
}

.wp-block-spacer ul li::marker {
  color: rgb(6, 43, 71);
}

.wp-block-spacer ul li strong {
  color: rgb(6, 43, 71);
}

.new-footer-copy-flex {
  display: flex;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 15px;
  margin-top: 18px;
}

.new-footer-copy-flex a {
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  color: rgb(56, 71, 92);
  letter-spacing: 0.4px;
  margin-bottom: 0px;
  display: block;
}

.new-footer-copy-flex a:hover {
  color: rgb(81, 170, 214);
}

@media screen and (max-width: 768px) {
  .new-footer-copy-flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
  }
}

/* -------------------- datasets page -------------------- */

.main-content-wrapper-section {
  min-height: 350px;
  height: 100%;
  padding: 20px;
  position: relative;
  width: 100%;
  background-color: #e8f1f5;
  display: flex;
  align-items: center;
  justify-content: start;
}

.main-sets-wrapper-container h1 {
  color: rgb(6, 43, 71) !important;
  font-family: var(--font-family) !important;
  text-align: start !important;
  text-transform: capitalize !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 45px !important;
  line-height: 60px !important;
}

.main-sets-wrapper-container p {
  font-family: var(--font-family);
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 30px !important;
  color: rgb(78, 95, 119) !important;
  text-align: start;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 0.2px;
}

.main-sets-badge {
  margin: 20px 0;
  padding: 15px 38px;
  background-color: rgb(0 78 88);
  position: relative;
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
}

.main-sets-badge span {
  text-align: center;
  display: block;
  width: 100%;
  margin: 0;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  position: relative;
  color: #fff;
  letter-spacing: 1px;
}

span.sale-badge {
  position: absolute;
  display: block;
  top: 15%;
  left: -58px;
  background: #ffdc00;
  transform: rotate(-45deg);
  font-size: 12px;
  font-family: var(--font-family);
  color: #000;
  font-weight: 600;
  line-height: 18px;
}

.h3-sets {
  font-family: var(--font-family) !important;
  text-decoration: none !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 23px !important;
  line-height: 32px !important;
  color: rgb(6, 43, 71) !important;
  text-transform: capitalize !important;
  letter-spacing: 0.2px !important;
  display: block;
  overflow: hidden;
}

.main-sets-content-section {
  padding: 100px 0 50px;
  background: linear-gradient(-77.79deg,
      rgb(250, 250, 250) 17.79%,
      #e6fffd 82.21%);
}

.sets-h4 {
  font-size: 22px;
  color: rgb(6, 43, 71) !important;
  font-weight: 600;
  font-family: var(--font-family);
  margin-bottom: 5px;
  line-height: 32px;
  letter-spacing: 0.4px;
}

.sets-h5 {
  font-size: 16px;
  color: rgb(6, 43, 71) !important;
  font-weight: 600;
  font-family: var(--font-family);
  margin-bottom: 5px;
  line-height: 24px;
  letter-spacing: 0.4px;
}

.sets-content-info p {
  font-family: var(--font-family);
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 30px !important;
  color: rgb(78, 95, 119) !important;
  text-align: start;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 0.2px;
}

.symptoms-wrapper figure {
  width: 80px;
  height: 500px;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.symptoms-wrapper .cards {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 60px rgba(0, 0, 0, 0.02);
  box-shadow: 5px 5px 60px rgba(0, 0, 0, 0.02);
}

.card-wrapper .cards:not(:last-child) {
  margin-bottom: 30px;
}

.symptoms-wrapper .cards .card-body {
  padding: 35px 30px;
}

@media only screen and (min-width: 1200px) {
  .symptoms-wrapper .card-wrapper {
    padding-left: 85px;
  }

  .symptoms-wrapper .card-wrapper .cards {
    position: relative;
  }

  .symptoms-wrapper .card-wrapper .cards:after,
  .symptoms-wrapper .card-wrapper .cards:before {
    position: absolute;
    content: "";
  }

  .symptoms-wrapper .card-wrapper .cards:before {
    right: 100%;
    top: 50%;
    background-color: #e8ebf3;
    height: 4px;
    width: 85px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .symptoms-wrapper .card-wrapper .cards:after {
    height: 20px;
    width: 20px;
    background-color: #098156;
    border-radius: 50%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .symptoms-wrapper .card-wrapper .cards:nth-child(1):before {
    width: 118px;
  }

  .symptoms-wrapper .card-wrapper .cards:nth-child(3):before {
    width: 120px;
  }

  .symptoms-wrapper .card-wrapper .cards .card-body {
    position: relative;
    z-index: 2;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 8px 48px 0px rgb(55 22 98 / 2%);
  }
}

.card-body h3 {
  font-size: 22px;
  display: block;
  font-weight: 600;
  color: rgb(4, 145, 166) !important;
  text-align: center;
}

.card-body p {
  font-size: 16px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: rgb(6, 43, 71) !important;
  margin-bottom: 0;
  line-height: 20px;
  padding-top: 5px;
}

/* ----  */

.main-datasets-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  gap: 20px;
  position: relative;
}

.main-datasets-boxes::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 120px;
  width: 100%;
  height: 100%;
  background: radial-gradient(50% 50% at 50% 50%,
      rgb(159 224 231) 0%,
      rgba(139, 214, 222, 0) 100%);
  opacity: 0.3;
  z-index: 20;
}

.sets-box-item {
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px;
  width: 200px;
  min-height: 135px;
  background: linear-gradient(-77.79deg, #e8f1f5 17.79%, #f6fff8c1 82.21%);
  margin: auto;
  border-radius: 30px;
  z-index: 50;
}

.sets-box-button {
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 10px;
  width: 200px;
  min-height: 135px;
  margin: auto;
  border-radius: 30px;
  z-index: 50;
}

.sets-box-item h3 {
  font-size: 18px;
  display: block;
  font-weight: 600;
  color: rgb(6, 43, 71) !important;
  text-align: center;
  margin-bottom: 3px;
  letter-spacing: 0.5px;
  line-height: 26px;
}

.sets-box-item p {
  font-size: 16px;
  font-weight: 400;
  display: block;
  text-align: center;
  color: rgb(6, 43, 71) !important;
  margin-bottom: 0;
  line-height: 22px;
  padding-top: 5px;
  letter-spacing: 0.3px;
}

.sets-btn {
  display: inline-block;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  border-radius: 5px;
  border: 2px solid rgb(8, 147, 189);
  padding: 10px 10px;
  background-color: rgb(8, 147, 189);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.set-btn-block {
  display: inline-block;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: rgb(8, 147, 189);
  border-radius: 5px;
  border: 2px solid rgb(8, 147, 189);
  padding: 10px 10px;
  background-color: transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.sets-btn:hover {
  background-color: transparent;
  color: rgb(8, 147, 189);
}

.related-datasets-section {
  margin-top: 50px;
}

.related-datasets-title h2 {
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 28px !important;
  line-height: 44px !important;
  color: rgb(6, 43, 71) !important;
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 0px;
}

.related-datasets-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 15px;
  position: relative;
  gap: 25px;
}

.related-set-box {
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 30px;
  background: linear-gradient(225.02deg,
      rgb(243, 243, 243) 0%,
      rgb(223 247 247) 92.34%);
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 3px;
  z-index: 50;
  transition: ease 0.3s;
}

.related-set-box:hover {
  box-shadow: rgb(6 43 71 / 5%) 3px 3px 10.6px;
}

.related-tag {
  font-size: 12px;
  display: block;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgb(4, 145, 166) !important;
  text-align: start;
  font-family: var(--font-family) !important;
  margin-bottom: 8px;
}

h3.related-title {
  font-size: 20px;
  display: block;
  font-weight: 600;
  color: rgb(6, 43, 71) !important;
  text-align: start;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 26px;
}

.related-flex {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 5px;
  margin-top: 8px;
}

.related-flex span {
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
  text-align: start;
  color: rgb(6, 43, 71) !important;
  margin-bottom: 0;
  line-height: 22px;
  padding-top: 5px;
  letter-spacing: 0.3px;
}

/* --------- datasets table ---------- */

.datasets-table {
  overflow: scroll;
  height: 500px;
  background-color: #e8f1f5;
  border: 1px solid #c2d4ee;
  margin-top: 50px;
  border-radius: 15px;
}

.table> :not(caption)>*>* {
  border-bottom-width: 1px;
  padding: 0 !important;
}

.tbl-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 1);
  width: fit-content;
}

.tbl-header tr th {
  font-family: var(--font-family) !important;
  padding: 20px 15px !important;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  color: rgb(6, 43, 71) !important;
  font-style: normal;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.tbl-header table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 0;
}

.table>tbody {
  vertical-align: inherit;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

.datasets-table::-webkit-scrollbar-track {
  background: #e0e1eb;
  border-radius: 15px;
  margin: 10px;
}

.datasets-table::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.datasets-table::-webkit-scrollbar-thumb {
  /* background: rgb(105, 108, 255) !important; */
  background: rgb(0, 109, 55) !important;
  border-radius: 15px;
  cursor: grab;
}

.tbl-content tr td {
  font-size: 16px;
  font-weight: 400;
  text-align: start;
  color: rgb(6, 43, 71) !important;
  margin-bottom: 0;
  line-height: 22px;
  padding-top: 5px;
  letter-spacing: 0.3px;
  padding: 15px !important;
}

.tbl-content tr td small {
  font-size: 16px;
}

.main-sets-wrapper-image img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.related-set-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.related-set-head {
  max-width: calc(100% - 80px);
  width: 100%;
}

.related-set-icon {
  width: 80px;
  height: 80px;
  /* background-color: rgb(255, 255, 255); */
  border-radius: 10px;
  /* box-shadow: rgb(6 43 71 / 6%) 6.6px 6.6px 18.6px; */
  z-index: 5;
  transition: all 0.3s ease 0s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.related-set-icon img {
  border-radius: 8px;
  max-width: 60px;
}

@media (max-width: 1200px) {
  .main-content-wrapper-section {
    min-height: 100%;
  }

  .main-sets-content-section {
    padding: 40px 0 40px;
  }

  .main-datasets-boxes::before {
    display: none;
  }

  .symptoms-wrapper {
    margin-top: 40px;
  }

  .card-wrapper .cards:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .related-datasets-boxes {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .related-set-box {
    margin: 0px;
  }
}

@media (max-width: 768px) {
  .main-datasets-boxes {
    grid-template-columns: repeat(1, 1fr);
  }

  .sets-box-item {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .main-sets-wrapper-container h1 {
    font-size: 40px !important;
    line-height: 58px !important;
  }
}

@media (max-width: 456px) {
  .main-sets-wrapper-container h1 {
    font-size: 27px !important;
    line-height: 34px !important;
  }
}

/* ------------ datasets main page -------------------- */

.home-section {
  text-align: center;
  padding: calc(100px + 90 * (100vw - 320px) / 1600) 0 calc(40px + 215 * (100vw - 320px) / 1600);
  position: relative;
  background-image: url(../img/datasets/home-bg.png);
  background-size: cover;
  z-index: 1;
}

.home-section .bg-effect .bg-gif {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 55%;
  z-index: -1;
  top: 0;
  opacity: 0.04;
  mix-blend-mode: lighten;
}

.home-content h1 {
  color: #fff !important;
  font-family: var(--font-family) !important;
  text-align: center !important;
  text-transform: capitalize !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 45px !important;
  line-height: 60px !important;
  display: block;
}

.home-section .home-content h1 .title-effect {
  padding: 3px 20px;
  background-color: #17273f;
  display: inline-block;
  position: relative;
  margin: 0 15px;
}

.home-section .home-content h1 .title-effect img {
  position: absolute;
  /* left: -18px;
    top: -18px;
    height: calc(100% + 36px);
    width: calc(100% + 36px); */

  left: 50%;
  top: 50%;
  height: calc(100% + 36px);
  width: 100%;
  transform: translate(-50%, -50%);
}

.home-section .home-content h1 .title-effect span {
  background: url(../img/datasets/title-bg.jpg);
  background-position: bottom;
  -webkit-background-clip: text;
  color: transparent;
}

.home-content p {
  font-family: var(--font-family);
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 30px !important;
  color: #9c9d9f !important;
  text-align: center;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 0.2px;
  margin: 32px auto;
  max-width: 900px;
}

.home-section .home-laptop {
  margin-top: 48px;
}

.position-relative {
  position: relative !important;
}

.home-section .home-laptop .laptop-sec {
  -webkit-perspective: 1130px;
  perspective: 1130px;
}

.home-section .home-laptop .hand-sec .left-hand {
  position: absolute;
  bottom: calc(-100% + 108px);
  left: 174px;
}

.home-section .home-laptop .hand-sec .right-hand {
  position: absolute;
  bottom: calc(-100% + 108px);
  right: 174px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.home-section .home-laptop .hand-sec .left-finger {
  position: absolute;
  bottom: -15px;
  left: 266px;
  z-index: 1;
}

.home-section .home-laptop .hand-sec .right-finger {
  position: absolute;
  bottom: -15px;
  right: 266px;
  z-index: 1;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.home-section .home-laptop .laptop-img {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  vertical-align: middle;
  -webkit-transform: rotateX(50deg);
  transform: rotateX(50deg);
  will-change: transform;
}

.data-main-center-section {
  padding-top: 178px;
  padding-bottom: 100px;
  background: linear-gradient(180deg,
      rgba(36, 44, 61, 1) 0%,
      rgba(158, 158, 158, 1) 50%,
      rgba(255, 255, 255, 1) 100%);
  position: relative;
  overflow: hidden;
}

.data-main-center-section:after {
  content: "";
  position: absolute;
  background-image: url(../img/datasets/service-bg.png);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.65;
  background-size: cover;
}

.service-box {
  padding: 40px;
  background: #0a0e17;
  position: relative;
  border-radius: 4px;
  height: 100%;
}

@media (max-width: 1400px) {
  .service-box {
    padding: 30px;
  }
}

@media (max-width: 1199px) {
  .service-box {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .service-box {
    padding: 14px;
  }
}

.service-box:after {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(315.14deg,
      rgba(0, 0, 0) 65%,
      rgba(0, 0, 0) 83.43%);
  border-radius: 4px;
  z-index: -1;
  transition: all 0.5s ease;
}

.service-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(148deg,
      rgba(0, 0, 0) -15.73%,
      rgba(0, 0, 0) 98.72%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.service-box .service-icon {
  width: 72px;
  height: 72px;
  background: rgba(0, 0, 0);
  border-radius: 4px;
  position: relative;
  transition: all 0.5s ease;
}

@media (max-width: 1400px) {
  .service-box .service-icon {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 576px) {
  .service-box .service-icon {
    width: 52px;
    height: 52px;
  }
}

.service-box .service-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.service-box .service-icon .outline-icon {
  transition: all 0.5s ease;
}

.service-box .service-icon .bold-icon {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.5s ease;
}

.service-box .service-content {
  margin-top: calc(18px + (25 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.service-box .service-content h3 {
  color: #fff;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-box .service-content p {
  margin-bottom: 0;
}

.service-box:hover:after {
  background: rgba(0, 0, 0) !important;
}

.service-box:hover:before {
  opacity: 1;
  visibility: visible;
}

.service-box:hover .service-icon {
  background-color: rgba(0, 0, 0);
}

.service-box:hover .service-icon .outline-icon {
  transform: translate(-50%, -50%) rotate(-180deg);
  opacity: 0;
  visibility: hidden;
}

.service-box:hover .service-icon .bold-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.service-row>div:nth-child(2) .service-box:after {
  background: linear-gradient(45deg, rgba(0, 0, 0) 65%, rgba(0, 0, 0) 83.43%);
}

.service-row>div:nth-child(3) .service-box:after {
  background: linear-gradient(225deg, rgba(0, 0, 0) 65%, rgba(0, 0, 0) 83.43%);
}

.service-row>div:nth-child(4) .service-box:after {
  background: linear-gradient(135deg, rgba(0, 0, 0) 65%, rgba(0, 0, 0) 83.43%);
}

.service-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding-left: 32px;
}

.title {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
  margin-top: 0px;
}

.title:before {
  content: "";
  position: absolute;
  left: 78px;
  bottom: -2px;
  width: 6px;
  height: 6px;
  background-color: #098156;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 2px;
  background-color: #098156;
}

.title h2 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 38px !important;
  line-height: 53px !important;
  text-align: start !important;
  color: rgb(6, 43, 71);
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
}

.title h3 {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: #000;
}

.service-info p {
  font-family: var(--font-family);
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 30px !important;
  color: rgb(59 74 94) !important;
  text-align: start;
  display: block;
  letter-spacing: 0.4px;
}

.data-main-center-section .service-box .service-icon {
  width: 72px;
  height: 72px;
  background: rgba(245, 245, 245, 0.05);
  border-radius: 4px;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.data-main-center-section .service-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(148deg,
      rgba(59, 237, 178, 0.15) -15.73%,
      rgba(59, 237, 178, 0) 98.72%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.data-main-center-section .service-box:hover:before {
  opacity: 1;
  visibility: visible;
}

.data-main-center-section .service-box:hover .service-icon {
  background-color: rgba(59, 237, 178, 0.1);
}

.data-main-center-section .service-box:hover .service-icon .outline-icon {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
  opacity: 0;
  visibility: hidden;
}

.data-main-center-section .service-box:hover .service-icon .bold-icon {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.data-main-center-section .service-box .service-content {
  margin-top: calc(18px + 7 * (100vw - 320px) / 1600);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.service-content h3 {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  color: #fff;
  letter-spacing: 0.4px;
}

.service-content p {
  font-family: var(--font-family);
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 26px !important;
  color: #9c9d9f !important;
  text-align: start;
  margin-top: 10px;
  margin-bottom: 0px;
  display: block;
  letter-spacing: 0.2px;
}

/* --------------------- */

.datasets-tabs-button-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 7px;
  box-sizing: border-box;
}

.datasets-tabs-inline {
  display: flex;
  align-items: center;
}

.datasets-nav-button {
  width: 250px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgb(6, 43, 71);
  transition: all 0.3s ease 0s;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 0;
  z-index: 2;
  position: relative;
  z-index: 5;
}

.datasets-nav-button:hover::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/datasets/tabs-button-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  opacity: 0.05;
  transition: 0.25s ease-out;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked+label {
  color: #290660;
}

input[id="radio-1"]:checked~.glider {
  transform: translateX(0px);
}

input[id="radio-2"]:checked~.glider {
  transform: translateX(250px);
}

input[id="radio-3"]:checked~.glider {
  transform: translateX(500px);
}

.glider {
  position: absolute;
  display: flex;
  z-index: 1;
  height: 54px;
  width: 250px;
  background: url(../img/datasets/tabs-button-bg.svg);
  background-size: contain;
  transition: 0.25s ease-out;
  background-repeat: no-repeat;
  background-position: center;
}

input[type="radio"]:checked+label {
  color: #fff;
}

.tabs-content-container {
  display: block;
  padding: 20px 0;
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}

.datasets-tab-content {
  width: 100%;
  display: block;
  overflow: hidden;
}

.tab-data-content {
  display: none;
}

.tab-data-content.active {
  display: block;
}

.datasets-icons-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 25px;
}

.datasets-icons-list .related-set-box {
  width: 32%;
}

/* ------------------ */

#sets-popup-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(23, 48, 51, 0.37);
  backdrop-filter: blur(3.5px);
  -webkit-backdrop-filter: blur(3.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 9999;
  overflow: auto;
}

#sets-popup-box .new-datasets-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 15px;
  background: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* box-shadow: 5px -5px 80px #cfcfcf, -5px 5px 80px #ffffff; */
  border-radius: 16px;
  border: 1px solid #3c3c77;
  background-color: rgb(0 55 62);
  max-width: 500px;
  position: relative;
  overflow: hidden;
}

.new-full-datasets {
  position: relative;
  padding: 30px;
}

.new-main-sets-contact {
  margin-top: 60px;
}

.new-main-sets-contact label {
  display: block;
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.2px;
  margin-bottom: 0px;
}

.new-main-sets-contact input,
.new-main-sets-contact textarea {
  border-radius: 0;
  background: transparent !important;
  color: #fff !important;
}

.sets-popup-box #sets-btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  outline: none;
  border: none;
  width: 28px;
  height: 28px;
  background-color: #fff;
  color: #000;
  padding: 5px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.sets-popup-box #sets-btn-close i {
  font-size: 20px;
}

.zoominout {
  animation-name: zoomInOut;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: zoomInOut;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: zoomInOut;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -ms-animation-name: zoomInOut;
  -ms-animation-duration: 3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;
  -o-animation-name: zoomInOut;
  -o-animation-duration: 3s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: rotate(0deg) scale(0.7);
    transform: rotate(0deg) scale(0.7);
    opacity: 0;
  }

  50% {
    -webkit-transform: rotate(180deg) scale(1);
    transform: rotate(180deg) scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: rotate(360deg) scale(0.7);
    transform: rotate(360deg) scale(0.7);
    opacity: 0;
  }
}

.collaboration-one__star-1 {
  position: absolute;
  top: 367px;
  left: 573px;
}

.collaboration-one__star-1 img {
  width: auto;
}

.collaboration-one__star-2 {
  position: absolute;
  top: 367px;
  right: 550px;
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

/* *** */
@-webkit-keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.collaboration-one__star-2 img {
  width: auto;
}

.collaboration-one__star-3 {
  position: absolute;
  bottom: 295px;
  left: 417px;
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

.collaboration-one__star-3 img {
  width: auto;
}

.collaboration-one__star-4 {
  position: absolute;
  bottom: 309px;
  right: 415px;
}

.collaboration-one__star-4 img {
  width: auto;
}

.collaboration-one__shape-1 {
  position: absolute;
  left: 20px;
  top: 0;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  width: 110%;
  height: 100%;
}

.collaboration-one__shape-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.sets-popup-box .submit-button {
  border-color: #fff;
  color: #fff;
}

.sets-popup-box .submit-button:hover {
  background-color: #fff;
  color: rgb(6, 43, 71) !important;
}

/* ------------- */

.career-section {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.career-head-content h1 {
  text-align: center !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 45px !important;
  line-height: 60px !important;
  color: rgb(6, 43, 71) !important;
  font-family: var(--font-family) !important;
  display: block;
  padding-bottom: 10px;
}

.career-head-content p {
  text-align: center;
  font-size: 18px;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  font-family: var(--font-family) !important;
  font-style: normal;
  line-height: 36px !important;
  color: rgb(6, 43, 71) !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 0;
  display: block;
}

/* ---------------------------- career page ------------------------------- */

/* Add your CSS styles here */

.jobs-tabs-button-flex {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  padding: 10px;
}

.jobs-nav-button {
  cursor: pointer;
  padding: 15px 20px;
  position: relative;
  font-family: var(--font-family);
  font-style: normal;
  font-size: 16px;
  text-decoration: none;
  line-height: 27px;
  text-align: left;
  letter-spacing: 0.04em;
  color: rgb(6, 43, 71) !important;
  display: inline-block;
  font-weight: 600;
}

.jobs-nav-button.active {
  position: relative;
  color: #189991 !important;
}

.jobs-nav-button.active:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 80%;
  background: #189991 !important;
  transition: width 0.5s cubic-bezier(0.2, 1.4, 0.4, 1);
}

.jobs-content-container {
  padding: 20px;
}

.jobs-content-container .Jobs-tab-content {
  display: none;
}

.jobs-content-container .Jobs-tab-content.active {
  display: block;
}

.Jobs-content-tabs-flex {
  display: flex;
  flex-direction: column;
}

.jobs-nav-button-tab {
  cursor: pointer;
  padding: 20px;
  font-size: 20px;
  display: block;
  text-align: start;
  color: rgb(16, 96, 136);
  font-weight: 400;
  border-bottom: 2px solid #e8f1f5;
}

.jobs-nav-button-tab.active {
  background-color: #e8f1f5;
  font-weight: 500;
  color: #189991 !important;
}

.jobs-data-info {
  display: none;
}

.jobs-data-info.active {
  display: block;
}

.jobs-listing-header {
  padding: 50px 0;
  display: block;
  width: 100%;
}

.jobs-listing-header h2 {
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 32px !important;
  line-height: 44px !important;
  color: rgb(6, 43, 71) !important;
  display: block !important;
  text-align: center !important;
  letter-spacing: 0.5px !important;
  text-transform: capitalize !important;
}

.jobs-tabs-inline {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.Jobs-content-tabs {
  display: flex;
  justify-content: center;
  width: 100%;
}

.Jobs-content-tabs-flex {
  width: 25%;
  background: #fff;
}

.Jobs-content-info {
  width: 75%;
  padding: 40px 85px;
  background: #e8f1f5;
}

.jobs-info-title {
  padding-bottom: 15px;
}

.jobs-data-info-content h2 {
  font-size: 30px !important;
  display: block !important;
  text-align: start !important;
  color: rgb(6, 43, 71) !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 0 !important;
  text-transform: capitalize !important;
}

.jobs-info-description,
.jobs-info-Require {
  margin-top: 20px;
}

.jobs-info-description h3,
.jobs-info-Require h3 {
  font-size: 20px !important;
  display: block !important;
  text-align: start !important;
  font-weight: 700 !important;
  color: rgb(6, 43, 71) !important;
  letter-spacing: 0.5px;
}

.jobs-info-description p,
.jobs-info-Require p {
  display: block;
  margin: 0 !important;
  padding: 5px 0;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgb(78, 95, 119);
  letter-spacing: 0.5px;
}

.jobs-info-Require ul {
  padding: 5px 0;
  display: block;
  list-style-type: disc;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 20px;
  unicode-bidi: isolate;
}

.jobs-info-Require ul li {
  padding: 5px 0;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(78, 95, 119);
  letter-spacing: 0.5px;
}

.jobs-info-form {
  padding-top: 25px;
  padding-bottom: 25px;
}

.jobs-info-form label {
  font-size: 16px;
  display: block;
  text-align: start;
  color: rgb(78, 95, 119);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.jobs-info-form label .required-asterisk {
  color: #dc3545;
}

.jobs-info-form form input.form-control,
.jobs-info-form form textarea.form-control {
  border-radius: 0px !important;
  border-bottom: 2px solid #c2d4ee !important;
  background-color: transparent !important;
  padding: 10px 0 !important;
  margin-bottom: 25px;
  font-size: 16px !important;
  display: block !important;
  text-align: start !important;
  color: rgb(6, 43, 71) !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
}

.jobs-info-form form input.form-control:focus,
.jobs-info-form form textarea.form-control:focus {
  border-color: #189991 !important;
}

.jobs-info-form form #attachment {
  padding: 10px 0 !important;
  margin-bottom: 25px;
  cursor: pointer;
}

.jobs-info-form form .job-submit {
  display: block;
  position: relative;
  overflow: hidden;
  min-width: max-content;
  padding: 15px 44px 12px;
  font-family: var(--font-family);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  color: rgb(8, 147, 189);
  border: 2px solid rgb(124, 190, 223);
  background-color: transparent;
  border-radius: 7px;
  text-decoration: none;
  transform: translateZ(0px);
  transition: all 0.3s ease 0s;
  font-size: 17px;
  line-height: 29px;
  text-transform: initial !important;
  margin-top: 20px;
}

.jobs-info-form form .job-submit:hover {
  background-color: rgb(8, 147, 189);
  color: #fff;
  border-color: rgb(8, 147, 189);
}

@media (max-width: 768px) {
  .jobs-listing-header {
    padding: 15px 0;
  }

  .jobs-tabs-button-flex {
    padding: 0;
  }

  .jobs-content-container {
    padding: 0;
  }

  .Jobs-content-tabs {
    flex-direction: column;
  }

  .Jobs-content-tabs-flex {
    width: 100%;
  }

  .jobs-nav-button-tab {
    padding: 10px 20px;
  }

  .Jobs-content-info {
    width: 100%;
    padding: 20px;
  }

  .jobs-listing-sec {
    padding-bottom: 30px;
  }

  .jobs-tabs-inline {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 500px) {
  .career-section {
    min-height: auto;
  }

  .career-head-content {
    padding: 40px 0;
  }

  .career-head-content h1 {
    font-size: 27px !important;
    line-height: 34px !important;
    padding-bottom: 0px;
  }

  .jobs-listing-header h2 {
    font-size: 20px !important;
    line-height: 30px !important;
  }

  .career-head-content p {
    font-size: 14px;
    line-height: 26px !important;
  }

  .jobs-data-info-content h2 {
    font-size: 20px !important;
    line-height: 30px !important;
  }

  .jobs-nav-button-tab {
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .jobs-info-title {
    padding-bottom: 0px;
  }

  .jobs-info-description p,
  .jobs-info-Require p {
    font-size: 15px;
    text-align: start;
  }

  .jobs-info-Require ul li {
    font-size: 15px;
  }
}

.jobs-info-form form input.form-control.border-danger,
.jobs-info-form form textarea.form-control.border-danger {
  border-color: rgb(206, 31, 31) !important;
}

@media (max-width: 1400px) {
  .datasets-icons-list .related-set-box {
    width: 30%;
  }
}

@media (max-width: 1200px) {
  .datasets-icons-list .related-set-box {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .datasets-icons-list .related-set-box {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .datasets-icons-list .related-set-box {
    width: 100%;
  }

  .datasets-nav-button {
    width: 170px;
    height: 40px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .glider {
    height: 40px;
    width: 170px;
  }

  .datasets-nav-button:hover::before {
    background-size: contain;
  }

  input[id="radio-2"]:checked~.glider {
    transform: translateX(170px);
  }

  .tabs-content-container {
    margin-top: 18px;
  }
}

@media screen and (max-width: 1400px) {
  .new-data-field-right {
    padding: 40px 10px;
  }

  .new-data-field-left {
    padding: 40px 15px;
  }
}

@media screen and (max-width: 1250px) {
  .new-data-field-right {
    padding: 40px 10px;
  }

  .new-data-field-left {
    padding: 40px 15px;
  }
}

.dmca-food {
  width: 90px !important;
}

.copyscape-food {
  width: 90px !important;
}

.new-footer-bottom-left {
  display: flex;
  gap: 15px !important;
}

/* -------- myntra trends table start */

.myntra-th {
  color: white;
  height: 50px;
  background-color: #47a8a2 !important;
  border: 0.25px solid black;

  width: 300px;
}

.myntra-td {
  border-collapse: collapse;
  color: black;
  width: 300px;
  text-align: start;
  border: 0.25px solid black;
}

.season-sales {
  margin-top: 26px;
  margin-bottom: 8px;
}

.expected-average {
  margin-bottom: 8px;
}

@media screen and (max-width: 576px) {
  .table-sample {
    overflow: auto;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1em;
  color: black;
  border-spacing: 0;
  background-color: white;
  border: 1px solid #ddd;
}

td,
.tr {
  overflow: hidden !important;
}

.tr {
  text-align: start;
  border: solid #dbdbdb;
  border-width: 0 0 1px;
  padding: 0.5em 0.75em;
  vertical-align: top;
}

.column-width {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

td {
  color: #353535;
}

td,
th,
.tr {
  padding: 0.5em 0.75em;
}

th {
  border-width: 0 0 2px;
  color: #363636;
}

/* ---------------------------------------------- new menu ---------------------------------------------- */

.nav__link.nav-link span {
  color: #ffffff;
  background: #005b3e;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 16px;
  margin-left: 5px;
}

.new-drop-grid-structure-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  max-width: calc(100% - 140px);
  margin: 0 auto;
}

.nav-bar ul li.pad-nav:first-child .new-drop-grid-structure-3 {
  grid-template-columns: repeat(4, 1fr);
}

.new-new-drop-grid-structure-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.new-drop-grid-structure-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.new-drop-grid-structure-5 {
  grid-template-columns: repeat(5, 1fr);
  display: grid;
}

.nav-bar .new-drop-items {
  padding: 10px;
}

.nav-bar .new-grid-head {
  margin-bottom: 10px;
}

.nav-bar .new-grid-head.new-grid-head-d {
  margin-bottom: 10px;
  border-radius: 20px;
  height: 100%;
}

.nav-bar .new-grid-title {
  display: block;
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  line-height: 24px !important;
  letter-spacing: 1.5px !important;
  color: rgb(6, 43, 71) !important;
  margin-bottom: 0;
}

.nav-bar .new-grid-disk {
  display: block;
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  line-height: 20px !important;
  letter-spacing: 1.5px !important;
  color: rgb(25, 16, 12) !important;
  opacity: 0.9 !important;
  margin-bottom: 0;
  margin-top: 8px;
}

.nav-bar .new-drop-grid-items-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.nav-bar .new-drop-grid-items-content li {
  margin: 0px 0px !important;
}

.nav-bar .new-drop-grid-items-content li a {
  color: var(--title-dark-black) !important;
  padding: 10px 0px;
  transition: all 0.3s ease;
  font-size: 15px;
  white-space: normal;
  display: flex;
  width: 100%;
  border-radius: 10px;
  font-family: var(--font-family);
  text-align: start;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.5px;
  background: none;
  justify-content: flex-start;
  align-items: center;
}

.nav-bar .new-drop-grid-items-content li div {
  height: 30px;
  width: 30px;
  min-width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
  border-radius: 5px;
  box-shadow: rgb(6 43 71 / 16%) 0px 0px 35px;
}

.nav-bar .new-drop-grid-items-content li div img {
  display: block;
  max-width: 22px;
}

.nav-bar .new-grid-head a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
}

.nav-bar .new-grid-disk.new-grid-disk-bolder {
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  color: rgb(0 0 0) !important;
  opacity: 1 !important;
  margin-bottom: 0;
  margin-top: 20px;
}

.new-grid-head-full-image {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.new-grid-head-full-image img {
  width: 100%;
  height: auto;
}

.new-grid-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 28px !important;
  line-height: 48px !important;
  letter-spacing: 1.5px !important;
  color: var(--title-light-white) !important;
  width: 100%;
  text-align: center;
}

.new-grid-head-top {
  margin-top: 20px;
}

.new-grid-full-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.b-r-20 {
  border-radius: 20px;
  overflow: hidden;
}

.p-35 {
  padding: 35px;
}

.new-grid-full-absolute div h3 {
  display: block;
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 26px !important;
  line-height: 36px !important;
  letter-spacing: 1.5px !important;
  color: var(--title-light-white) !important;
  width: 100%;
  text-align: start;
}

.new-grid-full-absolute div p {
  color: var(--title-dark-white);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 16px;
  text-align: start;
}

.new-grid-full-absolute div span {
  color: var(--title-dark-white);
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 18px;
  display: inline-block;
}

.new-grid-full-relative div h3 {
  display: block;
  font-family: var(--font-family) !important;
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  line-height: 26px !important;
  letter-spacing: 1.5px !important;
  color: var(--title-light-white) !important;
  width: 100%;
  text-align: start;
}

.new-grid-full-relative div p {
  color: var(--title-dark-white);
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: start;
}

.new-grid-full-relative div span {
  color: var(--title-dark-white);
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 15px;
  display: inline-block;
}

.nav-bar .new-drop-items-pad-0 {
  padding: 0;
}

.new-box-grid-item {
  padding: 18px;
}

.new-box-grid-item.new-grid-full-absolute div h3 {
  font-size: 18px !important;
  line-height: 26px !important;
}

.new-box-grid-item.new-grid-full-absolute div p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.new-box-grid-item.new-grid-full-absolute div span {
  font-weight: 500;
  font-size: 15px;
}

.new-grid-full-absolute.new-box-grid-item {
  height: auto;
}

.italic-font {
  font-style: italic !important;
  text-align: center;
}

.nav-bar .new-drop-grid-items-content li a.terms-btn {
  position: relative;
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: rgb(45, 157, 148) !important;
  letter-spacing: 2px;
  display: flex;
}

.nav-bar .new-drop-grid-items-content li a.terms-btn i {
  font-size: 18px;
  transition: all 0.3s ease 0s;
  transform: rotate(0deg);
  position: relative;
  top: 0;
}

.nav-bar .new-drop-grid-items-content li a.terms-btn:hover {
  color: rgb(45, 157, 148);
}

.nav-bar .new-drop-grid-items-content li a.terms-btn:hover i {
  transform: translateX(7px);
}

.nav-bar .new-grid-head.new-grid-head-d a {
  height: 100%;
}

.nav-bar .new-grid-head.new-grid-head-d a .new-grid-head-full-image {
  height: 100%;
}

.nav-bar .new-grid-head.new-grid-head-d a .new-grid-head-full-image .new-box-grid-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 1400px) {
  .nav-bar ul li.pad-nav:first-child .new-drop-grid-structure-3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .new-drop-grid-structure-3 {
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
    margin: 0 auto;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }

  .nav-bar .new-drop-items {
    padding: 15px 20px;
  }

  .nav-bar .dropdown-menu {
    padding: 0px 0px 0;
  }

  .nav-bar .new-drop-items.new-1400-pad-10 {
    padding: 10px 20px;
  }

  .nav-bar.active {
    padding: 0 15px;
  }

  .nav-bar.active .mobile-nav-logo {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 9999;
  }

  .nav-bar.active .mobile-nav-logo a img {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .nav-bar .dropdown {
    justify-content: space-between;
    width: 100%;
  }

  .nav-bar ul li.dropdown a {
    width: 100%;
  }

  .nav-bar ul li.dropdown i {
    position: absolute;
    right: 0;
    top: 18px;
  }

  .nav-bar ul li a {
    font-size: 18px;
  }
}

.nav-bar .new-grid-head .new-grid-title a {
  align-items: start;
}

.nav-bar .new-grid-dataset-connect {
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--title-dark-white) !important;
  letter-spacing: 2px;
  display: flex;
}

.nav-bar .new-grid-dataset-connect i {
  font-size: 18px;
  transition: all 0.3s ease 0s;
  color: #fff !important;
  transform: rotate(0deg) !important;
}

.nav-bar ul li:hover .new-grid-dataset-connect i {
  color: #fff !important;
}

.nav-bar.new-menu .new-grid-dataset-connect:hover i {
  transition: 0.5s;
  transform: rotate(0deg) !important;
  color: #fff !important;
}

.nav-bar .new-drop-items-big .new-grid-head.new-grid-head-d {
  margin-bottom: 10px;
  border-radius: 20px;
  height: auto;
}

.nav-bar .new-drop-items-big .new-grid-head.new-grid-head-d .new-grid-full-relative div h3 {
  font-size: 24px !important;
  line-height: 38px !important;
}

.nav-bar .new-drop-items-big .new-grid-head.new-grid-head-d .new-grid-full-relative div p {
  font-size: 16px;
  line-height: 26px;
}

.nav-bar .new-drop-items-big .new-grid-head.new-grid-head-d .new-grid-full-relative {
  padding: 35px;
}

@media screen and (max-width: 992px) {
  .new-grid-absolute {
    font-size: 20px !important;
    line-height: 38px !important;
  }

  .nav-bar ul li.dropdown .new-grid-dataset-connect i {
    position: relative !important;
    top: 0;
  }

  .b-r-20 {
    border-radius: 12px;
    overflow: hidden;
  }

  .p-35 {
    padding: 14px;
  }
}

@media screen and (max-width: 576px) {
  .new-grid-absolute {
    font-size: 22px !important;
    line-height: 28px !important;
  }

  .nav-bar .new-drop-items-big .new-grid-head.new-grid-head-d .new-grid-full-relative {
    padding: 20px;
  }

  .nav-bar .new-drop-items-big .new-grid-head.new-grid-head-d .new-grid-full-relative div h3 {
    font-size: 20px !important;
    line-height: 34px !important;
  }

  .nav-bar .new-drop-items-big .new-grid-head.new-grid-head-d .new-grid-full-relative div p {
    font-size: 14px;
    line-height: 24px;
  }

  .new-box-grid-item.new-grid-full-absolute div h3 {
    font-size: 16px !important;
    line-height: 22px !important;
    margin-bottom: 0px;
  }

  .new-box-grid-item.new-grid-full-absolute div p {
    font-weight: 300;
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 5px;
  }
}

/* ------------------------------------------------------- */

.new-commen-banner {
  position: relative;
  overflow: hidden;
  background-position: left !important;
  background-repeat: no-repeat;
  background: #e6fffd;
  background-size: cover;
  width: 100%;
}

.new-commen-banner-row {
  width: 100% !important;
  max-width: 95% !important;
  margin: 0 auto !important;
  padding: 0 10px;
  height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.new-commen-banner-content {
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.commen-banner-wrpe {
  max-width: 875px;
}

.commen-banner-wrpe h2 {
  text-transform: initial !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 45px !important;
  line-height: 60px !important;
  margin-bottom: 10px;
  text-align: start !important;
  color: var(--title-dark-white) !important;
  font-family: var(--font-family) !important;
  letter-spacing: 0.5px !important;
}

.commen-datasets-wrap h2 {
  text-transform: initial !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 45px !important;
  line-height: 60px !important;
  margin-bottom: 10px;
  text-align: start !important;
  color: rgb(6, 43, 71) !important;
  font-family: var(--font-family) !important;
  letter-spacing: 0.5px !important;
}

.commen-banner-wrpe p {
  font-size: 16px !important;
  text-align: start !important;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 29px !important;
  display: block;
  color: var(--title-dark-white);
  opacity: 1;
}

.datasest-2 {
  padding: 0 0 15px;
  list-style: none;
}

.ticked li {
  margin: 0;
  padding: 12px 8px 12px 35px;
  position: relative;
  text-align: left;
  font-family: var(--font-family);
  font-size: 16px;
  letter-spacing: 1px;
  color: rgb(6, 43, 71) !important;
  font-weight: 500;
  line-height: 24px;
}

.ticked li:before {
  content: "";
  border-radius: 50%;
  display: block;
  background-size: 12px;
  height: 24px;
  width: 24px;
  background-color: #d57092;
  background-image: url(../img/quick-commerce-datasets/check-solid.svg);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-position: 50%;
  background-repeat: no-repeat;
  filter: invert(100);
}

.commen-banner-wrpe .common-btn {
  color: rgb(255 255 255);
  border: 2px solid rgb(255 255 255);
}

.commen-banner-wrpe .common-btn:hover {
  border-color: rgb(255 255 255);
  color: rgb(9, 55, 90);
  background-color: #fff;
}

/* --------------------------- */

.popular-sorce-section {
  padding: 80px 0 20px;
}

.populer-s-width {
  width: 100% !important;
  max-width: 95% !important;
  margin: 0 auto !important;
  padding: 0 10px;
}

.new-top-datasets {
  padding: 0 15px;
}

.head-flex-dataset {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  width: 100%;
  transition: all 0.3s ease;
}

.head-flex-dataset div h2 {
  font-family: var(--font-family) !important;
  font-style: normal;
  font-weight: 600 !important;
  font-size: 24px !important;
  line-height: 40px !important;
  color: rgb(6, 43, 71) !important;
  letter-spacing: 0.3px !important;
  text-transform: initial !important;
  margin-bottom: 0;
}

.flex-dataset-button {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 2px;
}

.flex-dataset-button a {
  margin: 0;
  position: relative;
  text-align: left;
  font-family: var(--font-family);
  font-size: 16px;
  letter-spacing: 0.5px;
  color: rgb(6, 43, 71);
  font-weight: 600;
  line-height: 24px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.flex-dataset-button i {
  font-size: 22px;
  font-weight: 600;
}

.head-flex-dataset:hover .flex-dataset-button a {
  transform: translateX(-10px);
  color: rgb(6, 43, 71);
}

.new-populer-flex-wraper {
  /* display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap; */
  width: 100%;
  height: auto;
  overflow: hidden;

  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.new-owl-items {
  width: 185px;
  height: 100%;
  /* background-color: #f3f9ff; */
  background: linear-gradient(225.02deg,
      rgb(243, 243, 243) 0%,
      rgb(234, 255, 255) 92.34%);
  border-bottom-left-radius: 40px;
  border-top-right-radius: 40px;
  border-top-left-radius: 3px;
  border-bottom-right-radius: 3px;
  transition: all 0.3s ease;
  padding: 30px;
  text-decoration: none;
  text-align: center;
}

.new-owl-icon {
  height: 100px;
  width: 100px;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.04);
}

.new-owl-icon img {
  width: 45px;
  height: auto;
}

.new-owl-title {
  display: block;
  margin-top: 20px;
}

.new-owl-title h3 {
  font-size: 22px;
  line-height: 32px;
  color: rgb(6, 43, 71);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.dashbord-center-section h1 {
  text-transform: initial !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 45px !important;
  line-height: 60px !important;
  margin-bottom: 10px;
  text-align: center !important;
  display: block !important;
}

.dashbord-center-section p {
  text-align: center !important;
  display: block !important;
  font-size: 16px !important;
}

.dashbord-max-container {
  width: 100% !important;
  max-width: 95% !important;
  margin: 0 auto !important;
  padding: 0 10px;
}

.d-ul-items {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}

.d-ul-items li {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: rgb(78, 95, 119);
  position: relative;
  max-width: 33.33%;
  width: 100%;
  padding: 6px 0px 6px 20px;
  font-family: var(--font-family) !important;
}

.d-ul-items.full li {
  max-width: 100%;
}

.d-ul-items li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgb(7, 174, 105);
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  border-bottom-right-radius: 6px;
  top: calc(50% - 0px);
  left: 0;
  transform: translateY(-50%);
}

.dashbord-new-wrap h2 {
  color: rgb(6, 43, 71);
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
}

.dashbord-new-wrap p {
  color: rgb(78, 95, 119);
  font-family: var(--font-family) !important;
  font-size: 16px;
  text-align: start;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.dataset-faqs .accordion-item {
  box-shadow: none !important;
  background: #ffffff00 !important;
}

.faqs.dataset-faqs .accordion .accordion-content p {
  text-align: start;
}

@media screen and (max-width: 1800px) {
  .new-populer-flex-wraper {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media screen and (max-width: 1400px) {
  .new-populer-flex-wraper {
    grid-template-columns: repeat(4, 1fr);
  }

  .commen-banner-wrpe h2,
  .dashbord-center-section h1,
  .faqs h2,
  .commen-datasets-wrap h2 {
    font-size: 40px !important;
    line-height: 58px !important;
  }
}

@media screen and (max-width: 1200px) {
  .commen-banner-wrpe {
    max-width: 100%;
  }

  .new-commen-banner-row {
    padding: 50px 10px;
    height: 100%;
    max-width: 100% !important;
  }

  #new-order-1 {
    order: 1;
  }

  #new-order-0 {
    order: 0;
  }
}

@media screen and (max-width: 992px) {
  .new-populer-flex-wraper {
    grid-template-columns: repeat(3, 1fr);
  }

  .d-ul-items li {
    max-width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .new-populer-flex-wraper {
    grid-template-columns: repeat(2, 1fr);
  }

  .head-flex-dataset {
    flex-direction: column;
    align-items: start;
    row-gap: 10px;
  }

  .new-owl-icon img {
    width: 25px;
    height: auto;
  }

  .new-owl-icon {
    height: 60px;
    width: 60px;
    border-radius: 8px;
  }

  .new-owl-title h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .new-owl-items {
    width: 100%;
    height: 100%;
    padding: 20px;
  }

  .dashbord-new-wrap .food-image-banner {
    margin-bottom: 25px;
  }

  .populer-s-width {
    width: 100% !important;
    max-width: 100% !important;
  }

  .d-ul-items li {
    max-width: 100%;
  }
}

@media screen and (max-width: 576px) {

  .commen-banner-wrpe h2,
  .dashbord-center-section h1,
  .faqs h2,
  .commen-datasets-wrap h2 {
    font-size: 27px !important;
    line-height: 34px !important;
  }

  .new-commen-banner-content {
    padding: 0;
  }

  .new-top-datasets {
    padding: 0;
  }

  .commen-datasets-wrap h2 {
    text-align: center !important;
  }

  .new-data-field-List .new-data-field-listitem-576 li {
    width: 100%;
  }
}

.new-blog-boxes-design {
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
}

/* Header Styles */
.new-design-boxes-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.new-desin-boxes-logo-section {
  display: flex;
  align-items: end;
  gap: 5px;
}

.blinkit-logo {
  height: 60px;
  width: auto !important;
}

.new-desin-boxes-header-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #1a181e;
}

.new-blog-boxes-design .boxes-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  /* Allow items to wrap */
}

.new-blog-boxes-design .price-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* Make boxes responsive */
  flex: 1;
  min-width: 180px;
  max-width: calc(20% - 12px);
  /* 5 items per row with gap consideration */
}

.new-blog-boxes-design .price-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-bottom: 3px solid #08a974;
}

.new-blog-boxes-design .item {
  font-weight: 500;
  color: #212529;
  font-size: 16px;
}

.new-blog-boxes-design .price {
  font-weight: 600;
  color: #09c387;
  font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .new-blog-boxes-design .price-box {
    max-width: calc(25% - 12px);
    /* 4 items per row */
  }
}

@media (max-width: 992px) {
  .new-blog-boxes-design .price-box {
    max-width: calc(33.333% - 12px);
    /* 3 items per row */
  }
}

@media (max-width: 768px) {
  .new-blog-boxes-design {
    padding: 15px 10px;
  }

  .new-design-boxes-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .blinkit-logo {
    height: 60px;
  }

  .new-desin-boxes-header-title {
    font-size: 20px;
  }

  .new-blog-boxes-design .price-box {
    max-width: calc(50% - 12px);
    /* 2 items per row */
    padding: 12px 15px;
  }

  .new-blog-boxes-design .item {
    font-size: 14px;
  }

  .new-blog-boxes-design .price {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .new-blog-boxes-design {
    padding: 10px 5px;
  }

  .new-design-boxes-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .blinkit-logo {
    height: 60px;
  }

  .new-desin-boxes-header-title {
    font-size: 18px;
  }

  .new-blog-boxes-design .price-box {
    width: 100%;
    /* margin: 0 10px; */
    padding: 10px;
  }

  .new-blog-boxes-design .item {
    font-size: 13px;
  }

  .new-blog-boxes-design .price {
    font-size: 15px;
  }
}

@media (max-width: 410px) {
  .new-blog-boxes-design .boxes-wrapper {
    justify-content: center;
  }
}

/* ========================== scraper design by murtaza start ================= */

.nav-pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.nav-pills {
  background-color: transparent;
  color: #666;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

.nav-pills {
  background-color: #4a90e2;
  color: white;
}

.tab-content {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.monitoring-section {
  margin-bottom: 0;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.monitoring-section img {
  margin-right: 20px;
  width: 50px;
  height: 50px;
}

.monitoring-section .content {
  display: flex;
  flex-direction: column;
}

.monitoring-section h3 {
  text-align: start;
}

.monitoring-section:last-child {
  border-bottom: none;
}

.monitoring-section h3 {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: rgb(6, 43, 71);
}

.monitoring-section p {
  font-size: 18px !important;
  text-align: start !important;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 29px !important;
}

.content-wrapper {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.content-left {
  flex: 1;
  padding: 30px !important;
}

.content-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-right img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background-image: linear-gradient(147deg, #47a8a2 5%, #098156 74%);
  color: white;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
  float: left;
  /* Add this */
  clear: both;
  cursor: pointer;
}

.cta-button:hover {
  color: white !important;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.nav-wrapper {
  background: #f8f9fa;
  border-radius: 50px;
  padding: 14px 24px;
  display: inline-flex;
  margin: 0 auto 2rem;
}

.nav-pills {
  display: flex;
  gap: 15px;
  margin: 0;
  background: transparent;
  padding: 0;
}

.custom-css-transfrom {
  border-radius: 50px !important;
  padding: 15px 38px !important;
}

.custom-css-transfrom {
  font-size: 16px !important;
}

.nav-pills .custom-css-transfrom {
  color: #000;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  background: transparent;
}

.nav-pills .custom-css-transfrom.active {
  background-image: linear-gradient(147deg, #47a8a2 5%, #098156 74%) !important;
  box-shadow: 0 2px 4px rgba(74, 144, 226, 0.3);
  color: white !important;
}

.custom-css-transfrom:hover {
  color: black !important;
  border: 1px solid green !important;
}

/* Rest of your existing styles remain the same */
.tab-content {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.monitoring-section {
  margin-bottom: 30px;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.monitoring-section:last-child {
  border-bottom: none;
}

@media (max-width: 992px) {
  .custom-css-transfrom {
    padding: 14px 28px !important;
  }

  .content-left {
    padding: 0px !important;
  }

  .monitoring-section {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 536px) {
  .nav-wrapper {
    background: none !important;
  }

  .nav-wrapper {
    margin: 0 auto 1rem;
  }

  .custom-css-transfrom {
    border: 1px solid #328cfa !important;
  }
}

.monitoring-section {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo-container {
  flex-shrink: 0;
  width: 50px;
}

.section-logo {
  width: 100%;
  height: auto;
}

.section-content {
  flex-grow: 1;
}

.section-content h3 {
  margin: 0 0 0.5rem 0;
}

.section-content p {
  margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .monitoring-section {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .logo-container {
    width: 40px;
    /* Slightly smaller on mobile */
  }
}

.related-set-box-two {
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 18px 20px;
  background: linear-gradient(225.02deg,
      rgb(243, 243, 243) 0%,
      rgb(223 247 247) 92.34%);
  border-bottom-left-radius: none !important;
  border-top-right-radius: none !important;
  border-top-left-radius: none !important;
  border-bottom-right-radius: none !important;
  z-index: 50;
  transition: ease 0.3s;
  border-radius: 22px;
}

@media (max-width: 1200px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .content-right img {
    height: 600px;
  }

  .content-left {
    padding: 17px !important;
  }

  .content-wrapper {
    align-items: center;
    gap: 2rem !important;
  }
}

@media (max-width: 576px) {
  .nav-wrapper {
    padding: 14px 0;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-wrapper .nav {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 15px;
    padding: 0 15px;
  }

  .content-right {
    display: none;
  }

  .nav-wrapper .nav-item {
    flex-shrink: 0;
  }

  .nav-wrapper .custom-css-transfrom {
    white-space: nowrap;
    padding: 10px 25px !important;
  }

  /* Hide scrollbar for Chrome, Safari and Opera */
  .nav-wrapper::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  .nav-wrapper {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .delta-tab-link {
    padding: 15px 10px;
  }
}

@media (max-width: 492px) {
  .monitoring-section p {
    text-align: start !important;
    font-size: 12px !important;
    line-height: normal !important;
  }

  .content-right img {
    height: auto;
  }

  .monitoring-section h3 {
    font-size: 1rem !important;
  }

  .cta-button {
    padding: 0.7rem !important;
  }

  .custom-css-transfrom {
    padding: 14px !important;
  }
}

.aligned-dataset-card {
  background: linear-gradient(135deg, #ffffff, #e8f8fc);
  border-radius: 12px;
  padding: 23px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 500px;
}

.aligned-dataset-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.aligned-dataset-header {
  display: flex;
  align-items: flex-start;
  gap: 51px;
}

.aligned-dataset-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.aligned-dataset-text {
  display: flex;
  flex-direction: column;
}

.aligned-dataset-title {
  font-size: 20px;

  font-weight: 600;
  color: rgb(6, 43, 71) !important;
  text-align: start;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 26px;
}

.aligned-dataset-info {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .aligned-dataset-card {
    width: 417px;
  }
}

@media (max-width: 460px) {
  .aligned-dataset-title {
    font-size: 14px;
  }

  .aligned-dataset-145 {
    font-size: 15px !important;
  }

  .aligned-dataset-header {
    gap: 20px !important;
  }

  .aligned-dataset-card {
    width: 344px;
  }

  .aligned-dataset-15 {
    font-size: 15px !important;
  }
}

@media (max-width: 400px) {
  .aligned-dataset-header {
    gap: 10px !important;
  }

  .aligned-dataset-logo {
    height: 44px;
    width: 44px;
  }

  .aligned-dataset-card {
    padding: 17px;
    width: 282px;
  }
}

.use-cases-grid {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.use-case-box {
  /* border: 2px solid #e2e6ea; */
  position: relative;
  border-radius: 15px;
  margin-bottom: 20px;
  background-color: #ffffff;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-box:hover {
  transform: scale(1.05);
  /* Slightly scale up the box on hover */
  /* box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); Add a deeper shadow */
}

.use-case-box.highlighted {
  background-color: #f8f9fa;
}

.use-case-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.use-case-title {
  font-size: 1.2rem;
  color: #34495e;
  text-align: center;
  font-weight: bold;
  margin: 0;
}

.use-case-box .img_text {
  top: 20px;
  position: absolute;
  left: 15px;
  right: 10px;
  height: 90%;
}

.img_text_heding h3 {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 26px;
  letter-spacing: 1.5px;
  min-height: 52px;
  color: white;
  width: 100%;
  text-align: start;
}

.img_text_heding p {
  color: white;
  letter-spacing: 1px;
  display: block;
  font-weight: 400;
  align-items: baseline;
  min-height: 136px;
  font-size: 18px;
  line-height: 22px;
  text-align: start;
  margin-top: 20px;
}

.img_text_btn {
  margin-top: -60px;
}

.box_title {
  margin-top: 20px;
}

.img_text_btn a {
  background-color: #28a745;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none !important;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

/* .img_text_btn a {
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: underline !important;
  font-size: 20px;
  display: inline-block;
} */
.img_text_btn a:hover {
  background-color: transparent;
  color: #fff;
  border: 2px solid white;
}

@media screen and (max-width: 1440px) {
  .food_grid_box {
    row-gap: 50px;
  }

  .food_grid_box .col-md-4 {
    width: 50%;
    height: 576px;
  }

  .use-case-box {
    height: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .food_grid_box .col-md-4 {
    height: 445px;
  }
}

@media screen and (max-width: 991px) {
  .food_grid_box .col-md-4 {
    height: auto;
    width: 100%;
  }

  .use-case-box {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .img_text_heding h3 {
    font-size: 18px;
    min-height: auto;
  }

  .img_text_heding p {
    font-size: 12px;
  }

  .img_text_btn a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1400px) and (min-width: 768px) {
  .content-right img {
    height: 740px !important;
  }
}

.remove-active:active {
  background-color: none !important;
}

/* ========================== scraper design by murtaza end ================= */
.food-new-cta-section {
  background-color: #e7f1f5;
  padding: 28px 20px;
  position: relative;
  overflow: hidden;
  border: 3px solid #019984;
  border-radius: 14px;
}

.food-new-cta-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.food-new-cta-subtitle {
  font-size: 1rem;
  color: #555;

  margin: 0 auto;
  text-align: center !important;
}

.cta-new__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #47a8a2 5%, #098156 74%);
  padding: 12px 20px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  font-family: var(--font-family) !important;
  transition: all 2s ease;
}

.food-new-cta-form {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.food-new-cta-input {
  border: none;
  padding: 15px 20px;
  flex-grow: 1;
  border-radius: 30px 0 0 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

.food-new-cta-btn {
  background-color: #28a745;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 0 30px 30px 0;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.food-new-cta-btn:hover {
  background-color: #218838;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.food-new-cta-circle {
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #28a745;
  border-radius: 50%;
  z-index: -1;
}

.food-new-cta-circle::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 260px;
  height: 260px;
  background: #ffffff;
  border-radius: 50%;
}

.food-new-cta-circle::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: 220px;
  height: 220px;
  background: #28a745;
  border-radius: 50%;
}

.monitoring-dashboard-progress-section h5 {
  font-size: 18px !important;
  text-align: start !important;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 29px !important;
  display: block;
  color: var(--desc-black);
}

.monitoring-dashboard-progress-section h1 {
  color: #00bb77 !important;
}

.monitoring-dashboard-progress-section div {
  border-right: 2px solid var(--desc-black);
}

.monitoring-dashboard-progress-section .col-12.col-md-3:nth-child(4) {
  border: 0px;
}

/* .price-category-content {
  display: none;
}
.price-category-content.active {
  display: block;
} */
.new-dashboard-new-design-latest-wrapper {
  background-color: #d7efe247;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.new-dashboard-new-design-latest-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.new-dashboard-new-design-latest-slide.active {
  display: block;
  opacity: 1;
}

.new-dashboard-new-design-latest-content-box {
  background: white;
  border-radius: 24px;
  padding: 30px;
  /* margin-bottom: 20px; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.new-dashboard-new-design-latest-highlight-number {
  font-size: 55px;
  color: #009b99;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}

.new-dashboard-new-design-latest-highlight-number-1 {
  font-size: 35px;
}

.new-dashboard-new-design-latest-highlight-text {
  color: #009b99;
  font-size: 20px;
  font-weight: 500;
}

.new-dashboard-new-design-latest-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-dashboard-new-design-latest-nav-button:hover {
  background: #f0f0f0;
}

.new-dashboard-new-design-latest-nav-prev {
  left: 54px;
}

.new-dashboard-new-design-latest-nav-next {
  right: 54px;
}

.new-dashboard-new-design-latest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  column-gap: 40px;
}

.new-dashboard-new-design-latest-box-equal-height {
  min-height: 180px;
}

.new-dashboard-new-design-latest-sec-equal-height {
  min-height: 250px;
}

.new-dashboard-new-design-latest-arrow-container {
  position: relative;
}

.new-dashboard-new-design-latest-arrow-box {
  position: relative;
}

.new-dashboard-new-design-latest-arrow-container::before {
  content: "";
  position: absolute;
  top: -81px;
  left: 46%;
  transform: translateX(-50%);
  width: 40px;
  height: 67px;
  background-image: url(../img/index-dashboard/ArrowDown.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.new-dashboard-new-design-latest-transparent-box {
  background: none;
  box-shadow: none;
  padding: 0;
  display: flex;
}

.new-dashboard-new-design-latest-heading {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  font-weight: bold;
}

.new-dashboard-new-design-latest-subheading {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
  text-align: start;
}

.new-dashboard-new-butoon {
  display: inline-flex;
  background-image: linear-gradient(147deg, #47a8a2 5%, #098156 74%);
  padding: 12px 20px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  font-family: var(--font-family) !important;
  transition: all 2s ease;
}

.new-dashboard-new-butoon .new-dashboard-new-butoon-anchore {
  text-decoration: none;
  color: white;
}

.new-dashboard-new-butoon:hover {
  color: #fff;
  box-shadow: 0px 10px 50px rgba(56, 252, 160, 0.2);
  background-image: linear-gradient(147deg, #3e9e97 5%, #077951 74%);
  transition: all 2s ease;
}

.new-dashboard-new-design-latest-tastewise-title {
  color: #07996b;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 41px;
}

.new-dashboard-new-design-latest-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.new-dashboard-new-design-latest-right-content {
  height: 100%;
  padding: 0 !important;
}

.new-right-img-main-box {
  height: 100%;
}

.new-dashboard-new-design-latest-right-content h2 {
  font-size: 36px;
  padding-top: 13px;
  font-weight: bold;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #333;
}

.new-dashboard-new-design-latest-right-content p {
  font-size: 20px;
  padding-left: 30px;
  color: #666;
  margin-bottom: 30px;
}

.new-card-for-mb-box {
  margin-bottom: 22% !important;
}

.new-dashboard-new-design-latest-highlight-number::before {
  position: absolute;
  content: "";
  display: block;
  left: -13px;
  top: 36%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #198754 0%, #edf0fc 100%);
  width: 6px;
  height: 175px;
}

.new-index-dash-no-mb {
  margin-bottom: 0 !important;
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .new-dashboard-new-design-latest-grid {
    gap: 16px;
  }

  .new-dashboard-new-design-latest-content-box {
    padding: 20px;
  }

  .new-dashboard-new-design-latest-highlight-number {
    font-size: 60px;
  }

  .new-dashboard-new-design-latest-right-content h2 {
    font-size: 30px;
  }

  .new-dashboard-new-design-latest-right-content p {
    font-size: 18px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .new-dashboard-new-design-latest-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .new-dashboard-new-design-latest-box-equal-height,
  .new-dashboard-new-design-latest-sec-equal-height {
    min-height: auto;
  }

  .new-dashboard-new-design-latest-highlight-number::before {
    height: 120px;
  }

  .new-card-for-mb-box {
    margin-bottom: 20px !important;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .new-dashboard-new-design-latest-wrapper {
    padding: 20px 15px;
  }

  .new-dashboard-new-design-latest-highlight-number {
    font-size: 48px;
  }

  .new-dashboard-new-design-latest-highlight-text {
    font-size: 16px;
  }

  .new-dashboard-new-design-latest-heading {
    font-size: 20px;
  }

  .new-dashboard-new-design-latest-subheading {
    font-size: 14px;
  }

  .new-dashboard-new-design-latest-right-content h2 {
    font-size: 24px;
    padding-left: 20px;
  }

  .new-dashboard-new-design-latest-right-content p {
    font-size: 16px;
    padding-left: 20px;
  }

  .new-dashboard-new-design-latest-image {
    /* max-height: 300px; */
    object-fit: contain;
  }

  .new-dashboard-new-design-latest-nav-button {
    width: 32px;
    height: 32px;
  }

  .new-dashboard-new-design-latest-content-box {
    margin-bottom: 12%;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .new-dashboard-new-design-latest-wrapper {
    padding: 15px 10px;
  }

  .new-dashboard-new-design-latest-content-box {
    padding: 15px;
    border-radius: 16px;
    margin-bottom: 16%;
  }

  .new-dashboard-new-design-latest-highlight-number {
    font-size: 36px;
  }

  /* .new-dashboard-new-design-latest-image {
    max-height: 200px;
  } */
  .new-dashboard-new-design-latest-content-box {
    margin-bottom: 0;
  }

  .new-dashboard-new-design-latest-grid {
    gap: 15px;
  }

  .new-dashboard-new-design-latest-nav-button {
    top: 389px;
  }

  .new-dashboard-new-design-latest-nav-prev {
    left: 10px;
  }

  .new-dashboard-new-design-latest-nav-next {
    right: 10px;
  }

  .new-dashboard-new-design-latest-right-content h2,
  .new-dashboard-new-design-latest-right-content p {
    display: none;
  }

  .new-dashboard-new-design-latest-sec-equal-height img {
    display: none;
  }

  .latest-content-box-before-responsive {
    margin-bottom: 25% !important;
  }

  .transparent-box-responsive-od-1 {
    order: -1;
  }

}

/* ------------------------------------------------faq-------------- */



.new-faq-first-section {
  padding: 90px 0;
  background-color: #0cffb017;
  text-align: center;
}

.new-page-f-a-q-section {
  padding: 50px 0;
  background: #ffffff;
}

.new-page-f-a-q-header {
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.new-page-f-a-q-header h1 {
  color: #4B0082;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.new-page-f-a-q-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.new-page-f-a-q-tab {
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
  font-size: 19px;
  font-weight: 500;
}

.new-page-f-a-q-tab.active {
  background: #e8fff8;
  color: #005c40;
  font-weight: 600;
}

.new-page-f-a-q-content {
  max-width: 1000px;
  margin: 0 auto;
}

.new-page-f-a-q-category {
  display: none;
}

.new-page-f-a-q-category.active {
  display: block;
}

.new-page-f-a-q-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.new-page-f-a-q-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-weight: 500;
  font-size: 20px;
}

.new-page-f-a-q-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.new-page-f-a-q-answer.active {
  padding: 0 20px 20px;
  max-height: 500px;
  color: grey;
  font-size: 17px;
}

.new-page-f-a-q-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.new-page-f-a-q-icon::before,
.new-page-f-a-q-icon::after {
  content: '';
  position: absolute;
  background: #008c6b;
  transition: all 0.3s ease;
}

.new-page-f-a-q-icon::before {
  width: 2px;
  height: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.new-page-f-a-q-icon::after {
  width: 20px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.new-page-f-a-q-item.active .new-page-f-a-q-icon::before {
  transform: translateX(-50%) rotate(90deg);
}

@media (max-width: 768px) {
  .new-page-f-a-q-header h1 {
    font-size: 2rem;
  }

  .new-page-f-a-q-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .new-page-f-a-q-content {
    padding: 0 15px;
  }
}


/* ------------------------------------------- */

.new-food-new-one-platform-h2 h2 {
  color: rgb(6, 43, 71);
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
  text-align: center;
  border: none !important;
}

.new-food-new-one-plat {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.new-food-new-one-plat h1 {
  color: #2D1E69;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.new-food-new-one-plat p {
  color: rgb(78, 95, 119);
  font-family: var(--font-family) !important;
  font-size: 21px;
  text-align: start;
  line-height: 29px;
  font-weight: 500;
  letter-spacing: 0.1px;
  max-width: 500px;
}

.new-food-new-one-plat .buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.new-food-new-one-plat .btn-action {
  background-color: #009781;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
  max-width: 168px;
}

.new-food-new-one-plat .btn-action:hover {
  background-color: white;
  border: 1px solid #009882;
  color: #009882;
}

.new-food-new-one-plat .btn-read {
  background-color: transparent;
  color: #009882;
  padding: 11px 29px;
  border-radius: 8px;
  border: 1px solid #009882;
  transition: all 0.3s ease;
  max-width: 168px;
}

.new-food-new-one-plat .btn-read:hover {
  background-color: #009882;
  color: white;
}

.process-circle {
  width: 384px;
  height: 356px;
  position: relative;
  margin: 50px auto;
}

.arrow-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.process-items {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.process-item {
  position: absolute;
  color: #4f5e75;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
  width: 205px;
  transform: translate(-50%, -50%);
}

/* Top center */
.process-item:nth-child(1) {
  top: 0;
  left: 50%;
}

/* Right center */
.process-item:nth-child(2) {
  top: 50%;
  left: 100%;
}

/* Bottom center */
.process-item:nth-child(3) {
  top: 100%;
  left: 50%;
}

/* Left center */
.process-item:nth-child(4) {
  top: 50%;
  left: 0;
}

@media (max-width: 991px) {
  .process-circle {
    width: 300px;
    height: 278px;
  }

  .process-item {
    width: 141px;
    font-size: 14px;
  }

  .new-food-new-one-plat h1 {
    font-size: 36px;
  }

  .new-food-new-one-plat p {
    max-width: 100%;
  }

  .new-food-new-one-plat .buttons {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .process-circle {
    width: 250px;
    height: 232px;
  }

  .process-item {
    width: 142px;
    font-size: 14px;
  }

  .new-food-new-one-plat h1 {
    font-size: 32px;
  }
}

@media (max-width: 520px) {

  .new-food-new-one-platform-h2 h2 {
    margin-bottom: 1rem !important;
    font-size: 24px !important;
  }

  .new-food-new-one-plat p {
    font-size: 17px;
  }

  .new-food-new-one-plat .btn-action {
    white-space: nowrap;
  }

  .new-food-new-one-plat {
    padding: 30px 0;

  }
}

@media screen and (max-width:390px) {
  .process-item:nth-child(4) {

    left: 21px;
  }

  .process-item:nth-child(2) {

    left: 89%;
  }
}

/* ----------------------------------------- */
.new-food-new-slide-tabs-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px;
}

.new-food-new-slide-tabs-section {
  display: flex;
  gap: 65px;
  background: transparent;
  padding: 20px;
  border-radius: 13px;
}

.new-food-new-slide-tabs-nav-container {
  width: 40%;
  min-width: 300px;
}

.new-food-new-slide-tabs-content-container {
  width: 60%;
  position: relative;
}

.new-food-new-slide-tabs-nav-link {
  position: relative;
  color: #000000 !important;
  font-weight: 600;
  font-size: 22px;
  padding: 20px 20px 20px 40px;
  border: none;
  border-bottom: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  margin-bottom: 0;
  cursor: pointer;
  background: transparent;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
}

.new-food-new-slide-tabs-nav-link::before {
  content: '›';
  position: absolute;
  left: 15px;
  color: #00835a;
  font-size: 46px;
  transition: transform 0.3s;
}

.new-food-new-slide-tabs-nav-link.active::before {
  transform: rotate(90deg);
}

.new-food-new-slide-tabs-nav-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  /* display: none; */


}

.new-food-new-slide-tabs-nav-content.show {
  max-height: 100%;
  padding: 12px 18px;

  opacity: 1;
}


.new-food-new-slide-tabs-nav-content p {
  color: #4B5563;
  font-size: 16px;
  margin-bottom: 10px;
  opacity: 0.85;
  text-align: start;
}

.new-food-new-slide-tabs-nav-content li {
  font-size: 18px;
  font-weight: 500;
  color: #484545;
}

.new-food-new-slide-tabs-image-container {
  position: relative;
  /* height: 600px; */
  margin-bottom: 80px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  margin-top: 2%;
}

.new-food-new-slide-tabs-image-container.active {
  display: block;
  opacity: 1;
}

.new-food-new-slide-tabs-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.new-food-new-slide-tabs-sub-images {
  position: absolute;
  left: 42px;
  bottom: -30px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 180px);
  gap: 41px;
}

.new-food-new-slide-tabs-sub-images-three {
  grid-template-columns: repeat(3, 180px) !important;

}

.new-btn-fod-new-dash-upper-main {
  position: absolute;
  right: 43%;
  bottom: -22%;
}

.new-btn-fod-new-dash-upper {
  display: inline-flex;
  background-image: linear-gradient(147deg, #47a8a2 5%, #098156 74%);
  padding: 12px 20px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  font-family: var(--font-family) !important;
  transition: all 2s ease;
}

.new-btn-fod-new-dash-upper-main a:hover {
  color: white !important;
}

.new-food-new-slide-tabs-sub-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(50px);
  animation: new-food-new-slide-tabs-dropDown 0.5s forwards;
}

@keyframes new-food-new-slide-tabs-dropDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.new-food-new-slide-tabs-sub-image:nth-child(1) {
  animation-delay: 0.1s;
}

.new-food-new-slide-tabs-sub-image:nth-child(2) {
  animation-delay: 0.2s;
}

.new-food-new-slide-tabs-sub-image:nth-child(3) {
  animation-delay: 0.3s;
}

.new-food-new-slide-tabs-sub-image:nth-child(4) {
  animation-delay: 0.4s;
}

.new-food-new-slide-tabs-sub-image:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.new-tab-food-new-index-tab h2 {
  color: rgb(6, 43, 71);
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
  text-align: center;
  border: none !important;
}

.read-more-platfomrm-index {
  display: inline-flex;
  background-image: linear-gradient(147deg, #47a8a2 5%, #098156 74%);
  padding: 12px 20px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  font-family: var(--font-family) !important;
  transition: all 2s ease;
  margin-top: 5%;
}

.read-more-platfomrm-index-main a:hover {
  color: white;
}

/* Mobile Styles */
@media screen and (max-width:1200px) {
  .new-food-new-slide-tabs-sub-images-three {
    grid-template-columns: repeat(3, 136px) !important;
  }

  .new-food-new-slide-tabs-sub-images-third {
    bottom: -141px;
  }

  .new-btn-fod-new-dash-upper-main {
    bottom: -28%;
  }

  .new-btn-fod-new-dash-upper-main-third {
    bottom: -55%;

  }

  .new-food-new-slide-tabs-nav-container {
    width: 47%;
  }
}

@media (max-width: 992px) {
  .new-food-new-slide-tabs-section {
    flex-direction: column;
  }

  .new-food-new-slide-tabs-nav-container,
  .new-food-new-slide-tabs-content-container {
    width: 100%;
  }

  .new-food-new-slide-tabs-image-container {
    height: 100%;
    margin: 20px 0;
    order: 2;
    /* Move images below tabs */
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  .new-food-new-slide-tabs-nav-container {
    order: 1;
    /* Keep tabs at top */

  }

  .new-btn-fod-new-dash-upper-main-third {
    bottom: -18%;
  }

  .new-food-new-slide-tabs-sub-images {
    left: 20px;
    bottom: 10px;
    grid-template-columns: repeat(2, 140px);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .new-food-new-slide-tabs-nav-link {
    font-size: 16px;
    padding: 15px 15px 15px 35px;
  }

  .new-food-new-slide-tabs-nav-content.show {
    padding: 15px 25px;
  }

  .new-food-new-slide-tabs-content-container {
    display: none;
  }

  .new-food-new-slide-tabs-sub-images {
    grid-template-columns: repeat(2, 100px);
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .new-food-new-slide-tabs-container {
    padding: 10px;
  }

  .new-food-new-slide-tabs-nav-link {
    font-size: 14px;
    padding: 12px 12px 12px 30px;
  }

  .new-food-new-slide-tabs-image-container {
    height: 250px;
  }

  .new-food-new-slide-tabs-sub-images {
    grid-template-columns: repeat(2, 80px);
    gap: 10px;
    left: 10px;
    bottom: 5px;
  }
}



/* ------------------------------------------ */









.recent-food-latest-slider {
  padding: 20px 0;
  background: #f8f9fa;
  overflow: hidden;
}

.recent-food-latest-slider-header {
  text-align: left;
  margin-bottom: 30px;
  padding: 0 15px;
  position: relative;
}

.recent-food-latest-slider-title {
  font-size: 32px;
  font-weight: bold;
  color: #0a2540;
  margin-bottom: 10px;
}

.recent-food-latest-slider-subtitle {
  font-size: 16px;
  color: #566b8c;
}

.recent-food-latest-slider-container {
  position: relative;
  padding: 0 15px;
}

.recent-food-latest-slider-label {
  position: absolute;
  top: -12px;
  left: 3px;
  /* background: #ff4d4d; */
  color: #082a45;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 700;
  z-index: 2;
}

.recent-food-latest-slider-slide {
  display: flex !important;
  gap: 45px;
  padding: 45px 10px;
  position: relative;
}

.recent-food-latest-slider-card {
  flex: 1;
  min-width: 0;
  /* Important for flex items */
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.recent-food-latest-slider-card:hover {
  transform: translateY(-5px);
}

.recent-food-latest-slider-image {
  width: 100%;
  height: 171px;
  object-fit: contain;
}

.recent-food-latest-slider-content {
  padding: 15px;
}

.recent-food-latest-slider-brand {
  font-size: 18px;
  color: #0a5e85;
  margin-bottom: 5px;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-weight: 600;
}

.recent-food-latest-slider-name {
  font-size: 18px;
  color: #0a2540;
  margin-bottom: 5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-food-latest-slider-trend {
  color: #28a745;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

/* Navigation styles */
.recent-food-latest-slider .slick-prev,
.recent-food-latest-slider .slick-next {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.recent-food-latest-slider .slick-prev {
  left: -29px;
  top: 41%;
}

.recent-food-latest-slider .slick-next {
  right: -29px;
  top: 41%;

}

.recent-food-latest-slider .slick-prev:before,
.recent-food-latest-slider .slick-next:before {
  color: #0a2540;
  font-size: 20px;
}

.recent-food-latest-slider .slick-dots {
  bottom: -30px;
}

.recent-food-latest-slider .slick-dots li button:before {
  font-size: 12px;
}


.recent-food-latest-slider-card {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease;
}

.recent-food-latest-slider-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.recent-food-latest-slider-link:hover {
  text-decoration: none;
}


/* Update media queries */
@media (max-width: 1200px) {

  /* .recent-food-latest-slider-card:nth-child(n+5) {
    display: none;
  } */
  .recent-food-latest-slider-card {
    flex: 0 0 calc(25% - 15px);
  }

  .recent-food-latest-slider-slide {
    gap: 20px !important;
  }
}

@media (max-width: 992px) {

  /* .recent-food-latest-slider-card:nth-child(n+4) {
    display: none;
  } */
  .recent-food-latest-slider-card {
    flex: 0 0 calc(33.333% - 15px);
  }

  .recent-food-latest-slider-slide {
    gap: 22px !important;
  }
}

@media (max-width: 768px) {

  /* .recent-food-latest-slider-card:nth-child(n+3) {
    display: none;
  } */
  .recent-food-latest-slider-card {
    flex: 0 0 calc(50% - 10px);
  }

  .recent-food-latest-slider-slide {
    gap: 20px !important;
  }
}

@media (max-width: 576px) {
  .recent-food-latest-slider-card:nth-child(n+1) {
    display: block;
  }

  /* .recent-food-latest-slider-card:nth-child(n+2) {
    display: none;
  } */
  /* .recent-food-latest-slider-card:nth-child(n+3) {
    display: none;
  }
  .recent-food-latest-slider-card:nth-child(n+4) {
    display: none;
  } */
  /* .recent-food-latest-slider-card:nth-child(n+5) {
    display: none;
  } */
  .recent-food-latest-slider-card {
    flex: 0 0 calc(102% - 8px);
  }

  .recent-food-latest-slider-slide {
    /* padding: 39px 0; */
    justify-content: center;
  }

  .recent-food-latest-slider-slide {
    gap: 19px !important;
  }

  .recent-food-latest-slider-label {
    text-align: center;
  }
}

@media (max-width:500px) {
  .recent-food-latest-slider-slide {
    gap: 20px !important;
  }
}


.recent-food-latest-slider-card {
  padding: 12px;
  min-height: 318px;
}
.recent-food-latest-slider-card img {
  border-radius: 10px;
  height: auto;
}

/* --------------------- */
.new-common-every-page.real-time-product-stock-tracking .food-ag-box {
  min-height: 625px;
}

.advantage-box p.adv-p {
  display: block;
}

.use-cases-box p {
  display: block !important;
}

/* --------------------- */



/* ----- Top Food Items Inner Page ----- */
.top-food-items-main-parent-common p {
  display: block;
}
.top-food-items-main-parent-common h2,
.top-food-items-main-parent-common h2 {
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 40px !important;
  line-height: 53px !important;
  color: rgb(6, 43, 71) !important;
  text-transform: initial !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .top-food-items-main-parent-common h2,
  .top-food-items-main-parent-common h2 {
    font-size: 32px !important;
  }
}

@media (max-width: 768px) {
  .top-food-items-main-parent-common h2,
  .top-food-items-main-parent-common h2 {
    font-size: 30px !important;
    line-height: 35px !important;
  }
}

.top-food-tems-hero {
  padding-top: 50px;
}

.top-food-tems-hero h1:has(.top-food-tems-hero-heading-bold) {
  display: block;
}

.top-food-tems-hero h1 .top-food-tems-hero-heading-bold {
  color: #00BB77;
  font-size: 48px;
}

@media (max-width: 768px) {
  .top-food-tems-hero h1:has(.top-food-tems-hero-heading-bold) {
    font-size: 32px !important;
  }

  .top-food-tems-hero h1 .top-food-tems-hero-heading-bold {
    font-size: 34px;
  }
}

.top-food-tems-partners-slider {
  margin-top: 80px;
}

.top-food-tems-partners-slider .slider {
  width: 100%;
}

.top-food-tems-partners-line {
  height: 2px;
  background-color: #D9D9D9;
  width: 100%;
  position: relative;
}

.top-food-tems-partners-line h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #D9D9D9;
  padding-inline: 10px;
  width: max-content;
}

.top-food-tems-trend-performance {
  padding: 50px 0;
  margin-top: 50px;
}

.top-food-tems-trend-performance img {
  width: 100%;
}

.top-food-tems-trend-monitor {
  padding: 30px 0;
  margin-top: 40px;
}

.top-food-tems-trend-monitor-container {
  background-color: #E6FFFD;
  border-radius: 18px;
  padding: 35px 50px !important;
}

.top-food-tems-trend-monitor-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.top-food-tems-trend-monitor-icon {
  height: 80px;
  width: 80px;
  background-color: #00BB77;
  padding: 20px;
  border-radius: 100%;
  box-shadow: 0 0 5px #D9D9D9;
}

.top-food-tems-trend-monitor-icon img {
  height: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  .top-food-tems-trend-monitor-container {
    padding: 25px !important;
  }

  .top-food-tems-trend-monitor-content h2 {
    font-size: 28px !important;
  }

  .top-food-tems-trend-monitor-icon {
    height: 70px;
    width: 70px;
    padding: 15px;
  }
}

.top-food-tems-ingredient-and-flavors {
  padding: 30px 0;
  margin-top: 40px;
}

.ingredient-and-flavors-slider-container {
  position: relative;
  margin-top: 50px;
}

.ingredient-and-flavors-slider-container .slider {
  width: 100%;
}

.ingredient-and-flavors-slider-container .slider .slick-track {
  margin-bottom: 10px;
  margin-top: 10px;
}

.ingredient-and-flavors-slider-container .slider-card {
  border-radius: 12px;
  overflow: hidden;
  padding: 15px;
  min-height: 290px;
  margin-inline: 15px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0 5px #bdbdbd;
  transition: 0.2s ease-in;
}
.ingredient-and-flavors-slider-container .slider-card:hover {
  box-shadow: 2px 2px 10px #00BB77;
}

.ingredient-and-flavors-slider-container .slider-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.ingredient-and-flavors-slider-container .card-content {
  padding: 0;
  display: flex;
  text-align: center;
  margin-top: 10px;
  transform: none !important;
}

.ingredient-and-flavors-slider-container .card-content h3 {
  margin: 0;
  font-size: 20px;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.ingredient-and-flavors-slider-container .slick-prev,
.ingredient-and-flavors-slider-container .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 5px #bdbdbd;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s;
}

.ingredient-and-flavors-slider-container .slick-prev:focus,
.ingredient-and-flavors-slider-container .slick-next:focus,
.ingredient-and-flavors-slider-container .slick-prev:hover,
.ingredient-and-flavors-slider-container .slick-next:hover {
  background: #fff;
}

.ingredient-and-flavors-slider-container .slick-prev {
  left: 0px;
}

.ingredient-and-flavors-slider-container .slick-next {
  right: 0px;
}

.ingredient-and-flavors-slider-container .slick-prev:before,
.ingredient-and-flavors-slider-container .slick-next:before {
  color: #333;
  font-size: 20px;
}

.ingredient-and-flavors-slider-container .slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.top-food-tems-want-more {
  margin-top: 70px;
}

.top-food-tems-want-more .container {
  position: relative;
  background-color: #00BB77;
  border-radius: 18px;
  padding-block: 15px;
  padding-left: 70px;
  min-height: 175px;
}

.top-food-tems-want-more .top-food-tems-want-more-content h2 {
  color: #fff !important;
  text-align: center;
  font-size: 31px !important;
}

.top-food-tems-want-more-content {
  margin-top: 10px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-food-tems-want-more-img {
  position: absolute;
  top: -20px;
  right: 0;
  height: 195px;
}

.top-food-tems-want-more .top-food-tems-want-more-btn {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  color: #00BB77;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0 0 5px #bdbdbd;
  cursor: pointer;
}

.top-food-tems-want-more-btn i {
  font-size: 22px;
  transform: rotate(45deg);
}

@media (max-width: 1400px) {
  .top-food-items-main-parent-common .top-food-tems-want-more h2,
  .top-food-items-main-parent-common .top-food-tems-want-more h2 {
    font-size: 36px !important;
  }

  .top-food-tems-want-more .container {
    padding-left: 0;
  }
}

@media (max-width: 1200px) {
  .top-food-tems-want-more .container {
    padding-left: 60px;
  }

  .top-food-tems-want-more-img {
    height: 110%;
  }
}

@media (max-width: 991px) {
  .top-food-tems-want-more .container {
    position: unset;
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .top-food-tems-want-more-img {
    display: none;
  }

  .top-food-items-main-parent-common .top-food-tems-want-more h2,
  .top-food-items-main-parent-common .top-food-tems-want-more h2 {
    font-size: 36px !important;
    text-align: center;
  }

  .top-food-tems-want-more .top-food-tems-want-more-btn {
    margin-top: 0px;
    font-size: 18px;
  }

  .top-food-tems-want-more-btn i {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .top-food-items-main-parent-common .top-food-tems-want-more h2,
  .top-food-items-main-parent-common .top-food-tems-want-more h2 {
    font-size: 26px !important;
  }

  .top-food-tems-want-more .top-food-tems-want-more-btn {
    font-size: 16px;
    padding: 8px 10px;
  }

  .top-food-tems-want-more-btn i {
    font-size: 18px;
  }
}

.top-food-tems-most-popular {
  margin-top: 60px;
  padding-bottom: 40px;
}

.top-food-tems-most-popular-card-container {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 50px !important;
}

.top-food-tems-most-popular .top-food-tems-most-popular-card {
  padding: 15px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 0 5px #bdbdbd;
  border-radius: 10px;
  transition: 0.2s ease-in;
}
.top-food-tems-most-popular .top-food-tems-most-popular-card:hover {
  box-shadow: 2px 2px 10px #00BB77;
}

.top-food-tems-most-popular .top-food-tems-most-popular-card p {
  margin-bottom: 0;
  text-align: left;
}
.top-food-tems-most-popular .top-food-tems-most-popular-card .top-food-tems-most-popular-card-content h3 {
  font-size: 20px;
}

@media (max-width: 1200px) {
  .top-food-tems-most-popular-card-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .top-food-tems-most-popular-card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-food-tems-most-popular-card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 400px) {
  .top-food-tems-most-popular-card-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.top-food-tems-consumer-claims {
  margin-top: 60px;
  padding: 30px 0;
}

.top-food-tems-consumer-claims-charts-parent {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 30px !important;
}

@media (max-width: 992px) {
  .top-food-tems-consumer-claims-charts-parent {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: 15px !important;
  }
}

.top-food-tems-miniature-and-mighty {
  margin-top: 50px;
}


.top-food-tems-optimized-roi {
  padding: 30px 0;
  margin-top: 50px;
}

.top-food-tems-optimized-roi-main {
  background-color: #fff;
  border-radius: 15px;
  margin-top: 50px !important;
  padding: 25px;
  box-shadow: 0 0 5px #bdbdbd;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.top-food-tems-optimized-roi .top-food-tems-optimized-roi-card {
  padding: 20px !important;
  border-radius: 15px;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.top-food-tems-optimized-roi .top-food-tems-optimized-roi-card p {
  color: #fff;
  text-align: left;
}

.top-food-tems-optimized-roi .top-food-tems-optimized-roi-card h3 {
  font-size: 36px;
  font-weight: 700;
}

.top-food-tems-optimized-roi-card:nth-child(1) {
  background-color: #F44771;
  background-image: url(../img/top-food-items-inner/roi-1.png);
}

.top-food-tems-optimized-roi-card:nth-child(2) {
  background-color: #FF9A3E;
  background-image: url(../img/top-food-items-inner/roi-2.png);
}

.top-food-tems-optimized-roi-card:nth-child(3) {
  background-color: #332A7C;
  background-image: url(../img/top-food-items-inner/roi-3.png);
}

@media (max-width: 992px) {
  .top-food-tems-optimized-roi-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .top-food-tems-optimized-roi-main {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.top-food-tems-reports {
  padding: 30px 0;
  margin-top: 50px;
}

.top-food-tems-reports-main {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px !important;
}

.top-food-tems-reports-box {
  min-height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #9de8ba;
  border-radius: 15px;
  position: relative;
}

.top-food-tems-reports-box:nth-child(1) {
  background-image: url(../img/top-food-items-inner/report-1.png);
}

.top-food-tems-reports-box:nth-child(2) {
  background-image: url(../img/top-food-items-inner/report-2.png);
}

.top-food-tems-reports-box:nth-child(3) {
  background-image: url(../img/top-food-items-inner/report-3.png);
}

.top-food-tems-reports-box-inner {
  position: absolute;
  width: 90%;
  min-height: 160px;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px #bdbdbd;
}

.top-food-tems-reports-box-inner p {
  margin-bottom: 0;
  text-align: left;
}

@media (max-width: 1400px) {
  .top-food-tems-reports-box-inner {
    min-height: 190px;
  }
}

@media (max-width: 1200px) {
  .top-food-tems-reports-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
  }

  .top-food-tems-reports-box-inner {
    min-height: unset;
  }
}

@media (max-width: 768px) {
  .top-food-tems-reports-main {
    grid-template-columns: repeat(1, 1fr);
  }
}


.top-food-tems-faqs {
  margin-top: 50px;
  padding: 30px 0;
}

.top-food-tems-faqs-container {
  width: 100%;
  background-color: transparent;
  margin-top: 25px;
}

.top-food-tems-faq-item {
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.top-food-tems-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  gap: 5px;
  cursor: pointer;
  position: relative;
}

.question-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.question-content h5 {
  color: #00C67F;
}

.top-food-tems-faq-arrow {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #00C67F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.top-food-tems-faq-arrow svg {
  width: 20px;
  height: 20px;
  fill: #00C67F;
  stroke: #00C67F;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-food-tems-faq-answer {
  padding: 0 25px 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.top-food-tems-faq-item.faq-open .top-food-tems-faq-arrow {
  transform: rotate(180deg);
}

.top-food-tems-faq-item.faq-open .top-food-tems-faq-answer {
  max-height: 215px;
  padding: 0 25px 20px 25px;
}

@media (max-width: 575px) {
  .top-food-tems-faq-question {
    align-items: start;
    padding: 15px;
  }

  .question-content {
    align-items: start;
  }

  .question-content img {
    width: 35px;
  }

  .question-content h5 {
    font-size: 16px;
  }

  .top-food-tems-faq-arrow {
    width: 30px;
    height: 30px;
  }

  .top-food-tems-faq-arrow svg {
    width: 15px;
    height: 15px;
  }

  .top-food-tems-faq-item.faq-open .top-food-tems-faq-answer {
    max-height: unset;
  }

  .top-food-tems-partners-slider {
    margin-top: 50px;
  }

  .top-food-tems-trend-performance {
    margin-top: 0;
  }

  .top-food-tems-trend-monitor {
    margin-top: 0;
  }

  .top-food-tems-ingredient-and-flavors {
    margin-top: 0;
  }

  .ingredient-and-flavors-slider-container {
    margin-top: 10px;
  }

  .top-food-tems-want-more {
    margin-top: 20px;
  }

  .top-food-tems-most-popular {
    margin-top: 0;
  }

  .top-food-tems-most-popular-card-container {
    margin-top: 20px !important;
  }

  .top-food-tems-consumer-claims {
    margin-top: 10px;
  }

  .top-food-tems-miniature-and-mighty {
    margin-top: 0;
  }

  .top-food-tems-optimized-roi {
    margin-top: 15px;
  }

  .top-food-tems-optimized-roi-main {
    margin-top: 25px !important;
  }

  .top-food-tems-reports {
    margin-top: 0;
  }

  .top-food-tems-reports-main {
    margin-top: 20px !important;
  }

  .top-food-tems-faqs {
    margin-top: 25px;
  }
}

.top-food-tems-testimonial-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  padding-left: 0;
  border-block: 10px solid #00BB77;
  margin-top: 50px;
}

.top-food-tems-testimonial-slider {
  position: relative;
}

.top-food-tems-testimonial-slider .top-food-tems-testimonial-slide {
  display: flex !important;
  align-items: center;
  gap: 50px;
  padding: 50px 0;
  min-height: 500px;
  position: relative;
}

.top-food-tems-testimonial-slide-product-img {
  position: absolute;
  top: 50%;
  left: 0;
  max-width: 650px;
  transform: translateY(-50%);
}

.top-food-tems-testimonial-slide-inner {
  max-width: 70%;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

@media (max-width: 1600px) {
  .top-food-tems-testimonial-slide-product-img {
  max-width: 500px;
}
}
@media (max-width: 992px) {
  .top-food-tems-testimonial-slide-product-img {
    display: none !important;
  }

  .top-food-tems-testimonial-container {
    padding: 0px;
  }
}



.top-food-tems-testimonial-image {
  flex: 1;
  text-align: center;
}

.top-food-tems-testimonial-content {
  flex: 1;
  min-height: 600px;
  min-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* background-color: #fff; */
  padding: 20px;
  border-radius: 15px;
  /* box-shadow: 0 0 10px #bdbdbd; */
  background-image: url(../img/top-food-items-inner/testimonial-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px;
}

.top-food-tems-testimonial-quote {
  margin-bottom: 30px;
  margin-inline: auto;
  line-height: 35px;
  text-align: left;
  position: absolute;
  top: 150px;
  left: 50%;
  width: 65%;
  transform: translateX(-50%);
}

.top-food-tems-testimonial-author {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 370px;
  left: 50%;
  width: 60%;
  transform: translateX(-50%);
}

.top-food-tems-testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.top-food-tems-testimonial-author-info h4 {
  font-size: 22px;
  margin-bottom: 5px;
}

.top-food-tems-testimonial-author-info p {
  font-size: 14px;
  color: #2B47D3;
  text-align: left;
  margin-bottom: 0;
}

.top-food-tems-testimonial-header {
  text-align: left;
  margin-bottom: 40px;
  margin-right: 55px;
  width: 25%;
  margin-left: auto;
}

.top-food-tems-testimonial-header h3 {
  font-size: 45px;
  font-weight: 300;
  line-height: 60px;
  color: rgb(6, 43, 71);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.top-food-tems-testimonial-subtitle {
  font-size: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.top-food-tems-testimonial-subtitle::after {
  content: '→';
  padding-left: 5px;
  font-size: 20px;
}

@media (max-width: 1400px) {
  .top-food-tems-testimonial-slide-inner {
    max-width: 60%;
    /* flex-direction: column; */
    gap: 40px;
    padding-right: 10px;
  }
}
@media (max-width: 1200px) {
  .top-food-tems-testimonial-slide-inner {
    flex-direction: column;
  }
  .top-food-tems-testimonial-content {
    min-width: 650px;
  }
}

@media (max-width: 1400px) {
  .top-food-tems-testimonial-slide-inner .top-food-tems-testimonial-header {
    width: 81%;
  }
  .top-food-tems-testimonial-author {
    width: 70%;
  }
  .top-food-tems-testimonial-avatar {
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 992px) {
  .top-food-tems-testimonial-slide-inner .top-food-tems-testimonial-header {
    width: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .top-food-tems-testimonial-slide-inner {
    max-width: 95%;
    padding-right: 0px;
    flex-direction: column-reverse;
    margin: 0 auto;
  }
  .top-food-tems-testimonial-content {
    padding: 0;
  }
}

@media (max-width: 450px) {
  .top-food-tems-testimonial-subtitle {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
}

.top-food-tems-testimonial-container .slick-dots {
  display: none !important;
}

.top-food-tems-testimonial-container .slick-prev,
.top-food-tems-testimonial-container .slick-next {
  display: none !important;
}

@media (max-width: 768px) {
  .top-food-tems-testimonial-slide {
    flex-direction: column;
    gap: 30px;
  }
  .top-food-tems-testimonial-image img {
    width: 250px;
    height: 250px;
  }
  .top-food-tems-testimonial-slider .top-food-tems-testimonial-slide {
    min-height: unset;
  }
  .top-food-tems-testimonial-content {
    padding: 0;
  }
  .top-food-tems-testimonial-slide-inner {
    gap: 20px;
  }
  .top-food-tems-testimonial-header {
    text-align: center;
  }
  .top-food-tems-testimonial-quote {
    top: 130px;
  }
  /* .top-food-tems-testimonial-author {
    justify-content: start;
  } */
}
@media (max-width: 600px) {
  .top-food-tems-testimonial-content {
        min-width: unset;
        width: 100%;
    }
}
@media (max-width: 500px) {
  .top-food-tems-testimonial-quote {
        top: 120px;
        width: 80%;
    }
  .top-food-tems-testimonial-author {
        width: 80%;
        top: 330px;
    }
}
@media (max-width: 400px) {
  .top-food-tems-testimonial-quote {
    top: 65px;
  }
  .top-food-tems-testimonial-author {
    top: 300px;
  }
}


.top-food-items-logo-slider-container {
            width: 100%;
            height: auto;
            overflow: hidden;
        }

        .top-food-items-logo-slider {
            width: 2000px; /* 10 images × 200px each */
            height: 100%;
            margin-top: 50px;
            display: flex;
            gap: 40px;
            animation: food-items-logo-slide 40s linear infinite;
        }

        .top-food-items-logo-slide {
            width: auto;
            width: 120px;
            height: 70px;
            object-fit: contain;
        }

        @keyframes food-items-logo-slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-1000px); /* Move by 5 slides (5 × 200px) */
            }
        }

        .top-food-items-logo-slider-container:hover .top-food-items-logo-slider {
            animation-play-state: paused;
        }

        .new-foot-first-logo img {
    width: 25px;
}
/* ----- Top Food Items Inner Page End ----- */



/* New Header Section Design CSS Start */


/* .new-drop-grid-structure-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    max-width: calc(100% - 140px);
    margin: 0 auto;
} */

.new-box-section-header{
      grid-template-columns: .9fr .9fr 1.8fr;

}

 .box-main {
      display: flex;
      flex-wrap: wrap;
      gap: 21px;
      max-width: 100%;
      justify-content: center;
      cursor: pointer;
    }

    .box-main {
    margin-top: 40px;
}

    .box-card {
      padding: 20px;
      border-radius: 16px;
      color: white;
      position: relative;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }


    /* .box-card:not(:nth-child(6)):hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
} */


    /* .box-card:hover {
      transform: scale(1.02);
    } */

    .box-card h3 {
      margin: 5px 0 8px;
      font-size: 1.2rem;
      color: white;
      text-align: left !important;
    width: 100%;
    }

    .box-card p {
      font-size: 0.95rem;
      margin: 0 0 20px;
      color: white;
    }

    .box-icon {
      background-color: white;
      width: 28px;
      height: 28px;
      border-radius: 6px;
      align-self: flex-start; 
    }

    /* Background colors */
    .bg-green-dark { background-color: #003C2E; }
    .bg-blue-dark { background-color: #003950; }
    .bg-teal { background-color: #00B2B2; }
    .bg-yellow { background-color: #F3C969; color: #000; }
    .bg-orange { background-color: #F6A563; color: #000; }
    .bg-purple { background-color: #654D9B; }

    /* Custom widths for first and second card */
    .first-card {
      width: 315px;
    }

    .second-card {
      width: 411px;
      /* width: 257px !important; */
    }

    @media (max-width: 768px) {
      .first-card,
      .second-card {
        width: 100%;
      }

      .box-card:nth-child(5) {
    height: 250px !important;
}
    }

    @media (min-width: 1889px) and (max-width: 1373px) {
  .first-card {
    width: 350px;
  }
  .second-card {
    width: 250px;
  }

}

    @media  (max-width: 1700px) {
  .first-card {
    width: 305px;
  }
  .second-card {
    width: 250px;
  }

}
  
  @media screen and (max-width: 1400px) {

    .new-drop-grid-structure-3.new-box-section-header {
    display: block;
}
    
  }


  /* Background images using nth-child */
  .box-card:nth-child(1) {
    background-image: url('../img/header/solutions/Food-Data-Intelligences.jpg');
    background-size: cover;
  }

  .box-card:nth-child(2) {
    background-image: url('../img/header/solutions/Grocery-Data-Intelligences.jpg');
    background-size: cover;
  }

  .box-card:nth-child(3) {
    background-image: url('../img/header/solutions/Restaurant-Data-Intelligences.jpg');
    background-size: cover;
  }

  .box-card:nth-child(4) {
    background-image: url('../img/header/Liquor-Data-Intelligences.jpg');
    background-size: cover;
  }

  .box-card:nth-child(5) {
    background-image: url('../img/header/Q-Commerce-Data-Intelligences.jpg');
    background-size: cover;
  }

  .box-card:nth-child(6) {
    background-image: url('../img/header/Hyperlocal-Data-Intelligences.png');
    background-size: cover;
  }

  .box-main a{
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .box-card:nth-child(5) {
  height: 225px;
}

.box-card:nth-child(6) {
  height: 225px;
}


.box-card a {
  display: block;
  width: 100%;
}

.box-card p {
  font-size: 0.95rem;
  margin: 0 0 20px;
  color: white;
  white-space: normal;
  word-wrap: break-word;
  text-align: start;
}

.box-card img {
    max-width: 100%;
}


.box-main {
    margin-top: 11px;
}


/* Better solution - design kharab nahi hoga */
.box-card p {
  font-size: 0.95rem;
  margin: 0 0 20px;
  color: white;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.4; /* Natural line height */
  word-spacing: -1px; /* Sirf words ke beech space kam */
}

/* Alternative - agar aur tight chahiye */
.box-card p.compact {
  font-size: 0.95rem;
  margin: 0 0 20px;
  color: white;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.35;
  word-spacing: -1.5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .box-card p {
    word-spacing: -0.5px; /* Mobile mein kam tight */
  }
}

.box-icon {
  transition: all 0.3s ease;
  cursor: pointer;
}

.box-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
    



/* New Header Section Design CSS END */


.review-box .swiper-wrapper .swiper-slide {
    margin-right: 30px;
}

.review-box .slick-list.draggable {
    height: 130px;
}



.new-testimonial .swiper-wrapper ~ .swiper-button-next {
    display: none;
}

.new-testimonial .swiper-wrapper ~ .swiper-button-next ~ .swiper-button-prev {
    display: none;
}



.new-testimonial .slick-prev:before, .new-testimonial .slick-next:before {
    opacity: 0;
    display: none;
}

/* Header Blur CSS */

header.dashbord-header.scrolled {
        display: inline-flex;
    background: rgba(71, 168, 162, 0.2); /* translucent color */
    backdrop-filter: blur(8px); /* glassy blur */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    padding: 12px 20px;
    border-radius: 7px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    /* text-align: center; */
    letter-spacing: 1px;
    font-family: var(--font-family) !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

