html,
body {
  font-family: "Poppins", sans-serif;
}
body {
  background: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
* {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  cursor: pointer;
}
*:focus, *:visited, *:focus:visited, *:focus:active {
  outline: none !important;
}
textarea:focus, input:focus {
  outline: none !important;
}
img {
  border: none;
  max-width: 100%;
}
a, a:hover {
  text-decoration: none;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
ul{
  margin: 0px;
  padding: 0px;
}
.container{
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}


/*-== Header Css ==-*/
.site-header {
  width: 100%;
  position: relative;
  z-index: 99;
}
.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  display: block;
}
.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}
.menu-item a,
.menu-link {
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #161616;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; 
}
.menu-item {
    padding: 30px 0px;
}
.has-dropdown a.menu-link {
  display: flex;
  gap: 10px;
  align-items: center;
}
.has-dropdown a.menu-link img {
  display: block;
}
.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  background: #fff;
  padding: 0 15px;
  border: 1px solid #BABABA;
}
.submenu li a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #BABABA;
  color: #161616;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.submenu li:last-child a {
  border-bottom: none;
}
.has-dropdown:hover .submenu {
  display: block;
}
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
}
.hamburger img {
  width: 30px;
}
@media (min-width: 992px) {
  .has-dropdown {
    position: relative;
  }
  .has-dropdown > .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #fff;
    border: 1px solid #e5e5e5;
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.20s ease,
      transform 0.20s ease;
  }
  .has-dropdown:hover > .submenu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
}
@media (max-width: 991px) {
  .menu {
    display: none;
    flex-direction: column;
    border-top: 1px solid #ddd;
  }
  .menu.show {
    display: flex;
  }
  .submenu {
    position: static;
    border: none;
  }
  .hamburger {
    display: block;
  }
}
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: left 0.3s ease;
  z-index: 1001;
  padding-top: 80px;
}
.sidebar.active {
  left: 0;
}
.sidebar-menu {
  list-style: none;
}
.sidebar-menu a,
.sidebar-menu .menu-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  font-size: 18px;
  border-bottom: 1px solid #e5e5e5;
  background: none;
  border: none;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
.sidebar .submenu {
  display: none;
  background: #fafafa;
}
.sidebar .submenu a {
  padding-left: 32px;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.nav {
  display: block;
}
.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
}
@media (max-width: 991px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
.head-right-icons ul {
    display: flex;
    gap: 32px;
}
.head-right-icons ul img {
    display: block;
}


/*-== Hero Banner Css ==-*/
.hero-banner {
    width: 100%;
    height: 685px;
    position: relative;
}
.hero-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-banner-content {
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 0 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}
.hero-banner-content h5{
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 0px;
}
.hero-banner-content h1{
  color: #FFF;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 0px;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}


/*-== Home Product Slider Css ==-*/
.home-product-slider {
  width: 100%;
  background: #EDEDED;
  padding: 100px 0 70px 0;
}
.slick-slide{
  width: 240px;
  margin-right: 20px;
}
.product-item-img {
  margin-bottom: 25px;
}
.product-item-img img {
  width: 145px;
}
.product-item-text h6{
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 5px;
}
.product-item-text h4{
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}
.product-item-text p{
  color: #666;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 10px;
  max-width: 200px;
}
.product-item-text .more-btn{
  border-radius: 50px;
  background: #808285;
  padding: 8px 24px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; 
  text-transform: capitalize;
  display: inline-block;
}


/*-== Technology Section Css ==-*/
.technology-section {
    width: 100%;
    background: #1A1A1A;
    padding: 88px 0 0 0;
}
.technology-content {
    max-width: 627px;
    margin: 0 auto;
    padding: 0 20px;
}
.technology-content h6{
  width: 100%;
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 12px;
}
.technology-content h3{
  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 12px;
  max-width: 500px;
}
.technology-content p{
  font-family: 'proxima-nova';
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 12px;
}
.technology-content p:last-child{
  margin-bottom: 0px;
}
.technology-gsap {
  width: 100%;
  position: relative;
}
.technology-gsap img {
  display: block;
}
.technology-gsap img.technology-bg {
    width: 100%;
    position: absolute;
    bottom: 0;
}
.technology-gsap img.technology-strips {
    width: 720px;
    margin: 0 auto;
    z-index: 9;
    position: relative;
}


/*-== Why Icon Section Css ==-*/
.why-icon-section {
    width: 100%;
    padding: 50px 0 100px 0;
    background: #1A1A1A;
}
.why-icon-section h3{
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 60px;
}
.why-icon-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.why-icon-item {
    text-align: center;
}
.why-icon-item img{
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}
.why-icon-item h6{
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 0px;
  padding: 0 8px;
}


/*-== Comparison Section Css ==-*/
.comparison-section {
    width: 100%;
    padding: 100px 0;
}
.comparison-title{
  margin-bottom: 60px;
}
.comparison-title h3{
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 0 auto;
  max-width: 650px;
}
.comparison-main {
    width: 100%;
    display: flex;
    gap: 80px;
    justify-content: center;
}
.comparison-item img {
    display: block;
    margin-bottom: 30px;
}
.comparison-item ul {
    max-width: 410px;
    margin: 0 auto;
}
.comparison-item li{
  color: #4D4D4D;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  border-bottom: 1px solid #4D4D4D;
  padding-bottom: 52px;
  margin-bottom: 52px;
}
.comparison-item li:last-child{
  margin-bottom: 0px;
}
.comparison-last{
  width: 100%;
  padding-top: 40px;
}
.comparison-last p{
  color: #4D4D4D;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; 
  margin: 0px;
}


/*-== Peptide Education Section Css ==-*/
.peptide-education {
    width: 100%;
    margin-bottom: 100px;
}
.peptide-education-main {
    border-radius: 20px;
    background: #F4F4F4;
    padding: 80px 60px;
    overflow: hidden;
    position: relative;
}
.peptide-education-text {
    max-width: 580px;
}
.peptide-education-text h6{
  color: #4D4D4D;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.peptide-education-text h3{
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
.peptide-education-text p{
  color: #4D4D4D;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 20px;
}
.btn-dark{
  display: inline-block;
  border-radius: 50px;
  background: #000;
  padding: 8px 24px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
}
.peptide-education-img{
  position: absolute;
  top: 0px;
  right: 0px;
}


/*-== Certified Icon Text Section Css ==-*/
.certified-icon-text{
  width: 100%;
  background: #474747;
  padding: 50px 0;
}
.certified-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.certified-item img{
  display: block;
  margin-bottom: 40px;
}
.certified-item h5{
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 30px;
}
.certified-item p{
  color: #FFF;
  font-family: 'proxima-nova';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 0px;
}
.certified-item {
    flex: 1;
    border-right: 1px solid #F5F5F5;
    padding-right: 40px;
    margin-right: 40px;
}
.certified-item:last-child{
  border-right: 0px;
  padding-right: 0px;
  margin-right: 0px;
}
.certified-3 p {
    padding-right: 40px;
}


/*-== Discover Section Css ==-*/
.discover-section {
    width: 100%;
    padding: 100px 0;
}
.discover-title {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    margin-bottom: 100px;
    text-align: center;
}
.discover-title h3{
  color: #161616;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
.discover-row {
    width: 100%;
    display: flex;
    gap: 20px;
}
.discover-item {
    flex: 1;
    padding: 30px;
    background: #F5F5F5;
}
.discover-item h4{
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 10px;
}
.discover-item p{
  color: #6D6E71;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 20px;
}
.discover-item img{
  width: 100%;
  display: block;
}


/*-== Footer Css ==-*/
.footer-main {
  width: 100%;
  background: #161616;
  padding: 60px 0 40px 0;
}
.footer-row {
  width: 100%;
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
.subscribe-main {
    max-width: 368px;
}
.footer-links {
    display: flex;
    gap: 80px;
}
.footer-links li h5{
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
.footer-links li a{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.footer-links li{
  margin-bottom: 8px;
}
.footer-links li:last-child{
  margin-bottom: 0px;
}
ul.subscribe-social {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}
ul.subscribe-social img {
    display: block;
}
.subscribe-card span{
  font-family: 'proxima-nova';
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  width: 100%;
  display: block;
  margin-bottom: 16px;
}
.subscribe-input{
  margin-bottom: 16px;
}
.subscribe-input form{
  width: 100%;
  display: flex;
}
.subscribe-input input{
  flex: 1;
  border: 1px solid #FFF;
  background: #FFF;
  height: 47px;
  padding: 0 20px;
  color: #4E4E4E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.subscribe-input button{
  background: #545454;
  padding: 15px 10px;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  border: 0px;
  flex: none;
}
.subscribe-card p{
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 0px;
}
.footer-last {
    width: 100%;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.footer-bbb img{
  display: block;
}
.footer-cc {
  max-width: 500px;
}
.footer-cc p{
  color: #FFF;
  font-family: 'proxima-nova';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 20px;
}
.footer-cc span{
  width: 100%;
  display: block;
  text-align: right;
  color: #FFF;
  font-family: 'proxima-nova';
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}











