/* Imports */
@import url("fonts.css");
/* Variables */
:root {
  /* Fonts */
  --primary-font: "JUSTSans", sans-serif;
  --secondary-font: "Ethdown", sans-serif;
  --tertiary-font: "Gilroy", sans-serif;
  /* Colors */
  --primary: #dba55d;
  --primary-alt: #ffbe6e;
  --secondary: #ffebca;
  --dark: #000;
  --dark-alt: #171717;
  --kids-color: #003c86;
  --woman-color: #963ead;
  --men-color: #004a26;
  --elder-color: #696969;
  --color-1: #693413;
  --color-2: #0c2f00;
  --color-3: #00296b;
  --light: #ffffff;
  --light-alt: #f4f3ef;
  --light-alt2: #f9f9f9;
  --light-alt3: #fff6ec;
  --gradient: linear-gradient(
    103deg,
    #00296b -7.22%,
    #004f9c 61.67%,
    #004f9b 76.63%
  );
  --gradient-alt: linear-gradient(
    90deg,
    #a86314 21.71%,
    #d3912f 90.5%,
    #ffb 113.23%,
    #ffbe6e 203.42%
  );
  --gradient-alt2: linear-gradient(108deg, #5c340f 2%, #8b5f3a 98.95%);
  --gradient-alt3: -webkit-linear-gradient(
    91deg,
    #d3912f 0%,
    #ffb 31.89%,
    #ffbe6e 90.74%
  );
  --animate-duration: 1s;
  --animate-delay: 0.9s;
  /* Shadow */
}

/* Default */
* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-color: var(--primary) white;
  scrollbar-width: thin;
}

*::-moz-selection {
  background: var(--dark);
  -webkit-text-fill-color: var(--light);
  color: var(--light);
}

*::selection {
  background: var(--dark);
  -webkit-text-fill-color: var(--light);
  color: var(--light);
}

::-webkit-scrollbar {
  width: 5px;
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

html {
  scroll-behavior: smooth;
}

#loder h2 {
  font-size: 2vw;
  text-transform: uppercase;
  color: var(--light);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1024px) {
  #loder h2 {
    font-size: 16px;
    overflow: hidden;
    width: 80%;
    margin: auto;
    text-align: center;
    line-height: 1.4;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  background: var(--light);
  overflow-x: hidden;
  position: relative;
  /* img,
    video {
        width: 100%;
        height: auto;
    } */
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body a,
body p,
body b,
body i,
body u,
body ul,
body ol,
body li,
body span {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  line-height: 100%;
}
body a:hover {
  text-decoration: none;
}
body p {
  font-size: 1.12vw;
  font-weight: 300;
  color: var(--dark-alt);
  line-height: 1.65;
}
@media (max-width: 992px) {
  body p {
    font-size: 16px;
  }
}
body p a {
  color: var(--dark);
  transition: 0.5s ease all;
}
body p a:hover {
  color: var(--primary);
}
body .center-align {
  text-align: center;
}
body .background-lightgrey {
  background-color: var(--light-alt);
}
body .text-light {
  color: var(--secondary);
}
body .text-white {
  color: var(--light);
}
body .primary-btn {
  background: var(--gradient);
  border: 0;
  display: flex;
  padding: 17px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1.4vw;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  width: 190px;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: all 0.5s ease;
}
@media (max-width: 767px) {
  body .primary-btn {
    font-size: 18px;
  }
}
@media (min-width: 1460px) {
  body .primary-btn {
    font-size: 22px;
  }
}
body .primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-alt2);
  opacity: 0;
  transition: 0.5s all ease;
}
body .primary-btn .btn_name {
  background: -webkit-linear-gradient(91deg, #d3912f 0%, #ffb 31.89%, #ffbe6e 90.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
  transition: all 0.5s ease;
}
body .primary-btn .icon {
  background-image: url("../images/icons/btn-background.png");
  background-repeat: no-repeat no-repeat;
  background-position: 46px 0;
  background-size: contain;
  width: 154px;
  height: 75px;
  position: absolute;
  right: 0;
  transition: all 0.5s ease;
  display: none;
}
body .primary-btn:hover::after {
  opacity: 1;
}
body .secondary-btn {
  border-radius: 6px;
  background: #67121e;
  border: 0;
  display: flex;
  padding: 12px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
  color: var(--light);
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 1.2vw;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
body section {
  padding: 5vw 0 6vw;
}
body .section_title {
  margin-bottom: 4vw;
}
@media (max-width: 992px) {
  body .section_title {
    margin-bottom: 12vw;
  }
}
body .section_title .title_logo {
  margin-bottom: 10px;
}
body .section_title .title_logo img {
  width: 190px;
}
@media (max-width: 992px) {
  body .section_title .title_logo img {
    width: 120px;
  }
}
body .section_title h2 {
  color: var(--dark);
  font-family: var(--secondary-font);
  font-size: 2.83vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -3.12px;
}
@media (max-width: 767px) {
  body .section_title h2 {
    font-size: 26px;
    letter-spacing: -1.12px;
  }
}
body .section_title p {
  color: var(--dark-alt);
  font-size: 18px;
  font-size: 1.2vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1.55;
}
@media (max-width: 767px) {
  body .section_title p {
    font-size: 14px;
    line-height: 1.55;
  }
}
body .semi_title {
  font-family: var(--secondary-font);
  font-size: 2.3vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 1vw;
}
body .accordion {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.1vw;
}
body .accordion .accordion-item {
  border-radius: 1vw;
  border: 0px;
  background: var(--light);
  overflow: hidden;
}
body .accordion .accordion-item .accordion-header {
  margin-bottom: 0;
}
body .accordion .accordion-item .accordion-header .accordion-button {
  border-radius: 0 !important;
  color: var(--dark);
  font-size: 1.35vw;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  padding: 1.4vw;
}
body .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M15 25.7809C14.1908 25.7809 13.5352 25.1252 13.5352 24.316V5.68555C13.5352 4.87637 14.1908 4.2207 15 4.2207C15.8092 4.2207 16.4648 4.87637 16.4648 5.68555V24.316C16.4648 25.1252 15.8092 25.7809 15 25.7809Z' fill='%2300296B'/%3E%3Cpath d='M24.3141 16.4648H5.68359C4.87441 16.4648 4.21875 15.8092 4.21875 15C4.21875 14.1908 4.87441 13.5352 5.68359 13.5352H24.3141C25.1232 13.5352 25.7789 14.1908 25.7789 15C25.7789 15.8092 25.1232 16.4648 24.3141 16.4648Z' fill='%2300296B'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
}
body .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--light);
  color: var(--color-3);
  font-weight: 500;
  box-shadow: none;
}
body .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M15 25.7809C14.1908 25.7809 13.5352 25.1252 13.5352 24.316V5.68555C13.5352 4.87637 14.1908 4.2207 15 4.2207C15.8092 4.2207 16.4648 4.87637 16.4648 5.68555V24.316C16.4648 25.1252 15.8092 25.7809 15 25.7809Z' fill='%2300296B'/%3E%3Cpath d='M24.3141 16.4648H5.68359C4.87441 16.4648 4.21875 15.8092 4.21875 15C4.21875 14.1908 4.87441 13.5352 5.68359 13.5352H24.3141C25.1232 13.5352 25.7789 14.1908 25.7789 15C25.7789 15.8092 25.1232 16.4648 24.3141 16.4648Z' fill='%2300296B'/%3E%3C/svg%3E");
  transform: rotate(45deg);
}
body .accordion .accordion-item .accordion-header .accordion-button:focus {
  outline: 0 !important;
  box-shadow: none;
}
body .accordion .accordion-item .accordion-collapse .accordion-body {
  background: var(--light);
  background-color: var(--light);
  color: var(--dark-alt);
  font-size: 1.1vw;
  font-style: normal;
  line-height: 1.55;
  padding: 1.4vw;
}

.social_icons {
  display: flex;
  gap: 1.1vw;
  margin-top: 1vw;
}
.social_icons a {
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  color: var(--primary);
  align-items: center;
  transition: 0.5s all ease;
  overflow: hidden;
  position: relative;
  font-size: 1.5vw;
}
.social_icons a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  opacity: 0;
  border-radius: 50%;
  background: linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%);
  outline: 2px solid #00296b;
  transition: 0.5s all ease;
}
.social_icons a i,
.social_icons a svg {
  position: relative;
  z-index: 3;
}
.social_icons a img {
  position: relative;
  z-index: 3;
  transition: 0.5s all ease;
}
.social_icons a img:nth-child(1) {
  display: block;
}
.social_icons a img:nth-child(2) {
  display: none;
}
.social_icons a:hover {
  color: var(--light);
}
.social_icons a:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.social_icons a:hover img:nth-child(1) {
  display: none;
}
.social_icons a:hover img:nth-child(2) {
  display: block;
}
@media (max-width: 767px) {
  .social_icons {
    gap: 10px;
    margin: 20px 0px 35px;
  }
  .social_icons a {
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }
}

.read-more,
.button-link {
  transition: all 0.3s ease-out;
}
.read-more:hover svg,
.button-link:hover svg {
  transform: translateX(5px);
}
.read-more svg,
.button-link svg {
  transition: all 0.3s ease-out;
}

@media (min-width: 1600px) {
  .container {
    max-width: 90% !important;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: linear-gradient(108deg, #5c340f 2%, #8b5f3a 98.95%);
  transform: translateY(0%);
  transition: 0.5s all ease-in-out;
}
header.hidden {
  transform: translateY(-100%);
}
header .top_header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  height: 80px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  header .top_header {
    height: 70px;
  }
}
.other_page header .top_header {
  justify-content: space-between;
}
header .top_header .logo {
  position: relative;
  left: 0%;
  top: 0%;
  transform: none;
}
@media (max-width: 992px) {
  header .top_header .logo {
    left: 0;
    top: 0;
    transform: none;
    padding: 20px 0;
  }
}
header .top_header .logo img {
  filter: drop-shadow(4px 2px 7px rgba(0, 18, 39, 0.3039215686));
  height: 62px;
}
@media (max-width: 992px) {
  header .top_header .logo img {
    width: 100%;
    height: auto;
    filter: none !important;
  }
}
@media (max-width: 720px) {
  header .top_header .logo img {
    width: 70%;
    filter: none !important;
  }
}
body.other_page header .top_header .logo {
  position: relative;
  left: 0%;
  top: 0%;
  transform: none;
}
body.other_page header .top_header .logo img {
  filter: drop-shadow(0px 4px 7px rgba(0, 18, 39, 0.6039215686));
  height: 62px;
}
header .top_header .menu_icon span {
  width: 20px;
  height: 2px;
  gap: 5px;
  background: #deac51;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 0;
  transition: 0.5s all ease;
}
header .top_header .menu_icon span:nth-child(1) {
  width: 30px;
}
header .top_header .menu_icon span:nth-child(2) {
  width: 20px;
}
header .top_header .menu_icon span:nth-child(3) {
  width: 15px;
}
header.sticky {
  position: fixed;
  transform: translateY(-100%);
  background: linear-gradient(108deg, #5c340f 2%, #8b5f3a 98.95%);
  box-shadow: 0 5px 15px 1px rgba(0, 19, 43, 0.5098039216);
  z-index: 999;
}
@media (max-width: 1024px) {
  header.sticky {
    transform: translateY(0%);
  }
}
header.sticky .top_header {
  height: 80px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  header.sticky .top_header {
    height: 100px;
  }
}
@media (max-width: 720px) {
  header.sticky .top_header {
    height: 70px;
  }
}
@media (max-width: 1024px) {
  header.sticky .top_header .menu-icon img {
    padding: 4px 0;
  }
}
header.sticky .top_header .logo {
  position: relative;
  left: 0%;
  top: 0%;
  transform: none;
}
header.sticky.top-hd {
  transform: translateY(0);
}
@media (max-width: 1024px) {
  header.sticky.top-hd {
    transform: translateY(-100%);
  }
}

.main-wrapper {
  background-color: var(--light);
  position: relative;
}
.main-wrapper .hero {
  background: var(--light);
  height: calc(100vh - 75px);
  padding: 8px 7px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .main-wrapper .hero {
    height: 60vh;
    margin-top: 70px;
  }
}
@media (max-width: 720px) {
  .main-wrapper .hero {
    height: calc(100vh - 70px);
    padding: 15px 0;
  }
}
@media (max-width: 399px) {
  .main-wrapper .hero {
    height: calc(100vh - 30px);
  }
}
.main-wrapper .hero .video {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  height: calc(96vh - 70px);
}
@media (min-width: 1600px) {
  .main-wrapper .hero .video {
    height: calc(96vh - 64px);
  }
}
@media (max-width: 992px) {
  .main-wrapper .hero .video {
    height: 56vh;
  }
}
@media (max-width: 720px) {
  .main-wrapper .hero .video {
    height: 86.5vh;
  }
}
@media (max-width: 370px) {
  .main-wrapper .hero .video {
    height: 83.5vh;
  }
}
.main-wrapper .hero .video video,
.main-wrapper .hero .video img {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
}
.main-wrapper .hero .video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(4, 5, 6, 0.5215686275) 12%, rgba(12, 3, 3, 0), rgba(0, 0, 0, 0.6392156863) 88%);
}
.main-wrapper .hero .video .text {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 100%;
  height: 24%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-wrapper .hero .video .text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.94;
  background: linear-gradient(0deg, rgba(118, 100, 76, 0.968627451), rgba(193, 153, 101, 0.3490196078), transparent);
}
.main-wrapper .hero .video .text h4 {
  color: var(--light);
  font-size: 1.8vw;
  font-weight: 400;
  white-space: nowrap;
  position: relative;
  z-index: 7;
  top: 16%;
}
@media (max-width: 992px) {
  .main-wrapper .hero .video .text h4 {
    font-size: 25px;
    text-align: center;
  }
}
.main-wrapper .hero .heading {
  color: #fff;
  font-size: 3.8vw;
  font-weight: 500;
  font-family: var(--secondary-font);
  position: absolute;
  bottom: 24%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 90%;
  text-align: center;
}
@media (max-width: 992px) {
  .main-wrapper .hero .heading {
    color: #fff;
    font-size: 45px;
    z-index: 5;
    width: 88%;
    text-align: center;
    line-height: 1.4;
  }
}
@media (max-width: 720px) {
  .main-wrapper .hero .heading {
    color: #fff;
    font-size: 32 px;
    z-index: 5;
    width: 88%;
    bottom: 24%;
    text-align: center;
    line-height: 1.4;
    filter: drop-shadow(5px 5px 8px #000);
    font-weight: 500;
  }
}
.main-wrapper .clientele_wrapper .list {
  overflow: hidden;
}
.main-wrapper .clientele_wrapper .list .wrapper {
  display: flex;
  gap: 9vw;
  animation: marquee 20s linear infinite;
}
@media (max-width: 768px) {
  .main-wrapper .clientele_wrapper .list .wrapper {
    animation: marquee-mobile 20s linear infinite;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes marquee-mobile {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-133%);
  }
}
.main-wrapper .clientele_wrapper .list .wrapper img {
  filter: grayscale(100%);
  transition: all 0.5s;
}
.main-wrapper .clientele_wrapper .list .wrapper img:hover {
  filter: grayscale(0%);
}
.main-wrapper footer {
  background: var(--gradient-alt2);
  padding: 2vw 0 30px;
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .main-wrapper footer {
    padding: 50px 0;
    position: relative;
    min-height: 100%;
  }
}
.main-wrapper footer:before {
  content: "";
  background-image: url("../images/footer/bg.png");
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 767px) {
  .main-wrapper footer:after {
    background-size: 225px;
    background-position: 119% 0px;
    display: none;
  }
}
.main-wrapper footer .container {
  z-index: 11;
}
.main-wrapper footer .logo {
  display: flex;
  justify-content: center;
}
.main-wrapper footer .logo img {
  width: 280px;
}
@media (max-width: 600px) {
  .main-wrapper footer .logo img {
    width: 230px;
    display: block;
    margin: auto;
    margin-bottom: 28px;
  }
}
.main-wrapper footer .footer-social .footer_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-wrapper footer .footer_content {
  margin: 2vw 0px;
}
.main-wrapper footer .footer_content h4 {
  color: var(--primary);
  font-family: var(--secondary-font);
  font-size: 3.8vw;
  font-style: normal;
  font-weight: 600;
  line-height: 1.56;
  text-align: center;
}
@media (max-width: 767px) {
  .main-wrapper footer .footer_content h4 {
    font-size: 24px;
    text-align: center;
  }
}
.main-wrapper footer .footer_content h5 {
  color: rgba(241, 241, 241, 0.7294117647);
  font-family: var(--secondary-font);
  font-size: 1.6vw;
  font-weight: 400;
}
@media (max-width: 767px) {
  .main-wrapper footer .footer_content h5 {
    font-size: 22px;
    text-align: center;
  }
}
.main-wrapper footer .footer_content .social_icons {
  display: flex;
  gap: 1.1vw;
  margin-top: 2vw;
}
@media (max-width: 767px) {
  .main-wrapper footer .footer_content .social_icons {
    display: flex;
    justify-content: center;
  }
}
.main-wrapper footer .footer_content .social_icons a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 0%;
  display: inline-flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  color: var(--light);
  font-family: var(--secondary-font);
  align-items: center;
  transition: 0.5s all ease;
  overflow: hidden;
  position: relative;
  font-size: 1.8vw;
  border-right: 1px solid var(--primary);
  padding-right: 22px;
  line-height: normal;
}
.main-wrapper footer .footer_content .social_icons a:hover {
  color: var(--primary) !important;
}
.main-wrapper footer .footer_content .social_icons a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  opacity: 0;
  border-radius: 50%;
  z-index: 1;
  background: transparent;
  outline: none;
  transition: 0.5s all ease;
}
.main-wrapper footer .footer_content .social_icons a i {
  position: relative;
  z-index: 3;
}
.main-wrapper footer .footer_content .social_icons a img {
  position: relative;
  z-index: 3;
  transition: 0.5s all ease;
}
.main-wrapper footer .footer_content .social_icons a img:nth-child(1) {
  display: block;
}
.main-wrapper footer .footer_content .social_icons a img:nth-child(2) {
  display: none;
}
.main-wrapper footer .footer_content .social_icons a:hover {
  color: var(--light);
}
.main-wrapper footer .footer_content .social_icons a:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.main-wrapper footer .footer_content .social_icons a:hover img:nth-child(1) {
  display: none;
}
.main-wrapper footer .footer_content .social_icons a:hover img:nth-child(2) {
  display: block;
}
@media (max-width: 767px) {
  .main-wrapper footer .footer_content .social_icons {
    gap: 10px;
    margin: 20px 0px;
  }
  .main-wrapper footer .footer_content .social_icons a {
    padding-right: 10px;
  }
}
@media (max-width: 425px) {
  .main-wrapper footer .footer_content .social_icons {
    gap: 8px;
  }
  .main-wrapper footer .footer_content .social_icons a {
    font-size: 10px;
  }
}
@media (max-width: 320px) {
  .main-wrapper footer .footer_content .social_icons {
    gap: 6px;
  }
  .main-wrapper footer .footer_content .social_icons a {
    padding-right: 5px;
  }
}
.main-wrapper footer .copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-wrapper footer .copyright p {
  color: var(--light);
  font-weight: 300;
}
.main-wrapper footer .copyright p a {
  color: var(--light);
  font-weight: 300;
}
.main-wrapper footer .copyright a {
  color: var(--light);
  transition: all 0.4s;
  font-weight: 300;
  white-space: nowrap;
}
.main-wrapper footer .copyright a:hover {
  color: var(--color-3);
}
.main-wrapper footer .copyright .span_right {
  display: inline-flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .main-wrapper footer .copyright {
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .main-wrapper footer .copyright p {
    text-align: center;
  }
  .main-wrapper footer .copyright .span_right {
    margin-top: 20px;
  }
}
.main-wrapper footer .hr {
  background-color: rgba(219, 165, 93, 0.2);
  height: 1px;
  width: 100%;
  margin-bottom: 30px;
}
.main-wrapper .problems_wrapper {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .main-wrapper .problems_wrapper .button-wrap {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.main-wrapper .categories_wrapper {
  padding: 5vw 0 2vw;
  position: relative;
  padding-bottom: 0;
}
.main-wrapper .categories_wrapper .section_title {
  margin-bottom: 35px;
}
@media (min-width: 1500px) {
  .main-wrapper .categories_wrapper {
    padding-bottom: 5vw;
  }
}
@media (max-width: 720px) {
  .main-wrapper .categories_wrapper {
    padding: 60px 0;
  }
}
.main-wrapper .categories_wrapper .big_text {
  font-family: var(--secondary-font);
  font-size: 7.5vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  z-index: -2;
  top: 44%;
  color: rgba(123, 6, 7, 0.05);
  transform: translateX(-300px);
  opacity: 0;
  width: 110%;
}
.main-wrapper .categories_wrapper .cards {
  width: 100%;
  position: relative;
  padding: 0px 0px 15vw 0px;
}
@media (min-width: 1460px) {
  .main-wrapper .categories_wrapper .cards {
    padding: 0px 0px 10vw 0px;
  }
}
@media (max-width: 992px) {
  .main-wrapper .categories_wrapper .cards {
    padding: 0px 0px 0 0px;
  }
}
.main-wrapper .categories_wrapper .cards .box_continer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 50px;
}
@media (max-width: 500px) {
  .main-wrapper .categories_wrapper .cards .box_continer {
    gap: 20px;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
}
@media screen and (min-device-width: 500px) and (max-device-width: 1024px) {
  .main-wrapper .categories_wrapper .cards .box_continer {
    gap: 20px;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    padding: 0px 20px;
    padding-bottom: 70px;
  }
}
.main-wrapper .categories_wrapper .cards .box_continer img {
  width: 500px;
  height: 400px;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .main-wrapper .categories_wrapper .cards .box_continer img {
    height: auto;
    width: 100%;
  }
}
.main-wrapper .categories_wrapper .cards .box_continer .card-1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  transform: translateY(-100px);
}
@media (max-width: 1024px) {
  .main-wrapper .categories_wrapper .cards .box_continer .card-1 {
    gap: 15px;
    transform: translateY(0px);
  }
}
.main-wrapper .categories_wrapper .cards .box_continer .card-1 .im-1,
.main-wrapper .categories_wrapper .cards .box_continer .card-1 .im-2 {
  transform: translateX(-300px);
  rotate: -30deg;
  opacity: 0;
}
@media (max-width: 1024px) {
  .main-wrapper .categories_wrapper .cards .box_continer .card-1 .im-1,
  .main-wrapper .categories_wrapper .cards .box_continer .card-1 .im-2 {
    transform: translateX(0px);
    rotate: 0deg;
    opacity: 1;
  }
}
.main-wrapper .categories_wrapper .cards .box_continer .card-2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 1024px) {
  .main-wrapper .categories_wrapper .cards .box_continer .card-2 {
    gap: 20px;
  }
}
.main-wrapper .categories_wrapper .cards .box_continer .card-2 .im-3,
.main-wrapper .categories_wrapper .cards .box_continer .card-2 .im-4 {
  transform: translateX(300px);
  rotate: 30deg;
  opacity: 0;
}
@media (max-width: 1024px) {
  .main-wrapper .categories_wrapper .cards .box_continer .card-2 .im-3,
  .main-wrapper .categories_wrapper .cards .box_continer .card-2 .im-4 {
    transform: translateX(0px);
    rotate: 0deg;
    opacity: 1;
  }
}
.main-wrapper .blogs {
  width: 100%;
  height: auto;
  background-color: var(--light);
  position: relative;
  padding: 70px 0;
}
@media (max-width: 992px) {
  .main-wrapper .blogs {
    height: auto;
    overflow-x: hidden;
    padding: 60px 0;
  }
}
@media (max-width: 992px) {
  .main-wrapper .blogs .cards-scroll {
    overflow-x: auto;
  }
  .main-wrapper .blogs .cards-scroll::-webkit-scrollbar {
    display: none;
  }
}
.main-wrapper .blogs .cards-scroll .cards {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  transition: 1.5s all ease;
}
@media (max-width: 992px) {
  .main-wrapper .blogs .cards-scroll .cards {
    width: 1000px;
    justify-content: start;
  }
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly {
  width: 14vw;
  height: 400px;
  transition: 1.5s all ease;
  cursor: pointer;
}
@media (max-width: 992px) {
  .main-wrapper .blogs .cards-scroll .cards .cards-ly {
    width: 185px;
    height: 350px;
  }
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly.active {
  width: 340px;
  transition: 1.5s all ease;
  cursor: pointer;
}
@media (max-width: 992px) {
  .main-wrapper .blogs .cards-scroll .cards .cards-ly.active {
    width: 320px;
  }
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly.active .card-active {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: 1.5s all ease;
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly.active .card-no-active {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: 1.5s all ease;
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active {
  position: relative;
  display: none;
  visibility: hidden;
  opacity: 0;
  border-radius: 30px;
  background: linear-gradient(155deg, #034598 1.08%, #00295b 82.53%);
  padding: 18px;
  height: 400px;
  overflow: hidden;
  transition: 1.5s all ease;
}
@media (max-width: 992px) {
  .main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active {
    height: 350px !important;
  }
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("../images/blogs/pattern-infinity.png");
  background-repeat: no-repeat no-repeat;
  background-position: 0 265px;
  background-size: 720px;
  transform: rotate(-40deg);
  opacity: 0.2;
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active h5 {
  color: var(--light);
  color: #fff;
  font-size: 1.41vw;
  font-weight: 300;
  margin-top: 20px;
  line-height: 1.39;
  position: relative;
  z-index: 5;
  opacity: 0;
  animation: fadeIn 0.8s forwards;
  animation-delay: 0.9s;
}
@media (max-width: 992px) {
  .main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active h5 {
    font-size: 18px !important;
    line-height: 1.3;
    letter-spacing: 1px;
  }
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active h5 .letter {
  display: inline-block;
  line-height: 1em;
  opacity: 0;
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active .button-link {
  z-index: 6;
  position: absolute;
  right: 20px;
  bottom: 18px;
  display: block;
  visibility: visible;
  opacity: 0;
  animation: fadeIn 0.8s forwards;
  animation-delay: 1s;
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active .button-link a {
  color: var(--light);
  text-align: center;
  font-size: 1.16vw;
  font-weight: 300;
  line-height: 20px;
  padding-bottom: 3px;
  z-index: 4;
  transition: 0.4s all ease;
}
@media (max-width: 992px) {
  .main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active .button-link a {
    font-size: 17px;
  }
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active .button-link a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 20px;
  background: transparent;
  border-bottom: 1px solid var(--light);
  transition: 0.5s all ease;
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active .button-link a:hover {
  color: var(--primary);
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active .button-link a:hover::after {
  content: "";
  border-bottom: 1px solid var(--primary);
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active .inner-card .image {
  border-radius: 15px;
  height: 240px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  transition: 1.5s all ease;
}
@media (max-width: 992px) {
  .main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active .inner-card .image {
    height: 200px !important;
  }
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-active .inner-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-no-active {
  height: 400px;
  background: #ffdc9e;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 15px;
  transition: 1.5s all ease;
}
@media (max-width: 992px) {
  .main-wrapper .blogs .cards-scroll .cards .cards-ly .card-no-active {
    height: 350px !important;
  }
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-no-active .icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background: #9b9b9b;
  position: absolute;
  top: 10px;
  right: 10px;
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-no-active h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(0%);
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -2px;
  font-size: 6.2vw;
  text-align: center;
  color: var(--color-3);
  display: inline;
  line-height: 1.45;
  color: var(--color-3);
  -webkit-transition: background 1s;
  font-family: var(--secondary-font);
  transition: 1.5s all ease;
}
@media (min-width: 1600px) {
  .main-wrapper .blogs .cards-scroll .cards .cards-ly .card-no-active h4 {
    font-size: 5.2vw;
  }
}
@media (max-width: 992px) {
  .main-wrapper .blogs .cards-scroll .cards .cards-ly .card-no-active h4 {
    font-size: 100px;
  }
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly .card-no-active span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  transition: 1.5s all ease;
  color: #242424;
  font-size: 1.07vw;
  font-weight: 400;
  width: 100%;
}
@media (max-width: 992px) {
  .main-wrapper .blogs .cards-scroll .cards .cards-ly .card-no-active span {
    font-size: 15px;
  }
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly:nth-child(1) .card-no-active h4 {
  letter-spacing: -9px;
}
@media (max-width: 1368px) {
  .main-wrapper .blogs .cards-scroll .cards .cards-ly:nth-child(1) .card-no-active h4 {
    letter-spacing: -9px;
    padding-right: 9px;
  }
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly:nth-child(2) .card-no-active h4 {
  letter-spacing: 2px;
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly:nth-child(3) .card-no-active h4 {
  letter-spacing: 8px;
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly:nth-child(4) .card-no-active h4 {
  letter-spacing: -7px;
}
.main-wrapper .blogs .cards-scroll .cards .cards-ly:nth-child(5) .card-no-active h4 {
  letter-spacing: -9px;
}
.main-wrapper .gallery {
  width: 100%;
  height: auto;
  background-color: var(--light-alt);
  position: relative;
  padding: 60px 0;
  overflow-x: hidden;
}
.main-wrapper .gallery .gallery-images .slick-track {
  display: flex;
  align-items: start;
}
.main-wrapper .gallery .gallery-images .gallery-image {
  position: relative;
}
.main-wrapper .gallery .gallery-images .gallery-image a {
  display: block;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  transition: 0.5s all ease;
  border: 1px solid rgba(204, 204, 204, 0.3019607843);
}
.main-wrapper .gallery .gallery-images .gallery-image a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 40px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg width='65' height='65' viewBox='0 0 65 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.96292 32.4987C6.96598 32.5038 6.96907 32.5093 6.97219 32.5147C7.21534 32.9315 7.58779 33.5357 8.09438 34.2653C9.10879 35.7262 10.6539 37.6778 12.7672 39.6287C16.9866 43.5235 23.444 47.3945 32.4997 47.3945C41.5553 47.3945 48.0128 43.5235 52.2323 39.6287C54.3454 37.6778 55.8905 35.7262 56.905 34.2653C57.4115 33.5357 57.7839 32.9315 58.0271 32.5147C58.0303 32.5093 58.0333 32.5038 58.0366 32.4987C58.0333 32.4933 58.0303 32.4881 58.0271 32.4827C57.7839 32.0659 57.4115 31.4617 56.905 30.7321C55.8905 29.2712 54.3454 27.3196 52.2323 25.3687C48.0128 21.4738 41.5553 17.6029 32.4997 17.6029C23.444 17.6029 16.9866 21.4738 12.7672 25.3687C10.6539 27.3196 9.10879 29.2712 8.09438 30.7321C7.58779 31.4617 7.21534 32.0659 6.97219 32.4827C6.96907 32.4881 6.96598 32.4936 6.96292 32.4987ZM59.583 32.4987C60.7942 31.8931 60.7939 31.8926 60.7936 31.8918L60.7904 31.8858L60.7836 31.8725L60.7611 31.8284C60.7419 31.7916 60.7148 31.7398 60.6794 31.6737C60.6081 31.5421 60.5041 31.3542 60.3665 31.1183C60.0914 30.6462 59.6808 29.981 59.1296 29.1872C58.0282 27.6012 56.3571 25.4905 54.0691 23.3787C49.4866 19.1486 42.4024 14.8945 32.4997 14.8945C22.597 14.8945 15.5127 19.1486 10.9301 23.3787C8.64233 25.4905 6.97129 27.6012 5.86984 29.1872C5.31848 29.981 4.90803 30.6462 4.63278 31.1183C4.49512 31.3542 4.39114 31.5421 4.32013 31.6737C4.28463 31.7398 4.25735 31.7916 4.2382 31.8284L4.21562 31.8725L4.20887 31.8858L4.20662 31.8901C4.20627 31.8909 4.20514 31.8931 5.41636 32.4987L4.20514 31.8931L3.90234 32.4987L4.20514 33.1043L5.41636 32.4987C4.20514 33.1043 4.20481 33.1037 4.20514 33.1043L4.20662 33.1073L4.20887 33.1116L4.21562 33.1249L4.2382 33.169C4.25735 33.2058 4.28463 33.2576 4.32013 33.3237C4.39114 33.4553 4.49512 33.6432 4.63278 33.8791C4.90803 34.3512 5.31848 35.0164 5.86984 35.8102C6.97129 37.3962 8.64233 39.5071 10.9301 41.6187C15.5127 45.8489 22.597 50.1029 32.4997 50.1029C42.4024 50.1029 49.4866 45.8489 54.0691 41.6187C56.3571 39.5071 58.0282 37.3962 59.1296 35.8102C59.6808 35.0164 60.0914 34.3512 60.3665 33.8791C60.5041 33.6432 60.6081 33.4553 60.6794 33.3237C60.7148 33.2576 60.7419 33.2058 60.7611 33.169L60.7836 33.1249L60.7904 33.1116L60.7928 33.1073C60.7931 33.1064 60.7942 33.1043 59.583 32.4987ZM59.583 32.4987L60.7942 33.1043L61.097 32.4987L60.7936 31.8918L59.583 32.4987Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M32.4997 25.7279C28.7603 25.7279 25.7288 28.7593 25.7288 32.4987C25.7288 36.2381 28.7603 39.2695 32.4997 39.2695C36.2391 39.2695 39.2705 36.2381 39.2705 32.4987C39.2705 28.7593 36.2391 25.7279 32.4997 25.7279ZM23.0205 32.4987C23.0205 27.2635 27.2645 23.0195 32.4997 23.0195C37.7349 23.0195 41.9788 27.2635 41.9788 32.4987C41.9788 37.7339 37.7349 41.9779 32.4997 41.9779C27.2645 41.9779 23.0205 37.7339 23.0205 32.4987Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 2;
  transition: 0.5s all ease;
}
.main-wrapper .gallery .gallery-images .gallery-image a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  transform: translate(-50%, -50%);
  background: rgba(0, 60, 134, 0.4784313725);
  transition: 0.5s all ease;
}
.main-wrapper .gallery .gallery-images .gallery-image a .image {
  height: 340px;
  position: relative;
}
.main-wrapper .gallery .gallery-images .gallery-image a .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.main-wrapper .gallery .gallery-images .gallery-image a .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(17, 41, 82, 0.95), transparent);
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s all ease;
}
.main-wrapper .gallery .gallery-images .gallery-image .text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 85%;
  z-index: 4;
  height: auto;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.5s all ease;
}
.main-wrapper .gallery .gallery-images .gallery-image .text h4 {
  font-size: 23px;
  text-align: center;
  color: #fff;
  font-weight: 400;
}
.main-wrapper .gallery .gallery-images .gallery-image:hover .image::after {
  opacity: 1;
}
.main-wrapper .gallery .gallery-images .gallery-image:hover .text {
  opacity: 1;
}
.main-wrapper .gallery .gallery-images .gallery-image:hover a::before {
  width: 40px;
}
.main-wrapper .gallery .gallery-images .gallery-image:hover a::after {
  width: 100%;
}
.main-wrapper .gallery .gallery-images .images {
  display: flex;
  justify-content: center;
  padding: 0.4rem;
}
.main-wrapper .gallery .gallery-images .images a {
  display: block;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  transition: 0.5s all ease;
}
.main-wrapper .gallery .gallery-images .images a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  transform: translate(-50%, -50%);
  background: rgba(0, 60, 134, 0.4784313725);
  transition: 0.5s all ease;
}
.main-wrapper .gallery .gallery-images .images a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 40px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg width='65' height='65' viewBox='0 0 65 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.96292 32.4987C6.96598 32.5038 6.96907 32.5093 6.97219 32.5147C7.21534 32.9315 7.58779 33.5357 8.09438 34.2653C9.10879 35.7262 10.6539 37.6778 12.7672 39.6287C16.9866 43.5235 23.444 47.3945 32.4997 47.3945C41.5553 47.3945 48.0128 43.5235 52.2323 39.6287C54.3454 37.6778 55.8905 35.7262 56.905 34.2653C57.4115 33.5357 57.7839 32.9315 58.0271 32.5147C58.0303 32.5093 58.0333 32.5038 58.0366 32.4987C58.0333 32.4933 58.0303 32.4881 58.0271 32.4827C57.7839 32.0659 57.4115 31.4617 56.905 30.7321C55.8905 29.2712 54.3454 27.3196 52.2323 25.3687C48.0128 21.4738 41.5553 17.6029 32.4997 17.6029C23.444 17.6029 16.9866 21.4738 12.7672 25.3687C10.6539 27.3196 9.10879 29.2712 8.09438 30.7321C7.58779 31.4617 7.21534 32.0659 6.97219 32.4827C6.96907 32.4881 6.96598 32.4936 6.96292 32.4987ZM59.583 32.4987C60.7942 31.8931 60.7939 31.8926 60.7936 31.8918L60.7904 31.8858L60.7836 31.8725L60.7611 31.8284C60.7419 31.7916 60.7148 31.7398 60.6794 31.6737C60.6081 31.5421 60.5041 31.3542 60.3665 31.1183C60.0914 30.6462 59.6808 29.981 59.1296 29.1872C58.0282 27.6012 56.3571 25.4905 54.0691 23.3787C49.4866 19.1486 42.4024 14.8945 32.4997 14.8945C22.597 14.8945 15.5127 19.1486 10.9301 23.3787C8.64233 25.4905 6.97129 27.6012 5.86984 29.1872C5.31848 29.981 4.90803 30.6462 4.63278 31.1183C4.49512 31.3542 4.39114 31.5421 4.32013 31.6737C4.28463 31.7398 4.25735 31.7916 4.2382 31.8284L4.21562 31.8725L4.20887 31.8858L4.20662 31.8901C4.20627 31.8909 4.20514 31.8931 5.41636 32.4987L4.20514 31.8931L3.90234 32.4987L4.20514 33.1043L5.41636 32.4987C4.20514 33.1043 4.20481 33.1037 4.20514 33.1043L4.20662 33.1073L4.20887 33.1116L4.21562 33.1249L4.2382 33.169C4.25735 33.2058 4.28463 33.2576 4.32013 33.3237C4.39114 33.4553 4.49512 33.6432 4.63278 33.8791C4.90803 34.3512 5.31848 35.0164 5.86984 35.8102C6.97129 37.3962 8.64233 39.5071 10.9301 41.6187C15.5127 45.8489 22.597 50.1029 32.4997 50.1029C42.4024 50.1029 49.4866 45.8489 54.0691 41.6187C56.3571 39.5071 58.0282 37.3962 59.1296 35.8102C59.6808 35.0164 60.0914 34.3512 60.3665 33.8791C60.5041 33.6432 60.6081 33.4553 60.6794 33.3237C60.7148 33.2576 60.7419 33.2058 60.7611 33.169L60.7836 33.1249L60.7904 33.1116L60.7928 33.1073C60.7931 33.1064 60.7942 33.1043 59.583 32.4987ZM59.583 32.4987L60.7942 33.1043L61.097 32.4987L60.7936 31.8918L59.583 32.4987Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M32.4997 25.7279C28.7603 25.7279 25.7288 28.7593 25.7288 32.4987C25.7288 36.2381 28.7603 39.2695 32.4997 39.2695C36.2391 39.2695 39.2705 36.2381 39.2705 32.4987C39.2705 28.7593 36.2391 25.7279 32.4997 25.7279ZM23.0205 32.4987C23.0205 27.2635 27.2645 23.0195 32.4997 23.0195C37.7349 23.0195 41.9788 27.2635 41.9788 32.4987C41.9788 37.7339 37.7349 41.9779 32.4997 41.9779C27.2645 41.9779 23.0205 37.7339 23.0205 32.4987Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 2;
  transition: 0.5s all ease;
}
.main-wrapper .gallery .gallery-images .images a:hover::after {
  width: 100%;
}
.main-wrapper .gallery .gallery-images .images a:hover::before {
  width: 40px;
}
.main-wrapper .gallery .gallery-images .images a:hover img {
  transform: scale(1.2);
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-wrapper .gallery .gallery-images .images img {
  display: block;
  transition: 0.5s all ease;
}
.main-wrapper .gallery .gallery-images .images.img-2 .gallery-image:nth-child(1) {
  display: block;
  width: 80%;
  margin-left: auto;
  margin-bottom: 0.8rem;
}
.main-wrapper .gallery .gallery-images .images.img-2 .gallery-image:nth-child(1) .text {
  bottom: 12px;
}
.main-wrapper .gallery .gallery-images .images.img-2 .gallery-image:nth-child(1) .text h4 {
  font-size: 20px;
}
.main-wrapper .gallery .images a {
  height: 340px;
}
.main-wrapper .gallery .images a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-wrapper .gallery .slick-slide:nth-child(even) {
  margin-top: 0;
}
.main-wrapper .formulation {
  position: relative;
  padding: 60px 0;
  padding-bottom: 0;
  overflow: hidden;
}
.main-wrapper .formulation .slider_wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .slider_wrapper {
    display: flex;
    flex-direction: column-reverse;
  }
}
.main-wrapper .formulation .slider_wrapper .v-nw {
  position: absolute;
  margin-top: 0;
  right: 5%;
  top: inherit;
  bottom: 3%;
  width: 100%;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .slider_wrapper .v-nw {
    right: 15px;
    top: inherit;
    bottom: 4%;
    position: absolute;
  }
}
.main-wrapper .formulation .main-slider .slick-track {
  min-height: 385px;
}
.main-wrapper .formulation .main-slider .slider-content {
  display: flex !important;
  position: relative;
  align-items: center;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .main-slider .slider-content {
    flex-direction: column;
    align-items: start;
  }
}
.main-wrapper .formulation .main-slider .slider-content .preview-img {
  height: 100%;
  min-height: 100vh;
  width: 40%;
  position: relative;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .main-slider .slider-content .preview-img {
    height: 500px;
    min-height: 500px;
    width: 41%;
    overflow: hidden;
  }
}
@media (max-width: 720px) {
  .main-wrapper .formulation .main-slider .slider-content .preview-img {
    height: 380px;
    min-height: 380px;
    width: 54%;
    overflow: hidden;
  }
}
.main-wrapper .formulation .main-slider .slider-content .preview-img img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -o-object-position: center right;
     object-position: center right;
  width: 100%;
  right: 0px;
  height: 100%;
}
.main-wrapper .formulation .main-slider .slider-content .preview-text {
  width: 60%;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .main-slider .slider-content .preview-text {
    width: 100%;
    padding: 0 15px;
    padding-top: 20px;
  }
}
.main-wrapper .formulation .main-slider .slider-content .preview-text h2 {
  position: absolute;
  top: 3.1rem;
  font-family: var(--secondary-font);
  font-size: 2.5vw;
  font-weight: bold;
  line-height: 1.25;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 60px;
}
.main-wrapper .formulation .main-slider .slider-content .preview-text h2 .treadmark {
  display: inline-block;
  position: relative;
  right: 12px;
  top: -18px;
}
.main-wrapper .formulation .main-slider .slider-content .preview-text h2 .treadmark svg {
  height: 15px;
  width: 15px;
  opacity: 0.7;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .main-slider .slider-content .preview-text h2 {
    position: relative;
    top: 0;
    font-size: 22px;
    margin-left: 0;
  }
}
@media (min-width: 1450px) {
  .main-wrapper .formulation .main-slider .slider-content .preview-text h2 {
    top: 10%;
  }
}
.main-wrapper .formulation .main-slider .slider-content .preview-text .cat {
  position: absolute;
  top: 6rem;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 60px;
  padding-top: 10px;
}
.main-wrapper .formulation .main-slider .slider-content .preview-text .cat span:nth-child(1) {
  font-weight: 600;
}
@media (min-width: 1450px) {
  .main-wrapper .formulation .main-slider .slider-content .preview-text .cat {
    top: 16%;
  }
}
@media (max-width: 992px) {
  .main-wrapper .formulation .main-slider .slider-content .preview-text .cat {
    position: static;
    padding-top: 10px;
    margin-left: 0;
  }
}
.main-wrapper .formulation .main-slider .slider-content .preview-text .desc {
  position: absolute;
  top: 65%;
  margin-left: 60px;
  margin-right: 40px;
  font-size: 1.2vw;
  height: 100%;
  padding-top: 20px;
  height: 8.32em;
  line-height: 1.5em;
}
@media (min-width: 1450px) {
  .main-wrapper .formulation .main-slider .slider-content .preview-text .desc {
    top: 70%;
  }
}
@media (max-width: 992px) {
  .main-wrapper .formulation .main-slider .slider-content .preview-text .desc {
    font-size: 14px;
    position: static;
    padding-right: 0;
    padding-top: 20px;
    margin-left: 0;
  }
}
@media (max-width: 720px) {
  .main-wrapper .formulation .main-slider .slider-content .preview-text .desc {
    height: 18rem !important;
    width: 98%;
  }
}
.main-wrapper .formulation .main-slider .slider-content .preview-text .desc span {
  display: block;
  margin-bottom: 7px;
  color: var(--dark);
  font-weight: 500;
  font-size: 1.09vw;
  line-height: 1.3;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .main-slider .slider-content .preview-text .desc span {
    font-size: 12px;
  }
}
.main-wrapper .formulation .main-slider .slick-slide > div {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.main-wrapper .formulation .main-slider .slick-slide.slick-current.slick-active .preview-img img {
  transition-delay: 0s;
  animation: 1s widthIn cubic-bezier(0.76, 0, 0.24, 1);
}
@keyframes widthIn {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.main-wrapper .formulation .main-slider .slick-prev {
  left: 44.5%;
  top: inherit;
  bottom: 3%;
  z-index: 10;
  width: 100px;
  filter: invert(0.5);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dark-alt);
  transition: 0.5s all ease;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .main-slider .slick-prev {
    left: 15px;
    right: inherit;
  }
}
@media (min-width: 1600px) {
  .main-wrapper .formulation .main-slider .slick-prev {
    font-size: 1.15vw;
  }
}
.main-wrapper .formulation .main-slider .slick-prev svg {
  transition: 0.5s all ease;
}
.main-wrapper .formulation .main-slider .slick-prev img {
  width: 4.5rem;
  transform: translateX(0px);
  transition: 0.5s all ease;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .main-slider .slick-prev img {
    width: auto;
  }
}
@media (min-width: 1450px) {
  .main-wrapper .formulation .main-slider .slick-prev {
    left: 43.5%;
  }
}
.main-wrapper .formulation .main-slider .slick-prev:hover {
  filter: invert(0);
  color: var(--kids-color);
}
.main-wrapper .formulation .main-slider .slick-prev:hover svg {
  transform: translateX(-5px);
}
.main-wrapper .formulation .main-slider .slick-next {
  right: 40.5%;
  top: inherit;
  bottom: 3%;
  z-index: 10;
  width: 100px;
  filter: invert(0.5);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dark-alt);
  transition: 0.5s all ease;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .main-slider .slick-next {
    right: inherit;
    left: 105px;
  }
}
@media (min-width: 1600px) {
  .main-wrapper .formulation .main-slider .slick-next {
    font-size: 1.15vw;
  }
}
.main-wrapper .formulation .main-slider .slick-next svg {
  transition: 0.5s all ease;
}
.main-wrapper .formulation .main-slider .slick-next img {
  width: 4.5rem;
  transform: translateX(0);
  transition: 0.5s all ease;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .main-slider .slick-next img {
    width: auto;
  }
}
@media (min-width: 1450px) {
  .main-wrapper .formulation .main-slider .slick-next {
    right: 43.5%;
  }
}
@media (min-width: 1650px) {
  .main-wrapper .formulation .main-slider .slick-next {
    right: 45.5%;
  }
}
@media (min-width: 3550px) {
  .main-wrapper .formulation .main-slider .slick-next {
    right: 46.5%;
  }
}
.main-wrapper .formulation .main-slider .slick-next:hover {
  filter: invert(0);
  color: var(--kids-color);
}
.main-wrapper .formulation .main-slider .slick-next:hover svg {
  transform: translateX(5px);
}
.main-wrapper .formulation .absolute-slider {
  position: absolute;
  top: 26%;
  transform: translateY(-13%);
  width: 78%;
  right: 0%;
  padding-left: 35px;
  height: 70vh;
}
.main-wrapper .formulation .absolute-slider .slider-nav {
  height: 100%;
}
.main-wrapper .formulation .absolute-slider .slider-nav .soup-name {
  font-size: 1.6vw;
  margin-top: 5px;
  text-transform: capitalize;
  visibility: visible;
  opacity: 1;
  transition: 0.5s all ease;
}
.main-wrapper .formulation .absolute-slider .slider-nav .soup-name .treadmark {
  top: -8px;
}
.main-wrapper .formulation .absolute-slider .slider-nav .soup-name h5 {
  font-size: 1.3vw;
  text-align: center;
  font-family: var(--secondary-font);
  font-weight: 600;
}
@media (max-width: 992px) {
  .main-wrapper .formulation .absolute-slider .slider-nav .soup-name h5 {
    font-size: 14px;
  }
}
@media (max-width: 720px) {
  .main-wrapper .formulation .absolute-slider .slider-nav .soup-name h5 {
    display: none;
  }
}
@media (max-width: 1600px) {
  .main-wrapper .formulation .absolute-slider {
    height: 70vh;
  }
}
@media (max-width: 992px) {
  .main-wrapper .formulation .absolute-slider {
    position: absolute;
    top: -18%;
    height: 550px;
  }
}
@media (max-width: 720px) {
  .main-wrapper .formulation .absolute-slider {
    position: absolute;
    height: 490px;
    top: 4%;
    width: 78%;
  }
}
@media (min-width: 1370px) and (max-width: 1480px) {
  .main-wrapper .formulation .absolute-slider {
    top: 22%;
  }
}
@media (min-width: 2000px) {
  .main-wrapper .formulation .absolute-slider {
    top: 23%;
  }
}
.main-wrapper .formulation .absolute-slider .slick-slider {
  width: 100%;
  height: 100%;
}
.main-wrapper .formulation .absolute-slider .slick-slider .slick-list {
  height: 100%;
}
.main-wrapper .formulation .absolute-slider .slick-slider .slick-slide.slick-cloned {
  opacity: 0;
}
.main-wrapper .formulation .absolute-slider .slick-slider .slick-slide.slick-cloned.slick-active {
  opacity: 1;
}
.main-wrapper .formulation .absolute-slider .slick-track {
  height: 58vh !important;
}
.main-wrapper .formulation .absolute-slider .slick-track .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease-in-out;
}
.main-wrapper .formulation .absolute-slider .slick-track .slick-slide .slider-img {
  width: 14vw;
  transition: all 0.6s ease-in-out;
}
@media (min-width: 2000px) {
  .main-wrapper .formulation .absolute-slider .slick-track .slick-slide .slider-img {
    width: 12vw;
  }
}
@media (max-width: 720px) {
  .main-wrapper .formulation .absolute-slider .slick-track .slick-slide .slider-img {
    width: 25vw;
  }
}
.main-wrapper .formulation .absolute-slider .slick-track .slick-slide .slider-img img {
  display: block;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s ease-in-out;
  padding: 10px;
}
.main-wrapper .formulation .absolute-slider .slick-track .slick-slide .slider-img img:hover {
  opacity: 0.6;
  cursor: pointer;
}
.main-wrapper .formulation .absolute-slider .slick-track .slick-slide.slick-current.slick-active {
  width: 25vw !important;
}
.main-wrapper .formulation .absolute-slider .slick-track .slick-slide.slick-current.slick-active .soup-name {
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 2000px) {
  .main-wrapper .formulation .absolute-slider .slick-track .slick-slide.slick-current.slick-active {
    width: 26vw;
  }
}
@media (max-width: 720px) {
  .main-wrapper .formulation .absolute-slider .slick-track .slick-slide.slick-current.slick-active {
    width: 50vw !important;
  }
}
.main-wrapper .formulation .absolute-slider .slick-track .slick-slide.slick-current.slick-active .slider-img {
  height: 100%;
  width: 25vw;
  transition: all 0.6s ease-in-out;
  margin: 30px;
}
@media (min-width: 2000px) {
  .main-wrapper .formulation .absolute-slider .slick-track .slick-slide.slick-current.slick-active .slider-img {
    width: 25vw;
  }
}
@media (max-width: 720px) {
  .main-wrapper .formulation .absolute-slider .slick-track .slick-slide.slick-current.slick-active .slider-img {
    width: 50vw !important;
  }
}
.main-wrapper .formulation .absolute-slider .slick-track .slick-slide.slick-current.slick-active .slider-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  padding-right: 15px;
  transition: all 0.6s ease-in-out;
}
.main-wrapper .formulation .absolute-slider .slick-track .slick-slide.slick-current.slick-active .slider-img img:hover {
  opacity: 1;
  cursor: pointer;
}
.main-wrapper .formulation .absolute-slider .slider.slider-nav .slick-arrow {
  cursor: pointer;
}
.main-wrapper .formulation .absolute-slider .slider.slider-nav .slick-prev.pull-left.slick-arrow,
.main-wrapper .formulation .absolute-slider .slider.slider-nav .slick-next.pull-right.slick-arrow {
  position: absolute;
  bottom: -180px;
  width: 100px;
}
.main-wrapper .formulation .absolute-slider .slider.slider-nav .slick-prev {
  top: 140%;
  left: 27%;
}
.main-wrapper .formulation .absolute-slider .slider.slider-nav .slick-next {
  top: 140%;
  right: 52%;
}
.main-wrapper .formulation .slick-slider .slick-next:before,
.main-wrapper .formulation .slick-slider .slick-prev:before {
  display: none;
}
.main-wrapper .production {
  height: 48rem;
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.main-wrapper .production .section_title {
  margin-bottom: 35px;
}
@media (min-width: 1600px) {
  .main-wrapper .production {
    height: 59rem;
    max-height: 59rem;
  }
}
@media (max-width: 900px) {
  .main-wrapper .production {
    height: auto;
    overflow: visible;
  }
}
@media (max-width: 1024px) {
  .main-wrapper .production {
    height: auto;
    min-height: auto;
  }
}
.main-wrapper .production .production_title {
  font-family: var(--secondary-font);
  font-size: 15vw;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -15px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #b26e14;
}
.main-wrapper .production .para {
  width: 60%;
  height: 30%;
  background-color: var(--light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  opacity: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1882352941);
}
.main-wrapper .production .para p {
  text-align: center;
  color: #5f5f5f;
  font-size: 1.4vw;
  width: 80%;
  line-height: 1.45;
}
.main-wrapper .production .production_wrap {
  position: relative;
}
.main-wrapper .production .production_wrap .scroll_box {
  width: 160%;
}
@media (min-width: 1600px) {
  .main-wrapper .production .production_wrap .scroll_box {
    width: 150%;
  }
}
@media (max-width: 1024px) {
  .main-wrapper .production .production_wrap .scroll_box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .main-wrapper .production .production_wrap .scroll_box {
    width: 100%;
  }
}
.main-wrapper .production .production_wrap .d-flex {
  gap: 45px;
}
@media (max-width: 1024px) {
  .main-wrapper .production .production_wrap .d-flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .main-wrapper .production .production_wrap .d-flex {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 15px;
  }
}
.main-wrapper .production .production_wrap .card {
  transform: translateY(50%);
  opacity: 0;
}
@media (max-width: 1024px) {
  .main-wrapper .production .production_wrap .card {
    transform: translateY(0%);
    opacity: 1;
  }
}
.main-wrapper .production .production_wrap .card {
  padding: 0;
  border-radius: 28px;
  width: 28%;
  height: 100%;
}
@media (min-width: 2000px) {
  .main-wrapper .production .production_wrap .card {
    width: 15%;
  }
}
@media (min-width: 1600px) {
  .main-wrapper .production .production_wrap .card {
    width: 20%;
    height: 600px;
  }
}
@media (min-width: 1600px) {
  .main-wrapper .production .production_wrap .card {
    width: 25%;
  }
}
@media (max-width: 1024px) {
  .main-wrapper .production .production_wrap .card {
    width: 46%;
  }
}
@media (max-width: 767px) {
  .main-wrapper .production .production_wrap .card {
    width: 100%;
  }
}
.main-wrapper .production .production_wrap .box-blue {
  background: var(--color-3);
}
.main-wrapper .production .production_wrap .box-green {
  background: var(--color-2);
}
.main-wrapper .production .production_wrap .box-orange {
  background: var(--color-1);
}
.main-wrapper .production .production_wrap .production-box {
  border-radius: 20px;
  background-image: url(../images/production/bg.svg);
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
}
@media (min-width: 1600px) {
  .main-wrapper .production .production_wrap .production-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
}
.main-wrapper .production .production_wrap .production-box .content {
  padding-top: 35px;
  padding-right: 14px;
  padding-left: 14px;
  text-align: center;
}
.main-wrapper .production .production_wrap .production-box .content .title {
  color: var(--primary);
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 3.3vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -2.52px;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .main-wrapper .production .production_wrap .production-box .content .title {
    font-size: 22px;
  }
}
.main-wrapper .production .production_wrap .production-box .content .count {
  color: var(--light);
  font-family: var(--secondary-font);
  font-size: 3.29vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.main-wrapper .production .production_wrap .production-box .content .desc {
  color: #fff;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1.35vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
  min-height: 3.2em;
}
@media (max-width: 1024px) {
  .main-wrapper .production .production_wrap .production-box .content .desc {
    font-size: 16px;
    min-height: auto;
  }
}
.main-wrapper .production .production_wrap .production-box .images {
  padding: 12px;
  text-align: center;
}
.main-wrapper .production .production_wrap .production-box .images img {
  border-radius: 12px;
}

.main-wrapper .deformation {
  position: relative;
}
@media (max-width: 1024px) {
  .main-wrapper .deformation {
    padding: 60px 0px;
  }
}
.main-wrapper .deformation .v-nw {
  margin-top: 15px !important;
}

.logo_wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .logo_wrapper {
    height: 80vh;
  }
}
@media (max-width: 400px) {
  .logo_wrapper {
    height: 90vh;
  }
}
@media (max-width: 380px) {
  .logo_wrapper {
    height: 100vh;
  }
}

.main-wrapper .deformation .logo_wrapper #one {
  position: absolute;
  z-index: 0;
  scale: 0;
  opacity: 0;
  text-align: center;
}
@media (max-width: 1024px) {
  .main-wrapper .deformation .logo_wrapper #one {
    position: absolute;
    scale: 1;
    opacity: 1;
    text-align: center;
  }
}

.main-wrapper .deformation .logo_wrapper #one h1 {
  font-size: 4vw;
  line-height: 1;
  font-family: var(--secondary-font);
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .main-wrapper .deformation .logo_wrapper #one h1 {
    font-size: 47px;
  }
}
@media (max-width: 720px) {
  .main-wrapper .deformation .logo_wrapper #one h1 {
    font-size: 27px;
  }
}

.main-wrapper .deformation .logo_wrapper #one p {
  font-size: 1.3vw;
  font-family: var(--primary-font);
  font-weight: 300;
  width: 60%;
  margin: auto;
  line-height: 1.35;
}
@media (max-width: 1024px) {
  .main-wrapper .deformation .logo_wrapper #one p {
    font-size: 16px;
  }
}

.main-wrapper .deformation .logo_wrapper #two {
  position: absolute;
  z-index: 7;
}
@media (max-width: 600px) {
  .main-wrapper .deformation .logo_wrapper #two {
    position: absolute;
    z-index: 7;
    width: 110px;
    top: 0;
    left: 12px;
  }
}
@media screen and (min-device-width: 600px) and (max-device-width: 1024px) {
  .main-wrapper .deformation .logo_wrapper #two {
    position: absolute;
    z-index: 7;
    width: 280px;
    top: 0;
    left: 12px;
  }
}

.main-wrapper .deformation .logo_wrapper #three {
  position: absolute;
  z-index: 6;
}
@media (max-width: 500px) {
  .main-wrapper .deformation .logo_wrapper #three {
    position: absolute;
    z-index: 7;
    width: 110px;
    top: 0;
  }
}
@media screen and (min-device-width: 600px) and (max-device-width: 1024px) {
  .main-wrapper .deformation .logo_wrapper #three {
    position: absolute;
    z-index: 7;
    width: 280px;
    top: 0;
  }
}

.main-wrapper .deformation .logo_wrapper #four {
  position: absolute;
  z-index: 5;
}
@media (max-width: 500px) {
  .main-wrapper .deformation .logo_wrapper #four {
    position: absolute;
    z-index: 7;
    width: 110px;
    top: 0;
    right: 12px;
  }
}
@media screen and (min-device-width: 600px) and (max-device-width: 1024px) {
  .main-wrapper .deformation .logo_wrapper #four {
    position: absolute;
    z-index: 7;
    width: 280px;
    top: 0;
    right: 12px;
  }
}

.main-wrapper .deformation .logo_wrapper #five {
  position: absolute;
  z-index: 4;
}
@media (max-width: 500px) {
  .main-wrapper .deformation .logo_wrapper #five {
    position: absolute;
    z-index: 7;
    width: 110px;
    bottom: 0;
    left: 12px;
  }
}
@media screen and (min-device-width: 600px) and (max-device-width: 1024px) {
  .main-wrapper .deformation .logo_wrapper #five {
    position: absolute;
    z-index: 7;
    width: 280px;
    bottom: 0;
    left: 12px;
  }
}

.main-wrapper .deformation .logo_wrapper #six {
  position: absolute;
  z-index: 3;
}
@media (max-width: 500px) {
  .main-wrapper .deformation .logo_wrapper #six {
    position: absolute;
    z-index: 7;
    width: 110px;
    bottom: 0;
  }
}
@media screen and (min-device-width: 600px) and (max-device-width: 1024px) {
  .main-wrapper .deformation .logo_wrapper #six {
    position: absolute;
    z-index: 7;
    width: 280px;
    bottom: 0;
  }
}

.main-wrapper .deformation .logo_wrapper #seven {
  position: absolute;
  z-index: 2;
}
@media (max-width: 500px) {
  .main-wrapper .deformation .logo_wrapper #seven {
    position: absolute;
    z-index: 7;
    width: 110px;
    bottom: 0;
    right: 12px;
  }
}
@media screen and (min-device-width: 600px) and (max-device-width: 1024px) {
  .main-wrapper .deformation .logo_wrapper #seven {
    position: absolute;
    z-index: 7;
    width: 280px;
    bottom: 0;
    right: 12px;
  }
}

.main-wrapper .deformation .big_line {
  color: rgba(123, 6, 7, 0.05);
  font-family: var(--secondary-font);
  font-size: 9vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -8.52px;
  position: relative;
  bottom: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 992px) {
  .main-wrapper .deformation .big_line {
    display: none;
  }
}

#loder {
  width: 100vw;
  height: 100vh;
  background: var(--color-2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(var(--clip) at 50% 50%);
}

#loder .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.cursor1 {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary) !important;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.15s;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 1200px) {
  .cursor1 {
    display: none;
  }
}
.cursor1.hide {
  opacity: 0;
  visibility: hidden;
}

.cursor2 {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--primary) !important;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.2s;
  z-index: 999;
}

@media (max-width: 1200px) {
  .cursor2 {
    display: none;
  }
}
.cursor2.hide {
  opacity: 0;
  visibility: hidden;
}

.cursor2.circle {
  width: 60px;
  height: 60px;
}

.loaderBar {
  width: 226.3083451202px;
  height: 10px;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.loaderBar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 5px;
  background: var(--gradient);
  animation: fillProgress 6s ease-in-out infinite, lightEffect 1s infinite linear;
  animation-fill-mode: forwards;
}

@keyframes fillProgress {
  0% {
    width: 0;
  }
  33% {
    width: 33.333%;
  }
  66% {
    width: 66.67%;
  }
  100% {
    width: 100%;
  }
}
@keyframes lightEffect {
  0%, 20%, 40%, 60%, 80%, 100% {
    background: linear-gradient(108deg, #5c340f 2%, #8b5e3a 98.95%);
  }
  10%, 30%, 50%, 70%, 90% {
    background: linear-gradient(108deg, #5c340f 2%, #8b5e3a 98.95%);
  }
}
.l-text-2 {
  opacity: 0;
}

.l-text {
  line-height: 1.25;
}

.categories_wrapper .v-button {
  position: relative;
  top: 11vw;
}
@media (max-width: 992px) {
  .categories_wrapper .v-button {
    top: 0;
  }
}

.v-nw {
  margin-top: 40px !important;
}
.v-nw .v-button {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.v-nw .v-button .view-button {
  display: inline-block;
  text-align: center;
  color: #898989;
  font-size: 1.15vw;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  padding-bottom: 1px;
  z-index: 4;
  opacity: 1;
  transition: 0.7s all ease;
  border-bottom: 1px solid #898989;
}
@media (max-width: 992px) {
  .v-nw .v-button .view-button {
    font-size: 15px;
  }
}
.v-nw .v-button .view-button.hov {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.7s all ease;
}
.v-nw .v-button:hover .view-button.hov {
  width: 100%;
  border-color: var(--kids-color);
  color: var(--kids-color);
}

.menu-icon {
  border: 0;
  position: absolute;
  z-index: 3;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2vw;
  height: 3.2vw;
  background-color: transparent;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: none;
}
@media (max-width: 992px) {
  .menu-icon {
    width: auto;
    height: 100%;
    top: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.menu-icon img {
  width: 3vw;
  margin-right: 0px;
  margin-bottom: 0px;
  visibility: visible;
  transition: 0.5s all ease;
}
@media (max-width: 992px) {
  .menu-icon img {
    width: 45px;
  }
}
@media (max-width: 720px) {
  .menu-icon img {
    width: 32px;
    position: relative;
    right: 15px;
    top: 0px;
  }
}
.menu-icon .icons {
  position: absolute;
}
.menu-icon .icons.active img {
  visibility: hidden;
}

.sidebar {
  position: fixed;
  height: 0;
  width: 0;
  top: 0;
  right: 0;
  left: inherit;
  border-radius: 0 0 0 1000px;
  background: var(--gradient-alt2);
  z-index: 7;
  transition: 1s all ease;
}
.sidebar.show {
  height: 150%;
  width: 150%;
  border-radius: 0;
  top: 0;
  right: 0;
  visibility: visible;
  transition: 1s all ease;
  animation: fadeIn 0.4s;
  z-index: 999;
}
.sidebar.show .sb-body {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.8s;
}
.sidebar.show .sb-body::after {
  right: 0;
  transition: 0.5s all ease;
  transition-delay: 0.5s;
}
.sidebar.soup-story-active .clock img {
  opacity: 0;
  visibility: hidden;
}
.sidebar.soup-story-active .soup-story-menu {
  opacity: 1;
  visibility: visible;
}
.sidebar .soup-story-menu {
  opacity: 0;
  position: absolute;
  z-index: 7;
  right: 20%;
  transform: translateY(-50%);
  top: 50%;
  visibility: hidden;
  transition: 0.5s all ease;
}
.sidebar .soup-story-menu ul li a {
  display: inline-block;
  font-size: 1.5vw;
  color: var(--light);
  padding: 12px 0;
}
.sidebar .sb-body {
  position: relative;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 1s all ease;
}
.sidebar .sb-body .social_icons {
  position: absolute;
  bottom: 2%;
  left: 40%;
  display: flex;
  gap: 1.1vw;
  z-index: 5;
}
@media (max-width: 992px) {
  .sidebar .sb-body .social_icons {
    position: relative;
    gap: 15px;
    bottom: 1% !important;
    left: 40% !important;
  }
}
.sidebar .sb-body .social_icons a {
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  color: var(--primary);
  align-items: center;
  transition: 0.5s all ease;
  overflow: hidden;
  position: relative;
  font-size: 1.5vw;
  color: var(--color-3);
  background: var(--light);
}
@media (max-width: 992px) {
  .sidebar .sb-body .social_icons a {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 992px) {
  .sidebar .sb-body .social_icons a {
    width: 45px;
    height: 45px;
  }
}
.sidebar .sb-body .social_icons a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  opacity: 0;
  border-radius: 50%;
  background: var(--gradient-alt);
  outline: 2px solid #d3912f;
  transition: 0.5s all ease;
}
.sidebar .sb-body .social_icons a i {
  position: relative;
  z-index: 3;
  line-height: normal;
}
@media (max-width: 992px) {
  .sidebar .sb-body .social_icons a i {
    font-size: 20px;
  }
}
.sidebar .sb-body .social_icons a:hover {
  color: var(--light);
}
.sidebar .sb-body .social_icons a:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.sidebar .sb-body .social_icons a:hover img:nth-child(1) {
  display: none;
}
.sidebar .sb-body .social_icons a:hover img:nth-child(2) {
  display: block;
}
@media (max-width: 767px) {
  .sidebar .sb-body .social_icons {
    gap: 10px;
    margin: 20px 0px 35px;
  }
  .sidebar .sb-body .social_icons a {
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }
}
.sidebar .sb-body .close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  z-index: 999;
  background: transparent;
}
.sidebar .sb-body .sb-links {
  position: relative;
  top: 80px;
  left: 40%;
  /* transform: translateY(-50%); */
  z-index: 5;
  overflow-y: scroll;
  height: 70vh;
  width: 24%;
  display: flex;
  scrollbar-color: rgba(219, 165, 93, 0.1490196078) transparent;
  scrollbar-width: thin;
  flex-direction: column;
  justify-content: start;
}
@media (max-width: 992px) {
  .sidebar .sb-body .sb-links {
    width: 65%;
    left: 40%;
    overflow-y: scroll;
    height: auto;
    scrollbar-width: thin;
    flex-direction: column;
    justify-content: start;
    margin-bottom: 80px;
  }
}
@media (min-width: 1930px) {
  .sidebar .sb-body .sb-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.sidebar .sb-body .sb-links::-webkit-scrollbar {
  width: 2px;
  background: var(--dark);
}
.sidebar .sb-body .sb-links::-webkit-scrollbar-thumb {
  background: var(--primary);
}
.sidebar .sb-body .sb-links .link a {
  color: #fff;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  font-family: var(--secondary-font);
  text-transform: uppercase;
  display: block;
  margin-bottom: 30px;
  transition: 0.5s all ease;
  position: relative;
}
@media (max-width: 992px) {
  .sidebar .sb-body .sb-links .link a {
    font-size: 1.6rem;
  }
}
.sidebar .sb-body .sb-links .link a:hover {
  color: var(--primary);
}
.sidebar .sb-body .sb-links .link a:hover::after {
  opacity: 1;
}
.sidebar .sb-body .sb-links .link a.active {
  color: var(--primary);
}
.sidebar .sb-body .sb-links .link a.active::after {
  opacity: 1;
}
.sidebar .sb-body .sb-links .link a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  height: 1vw;
  width: 1vw;
  background: linear-gradient(54deg, #00296b -49.66%, #00509d -31.62%, #b68337 -11.24%, #d3912f 7.19%, #dba549 9.07%, #e8c572 12.42%, #f2df92 15.71%, #f9f0a9 18.87%, #fefbb6 21.86%, #ffb 24.47%, #deac51 43.57%, #00509d 64.63%, #00296b 84.4%);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.5s all ease;
}
.sidebar .clock {
  text-align: center;
  display: flex;
}
@media (max-width: 992px) {
  .sidebar .clock {
    align-items: stretch;
    justify-content: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.3490196078);
    padding-top: 30px;
    padding-bottom: 24px;
  }
}
.sidebar .clock img {
  position: absolute;
  right: 5%;
  top: 50%;
  z-index: 7;
  width: 40vw;
  transform: translateY(-50%);
  transition: 0.5s all ease;
  visibility: visible;
}
@media (max-width: 992px) {
  .sidebar .clock img {
    position: relative;
    right: -16%;
    /* bottom: 0; */
    z-index: 7;
    width: 330px;
    transform: none;
    margin: auto;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.categories-soup {
  background: var(--light-alt);
  position: relative;
  padding: 5vw 0 8vw;
}
@media (max-width: 992px) {
  .categories-soup {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .categories-soup {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
.categories-soup .soup-cat {
  position: relative;
  margin-top: 3rem;
  padding-bottom: 10vw;
}
.categories-soup .soup-cat .sec-brand {
  position: relative;
}
@media (max-width: 992px) {
  .categories-soup .soup-cat .sec-brand {
    top: -70px;
  }
  .categories-soup .soup-cat .sec-brand .text:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 720px) {
  .categories-soup .soup-cat .sec-brand {
    top: -40px;
  }
}
@media (min-width: 1400px) and (max-width: 1600px) {
  .categories-soup .soup-cat {
    padding-bottom: 12vw;
  }
}
@media (max-width: 992px) {
  .categories-soup .soup-cat {
    padding-bottom: 0vw;
  }
}
@media (min-width: 1600px) {
  .categories-soup .soup-cat {
    padding-bottom: 7.7vw;
  }
}
.categories-soup .soup-cat .image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .categories-soup .soup-cat .image {
    position: static;
    transform: none;
  }
}
.categories-soup .soup-cat .image img {
  width: 100%;
}
@media (max-width: 1024px) {
  .categories-soup .soup-cat .image img {
    height: auto;
  }
}
.categories-soup .text {
  display: flex;
  align-items: start;
  justify-content: end;
  gap: 15px;
  margin-bottom: 55px;
}
@media (max-width: 720px) {
  .categories-soup .text {
    margin-bottom: 28px;
  }
  .categories-soup .text .icon img {
    width: 45px;
  }
}
@media (max-width: 1024px) {
  .categories-soup .text {
    justify-content: start;
    flex-direction: row-reverse;
  }
  .categories-soup .text-last {
    flex-direction: row;
  }
}
.categories-soup .text .info-text {
  text-align: end;
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 992px) {
  .categories-soup .text .info-text {
    text-align: start;
    align-items: start;
  }
}
.categories-soup .text .info-text h5 {
  text-align: end;
  font-size: 1.5vw;
  line-height: 1.3;
  font-weight: 500;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {
  .categories-soup .text .info-text h5 {
    font-size: 22px;
    text-align: start;
  }
}
@media (max-width: 767px) {
  .categories-soup .text .info-text h5 {
    font-size: 19px;
    text-align: start;
  }
}
.categories-soup .text .info-text p {
  font-size: 1.1vw;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .categories-soup .text .info-text p {
    font-size: 16px;
  }
}
.categories-soup .text.text-middle {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  bottom: -7%;
  width: 32%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .categories-soup .text.text-middle {
    flex-direction: row;
    position: static;
  }
}
.categories-soup .text.text-middle .info-text {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.categories-soup .text.text-last {
  justify-content: start;
}
.categories-soup .text.text-last .info-text {
  text-align: start;
  display: flex;
  align-items: start;
  flex-direction: column;
}
.categories-soup .text.text-last .info-text h5 {
  text-align: start;
}

.page_header {
  background: url(../images/page-header/background.png), #4c3025;
  padding: 10vw 0 2vw;
  position: relative;
  background-size: cover;
}
@media (max-width: 600px) {
  .page_header {
    padding: 18vw 0 2vw;
  }
}
.page_header .page_title {
  color: var(--primary-alt);
  font-family: var(--secondary-font);
  font-size: 2.83vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.page_header .page_title .treadmark {
  display: inline-block;
  position: relative;
  right: 6px;
  top: -18px;
}
@media (max-width: 600px) {
  .page_header .page_title {
    font-size: 18px;
  }
}
.page_header:before {
  content: "";
  background: url(../images/page-header/before_icon.png) no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
}
.page_header .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .page_header .container {
    margin-top: 50px;
  }
}
.page_header .breadcrumb_nav {
  margin-top: 1vw;
}
.page_header .breadcrumb_nav ol.breadcrumb .breadcrumb-item {
  color: var(--light);
  font-size: 1.4222vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 600px) {
  .page_header .breadcrumb_nav ol.breadcrumb .breadcrumb-item {
    font-size: 14px;
  }
}
.page_header .breadcrumb_nav ol.breadcrumb .breadcrumb-item a {
  color: var(--light);
  font-weight: 400;
}
.page_header .breadcrumb_nav ol.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  background: url("../images/page-header/breadcrumb_icon.png") no-repeat center;
  width: 28px;
  background-size: 28px 14px;
  color: transparent;
  content: "/";
  padding-right: 0rem;
  margin-right: var(--bs-breadcrumb-item-padding-x);
}
.page_header .header_image {
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("../images/page-header/bg.png");
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 132% 0px;
}
@media (max-width: 992px) {
  .page_header .header_image {
    display: none;
  }
}

.faq_section {
  min-height: calc(100vh - 600px);
  background: var(--light-alt);
}

.history_section .description_column {
  padding: 25px;
}
.history_section .img_container {
  visibility: hidden;
  position: relative;
  overflow: hidden;
}
.history_section .img_container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.philosophy_section {
  position: relative;
  margin-top: 1%;
  padding-bottom: 0;
}
.philosophy_section .background_column {
  position: absolute;
  width: 60%;
  right: 6%;
  top: -6%;
  background: var(--light-alt3);
  border-radius: 10px;
  padding: 2vw 2.5vw;
}
.philosophy_section .background_column:before {
  content: "";
  background-image: url("../images/history/philosophy_before.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.philosophy_section .background_column .semi_title {
  padding-bottom: 1vw;
}

.ingredient_section {
  background-color: var(--light-alt);
  position: relative;
  padding-bottom: 0;
}
.ingredient_section .description {
  padding: 0vw 3vw 3vw;
}
.ingredient_section figure {
  margin-bottom: 0;
}

.constituents_section {
  background: #ffefd2;
  margin-top: 9vw;
  position: relative;
}
.constituents_section:before {
  content: "";
  background-image: url("../images/history/icon_1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.constituents_section:after {
  content: "";
  background: url("../images/history/icon_2.png") no-repeat;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 95%;
  width: 100%;
}
.constituents_section .row {
  position: relative;
  z-index: 1;
}
.constituents_section .herbs_detail {
  border-radius: 19px;
  background: #fff;
  box-shadow: 0px 1px 14px 1px rgba(167, 167, 167, 0.13);
  padding: 1.2vw;
  margin-top: -9vw;
}
.constituents_section .constituents_detail {
  padding-left: 3vw;
}

.latest-blogs .card {
  border: 0;
  border-radius: 30px;
  padding: 15px !important;
  background: #fff6ec;
  position: relative;
}
.latest-blogs .card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 17%;
  height: 100%;
  background: url(../images/blogs/blog-page/slider/pattern.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat no-repeat;
}
.latest-blogs .card .image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.latest-blogs .card .image img {
  width: 100%;
}
.latest-blogs .card .image .tag {
  background: var(--light);
  padding: 7px 15px;
  border-radius: 7px;
  color: #00296b;
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
}
.latest-blogs .card .text h4 {
  font-family: var(--secondary-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.latest-blogs .card .text .info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.latest-blogs .card .text .info .adtxt {
  display: flex;
  align-items: center;
  gap: 5px;
}
.latest-blogs .card .text .info .adtxt span {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.latest-blogs .card .text .info .read-more {
  color: #00296b;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  position: absolute;
  bottom: 15px;
  right: 25px;
  cursor: pointer;
  z-index: 4;
  transition: 0.4s all ease;
}
.latest-blogs .card .text .info .read-more svg {
  width: 16px;
}
.latest-blogs .card .text .info .read-more:hover {
  right: 20px;
}
.latest-blogs .slick-dots {
  bottom: -36px;
}
.latest-blogs .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  text-indent: -9999px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #e6e6e6;
  border-radius: 50%;
  transition: 0.4s all ease;
}
.latest-blogs .slick-dots li button::after, .latest-blogs .slick-dots li button::before {
  display: none;
}
.latest-blogs .slick-dots li:hover button {
  background: var(--kids-color);
}
.latest-blogs .slick-dots li.slick-active button {
  background: linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%);
}

.blogs-list .nav-pills {
  margin-bottom: 25px;
}
.blogs-list .nav-pills .nav-link {
  padding: 10px 25px;
  background: var(--light);
  color: #4f4f4f;
  border-bottom: 3px solid rgba(79, 79, 79, 0);
  font-weight: 500;
  outline: 0;
}
.blogs-list .nav-pills .nav-link:focus {
  outline: 0;
  box-shadow: none;
}
.blogs-list .nav-link.active,
.blogs-list .show > .nav-link {
  padding: 10px 25px;
  background: var(--light);
  color: #003d85;
  border-bottom: 3px solid #00509d;
  font-weight: 500;
}
.blogs-list .cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  transition: 0.5s all ease;
}
@media (min-width: 1600px) {
  .blogs-list .cards {
    grid-template-columns: repeat(auto-fill, minmax(410px, 1fr));
  }
}
.blogs-list .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.blogs-list .pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.blogs-list .pagination ul li button {
  border: 0;
  border-radius: 50%;
  background: #e1e1e1;
  color: var(--light);
  height: 40px;
  width: 40px;
  font-size: 16px;
  transition: 0.5s all ease;
}
.blogs-list .pagination ul li button.active, .blogs-list .pagination ul li button:hover {
  background: #00296b;
}
.blogs-list .pagination .next,
.blogs-list .pagination .prev {
  border: 0;
  background: transparent;
  color: #6f6f6f;
}
.blogs-list .pagination .next:hover,
.blogs-list .pagination .prev:hover {
  color: #00296b;
}
.blogs-list .pagination .next:hover svg,
.blogs-list .pagination .prev:hover svg {
  transform: translateX(5px);
  transition: all 0.3s ease-out;
}
.blogs-list .pagination .next:hover svg path,
.blogs-list .pagination .prev:hover svg path {
  fill: #00296b;
  stroke: #00296b;
}
.blogs-list .pagination .prev:hover svg {
  transform: translateX(-5px);
}

.blog-card {
  border: 0;
  position: relative;
  border-radius: 28px;
  background: var(--light);
  padding: 14px;
  min-height: 400px;
  overflow: hidden;
  transition: 0.5s all ease;
  position: relative;
  max-width: 450px;
}
@media (max-width: 992px) {
  .blog-card {
    height: 350px !important;
  }
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(155deg, #034598 1.08%, #00295b 82.53%);
  opacity: 0;
  background-size: cover;
  transition: 0.5s all ease;
}
.blog-card::after {
  content: "";
  position: absolute;
  bottom: -2%;
  right: 0;
  height: 100%;
  width: 52%;
  background-image: url(../images/blogs/blog-page/list/pattern.png);
  background-repeat: no-repeat no-repeat;
  opacity: 0;
  z-index: 1;
  background-size: contain;
  background-position: bottom;
}
.blog-card .info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 3;
}
.blog-card .info .adtxt {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-card .info .adtxt span {
  color: var(--dark);
  text-align: center;
  font-size: 16px;
  font-weight: 300;
}
.blog-card h5 {
  color: #131313;
  font-size: 20px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.19;
  position: relative;
  z-index: 5;
  opacity: 0;
  animation: fadeIn 0.8s forwards;
  animation-delay: 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 1.3em;
}
@media (max-width: 992px) {
  .blog-card h5 {
    font-size: 18px !important;
    line-height: 1.3;
    letter-spacing: 1px;
  }
}
.blog-card h5 .letter {
  display: inline-block;
  line-height: 1em;
  opacity: 0;
}
.blog-card p {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  height: 7.02em;
}
.blog-card .button-link {
  padding: 10px 0 30px;
  border-top: 1px solid #e7e7e7;
}
.blog-card .button-link a {
  color: #00296b;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  float: right;
  padding-bottom: 3px;
  position: relative;
  z-index: 4;
  transition: 0.4s all ease;
}
.blog-card .button-link a:hover {
  color: var(--primary);
}
.blog-card .inner-card .image {
  border-radius: 15px;
  height: 240px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  transition: 1.5s all ease;
}
.blog-card .inner-card .image .tag {
  background: var(--light);
  padding: 10px 15px;
  border-radius: 14px;
  color: #00296b;
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
}
@media (max-width: 992px) {
  .blog-card .inner-card .image {
    height: 200px !important;
  }
}
.blog-card .inner-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog-card:hover::before {
  opacity: 1;
}
.blog-card:hover::after {
  opacity: 1;
}
.blog-card:hover .info .adtxt span {
  color: var(--light);
}
.blog-card:hover .info .adtxt span.ad svg path {
  stroke: var(--light);
}
.blog-card:hover .info .adtxt span.dt svg path {
  fill: var(--light);
}
.blog-card:hover h5 {
  color: var(--light);
}
.blog-card:hover span {
  color: var(--light);
}
.blog-card:hover p {
  color: var(--light);
}
.blog-card:hover .button-link {
  border-top: 1px solid transparent;
}
.blog-card:hover .button-link a {
  color: var(--light);
}
.blog-card:hover .button-link a svg path {
  stroke: var(--light);
}

.blog-detail {
  padding-bottom: 0;
}
.blog-detail .image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
}
.blog-detail .image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.blog-detail .para h3 {
  font-size: 1.7vw;
  font-weight: 500;
  margin: 30px 0 10px;
  /* font-family: var(--secondary-font); */
  color: var(--dark-alt);
}
@media (max-width: 992px) {
  .blog-detail .para h3 {
    font-size: 22px;
  }
}
.blog-detail .blog-ul {
  margin-bottom: 20px;
}
.blog-detail .blog-ul .category {
  border-radius: 14px;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%));
  display: inline-flex;
  padding: 13px 18px 14px 18px;
  justify-content: center;
  align-items: center;
}
.blog-detail .blog-ul .category span {
  color: var(--light);
}
.blog-detail .blog-ul .post-single__meta .post-single__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-detail .blog-heading {
  color: #004a95;
  font-family: var(--secondary-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: -2.04px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-detail .info {
  margin-top: 10px;
  margin: 25px 0;
  display: flex;
  align-items: center;
  gap: 25px;
}
.blog-detail .info .adtxt {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-detail .info .adtxt span {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.blog-detail .para p {
  margin-bottom: 10px;
}
.blog-detail .social-info {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-direction: column;
}
.blog-detail .social-info h6 {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.blog-detail .social-info .social_icons {
  display: flex;
  gap: 1.1vw;
  margin-top: 0vw;
}
.blog-detail .social-info .social_icons a::after {
  background: #fff6ec;
}
.blog-detail .social-info .social_icons a:hover::after {
  background: linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%);
}

.latest-blogs .blog-post-card {
  position: relative;
}
.latest-blogs .blog-post-card .blog_img {
  height: 30rem;
}
.latest-blogs .blog-post-card .blog_img img {
  border-radius: 40px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-blogs .blog-post-card .blog_content {
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  right: 2%;
  bottom: 5%;
  content: "";
  width: 60%;
  padding: 50px 30px;
}
.latest-blogs .blog-post-card .blog_content .blog_title {
  margin-bottom: 15px;
  margin-top: 15px;
}
.latest-blogs .blog-post-card .blog_content .blog_title a {
  color: var(--light);
  font-family: var(--secondary-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.92px;
}
.latest-blogs .blog-post-card .blog_content p {
  color: var(--light);
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
}
.latest-blogs .blog-post-card .blog_content .button-link {
  margin-top: 40px;
}
.latest-blogs .blog-post-card .blog_content .button-link a {
  color: var(--light);
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  bottom: 18px;
  padding-bottom: 3px;
  z-index: 4;
  transition: 0.4s all ease;
}

.blogs-list .isotope-box .isotope-item {
  margin-bottom: 20px;
  padding-right: 20px;
  max-width: 33.33%;
}

.isotope-toolbar {
  margin-bottom: 60px;
}
.isotope-toolbar label {
  display: inline-block;
  margin-right: 1rem;
}
.isotope-toolbar label:last-child {
  margin-right: 0;
}
.isotope-toolbar label .isotope-toolbar-btn {
  background-color: var(--light);
  border: none;
  border-radius: 0.375rem;
  padding: 10px 25px;
  font-weight: 500;
}
.isotope-toolbar label .isotope-toolbar-btn span {
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.11;
  color: #4f4f4f;
}
.isotope-toolbar label .isotope-toolbar-btn.active {
  background: var(--light);
  border-bottom: 3px solid #00509d;
}
.isotope-toolbar label .isotope-toolbar-btn.active span {
  color: #003d85;
}

.blog-wrapper {
  margin-bottom: 60px;
}
.blog-wrapper label {
  display: inline-block;
  margin-right: 1rem;
}
.blog-wrapper label:last-child {
  margin-right: 0;
}
.blog-wrapper label .filter-button {
  background-color: var(--light);
  border: none;
  border-radius: 0.375rem;
  padding: 10px 25px;
  font-weight: 500;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.11;
  color: #4f4f4f;
}
.blog-wrapper label .filter-button.active {
  background: var(--light);
  border-bottom: 3px solid #00509d;
  color: #003d85;
}

.my-row .item .blog-card {
  margin-bottom: 1rem;
}

.latest-events .isotope-toolbar {
  margin-bottom: 60px;
}
.latest-events .isotope-toolbar label {
  display: inline-block;
  margin-right: 1rem;
}
.latest-events .isotope-toolbar label:last-child {
  margin-right: 0;
}
.latest-events .isotope-toolbar label .isotope-toolbar-btn {
  background-color: var(--light);
  border: none;
  border-radius: 0.375rem;
  padding: 10px 25px;
  font-weight: 500;
}
.latest-events .isotope-toolbar label .isotope-toolbar-btn span {
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1.1vw;
  font-style: normal;
  line-height: 1.11;
  color: #4f4f4f;
}
@media (max-width: 992px) {
  .latest-events .isotope-toolbar label .isotope-toolbar-btn span {
    font-size: 1rem;
  }
}
.latest-events .isotope-toolbar label .isotope-toolbar-btn.active {
  background: var(--light);
  border-bottom: 3px solid #00509d;
}
.latest-events .isotope-toolbar label .isotope-toolbar-btn.active span {
  color: #003d85;
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card {
  border-radius: 30px;
  background: var(--light-alt3);
  box-shadow: 0px 2px 34px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card::after {
  position: absolute;
  content: "";
  background-image: url(../images/events/event-bg.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 67%;
  z-index: -1;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__image {
  position: relative;
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__image a {
  height: 240px;
  position: relative;
  overflow: hidden;
  display: block;
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__image a img {
  border-radius: 30px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__image .tag {
  position: absolute;
  right: -10%;
  bottom: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, var(--color-3) 76.63%));
  height: 120px;
  width: 120px;
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__image .tag span {
  background: var(--Golden, linear-gradient(90deg, #d68b36 -122.09%, #d3912f -47.55%, #ffb 45.54%, #ffbe6e 121.38%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--secondary-font);
  font-size: 1.8vw;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 992px) {
  .latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__image .tag span {
    font-size: 22px;
  }
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__content {
  padding: 1rem;
  padding-right: 2rem;
  padding-left: 4rem;
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__content .event-card__title a {
  font-size: 2vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, var(--color-3) 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: -1.92px;
}
@media (max-width: 992px) {
  .latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__content .event-card__title a {
    font-size: 30px;
  }
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__meta {
  display: flex;
  align-items: center;
  padding-left: 0;
  gap: 20px;
  margin-top: 1.5rem;
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__meta .post-card__meta-item {
  align-items: center;
  gap: 5px;
  display: flex;
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__meta .post-card__meta-item .icon-text {
  color: #7f7e7e;
  font-family: var(--primary-font);
  font-size: 1.2vw;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 992px) {
  .latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .event-card__meta .post-card__meta-item .icon-text {
    font-size: 16px;
  }
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .know-more-btn {
  margin-top: 1rem;
  text-align: end;
}
.latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .know-more-btn .read-more {
  color: #004a95;
  font-family: var(--primary-font);
  font-size: 1.35vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 992px) {
  .latest-events .isotope-wrapper .isotope-box .isotope-item .event-card .know-more-btn .read-more {
    font-size: 18px;
  }
}
.latest-events .blog_pagination .pagination_wrapper {
  display: flex;
  padding-left: 0;
  list-style: none;
  gap: 20px;
  padding: 1rem 0 3rem;
}
.latest-events .blog_pagination .pagination_wrapper li.page-item {
  display: flex;
  align-items: center;
}
.latest-events .blog_pagination .pagination_wrapper li.page-item .page-link {
  display: flex;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 60px;
  background: #e1e1e1;
  color: var(--light);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1.12vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 992px) {
  .latest-events .blog_pagination .pagination_wrapper li.page-item .page-link {
    font-size: 16px;
  }
}
.latest-events .blog_pagination .pagination_wrapper li.page-item .page-link.active, .latest-events .blog_pagination .pagination_wrapper li.page-item .page-link:hover {
  background: var(--color-3);
}
.latest-events .blog_pagination .pagination_wrapper li.page-item .prev,
.latest-events .blog_pagination .pagination_wrapper li.page-item .next {
  width: auto;
  height: auto;
  background: transparent;
  color: #6f6f6f;
}
.latest-events .blog_pagination .pagination_wrapper li.page-item .prev.active, .latest-events .blog_pagination .pagination_wrapper li.page-item .prev:hover,
.latest-events .blog_pagination .pagination_wrapper li.page-item .next.active,
.latest-events .blog_pagination .pagination_wrapper li.page-item .next:hover {
  color: var(--color-3);
  background: transparent;
}
.latest-events .blog_pagination .pagination_wrapper li.page-item .prev.active svg path, .latest-events .blog_pagination .pagination_wrapper li.page-item .prev:hover svg path,
.latest-events .blog_pagination .pagination_wrapper li.page-item .next.active svg path,
.latest-events .blog_pagination .pagination_wrapper li.page-item .next:hover svg path {
  fill: var(--color-3);
  background: transparent;
}

.events-details-section .event-single .event-single__image {
  position: relative;
  margin-bottom: 2rem;
}
.events-details-section .event-single .event-single__image img {
  border-radius: 30px;
}
.events-details-section .event-single .event-single__image .tag {
  position: absolute;
  right: 0%;
  bottom: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, var(--color-3) 76.63%));
  height: 120px;
  width: 120px;
}
.events-details-section .event-single .event-single__image .tag span {
  background: var(--Golden, linear-gradient(90deg, #d68b36 -122.09%, #d3912f -47.55%, #ffb 45.54%, #ffbe6e 121.38%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--secondary-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.events-details-section .event-single .event-single__content {
  margin-bottom: 3rem;
}
.events-details-section .event-single .event-single__content h2 {
  font-family: var(--primary-font);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, var(--color-3) 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.8rem;
}
.events-details-section .event-single .event-single__content p {
  margin-bottom: 5px;
}
.events-details-section .event-single .event-single__content .event-card__meta {
  display: flex;
  align-items: center;
  padding-left: 0;
  gap: 20px;
  margin-top: 1.5rem;
}
.events-details-section .event-single .event-single__content .event-card__meta .post-card__meta-item {
  align-items: center;
  gap: 5px;
  display: flex;
}
.events-details-section .event-single .event-single__content .event-card__meta .post-card__meta-item .icon-text {
  color: #7f7e7e;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.events-details-section .event-single .event-single__footer .social_icons {
  display: flex;
  gap: 1.1vw;
  margin-top: 0vw;
}
.events-details-section .event-single .event-single__footer .social_icons a::after {
  background: #fff6ec;
}
.events-details-section .event-single .event-single__footer .social_icons a:hover::after {
  background: linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%);
}
.events-details-section .widget__title {
  font-family: var(--secondary-font);
  font-size: 2.1vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, var(--color-3) 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .events-details-section .widget__title {
    font-size: 30px;
  }
}
.events-details-section .widget__latest-posts {
  border-radius: 20px;
  background: var(--light-alt3);
  box-shadow: 0px 2px 34px 0px rgba(0, 0, 0, 0.05);
  padding: 15px;
  position: relative;
  z-index: 1;
}
.events-details-section .widget__latest-posts .widget__latest-posts__item {
  display: flex;
  margin-bottom: 20px;
  position: relative;
}
.events-details-section .widget__latest-posts .widget__latest-posts__item .widget__latest-posts-image {
  margin-right: 15px;
  position: relative;
  height: 88px;
}
.events-details-section .widget__latest-posts .widget__latest-posts__item .widget__latest-posts-image img {
  border-radius: 10px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.events-details-section .widget__latest-posts .widget__latest-posts__item .widget__latest-posts__content p {
  margin-bottom: 10px;
  line-height: 1.26;
}
.events-details-section .widget__latest-posts .widget__latest-posts__item .widget__latest-posts__content p a {
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  color: #004a95;
}
.events-details-section .widget__latest-posts .widget__latest-posts__item .widget__latest-posts__content small {
  color: var(--dark-alt);
  font-family: var(--primary-font);
}
.events-details-section .widget__latest-posts::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../images/events/ed-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  top: 0;
  left: 0;
}

.decoction_section {
  height: 120vh;
  overflow: hidden;
  position: relative;
}
.decoction_section .section_title {
  position: relative;
  top: -30px;
}
@media (max-width: 1024px) {
  .decoction_section {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .decoction_section .one,
  .decoction_section .two,
  .decoction_section .three,
  .decoction_section .four,
  .decoction_section .five,
  .decoction_section .six,
  .decoction_section .seven,
  .decoction_section .eight,
  .decoction_section .nine,
  .decoction_section .ten,
  .decoction_section .ten1,
  .decoction_section .ten2,
  .decoction_section .ten3 {
    position: relative !important;
    margin-bottom: 10px;
  }
}
.decoction_section .img_box {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 68vh;
}
@media (max-width: 1024px) {
  .decoction_section .img_box {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    transform: translate(0px, 0px);
  }
}
.decoction_section .img_box::before {
  content: "";
  background: linear-gradient(180deg, rgba(115, 115, 115, 0) 38.59%, rgba(0, 0, 0, 0.8) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .decoction_section .img_box::before {
    background: rgba(0, 0, 0, 0.2588235294);
  }
}
.decoction_section .img_box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.decoction_section .img_box .content {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  .decoction_section .img_box .content {
    top: 50%;
    bottom: inherit;
  }
}
.decoction_section .img_box .content h3 {
  color: var(--light);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 2.3vw;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .decoction_section .img_box .content h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
.decoction_section .img_box .content p {
  color: var(--light);
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1.6vw;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
}
@media (max-width: 1024px) {
  .decoction_section .img_box .content p {
    font-size: 18px;
    line-height: 22px;
  }
}

.contact .box {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 50px 0px;
}
@media only screen and (min-width: 200px) and (max-width: 800px) {
  .contact .box {
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0px;
  }
}
.contact .box::before {
  content: "";
  background-image: url("../images/contact/stats.jpg");
  background-color: rgba(8, 12, 20, 0.7019607843);
  width: 80%;
  height: 100%;
  position: absolute;
  z-index: 1;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 200px) and (max-width: 800px) {
  .contact .box::before {
    width: 100%;
  }
}
.contact .box .details {
  border-radius: 20px;
  width: 60%;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 200px) and (max-width: 800px) {
  .contact .box .details {
    width: 100%;
  }
}
.contact .box .details .heading {
  padding: 0px 30px;
}
@media only screen and (min-width: 200px) and (max-width: 800px) {
  .contact .box .details .heading {
    padding: 20px;
  }
}
.contact .box .details .heading h3 {
  color: #ffe6c5;
  font-family: var(--primary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.contact .box .details .heading p {
  color: var(--light);
  font-family: var(--primary-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.contact .box .details .heading .contact_info {
  margin-top: 40px;
}
.contact .box .details .heading .contact_info h2 {
  color: #ffe6c5;
  font-family: var(--primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.92px;
  margin-bottom: 30px;
}
.contact .box .details .heading .contact_info .info {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}
.contact .box .details .heading .contact_info .info span a {
  text-decoration: none;
  color: #fff;
  font-family: var(--primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}
.contact .box .details .heading .contact_info .social_icons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact .box .details .heading .contact_info .social_icons a {
  background: var(--light);
}
.contact .box .details .heading .contact_info .social_icons a::after {
  background: var(--gradient-alt);
  outline-color: #d3912f;
}
.contact .box .details .heading .contact_info .social_icons a:hover svg path {
  fill: white;
}
.contact .box .details .heading .contact_info .social_icons a svg {
  height: 20px;
  width: 20px;
}
.contact .box .form {
  padding: 30px;
  border-radius: 20px;
  width: 40%;
  background-color: var(--light-alt3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact .box .form::before {
  content: url("../images/contact/shape.png");
  /* with class ModalCarrot ??*/
  position: absolute;
  /*or absolute*/
  z-index: 0;
  right: 0;
  top: 0;
  z-index: -1;
}
@media only screen and (min-width: 200px) and (max-width: 800px) {
  .contact .box .form {
    width: 100%;
  }
}
.contact .box .form .content h2 {
  font-family: var(--secondary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.92px;
  margin-bottom: 20px;
  text-transform: capitalize;
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact .box .form .content .form-label {
  color: var(--dark);
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
.contact .box .form .content input {
  width: 100%;
  border: none;
  background-color: transparent;
  border-bottom: 1.5px solid rgba(147, 147, 147, 0.7) !important;
  border-radius: 0px;
  color: #656565;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact .box .form .content textarea {
  border: none;
  background-color: transparent;
  border-bottom: 1.5px solid rgba(147, 147, 147, 0.7) !important;
  border-radius: 0px;
  resize: none;
  color: #656565;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact .box .form .content .form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0rem;
}
.contact .box .form .content .form-control:focus {
  box-shadow: none;
}
.contact .box .form .content .primary-btn {
  padding: 15px 23px;
  width: 130px;
  margin: auto;
}
.contact .box .form .content :focus {
  outline: 0;
}
.contact .box .form .content .focus_border {
  float: left;
  width: 100%;
  position: relative;
}
.contact .box .form .content .effect-2 {
  border: 0;
  padding: 7px 0;
}
.contact .box .form .content .effect-2 ~ .focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gradient);
  transition: 0.4s;
}
.contact .box .form .content .effect-2:focus ~ .focus-border {
  width: 100%;
  transition: 0.4s;
  left: 0;
}

.map {
  height: 25rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.somavisa {
  position: relative;
  padding: 3vw 0 6vw;
}
@media (max-width: 720px) {
  .somavisa {
    padding: 3rem 0 10rem;
  }
}
@media (min-width: 1600px) {
  .somavisa .container {
    max-width: 79% !important;
  }
}
.somavisa .information {
  width: 95%;
  margin: auto;
  position: relative;
  z-index: 2;
}
.somavisa .information h2 .treadmark {
  display: inline-block;
  position: relative;
  right: 6px;
  top: -18px;
}
@media (max-width: 992px) {
  .somavisa .information {
    width: 100%;
    height: 80rem;
  }
}
@media (max-width: 720px) {
  .somavisa .information {
    width: 100%;
    height: 55rem;
  }
}
@media (min-width: 1400px) {
  .somavisa .information {
    width: 87%;
  }
}
@media (min-width: 1650px) {
  .somavisa .information {
    width: 100%;
  }
}
.somavisa .information .heading-pg h5 {
  color: #000;
  font-size: 1.5vw;
  font-weight: 400;
}
@media (max-width: 992px) {
  .somavisa .information .heading-pg h5 {
    font-size: 20px;
  }
}
.somavisa .information .info {
  position: relative;
}
@media (max-width: 992px) {
  .somavisa .information .info {
    height: 45rem;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 720px) {
  .somavisa .information .info {
    height: 30rem;
  }
}
.somavisa .information .info .image {
  width: 40vw;
  position: relative;
  left: 0%;
}
@media (min-width: 1024px) and (max-width: 1360px) {
  .somavisa .information .info .image {
    left: 4%;
  }
}
@media (min-width: 1690px) {
  .somavisa .information .info .image {
    width: 35vw;
  }
}
@media (min-width: 1600px) {
  .somavisa .information .info .image {
    width: 40vw;
    position: relative;
    left: 2%;
  }
}
@media (min-width: 1680) and (max-width: 1680px) {
  .somavisa .information .info .image {
    width: 40vw;
    position: relative;
    left: 5%;
  }
}
.somavisa .information .info .image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.somavisa .information .info .text {
  position: absolute;
  top: 7%;
  right: 0%;
  width: 60%;
  height: 100%;
  left: inherit;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  width: 51vw;
}
@media (min-width: 1024px) and (max-width: 1360px) {
  .somavisa .information .info .text {
    right: 4%;
  }
}
@media (max-width: 992px) {
  .somavisa .information .info .text {
    top: 70% !important;
  }
}
@media (max-width: 390px) {
  .somavisa .information .info .text {
    top: 62% !important;
  }
}
@media (min-width: 1690px) {
  .somavisa .information .info .text {
    width: 55%;
  }
}
@media (min-width: 1600px) {
  .somavisa .information .info .text {
    position: absolute;
    top: 7%;
    right: 2%;
    width: 60%;
    height: 100%;
    left: inherit;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    width: 51vw;
  }
}
@media (min-width: 1680px) and (max-width: 1680px) {
  .somavisa .information .info .text {
    position: absolute;
    top: 7%;
    right: 5%;
  }
}
.somavisa .information .info .text-in {
  position: absolute;
  z-index: 2;
  top: 56.5%;
  left: 57%;
  transform: translate(-48%, -50%);
  width: 80%;
  text-align: center;
}
@media (min-width: 1600px) {
  .somavisa .information .info .text-in {
    position: absolute;
    z-index: 2;
    top: 56.5%;
    left: 55%;
    transform: translate(-48%, -50%);
    width: 80%;
    text-align: center;
  }
}
.somavisa .information .info .text-in .svg-qt {
  position: absolute;
  top: 1%;
  left: -3%;
}
.somavisa .information .info .text-in .svg-qt svg {
  width: 80px;
}
.somavisa .information .info .text-in h5 {
  color: #ffbe6e;
  font-family: var(--secondary-font);
  font-size: 2.3vw;
  font-weight: 400;
  margin-bottom: 2vw;
  position: relative;
  z-index: 3;
}
@media (max-width: 992px) {
  .somavisa .information .info .text-in h5 {
    font-size: 32px;
  }
}
.somavisa .information .info .text-in p {
  color: var(--light);
  text-align: center;
  font-size: 1.22vw;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 4.2px;
  line-height: 1.4;
  position: relative;
  z-index: 3;
  width: 93%;
  font-family: var(--tertiary-font);
}
@media (max-width: 992px) {
  .somavisa .information .info .text-in p {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .somavisa .information .info .text-in p {
    color: var(--light);
    text-align: center;
    font-size: 1.08vw;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 4.2px;
    line-height: 1.4;
    position: relative;
    z-index: 3;
    width: 93%;
    font-family: var(--tertiary-font);
  }
}
.somavisa .category {
  padding: 10px 0;
  margin: 20px 0;
  text-align: center;
  margin-bottom: 0;
  background: linear-gradient(90deg, #f4f3ef 0.11%, #ffe7bb 51%, #f4f3ef 100.05%);
}
.somavisa .category h5 {
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 1.5vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .somavisa .category h5 {
    font-size: 20px;
  }
}
.somavisa .category ul {
  display: flex;
  gap: 0 10px;
  justify-content: center;
}
@media (max-width: 768px) {
  .somavisa .category ul {
    flex-wrap: wrap;
    gap: 20px 10px;
  }
}
.somavisa .category ul li {
  border-right: 1px dotted #dfdfdf;
  padding-right: 15px;
  color: #202020;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1.3vw;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
@media (max-width: 768px) {
  .somavisa .category ul li {
    font-size: 20px;
  }
}
@media (max-width: 430px) {
  .somavisa .category ul li {
    font-size: 16px;
  }
}
.somavisa .category ul li:last-child {
  border-right: none;
}
.somavisa.men .information .info .text {
  background: url(../images/soup-story/categories/men.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 992px) {
  .somavisa.men .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 92%;
  }
}
@media (max-width: 720px) {
  .somavisa.men .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 390px) {
  .somavisa.men .information .info .text {
    background-size: 100% 100%;
  }
}
.somavisa.women .information .info .text {
  background: url(../images/soup-story/categories/women.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 992px) {
  .somavisa.women .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 92%;
  }
}
@media (max-width: 720px) {
  .somavisa.women .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 390px) {
  .somavisa.women .information .info .text {
    background-size: 100% 100%;
  }
}
.somavisa.elderly .information .info .text {
  background: url(../images/soup-story/categories/elderly.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 992px) {
  .somavisa.elderly .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 92%;
  }
}
@media (max-width: 720px) {
  .somavisa.elderly .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.somavisa.children .information .info .text {
  background: url(../images/soup-story/categories/children.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 992px) {
  .somavisa.children .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 92%;
  }
}
@media (max-width: 720px) {
  .somavisa.children .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.somavisa.balancing-dosha .information .info .text {
  background: url(../images/soup-story/categories/balancing-dosha.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 992px) {
  .somavisa.balancing-dosha .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 92%;
  }
}
@media (max-width: 720px) {
  .somavisa.balancing-dosha .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.somavisa.vata .information .info .text {
  background: url(../images/soup-story/categories/vata.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 992px) {
  .somavisa.vata .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 92%;
  }
}
@media (max-width: 720px) {
  .somavisa.vata .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.somavisa.pitta .information .info .text {
  background: url(../images/soup-story/categories/pitta.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 992px) {
  .somavisa.pitta .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 92%;
  }
}
@media (max-width: 720px) {
  .somavisa.pitta .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.somavisa.kapha .information .info .text {
  background: url(../images/soup-story/categories/kapha.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 992px) {
  .somavisa.kapha .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 92%;
  }
}
@media (max-width: 720px) {
  .somavisa.kapha .information .info .text {
    background-size: 100% 100%;
    background-position: top center;
    width: 96%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.somavisa::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--light-alt);
}

.benefits {
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) {
  .benefits .row {
    grid-gap: 15px;
  }
}
.benefits h5 {
  color: #000;
  font-family: var(--secondary-font);
  font-size: 2.4vw;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .benefits h5 {
    font-size: 28px;
  }
}
.benefits .card {
  border: 0;
  border-radius: 0;
  background: #fff2dc;
  height: 100%;
  min-height: 230px;
  position: relative;
  overflow: hidden;
  transition: 0.5s all ease;
  width: 100%;
}
.benefits .card::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: -100%;
  right: -100%;
  border-radius: 0 0 0 50%;
  background: #ffebc9;
  transition: 1s all ease;
}
.benefits .card:hover::after {
  top: 0%;
  right: 0%;
  border-radius: 0 0 0 0;
  background: #ffebc9;
}
.benefits .card img {
  width: 10rem;
  height: 10rem;
  margin-left: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 4;
  /* border-top-left-radius: 100% 100%; */
  /* border-top-right-radius: 0%; */
  /* border-bottom-left-radius: 100%; */
  /* border-bottom-right-radius: 100%; */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  position: absolute;
  right: -3rem;
  top: -3rem;
}
.benefits .card .text {
  position: relative;
  z-index: 4;
  padding: 10px 15px;
  width: 94%;
  margin-top: 6rem;
}
.benefits .card .text h4 {
  color: #004a95;
  font-size: 1.44vw;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .benefits .card .text h4 {
    font-size: 20px;
  }
}
.benefits .card .text p {
  line-height: 1.3;
  font-size: 1.15vw;
}
@media (max-width: 992px) {
  .benefits .card .text p {
    font-size: 15px;
  }
}

.herb-system .head-card-text {
  padding: 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  min-height: 42vh;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .herb-system .head-card-text {
    padding-bottom: 280px;
    min-height: auto;
  }
}
.herb-system .head-card-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(./../images/soup-story/head-text-bg.png);
  background-size: 100% 100%;
  background-position: center;
  z-index: 0;
}
@media (max-width: 992px) {
  .herb-system .head-card-text::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./../images/soup-story/head-text-bg.png);
    background-size: cover;
    background-position: 80%;
  }
}
.herb-system .head-card-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 25%;
  height: 120%;
  background: url(./../images/soup-story/head-img.webp);
  background-size: cover;
  background-position: center right;
  z-index: 1;
  border-radius: 50% 0% 0% 60%;
  transform: translateY(-50%);
  border-left: 20px solid #f3e4d1;
}
@media (max-width: 992px) {
  .herb-system .head-card-text::before {
    bottom: 0;
    left: 50%;
    right: inherit;
    top: inherit;
    width: 120%;
    height: 270px;
    background: url(./../images/soup-story/head-img.webp);
    background-size: cover;
    background-position: center right;
    z-index: 1;
    border-radius: 50% 60% 0% 0%;
    transform: translateX(-50%);
    border-top: 20px solid #f3e4d1;
  }
}
.herb-system .head-card-text .head-text {
  color: var(--light);
  font-size: 1.34vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
  position: relative;
  z-index: 6;
  width: 75%;
}
@media (max-width: 992px) {
  .herb-system .head-card-text .head-text {
    font-size: 18px;
    width: 95%;
  }
}
.herb-system .dropdown {
  transition: 0.5s all ease;
}
.herb-system .dropdown .dropdown-menu {
  padding: 15px;
  border: 0;
  transform: none !important;
  inset: 0 70px auto auto !important;
  width: 30%;
  box-shadow: 0px 5px 15px rgba(27, 25, 25, 0.1215686275);
}
@media (max-width: 600px) {
  .herb-system .dropdown .dropdown-menu {
    width: 80%;
  }
}
@media screen and (min-device-width: 600px) and (max-device-width: 1024px) {
  .herb-system .dropdown .dropdown-menu {
    width: 50%;
  }
}
.herb-system .dropdown .dropdown-menu li {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 12px;
}
.herb-system .dropdown .dropdown-menu li a {
  border-radius: 30px;
  background: #fff6ec;
  font-weight: 500;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 77%;
}
.herb-system .dropdown .dropdown-menu li span {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff6ec;
  border-radius: 50%;
}
.herb-system .dropdown .dropdown-menu li.ds a,
.herb-system .dropdown .dropdown-menu li.ds span {
  color: #0da500;
}
.herb-system .dropdown .dropdown-menu li.rs a,
.herb-system .dropdown .dropdown-menu li.rs span {
  color: #8443b7;
}
.herb-system .dropdown .dropdown-menu li.is a,
.herb-system .dropdown .dropdown-menu li.is span {
  color: #ff3002;
}
.herb-system .dropdown .dropdown-menu li.es a,
.herb-system .dropdown .dropdown-menu li.es span {
  color: #ff8a1e;
}
.herb-system .dropdown .dropdown-menu li.cs a,
.herb-system .dropdown .dropdown-menu li.cs span {
  color: #00b998;
}
.herb-system .dropdown .dropdown-menu li.ss a,
.herb-system .dropdown .dropdown-menu li.ss span {
  color: #1862ff;
}
.herb-system .dropdown .dropdown-menu li.ess a,
.herb-system .dropdown .dropdown-menu li.ess span {
  color: #01687f;
}
.herb-system .dropdown .dropdown-menu li.ns a,
.herb-system .dropdown .dropdown-menu li.ns span {
  color: #b12435;
}
.herb-system .dropdown .dropdown-menu li.us a,
.herb-system .dropdown .dropdown-menu li.us span {
  color: #250765;
}
.herb-system .dropdown .dropdown-menu li.rss a,
.herb-system .dropdown .dropdown-menu li.rss span {
  color: #ee9d00;
}
.herb-system .dropdown .dropdown-menu li.as a,
.herb-system .dropdown .dropdown-menu li.as span {
  color: #86a6f9;
}
.herb-system .dropdown .dropdown-toggle::after {
  display: none;
}
.herb-system .dropdown .dropdown-toggle {
  height: 4vw;
  width: 4vw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  background: var(--light);
  border: 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3294117647);
}
.herb-system .table-view {
  margin-top: 20px;
}
.herb-system .table-view .tb-header {
  border-radius: 15px;
  padding: 15px 20px;
  position: relative;
  top: 10px;
  background: var(--men, linear-gradient(154deg, #55250b 7.01%, #a0642d 92.79%));
  box-shadow: 0px 5px 32px 0px rgba(0, 0, 0, 0.27);
}
.herb-system .table-view .tb-header span {
  color: var(--light);
  font-size: 1.4vw;
  font-weight: 500;
}
.herb-system .table-view .tb-header .latin {
  color: var(--light-alt);
  font-size: 1.2vw;
  font-weight: 400;
}
@media (max-width: 992px) {
  .herb-system .table-view .tb-header .latin {
    font-size: 15px;
  }
}
.herb-system .table-view .tb-body h5 {
  color: #57270c;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  padding-left: 10px;
}
.herb-system .table-view .tb-body .data {
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.herb-system .table-view .tb-body .data .herb-hd {
  color: #004a95;
  font-size: 1.07rem;
  font-weight: 500;
}
@media (max-width: 992px) {
  .herb-system .table-view .tb-body .data .herb-hd {
    font-size: 18px;
  }
}
.herb-system .table-view .tb-body .data .latin-name {
  color: #2f6ba8;
  font-size: 0.99rem;
  font-weight: 400;
  font-style: oblique;
  margin-top: 3px;
}
@media (max-width: 992px) {
  .herb-system .table-view .tb-body .data .latin-name {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .herb-system .table-view .tb-body .info {
    padding: 15px 0;
  }
}
.herb-system .table-view .tb-body .info:first-child {
  border-radius: 20px 20px 0 0;
  padding-top: 5px;
}
.herb-system .table-view .tb-body .info:last-child {
  border-radius: 0 0 20px 20px;
}
.herb-system .table-view .tb-body .info:nth-child(odd) {
  background: #fff2dc;
}
@media (max-width: 992px) {
  .herb-system .table-view .tb-body .info:nth-child(odd) {
    border-radius: 20px;
    padding: 15px 0;
  }
}
.herb-system .table-view .tb-body .info:nth-child(even) {
  background: var(--light);
}
.herb-system .table-view .tb-body .info:nth-child(even) .system .sys-dt {
  background: #fff2dc;
}
.herb-system .table-view .tb-body .system {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: start;
  gap: 0px 10px;
}
@media (max-width: 992px) {
  .herb-system .table-view .tb-body .system {
    flex-wrap: wrap;
  }
}
.herb-system .table-view .tb-body .system .sys-dt {
  display: flex;
  width: 2.7rem;
  height: 2.7rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.07rem;
  border-radius: 50%;
  background: var(--light);
  color: #0da500;
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.5s all ease;
}
.herb-system .table-view .tb-body .system .sys-dt::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0%;
  bottom: 125%;
  background-color: var(--light);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  white-space: nowrap;
  text-transform: capitalize;
  padding: 10px 15px;
  border-radius: 10px;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.13));
  font-size: 15px;
}
.herb-system .table-view .tb-body .system .sys-dt::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 96%;
  border-width: 8px;
  border-style: solid;
  border-color: #ffffff rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 10;
}
.herb-system .table-view .tb-body .system .sys-dt:hover {
  background: #0da500;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt:hover::after, .herb-system .table-view .tb-body .system .sys-dt:hover::before {
  opacity: 1;
  visibility: visible;
}
.herb-system .table-view .tb-body .system .sys-dt.ds {
  color: #0da500;
}
.herb-system .table-view .tb-body .system .sys-dt.ds:hover {
  background: #0da500;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt.ds::after {
  color: #0da500;
}
.herb-system .table-view .tb-body .system .sys-dt.rs {
  color: #8443b7;
}
.herb-system .table-view .tb-body .system .sys-dt.rs:hover {
  background: #8443b7;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt.rs::after {
  color: #8443b7;
}
.herb-system .table-view .tb-body .system .sys-dt.is {
  color: #ff3002;
}
.herb-system .table-view .tb-body .system .sys-dt.is:hover {
  background: #ff3002;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt.is::after {
  color: #ff3002;
}
.herb-system .table-view .tb-body .system .sys-dt.es {
  color: #ff8a1e;
}
.herb-system .table-view .tb-body .system .sys-dt.es:hover {
  background: #ff8a1e;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt.es::after {
  color: #ff8a1e;
}
.herb-system .table-view .tb-body .system .sys-dt.cs {
  color: #00b998;
}
.herb-system .table-view .tb-body .system .sys-dt.cs:hover {
  background: #00b998;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt.cs::after {
  color: #00b998;
}
.herb-system .table-view .tb-body .system .sys-dt.ss {
  color: #1862ff;
}
.herb-system .table-view .tb-body .system .sys-dt.ss:hover {
  background: #1862ff;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt.ss::after {
  color: #1862ff;
}
.herb-system .table-view .tb-body .system .sys-dt.ess {
  color: #01687f;
}
.herb-system .table-view .tb-body .system .sys-dt.ess:hover {
  background: #01687f;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt.ess::after {
  color: #01687f;
}
.herb-system .table-view .tb-body .system .sys-dt.ns {
  color: #b12435;
}
.herb-system .table-view .tb-body .system .sys-dt.ns:hover {
  background: #b12435;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt.ns::after {
  color: #b12435;
}
.herb-system .table-view .tb-body .system .sys-dt.us {
  color: #250765;
}
.herb-system .table-view .tb-body .system .sys-dt.us:hover {
  background: #250765;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt.us::after {
  color: #250765;
}
.herb-system .table-view .tb-body .system .sys-dt.rss {
  color: #ee9d00;
}
.herb-system .table-view .tb-body .system .sys-dt.rss:hover {
  background: #ee9d00;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt.rss::after {
  color: #ee9d00;
}
.herb-system .table-view .tb-body .system .sys-dt.as {
  color: #86a6f9;
}
.herb-system .table-view .tb-body .system .sys-dt.as:hover {
  background: #86a6f9;
  color: #fff;
}
.herb-system .table-view .tb-body .system .sys-dt.as::after {
  color: #86a6f9;
}

.nutritional-values {
  background: var(--light-alt);
}
.nutritional-values h3 {
  color: var(--dark);
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 2.7vw;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .nutritional-values h3 {
    font-size: 32px;
  }
}
.nutritional-values .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.nutritional-values .card {
  padding: 1px !important;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  max-width: 220px;
  width: 100%;
  background: linear-gradient(180deg, #ffe6b8, transparent);
}
.nutritional-values .card .card-bd {
  background: var(--light);
  min-height: 200px;
  border-radius: 10px;
  position: relative;
  transition: 1s all ease;
}
.nutritional-values .card .card-bd::after {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  bottom: -100%;
  left: -100%;
  border-radius: 0 50% 0 0;
  background: var(--gradient);
  transition: all 1s ease, border-radius 1s ease 0.8s;
}
.nutritional-values .card .card-bd:hover .text h4 {
  color: var(--light);
}
.nutritional-values .card .card-bd:hover .text h6 {
  color: var(--light);
}
.nutritional-values .card .card-bd:hover::after {
  bottom: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  border-radius: 0 0 0 0;
  background: var(--gradient);
}
.nutritional-values .card .card-bd:hover img:nth-child(1) {
  opacity: 0;
}
.nutritional-values .card .card-bd:hover img:nth-child(2) {
  opacity: 1;
}
.nutritional-values .card .card-bd .text {
  padding: 15px;
  position: relative;
  z-index: 4;
}
.nutritional-values .card .card-bd h4 {
  color: #8c5324;
  font-family: var(--secondary-font);
  font-size: 1.5rem;
  font-weight: 400;
  transition: 1s all ease;
}
.nutritional-values .card .card-bd h4.al {
  font-family: var(--primary-font);
}
.nutritional-values .card .card-bd h6 {
  color: #8c5324;
  font-size: 1.2vw;
  font-weight: 400;
  margin-bottom: 15px;
  transition: 1s all ease;
}
.nutritional-values .card .card-bd img {
  width: 60px;
  margin-top: 30px;
  margin-top: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
  transition: 1s all ease;
}
.nutritional-values .card .card-bd img:nth-child(1) {
  opacity: 1;
}
.nutritional-values .card .card-bd img:nth-child(2) {
  opacity: 0;
}
.nutritional-values .card2 {
  width: 100% !important;
  max-width: 100% !important;
}
.nutritional-values .card2 h4 {
  font-family: var(--primary-font) !important;
}
@keyframes float {
  from {
    transform: translateY(0);
  }
  from {
    transform: translateY(-5px);
  }
}
@media (max-width: 992px) {
  .gallery_section {
    min-height: calc(100vh - 600px);
  }
}
.gallery_section article {
  background-color: #ffffff;
  display: block;
  float: left;
  width: 33.333%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.gallery_section article .gallery-images a {
  display: block;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  transition: 0.5s all ease;
  height: 100%;
  border: 1px solid rgba(204, 204, 204, 0.3019607843);
}
.gallery_section article .gallery-images a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 40px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg width='65' height='65' viewBox='0 0 65 65' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.96292 32.4987C6.96598 32.5038 6.96907 32.5093 6.97219 32.5147C7.21534 32.9315 7.58779 33.5357 8.09438 34.2653C9.10879 35.7262 10.6539 37.6778 12.7672 39.6287C16.9866 43.5235 23.444 47.3945 32.4997 47.3945C41.5553 47.3945 48.0128 43.5235 52.2323 39.6287C54.3454 37.6778 55.8905 35.7262 56.905 34.2653C57.4115 33.5357 57.7839 32.9315 58.0271 32.5147C58.0303 32.5093 58.0333 32.5038 58.0366 32.4987C58.0333 32.4933 58.0303 32.4881 58.0271 32.4827C57.7839 32.0659 57.4115 31.4617 56.905 30.7321C55.8905 29.2712 54.3454 27.3196 52.2323 25.3687C48.0128 21.4738 41.5553 17.6029 32.4997 17.6029C23.444 17.6029 16.9866 21.4738 12.7672 25.3687C10.6539 27.3196 9.10879 29.2712 8.09438 30.7321C7.58779 31.4617 7.21534 32.0659 6.97219 32.4827C6.96907 32.4881 6.96598 32.4936 6.96292 32.4987ZM59.583 32.4987C60.7942 31.8931 60.7939 31.8926 60.7936 31.8918L60.7904 31.8858L60.7836 31.8725L60.7611 31.8284C60.7419 31.7916 60.7148 31.7398 60.6794 31.6737C60.6081 31.5421 60.5041 31.3542 60.3665 31.1183C60.0914 30.6462 59.6808 29.981 59.1296 29.1872C58.0282 27.6012 56.3571 25.4905 54.0691 23.3787C49.4866 19.1486 42.4024 14.8945 32.4997 14.8945C22.597 14.8945 15.5127 19.1486 10.9301 23.3787C8.64233 25.4905 6.97129 27.6012 5.86984 29.1872C5.31848 29.981 4.90803 30.6462 4.63278 31.1183C4.49512 31.3542 4.39114 31.5421 4.32013 31.6737C4.28463 31.7398 4.25735 31.7916 4.2382 31.8284L4.21562 31.8725L4.20887 31.8858L4.20662 31.8901C4.20627 31.8909 4.20514 31.8931 5.41636 32.4987L4.20514 31.8931L3.90234 32.4987L4.20514 33.1043L5.41636 32.4987C4.20514 33.1043 4.20481 33.1037 4.20514 33.1043L4.20662 33.1073L4.20887 33.1116L4.21562 33.1249L4.2382 33.169C4.25735 33.2058 4.28463 33.2576 4.32013 33.3237C4.39114 33.4553 4.49512 33.6432 4.63278 33.8791C4.90803 34.3512 5.31848 35.0164 5.86984 35.8102C6.97129 37.3962 8.64233 39.5071 10.9301 41.6187C15.5127 45.8489 22.597 50.1029 32.4997 50.1029C42.4024 50.1029 49.4866 45.8489 54.0691 41.6187C56.3571 39.5071 58.0282 37.3962 59.1296 35.8102C59.6808 35.0164 60.0914 34.3512 60.3665 33.8791C60.5041 33.6432 60.6081 33.4553 60.6794 33.3237C60.7148 33.2576 60.7419 33.2058 60.7611 33.169L60.7836 33.1249L60.7904 33.1116L60.7928 33.1073C60.7931 33.1064 60.7942 33.1043 59.583 32.4987ZM59.583 32.4987L60.7942 33.1043L61.097 32.4987L60.7936 31.8918L59.583 32.4987Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M32.4997 25.7279C28.7603 25.7279 25.7288 28.7593 25.7288 32.4987C25.7288 36.2381 28.7603 39.2695 32.4997 39.2695C36.2391 39.2695 39.2705 36.2381 39.2705 32.4987C39.2705 28.7593 36.2391 25.7279 32.4997 25.7279ZM23.0205 32.4987C23.0205 27.2635 27.2645 23.0195 32.4997 23.0195C37.7349 23.0195 41.9788 27.2635 41.9788 32.4987C41.9788 37.7339 37.7349 41.9779 32.4997 41.9779C27.2645 41.9779 23.0205 37.7339 23.0205 32.4987Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 2;
  transition: 0.5s all ease;
}
.gallery_section article .gallery-images a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  transform: translate(-50%, -50%);
  background: rgba(0, 60, 134, 0.4784313725);
  transition: 0.5s all ease;
}
.gallery_section article .gallery-images a .image {
  position: relative;
}
.gallery_section article .gallery-images a .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.gallery_section article .gallery-images a .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(17, 41, 82, 0.95), transparent);
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s all ease;
}
.gallery_section article .gallery-images .text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 85%;
  z-index: 4;
  height: auto;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.5s all ease;
}
.gallery_section article .gallery-images .text h4 {
  font-size: 23px;
  text-align: center;
  color: #fff;
  font-weight: 400;
}
.gallery_section article .gallery-images:hover .image::after {
  opacity: 1;
}
.gallery_section article .gallery-images:hover .text {
  opacity: 1;
}
.gallery_section article .gallery-images:hover a::before {
  width: 40px;
}
.gallery_section article .gallery-images:hover a::after {
  width: 100%;
}

.sticky-re {
  position: sticky;
  top: 0;
}

@media (max-width: 768px) {
  body section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .social_icons {
    margin: 0;
  }
  .social_icons a i {
    font-size: 16px;
  }
  body .semi_title {
    font-size: 25px;
    padding-bottom: 15px !important;
  }
  .blog-detail .image {
    height: 300px;
  }
  .blog-detail .image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-detail .blog-ul {
    gap: 1.3rem;
  }
  .blog-detail .blog-ul .category {
    width: 35%;
  }
  .blog-detail .blog-heading {
    font-size: 25px;
    line-height: 1.3;
  }
  .blogs-list .blog-card {
    height: auto !important;
  }
  .blogs-list .pagination {
    gap: 10px;
  }
  .blogs-list .pagination .prev,
  .blogs-list .pagination .next {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .blogs-list .pagination .prev svg,
  .blogs-list .pagination .next svg {
    height: 15px;
    width: 15px;
  }
  .blogs-list .pagination ul li button {
    height: 30px;
    width: 30px;
    font-size: 14px;
  }
  .latest-blogs .blog-post-card .blog_content {
    position: relative;
    width: 100%;
    right: 0;
    bottom: auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  .latest-blogs .blog-post-card .blog_content .blog_title a {
    color: var(--dark);
    font-size: 25px;
  }
  .latest-blogs .blog-post-card .blog_content p {
    color: var(--dark);
  }
  .latest-blogs .blog-post-card .blog_content .button-link {
    margin-top: 15px;
  }
  .latest-blogs .blog-post-card .blog_content .button-link a {
    color: var(--dark);
  }
  .latest-blogs .blog-post-card .blog_content .button-link a svg path {
    fill: var(--dark);
  }
  .isotope-toolbar {
    margin-bottom: 30px;
  }
  .isotope-toolbar label {
    display: contents;
  }
  .blogs-list .isotope-box .isotope-item {
    max-width: 100%;
    padding-right: 0;
  }
  body .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
  }
  body .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 13px;
    padding: 2vw 7vw 0 0;
  }
  body .accordion .accordion-item {
    padding: 3.4vw;
  }
  .gallery_section article {
    width: 100%;
    padding: 0;
  }
  .contact .box::before {
    background-position: right;
  }
  .contact .box .form {
    margin-top: 1rem;
  }
  .contact .box .details .heading .contact_info .info span a {
    font-size: 14px;
  }
  .contact .box .details .heading .contact_info h2 {
    margin-bottom: 15px;
  }
  .nutritional-values .cards {
    grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .nutritional-values .card .card-bd {
    min-height: 170px;
  }
  .somavisa .information .info {
    display: flex;
    margin-top: 2rem;
    flex-direction: column;
    gap: 0;
  }
  .somavisa .information .info .image {
    width: 100%;
    position: relative;
    left: 0%;
  }
  .somavisa .information .info .text {
    position: absolute;
    top: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
    left: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
  }
  .somavisa .information .info .text-in {
    position: absolute;
    z-index: 2;
    top: auto;
    left: 0;
    transform: none;
    width: 100%;
    text-align: center;
    bottom: 0;
    padding: 0 10px;
  }
  .herb-system .table-view .tb-header span {
    font-size: 16px;
  }
  .history_section .img_container {
    transform: none !important;
    visibility: visible;
  }
  .philosophy_section .background_column {
    position: relative;
    width: 100%;
    right: 0;
    top: 0;
    padding: 60px 10px;
  }
  .herb-system .dropdown .dropdown-toggle {
    height: 35px;
    width: 35px;
  }
  .herb-system .dropdown .dropdown-toggle svg {
    width: 25px;
    height: 25px;
  }
  .somavisa .information .info .text-in h5 {
    font-size: 25px;
  }
  .somavisa .information .info .text-in .svg-qt svg {
    width: 60px;
  }
  .somavisa .information .info .text-in p {
    font-size: 16px;
    width: 100%;
    margin-bottom: 5px;
  }
  .history_section,
  .herb-system {
    padding-bottom: 0px;
  }
  .history_section .description_column {
    padding: 0;
  }
  .herb-system .head-text {
    font-size: 18px;
  }
  .constituents_section .herbs_detail {
    padding: 20px;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .constituents_section .constituents_detail {
    padding-left: 0;
  }
  body .section_title {
    margin-bottom: 15px;
  }
  .nutritional-values h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .benefits h5 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .herb-system .table-view .tb-body .system .sys-dt::after {
    right: 0%;
    left: auto;
  }
  .nutritional-values .card .card-bd h6 {
    font-size: 16px;
  }
  .nutritional-values .card .card-bd h4 {
    font-size: 1.4rem;
  }
  .history_section .one {
    margin-bottom: 40px;
  }
  .history_section .one:last-child {
    margin-bottom: 0px;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .gallery_section article {
    width: 50%;
  }
  .somavisa .information .info .image {
    width: 100%;
    position: relative;
    left: 2%;
  }
  .herb-system {
    padding-bottom: 0;
  }
  .contact .box .form {
    margin-top: 2rem;
  }
  .contact .box {
    flex-direction: column;
    padding: 50px 0px 0;
  }
  .contact .box::before {
    width: 100%;
    background-position: right;
  }
  .contact .box .details {
    width: 100%;
    padding: 30px 0 0;
  }
  .contact .box .form {
    width: 93%;
  }
  .contact .box .details .heading .contact_info .social_icons a {
    width: 35px;
    height: 35px;
  }
  .somavisa .information .info .text {
    position: absolute;
    top: 0%;
    right: 4%;
    width: 100%;
    height: 100%;
    left: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
  }
  .somavisa .information .info .text-in {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    bottom: 0;
    transform: translate(-50%, -50%) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  body .accordion .accordion-item {
    padding: 1.4vw;
  }
  body .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
  }
  body .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
  }
  .somavisa .information .info .image {
    width: 100%;
    position: relative;
    left: 0%;
  }
  .herb-system .dropdown .dropdown-toggle {
    height: 35px;
    width: 35px;
  }
  .herb-system .dropdown .dropdown-toggle svg {
    width: 25px;
    height: 25px;
  }
  .philosophy_section .background_column {
    top: -12%;
  }
  .blog-detail .image {
    height: 300px;
  }
  .blog-detail .image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-detail .blog-ul {
    gap: 1.3rem;
  }
  .blog-detail .blog-ul .category {
    width: 35%;
  }
  .blog-detail .blog-heading {
    font-size: 25px;
    line-height: 1.3;
  }
  .blogs-list .blog-card {
    height: auto !important;
  }
  .blogs-list .pagination {
    gap: 10px;
  }
  .blogs-list .pagination .prev,
  .blogs-list .pagination .next {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .blogs-list .pagination .prev svg,
  .blogs-list .pagination .next svg {
    height: 15px;
    width: 15px;
  }
  .blogs-list .pagination ul li button {
    height: 30px;
    width: 30px;
    font-size: 14px;
  }
  .latest-blogs .blog-post-card .blog_content {
    position: relative;
    width: 100%;
    right: 0;
    bottom: auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  .latest-blogs .blog-post-card .blog_content .blog_title a {
    color: var(--dark);
    font-size: 25px;
  }
  .latest-blogs .blog-post-card .blog_content p {
    color: var(--dark);
  }
  .latest-blogs .blog-post-card .blog_content .button-link {
    margin-top: 15px;
  }
  .latest-blogs .blog-post-card .blog_content .button-link a {
    color: var(--dark);
  }
  .latest-blogs .blog-post-card .blog_content .button-link a svg path {
    fill: var(--dark);
  }
  .isotope-toolbar {
    margin-bottom: 30px;
  }
  .isotope-toolbar label {
    display: contents;
  }
  .blogs-list .isotope-box .isotope-item {
    max-width: 50%;
    padding-right: 0;
  }
  body .section_title {
    margin-bottom: 20px;
  }
}
.herb-system {
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .circle-grid .primary-btn {
    margin: auto;
    font-size: 20px;
    margin-top: 10px;
  }
}
@media (max-width: 1024px) {
  .circle-grid .copy-wrap p {
    font-size: 18px !important;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .history_section .img_container {
    transform: none !important;
    visibility: visible;
  }
  .history_section .description_column {
    padding: 16px 0;
  }
}
/*============================== Logo Story Section by sushant 26-07 ==============================*/
.logo_story_section {
  padding-bottom: 25px;
}
.logo_story_section .italic_text {
  margin-bottom: 2rem;
}
.logo_story_section .italic_text span {
  color: var(--dark-alt);
  font-size: 1.12vw;
  font-style: italic;
  font-weight: 300;
}
@media (max-width: 992px) {
  .logo_story_section .italic_text span {
    font-size: 1rem;
  }
}
.logo_story_section .logo-questions {
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}
@media (min-width: 1600px) {
  .logo_story_section .logo-questions {
    display: flex;
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
    width: 76%;
    margin: auto;
    margin-bottom: 4rem;
  }
}
@media (max-width: 1200px) {
  .logo_story_section .logo-questions {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .logo_story_section .logo-questions {
    margin-bottom: 4rem;
  }
}
@media (max-width: 1200px) {
  .logo_story_section .logo-questions .question_img {
    margin-bottom: 0.51rem;
  }
}
@media (max-width: 992px) {
  .logo_story_section .logo-questions .question_img {
    width: 86%;
  }
}
@media (max-width: 767px) {
  .logo_story_section .logo-questions .question_img {
    width: 100%;
  }
}
.logo_story_section .logo-questions .question_content {
  padding: 25px;
  padding-right: 60px;
  background: var(--light-alt3);
  background-image: url(../images/logo-story/bg.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 10px;
  width: 50%;
}
@media (max-width: 992px) {
  .logo_story_section .logo-questions .question_content {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .logo_story_section .logo-questions .question_content {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .logo_story_section .logo-questions .question_content {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -10%;
  }
}
.logo_story_section .logo-questions .question_content .question_list li {
  color: var(--dark-alt);
  font-family: var(--primary-font);
  font-size: 1.0569vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 0.51rem;
}
@media (max-width: 992px) {
  .logo_story_section .logo-questions .question_content .question_list li {
    font-size: 1rem;
  }
}
.logo_story_section .logo-questions .question_content .question_list li:last-child {
  margin-bottom: 0;
}

.soma-section {
  background: var(--light-alt3);
  padding: 30px 0;
}
.soma-section .clearfix .content p {
  color: var(--dark-alt);
  line-height: 1.55;
  margin-bottom: 0.51rem;
}
.soma-section .clearfix .content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .soma-section .clearfix .content img {
    display: block;
    margin: auto;
    width: 100%;
  }
}

.infinity_section {
  position: relative;
  z-index: 1;
  padding: 0;
}
@media (max-width: 768px) {
  .infinity_section .infinity_img {
    height: 250px;
  }
  .infinity_section .infinity_img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.infinity_section .blue_img {
  height: 300px;
  width: 300px;
  position: absolute;
  bottom: -30%;
  right: 10%;
}
@media (max-width: 768px) {
  .infinity_section .blue_img {
    height: 150px;
    width: 150px;
    bottom: -20%;
    right: 10%;
  }
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .infinity_section .blue_img {
    height: 200px;
    width: 200px;
    bottom: -20%;
    right: 10%;
  }
}
@media (min-width: 1200px) {
  .infinity_section .infinity_img img {
    width: 100%;
  }
}

.primoial_section {
  padding: 30px 0 120px;
}
@media (max-width: 768px) {
  .primoial_section {
    padding: 30px 0 160px;
  }
}
.primoial_section p {
  color: var(--dark-alt);
  line-height: 1.55;
  margin-bottom: 0.51rem;
}
.primoial_section p:last-child {
  margin-bottom: 0;
}
.primoial_section .prmimodial_waters {
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .primoial_section .prmimodial_waters {
    padding-bottom: 0;
  }
}
.primoial_section .agniinteraction .agniinteraction_img {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .primoial_section .agniinteraction .agniinteraction_img {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.satya_section {
  position: relative;
  z-index: 1;
  padding: 0;
}
@media (max-width: 768px) {
  .satya_section .img {
    height: 250px;
  }
  .satya_section .img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 1200px) {
  .satya_section .img img {
    width: 100%;
  }
}
.satya_section .background_column {
  position: absolute;
  left: 6%;
  top: -10%;
  background: var(--light-alt3);
  border-radius: 10px;
  padding: 2vw 2.5vw;
  background-image: url("../images/history/philosophy_before.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
}
@media (min-width: 1200px) {
  .satya_section .background_column {
    width: 35%;
  }
}
.satya_section .truth_section {
  background: #fff6ec;
  padding: 30px 0;
}
.satya_section .truth_section p {
  color: var(--dark-alt);
  line-height: 1.55;
  margin-bottom: 0.51rem;
}
.satya_section .truth_section p:last-child {
  margin-bottom: 0;
}

.divine_section p {
  color: var(--dark-alt);
  line-height: 1.55;
  margin-bottom: 0.51rem;
}
.divine_section p:last-child {
  margin-bottom: 0;
}
.divine_section .divine-img {
  margin: 10px 0;
}

.rain_section {
  background: #fff6ec;
  padding: 30px 0;
}
.rain_section p {
  color: var(--dark-alt);
  line-height: 1.55;
  margin-bottom: 0.51rem;
}
.rain_section p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .rain_section .rain_img {
    width: 50%;
    margin-right: 1rem;
  }
}

/*============================== Logo Story Section by sushant 26-07 ==============================*/
/*============================== About Section by sushant 29-07 ==============================*/
.about-wrapper p {
  color: var(--dark-alt);
  line-height: 1.55;
  margin-bottom: 0.51rem;
}
.about-wrapper p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .about-wrapper .indian_alchemy .content img {
    width: 100%;
  }
}
.about-wrapper .rasaratna-ayurveda {
  background-color: #fff6ec;
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .about-wrapper .rasaratna-ayurveda .clearfix img {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .about-wrapper .rasaratna-herbal .clearfix img {
    width: 100%;
  }
}
.about-wrapper .soma-tatra-medical-food {
  background-color: #fff6ec;
}
@media (min-width: 1600px) {
  .about-wrapper .soma-tatra-medical-food .content {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .about-wrapper .soma-tatra-medical-food .img img {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .about-wrapper .soma-tatra-medical-food .img {
    position: absolute;
  }
}
.about-wrapper .soup-recipes .img {
  width: 100%;
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .about-wrapper .soup-recipes .img img {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .about-wrapper .liduid-cosmology .content img {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .about-wrapper .alchemical-overtones .img {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .about-wrapper .alchemical-overtones .img img {
    width: 100%;
  }
}
.about-wrapper .fight-lifestyle {
  background-color: #fff6ec;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .about-wrapper .fight-lifestyle {
    padding: 5vw 0 11vw;
  }
}
.about-wrapper .fight-lifestyle .img-wrapper {
  position: relative;
  margin-top: 22px !important;
}
.about-wrapper .fight-lifestyle .img-wrapper img {
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .about-wrapper .soup-effects {
    padding: 16vw 0 6vw;
  }
}
.about-wrapper .digestion {
  background-color: #fff6ec;
}
@media (min-width: 1200px) {
  .about-wrapper .digestion .content img {
    margin-top: -1.9rem;
    width: 50%;
  }
}
.about-wrapper .alchemical-overtones .content {
  padding: 2rem 1rem;
  background-color: #fff6ec;
}
@media (min-width: 992px) {
  .about-wrapper .alchemical-overtones .content {
    width: 70%;
  }
}

/*============================== About Section by sushant 29-07 ==============================*/
/*============================== Thanks/Error ==============================*/
.thank-you {
  position: relative;
  background-color: var(--light-alt3);
  height: 100vh;
}
.thank-you::before {
  content: url("../images/icons/shape-t.png");
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  height: 100%;
}
.thank-you .container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.thank-you .heading {
  padding-top: 5vw;
  position: relative;
  z-index: 7;
}
.thank-you .heading p {
  color: #2d2d2d;
  text-align: center;
  font-family: var(--primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  position: relative;
  z-index: 7;
}
@media (max-width: 821px) {
  .thank-you .heading p {
    padding: 0px 10px;
  }
}
.thank-you .heading h1 {
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 4.6vw;
  font-style: normal;
  font-weight: 400;
  line-height: 96px;
  /* 117.073% */
  text-transform: capitalize;
  line-height: 1.3;
  background: var(--kids-color, linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
@media (max-width: 821px) {
  .thank-you .heading h1 {
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: -0.92px;
  }
}
.thank-you .button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  position: relative;
  z-index: 7;
}
.thank-you .button-wrap .primary-btn {
  width: 270px;
}

.our-story {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.our-story .product-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-story .product-thumbs .swiper-wrapper {
  /* margin-top: calc(-100%); */
  margin-top: 0%;
}
.our-story .product-thumbs .swiper-slide {
  width: 100%;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  flex-wrap: nowrap;
  background: transparent;
  /* border: 1px solid red; */
  /* height: 50px !important; */
}
@media (max-width: 992px) {
  .our-story .product-thumbs .swiper-slide {
    padding: 15px;
  }
}
.our-story .product-thumbs .swiper-slide.swiper-slide-prev {
  padding-top: 0;
  padding-bottom: 60px;
}
@media (max-width: 992px) {
  .our-story .product-thumbs .swiper-slide.swiper-slide-prev {
    padding: 15px;
    padding-bottom: 15px;
  }
}
.our-story .product-thumbs .swiper-slide.swiper-slide-next {
  padding-bottom: 0;
  padding-top: 60px;
}
@media (max-width: 992px) {
  .our-story .product-thumbs .swiper-slide.swiper-slide-next {
    padding-bottom: 15px;
    padding: 15px;
    padding-top: 15px;
  }
}
.our-story .product-thumbs .swiper-slide h4 {
  font-size: 1.57vw;
  line-height: 1.4;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .our-story .product-thumbs .swiper-slide h4 {
    color: var(--dark);
    font-size: 19px;
    line-height: 1.5;
    padding-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 60px;
  }
}
.our-story .product-thumbs .swiper-slide .para-text {
  opacity: 0;
  visibility: hidden;
  /* transform: translateY(-5%); */
  position: absolute;
  display: none;
  position: relative;
  z-index: 2;
}
.our-story .product-thumbs .swiper-slide-active {
  width: 100%;
  padding: 25px;
  padding-bottom: 42px;
}
@media (max-width: 992px) {
  .our-story .product-thumbs .swiper-slide-active {
    color: var(--kids-color);
    padding: 15px;
    padding-bottom: 15px;
  }
}
.our-story .product-thumbs .swiper-slide-active h4 {
  color: #fff;
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .our-story .product-thumbs .swiper-slide-active h4 {
    color: var(--kids-color);
    padding-bottom: 15px;
  }
}
.our-story .product-thumbs .swiper-slide-active .para-text {
  opacity: 1;
  visibility: visible;
  position: relative;
  display: block;
}
.our-story .product-thumbs .swiper-slide-active .para-text p {
  color: #fff;
}
.our-story .product-thumbs .swiper-button-next {
  right: 2%;
}
.our-story .product-thumbs .swiper-button-prev {
  right: 8%;
}
.our-story .product-thumbs .swiper-button-next,
.our-story .product-thumbs .swiper-button-prev {
  position: absolute;
  left: auto;
  bottom: 4%;
  top: auto;
  transform: rotate(90deg);
  background-size: 25px 25px;
  width: 30px;
  height: 30px;
  z-index: 999;
}
.our-story-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 10rem;
  border-right: 1px solid rgba(255, 255, 255, 0.7725490196);
  z-index: 5;
  height: 100%;
}
.our-story-content .dive-logo {
  display: none;
}
.our-story-content .dive-logo img {
  margin-bottom: 18px;
  width: auto;
}
@media (max-width: 992px) {
  .our-story-content .dive-logo {
    display: block;
  }
}
@media (max-width: 992px) {
  .our-story-content {
    height: 40%;
    position: relative;
    width: 100%;
    border: 0;
    text-align: center;
  }
}
.our-story-content h4 {
  color: #fff;
  font-family: var(--secondary-font);
  font-size: 2vw;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  transform: rotate(-90deg) translateY(-50%);
  position: relative;
  top: 75%;
  left: 10%;
}
@media (max-width: 992px) {
  .our-story-content h4 {
    color: var(--dark);
    font-family: var(--secondary-font);
    transform: none;
    position: relative;
    top: 0%;
    left: 0%;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    white-space: normal;
    padding-bottom: 34px;
  }
}
.our-story .section_title {
  -height: 1.4;
}
.our-story .story-slider {
  height: 100vh;
}
@media (max-width: 992px) {
  .our-story .story-slider {
    height: auto;
  }
}
.our-story .story-slider .content-slick-nav .slick-slide {
  pointer-events: none;
}
.our-story .story-slider .thumb-prev,
.our-story .story-slider .thumb-next {
  pointer-events: auto;
}
.our-story .story-slider .image-slick-for .image {
  position: relative;
  height: 100vh;
}
@media (max-width: 992px) {
  .our-story .story-slider .image-slick-for .image {
    height: 30rem;
  }
}
.our-story .story-slider .image-slick-for .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.our-story .story-slider .image-slick-for .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(87deg, rgba(124, 124, 124, 0) -0.79%, rgba(0, 0, 0, 0.6) 65.27%);
}
.our-story .story-slider .content-slick-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  transform: rotate(180deg);
}
@media (max-width: 992px) {
  .our-story .story-slider .content-slick-nav {
    position: static;
    width: 100%;
    transform: rotate(0deg);
  }
}
.our-story .story-slider .content-slick-nav .slick-slide {
  margin: 0;
  padding: 0;
  transform: rotate(180deg);
}
@media (max-width: 992px) {
  .our-story .story-slider .content-slick-nav .slick-slide {
    transform: rotate(0deg);
  }
}
.our-story .story-slider .content-slick-nav .slick-slide .content {
  padding: 20px;
  transition: 0.5s all ease;
}
@media (max-width: 992px) {
  .our-story .story-slider .content-slick-nav .slick-slide .content {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3490196078);
  }
}
.our-story .story-slider .content-slick-nav .slick-slide .content .para-text {
  display: none;
  visibility: hidden;
}
.our-story .story-slider .content-slick-nav .slick-slide .content h4 {
  color: var(--light);
  font-size: 1.72vw;
  font-weight: 400;
  background: var(--Blue, linear-gradient(103deg, #ffffff -6.88%, #ffffff 76.63%));
  background-clip: text;
  padding-bottom: 3px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}
@media (max-width: 992px) {
  .our-story .story-slider .content-slick-nav .slick-slide .content h4 {
    font-size: 20px !important;
    background: var(--Blue, linear-gradient(103deg, var(--dark) -6.88%, var(--dark) 76.63%));
    background-clip: text;
    padding-bottom: 3px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.our-story .story-slider .content-slick-nav .slick-slide.slick-current.slick-active {
  height: 10rem !important;
  background: var(--light);
  width: 100%;
}
.our-story .story-slider .content-slick-nav .slick-slide.slick-current.slick-active .content {
  padding: 20px;
  background: var(--light);
}
.our-story .story-slider .content-slick-nav .slick-slide.slick-current.slick-active .content h4 {
  background: var(--Blue, linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.our-story .story-slider .content-slick-nav .slick-slide.slick-current.slick-active .content .para-text {
  display: block;
  visibility: visible;
}
.our-story .story-slider .buttons {
  position: absolute;
  bottom: 4%;
  right: 4%;
  display: flex;
  gap: 1vw;
}
.our-story .story-slider .buttons button {
  border: 0;
  background: transparent;
}

.product-slider {
  width: 100%;
  height: 88vh;
  position: relative;
}
@media (max-width: 992px) {
  .product-slider {
    height: auto;
  }
}

.product-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.product-slider .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(87deg, rgba(0, 0, 0, 0.21) 49.87%, rgb(0, 0, 0) 72.27%);
  filter: blur(247px);
}
.product-slider .swiper-slide img {
  position: relative;
}
@media (min-width: 1200px) {
  .product-slider .swiper-slide img {
    width: 100%;
  }
}
.product-slider .swiper-slide img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(87deg, rgba(124, 124, 124, 0) -0.79%, rgba(0, 0, 0, 0.6) 65.27%);
}

.product-thumbs {
  height: 100%;
  width: 64%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  bottom: 0;
  z-index: 4;
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .product-thumbs {
    bottom: 0px;
    width: 75%;
  }
}
@media (max-width: 992px) {
  .product-thumbs {
    position: relative;
    width: 100%;
    bottom: 0;
    top: 0;
    transform: none;
    height: 20rem;
  }
}

.product-thumbs .swiper-wrapper {
  margin-top: 0%;
}

.product-thumbs .swiper-slide {
  width: 100%;
  height: 170px;
  padding: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  background: transparent;
  padding: 5px 2vw;
}
@media (max-width: 992px) {
  .product-thumbs .swiper-slide {
    height: 110px;
  }
}
@media (max-width: 768px) {
  .product-thumbs .swiper-slide {
    border-bottom: 1px solid #eae9e5;
    background: var(--light-alt);
  }
}

.product-thumbs .swiper-slide h4 {
  font-size: 18px;
  color: var(--light);
  font-family: var(--secondary-font);
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -1.92px;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .product-thumbs .swiper-slide h4 {
    color: var(--dark);
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
@media (max-width: 992px) {
  .product-thumbs .swiper-slide h4 {
    color: var(--light);
  }
}

.product-thumbs .swiper-slide .para-text {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  display: none;
}
.product-thumbs .swiper-slide .para-text p {
  padding: 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  height: 4em;
  font-size: 1.1vw;
  -webkit-box-orient: vertical;
}
@media (max-width: 992px) {
  .product-thumbs .swiper-slide .para-text p {
    color: var(--light);
  }
}
@media (max-width: 768px) {
  .product-thumbs .swiper-slide .para-text {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    display: none;
  }
}

.product-thumbs .swiper-slide-active {
  width: 100%;
}

.product-thumbs .swiper-slide-active h4 {
  color: var(--light);
}
@media (max-width: 992px) {
  .product-thumbs .swiper-slide-active h4 {
    display: block;
    font-size: 18px;
    color: var(--dark);
  }
}

.product-thumbs .swiper-slide-active .para-text {
  opacity: 1;
  visibility: visible;
  position: relative;
  display: block;
}
@media (max-width: 768px) {
  .product-thumbs .swiper-slide-active .para-text p {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    display: none;
  }
}
.product-thumbs .swiper-slide-active .para-text .button-link {
  margin-top: -10px;
  position: relative;
  top: 28%;
}
@media (max-width: 992px) {
  .product-thumbs .swiper-slide-active .para-text .button-link {
    top: 0;
  }
}
.product-thumbs .swiper-slide-active .para-text .button-link a {
  color: #ffffff;
  font-weight: 400;
}
@media (max-width: 992px) {
  .product-thumbs .swiper-slide-active .para-text .button-link a {
    color: var(--dark);
  }
  .product-thumbs .swiper-slide-active .para-text .button-link a svg path {
    fill: var(--dark);
  }
}

.product-thumbs .swiper-next {
  right: 2%;
}

.product-thumbs .swiper-prev {
  right: 8%;
}
@media (max-width: 768px) {
  .product-thumbs .swiper-prev {
    right: 10%;
  }
}

.product-thumbs .swiper-next,
.product-thumbs .swiper-prev {
  position: absolute;
  left: auto;
  transform: rotate(90deg);
  background-size: 25px 25px;
  width: 30px;
  height: 30px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .product-thumbs .swiper-next,
  .product-thumbs .swiper-prev {
    bottom: 12%;
  }
}
.product-thumbs .swiper-next:hover .fa,
.product-thumbs .swiper-prev:hover .fa {
  color: var(--kids-color);
}

.product-thumbs .swiper-next {
  top: 60%;
  bottom: inherit;
  right: 2%;
  transform: rotate(0deg);
}
@media (max-width: 992px) {
  .product-thumbs .swiper-next {
    top: 22%;
  }
  .product-thumbs .swiper-next svg path {
    fill: var(--dark);
  }
}

.product-thumbs .swiper-prev {
  bottom: inherit;
  top: 35%;
  right: 2%;
  z-index: 999;
  transform: rotate(0deg);
}
@media (max-width: 992px) {
  .product-thumbs .swiper-prev {
    top: 1%;
  }
  .product-thumbs .swiper-prev svg path {
    fill: var(--dark);
  }
}

.blur-active-slider {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 64%;
  height: 30vh !important;
}
@media only screen and (max-width: 992px) and (min-width: 768px) {
  .blur-active-slider {
    width: 75%;
  }
}
@media (max-width: 768px) {
  .blur-active-slider {
    display: none;
  }
}

.faq_tabs #faqTab_wrapper {
  border-bottom: none;
  width: 90%;
  margin: auto;
}
.faq_tabs #faqTab_wrapper .nav-item {
  display: inline-block;
  margin-right: 1.12vw;
}
@media (max-width: 992px) {
  .faq_tabs #faqTab_wrapper .nav-item {
    font-size: 1rem;
  }
}
.faq_tabs #faqTab_wrapper .nav-item:last-child {
  margin-right: 0;
}
.faq_tabs #faqTab_wrapper .nav-item .nav-link {
  margin-bottom: 0;
  background-color: var(--light-alt);
  border: none;
  border-radius: 0 0 0.375rem 0.375rem;
  padding: 10px 25px;
  font-weight: 500;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.11;
  color: #4f4f4f;
  box-shadow: none;
  border-bottom: 3px solid rgba(0, 80, 157, 0);
  white-space: nowrap;
}
.faq_tabs #faqTab_wrapper .nav-item .nav-link.active {
  background: var(--light-alt);
  color: #003d85;
  border-bottom: 3px solid #00509d;
}

body.no-shadow header .top_header .logo img {
  filter: none;
}

.hero-carousel .owl-dots .owl-dot span {
  margin: 4px 3px;
}

.faq button.owl-prev {
  font-size: 25px !important;
  position: absolute;
  left: -50px;
  top: -10px;
  height: 40px;
  width: 40px;
  background: var(--primary) !important;
  border-radius: 50% !important;
  color: var(--light) !important;
}
@media (max-width: 1024px) {
  .faq button.owl-prev {
    font-size: 20px !important;
    position: relative;
    height: 30px;
    width: 30px;
    background: var(--primary) !important;
    border-radius: 50% !important;
    color: var(--light) !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
  }
}

@media (max-width: 1024px) {
  .faq .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.faq button.owl-next {
  font-size: 25px !important;
  right: -50px;
  top: -10px;
  position: absolute;
  height: 40px;
  width: 40px;
  background: var(--primary) !important;
  border-radius: 50% !important;
  color: var(--light) !important;
}
@media (max-width: 1024px) {
  .faq button.owl-next {
    font-size: 20px !important;
    position: relative;
    height: 30px;
    width: 30px;
    background: var(--primary) !important;
    border-radius: 50% !important;
    color: var(--light) !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
  }
}

@media (max-width: 720px) {
  .somavisa .information .info .text-in p {
    font-size: 12px;
    width: 100%;
    margin-bottom: 1px;
  }
  .somavisa .information .info .text-in {
    top: 58%;
    left: 50%;
    width: 95%;
    text-align: center;
    bottom: 0;
    transform: translate(-50%, -50%) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.soma-tatra-medical-food .content {
  margin-bottom: 25px;
}

.testimonial {
  background: var(--light-alt);
}
.testimonial .tm-slider {
  position: relative;
}
.testimonial .tm-slider .thumb-swiper {
  height: 46vh;
}
@media (max-width: 992px) {
  .testimonial .tm-slider .thumb-swiper {
    height: 18rem;
  }
}
.testimonial .tm-slider .thumb-swiper .swiper-wrapper {
  margin-left: 27%;
}
.testimonial .tm-slider .thumb-swiper .swiper-wrappers {
  display: flex;
  align-items: flex-end;
}
.testimonial .tm-slider .thumb-swiper .swiper-slide {
  height: 44vh;
  display: flex;
  align-items: end;
  padding: 10px;
  transition: 0.7s all ease;
}
@media (max-width: 992px) {
  .testimonial .tm-slider .thumb-swiper .swiper-slide {
    height: 16rem;
  }
}
.testimonial .tm-slider .thumb-swiper .swiper-slide > div {
  width: 100%;
}
.testimonial .tm-slider .thumb-swiper .swiper-slide .image {
  overflow: hidden;
  width: 100%;
  height: 11.5rem;
  transform: translateX(0%);
  transition: 0.7s all ease;
}
.testimonial .tm-slider .thumb-swiper .swiper-slide .image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  -o-object-position: top center;
     object-position: top center;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial .tm-slider .thumb-swiper .swiper-slide.swiper-slide-active {
  transform: translateX(0%);
}
.testimonial .tm-slider .thumb-swiper .swiper-slide.swiper-slide-active .image {
  height: 42vh;
}
@media (max-width: 992px) {
  .testimonial .tm-slider .thumb-swiper .swiper-slide.swiper-slide-active .image {
    height: 16rem;
  }
}
.testimonial .tm-slider .for-swiper .text {
  position: relative;
  margin-top: 40px;
}
.testimonial .tm-slider .for-swiper h5.name {
  color: #171717;
  font-size: 1.32vw;
  font-style: normal;
  font-weight: 400;
  margin-top: 24px;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .testimonial .tm-slider .for-swiper h5.name {
    font-size: 16px;
  }
}
.testimonial .tm-slider .for-swiper p {
  padding-left: 20px;
  position: relative;
}
.testimonial .tm-slider .for-swiper p img {
  opacity: 0.1;
  position: absolute;
  top: -20%;
  left: 0;
}
@media (max-width: 992px) {
  .testimonial .tm-slider .for-swiper p img {
    top: -8%;
    left: 0;
    width: 70px;
  }
}
.testimonial .tm-slider .buttons {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 0%;
  left: 21%;
}
@media (max-width: 992px) {
  .testimonial .tm-slider .buttons {
    display: flex;
    gap: 20px;
    position: absolute;
    bottom: -3%;
    left: 0%;
  }
}
.testimonial .tm-slider .buttons .swiper-button-next {
  background-image: none;
  right: -190px;
  /* top: inherit; */
  bottom: 0;
  z-index: 10;
  width: 100px;
  filter: invert(0.5);
  font-size: 1.2vw;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dark-alt);
  transition: 0.5s all ease;
}
@media (max-width: 992px) {
  .testimonial .tm-slider .buttons .swiper-button-next {
    font-size: 15px;
    display: none !important;
  }
}
.testimonial .tm-slider .buttons .swiper-button-next svg {
  width: 23px;
  transform: translateX(0);
  transition: 0.5s all ease;
}
.testimonial .tm-slider .buttons .swiper-button-next::after {
  display: none;
}
.testimonial .tm-slider .buttons .swiper-button-next:hover {
  filter: invert(0);
  color: var(--kids-color);
}
.testimonial .tm-slider .buttons .swiper-button-next:hover svg {
  transform: translateX(5px);
}
.testimonial .tm-slider .buttons .swiper-button-prev {
  left: 0;
  /* top: inherit; */
  bottom: 0;
  background-image: none;
  z-index: 10;
  width: 100px;
  filter: invert(0.5);
  font-size: 1.2vw;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--dark-alt);
  transition: 0.5s all ease;
}
@media (max-width: 992px) {
  .testimonial .tm-slider .buttons .swiper-button-prev svg path {
    fill: var(--dark);
  }
}
@media (max-width: 992px) {
  .testimonial .tm-slider .buttons .swiper-button-prev {
    font-size: 15px;
    display: none !important;
  }
}
.testimonial .tm-slider .buttons .swiper-button-prev svg {
  width: 23px;
  transform: translateX(0);
  transition: 0.5s all ease;
}
.testimonial .tm-slider .buttons .swiper-button-prev::after {
  display: none;
}
.testimonial .tm-slider .buttons .swiper-button-prev:hover {
  filter: invert(0);
  color: var(--kids-color);
}
.testimonial .tm-slider .buttons .swiper-button-prev:hover svg {
  transform: translateX(-5px);
}

.soup_story_section .col-lg-4.col-md-6.col-sm-6:last-child .story_item {
  margin-bottom: 0rem !important;
}
.soup_story_section .story_item {
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  position: relative;
  margin-bottom: 3rem;
}
.soup_story_section .story_item .item_img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  margin-bottom: 1rem;
  height: 18rem;
}
.soup_story_section .story_item .item_img img {
  scale: 1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
@media (min-width: 1400px) {
  .soup_story_section .story_item .item_img img {
    width: 100%;
  }
}
.soup_story_section .story_item .item_content .item_title {
  margin-bottom: 0.5rem;
}
.soup_story_section .story_item .item_content .item_title .treadmark {
  top: -13px;
}
.soup_story_section .story_item .item_content .item_title a {
  transition: 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  color: var(--dark);
  font-family: var(--secondary-font);
  font-size: 1.8rem;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (min-width: 1400px) {
  .soup_story_section .story_item .item_content .item_title a {
    font-size: 2.08vw;
  }
}
.soup_story_section .story_item .item_content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 5.12em;
}
.soup_story_section .story_item .button-link a {
  color: #00296b;
  font-weight: 400;
  font-size: 1.17vw;
}
@media (max-width: 992px) {
  .soup_story_section .story_item .button-link a {
    font-size: 15px;
  }
}
.soup_story_section .story_item:hover .item_img img {
  scale: 1.112;
}
.soup_story_section .story_item:hover .item_content .item_title a {
  color: var(--color-3);
}
.soup_story_section .story_item:hover .button-link svg {
  transform: translateX(5px);
}

.treadmark {
  display: inline-block;
  position: relative;
  right: 6px;
  top: -8px;
}
.treadmark svg {
  height: 13px;
  width: 13px;
  opacity: 0.7;
}

.dec header.sticky.top-hd {
  transform: translateY(-100%);
}

.problems_wrapper {
  position: relative;
}

.scroll-down {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  left: 0;
  font-weight: 400;
  color: #171717;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 11;
}
@media (max-width: 992px) {
  .scroll-down {
    display: none;
  }
}
.scroll-down span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
@keyframes scroll {
  from {
    transform: translateX(0px) scale(1);
  }
  to {
    transform: translateX(-6px) scale(1.2);
  }
}
.scroll-down span svg:nth-child(1) {
  animation: scroll 1.2s 0s infinite alternate;
}
.scroll-down span svg:nth-child(2) {
  animation: scroll 1.2s 0s infinite alternate;
}
.scroll-down span svg:nth-child(3) {
  animation: scroll 1.2s 0s infinite alternate;
}

.logo_wrapper h5 {
  font-size: 2.2vw;
  margin-bottom: 10px;
  font-weight: 500;
  color: #595d62;
}
@media (max-width: 992px) {
  .logo_wrapper h5 {
    font-size: 32px;
  }
}

.sub-heading-text {
  font-size: 1.4vw;
  font-weight: 400;
  margin-top: 4px;
  color: #393735;
}
@media (max-width: 992px) {
  .sub-heading-text {
    font-size: 17px;
  }
}

.agnisomavidya_section .agnisomavidya {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.agnisomavidya_section .agnisomavidya .title {
  max-width: 550px;
}
.agnisomavidya_section .agnisomavidya .agnisomavidya-card figure {
  height: 330px;
  margin-top: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.agnisomavidya_section .agnisomavidya .agnisomavidya-card figure img {
  height: 100%;
}

.blueinfinity_section .blueinfinity {
  background: var(--light-alt3);
  padding: 50px 0;
  position: relative;
}
@media (max-width: 768px) {
  .blueinfinity_section .blueinfinity .row {
    flex-direction: column-reverse;
    gap: 20px 0;
  }
}
.blueinfinity_section .blueinfinity .title p {
  margin-bottom: 10px;
}
.blueinfinity_section .blueinfinity .blueinfinity-card {
  margin-top: 20px;
  position: absolute;
  bottom: 13%;
}
@media (max-width: 768px) {
  .blueinfinity_section .blueinfinity .blueinfinity-card {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.blueinfinity_section .blueinfinity .blueinfinity-card figure {
  height: 330px;
}
.blueinfinity_section .blueinfinity .blueinfinity-card figure img {
  height: 100%;
}
@media (max-width: 768px) {
  .blueinfinity_section .blueinfinity .blueinfinity-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .goldinfinity_section .goldinfinity .row {
    gap: 20px 0;
  }
}
.goldinfinity_section .goldinfinity .title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  align-content: flex-start;
  justify-content: center;
  height: 100%;
}
.goldinfinity_section .goldinfinity .title p {
  margin-bottom: 10px;
}
.goldinfinity_section .goldinfinity .title ul li {
  font-size: 1.12vw;
  font-weight: 300;
  color: var(--dark-alt);
  line-height: 1.65;
  text-indent: -5px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .goldinfinity_section .goldinfinity .title ul li {
    font-size: 16px;
  }
}
.goldinfinity_section .goldinfinity .title ul li::before {
  content: "-";
  text-indent: -5px;
  margin-right: 7px;
}
@media (max-width: 768px) {
  .goldinfinity_section .goldinfinity .goldinfinity-card {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.goldinfinity_section .goldinfinity .goldinfinity-card figure {
  height: 330px;
}
.goldinfinity_section .goldinfinity .goldinfinity-card figure img {
  height: 100%;
}
.goldinfinity_section.goldinfinityloop .goldinfinity {
  background: var(--light-alt3);
  padding: 50px 0;
}
@media (max-width: 768px) {
  .goldinfinity_section.goldinfinityloop .goldinfinity .row {
    flex-direction: column-reverse;
    gap: 20px 0;
  }
}
.goldinfinity_section.goldinfinityloop .goldinfinity .goldinfinity-card {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .goldinfinity_section.goldinfinityloop .goldinfinity .goldinfinity-card {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.goldinfinity_section.goldinfinityloop .goldinfinity .goldinfinity-card figure {
  height: 330px;
}
.goldinfinity_section.goldinfinityloop .goldinfinity .goldinfinity-card figure img {
  height: 100%;
  width: 100%;
}
.goldinfinity_section.rising-flame .goldinfinity {
  background-color: transparent;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .goldinfinity_section.rising-flame .goldinfinity .row {
    flex-direction: column;
    gap: 20px 0;
  }
}

.threecircle-section {
  position: relative;
}
.threecircle-section .threecircle {
  background: var(--light-alt3);
  padding: 50px 0;
  position: relative;
}
@media (max-width: 768px) {
  .threecircle-section .threecircle .row {
    flex-direction: column-reverse;
    gap: 20px 0;
  }
}
.threecircle-section .threecircle .title p {
  margin-bottom: 10px;
}
.threecircle-section .threecircle .image-column {
  float: right;
  top: -118px;
  margin-bottom: -150px;
  position: relative;
}
@media (max-width: 768px) {
  .threecircle-section .threecircle .image-column {
    position: static;
    margin-bottom: 0;
    float: none;
  }
}
.threecircle-section .threecircle .blueinfinity-card {
  margin-top: 20px;
  bottom: 13%;
}
@media (max-width: 768px) {
  .threecircle-section .threecircle .blueinfinity-card {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.threecircle-section .threecircle .blueinfinity-card figure {
  height: 280px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .threecircle-section .threecircle .blueinfinity-card figure {
    height: 260px;
  }
}
.threecircle-section .threecircle .blueinfinity-card figure img {
  height: 100%;
}
@media (max-width: 768px) {
  .threecircle-section .threecircle .blueinfinity-card {
    position: static;
  }
}
.threecircle-section.together .threecircle {
  background-color: var(--light);
}
.threecircle-section.together .threecircle .image-column {
  float: right;
  margin-bottom: 0;
  position: static;
}
@media (max-width: 768px) {
  .threecircle-section.together .threecircle .image-column {
    position: static;
    margin-bottom: 0;
    float: none;
  }
}

.ancient-india-section .ancient-india .title {
  margin-bottom: 50px;
}
.ancient-india-section .ancient-india .title a {
  color: #003277;
  font-family: var(--primary-font);
  font-size: 1.12vw;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 155.556% */
  text-decoration-line: underline;
  word-break: break-word;
  transition: 0.5s all ease-in-out;
}
.ancient-india-section .ancient-india .title a:hover {
  color: var(--primary);
}
@media (max-width: 768px) {
  .ancient-india-section .ancient-india .title a {
    font-size: 18px;
  }
}
.ancient-india-section .ancient-india .image img {
  width: 100%;
}

.ayurveda-section {
  background-color: var(--light-alt3);
  padding: 40px 0;
}
@media (max-width: 768px) {
  .ayurveda-section .ayurveda .row {
    gap: 10px 0;
  }
}
.ayurveda-section .ayurveda .image {
  height: 100%;
  margin-bottom: 13px;
}
@media (max-width: 768px) {
  .ayurveda-section .ayurveda .image.ayurveda-img {
    display: flex;
    justify-content: center;
  }
  .ayurveda-section .ayurveda .image.ayurveda-img img {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 430px) {
  .ayurveda-section .ayurveda .image.ayurveda-img img {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-width: 430px) {
  .ayurveda-section .ayurveda .image img {
    width: 100%;
  }
}
.ayurveda-section .ayurveda .image img {
  width: 100%;
  height: 100%;
}
.ayurveda-section .ayurveda p {
  margin-bottom: 12px;
}

.toxicology-section {
  padding: 40px 0;
}
.toxicology-section .toxicology p {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .neutralised-section {
    padding-top: 100px;
  }
}
.neutralised-section .neutralised {
  position: relative;
}
.neutralised-section .neutralised p {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .neutralised-section .neutralised .image {
    height: 200px;
  }
}
.neutralised-section .neutralised .image.veds img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.neutralised-section .neutralised .image img {
  height: 100%;
}
.neutralised-section .neutralised .neu-top {
  position: absolute;
  top: -80px;
  right: 130px;
  max-width: 580px;
  border-radius: 10px;
  background: #fff6ec;
  padding: 30px;
}
.neutralised-section .neutralised .neu-top p {
  margin-bottom: 0;
}
@media (min-width: 1600px) {
  .neutralised-section .neutralised .neu-top {
    max-width: 50%;
  }
}
@media (max-width: 768px) {
  .neutralised-section .neutralised .neu-top {
    max-width: 90%;
    right: 5%;
    top: -130px;
    padding: 20px;
  }
}
.neutralised-section .neutralised .sushruta p {
  margin-bottom: 12px;
}
.neutralised-section .neutralised .sushruta a {
  color: #003277;
  font-family: var(--primary-font);
  font-size: 1.12vw;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 155.556% */
  text-decoration-line: underline;
  word-break: break-word;
  transition: 0.5s all ease-in-out;
}
.neutralised-section .neutralised .sushruta a:hover {
  color: var(--primary);
}
@media (max-width: 768px) {
  .neutralised-section .neutralised .sushruta a {
    font-size: 18px;
  }
}
.neutralised-section .neutralised .sushruta .image.mobile {
  display: none;
}
@media (max-width: 768px) {
  .neutralised-section .neutralised .sushruta .image {
    display: none;
  }
  .neutralised-section .neutralised .sushruta .image.mobile {
    display: flex !important;
    justify-content: center;
    margin-bottom: 10px;
  }
  .neutralised-section .neutralised .sushruta .image.mobile img {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 430px) {
  .neutralised-section .neutralised .sushruta .image.mobile img {
    width: 100%;
  }
}
.neutralised-section .neutralised .sushruta .image img {
  height: 100%;
  width: 100%;
}
.neutralised-section .neutralised .mahabharata p {
  margin-bottom: 12px;
}
.neutralised-section .neutralised .mahabharata a {
  color: #003277;
  font-family: var(--primary-font);
  font-size: 1.12vw;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /*155.556%*/
  text-decoration-line: underline;
  word-break: break-word;
  transition: 0.5s all ease-in-out;
}
.neutralised-section .neutralised .mahabharata a:hover {
  color: var(--primary);
}
@media (max-width: 768px) {
  .neutralised-section .neutralised .mahabharata a {
    font-size: 18px;
  }
}
.neutralised-section .neutralised .mahabharata .image {
  margin-bottom: 15px;
  display: block;
}
.neutralised-section .neutralised .mahabharata .image.mobile {
  display: none;
}
@media (max-width: 768px) {
  .neutralised-section .neutralised .mahabharata .image {
    display: none;
  }
  .neutralised-section .neutralised .mahabharata .image.mobile {
    display: flex !important;
    justify-content: center;
    margin-bottom: 10px;
  }
  .neutralised-section .neutralised .mahabharata .image.mobile img {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 430px) {
  .neutralised-section .neutralised .mahabharata .image.mobile img {
    width: 100%;
  }
}
.neutralised-section .neutralised .mahabharata .image img {
  height: 100%;
  width: 100%;
}

.constituents_newsection .detail.herbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 8px;
  margin-bottom: 40px;
}
.constituents_newsection .detail.herbs ul li {
  padding: 12px 12px 12px 0;
  list-style: square;
  margin-left: 20px;
  font-family: var(--primary-font);
  font-size: 1.12vw;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 768px) {
  .constituents_newsection .detail.herbs ul li {
    padding: 10px 0px 10px 0;
    font-size: 18px;
  }
}
.constituents_newsection .detail.herbs p {
  margin-bottom: 12px;
}
.constituents_newsection .img-container {
  margin-top: 50px;
  height: 500px;
  width: 100%;
}
@media (max-width: 768px) {
  .constituents_newsection .img-container {
    height: auto;
  }
}
.constituents_newsection .img-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vyutpattishastram-section .books-container .books {
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  background: #faecdc;
  padding: 30px;
}
@media (max-width: 768px) {
  .vyutpattishastram-section .books-container .books {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .vyutpattishastram-section .books-container .books .img h4 {
    display: block !important;
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
  }
}
@media (max-width: 430px) {
  .vyutpattishastram-section .books-container .books {
    gap: 20px;
    justify-content: center;
  }
}
.vyutpattishastram-section .books-container .books .img h4 {
  display: none;
}
.vyutpattishastram-section .books-container .books .img img {
  width: 100%;
}
@media (max-width: 768px) {
  .vyutpattishastram-section .books-container .names {
    display: none;
  }
}
.vyutpattishastram-section .books-container .names ul {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}
@media (max-width: 768px) {
  .vyutpattishastram-section .books-container .names ul {
    padding: 30px;
  }
}
.vyutpattishastram-section .books-container .names ul li {
  color: #000;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1.35vw;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  width: 224px;
  text-align: center;
}
.vyutpattishastram-section .v-button span {
  color: #00296b !important;
  border: none !important;
}

.index footer .copyright {
  padding-bottom: 5rem !important;
}

.rasadarnpa-table .table-view .system {
  display: flex;
  align-items: start !important;
  flex-direction: column !important;
  justify-content: start;
  gap: 0px 10px;
}

.f-18 {
  font-size: 1.46vw !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.br-16 {
  border-radius: 1.17vw;
}

.br-20 {
  border-radius: 1.46vw;
}

.br-30 {
  border-radius: 2.19vw;
}

.alink {
  color: var(--dark-alt) !important;
  text-decoration: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.alink:hover {
  color: var(--primary) !important;
  text-decoration: underline;
}

.rasadarpna-new p strong,
.rasadarpna-new p b {
  font-weight: 600;
}

.color-kids {
  color: var(--kids-color);
}

.v-nw.no-margin {
  margin-top: 10px !important;
}

.wrapper-container {
  padding-bottom: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.pb-20 {
  padding-top: 60px;
}

.subtitle,
.section-title {
  font-family: var(--secondary-font);
  font-size: 2.3vw;
  background: linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.section-title {
  padding-bottom: 20px;
}

.section-description {
  font-family: var(--primary-font);
  font-size: 1.12vw;
  color: var(--dark-alt);
  line-height: 1.65;
}

.card {
  background-color: #bee0ff;
  border-radius: 16px;
  padding: 1.2rem !important;
  text-align: center;
  border: none;
  flex-shrink: 0;
  width: 33%;
}
.card > img {
  width: 5vw;
  margin: 0 auto;
}
.card > h2 {
  padding-bottom: 10px;
  font-size: 1.5rem !important;
  margin-top: 0.8rem !important;
  font-family: var(--secondary-font);
  font-weight: 600;
}
.card > p {
  margin-bottom: 1rem;
  font-family: var(--primary-font);
}
.card-3 {
  background-color: #e7f9e7;
  border-radius: 16px;
  padding: 1.2rem !important;
  text-align: center;
  border: none;
  flex-shrink: 0;
}

.wrapper {
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.view-btn-new {
  display: inline-block;
  text-align: center;
  color: #898989;
  font-size: 1vw;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  padding-bottom: 1px;
  z-index: 4;
  opacity: 1;
  transition: 0.7s all ease;
  border-bottom: 1px solid #898989;
}

.section-wrapper {
  padding-bottom: 60px;
}

.section-one {
  margin-top: 40px;
}

.section-card {
  display: flex;
  gap: 20px;
}

.section-two-card-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.card-style-two {
  width: 100%;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}
.card-style-two .card-two-img {
  width: 100%;
  height: 250px;
  position: relative;
}
.card-style-two .card-two-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-style-two .card-two-img .overlay-btn {
  position: absolute;
  font-size: 12px;
  font-family: var(--primary-font);
  right: 6%;
  top: 6%;
  text-decoration: none;
  color: #ccc;
  border-radius: 22px;
  padding: 8px 12px;
  background-color: rgba(0, 0, 0, 0.6);
}
.card-style-two .card-two-content {
  padding: 1rem;
}
.card-style-two .card-two-title {
  font-family: var(--secondary-font);
  font-size: 20px;
  margin: 0.5rem 0 !important;
}
.card-style-two .card-two-description {
  font-family: var(--primary-font);
  font-size: 16px;
  padding-bottom: 0.5rem;
}

.mt-60 {
  margin-top: 60px;
}

.mt-40 {
  margin-top: 60px;
}

.mb-10 {
  margin-bottom: 10px;
}

.text-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.text-align-left {
  text-align: left !important;
}

.py-40 {
  padding: 0 40px;
}

.bullet-point > li {
  list-style: none !important;
  display: flex;
  gap: 10px;
  align-items: center;
}
.bullet-point > li > span {
  width: 0.4vw;
  height: 0.4vw;
  border-radius: 50%;
  background-color: var(--dark-alt);
  display: inline-block;
}

.dynamic-bg-image {
  background-color: red;
  width: 100%;
  height: 80vh;
  border-radius: 22px;
  background-image: url("http://192.168.1.22/abhishek_sharma/soupherb-7-7-25-/template/front_assets/images/our-story/sp-rasaratna.webp");
}

.layout-change {
  position: relative !important;
  width: 80%;
  margin: 0 auto 60px;
  border-radius: 22px;
}
.layout-change > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.new-section-content {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute !important;
  z-index: 9;
  width: 100%;
  left: 0 !important;
  bottom: 0;
  padding: 30px;
  text-align: left !important;
  border-radius: 26px;
}
.new-section-content > h3 {
  padding-bottom: 16px;
}

@media (max-width: 992px) {
  .card-style-two {
    width: 45%;
  }
  .section-description {
    font-size: 20px;
  }
  .section-title {
    font-size: 26px;
  }
  .view-btn-new {
    font-size: 1.6vw;
  }
  .tagline {
    font-size: 16px;
  }
  .layout-change {
    height: 80vh;
    overflow: hidden;
  }
  .tagline-two {
    padding-bottom: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
  }
  .tagline-two > span {
    font-size: 16px;
  }
}
@media (max-width: 557px) {
  .px-60 {
    padding-inline: 30px;
  }
  .card-style-two {
    width: 98%;
  }
  .view-btn-new {
    font-size: 2.8vw;
  }
  .section-description {
    font-size: 16px;
  }
  .section-title {
    font-size: 20px;
    padding-bottom: 20px;
  }
  .tagline-two {
    font-size: 16px;
    font-weight: 400;
  }
  .tagline-two > span {
    font-size: 2.8vw;
    color: var(--primary);
  }
  .layout-change {
    height: 80vh;
    overflow: hidden;
  }
  .bullet-point > li {
    align-items: center;
  }
  .bullet-point > li > span {
    width: 1.4vw;
    height: 1.4vw;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
  }
}
@media (max-width: 992px) {
  .tech-integration > li,
  .tagline {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .application {
    background-color: var(--light-alt);
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.application li {
  padding: 1rem 0.8rem;
  border: 1px solid #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #ffffff;
}
.application li.li2 {
  background: #fff6ec;
}
.application p strong {
  color: #000;
  font-weight: 600;
}
.application .conmtcard {
  position: relative;
  overflow: hidden;
  border: 1px solid #ffffff;
  padding: 30px;
  border-radius: 10px;
  background-color: #ffffff;
}
.application .conmtcard h3 {
  margin-top: 10px;
  padding: 0px !important;
}
.application .conmtcard p {
  font-size: 1.3vw;
}
@media (max-width: 786px) {
  .application .conmtcard p {
    font-size: 18px;
  }
}
.application .conmtcard .imgcomnt {
  position: relative;
  overflow: hidden;
}
.application .conmtcard .imgcomnt .hoverbox {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  background-color: rgba(0, 0, 0, 0.6);
}
.application .conmtcard .imgcomnt .hoverbox p {
  color: #fff;
  text-align: center;
  margin: 0;
}
.application .conmtcard .imgcomnt img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.application .conmtcard .imgcomnt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
  border-radius: 10px;
  transition: all 0.3s ease;
  z-index: 1;
}
.application .conmtcard:hover .hoverbox {
  bottom: 0;
}

.application-section {
  background: #fff6ec;
}

.menu-title {
  color: #fff;
  font-size: 2.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  font-family: var(--secondary-font);
  text-transform: uppercase;
  display: block;
  margin-bottom: 30px;
  transition: 0.5s all ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .menu-title {
    font-size: 1.6rem;
  }
}

.submenu {
  position: relative;
  overflow: hidden;
  height: 0;
}

.submenu > li > a {
  text-decoration: none;
  background: transparent;
  color: #fff;
  padding: 8px 12px;
  font-size: 16px;
  display: inline-block;
}

.submenu > li {
  cursor: pointer;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5;
}

.submenu > li:hover > a {
  color: var(--primary);
  text-decoration: none;
}

.menu-title.active {
  color: var(--primary);
}

.submenu {
  overflow: hidden;
  height: 0;
}

.menu-title {
  cursor: pointer;
}

.box-cont {
  gap: 20px 0;
}
.box-cont .boex {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffeed8;
  padding: 15px 10px;
  border-radius: 10px;
}
.box-cont .boex h3 {
  color: #00509d;
  font-family: var(--secondary-font);
  font-size: 1.5rem;
}
.box-cont .boex img {
  height: 70px;
  margin: 0;
}

.surbcard1 {
  margin-bottom: 60px;
}
.surbcard1 .head-card-text {
  height: 100%;
  min-height: 23vh;
}
.surbcard1 .head-card-text .card1 {
  position: relative;
  z-index: 111;
}
.surbcard1 .head-card-text .card1 .section-title {
  background: linear-gradient(103deg, #ffffff -6.88%, #ffffff 76.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}
.surbcard1 .head-card-text .card1 p {
  color: #fff;
}

.wrapper1 {
  min-height: 100vh;
  height: 100%;
  display: flex;
  overflow: hidden;
  background-color: transparent;
  flex-direction: column !important;
  position: relative;
}

.column.left {
  height: 100vh;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 786px) {
  .column.left {
    height: 100%;
    padding-top: 60px;
  }
}
.column.left h1 {
  font-size: 5vw;
  line-height: 1;
  font-family: var(--secondary-font);
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media (max-width: 786px) {
  .column.left h1 {
    font-size: 36px;
  }
}
.column.left p {
  color: #000000;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 1.35vw;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
  min-height: 3.2em;
}
@media (max-width: 786px) {
  .column.left p {
    font-size: 16px;
  }
}

.column {
  width: 100%;
  background-color: var(--light-alt);
}

.right {
  background-color: transparent;
  padding-bottom: calc(2vh + 350px);
}
@media (max-width: 786px) {
  .right {
    padding-bottom: calc(2vh + 0px);
  }
}
.right .row1 {
  margin-top: 100px !important;
}
@media (max-width: 786px) {
  .right .row1 {
    margin-top: 50px !important;
  }
}

.boxes-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box:last-child {
  margin-bottom: 0;
}

.scroller {
  height: 100%;
  overflow: auto;
}

.scroll-wrapper-teee {
  width: 100%;
  height: 100%;
}

#pin-left {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  position: sticky;
  top: 0;
}

.scroller {
  overflow: hidden;
}

.p-wrap .panel {
  height: 63vh;
  margin-bottom: 30px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.p-wrap .panel .boxsa1 {
  margin-bottom: 15px;
  display: none;
}
@media (max-width: 991px) {
  .p-wrap .panel {
    height: 100%;
    padding-top: 60px;
  }
  .p-wrap .panel .boxsa1 {
    display: block;
  }
  .p-wrap .panel .boxsa1 img {
    width: 100%;
  }
}
.p-wrap .panel p {
  font-size: 1.4vw;
}
@media (max-width: 768px) {
  .p-wrap .panel p {
    font-size: 18px;
  }
}
.p-wrap .panel::after {
  width: 100%;
  border-radius: 20px;
  background-position: right top;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  background-color: #bfbfbf;
  padding: 0px;
  position: absolute;
  top: 2%;
  right: 0%;
  height: 3px;
  z-index: 111;
  content: "";
  opacity: 0.15;
}
@media (max-width: 991px) {
  .p-wrap .panel::after {
    display: none;
  }
}
.p-wrap .panel.purple {
  margin-bottom: 50px;
}
.scroll-wrapper-teee {
  overflow: hidden;
  position: relative;
}
.scroll-wrapper-teee #pin-left {
  display: flex;
  flex-direction: column;
  position: relative;
}
.scroll-wrapper-teee #pin-left .boxsa {
  width: 100%;
  height: 63vh;
  position: absolute;
  left: 0;
  /* Start hidden below */
  z-index: 1;
  transition: none;
  border-radius: 18px;
  overflow: hidden;
}
.scroll-wrapper-teee #pin-left .boxsa img {
  height: 100%;
  width: 100%;
}
.scroll-wrapper-teee #pin-left .boxsa.bg-orange {
  background: orange;
  z-index: 1;
  transform: translateY(20%);
}
.scroll-wrapper-teee #pin-left .boxsa.bg-white1 {
  background: rgb(172, 112, 112);
  z-index: 2;
  top: 0%;
}
.scroll-wrapper-teee #pin-left .boxsa.bg-green {
  background: green;
  z-index: 5;
  top: 0%;
}
.scroll-wrapper-teee .pin-left1 {
  position: absolute;
  top: 0;
  z-index: 111;
  height: 100%;
  width: 100%;
}
.scroll-wrapper-teee .pin-left1 .box-xy {
  width: 100%;
  height: 63vh;
  margin-bottom: 100px;
  background: transparent;
  position: relative;
  border-radius: 18px;
}
.scroll-wrapper-teee .pin-left1 .box-xy::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 111;
}

.card-style-two {
  padding: 15px 15px;
  transition: 0.4s all ease;
  position: relative;
}
.card-style-two:hover::before {
  opacity: 1;
}
.card-style-two:hover .card-two-content .card-two-title,
.card-style-two:hover .card-two-content .card-two-description {
  color: #fff;
}
.card-style-two:hover .card-two-content .item_details_btn {
  border-color: transparent;
}
.card-style-two:hover .card-two-content .item_details_btn .button-link a {
  color: #fff;
}
.card-style-two:hover .card-two-content .item_details_btn .button-link a svg path {
  stroke: #fff;
}
.card-style-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(155deg, #034598 1.08%, #00295b 82.53%);
  opacity: 0;
  background-size: cover;
  transition: 0.5s all ease;
}
.card-style-two .card-two-img img {
  border-radius: 15px;
}
.card-style-two .card-two-content {
  position: relative;
  z-index: 1;
}
.card-style-two .card-two-content .card-two-title {
  color: #00296b;
  margin-bottom: 10px;
  display: block;
}
.card-style-two .card-two-content .item_details_btn {
  padding: 10px 0 0px;
  border-top: 1px solid #e7e7e7;
  transition: 0.4s all cubic-bezier(0.19, 1, 0.22, 1);
}
.card-style-two .card-two-content .item_details_btn .button-link a {
  color: #00296b;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  float: right;
  padding-bottom: 3px;
  position: relative;
  z-index: 4;
  transition: 0.4s all ease;
}
.card-style-two .card-two-content .item_details_btn .button-link a svg {
  transition: all 0.3s ease-out;
}

.threedosh {
  background-color: #fff6ec;
}
.threedosh .doshlist {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .threedosh .doshlist {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  .threedosh .doshlist .nav-item {
    width: 100%;
  }
}
.threedosh .doshlist .nav-item .doshbtn {
  font-size: 1.5vw;
  border-radius: 12px;
  padding: 10px 10px;
  transition: all 0.3s ease-out;
  background: var(--light);
  border-bottom: 1px solid #003d85;
  color: #003d85;
  -webkit-text-fill-color: unset;
  background: transparent;
}
@media (max-width: 768px) {
  .threedosh .doshlist .nav-item .doshbtn {
    font-size: 19px;
    width: 100%;
  }
}
.threedosh .doshlist .nav-item .doshbtn:hover, .threedosh .doshlist .nav-item .doshbtn.active {
  background: #fff;
  border-bottom: 3px solid #003d85;
  -webkit-text-fill-color: unset;
}

.function {
  margin-top: 30px;
  padding-bottom: 40px;
}
.function h3 {
  color: #8c5324;
  font-family: var(--secondary-font);
  font-size: 1.9rem;
  font-weight: 400;
  transition: 1s all ease;
  padding: 15px;
  margin-right: 10px;
  margin-bottom: 15px;
  text-align: center;
}
.function .row {
  gap: 20px 0;
  justify-content: center;
}
.function .row .funbox1 {
  /* background-color: #fff; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  gap: 20px;
  height: 100%;
  border-radius: 18px;
  transition: 1s all ease;
}
.function .row .funbox1 h2 {
  font-family: var(--secondary-font);
  font-size: 1.3vw;
  text-align: center;
  padding-bottom: 0px;
  color: #000;
  position: relative;
}
@media (max-width: 786px) {
  .function .row .funbox1 h2 {
    font-size: 19px;
  }
}
.function .row .funbox1 h2::after {
  content: "";
  position: absolute;
  bottom: -7px;
  display: block;
  width: 0%;
  transition: 1s all ease;
  height: 2px;
  background-color: #744a25;
}
.function .row .funbox1:hover h2::after {
  width: 100%;
}

.vatafunction {
  padding: 40px 0;
}
.vatafunction h2 {
  color: #8c5324;
  font-family: var(--secondary-font);
  font-size: 1.9rem;
  font-weight: 400;
  transition: 1s all ease;
  padding: 15px;
  margin-right: 10px;
  text-align: center;
}

.vitasection .row {
  gap: 20px 0;
}
.vitasection .row .vitaage {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 40px;
  background-image: url(../images/logo-deformation/3a.webp);
  background-position: top;
  border-radius: 18px;
  background-repeat: no-repeat;
  background-size: cover;
}
.vitasection .row .vitaage h3 {
  font-family: var(--primary-font);
  background: linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%);
  font-size: 1.9vw;
  -webkit-background-clip: text;
  -webkit-text-fill-color: unset;
  color: #fff;
  font-weight: 400;
  padding-bottom: 0px;
}
@media (max-width: 786px) {
  .vitasection .row .vitaage h3 {
    font-size: 26px;
  }
}

.herb-system.funsfd h2 {
  background: linear-gradient(103deg, #ffffff -6.88%, #ffffff 76.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

.funboxsd {
  padding: 40px 0;
}
.funboxsd h2 {
  color: #8c5324;
  font-family: var(--secondary-font);
  font-size: 1.9rem;
  font-weight: 400;
  transition: 1s all ease;
  text-align: center;
}
.funboxsd.e-cardbox .row {
  background-color: transparent;
  gap: 15px 0;
}
.funboxsd .row {
  background-color: #fff;
  margin-top: 30px;
  border-radius: 10px;
}
.funboxsd .row .finbolx {
  padding: 60px 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.funboxsd .row .finbolx img {
  margin-bottom: 15px;
}
.funboxsd .row .finbolx h3 {
  font-size: 1.3vw;
  color: #000;
  font-family: var(--primary-font);
  text-align: center;
  line-height: normal;
  font-weight: 300;
}
@media (max-width: 786px) {
  .funboxsd .row .finbolx h3 {
    font-size: 19px;
  }
}
.funboxsd .row .finbolx.box21 {
  position: relative;
}
@media (max-width: 786px) {
  .funboxsd .row .finbolx.box21 {
    overflow: hidden;
  }
}
.funboxsd .row .finbolx.box21::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: 1;
  height: 68%;
  width: 1px;
  transform: translate(-10px, 24%);
  background-color: rgba(140, 83, 36, 0.49);
}
@media (max-width: 786px) {
  .funboxsd .row .finbolx.box21::after {
    height: 1px;
    width: 114%;
    bottom: 1px;
    top: auto;
  }
}
.funboxsd .row .finbolx.box21::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  z-index: 1;
  height: 68%;
  width: 1px;
  transform: translate(10px, 24%);
  background-color: rgba(140, 83, 36, 0.49);
}
@media (max-width: 786px) {
  .funboxsd .row .finbolx.box21::before {
    height: 1px;
    width: 114%;
  }
}

.inbalance .vitasection .vitaage {
  background-image: none;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  padding: 55px;
}
.inbalance .vitasection .vitaage .imgsd {
  width: 10rem;
  height: 10rem;
  margin-left: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 4;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  right: -3rem;
  top: -3rem;
  overflow: hidden;
  transition: 1s all ease;
}
.inbalance .vitasection .vitaage .imgsd img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: none;
}
.inbalance .vitasection .vitaage h3 {
  color: #00296b;
  position: relative;
  z-index: 11;
}
.inbalance .vitasection .vitaage:hover .imgsd {
  scale: 1.3;
}

.tab-content1 {
  margin-top: 20px;
}

.integration {
  background: var(--light-alt);
}
.integration .row {
  gap: 25px 0;
  justify-content: center;
}

.e-card {
  margin: 0px auto;
  background: transparent;
  box-shadow: 0px 8px 28px -9px rgba(0, 0, 0, 0.45);
  position: relative;
  width: 240px;
  height: 330px;
  border-radius: 16px;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 540px;
  height: 700px;
  opacity: 0.6;
  left: 0;
  top: 0;
  margin-left: -50%;
  margin-top: -70%;
  background-image: url(../images/logo-deformation/3a.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-size: cover;
}

.icon {
  width: 3em;
  margin-top: -1em;
  padding-bottom: 1em;
}

.infotop {
  text-align: center;
  font-size: 20px;
  position: absolute;
  /* top: 4.6em; */
  left: 0;
  display: flex;
  right: 0;
  color: rgb(255, 255, 255);
  font-weight: 600;
  padding: 15px;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  height: 100%;
}

.name {
  font-size: 2.5vh;
  font-weight: 100;
  position: relative;
  top: 0;
}
@media (max-width: 991px) {
  .name {
    font-size: 19px;
  }
}

.wave:nth-child(2),
.wave:nth-child(3) {
  top: 210px;
}
@media (max-width: 600px) {
  .wave:nth-child(2),
  .wave:nth-child(3) {
    top: 0;
  }
}

.playing .wave {
  border-radius: 60%;
  animation: wave 3000ms infinite linear;
}
@media (max-width: 600px) {
  .playing .wave {
    animation: none;
  }
}

.wave {
  border-radius: 40%;
  animation: wave 55s infinite linear;
}
@media (max-width: 600px) {
  .wave {
    animation: none;
  }
}

.playing .wave:nth-child(2) {
  animation-duration: 4000ms;
}

.wave:nth-child(2) {
  animation-duration: 50s;
}

.playing .wave:nth-child(3) {
  animation-duration: 5000ms;
}

.wave:nth-child(3) {
  animation-duration: 45s;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.card12 {
  margin-right: 0;
}
@media (max-width: 991px) {
  .card12 {
    margin-right: auto;
  }
}

.card13 {
  margin-left: 0;
}
@media (max-width: 991px) {
  .card13 {
    margin-left: auto;
  }
}

@media (max-width: 430px) {
  .indian_alchemy .content img {
    width: 100%;
  }
}

.herb-system.funsfd {
  padding-top: 40px;
}

.dfgszdf {
  padding-bottom: 20px !important;
}
.dfgszdf h5 {
  font-family: var(--secondary-font);
  font-size: 1.4vw;
  background: linear-gradient(103deg, #00509d -6.88%, #00296b 76.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  line-height: normal;
  margin-top: 45px;
}
@media (max-width: 600px) {
  .dfgszdf h5 {
    font-size: 20px;
  }
}

.marathi h2 {
  line-height: normal !important;
}/*# sourceMappingURL=main.css.map */