@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* Common Container Styling */
.container {
  max-width: 1208px;
  width: 100%;
  margin: 0 auto;
  padding-left: 75px;
  padding-right: 75px;
}


/* Clinical Research Section */
.clinical-research {
  background-color: var(--color-bg-light);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.clinical-research__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Title Styling */
.clinical-research__title {
  font-family: var(--font-family-headings);
  color: var(--color-primary-navy);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Description Styling */
.clinical-research__description {
  font-size: 21px;
  color: #000000;
  font-weight: 400;
  max-width: 1058px;
  margin: 0 auto;
  text-align: left;
  /* line-height: 32px; */
}

/* Study Section */
.study-section {
  /* background-color: #eaedf0; */
  background-color: #eaedf0;
  
  /* Light gray background matching screenshot */
  padding: 50px 0;
  color: #1b252d;
  position: relative;
  overflow: hidden;
}

.study-section__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.study-section__title {
  font-family: var(--font-family-headings);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary-navy);
  text-align: left;
}

.study-section__description {
  font-size: 21px;
  /* line-height: 32px; */
  color: #000000;
  font-weight: 400;
  text-align: left;
  max-width: 1058px;
  margin-bottom: 8px;
}

.study-section__content {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-top: 16px;
  text-align: left;
}



.study-section__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.study-section__column--left {
  max-width: 573px;
}

.study-section__column--right {
  max-width: 331px;
}

.study-section__subtitle {
  font-size: 21px;
  /* line-height: 32px; */
  font-weight: 400;
  color: #000000;
}

.study-section__subtitle--bold {
  font-weight: 700;
}

.study-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.study-section__list-item {
  position: relative;
  padding-left: 24px;
  font-size: 21px;
  /* line-height: 32px; */
  color: #000000;
}

.study-section__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  /* line-height: 32px; */
  color: #000000;
}

.study-section__info-text {
  font-size: 21px;
  /* line-height: 32px; */
  color: #000000;
}

.study-section__btn-wrapper {
  margin-top: 16px;
}

.study-section__button {
  display: inline-block;
  background-color: #101c24;
  /* Dark button */
  color: #ffffff;
  padding: 14px 40px;
  font-size: 21px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  /* Square button per image */
  text-align: center;
  transition: background-color 0.2s ease-in-out;
}

.study-section__button:hover {
  background-color: #2c3e50;
}

/* Double-Blind Section */
.double-blind-section {
  /* background-color: var(--color-bg-light); */
  background-color: #eaedf0;
  /* White background */
  padding: 50px 0;
  color: #1b252d;
  position: relative;
  overflow: hidden;
}

.double-blind-section__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.double-blind-section__title {
  font-family: var(--font-family-headings);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary-navy);
  text-align: left;
}

.double-blind-section__description {
  font-size: 21px;
  color: #000000;
  font-weight: 400;
  text-align: left;
  max-width: 1058px;
  margin-bottom: 8px;
}

.double-blind-section__content {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-top: 16px;
  text-align: left;
}



.double-blind-section__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.double-blind-section__column--left {
  max-width: 528px;
}

.double-blind-section__column--right {
  max-width: 331px;
}

.double-blind-section__subtitle {
  font-size: 21px;
  font-weight: 400;
  color: #000000;
}

.double-blind-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.double-blind-section__list-item {
  position: relative;
  padding-left: 24px;
  font-size: 21px;
  color: #000000;
}

.double-blind-section__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: #000000;
}

.double-blind-section__info-text {
  font-size: 21px;
  color: #000000;
}

.double-blind-section__info-text-indented {
  font-size: 21px;
  color: #000000;
  padding-left: 24px;
}

.double-blind-section__btn-wrapper {
  margin-top: 16px;
}

.double-blind-section__button {
  display: inline-block;
  background-color: #101c24;
  /* Dark button */
  color: #ffffff;
  padding: 14px 40px;
  font-size: 21px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  /* Square button */
  text-align: center;
  transition: background-color 0.2s ease-in-out;
}

.double-blind-section__button:hover {
  background-color: #2c3e50;
}

/* Open-Label Study Section */
.open-label-section {
  /* background-color: #eaedf0; */
  /* Same light gray as study-section */
  padding: 50px 0;
  color: #1b252d;
  position: relative;
  overflow: hidden;
}

.open-label-section__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.open-label-section__title {
  font-family: var(--font-family-headings);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary-navy);
  text-align: left;
}

.open-label-section__description {
  font-size: 21px;
  color: #000000;
  font-weight: 400;
  text-align: left;
  max-width: 1058px;
  margin-bottom: 8px;
}

.open-label-section__content {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-top: 16px;
  text-align: left;
}


.open-label-section__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.open-label-section__column--left {
  max-width: 528px;
}

.open-label-section__column--right {
  max-width: 331px;
}

.open-label-section__text {
  font-size: 21px;
  color: #000000;
  font-weight: 400;
}

.open-label-section__text--bold {
  font-weight: 700;
}

.open-label-section__btn-wrapper {
  margin-top: 16px;
}

.open-label-section__button {
  display: inline-block;
  background-color: #101c24;
  color: #ffffff;
  padding: 14px 40px;
  font-size: 21px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  text-align: center;
  transition: background-color 0.2s ease-in-out;
}

.open-label-section__button:hover {
  background-color: #2c3e50;
}

/* Site Footer */
.site-footer {
  background-color: #0f1720;
  padding: 40px 0 30px;
  color: #ffffff;
}

.site-footer__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.site-footer__logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer__logo-wrap a{
  max-width: max-content;
}

.site-footer__logo {
  width: 120px;
  height: auto;
  display: block;
}

.site-footer__logo-tagline {
  font-family: var(--font-family-body);
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}



.site-footer__copyright {
  font-family: var(--font-family-body);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

/* Re:yourgut Banner Section */
.re-gut-banner {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 28px 0;
}

.re-gut-banner__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.re-gut-banner__logo {
  width: 140px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.re-gut-banner__tagline {
  font-family: var(--font-family-body);
  font-size: 18px;
  font-weight: 400;
  color: #1b252d;
  flex: 1;
}

.re-gut-banner__button {
  display: inline-block;
  background-color: #101c24;
  color: #ffffff;
  padding: 14px 40px;
  font-size: 21px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s ease-in-out;
}

.re-gut-banner__button:hover {
  background-color: #2c3e50;
}


/*atrantilpro---banner-page----*/
/* Parent Section */
.atrantil-pro-section {
  padding: 70px 0;
  font-family: 'Roboto';
  background: #fff;
}


/* Header */
.atrantil-pro-header {
  text-align: center;
  margin-bottom: 50px;
}

.atrantil-logo {
  max-width: 260px;
}

.atrantil-title {
  margin: 20px 0;
  font-weight: bold;
  font-size: 36px;
  color: rgb(64, 64, 64);
  font-style: normal;
}

.atrantil-title span {
  color: #8dc63f;
}

.atrantil-subtitle {
  font-size: 28px;
  font-weight: 600;
}

/* Main Content */
.atrantil-pro-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.atrantil-pro-section .custcontainer {
  max-width: 800px;
}

/* Left */
.atrantil-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.arrow-box {
  font-size: 60px;
  color: #8dc63f;
}

/* Center */
.atrantil-center {
  text-align: center;
}

.product-image {
  max-width: 230px;
}

/* Right */
.atrantil-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-left: 50px;
}

.pro-btn {
  width: 150px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #1b252d;
  border-radius: 0;
  font-weight: bold;
  line-height: 1.5;
  transition: .3s;
}

.pro-btn:hover {
  background: #2c3e50;
}

/* Description */
.atrantil-description {
  max-width: 850px;
  margin: 50px auto 0;
  text-align: center;
  line-height: 1.8;
  color: #444;
}

/*==============*/
.atrantil-polyphenols-section {
  padding: 0px 0 50px 0;
  background: #fff;
}

/* Parent */
.atrantil-polyphenols-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

/* Logo */
.polyphenols-logo {
  text-align: center;
  margin-bottom: 20px;
}

.polyphenols-logo img {
  max-width: 180px;
}

/* Green Box */
.polyphenols-content {
  position: relative;
  background: rgba(159, 204, 67, 1);
  padding: 0px 20px 40px 20px;
  overflow: hidden;
  min-height: auto;
  font-family: 'Roboto';
}

/* Background */
.polyphenols-bg {
  position: absolute;
  inset: 0;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.polyphenols-bg img {
  width: 100%;
  max-width: 655px;
  min-height: 100%;
}

/* Content */
.polyphenols-top,
.polyphenols-middle,
.polyphenols-bottom {
  position: relative;
  z-index: 2;
}

/* Top */
.polyphenols-top {
  text-align: center;
  margin-bottom: 35px;
}


.polyphenols-top h2 {
  font-size: 22px;
  font-weight: bold;
  color: rgb(44, 46, 110);
  margin: 20px 0 0 0;
}

.polyphenols-top p {
  font-size: 18px;
  font-weight: bold;
  color: rgb(44, 46, 110);
  margin: 20px 0 0 0;
}

.polyphenols-content .custom-row {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  max-width: 320px;
  margin: 0 auto;
  gap: 30px;
}

/* Rows */
.polyphenols-middle,
.polyphenols-bottom {
  display: flex;
  justify-content: flex-start;
  align-items: self-start;
  gap: 15px;
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}

/* Arrow */
.vertical-arrow {
  width: 63px;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}

.vertical-arrow img {
  width: 100%;
  height: 200px;
}

.vertical-arrow.up {
  position: relative;
}

.vertical-arrow.down {
  position: relative;
}

/* Lists */
.decrease-list ul,
.increase-list ul {
  list-style: none;
  padding: 0;
}

.decrease-list li,
.increase-list li {
  color: #2c2e6e;
  font-size: 16px;
  font-weight: bold;
  margin: 12px 0;
}

/*--------------------*/
/*------------megatri-sec--start------*/

section.atrantil-polyphenols-section.megatri-sec .polyphenols-content {
  background: rgba(44, 45, 110, 1);
}



section.atrantil-polyphenols-section.megatri-sec .polyphenols-top h2,
section.atrantil-polyphenols-section.megatri-sec .polyphenols-top p {
  color: #9fcc43;
}

section.atrantil-polyphenols-section.megatri-sec .decrease-list li,
section.atrantil-polyphenols-section.megatri-sec .increase-list li {
  color: #9fcc43;
}

/*------------megatri-sec------end--*/

section.contact-sec .custom-row {
  display: flex;
  font-family: 'Roboto';
  gap: 30px;
}

section.contact-sec h2 {
  text-align: center;
  color: rgb(64, 64, 64);
  margin-bottom: 40px;
}

.from-left-content {
  max-width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: start;
  gap: 60px;
}

.from-left-content .formpara {
  color: #000;
}

.form-right-sec {
  width: 100%;
}

.css-4cpoln.css-4cpoln {
  background: #fff !important;
}
/* 
form #form-fields-container .css-1cal32j.css-1cal32j,
.css-1cal32j.css-1cal32j {
  border-radius: 10px !important;
} */

.css-1isfrdg.css-1isfrdg {
  justify-content: left !important;
}

section.contact-sec form #form-fields-container .css-bh3upc.css-bh3upc,
.css-bh3upc.css-bh3upc {
  color: #000;
  font-size: 14px;
  font-weight: bold;
}

form #form-fields-container .css-15p1t55.css-15p1t55,
.css-15p1t55.css-15p1t55,
.css-1p8dlmv-control {
  background-color: #fff;
  color: #000;
  border-radius: 5px;
  box-shadow: inset 0px 2px 3px #dddddd !important;
  -webkit-box-shadow: inset 0px 2px 3px #dddddd;
  -moz-box-shadow: inset 0px 2px 3px #dddddd;
  min-height: 35px;
}

.atrantil-pro-header .atrantil-description {
  display: none;
}


.from-left-content {
  position: sticky;
  top: 100px;
  /* Adjust based on your header height */
  align-self: flex-start;
}

.form-right-sec {
  width: 65%;
}

@media (max-width: 1024px) {

  .formpara,
  .study-section__description,
  .double-blind-section__list-item,
  .double-blind-section__info-text,
  .study-section__list-item,
  .open-label-section__text,
  .open-label-section__description {
    font-size: 18px;

  }

  .clinical-research__description {
    font-size: 18px;

  }
}

@media (max-width: 768px) {
  .re-gut-banner__container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .re-gut-banner__button {
    width: 100%;
    text-align: center;
  }

  .double-blind-section__content {
    flex-direction: column;
    gap: 40px;
  }

  .study-section__content {
    flex-direction: column;
    gap: 40px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }


  }

  .open-label-section__content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .form-right-sec {
    width: 100%;
  }

  .atrantil-pro-section {
    padding: 50px 0;
  }

  .video-section {
    padding: 0px 0px 50px 0px;
  }

  section.contact-sec .custom-row {

    flex-direction: column;
  }

  .from-left-content {
    max-width: 100%;
    gap: 30px;
    text-align: center;
    position: relative;
    top: 0;
  }

  section.contact-sec h2 {
    margin-bottom: 30px;
  }

  .atrantil-title {

    font-size: 28px;
  }

  .from-left-content .formpara {
    text-align: center;
  }

  .formpara,
  .study-section__description,
  .double-blind-section__list-item,
  .double-blind-section__info-text,
  .study-section__list-item,
  .open-label-section__text,
  .open-label-section__description {
    font-size: 16px;

  }

  .clinical-research__description {
    font-size: 16px;

  }
}

@media (max-width: 670px) {
  .open-label-section__content {

    flex-direction: column;
  }

  .atrantil-pro-content {
    flex-direction: column;
  }

  .atrantil-pro-header .atrantil-description {
    display: block;
    margin-top: 0;
  }

  .atrantil-left {
    display: none;
  }

  .atrantil-right {
    margin-left: 0;
  }

  .atrantil-description {
    margin: 30px auto 0;
  }

  .atrantil-description {
    margin: 30px auto 0;
    text-align: center;

  }

  .formpara {
    font-size: 16px;
    text-align: center;


  }

  .atrantil-description {
    display: none;
  }

  .polyphenols-bg {

    display: none;
  }
}

@media (max-width: 575px) {
  .contact-logo img {
    width: 100%;
  }
}