/** Shopify CDN: Minification failed

Line 292:15 Expected identifier but found whitespace
Line 292:17 Unexpected "{"
Line 292:26 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-image-banner__container {
  position: relative;
  overflow: visible;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 120px 1rem;
  box-sizing: border-box;
}

.custom-image-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.custom-image-banner__logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

h2 {
  color: #fff !important;
}

.custom-image-banner__content {
  position: relative;
  z-index: 2;
  width: 45%;
  margin-left: auto;
  margin-right: 50px;
  top: 50%;
  /*transform: translateY(-50%);*/
  padding: 2rem;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.custom-image-banner__content > * {
  max-width: 100%;
  overflow-wrap: break-word;
}
   .logo-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
     gap: 20px;
}

.logo-carousel .logo-slide {
  padding: 0 15px;
   margin: 0 10px;
}

.logo-carousel .slick-slide img {
  width: 80px;
  height: auto;
  display: block;
  
   margin: 0 10px;
}


/* Medium screens */
@media screen and (max-width: 1024px) {
  .custom-image-banner__content {
    width: 60%;
    margin-right: 30px;
    padding: 1.5rem;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .custom-image-banner__container {
    flex-direction: column;
    padding-top: 150px;
  }

  .custom-image-banner__content {
    width: 90%;
    margin: 0 auto;
    top: auto;
    transform: none;
    padding: 1rem;
    text-align: center;
  }

  .custom-image-banner__logo {
    display: flex;
    justify-content: center;
  }

  .custom-image-banner__content{
  text-shadow: 0 0 5px rgba(0, 0, 1, 0.6);
  }
  

}
.collection-banner-custom {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  margin-top: -120px;
  color: white;
}

.collection-banner-custom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(71, 84, 62, 0.4);
}

.collection-banner-custom .inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
  width: 40%;
  margin-left: 10%;
  top: 55%;
  transform: translateY(-50%);
}

.collection-banner-custom h1 {
  text-align: left;
  color: #fff;
  font-size: 40px;
  line-height: 1.2;
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
  .collection-banner-custom .inner {
    width: 60%;
    margin-left: 5%;
  }
}

@media screen and (max-width: 768px) {
  .collection-banner-custom {
    height: 200px;
    padding: 5rem 1rem;
    overflow: hidden;
  }

  .collection-banner-custom .inner {
    width: 100%;
    margin-left: 0;
    top: 80%;
    padding: 1.5rem;
    text-align: center;
  }

  .collection-banner-custom h1 {
    font-size: 25px;
    margin: 100px 10%;
    width: 80%;
    text-align: center;
  }
}

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

  .collection-banner-custom .inner {
    padding: 1rem;
  }

  .collection-banner-custom {
    
    padding-top: 150px;
  }
}
.contact-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2rem;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Optional dark overlay */
  z-index: 0;
}

.contact-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-banner__content,
.contact-banner__form {
  flex: 1 1 45%;
  padding: 2rem;
}
  

.contact-banner__content h1 {
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-banner__content p {
  margin-bottom: 1rem;
}

.contact-banner__content a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}

.contact-banner__form{
  background: #fff;
  border-radius: 30px;
}

  #contactpage-policies h3{
    color: #fff;
  }

  #contactpage-policies ul{
    list-style: none;
  }

  #contactpage-policies ul li a{
    text-decoration: none;
    font-weight: 500;
  }

  #contactpage-policies ul li a:hover{
    text-decoration: underline;
  }

@media screen and (max-width: 989px) {
  .contact-banner__content,
  .contact-banner__form {
    flex: 1 1 100%;
    text-align: center;
    padding: 1rem;
  }

  #contactpage-policies ul{
    padding-left: 0;
  }

  
}
.banner-text-left__wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: {{ section.settings.margin_top | append: 'px' }};
    
  }

  .banner-text-left__image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .banner-text-left__content-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 50%;
    margin-left: 10%;
    padding: 2rem;
    color: #fff;
  }

  .banner-text-left__logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
  }
  h2 p{
    font-size: 40px;
    margin: 0;
  }

  @media screen and (max-width: 768px) {
    .banner-text-left__content-wrapper {
      width: 90%;
      margin: 0 5%;
      left: initial;
      text-align: left;
    }

    .banner-text-left__image{
      background-color: #000;
    }

    .banner-text-left__image img {
    opacity: 0.6;
  }

    .banner-text-left__content-wrapper{
      transform: translateY(-30%);
    }

    .banner-text-left__content-wrapper h2{
      text-shadow: 0 0 3px black;
    }
  }
.custom-footer{
    color: #fff!important;
  }

  .custom-footer a:hover{
    opacity: 1!important;
    text-decoration: underline;
    color: #fff!important;
  }
  
  .footer-container {
    width: 90%;
    margin: 0 5%;;
    padding: 20px;
    float: left;
  }

  .custom-footer-row1 {
    width: 100%;
   float: left;
    border-top: 1px solid white;
    padding: 50px 10px;
  }

  .insta-banner {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.insta-banner a {
  color: #fff;
  text-decoration: none;
}

.insta-left,
.insta-center,
.insta-right {
  flex: 1;
  margin: 0;
}

.insta-left {
  text-align: left;
}

.insta-center {
  text-align: center;
}

.insta-right {
  text-align: right;
}

  .custom-footer-row2 {
    width: 100%;
   float: left;
    padding: 50px 20px;
  }

  .footer-firstpart{
    width: 35%;
    float: left;
    padding: 0 10px;
  }
  
  .footer-secondpart{
    width: 62%;
    float: left;
  }

  .custom-footer-col1 {
    width: 100%;
    float: left;
  }

   .footer-secondpart ul{
     list-style: none;
     color: #fff;
     padding-left: 0;
   }

  .footer-secondpart ul li a{
    color: #fff;
    text-decoration: none;
   }

  .footer-secondpart ul li a:hover{
    color: #a2ba71;
  }

  .footer-secondpart h2{
    color: #fff;
  }

  .footer-secondpart .list-social{
    display: initial;
  }

  .footer-secondpart .list-social li{
    float: left;
  }

  .footer-secondpart .svg-wrapper{
    width: 35px;
    height: 35px;
  }
  

  .footer-secondpart .list-social__item .icon{
    width: 35px;
    height: 35px;
  }

  .abest-footer-icons svg{
      width: 20px;
  height: 20px;
  fill: #fff;
  margin-right: 5px;
  float: left;
  }

  .klaviyo-form-Yvgh5C .column{
    display: ;
    min-height: initial!important;
  }
 

  .custom-footer-col2
  {
    width: 20%;
    float: left;
  }

  
  .custom-footer-col3
  {
    width: 35%;
    float: left;
  }

  .custom-footer-col4
  {
    width: 45%;
    float: left;
  }

  

  body.homepage .custom-footer-row1{
    background-color: transparent;
  }



  body:not(.homepage) .custom-footer{
    background-color: #ffffff;
  background-image: url(//abestsupplements.myshopify.com/cdn/shop/files/dynamic-style.webp?v=1750418272);
  background-repeat: repeat;
  background-size: 150px 150px;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  
  }

  
  body:not(.homepage) .custom-footer-row2{
    background: none;
    background-color: transparent!important;
    background-image: none;
    border-top: 1px solid white;
  }

  .footer-contact{
    float: left;
  }

  body.homepage .custom-footer-row2{
    background-color: rgba(66, 78, 47, 0.5);
    background-image: none;
  }

  body:not(.homepage) .custom-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(rgba(164, 199, 105, 1), rgba(44, 64, 12, 1) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

  body.homepage .custom-footer-row2::before{
    display: none;
  }
  .custom-footer-col4 img{
      width: 300px;
      margin: 0 auto;
    max-width: 80%;
    }
  .contact-info-footer{
    width: 100%;
    float: left;
  }

  @media screen and (max-width: 980px) {
    .custom-footer-col1, .footer-firstpart, .footer-secondpart {
      width: 100%;
      padding: 0;
    }

    .custom-footer-col2,
    .custom-footer-col3,
    .custom-footer-col4 {
      width: 100%;
      margin-top: 20px;
      text-align: center;
    }

    .custom-footer-col4 ul{
      width: 100%;
    }

    
  }

  @media screen and (max-width: 768px) {
  .insta-banner {
    flex-direction: column;
    text-align: center;
  }

  .insta-left,
  .insta-center,
  .insta-right {
    text-align: center;
    flex: unset;
  }

    .footer-container {
    width: 100%;
    margin: 0;
    padding: 0px;
  }
    .klaviyo-form-Yvgh5C{
      text-align: center;
    }

    .footer-secondpart .list-social{
      display: inline-grid;
    }
}