@font-face {
  font-family: "regular";
  src: url(./fonts/Exo2-Regular.woff2);
}

@font-face {
  font-family: "medium";
  src: url(./fonts/Exo2-Medium.woff2);
}

@font-face {
  font-family: "semibold";
  src: url(./fonts/Exo2-SemiBold.woff2);
}

@font-face {
  font-family: "bold";
  src: url(./fonts/Exo2-Bold.woff2);
}

/*---====ROBOTO FONT=====-----*/

@font-face {
  font-family: "roboto_regular";
  src: url(./fonts/Roboto-Regular.woff2);
}

@font-face {
  font-family: "roboto_medium";
  src: url(./fonts/Roboto-Medium.woff2);
}

@font-face {
  font-family: "roboto_light";
  src: url(./fonts/Roboto-Light.woff2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
  color: var(--black);
}

*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-thumb {
  width: 7px;
  background-color: var(--blue);
}

html,
body {
  width: 100%;
  height: 100%;
}

:root {
  --blue: #3254ba;
  --grey: #d9d9d9;
  --pink: #c92682;
  --darkblue: #26237a;
  --iconbg: #1e1e65;
  --tab-active: #1a3d5f;
  --info-box-bg: #f1f3fa;
  --black: #363636;
  --white: #f8fcfe;
  --search-input-bg: #6c6c6c;
  --search-input-border: #878787;
  --contactwhite: #f1f1e6;
  --orange: #e06d02;
  --underweight: #ffd636;
  --overweight: #ec9e17;
  --lightgreen: #e6fff2;
  --lightgreen2: #dcf9ff;
  --green: #0a8044;
  --green2: #39c874;
  --green3: #34ba61;
  --gender-btn-active: #e3ffe3;
  --darkgreen: #032011;
  --lightblue: #bfe4f7;
  --lightblue2: #ecfaff;
  --transparentblack: #303030a4;
  --transparentblack2: #00000083;
  --transparentblack3: #0000008f;
  --gradientbtn: linear-gradient(to right, #39c874, #0e844a);
  --gradientbtn2: linear-gradient(to right, #ff9c40, #ff7300);
}

a {
  text-decoration: none !important;
}

.light_blue2 {
  background-color: var(--lightblue2);
}

.regular {
  font-family: "regular";
}

.medium {
  font-family: "medium";
}

.semibold {
  font-family: "semibold";
}

.bold {
  font-family: "bold";
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/*============ FIXED ICONS STYLES START==========*/

.fixed-icons-container {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all ease 0.5s;
}

.fixed-icons-panel {
  background-color: var(--info-box-bg);
  border-radius: 12px 0 0 12px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
}

.fixed-icon-item {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.fixed-icon-item:hover {
  transform: scale(1.05);
}

.icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .icon-wrapper {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .fixed-icons-panel {
    padding: 10px 6px;
    gap: 6px;
  }
}

/*============ FIXED ICONS STYLES END==========*/

.wrapper {
  width: 90%;
  margin: 0 auto;
}

.active_link {
  width: fit-content;
  font-size: 1rem !important;
  text-transform: capitalize !important;
  color: var(--black) !important;
  background: linear-gradient(
    to right,
    var(--white),
    var(--lightblue)
  ) !important;
  border-radius: 1.5rem;
  padding: 0.25rem 0.5rem !important;
}

/* .active_link2 {
    width: fit-content;
    font-size: 1rem !important;
    text-transform: capitalize !important;
    color: var(--black) !important;
    background: linear-gradient(to right, var(--white), var(--lightblue)) !important;
    border-radius: 1.5rem;
    padding: 0.25rem 0.5rem !important;
} */

#product_active {
  background-color: var(--contactwhite) !important;
  color: var(--white) !important;
}

.dropdown-item:active {
  background-color: var(--contactwhite) !important;
}

/*----======== NAVBAR START =========----*/

.logo {
  width: 100%;
}

.nav_links {
  width: 70%;
}

.links {
  font-weight: 400;
  width: fit-content;
  font-size: 1rem !important;
  position: relative;
  overflow: hidden;
  text-transform: capitalize !important;
  color: var(--black) !important;
}

.links::before {
  content: "";
  position: absolute;
  width: 0;
  height: 80%;
  background: linear-gradient(to right, var(--white), var(--lightblue));
  bottom: 10%;
  border-radius: 1rem;
  left: 0;
  opacity: 0;
  transition: all ease 0.5s;
  z-index: -1;
}

.links:hover::before {
  width: 100%;
  opacity: 1;
}

/* .active_link {
    color: var(--blue)!important;
} */

/* .active_link2 {
    color: var(--lightblue)!important;
} */

.dropdown-menu {
  box-shadow:
    -2px 0 14px 0 rgba(50, 84, 186, 0.07),
    -2px 0 8px 0 rgba(0, 0, 0, 0.07);
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.toggler_bars_icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.bar1 {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  height: 2px;
  background: #303030;
  transition:
    transform 0.3s,
    top 0.3s;
}

.bar2 {
  position: absolute;
  top: 65%;
  left: 0;
  right: 0;
  height: 2px;
  background: #303030;
  transition:
    transform 0.3s,
    top 0.3s;
}

/*----======== NAVBAR END =========----*/

/*----======== BANNER START =========----*/

.banner_bg {
  width: 100%;
  /*height: 100% !important;*/
  /* background: linear-gradient(to right, var(--white), var(--lightblue)); */
  /* background-image: url('./images/home_banner_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
  overflow: hidden;
  margin-top: 3rem;
}

/* .banner {
    width: 100%;
    height: 90vh;
    background-image: url('./images/banner_img.jpeg');
    background-size: 100% 100%;
    background-position: center;
    background-position-y: 2rem;
    background-repeat: no-repeat;
    margin-top: 4rem;
} */

.mankind_logo img {
  width: 30% !important;
}

.left_banner_img {
  width: 100%;
  height: 100%;
  margin-top: -3rem;
  object-fit: cover;
}

.right_banner_img {
  width: 100%;
  height: 90vh;
  gap: 3rem;
}

.right_banner_content img {
  width: 83%;
}

.about_banner_bg {
  width: 100%;
  height: 75vh;
  background: url("./images/about_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* z-index: 1; */
}

.about_banner_bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--transparentblack2);
  top: 0;
  left: 0;
  z-index: -1;
}

.mankind_banner_logo {
  width: 10%;
  position: absolute;
  top: 3%;
  right: 3%;
  transform: translate(-3%, -3%);
  transition: all ease 0.5s;
}

.about_banner_content {
  width: 100%;
}

.about_banner_content h2 {
  font-size: 3.8rem;
  color: var(--white);
  font-family: "semibold";
  transition: all ease 0.5s;
}

.about_banner_content p {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 400;
  transition: all ease 0.5s;
}

.about_banner_overlap_content {
  width: 95% !important;
  background-color: var(--orange);
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  margin: -8rem 0 0 0;
}

.about_banner_overlap_content p {
  font-family: "roboto_light";
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.2;
}

.contact_banner_bg {
  width: 100%;
  height: 100vh;
  /*background: url('./images/contact_banner_bg.jpg');*/
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 576px) {
  .contact_banner_bg {
    background-position-x: 42% !important;
  }
}

/* .contact_banner_bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--transparentblack3);
    top: 0;
    left: 0;
    z-index: -1;
} */

.contact_banner_content {
  width: 75%;
  margin: 0 auto 8rem auto;
}

.contact_banner_content h2 {
  font-size: 3.8rem;
  color: var(--contactwhite);
  font-family: "bold";
  text-transform: uppercase;
  transition: all ease 0.5s;
}

.contact_banner_content h5 {
  font-size: 1.7rem;
  color: var(--contactwhite);
  margin-top: 2rem;
}

.contact_banner_content p {
  color: var(--contactwhite);
  font-weight: 400;
  font-size: 1.2rem;
}

.contact_heading_lines {
  /*max-width: 450px;*/
  width: 100%;
  text-align: center;
  /* margin: 0 0 28px 0; */
}

.contact_heading_lines p {
  font-size: 18px;
  margin-bottom: 0;
  transition: all ease 0.5s;
}

@media screen and (max-width: 786px) {
  .contact_heading_lines p {
    font-size: 14px;
  }
}

.blog_banner_bg {
  width: 100%;
  /* height: 90vh; */
  /* background: url('./images/blog_banner_bg1.jpg'); */
  background-repeat: no-repeat !important;
  background-size: cover !important;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* .blogs_banner_img {
    width: 100%;  
} */
/* .blog_banner_bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000095;
    top: 0;
    left: 0;
    z-index: -1;
} */

/* .blog_banner_content {
    width: 72%;
    margin: 0 auto;
}

.blog_banner_content h2 {
    font-size: 4rem;
    color: var(--contactwhite);
    font-family: 'bold';
    transition: all ease 0.5s;
}

.blog_banner_content h5 {
    font-size: 1.7rem;
    color: var(--contactwhite);
    margin-top: 2rem;
}

.blog_banner_content p {
    color: var(--contactwhite);
    font-weight: 400;
    font-size: 1.2rem;
    margin: 2rem 0;
} */

.blogs_heading_content {
  /*max-width: 850px;*/
  width: 100%;
}

.blogs_heading_content h2,
.blogs_heading_content p {
  transition: all ease 0.5s;
}

.blogs_heading_content h2 {
  font-size: 44px;
  font-family: "bold";
  color: var(--black);
}

.blogs_heading_content p {
  margin-top: 24px;
}

@media screen and (max-width: 992px) {
  .blogs_heading_content h2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 600px) {
  .blogs_heading_content p {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .blogs_heading_content h2 {
    font-size: 28px;
  }
}

/* .search-container {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #6C6C6C;
    border: 1px solid #b3b3b371;
    border-radius: 50px;
    padding: 0 0.7rem;
    backdrop-filter: blur(10px);
    transition: background 0.2s;
}

.search-wrapper:hover {
    background: #6c6c6ccc;
}

.search-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    opacity: 0.9;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1.15rem;
    padding: 8px 0;
    font-family: 'roboto_regular';
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.tags-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #6C6C6C;
    border: 1px solid #b3b3b371;
    border-radius: 50px;
    color: white;
    font-size: 1.15rem;
    font-family: 'roboto_regular';
    padding: 0.5rem 1rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.2s;
    white-space: nowrap;
}

.tags-button:hover {
    background: #6c6c6ccc;
}

.chevron {
    width: 20px;
    height: 20px;
    opacity: 0.9;
} */
/* rotate: 180deg; */

.search-container {
  position: relative;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*margin: 0 auto;*/
  color: var(--white);
  border-radius: 50px;
  padding: 8px;
  border: 1px solid var(--search-input-border);
  background-color: var(--search-input-bg);
  font-size: 1rem;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.search-wrapper {
  width: 100%;
  display: flex;
  gap: 5px;
}

.faq-search-container {
  max-width: 450px;
  transition: all ease 0.5s;
}

@media screen and (max-width: 991px) {
  .faq-search-container {
    max-width: 80%;
  }
}

.search-input {
  width: 90%;
  color: var(--white);
  background-color: var(--search-input-bg);
  border: none;
  transition: all 0.3s ease;
}

.search-container .search-input::placeholder {
  color: #fff !important;
  opacity: 1;
}

.search-input:focus {
  outline: none;
  border: 0;
}

.search-icon {
  color: var(--white);
  font-size: 1.1rem;
}

.tags-label {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.tags-dropdown {
  background: var(--search-input-bg);
  border: 1px solid var(--search-input-border);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 1.5rem;
}

.tag-badge {
  background: var(--search-input-bg);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  border: 1px solid var(--search-input-border);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tag-badge:hover {
  transform: translateY(-2px);
}

.tag-badge .remove-tag {
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 2.5rem;
  }

  .blog-hero p {
    font-size: 1rem;
  }

  /* .search-input {
        padding: 12px 20px 12px 45px;
    } */
}

.faq_banner_bg {
  width: 100%;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4.3rem;
}

/*----======== BANNER END =========----*/

.about_wrapper {
  width: 85% !important;
  margin: 0 auto;
  /* border-radius: 2.5rem; */
  overflow: hidden;
}

/*----========SECTION SECOND START =========----*/

.section_second_img {
  width: 100%;
  max-height: 750px;

  img {
    width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 992px) {
  .section_second_img {
    max-height: 100%;
  }
}

.video_section {
  width: 100%;
}

.video_section video {
  width: 100%;
  /*height: 100%;*/
  object-fit: contain;
}

.about_right_content {
  padding: 3rem;
}

.about_right_content h5 {
  letter-spacing: 0.5rem;

  font-family: "roboto_regular";
}

.about_right_content h2 {
  color: var(--darkblue);
  font-family: "semibold";
  font-size: 3rem;
}

.about_right_content h2 span {
  color: var(--green3);
  font-family: "bold";
}

.about_right_content p {
  font-family: "roboto_light";
  color: var(--black);
  /* color: #202024; */
  font-size: 1.5rem;
}

.about_second_section {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(50%, 1fr));
  background-color: var(--lightblue2);
}

@media (max-width: 991.98px) {
  .about_second_section {
    grid-template-columns: 1fr;
  }

  .about_left_img {
    order: 1;
  }

  .about_right_content {
    order: 2;
  }
}

.location_details {
  width: 100%;
}

.location_details h4 {
  color: var(--green3);
  font-family: "semibold";
}

.address {
  width: 100%;
}

.blog_filter {
  width: fit-content;
  background-color: var(--darkblue);
  color: var(--white);
  padding: 0.3rem 0.6rem;
  border: none;
  outline: none;
  border-radius: 5px;
}

.blog_filter option {
  background-color: var(--white);
}

/*---====CONTACT FORM START====---*/

.contact_content_container {
  max-width: 1200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin: -18rem auto 0 auto;
  background-color: #fff;
  z-index: 8;
  position: relative;
  padding: 30px 56px;
}

@media screen and (max-width: 1300px) {
  .contact_content_container {
    max-width: 90%;
  }
}

@media screen and (max-width: 991px) {
  .contact_content_container {
    padding: 20px 16px;
  }
}

.form-container {
  max-width: 90%;
  /*margin-left: auto;*/
  border-radius: 8px;
}

@media screen and (max-width: 991px) {
  .form-container {
    max-width: 100%;
  }
}

.form-group1 {
  margin-bottom: 0.5rem;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 11px;
  color: #999;
  font-size: 20px;
  pointer-events: none;
}

.form-group1 input[type="text"],
.form-group1 input[type="number"],
.form-group1 textarea,
form-group1 select {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border: 2px solid var(--transparentblack);
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group1 select {
  border-right: var(--green);
}

.form-group1 input::placeholder,
.form-group1 textarea::placeholder {
  color: #999;
}

.form-group1 input:focus,
.form-group1 textarea:focus,
.form-group1 select:focus {
  outline: none;
  border-color: var(--iconbg);
}

.phone-wrapper {
  display: flex;
  gap: 0;
}

.country-picker {
  position: relative;
}

.country-code-slot.country-picker {
  width: auto;
  min-width: 6.75rem;
  max-width: 42%;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 0;
}

.country-picker select.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.country-picker-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
  height: 100%;
  min-height: 3.35rem;
  padding: 16px 10px 16px 12px;
  border: 2px solid var(--transparentblack);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 15px;
  background: white;
  cursor: pointer;
  text-align: left;
  color: var(--black);
  font-family: inherit;
}

.country-picker-trigger:focus-visible {
  outline: 2px solid var(--iconbg);
  outline-offset: 2px;
}

.country-picker-trigger-flag {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.country-picker-trigger-dial {
  flex: 1;
  min-width: 0;
  font-variant-numeric: tabular-nums;
}

.country-picker-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.country-picker-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 50;
  min-width: min(340px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  max-height: min(380px, 70vh);
}

.country-picker-search-wrap {
  flex-shrink: 0;
  padding: 8px 10px;
  border-bottom: 1px solid #e5e5e5;
  background: #fafafa;
  border-radius: 8px 8px 0 0;
}

.country-picker-search {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--black);
  box-sizing: border-box;
  margin: 0;
}

.country-picker-search:focus {
  outline: none;
  border-color: var(--iconbg);
}

.country-picker-scroll {
  flex: 1;
  min-height: 0;
  max-height: 300px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.country-picker-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.country-picker-empty {
  margin: 0;
  padding: 1.25rem 12px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.country-picker-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  color: var(--black);
  font-family: inherit;
}

.country-picker-option:hover,
.country-picker-option:focus-visible {
  background: #ececec;
}

.country-picker-option--selected {
  background: #e8e8e8;
}

.country-picker-option-flag {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.country-picker-option-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.country-picker-option-en {
  line-height: 1.25;
}

.country-picker-option-native {
  font-size: 12px;
  color: #5a5a5a;
  line-height: 1.2;
}

.country-picker-option-dial {
  flex-shrink: 0;
  font-size: 14px;
  color: #888;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 767px) {
  .country-code-slot.country-picker {
    max-width: 46%;
    min-width: 6.25rem;
  }

  .country-picker-panel {
    min-width: min(100vw - 24px, 360px);
    left: 0;
    right: auto;
    max-height: min(420px, 75vh);
  }

  .country-picker-search {
    font-size: 13px;
    padding: 7px 9px;
  }

  .country-picker-trigger {
    padding: 14px 8px 14px 10px;
    font-size: 14px;
  }

  .country-picker-option {
    padding: 9px 10px;
    font-size: 13px;
  }

  .country-picker-option-dial {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .country-picker-panel {
    min-width: 100%;
  }
}

.phone-input {
  flex: 1;
  border-radius: 0 8px 8px 0 !important;
  padding-left: 16px !important;
}

.form-group1 textarea {
  min-height: 200px;
  resize: vertical;
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--iconbg);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 16px;
}

.submit-btn:hover {
  background: var(--darkblue);
}

.submit-btn:active {
  transform: scale(0.98);
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

/* Icon styles using Unicode symbols */
.icon-user::before {
  content: "";
  font-style: normal;
}

.icon-document::before {
  content: "";
  font-style: normal;
}

.icon-message::before {
  content: "";
  font-style: normal;
}

.error_message {
  display: none;
  color: rgb(245, 26, 26);
  font-size: 0.8rem;
}

.responseMsg {
  width: fit-content;
  background-color: var(--green);
  color: var(--white);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transform: translateX(-100%);
  opacity: 0;
  transition: all ease 0.5s;
  /* font-family: 'semibold'; */
  /* position: absolute; */
  /* bottom: 8%;
    right: -100%; */
}

/*---====CONTACT FORM END====---*/

/*---====BLOGS SECTION SECOND START====---*/

select {
  cursor: pointer;
}

.category-filter-dropdown select option {
  background-color: var(--white) !important;
}

.category-filter-dropdown select:focus {
  border: none !important;
  box-shadow: none !important;
}

.blog_container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(30%, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
  position: relative;
  overflow: hidden;
  /* z-index: 2; */
}

/* .blog_container::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    background-image: url('./images/blog_container_bg.png');
    background-position: bottom;
    bottom: -25%;
    left: 0;
    z-index: -1;
} */

@media (max-width: 991.98px) {
  .blog_container {
    grid-template-columns: repeat(2, minmax(45%, 1fr));
  }
}

@media (max-width: 575.98px) {
  .blog_container {
    grid-template-columns: 1fr;
  }
}

.blogs {
  gap: 0.5rem;
}

.blog_img img {
  transition: all ease 0.5s;
}

.blogs:hover .blog_img img {
  scale: 1.1;
}

.blog_content {
  padding: 1rem;
}

.blog_content h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
}

.blog_content p {
  font-size: 0.9rem;
  color: #404040;
}

.read_more_btn {
  background: none;
  background-image: var(--gradientbtn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.load_more {
  background-color: var(--darkblue);
  border: 1px solid var(--darkblue);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all ease 0.5s;
}

.load_more:hover {
  color: var(--iconbg);
}

.load_more::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 500%;
  background-color: var(--white);
  border-radius: 50%;
  left: -50%;
  bottom: -500%;
  transition: all ease 0.5s;
  z-index: -1;
}

.load_more:hover::after {
  bottom: -380%;
}

.blog_details_banner {
  width: 100%;
  margin-top: 6rem;
}

.blog_details_content {
  width: 90%;
  margin: 0 auto;
}

.blog_details_content h2 {
  font-family: "bold";
  font-size: 3rem;
  transition: all ease 0.5s;
}

.blog_detail_banner_icons img {
  width: 13%;
}

.blog_detail_banner_icons h6 {
  font-size: 1rem;
  color: var(--darkblue);
  font-family: "semibold";
}

.scrolspy_section {
  padding: 0 3rem;
  min-height: 200px;
}

.scrolspy_section h4 {
  font-size: 3rem;
  font-family: "bold";
}

.container1 {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
  width: 40%;
  padding: 50px 35px;
  padding-left: 0;
  position: sticky;
  top: 5%;
  height: 100vh;
  overflow-y: auto;
  /* flex-shrink: 0; */
}

.sidebar h3 {
  font-size: 13px;
  color: #888;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.nav-item2 {
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
  font-size: 1.05rem;
  color: #555;
}

.nav-item2:hover {
  color: var(--black);
  padding-left: 5px;
}

.nav-item2.active {
  color: var(--black);
  font-weight: 600;
  padding-left: 5px;
}

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

.nav-arrow iconify-icon {
  color: var(--black);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.nav-item2:hover .nav-arrow,
.nav-item2.active .nav-arrow {
  color: var(--black);
  transform: translateX(3px);
}

/* Main Content */
.main-content {
  flex: 0 0 68%;
  padding: 50px 0px;
  max-width: 1000px;
  margin-left: auto;
}

.section {
  margin-bottom: 70px;
  scroll-margin-top: 20px;
}

.section h1 {
  font-size: 3rem;
  margin-bottom: 35px;
  color: var(--black);
  font-family: "bold";
  font-weight: 700;
  line-height: 1.2;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  font-family: "bold";
  color: var(--black);
  font-weight: 700;
  line-height: 1.3;
}

.section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 25px;
  color: var(--darkblue);
  font-weight: 600;
  line-height: 1.4;
}

.section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  margin-top: 20px;
  color: var(--black);
  font-weight: 600;
  line-height: 1.5;
}

.section p {
  margin-bottom: 20px;
  color: #444;
  font-size: 1.2rem;
  line-height: 1.5;
}

.hero-image {
  width: 100%;
  height: 400px;
  margin: 40px 0 10px 0;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  font-size: 13px;
  color: #888;
  margin-bottom: 30px;
  font-style: italic;
}

.quote-box {
  position: relative;
  padding: 0rem 20px;
  border-left: 10px solid var(--darkblue);
  margin: 50px 0;
}

.quote-text {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #545454;
  font-family: "semibold";
}

.quote-author {
  font-size: 1.2rem;
  color: var(--black);
  font-style: italic;
}

.checklist {
  list-style: none;
  margin: 35px 0;
}

.checklist li {
  padding: 11px 0 15px 34px;
  position: relative;
  color: #444;
  font-size: 17px;
  line-height: 1.6;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 13px;
  color: var(--white);
  font-weight: bold;
  background: #0ead1b;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.subsection {
  margin: 35px 0;
}

.subsection ul {
  padding-left: 25px;
  margin-top: 15px;
}

.subsection li {
  margin-bottom: 12px;
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}

/* Desktop Large Screens */
@media (min-width: 1400px) {
  .main-content {
    padding: 80px 150px;
    padding-right: 0;
    padding-bottom: 0;
    max-width: 1100px;
  }

  .sidebar {
    width: 40%;
  }
}

/* Tablet Landscape */
@media (max-width: 1200px) {
  .sidebar {
    width: 280px;
    padding: 40px 30px;
  }

  .main-content {
    padding: 60px 70px;
  }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
  .sidebar {
    width: 260px;
    padding: 40px 25px;
  }

  .main-content {
    padding: 50px 50px;
  }

  .section h1 {
    font-size: 42px;
  }

  .section h2 {
    font-size: 32px;
  }
}

/* Mobile and Tablet - Navigation moves to top */
@media (max-width: 768px) {
  .container1 {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: sticky;
    top: 7%;
    z-index: 100;
    padding: 20px 15px;
    border-right: none;
    border-bottom: 2px solid #e0e0e0;
    background: #f8f8f8;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    -webkit-overflow-scrolling: touch;
  }

  .sidebar::-webkit-scrollbar {
    height: 4px;
  }

  .sidebar::-webkit-scrollbar-track {
    background: #e8e8e8;
  }

  .sidebar::-webkit-scrollbar-thumb {
    background: var(--black);
    border-radius: 2px;
  }

  .sidebar h3 {
    display: none;
  }

  .blog_details_content h2 {
    font-size: 2rem;
  }

  .nav-item2 {
    display: inline-block;
    padding: 12px 18px;
    border-bottom: none;
    border-right: 1px solid #ddd;
    font-size: 14px;
    white-space: nowrap;
    margin-right: 5px;
  }

  .nav-item2:last-child {
    border-right: none;
  }

  .nav-item2:hover,
  .nav-item2.active {
    padding-left: 18px;
    background: rgba(44, 95, 45, 0.08);
    border-radius: 6px;
  }

  .nav-arrow {
    display: none;
  }

  .main-content {
    padding: 40px 30px;
    scroll-margin-top: 80px;
  }

  .section {
    scroll-margin-top: 80px;
  }

  .section h1 {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .section h3 {
    font-size: 20px;
  }

  .hero-image {
    height: 280px;
    margin: 30px 0 10px 0;
  }

  .quote-box {
    padding: 35px 30px;
    margin: 35px 0;
  }

  .quote-text {
    font-size: 22px;
  }

  .section p,
  .checklist li,
  .subsection li {
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .sidebar {
    padding: 15px 10px;
  }

  .nav-item2 {
    font-size: 13px;
    padding: 10px 15px;
  }

  .main-content {
    padding: 30px 20px;
  }

  .section h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .section h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .section h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .hero-image {
    height: 220px;
    border-radius: 8px;
  }

  .quote-box {
    padding: 25px 20px;
    margin: 30px 0;
    border-radius: 8px;
  }

  .quote-text {
    font-size: 19px;
    line-height: 1.5;
  }

  .quote-author {
    font-size: 13px;
  }

  .section p,
  .checklist li,
  .subsection li {
    font-size: 15px;
  }

  .checklist li {
    padding: 12px 0 12px 40px;
  }

  .checklist li::before {
    width: 26px;
    height: 26px;
    font-size: 14px;
    top: 11px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .main-content {
    padding: 25px 15px;
  }

  .section h1 {
    font-size: 26px;
  }

  .section h2 {
    font-size: 22px;
  }

  .nav-item2 {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/*---====BLOGS SECTION SECOND END====---*/

/*---====FAQ SECTION START====---*/

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.left-section {
  position: relative;
}

.left-content {
  position: sticky;
  top: 80px;
}

.left-content h1 {
  font-size: 48px;
  font-family: "semibold";
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--black);
}

.left-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #545454;
}

.right-section {
  border-top: 1px solid var(--black);
}

.faq-item {
  border-bottom: 1px solid var(--black);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 21px;
  font-family: "bold";
  color: #2e2e5a;
  padding-right: 17px;
}

.faq-toggle {
  font-size: 20px;
  color: #2e2e5a;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding-top: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: #545454;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

@media (max-width: 968px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

  .left-content {
    position: static;
  }

  .left-content h1 {
    font-size: 36px;
  }
}

/*---====FAQ SECTION END====---*/

.tablets_second_section {
  width: 100%;
  min-height: 100%;
  background-image: url("./images/tablets_page_images/leaves.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.ingredients_box {
  width: 70%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 5rem;
}

.ingredients_box h4 {
  font-size: 2.2rem;
  letter-spacing: -0.05rem;
  font-family: "bold";
  color: var(--green3);
  transition: all ease 0.5s;
}

.ingredients_box h2 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 3rem;
  color: var(--darkblue);
  transition: all ease 0.5s;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .tablets_second_section {
    background-size: cover;
  }

  .ingredients_box {
    width: 85%;
    gap: 3.5rem;
    align-items: center;
  }

  .ingredients_box h4 {
    font-size: 2.1rem;
  }

  .ingredients_box h2 {
    font-size: 3.2rem;
    line-height: 2.5rem;
  }
}

@media (max-width: 768px) {
  .tablets_second_section {
    background-size: cover;
    background-position: center;
  }

  .ingredients_box {
    width: 95%;
    gap: 2rem;
    align-items: center;
  }

  .ingredients_box h4 {
    font-size: 1.8rem;
  }

  .ingredients_box h2 {
    font-size: 2.8rem;
    line-height: 1.8rem;
  }
}

@media (max-width: 480px) {
  .ingredients_box {
    width: 100%;
    gap: 1.2rem;
    align-items: center;
  }

  .ingredients_box h4 {
    font-size: 1.6rem;
  }

  .ingredients_box h2 {
    font-size: 2.5rem;
    line-height: 1.2rem;
  }
}

/*----========SECTION SECOND END =========----*/

/*----========CALCULATOR PAGE START =========----*/

.calculator_banner_bg {
  width: 100%;
  margin-top: 4rem;
}

.calculator_container {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
}

.tab {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 14px;
  color: #666;
  transition: all 0.3s;
  position: relative;
}

@media (max-width: 992px) {
  .tab {
    display: flex;
    flex-direction: column;
  }
}

.tab:hover {
  background: #f9f9f9;
}

.tab.active {
  color: var(--tab-active);
  font-weight: 500;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tab-active);
}

.tab-icon {
  margin-right: 8px;
  font-size: 18px;
}

@media (max-width: 992px) {
  .tab-icon {
    margin: 0;
  }
}

.tab-content {
  display: none;
  padding: 30px;
}

.tab-content.active {
  display: block;
}

.info-box {
  background: var(--info-box-bg);
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (max-width: 600px) {
  .info-box {
    flex-direction: column;
  }
}

.info-icon {
  font-size: 50px;
  flex-shrink: 0;
}

.info-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
  /* Let the grid shrink inside overflow-hidden parents; otherwise wide result
       blocks (e.g. BMI scale + letter-spaced labels) inflate min-content width
       and clip the input column on the right on narrow screens. */
  min-width: 0;
}

.calculator-grid > * {
  min-width: 0;
}

.input-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

/* Two-column rows (Gender|Age, Height|Weight): allow flex items to shrink */
.input-section > .d-flex.gap-3 {
  display: flex;
  min-width: 0;
}

.input-section > .d-flex.gap-3 > .input-group {
  flex: 1 1 0;
  min-width: 0;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Anchor absolute unit labels (Years / in Kgs) inside each field block */
  position: relative;
}

/* Keep fields readable on narrow screens */
@media (max-width: 600px) {
  /* .input-section > .d-flex.gap-3 {
        flex-wrap: wrap;
    } */

  .input-section > .d-flex.gap-3 > .input-group {
    flex: 1 1 100%;
  }
}

.input-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}

.gender-buttons {
  display: flex;
  gap: 10px;
}

.gender-btn {
  flex: 1;
  padding: 12px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.gender-btn:hover {
  border-color: var(--green2);
}

.gender-btn.active {
  background: var(--gender-btn-active);
  color: var(--black);
  border-color: var(--green2);
}

.height-inputs {
  display: flex;
  gap: 10px;
}

.height-inputs input {
  flex: 1;
}

input[type="number"],
select {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.3s;
}

input[type="number"]:focus,
select:focus {
  outline: none;
  border-color: var(--tab-active);
}

.unit-toggle {
  font-size: 12px;
  color: var(--tab-active);
  cursor: pointer;
  text-decoration: underline;
}

.result-section {
  background: #fff5eb;
  padding: 36px 32px 30px;
  text-align: center;
  border: 1px solid #f7d9b9;
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
}

.result-label {
  font-size: 18px;
  font-family: "medium";
  color: #6f6b63;
  margin-bottom: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.result-value {
  font-size: 40px;
  color: var(--green3);
  font-family: "bold";
  background: #def8e4;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  padding: 18px 56px;
  border-radius: 10px;
  margin-bottom: 16px;
  min-width: 180px;
}
@media (max-width: 576px) {
  .result-value {
    font-size: 32px;
  }
}

.bmi-custom-scale {
  width: 94%;
  margin: 28px auto 0 auto;
  padding: 0;
  position: relative;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.result-status {
  color: rgb(76, 175, 80);
  font-size: 34px;
  font-family: "bold";
  margin-top: 28px;
  margin-bottom: 12px;
}

.result-message {
  font-size: 17px;
  color: #4e4b45;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.result-range {
  font-size: 15px;
  color: #ff6b00;
  font-weight: 600;
  margin-top: 22px;
}

.bmi-scale-wrapper {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.bmi-scale {
  width: 100%;
  height: 12px;
  display: flex;
  gap: 6px;
  background: transparent;
  border-radius: 999px;
  margin: 12px 0 6px 0;
  position: relative;
  /* padding: 0 4px; */
}

.bmi-segment {
  flex: 1;
  border-radius: 999px;
}

.bmi-segment.underweight {
  background: var(--underweight);
}

.bmi-segment.normal {
  background: #9ad86c;
}

.bmi-segment.overweight {
  background: var(--overweight);
}

.bmi-segment.obese {
  background: #f0753e;
}

.bmi-pointer {
  position: absolute;
  top: -9px;
  width: 3px;
  height: 30px;
  background: #1e1e1e;
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
  transition: left 0.3s ease;
}

.bmi-pointer::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #1e1e1e;
  border-radius: 50%;
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  color: #6f6b63;
}

.scale-labels span {
  flex: 1;
  text-align: center;
}

/* BMI scale: mobile only (viewports under 768px) */
@media (max-width: 767px) {
  .bmi-scale-wrapper {
    max-width: 100%;
    width: 100%;
    padding: 0 2px;
    margin-left: auto;
    margin-right: auto;
  }

  .bmi-scale {
    gap: 3px;
    height: 10px;
    margin: 10px 0 4px 0;
  }

  .bmi-segment {
    min-width: 0;
  }

  .bmi-pointer {
    top: -6px;
    width: 2px;
    height: 22px;
  }

  .bmi-pointer::after {
    width: 8px;
    height: 8px;
    bottom: -5px;
  }

  .scale-labels {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 3px;
    align-items: start;
    margin-top: 4px;
  }

  .scale-labels span {
    flex: unset;
    font-size: 10px;
    line-height: 1.2;
    padding: 0 1px;
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
    word-wrap: break-word;
    min-width: 0;
  }
}

.bmr-result-section {
  background: #fff5eb;
  padding: 40px 32px 30px;
  text-align: center;
  border: 1px solid #e0e0e0;
  max-width: 600px;
  margin: 0 auto;
}

.bmr-result-title {
  font-size: 24px;
  font-family: "bold";
  color: var(--black);
  margin-bottom: 24px;
  font-weight: bold;
}

.bmr-main-calorie {
  display: flex;
  align-items: baseline;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;

  p {
    margin: 0;
  }

  .bmr-calorie-text {
    margin-top: 6px;
  }
}

.bmr-calorie-number {
  font-size: 56px;
  font-family: "bold";
  color: var(--green3);
  font-weight: bold;
  line-height: 1;
}

.bmr-calorie-text {
  font-size: 18px;
  color: var(--green3);
  font-family: "medium";
}

.bmr-activity-table {
  background: transparent;
  border-radius: 15px;
  border: 1px solid var(--black);
  overflow: hidden;
  margin-bottom: 20px;
}

.bmr-table-header {
  background: var(--gradientbtn);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 0px 20px;
  font-family: "bold";
  font-size: 16px;
  font-weight: bold;
}

.bmr-table-header span {
  color: var(--white);
}

.bmr-table-header span:first-child {
  flex: 0.945;
  border-right: 0.5px solid #dcc0a4;
  padding: 8px;
  margin-right: 20px;
}

@media screen and (max-width: 1300px) {
  .bmr-table-header span:first-child {
    flex: 0.93;
  }
}

@media screen and (max-width: 1199px) {
  .bmr-table-header span:first-child {
    flex: 0.902;
  }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
  .bmr-table-header span:first-child {
    flex: 0.84;
  }
}

@media screen and (max-width: 768px) {
  .bmr-result-section {
    background: #fff5eb;
    padding: 20px 10px;
  }

  .bmr-result-section {
    width: 100%;
  }

  .bmr-table-header span:first-child {
    flex: 0.916;
  }
}

.bmr-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  border: 0.5px solid #dcc0a4;
}

.bmr-table-row:first-of-type {
  border-top: none;
}

.bmr-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  border-right: 0.5px solid #dcc0a4;
  padding: 8px;
  margin-right: 20px;
}

.bmr-activity-icon {
  font-size: 24px;
  display: inline-block;
  width: 32px;
  text-align: center;
}

.bmr-activity-text {
  font-size: 15px;
  color: var(--black);
  font-family: "regular";
  text-align: left;
}

.bmr-activity-calories {
  font-size: 16px;
  color: var(--black);
  font-family: "semibold";
  font-weight: 600;
  text-align: right;
  min-width: 80px;
}

.bmr-footer-text {
  margin-top: 16px;
}

.bmr-footer-text,
.calorie-disclaimer,
.bmi-disclaimer {
  color: #666;
  font-size: 14px;
}

.buttons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.btn {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-calculate,
.btn-reset {
  border: 0;
  padding: 0.5rem 2rem;
  border-radius: 0.2rem;
  background: transparent;
  border: 2px solid var(--green2);
  transition: all ease 0.4s;
  position: relative;
  z-index: 2;
}

.btn-calculate::after,
.btn-reset::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: var(--gradientbtn);
  top: 0;
  left: 0;
  transition: all ease 0.4s;
  z-index: -1;
}

.btn-calculate:hover,
.btn-reset:hover {
  color: var(--white);
  border: 2px solid var(--green2);
}

.btn-calculate:hover::after,
.btn-reset:hover::after {
  width: 100%;
}

.btn-calculate:active,
.btn-reset:active {
  scale: 0.95;
}

.btn-reset {
  padding: 0.5rem 2.5rem;
}

.btn-reset:disabled,
.btn-calculate:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.activity-levels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-option {
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}

.activity-option:hover {
  border-color: var(--tab-active);
  background: #f9f9f9;
}

.activity-option.selected {
  border-color: var(--tab-active);
  background: var(--info-box-bg);
}

.activity-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.activity-desc {
  font-size: 12px;
  color: #666;
}

.calorie-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.calorie-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}

.calorie-card-title {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.calorie-card-value {
  font-size: 32px;
  font-weight: bold;
  color: var(--tab-active);
}

.calorie-card-unit {
  font-size: 14px;
  color: #666;
}

@media (max-width: 992px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .calorie-results {
    grid-template-columns: 1fr;
  }
}

.cards_row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(162px, 1fr));
  gap: 19px;
}

/*@media (max-width: 1300px) {*/
/*    .cards_row {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*    }*/
/*}*/

/*@media (max-width: 600px) {*/
/*    .cards_row {*/
/*        grid-template-columns: repeat(1, 1fr);*/
/*    }*/
/*}*/

.card {
  border: 1px solid #515151;
  background-color: transparent !important;
}

.card_text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-top: 1px solid #dcc0a4;
}

.card-title {
  max-width: 90%;
  margin: 0 auto;
}

/*----========CALCULATOR PAGE END =========----*/

/*----========ABOUT SECTION THIRD START =========----*/

.about_numbers {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.2fr;
  grid-template-areas: "first second third";
  gap: 1.5rem;
  padding-left: 2rem;
  padding-right: 0;
}

.about_numbers_heading {
  font-size: 48px;
  margin-top: 5rem;
  margin-bottom: 50px;
  text-align: center;
  transition: all ease 0.5s;

  @media (max-width: 991px) {
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 30px;
  }
}

.number {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 1px solid var(--transparentblack);
  padding-left: 3rem;
}

.number h2 {
  font-size: 4rem;
  font-family: "semibold";
  color: var(--green3);
  margin-bottom: 0;
}

.text_and_icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text_and_icon h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.number_icon {
  width: 50px;
  height: 50px;
}

@media (max-width: 1200px) {
  .about_numbers {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "first second third";
    gap: 1rem;
    padding-left: 1rem;
    margin-top: 2.2rem;
  }

  .number {
    padding-left: 2rem;
  }

  .number h2 {
    font-size: 3.3rem;
  }
}

@media (max-width: 991.98px) {
  .about_numbers {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "first second"
      "third third";
    gap: 1rem;
    padding-left: 0.5rem;
    margin-top: 2rem;
  }

  .number {
    padding-left: 1.5rem;
  }

  .number h2 {
    font-size: 3.2rem;
  }

  .text_and_icon h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .about_numbers {
    grid-template-columns: 1fr;
    grid-template-areas:
      "first"
      "second"
      "third";
    gap: 1.2rem;
    padding-left: 0;
    margin-top: 1.2rem;
  }

  .number {
    padding-left: 2rem;
    border-left: none;
    border-top: 1px solid var(--transparentblack);
    padding-top: 1rem;
  }

  .number:first-child {
    border-top: none;
    padding-top: 0;
  }

  .number h2 {
    font-size: 3.5rem;
  }

  .text_and_icon h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .about_numbers {
    margin-top: 2rem;
    gap: 0.75rem;
    padding-left: 0;
  }

  .number h2 {
    font-size: 3.15rem;
  }

  .text_and_icon h3 {
    font-size: 1.2rem;
  }
}

.third_section_banner {
  width: 100%;
  /*height: 966px;*/
  height: 712px;
  /* background-image: url('./images/tablets_page_images/third_section.jpg'); */
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.third_banner_content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 0;
}

@media screen and (max-width: 992px) {
  .third_section_banner {
    height: 80vh;
  }

  .third_banner_content {
    align-items: center;
    justify-content: center;
  }
}

.third_banner_headings h4 {
  font-size: 2.7rem;
}

.third_banner_headings h2 {
  font-size: 5rem;
  line-height: 2.5rem;
}

.third_banner_headings h4,
.third_banner_headings h2 {
  letter-spacing: 0.1rem;
  font-family: "bold";
  color: var(--white);
}

.third_banner_content img {
  width: 20%;
}

/*----========ABOUT SECTION THIRD END =========----*/

/*----========SECTION SOCIAL START =========----*/

.social_heading_box {
  width: 100%;
}

.social_heading_box h5 {
  letter-spacing: 0.5rem;
  font-weight: 400;
  font-size: 20px;
  color: var(--tab-active);
}

.social_heading_box h2 {
  font-family: "semibold";
  font-size: 60px;
}

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

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.slider_video {
  width: 100%;
  height: 350px;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
  transition: all ease 0.5s;
}

.slider_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

.left_icon,
.right_icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0 1.4rem;
  background-color: var(--iconbg);
  transition: all ease 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.left_icon::after,
.right_icon::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 300%;
  background-color: var(--blue);
  border-radius: 50%;
  bottom: -300%;
  left: -50%;
  transition: all ease 0.5s;
  z-index: -1;
}

.left_icon:hover::after,
.right_icon:hover::after {
  bottom: -180%;
}

.left_icon img {
  transform: rotate(180deg);
}

.left_icon:active,
.right_icon:active {
  scale: 0.9;
}

.swiper_padding {
  padding-bottom: 5rem !important;
}

.slider_navigation {
  width: 5rem;
  height: 100px;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider_navigation .swiper-button-next,
.swiper-button-prev {
  top: 95% !important;
}

.slider_navigation .swiper-button-prev {
  left: 0% !important;
  /* transform: translateX(-47%); */
}

.slider_navigation .swiper-button-next {
  right: 0% !important;
  /* transform: translateX(-47%); */
}

/*----========SECTION SOCIAL END =========----*/

/*----========SECTION CALCULATE START =========----*/

/* .box {
    width: 100%;
    height: 550px;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all ease 0.5s;
}

.box_overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    bottom: -100%;
    left: 0;
    background-color: var(--transparentblack);
    border-radius: 1.5rem;
    padding: 0 3.5rem 3rem 3.5rem;
    transition: all ease 0.5s;
}

.box_overlay h3,
.box_overlay p {
    color: var(--white);
}

.box_overlay h3 {
    font-family: 'medium';
    font-size: 1.5rem;
}

.box_overlay p {
    font-size: 0.9rem;
}

.calculate_btn {
    color: var(--iconbg);
    background-color: var(--white);
    border: 0;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    transition: all ease 0.5s;
}

.calculate_btn:hover {
    background-color: var(--green2);
    color: var(--white);
}

.box:hover .box_overlay {
    bottom: 0;
}

.grid_container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    gap: 1rem;
}

.know_more_btn {
    text-decoration: none;
    color: var(--white);
    background-color: var(--iconbg);
    padding: 1rem 1.7rem;
    border: 1px solid var(--iconbg);
    position: relative;
    transition: all ease 0.5s;
    overflow: hidden;
    z-index: 2;
}

.know_more_btn:hover {
    color: var(--iconbg);
}

.know_more_btn::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 300%;
    background-color: var(--white);
    border-radius: 50%;
    left: -50%;
    bottom: -300%;
    transition: all ease 0.5s;
    z-index: -1;
}

.know_more_btn:hover::after {
    bottom: -180%;
} */

/*----========SECTION CALCULATE END =========----*/

/*----========SECTION HEALTHOK MULTIVITAMINS START =========----*/

.healthok_banner {
  width: 100%;
  height: 750px;
  display: flex;
  justify-content: flex-end;
  background-image: url("./images/healthok_banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding: 0 5rem;
}

.health_box,
.women_page_banner_content {
  max-width: 461px;
  width: 100%;
  margin-top: 48px;
  transition: all ease 0.5s;
}

.health_box h3,
.women_page_banner_content h3 {
  color: var(--green);
  font-size: 48px;
  transition: all ease 0.5s;
  font-family: "semibold";
  line-height: 54px;
}

.women_page_banner_content h3 {
  color: var(--pink);
}

.health_box p,
.women_page_banner_content p {
  color: var(--darkgreen);
  font-family: "regular";
  font-size: 1.5rem;
  line-height: 28px;
}

.buy_now,
.know_more_women {
  color: var(--white);
  background: var(--gradientbtn);
  font-family: "semibold";
  font-weight: 600;
  font-size: 32px;
  padding: 10px 28px;
  border-radius: 20px;
  transition: all ease 0.3s;
}

.know_more_women {
  background: var(--pink);
}

.buy_now:hover,
.buy_now2:hover,
.know_more_women:hover {
  transform: translateY(-3px);
}

/*----========SECTION HEALTHOK MULTIVITAMINS END =========----*/

/*----========SECTION HEALTHOK GUMMIES START =========----*/

.gummies_logo {
  width: 80%;
  transition: all ease 0.5s;
}

.healthok_gummies {
  width: 100%;
  height: 750px;
  display: flex;
  justify-content: flex-start;
  background-image: url("./images/healthok_gummies.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding: 0 5rem;
}

.gummies_box {
  max-width: 461px;
  width: 100%;
  margin-top: 48px;
  transition: all ease 0.5s;
}

.gummies_box h3 {
  color: var(--lightgreen);
  font-size: 48px;
  line-height: 54px;
  transition: all ease 0.5s;
  font-family: "semibold";
}

.gummies_box p {
  color: var(--white);
  font-family: "regular";
  font-size: 1.5rem;
  line-height: 28px;
}

.buy_now2 {
  color: var(--white);
  background: var(--gradientbtn2);
  font-family: "semibold";
  font-weight: 600;
  font-size: 32px;
  padding: 10px 28px;
  border-radius: 20px;
  transition: all ease 0.3s;
}

.gummies_banner_bg {
  width: 100%;
  /*height: 100dvh; */
  margin-top: 4.5rem;
  /* background-image: url('./images/gummies_page_images/gummies_banner_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%; */
}

/*.gummies_banner_img,*/
/*.second_section_img,*/
/*.third_section,*/
/*.fifth_section_img {*/
/*    width: 100%;*/
/*    height: 550px;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    background-size: contain; */
/*}*/

/*@media screen and (max-width: 1300px){*/

/*    .gummies_banner_bg {*/
/*        margin-top: 2rem;*/
/*        position: relative;*/
/*    }*/

/*    .gummies_banner_img,*/
/*    .second_section_img,*/
/*    .gummies_banner_bg,*/
/*    .third_section,*/
/*    .fifth_section_img {*/
/*        min-height: 750px;*/
/*        background-size: contain;*/
/*    }*/
/*}*/

/*@media screen and (max-width: 1100px){*/

/*    .gummies_banner_bg {*/
/*        margin-top: 0rem;*/
/*    }*/

/*    .gummies_banner_img,*/
/*    .second_section_img,*/
/*    .gummies_banner_bg,*/
/*    .third_section,*/
/*    .fifth_section_img {*/
/*        height: auto;*/
/*    }*/
/*}*/

.women_page_banner {
  width: 100%;
  height: 750px;
  padding: 0 80px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.gummies_banner_content {
  width: 100%;
}

.gummies_mankind_logo {
  width: 30%;
}

.gummies_banner_left_content {
  width: 80%;
}

/* .second_section_bg {
    width: 100%;
    height: 100dvh;
    background-image: url('./images/gummies_page_images/section-second.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    margin-top: 4rem;
} */

.section_sectoin_heading {
  width: 30%;
  margin: 0 auto;
}

/* .section_pngs {
    width: 70%;
    height: 65dvh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    place-items: center;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 1200px) {
    .section_pngs {
        width: 85%;
        grid-template-columns: repeat(3, 1fr);
        height: 45dvh;
    }
}
@media (max-width: 768px) {
    .section_pngs {
        width: 98%;
        grid-template-columns: repeat(2, 1fr);
        height: 35dvh;
    }
}
@media (max-width: 480px) {
    .section_pngs {
        width: 100%;
        grid-template-columns: 1fr;
        height: auto;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
} */

/* .third_section_bg {
    width: 100%;
    height: 100dvh;
    background-image: url('./images/gummies_page_images/section-third.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
} */

.fourth_section_bg {
  width: 100%;
  height: 88vh;
  background-image: url("./images/gummies_page_images/jelly_section_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.jelly_content {
  width: 100%;
  height: 88vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 2.5rem 1rem;
}

.jelly_heading_img {
  width: 35%;
}

.jelly_center_img {
  width: 70%;
}

.jelly_bottom_img {
  width: 43%;
}

/* .fifth_section_bg {
    width: 100%;
    height: 100dvh;
    background-image: url('./images/gummies_page_images/section-fifth.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
} */

.line_arts_bg {
  width: 100%;
  background: url("./images/gummies_page_images/line_arts.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sixth_section_bg {
  width: 100%;
}

.sixth_heading {
  width: 30%;
  margin: 1rem auto 0 auto;
}

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

.gummies_slide_box {
  width: 100%;
  /*min-height: 550px;*/
  padding: 1.5rem;
  margin: 0 auto;
  background-color: var(--lightgreen2);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.gummies_slider_img1 {
  width: 80%;
  height: auto !important;
}

.gummies_slider_img1 img {
  width: 100%;
  height: auto !important;
  object-fit: contain;
}

.gummies_slider_img2 {
  width: 80%;
  margin: 0 auto;
}

.gummies_slider_img2 p {
  margin-bottom: 0;
}

.gummies_slider_img2 p,
.gummies_slider_img2 h6 {
  color: var(--darkblue);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  font-family: "bold";
  transition: all ease 0.5s;
}

.gummies_slider_pagination {
  width: 30%;
  margin: 0 auto;
}

.gummies_slider_pagination .swiper-pagination {
  left: 50% !important;
  transform: translateX(-50%) !important;
  gap: 0.5rem;
}

.gummies_slider_pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--grey);
  border-radius: 50%;
  opacity: 1;
  transition: all ease 0.5s;
}

.gummies_slider_pagination .swiper-pagination-bullet-active {
  width: 16px;
  background-color: var(--darkblue);
  border-radius: 12px;
}

@media screen and (max-width: 1300px) {
  .gummies_slider_img2 p,
  .gummies_slider_img2 h6 {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .gummies_slider_img2 p,
  .gummies_slider_img2 h6 {
    font-size: 16px;
  }
}

.gummies_slider_nav {
  width: 100%;
}

/* .gummies_slide_box:nth-child(odd){
    margin-left: 2rem!important;
} */

.gummies_slider_nav .swiper-button-next {
  width: 5rem;
  right: 0;
  top: 50% !important;
  transform: translateY(-50%) !important;
  transition: all ease 0.5s;
}

.gummies_slider_nav .swiper-button-prev {
  width: 5rem;
  left: -0.2% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  transition: all ease 0.5s;
}

.gummies_slider_nav .swiper-button-next:active,
.gummies_slider_nav .swiper-button-prev:active {
  scale: 0.9;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .sixth_section_bg {
    /* height: 120dvh; */
    background-size: cover;
  }

  .sixth_heading {
    width: 40%;
    margin-top: 5rem;
  }

  .gummies_slide_box {
    width: 100%;
    min-height: 500px;
  }

  .gummies_slider_img1 {
    width: 60%;
  }

  .gummies_slider_main {
    height: 100%;
  }
}

@media (max-width: 992px) {
  .fourth_section_bg {
    height: auto;
    background: none;
  }

  .sixth_section_bg {
    background-size: cover;
  }

  .sixth_heading {
    width: 50%;
    margin-top: 3rem;
  }

  .gummies_slide_box {
    width: 80%;
    min-height: fit-content;
    gap: 1.5rem;
    padding: 3rem 1rem;
  }

  .gummies_slider_img1 {
    width: 60%;
  }

  .gummies_slider_main {
    height: 100%;
  }

  .gummies_slider_nav .swiper-button-next,
  .gummies_slider_nav .swiper-button-prev {
    width: 3.5rem;
  }
}

@media (max-width: 768px) {
  .gummies_logo {
    width: 70%;
  }

  .sixth_section_bg {
    background-size: cover;
  }

  .sixth_heading {
    width: 70%;
    margin-top: 2rem;
  }

  .gummies_slide_box {
    width: 70%;
    min-height: fit-content;
    margin: 0 auto;
    gap: 1rem;
    border-radius: 1rem;
  }

  .gummies_slider_img1 {
    width: 70%;
  }

  .gummies_slider_main {
    height: 100%;
  }

  .gummies_slider_nav .swiper-button-next,
  .gummies_slider_nav .swiper-button-prev {
    width: 2.7rem;
  }
}

@media (max-width: 480px) {
  .gummies_logo {
    width: 70%;
  }

  .sixth_section_bg {
    height: auto;
    /*min-height: 420px;*/
    background-size: cover;
    padding-bottom: 2rem;
  }

  .sixth_heading {
    width: 60%;
    margin-top: 1.2rem;
  }

  .gummies_slider_main {
    height: auto;
    min-height: 190px;
  }

  .gummies_slide_box {
    width: 70%;
    min-height: fit-content;
    margin: 0 auto;
    gap: 0.5rem;
    border-radius: 0.7rem;
    padding: 2rem 1.3rem;
  }

  .gummies_slider_nav {
    width: 100%;
  }

  .gummies_slider_nav .swiper-button-next,
  .gummies_slider_nav .swiper-button-prev {
    width: 2.1rem;
  }
}

/* .banner_container {
    width: 100%;
    height: 100dvh;
    display: grid;
    grid-template-columns: 2.85fr 1fr;
}

@media (max-width: 992px) {
    .banner_container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.gummies_banner_left {
    width: 74%;
    height: 100dvh;
    background-image: url('./images/gummies_page_images/banner_blue_layer.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: 130% 103%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    margin-top: 0.3rem;
}

.gummies_banner_left img {
    width: 110%;
    height: 105%;
    margin: -1rem 0 0 -8rem;
}

.gummies_banner_left_content {
    width: 100%;
}

.left_content1 {
    width: 50%;
}

.img1 {
    width: 30%;
}

.gummies_banner_right {
    width: 50%;
    height: 100%;
    background-image: url('./images/gummies_page_images/gummies_banner_b.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    right: -4%;
    z-index: 1;
} */

/*----========SECTION HEALTHOK GUMMIES END =========----*/

/*----========SECTION HEALTHOK MULTIVITAMINS TABLETS START =========----*/

.tablet_routine h3,
.tablet_routine h4 {
  color: var(--white);
  transition: all ease 0.5s;
}

.tablet_routine h3 {
  font-family: "bold";
  font-size: 3.8rem;
}

.tablet_routine h4 {
  font-size: 2rem;
  font-family: "roboto_regular";
  text-transform: capitalize;
}

.mens_tablet_page {
  max-width: 618px;
  width: 100%;
  margin: auto;
  text-align: center;
}

.mens_tablet_page h2 {
  font-family: "bold";
  font-size: 40px;
  color: var(--green2);
  margin-bottom: -8px;
  font-weight: 800;
  text-transform: uppercase;
}

.mens_tablet_page h2 span {
  color: #26247b;
}

@media screen and (max-width: 991px) {
  .mens_tablet_page {
    max-width: 100%;
  }

  .mens_tablet_page h2 {
    font-size: 24px;
  }
}

.routine_box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.routine_content {
  padding-bottom: 4rem;
}

.tablets_fifth_banner {
  width: 100%;
  height: 90vh;
  background-image: url("./images/tablets_page_images/fifth_banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.tablet_sixth_section_content h3 {
  font-size: 2.5rem;
  font-family: "bold";
  color: var(--darkblue);
}

@media (max-width: 1200px) {
  .tablet_sixth_section_content {
    max-width: 400px !important;
  }
}
@media (max-width: 992px) {
  .tablet_sixth_section_content {
    max-width: 330px !important;
  }
}
@media (max-width: 576px) {
  .tablet_sixth_section_content {
    max-width: 230px !important;
  }
}

.men_sixth_section_image {
  width: 100%;
  height: 90vh;

  img {
    width: 100%;
    height: 90vh;
  }
}

/*----========SECTION HEALTHOK MULTIVITAMINS TABLETS END =========----*/

/*----========SECTION BRANDS START =========----*/

.logos_main_div {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  /* No gap between blocks for seamless marquee */
  overflow: hidden;
}

.logo_reel_animation {
  min-width: 100%;
  /* Fill screen on large displays */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* Distribute logos if few */
  gap: 0rem;
  /* Minimum gap between logos */
  animation: reel linear 15s infinite;
}

@keyframes reel {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-100%);
    /* Seamless loop with min-width: 100% and no parent gap */
  }
}

.slide {
  width: fit-content;
  flex-shrink: 0;
  max-width: 180px;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.logos_main_div:hover .logo_reel_animation {
  animation-play-state: paused;
}

/* Tablet and below */
@media (max-width: 992px) {
  .logos_main_div {
    gap: 50px;
    margin-bottom: 24px;
  }

  .logo_reel_animation {
    gap: 2.5rem;
  }

  .slide {
    max-width: 150px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .logos_main_div {
    gap: 38px;
  }

  .logo_reel_animation {
    gap: 2rem;
  }

  .slide {
    max-width: 120px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .logo_reel_animation {
    gap: 1.5rem;
  }

  .slide {
    max-width: 100px;
  }

  .slide:nth-child(3) img {
    padding: 15px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .logo_reel_animation {
    gap: 1rem;
  }

  .slide {
    max-width: 80px;
  }
}

/*----========SECTION BRANDS END =========----*/

/*----========WOMEN PAGE START =========----*/

.women_banner_bg {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin-top: 4rem;
}

.women_second_section {
  width: 100%;
  background-color: #f3f3f5;
  /* background-repeat: no-repeat; */
  background-size: 100% 100% !important;
}

@media (max-width: 992px) {
  .women_second_section {
    background-size: cover !important;
  }
}

.women_second_section_box {
  width: 70%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;

  @media screen and (max-width: 992px) {
    width: 80%;
    align-items: center;
  }
  @media screen and (max-width: 786px) {
    width: 90%;
  }

  div {
    h5,
    h4,
    h2 {
      text-transform: uppercase;
      font-family: "bold";
      margin-bottom: 0;
      transition: all ease 0.5s;
    }

    h4 {
      font-size: 44px;
      color: var(--pink);

      @media screen and (max-width: 1275px) {
        font-size: 36px;
      }

      @media screen and (max-width: 600px) {
        font-size: 28px;
      }
    }

    h2 {
      font-size: 64px;
      font-style: italic;
      line-height: 56px;
      color: var(--darkblue);

      @media screen and (max-width: 1275px) {
        font-size: 48px;
        line-height: 48px;
      }

      @media screen and (max-width: 600px) {
        font-size: 36px;
        line-height: 36px;
      }
    }

    h5 {
      font-weight: 600;
      font-family: "semibold";
      font-size: 28px;
      font-style: italic;

      @media screen and (max-width: 600px) {
        font-size: 18px;
      }
    }
  }
}

/* .section_third_bg {
    width: 100%;
    height: 750px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    
    .section_third_text_box {
        width: 100%;
        height: 750px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;

        h4,
        h3 {
            text-transform: uppercase;
            transition: all ease 0.5s;
        }
        h4 {
            font-size: 44px;
            font-family: 'bold';
            color: var(--pink);
        }
        h3 {
            font-size: 64px;
            font-style: italic;
            color: var(--darkblue);
        }
    }
} */

.women_fourth_section_heading {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 44px;
  font-family: "bold";
  color: var(--pink);
  text-align: center;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  transition: all ease 0.5s;

  @media screen and (min-width: 992px) and (max-width: 1024px) {
    font-size: 38px;
  }
}

.routine_container_headings {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  h3,
  h2 {
    text-transform: uppercase;
    font-family: "bold";
    font-size: 44px;
    margin-bottom: 0;
    transition: all ease 0.5s;

    @media screen and (max-width: 1275px) {
      font-size: 38px;
    }

    @media screen and (max-width: 786px) {
      font-size: 28px;
    }

    @media screen and (max-width: 450px) {
      font-size: 22px;
    }
  }

  h3 {
    color: var(--black);
  }

  h2 {
    color: var(--pink);
  }
}

.seventh_section_bg {
  width: 100%;
  height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center !important;
  background-size: cover !important;

  .seventh_section_content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8rem;

    h2,
    h3 {
      font-size: 44px;
      font-family: "bold";
      transition: all ease 0.5s;
    }

    h2 {
      color: var(--pink);
      text-transform: uppercase;
    }

    h3 {
      color: var(--black);
      font-style: italic;
    }

    .section_logo {
      width: 273px;
    }

    a {
      width: fit-content;
      color: var(--white);
      background-color: var(--darkblue);
      padding: 12px 28px;
      border-radius: 20px;
      font-size: 28px;
      text-decoration: none;
      margin-top: 2rem;
      transition: all ease 0.5s;
    }
  }
}

/*----========WOMEN PAGE END =========----*/

/*----========PRIVACY POLICY START =========----*/

.privacy_banner_bg {
  width: 100%;
  height: 431px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 4.3rem;
}

.privacy_banner_content {
  max-width: 660px;
  width: 100%;
  color: var(--white);

  h2,
  p {
    color: currentColor;
    transition: all ease 0.5s;
  }

  h2 {
    font-size: 64px;
  }
  p {
    font-size: 18px;
    font-weight: 400;
    text-wrap: pretty;
  }

  @media (max-width: 992px) {
    h2 {
      font-size: 38px;
    }
    p {
      font-size: 16px;
    }
  }
}

.privacy_content {
  width: 100%;

  h3 {
    font-family: "bold";
    margin-top: 40px;
  }
  p {
    text-wrap: pretty;
    margin-bottom: 0;
  }
}

/*----========PRIVACY POLICY END =========----*/

/*----========FOOTER START =========----*/

.footer_bg {
  background-color: var(--iconbg);
}

.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer_box1 {
  width: 55%;
}

.footer_logo {
  width: 25%;
}

.footer_box1_content h3 {
  font-size: 3rem;
  color: var(--white);
  font-family: "medium";
}

.footer_box2 {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer_box2_content h3 {
  font-size: 1.2rem;
  font-family: "regular";
  color: var(--white);
}

.footer_box2_content ul li {
  margin-top: 1rem;
}

.footer_box2_content ul li a {
  color: var(--white);
  font-size: 0.9rem !important;
  font-weight: 100;
}

.footer_icons {
  display: flex;
  gap: 0.53rem;
  margin-top: 1.7rem;
}

.footer_icons a {
  display: inline-block;
}

.icon {
  font-size: 1.2rem;
  color: var(--white);
  padding-left: 0.5rem;
}

.copyright {
  color: var(--white);
}

.privacy_policy {
  color: var(--white);
}

/*----========FOOTER END =========----*/

/*----======== RESPONSIVE CODES =========----*/

@media (min-width: 300px) and (max-width: 453px) {
  /*.banner_bg {*/
  /*    height: auto;*/
  /*}*/

  .mankind_logo img {
    width: 35%;
  }

  .mankind_banner_logo {
    width: 30%;
    top: 3%;
    left: 50%;
    transform: translate(-50%, -3%);
  }

  .social_heading_box {
    width: 100%;
  }

  .social_heading_box h2 {
    font-size: 2.5rem;
  }

  .social_heading_box p {
    font-size: 0.95rem;
  }

  .box {
    height: 500px;
  }

  .healthok_banner {
    background-image: none;
    padding: 0;
    height: 100%;
  }

  .healthok_gummies {
    background-image: none;
    padding: 0;
    height: auto;
  }

  .health_box,
  .gummies_box {
    width: 80%;
  }

  .health_box h3,
  .gummies_box h3 {
    font-size: 2rem;
  }

  .health_box p,
  .gummies_box p {
    font-size: 0.9rem;
  }

  .about_banner_content {
    width: 80%;
    margin: 0 auto;
  }

  .about_banner_content h2 {
    font-size: 2.8rem;
  }

  .about_banner_content p {
    font-size: 1.1rem;
  }

  .about_banner_overlap_content {
    width: 89% !important;
    padding: 2rem 1.5rem;
  }

  .about_banner_overlap_content p {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }

  .about_right_content {
    padding: 2rem;
  }

  .about_right_content h2 {
    font-size: 2.2rem;
    line-height: 0.95;
  }

  .about_right_content p {
    font-size: 1.1rem;
  }

  .contact_banner_content h2 {
    font-size: 3rem;
  }

  .contact_banner_content h5 {
    font-size: 1.2rem;
  }

  .contact_banner_content p {
    font-size: 1rem;
  }

  .blog_banner_content {
    width: 90%;
  }

  .blog_banner_content h2 {
    font-size: 3rem;
  }

  .blog_banner_content p {
    font-size: 1rem;
  }

  .faq-search-container {
    width: 90%;
  }

  .tags-button {
    width: fit-content;
  }

  .form-container {
    margin: 0 auto;
  }

  /* .slide {
        width: 20%;
    } */

  /*.slide:nth-child(2) {*/
  /*    width: 10%;*/
  /*}*/

  .gummies_banner_bg,
  .second_section_bg {
    height: auto;
    background: none;
  }

  .third_banner_headings h4 {
    letter-spacing: 0;
    font-size: 1.5rem;
  }

  .third_banner_headings h2 {
    font-size: 2.5rem;
    line-height: 2rem;
  }

  .third_banner_content img {
    width: 60%;
  }

  .tablet_routine h4 {
    font-size: 1.5rem;
  }

  .tablet_sixth_section_content h3 {
    font-size: 1.5rem;
  }

  .tab-content {
    width: 95%;
    padding: 10px;
    margin: 0 auto;
  }

  .footer {
    flex-direction: column;
  }

  .footer_box1,
  .footer_box2_content {
    width: 100%;
  }

  .footer_box1_content h3 {
    font-size: 1.8rem;
  }

  .footer_logo {
    width: 50%;
  }
}

@media (min-width: 453px) and (max-width: 600px) {
  /*.banner_bg {*/
  /*    height: 100% !important;*/
  /*}*/

  .mankind_banner_logo {
    width: 25%;
    top: 3%;
    left: 50%;
    transform: translate(-50%, -3%);
  }

  .social_heading_box {
    width: 80%;
  }

  .social_heading_box h2 {
    font-size: 2.5rem;
  }

  .social_heading_box p {
    font-size: 0.95rem;
  }

  .box {
    height: 500px;
  }

  .healthok_banner {
    background-image: none;
    padding: 0;
    height: 100%;
  }

  .healthok_gummies {
    background-image: none;
    padding: 0;
    height: auto;
  }

  .health_box,
  .gummies_box {
    width: 50%;
  }

  .about_banner_content {
    width: 80%;
    margin: 0 auto;
  }

  .about_banner_overlap_content {
    width: 89% !important;
    padding: 2.5rem 1.5rem;
  }

  .about_banner_overlap_content p {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }

  .about_right_content {
    padding: 2rem;
  }

  .about_right_content h2 {
    font-size: 2.1rem;
    line-height: 0.95;
  }

  .about_right_content p {
    font-size: 1.1rem;
  }

  .contact_banner_content h2 {
    font-size: 3rem;
  }

  .contact_banner_content h5 {
    font-size: 1.2rem;
  }

  .contact_banner_content p {
    font-size: 1rem;
  }

  .blog_banner_content {
    width: 90%;
  }

  .blog_banner_content h2 {
    font-size: 3rem;
  }

  .blog_banner_content p {
    font-size: 1rem;
  }

  .faq-search-container {
    width: 90%;
  }

  .form-container {
    margin: 0 auto;
  }

  /*.slide {*/
  /*    width: 28%;*/
  /*}*/

  /*.slide:nth-child(2) {*/
  /*    width: 10%;*/
  /*}*/

  .gummies_banner_bg,
  .second_section_bg {
    height: auto;
    background: none;
  }

  .third_banner_headings h4 {
    letter-spacing: 0;
    font-size: 1.5rem;
  }

  .third_banner_headings h2 {
    font-size: 2.5rem;
    line-height: 2rem;
  }

  .third_banner_content img {
    width: 60%;
  }

  .tablet_sixth_section_content h3 {
    font-size: 1.5rem;
  }

  .footer {
    flex-direction: column;
  }

  .footer_box1,
  .footer_box2_content {
    width: 100%;
  }

  .footer_box1_content h3 {
    font-size: 1.8rem;
  }

  .footer_logo {
    width: 50%;
  }
}

@media (max-screen: 600px) {
  .search-container {
    width: 100%;
  }
}

@media (min-width: 601px) and (max-width: 767px) {
  .about_right_content {
    padding: 2rem;
  }

  .about_right_content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 601px) and (max-width: 767px) {
  /*.banner_bg {*/
  /*    height: 100% !important;*/
  /*}*/

  .mankind_banner_logo {
    width: 20%;
    top: 3%;
    left: 50%;
    transform: translate(-50%, -3%);
  }

  .social_heading_box {
    width: 80%;
  }

  .social_heading_box h2 {
    font-size: 2.5rem;
  }

  .social_heading_box p {
    font-size: 0.95rem;
  }

  .box {
    height: 500px;
  }

  .healthok_banner {
    background-image: none;
    padding: 0;
    height: 100%;
  }

  .healthok_gummies {
    background-image: none;
    padding: 0;
    height: auto;
  }

  .health_box,
  .gummies_box {
    width: 50%;
  }

  .about_banner_overlap_content p {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }

  .form-container {
    margin: 0 auto;
  }

  /*.slide {*/
  /*    width: 25%;*/
  /*}*/

  /*.slide:nth-child(2) {*/
  /*    width: 10%;*/
  /*}*/

  .gummies_banner_bg,
  .second_section_bg {
    height: 100%;
    background: none;
  }

  .third_banner_headings h4 {
    letter-spacing: 0;
    font-size: 1.5rem;
  }

  .third_banner_headings h2 {
    font-size: 2.5rem;
    line-height: 2rem;
  }

  .third_banner_content img {
    width: 50%;
  }

  .tablet_sixth_section_content h3 {
    font-size: 2rem;
  }

  .footer_box1_content h3 {
    font-size: 2rem;
  }

  .footer_logo {
    width: 50%;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  /*.banner_bg {*/
  /*    height: 100% !important;*/
  /*}*/

  .mankind_banner_logo {
    width: 15%;
    top: 3%;
    left: 50%;
    transform: translate(-50%, -3%);
  }

  .social_heading_box {
    width: 60%;
  }

  .social_heading_box h2 {
    font-size: 2.5rem;
  }

  .social_heading_box p {
    font-size: 0.85rem;
  }

  .box {
    height: 500px;
  }

  .healthok_banner {
    background-image: none;
    padding: 0;
    height: 100%;
  }

  .healthok_gummies {
    background-image: none;
    padding: 0;
    height: auto;
  }

  .health_box,
  .gummies_box {
    width: 50%;
  }

  .about_banner_overlap_content p {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }

  .form-container {
    margin: 0 auto;
  }

  .gummies_banner_bg,
  .second_section_bg {
    height: 100%;
    background: none;
  }

  .third_banner_headings h4 {
    letter-spacing: 0;
    font-size: 2rem;
  }

  .third_banner_headings h2 {
    font-size: 3.5rem;
    line-height: 2rem;
  }

  .third_banner_content img {
    width: 30%;
  }

  .tablet_routine h3 {
    font-size: 2.5rem;
  }

  .tablet_routine h4 {
    font-size: 1.5rem;
  }

  .tablet_sixth_section_content h3 {
    font-size: 2.1rem;
  }

  .footer_box1_content h3 {
    font-size: 2.8rem;
  }

  .footer_logo {
    width: 50%;
  }
}

@media (min-width: 993px) and (max-width: 1220px) {
  /* .banner_bg {
        height: 80vh!important;
    } */

  .social_heading_box {
    width: 50%;
  }

  .social_heading_box h2 {
    font-size: 3rem;
  }

  .social_heading_box p {
    font-size: 0.85rem;
  }

  .box {
    height: 500px;
  }

  /* .health_box,
    .gummies_box {
        width: 60%;
    } */

  .about_banner_overlap_content p {
    font-size: 2rem;
    line-height: 2.3rem;
  }

  .third_banner_headings h4 {
    font-size: 2.5rem;
  }

  .third_banner_headings h2 {
    font-size: 4.7rem;
    line-height: 2.5rem;
  }

  .third_banner_content img {
    width: 30%;
  }

  .tablet_routine h3 {
    font-size: 2.5rem;
  }

  .tablet_routine h4 {
    font-size: 1.5rem;
  }

  .footer_box1_content h3 {
    font-size: 2.5rem;
  }

  .footer_logo {
    width: 35%;
  }
}

@media (min-width: 1220px) and (max-width: 1350px) {
  .tablet_routine h3 {
    font-size: 2.5rem;
  }

  .tablet_routine h4 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1350px) and (max-width: 1420px) {
  /* .banner_bg {
        height: 80vh!important;
    } */

  .gummies_slider_img2 p,
  .gummies_slider_img2 h6 {
    font-size: 20px;
  }

  .third_banner_headings h4 {
    font-size: 2.5rem;
  }

  .third_banner_headings h2 {
    font-size: 4.7rem;
    line-height: 2.5rem;
  }
}

/* @media (min-width: 993px) and (max-width: 1220px){
    .social_heading_box {
        width: 50%;
    }

    .social_heading_box h2 {
        font-size: 3rem;
    }

    .social_heading_box p {
        font-size: 0.85rem;
    }
} */

/* @media (min-width: 786px) and (max-width: 1400px){
    .banner_bg {
        height: 100%;
    }
} */
