/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/

/** Home Standard Width Container  **/
.container {
    max-width: 1350px;
}

.homepage #hero {
    width: 100%;
    height: auto;
    background: #fff;
    text-align: center;
    position: relative;
}

.homepage .hero-intro {
    position: relative;
}

.homepage .hero-intro #hero-background-desktop {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
}
.homepage .hero-intro #hero-background-tablet {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    display: none;
}
.homepage .hero-intro #hero-background-mobile {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    display: none;
}

.homepage .hero-intro .container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1350px;
    padding: 60px 30px;
}

.homepage .hero-intro.desktop-only .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: 40px;
    max-width: 1300px;
    flex: none;
    order: 0;
    flex-grow: 0;
    padding: 60px 0;
}

.homepage .hero-intro.mobile-only {
    display: none;
}

.homepage .hero-intro .text-col {
    max-width: 450px;
    margin-right: 55px;
}

.homepage .sale-banner-homepage.sale-banner-homepage-mobile {
    display: none !important;
}

.homepage .hero-intro.desktop-only .text-col {
    flex: none;
    order: 0;
    flex-grow: 0;
    position: relative;
    width: 600px;
    max-width: 100%;
    margin-right: 0;
}

.homepage .categories-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
    padding: 10px 0;
}

.homepage .hero-intro.desktop-only .categories-container {
    width: 820px;
    padding: 0;
}

.homepage .categories-container.tablet {
    display: none;
}

.homepage .categories-container .category-item {
    height: 230px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.homepage .hero-intro.desktop-only .categories-container .category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 310px;
}

.homepage .categories-container .category-item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.homepage .categories-container .category-item h3 {
    color: #293644;
    font-size: 29px;
    font-weight: 600;
    margin: 23px 0 16px;

}

.homepage .hero-intro.desktop-only .categories-container .category-item h3 {
    margin: 0;
}

.homepage .hero-intro.desktop-only .categories-container .category-item:nth-child(n+3) h3 {
    margin-bottom: 16px;
}

.homepage .hero-intro.desktop-only .categories-container .category-item:nth-child(n+3) a {
    margin-top: 16px !important;
}

.homepage .comparison-data-container .os-viewport {
    overflow-y: hidden !important;
}

@media (max-width: 767px) {
    .homepage .categories-container .category-item h3 {
        font-size: 25px;
        padding: 0 5px;
    }
}

.homepage .categories-container .category-item img {
    position: relative;
    top: -18px;
    width: 160px;
}

.homepage .hero-intro.desktop-only .categories-container .category-item img {
    width: 160px;
    position:unset;
}   

.homepage .categories-container #proteinCard.category-item img,
.homepage .categories-container #preworkoutCard.category-item img {
    position: relative;
    top: -1px;
    width: 124px;
}

.homepage .categories-container #onSaleCard.category-item img {
    top: -17px;
}

.homepage .categories-container #preAndPostCard.category-item img {
    width: 185px;
    top: -15px;
}

.homepage .categories-container #mostPopularCar.category-item img {
    top: -18px;
}
.homepage header.hero-header {
    margin-bottom: 28px;
}

.homepage .hero-intro.desktop-only header.hero-header {
    margin-bottom: 33px;
}
.homepage #hero h1 {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 600;
    text-align: left;
    color: #293644;
    font-size: 34px;
    line-height: 42px;
    margin-top: 3px;
    width: 100%;
    margin-bottom: 0;
}

.homepage #hero .hero-intro.desktop-only h1 {
    letter-spacing: 0.3px;
}
.homepage #hero h1 span {
    display: block;
    margin-top:  28px;
}

.homepage #hero .hero-intro.desktop-only h1 span {
    margin-top: 21px;
}

.homepage .hero-intro p {
    font-family: 'proxima-nova', sans-serif;
    color: #293644;
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    text-align: left;
    font-weight: 400;
    width: 100%;
    max-width: 560px;
    margin-bottom: 28px;
    padding-right: 0;
}

.homepage .hero-intro.desktop-only p {
    letter-spacing: 0.4px;
    margin-bottom: 32px;
    max-width: 600px;
}

.homepage .hero-intro.desktop-only .text-col ul {
    text-align: left;
    padding-left: 43px;
    margin-bottom: 28px;
}

.homepage .hero-intro.desktop-only .text-col ul li {
    font-weight: 400;
    font-size: 19px;
    line-height: 29px;
    letter-spacing: 0.3px;
    color: #293644;
    font-family: 'proxima-nova', sans-serif;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    position: relative;
}

.homepage .hero-intro.desktop-only .text-col ul li:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 11px;
    background-image: url(../../css/images/homepage-hero-checkmark.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
    position: absolute;
    left: -42px;
    top: 9px;
}

.homepage #hero .hero-btns {
    display: flex;
    justify-content: space-between;
    max-width: 458px;
    margin: 0 0 10px;
}

.homepage .hero-container.desktop-only #hero .hero-btns {
    margin: 0;
}
.homepage #hero a {
    background-color: #27A2FF;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: block;
    letter-spacing: 0;
    line-height: 56px;
    float: none;
    transition: ease all 0.2s;
}

.homepage .hero-intro.desktop-only #hero a {
    line-height: 43px;
    margin: auto;
}

.homepage #hero .text-col a {
    width: 216.5px;
    height: 55px;
    font-size: 18px;
}

.homepage #hero .categories-container a {
    width: 168px;
    height: 43px;
    font-size: 16px;
    margin: 0;
    line-height: 43px;
}

.homepage #hero .categories-container #proteinCard a,
.homepage #hero .categories-container #preworkoutCard a {
    margin: 3px auto;
}

.homepage #hero a:hover {
    background: #138EEB;
}

.homepage #hero a.quiz-btn {
    background: #E48310;
    margin-left: 15px;
}

.homepage #hero a.quiz-btn:hover {
    background: #d6790b;
}

.bfcm-splash.tablet {
    display: none;
}

.homepage #hero a.sale-banner-homepage,
.homepage #hero a.sale-banner-homepage-mobile {
    width: 100% !important;
    height: 100%;
    background: transparent !important;
    position: relative;
    top: 13px;
}

.homepage #hero a.sale-banner-homepage-mobile {
    top: 9px;
    padding: 0 30px;
}

.homepage #hero-main {
    width: 100%;
    max-width: 1123px;
    display: inline-block;
    margin: 54px auto;
}

.homepage #hero-main .hero-main-video {
    width: 60%;
    margin: 0px auto;
    padding-left: 0px;
}

.homepage #hero-main #hero-main-video-preview {
    cursor: pointer;
    margin-bottom: -3px;
}

.homepage #hero-main .hero-video {
    position: relative;
    width: 100%;
}

.homepage .video-preview {
    cursor: pointer;
}

.homepage #hero-main > .right {
    width: 34.2%;
    padding-right: 35px;
}

.homepage #see-for-yourself h3 {
    margin-top: -8px;
    margin-bottom: 15px;
    width: 285px;
    line-height: 1.4;
    font-size: 18px;
    font-weight: 600;
    font-family: 'proxima-nova', sans-serif;
    text-align: left;
    color: #333;
}

.homepage #see-for-yourself ul {
    text-align: left;
    padding-left: 31px;
    margin-bottom: 28px;
    width: 100%;
}

.homepage #see-for-yourself ul li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.4;
    font-family: 'proxima-nova', sans-serif;
    color: #293644;
}

/* Adds blue square bullet */
.homepage #see-for-yourself ul li::before {
    content: "\25AA";
    color: #00a2ff;
    font-size: 20px;
    display: inline-block;
    width: 1em;
    margin-left: -1.6em;
    padding-right: 1.6em;
}

.homepage #see-for-yourself p {
    font-size: 15px;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
    color: #333;
    letter-spacing: 0.4px;
}

.homepage #hero-main ul.checks {
    position: relative;
    width: 112%;
}

.homepage #hero-main ul.checks {
    margin: 55px auto 0;
}

.homepage #hero-main ul.checks li {
    float: left;
    width: 25%;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #333;
    padding-left: 30px;
    margin-right: 0;
    letter-spacing: 0.05em;
    text-align: left;
    position: relative;
    margin-bottom: 15px;
    /*text-transform: uppercase;*/
}

.homepage #hero-main ul.checks li.checks-money {
    width: 27%;
    padding-right: 15px;
}

.homepage #hero-main ul.checks li.checks-free {
    width: 22%;
    margin-right: 25px;
}

.homepage #hero-main ul.checks li.checks-fda {
    width: 17%;
    padding-right: 15px;
    margin-right: 2px;
}

.homepage #hero-main ul.checks li.checks-nhmbg {
    padding-right: 20px;
}

.homepage #hero .blue-strip {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 162, 255, 0.75);
    width: 100%;
    height: 49px;
    text-align: center;
}

.homepage #hero .blue-strip span {
    display: inline-block;
    position: relative;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    line-height: 49px;
    text-transform: uppercase;
    margin-right: 45px;
}

.homepage #hero .blue-strip span:after {
    background: url('../../images/2017-images/hero-icon-separator.png') center no-repeat;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 19px;
    right: -31px;
    content: "";
    display: block;
}

.homepage #hero .blue-strip span.naturally {
    background: url('../../images/2017-images/hero-icon-naturally-sweet.png') left no-repeat;
    padding-left: 36px;
}

.homepage #hero .blue-strip span.made {
    background: url('../../images/2017-images/hero-icon-made-in-usa.png') left no-repeat;
    padding-left: 45px;
}

.homepage #hero .blue-strip span.no-blends {
    background: url('../../images/2017-images/hero-icon-no-blends.png') left no-repeat;
    padding-left: 34px;
}

.homepage #hero .blue-strip span.no-fillers {
    background: url('../../images/2017-images/hero-icon-no-filler.png') left no-repeat;
    padding-left: 36px;
    margin-right: 0;
}

.homepage #hero .blue-strip span.no-fillers:after {
    display: none;
}

.homepage header > h2,
.homepage #legion-instagram-reviews h2,
.homepage h2.proxima {
    text-align: center;
    font-size: 34px;
    color: #2c2e2f;
    margin-bottom: 50px;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 600;
}

.homepage h2.proxima {
    text-align: center;
    font-size: 34px;
    color: #2c2e2f;
    margin-bottom: 30px;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 600;
}

.homepage #more-from-legion h2.proxima {
    margin-bottom: 66px;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 600;
    font-size: 34px;
}

.homepage .hero-header h2 {
    font-weight: 600;
    margin-bottom: 0;
    padding: 52px 20px 0;
}

.homepage #hero .hero-featured-in {
    margin-left: 20px;
    margin-bottom: 34px;
    font-weight: 600;
}

.homepage #hero .hero-featured-in-slider {
    display: none;
}

.homepage #hero .featured-logo-section img {
    margin: 0 22px;
    vertical-align: middle;
}

.homepage #hero .featured-logo-section img:first-of-type {
    margin-left: 0;
}

.homepage #hero .featured-logo-section img:last-of-type {
    margin-right: 0;
}

.homepage #hero .featured-logo-section img.abc-logo {
    width: 35px;
}

.homepage #hero .featured-logo-section img.elle-logo {
    width: 63px;
}

.homepage #hero .featured-logo-section img.mens-health-logo {
    width: 114px;
}

.homepage #hero .featured-logo-section img.muscle-strength-logo {
    width: 42px;
}

.homepage #hero .featured-logo-section img.womens-health-logo {
    width: 114px;
}

.homepage #hero .featured-logo-section img.inc-500-logo {
    width: 49px;
}

.homepage #hero .featured-logo-section img.esquire-logo,
.homepage #hero .featured-logo-section img.mens-fitness-logo {
    width: 118px;
}

.homepage #hero .featured-logo-section-slider a {
    background: #DDDDDD;
    text-indent: -9999px;
    display: block;
    width: 6px;
    height: 6px;
    margin: 0 8px;
    outline: 0;
    border-radius: 100%;
}

.homepage #hero .featured-logo-section-slider a.active {
    background: #1CA4FC;
    width: 8px;
    height: 8px;
    position: relative;
    top: -1px;
}

/*--------------------------------------------------------------
# USP Icons
--------------------------------------------------------------*/
.homepage #usp-icons {
    width: 100%;
    height: auto;
    padding: 65px 0 30px;
    background: #F8F8F8;
}

.homepage #usp-icons h2 {
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
    color: #293644;
    font-size: 34px;
    font-weight: 600;
    font-family: 'proxima-nova', sans-serif;
}

@media (max-width: 1024px) {
    .homepage #usp-icons h2 {
        font-size: 34px;
        padding: 0 10px;
    }
    .homepage .hero-intro.desktop-only {
        display: none;
    }
    .homepage .hero-intro.mobile-only {
        display: block;
    }
}

@media (max-width: 767px) {
    .homepage #usp-icons h2 {
        font-size: 27px;
    }
}

.homepage #usp-icons > p {
    padding: 0 10px;
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    color: #293644 !important;
    font-size: 19px !important;
    letter-spacing: .3px;
}

@media (max-width: 1024px) {
    .homepage #usp-icons > p {
        font-size: 18px !important;
    }
}

.homepage #usp-icons .homeMetaIconList {
    max-width: 1350px;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-left: 10px;
    padding-right: 10px;
}

.homepage #usp-icons .homeMetaIconList div {
    cursor: pointer;
    color: #293644;
    letter-spacing: 0.3px;
    font-size: 13px;
    text-align: center;
    flex: auto;
    padding: 34px 20px;
}

.homepage #usp-icons .homeMetaIconList div span,
.homepage #usp-icons .homeMetaIconList div p {
    display: block;
    line-height: 1.5;
}

.homepage #usp-icons .homeMetaIconList div span {
    color: #27A2FF;
    font-weight: bold;
    font-size: 18px;
    margin: 13px 0 4px;
    width: 100%;
    text-decoration: underline;
}

.homepage #usp-icons .homeMetaIconList div span:hover {
    color: #026FC1;
}

.homepage #usp-icons .homeMetaIconList div p {
    font-size: 19px;
}

@media (max-width: 1024px) {
    .homepage #usp-icons .homeMetaIconList div p {
        font-size: 18px;
    }
}

/*.homepage #usp-icons .homeMetaIconList div.homeMetaUSA span {
    position: relative;
    bottom: -15px;
}
.homepage #usp-icons .homeMetaIconList div.homeMetaUSA p {
    position: relative;
    bottom: -28px;
}
.homepage #usp-icons .homeMetaIconList div.homeMetaTested span {
    position: relative;
    bottom: -15px;
}
.homepage #usp-icons .homeMetaIconList div.homeMetaTested p {
    position: relative;
    bottom: -28px;
}*/

.homepage #usp-icons .homeMetaIconList div .homeMetaIcon {
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 79px;
}
.homepage #usp-icons .homeMetaIconList div .homeMetaIcon:hover {
    opacity: 0.7;
}

.homepage #usp-icons .homeMetaIconList div #homeClinicalDoseIcon {
    background-size: 43px;
}

.homepage #usp-icons .homeMetaIconList div:hover > p {
    color: #000;
}

/*--------------------------------------------------------------
# Featured Stacks
--------------------------------------------------------------*/
.homepage .featuredStacks header > h2 {
    margin-bottom: 47px;
}

.homepage .featuredStacks {
    padding-top: 65px;
    padding-bottom: 66px;
    background: white;
}

.homepage .featuredStacks .cols {
    margin-bottom: 65px;
}

.homepage .product h5,
.homepage .featuredStacks h3 {
    font-size: 18px;
}

.homepage .featuredStacks p {
    margin: 0px auto 48px;
    font-size: 19px;
    line-height: 1.4;
}

.homepage .featuredStacks .reviewCount,
.homepage .featuredStacks .meta button,
.homepage .featuredStacks .meta a {
    font-size: 15px;
    font-weight: bold;
}

.homepage .featuredStacks .reviewCount {
    color: #333;
    font-size: 18px;
    font-weight: normal;
    margin-right: 3px;
}

.homepage .featuredStacks .productFeature.save20,
.homepage .featuredStacks .productFeature.soldOut {
    /*width: 80px !important;
    height: 80px;
    background-size: 80px;
    left: 288px !important;
    top: 54px !important;*/
    left: initial !important;
    transform: translate(50%, -50%) !important;
    right: calc(((100% - 505px) / 3) + 114.5px);
    top: 43px;
}

.homepage .featuredStacks .regularPrice,
.homepage  .priceOld,
.homepage  .price {
    color: #333;
}


/*.homepage .priceOld,
.homepage .priceSale {
    display: block;
}

.homepage .priceOld {
    padding-bottom: 10px;
}

.homepage .price {
    padding: 15px;
    display: block;
}
*/
.homepage .btnBtnAddToCart,
.homepage .btnLearnMore {
    text-transform: none !important;
    letter-spacing: 0;
    float: none;
    display: block;
    margin: 0px auto;
    width: 157px;
}

#main.homepage .featuredStacks .addtocart {
    background: #e48310;
    border: none;
    height: 45px;
    letter-spacing: 0;
}

.homepage .btnBtnAddToCart {
    position: relative;
    top: -33px;
    height: 45px;
    font-size: 15px;
    font-weight: bold;
    background: #e48310;
}

.homepage .btnBtnAddToCart:hover,
#main.homepage .featuredStacks .addtocart:hover {
    background: #d2780d;
}

.homepage .btnLearnMore {
    position: relative;
    top: 57px;
    font-size: 15px;
    height: 45px;
    line-height: 45px;
}

.homepage .reviewCount_ {
    font-size: 18px;
    color: #333;
}

.homepage .product_ {
    height: 471px;
}

.homepage .featuredStacks .view-all,
.homepage .most-popular .view-all,
.homepage .about-us .cols .col a.btn,
.homepage .cost-to-produce-div .cost-to-produce-text a {
    width: 200px;
    height: 56px;
    line-height: 56px;
    letter-spacing: 0;
    font-size: 18px;
    display: inline-block;
    margin-top: 0px;
    color: #fff;
    background: #27A2FF;
    border: none;
    transition: ease background-color 0.2s;
}

.homepage .featuredStacks .view-all,
.homepage .cost-to-produce-div .cost-to-produce-text a {
    font-weight: 700;
    text-decoration: none;
    padding: 0 2px 8px;
    margin-top: 52px;
}

.homepage .cost-to-produce-div .cost-to-produce-text a {
    margin-top: 2px;
}

.homepage .featuredStacks .view-all:hover,
.homepage .cost-to-produce-div .cost-to-produce-text a:hover {
    background-color: #138EEB;
}

.homepage .cost-to-produce-div .cost-to-produce-text a {
    text-align: center;
}

@media (min-width: 1025px) {
    .whey .wrap_,
    .pulse .wrap_,
    body.home #main-react-root .the-30-day-bigger-leaner-stronger-stack .wrap_,
    body.home #main-react-root .the-30-day-thinner-leaner-stronger-stack .wrap_ {
        top: 0;
        transform: initial;
    }
}



/*--------------------------------------------------------------
# HOMEPAGE: Featured In
--------------------------------------------------------------*/

.homepage .featured-in {
    background: #464b4e;
    padding: 30px;
}

.homepage .featured-in h3 {
    color: #fff;
    text-align: center;
    display: block;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
}

.homepage .featured-in ul {
    margin: 0px auto;
    max-width: 1200px;
    margin-top: 25px;
    position: relative;
    right: -15px;
}

.homepage .featured-in ul li {
    float: left;
    width: 25%;
    text-align: center;
}

.homepage .featured-in ul li img {
    margin: 0px auto;
}

.homepage .featured-in ul li.featured-inc5000 {
    width: 15%;
}

.homepage .featured-in ul li.featured-inc5000 img {
    max-width: 75px;
}

.homepage .featured-in ul li.featured-labdoor {
}

.homepage .featured-in ul li.featured-labdoor img {
    max-width: 165px;
}

.homepage .featured-in ul li.featured-bengreen {
    width: 33%;
}

.homepage .featured-in ul li.featured-bengreen img {
    max-width: 240px;
}

.homepage .featured-in ul li.featured-barbend {
}

.homepage .featured-in ul li.featured-barbend img {
    max-width: 185px;
}

.homepage .featured-in .featured-happy {
    width: 448px;
    margin: 0 auto;
    background: #27a2ff;
    border-radius: 26px;
    margin-top: 25px;
    margin-bottom: -45px;
    /*box-shadow: 0px 17px 30px rgba(39, 162, 255, 0.3);*/
    padding: 17px 22px;
    position: relative;
    z-index: 1;
    top: 8px;
}

.homepage .featured-in .featured-happy .left {
    font-size: 14px;
    color: #eef7ff;
    font-weight: bold;
}

.homepage .featured-in .featured-happy .sep{
    font-size: 14px;
    color: #79c5ff;
    margin-left: 25px;
}

.homepage .featured-in .featured-happy .stars {
    float: right;
    background: url('../../images/2017-images/page-mindpump/desktop/blue-stars.png') center no-repeat;
    background-size: contain;
    width: 69px;
    height: 10px;
    margin-right: 10px;
}

.homepage .featured-in .featured-happy .right {
    font-size: 14px;
    color: #eef7ff;
    font-weight: bold;
}










/*--------------------------------------------------------------
# HOMEPAGE: Which Product
--------------------------------------------------------------*/

.homepage .which-product {
    padding: 0 0 68px;
    margin-bottom: 0px;
    background: white;
}

.homepage .which-product .options {
    width: 100%;
    margin-bottom: 46px;
    clear: both;
}

.homepage .which-product header {
    margin: 0 auto 9px;
    text-align: center;
}

.homepage .which-product header h2 {
    color: #293644;
    font-size: 34px;
    margin-bottom: 25px;
    text-transform: capitalize;
    letter-spacing: 0;
}

.homepage .which-product header p {
    font-size: 19px;
    color: #333333;
}

.homepage .which-product .options a {
    width: 25%;
    height: 224px;
    display: block;
    float: left;
    display: inline-block;
    text-decoration: none;
    color: #003334;
    text-align: center;
    font-weight: bold;
    transition: ease color 0.1s, ease border-color 0.1s;
}

.homepage .which-product a span {
    font-size: 18px;
    display: inline-block;
    font-weight: 700;
    padding: 185px 2px 10px;
    text-decoration: underline;
    color: #27A2FF;
}

.homepage .which-product a {
    position: relative;
}

.homepage .which-product a img {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 20px;
    right: 0;
}

.homepage .which-product a.lose-weight img {
    bottom: 46px;
}

.homepage .which-product a:hover span {
    color: #138EEB;
    border-color: #138EEB;
}

.homepage .which-product .quiz-cta {
    font-size: 19px;
    color: #333333;
    text-align: center;
}

.homepage .which-product .quiz-cta a {
    color: #27A2FF;
    font-weight: bold;
    transition: ease color 0.1s;
}

.homepage .which-product .quiz-cta a:hover {
    color: #138EEB;
}












/*--------------------------------------------------------------
# HOMEPAGE: Money Back Guarantee
--------------------------------------------------------------*/

.homepage .moneyback {
    padding: 65px 0px 70px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
}

.homepage .moneyback .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.homepage .moneyback .mobile {
    display: none;
}

.homepage .moneyback .left {
    width: 360px;
}

.homepage .moneyback .right {
    width: calc(100% - 360px);
    padding-left: 90px;
}

.homepage .moneyback img {
    display: block;
    width: 360px;
}

.homepage .risk-free h2,
.homepage .moneyback h2 {
    margin-bottom: 28px;
    color: #293644;
    font-size: 33px;
    letter-spacing: 0;
    text-align: center;
}

.homepage .moneyback header {
    width: 100%;
}

.homepage .moneyback h2 {
    margin-bottom: 28px;
    color: #293644;
    font-size: 34px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom:  60px;
}

.homepage .risk-free h2 {
    text-transform: capitalize;
}

.homepage .moneyback p {
    font-size: 19px;
    line-height: 1.5;
    margin: 0 auto 19px;
    letter-spacing: 0.3px;
    text-align: center;
    color: #293644;
}

@media only screen and (max-width: 767px) {
  .homepage .moneyback p {
      padding-left:  10px;
      padding-right:  10px;
      margin: 0 auto 17px;
  }
}

.homepage .moneyback p.moneyback-last-p {
    margin-bottom: 32px;
}

.homepage .moneyback a.btn {
    width: 200px;
    height: 56px;
    background-color: #27A2FF;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    letter-spacing: 0;
    line-height: 56px;
    text-align: center;
    margin: 0px auto;
    transition: ease all 0.2s;
    clear: both;
    text-transform: initial;
}

@media only screen and (min-width: 1100px) {

    .homepage .moneyback a.btn {
        float: left;
    }
    
    .homepage .moneyback p {
        text-align: left;
    }

}

.homepage .moneyback a.btn:hover {
    background: #138EEB;
}

.homepage .moneyback a.btn {
    margin: 10px auto 0;
}

.homepage .moneyback ul {
    margin: 0px auto;
    max-width: 700px;
}

.homepage .moneyback ul li {
    display: inline-block;
    width:40%;
}

.homepage .customer-testimonials .container,
.customer-testimonials .quotes {
    max-width: 1350px;
}

.customer-testimonials .quotes {
    padding: 0 90px;
}

.homepage .customer-testimonials .container header h2 {
    margin-bottom: 40px;
}

.homepage .customer-testimonials ul li h2,
.homepage .customer-testimonials ul li .name,
.homepage .customer-testimonials ul li blockquote p {
    font-size: 19px;
}

.homepage .customer-testimonials ul li blockquote p {
    letter-spacing: .3px;
    min-height: 140px;
}

.homepage .customer-testimonials {
    padding: 0 20px 95px 20px;
    background: #FFFFFF;
}

.homepage .customer-testimonials .bx-wrapper .bx-controls-direction a {
    z-index: 1;
}

.homepage .customer-testimonials .btn {
    background: #fff url('/wp-content/themes/legion-2017/images/2017-images/slider-arrow@2x.png') center no-repeat;
    background-size: 18px;
}

.homepage .customer-testimonials .btn.prev {
    left: -100px;
}

.homepage .customer-testimonials .btn.next {
    right: -100px;
}

.homepage #customer-testimonials .bx-wrapper .bx-pager {
    bottom: -91px;
}

.homepage #customer-testimonials .bx-wrapper .bx-pager.bx-default-pager a {
    background: #DDDDDD;
    width: 6px;
    height: 6px;
    margin: 0 8px;
}

.homepage #customer-testimonials .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #1CA4FC;
    width: 8px;
    height: 8px;
    position: relative;
    top: -1px;
}

@media screen and (max-width: 1400px) {
    body.home .customer-testimonials ul li .testi-img-wrapper {
        max-width: 100%;
    }
}

/*--------------------------------------------------------------
# Try Us Risk Free
--------------------------------------------------------------*/


.homepage .risk-free {
    position: relative;
    width: 100%;
    background: #f8f8f8;
}

.homepage .risk-free h2 {
    margin-bottom: -15px;
}

.homepage .risk-free .img {
    margin-top: 0;
    /*background: url('../../images/2017-images/page-mindpump/desktop/browse-our-store.png') center no-repeat;*/
    background: url('../../images/2017-images/page-subscription/risk-free.png') center -95px no-repeat;
    background-size: 1075px;
    height: 340px;
    margin-bottom: 0px;
}

.homepage .risk-free h3 {
    text-align: center;
    font-size: 40px;
    color: #2c2e2f;
    margin: 0 auto;
    font-family: 'proxima-nova';
    font-weight: 800;
    line-height: 44px;
    max-width: 640px;
}

.homepage .risk-free .btn {
    width: 260px;
    height: 54px;
    display: block;
    line-height: 54px;
    background: #e48310;
    margin: 10px auto 0 auto;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 3;
}

.homepage .button-orange {
    letter-spacing: 0.5px;
    text-decoration: none;
    background: #e48310;
    color: #fff;
    display: block;
    margin: 0px auto 40px;
    font-weight: bold;
    width: 280px;
    font-size: 18px;
    height: 48px;
    line-height: 48px;
    text-align: center;
}

.homepage #more-from-legion {
    padding: 66px 30px 40px !important;
}

.homepage #legion-instagram-reviews .container {
    max-width: 1130px !important;
}

.homepage #legion-instagram-reviews h2 {
    margin-bottom: 20px !important;
}

.homepage #legion-instagram-reviews {
    padding: 0 0 20px !important;
}

#main.homepage #legion-instagram-reviews #legion-instagram-images {
    margin-bottom: 48px;
}

.homepage #legion-instagram-reviews #legion-instagram-images li {
    height: 213px !important;
    width: 213px !important;
}


.homepage #legion-instagram-reviews .insta-cta-btns {
    display: flex;
    justify-content: space-between;
    max-width: 458px;
    margin: 0 auto 50px;
}

#main #legion-instagram-reviews .insta-cta-btns a {
    margin: 0;
    width: 216.5px;
}

#main #legion-instagram-reviews .insta-cta-btns a.quiz-btn {
    background: #E48310;
    margin-left: 15px;
}

#main #legion-instagram-reviews .insta-cta-btns a.quiz-btn:hover {
    background: #d6790b;
}

.footer .footer-top, .footer .footer-bot {
    background-color: #444;
}




/*--------------------------------------------------------------
# Most Popular
--------------------------------------------------------------*/
.homepage .most-popular .container {
 padding-left: 0;
 padding-right: 0;
}

.homepage .most-popular {
    padding: 65px 0 70px 0;
    text-align: center;
    background: white;
}

.homepage .most-popular header {
    margin-bottom: 40px;
    text-align: center;
}

.homepage .most-popular header h2 {
    color: #293644;
    font-size: 34px;
    /*margin-bottom: 45px;*/ /* WHEN NO SALE TAGS ARE USED */
    margin-bottom: 40px;
    font-weight: 600;
}

.homepage .most-popular .products {
    width: 100%;
    margin: 0 auto 22px;
    border: 1px #E6E6E6 solid;
}

.homepage #most-popular .first-four-products,
.homepage #most-popular .last-four-products {
    width: 100%;
}

.homepage .most-popular .product {
    width: 25%;
    height: 375px;
    padding: 10px 26px 31px 26px;
    margin-top: 60px !important;
    float: left;
    background: #fff;
    position: relative;
    z-index: 1;
    order: 0 !important;
}

.homepage .most-popular .product {
    background: white;
}

body.home section.most-popular div.product .productFeature {
    /*display: none;*/
}

/* .homepage #most-popular .product {
    margin-top: 0;
} */

/* .homepage .most-popular .product .productFeature {
    display: none;
} */

/*.homepage .most-popular .product:hover {
    box-shadow: inset 0 0 0 7px #F7F7F7, 0 0 0 1px #D2D2D2, 0 3px 5px rgba(5, 5, 6, 0.07);
    z-index: 2;
    border-right: 1px #F7F7F7 solid;
}
*/
.homepage .most-popular .products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.homepage .most-popular .product {
    width: 24.9%;
}

.homepage .most-popular .product:last-child {
    border-right: 0;
}

.homepage .most-popular .product .img {
    width: 145px;
    height: 145px;
    display: block;
    margin: 0 auto 14px;
}

.homepage .most-popular .product.pulse .img {
    background: url('../../images/2017-images/homepage-most-popular-products-pulse.png') center no-repeat;
}

.homepage .most-popular .product.whey .img {
    background: url('../../images/2017-images/homepage-most-popular-products-whey.png') center no-repeat;
}

.homepage .most-popular .product.phoenix .img {
    background: url('../../images/2017-images/homepage-most-popular-products-phoenix.png') center no-repeat;
}

.homepage .most-popular .product.forge .img {
    background: url('../../images/2017-images/homepage-most-popular-products-forge.png') center no-repeat;
}

.homepage .most-popular .product h4 {
    font-size: 16px;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333333;
}

.homepage .most-popular .product .reviewCount {
    font-size: 18px;
}

.homepage .most-popular .product .prices {
    font-size: 18px;
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
}

.homepage .most-popular .product .prices span {
    font-size: 18px;
    margin: 0 3px;
    letter-spacing: 1px;
}

.homepage .most-popular .product .prices .regular-price {
    color: #797F83;
    text-decoration: line-through;
}

.homepage .most-popular .product .prices .new-price {
    color: #FF5B1D;
    font-weight: 700;
}

.homepage .most-popular .product .meta {
    text-align: center;
}

.homepage .most-popular .product .meta a {
    width: 132px;
    height: 33px;
    display: inline-block;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 33px;
}

.homepage .most-popular .product .meta a.learn-more {
    background: #E4E4E4;
    color: #21343F;
}

.homepage .most-popular .product .meta a.learn-more:hover {
    background: #d2d2d2;
}

.homepage .most-popular .product .meta a.add-to-cart {
    background: #e48310;
    color: #FFFFFF;
    margin-left: -3px;
}

.homepage .most-popular .product .meta a.add-to-cart:hover {
    background: #d2780d;
}

.homepage .most-popular .view-all {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 0;
    padding: 0 2px 8px;
}

.homepage .most-popular .view-all:hover {
    background-color: #138EEB;
}

/* .homepage .most-popular .view-all:hover {
    border-color: #00A2FF;
    color: #003333;
} */

.homepage .industry-experts {
    background: #fff;
    padding:70px 0; /** Minus 20px at bottom because of spacing added after the carousel**/
}

.homepage .industry-experts .quotes {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% - 185px);
}

.industry-experts .quotes .bx-wrapper {
    margin: 0 auto 0;
}

.industry-experts .quotes .bx-viewport {
    padding-bottom: 20px;
}

.homepage .industry-experts .btn {
    background: white url('/wp-content/themes/legion-2017/images/2017-images/slider-arrow@2x.png') center no-repeat;
    background-size: 18px;
    z-index: 1;
}

.homepage .industry-experts .btn.prev {
    left: -100px;
}

.homepage .industry-experts .btn.next {
    right: -100px;
}

.homepage .industry-experts .bx-wrapper .bx-pager {
    bottom: 0;
    position: relative;
}

/*--------------------------------------------------------------
# HOMEPAGE: About Us
--------------------------------------------------------------*/

.homepage .about-us {
    padding: 0 0 70px;
    text-align: center;
    background: white;
    margin-top:  0;
}

.homepage .about-us .container {
    max-width: 1350px;
}

.homepage .about-us .cols {
    clear: both;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.homepage .about-us .cols::after {
    display: none;
}

.homepage .about-us .cols .col {
    width: 48%;
    max-width: 519px;
}

.homepage .about-us .cols .col h4 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 27px;
    font-weight: 600;
    color: #293543;
    letter-spacing: 0.5px;
}

.homepage .about-us .cols .col p {
    font-size: 19px;
    line-height: 1.5;
    color: #293644;
    max-width: 580px;
    margin: 0 auto 35px;
    letter-spacing: 0.3px;
    padding: 0px;
}

.homepage .about-us .cols .col a {
    font-size: 18px;
    font-weight: 700;
    padding: 0 2px 10px;
    text-decoration: none;
    color: #27A2FF;
    border-color: #27A2FF;
    transition: background-color 0.1s;
}

.homepage .about-us .cols .col a:hover {
    background-color: #138EEB;
}

.homepage .about-us .cols .col .img {
    display: block;
    margin: 0 auto 70px;
}

.homepage .about-us .cols .col .img.greedy {
    background: url('../../images/2017-images/homepage-about-greedy.png') center no-repeat;
    width: 382px;
    height: 295px;
}

.homepage .about-us .cols .col .img.rockets {
    background: url('../../images/2017-images/homepage-about-started.png') center no-repeat;
    width: 425px;
    height: 295px;
}

.homepage #legion-instagram-reviews,
.homepage #legion-instagram-images {
    background: #FFF !important;
}

.homepage #legion-instagram-reviews .social-share {
    max-width: 935px !important;
}

.homepage #legion-instagram-reviews .social-share h3 {
    margin-right: 0px !important;
}

.homepage #legion-instagram-reviews .social-share p {
    font-size: 18px !important;
    color: #333 !important;
    font-weight: 400 !important;
}
.home-blog-wrapper {
    background-color: #F8F8F8;
}
.homepage .blog {
    max-width: 1350px;
    margin: 0 auto;
}
.homepage .blog #more-from-legion article {
    width: 48%;
    display: flex;
    justify-content: space-between;
    background: #F8F8F8;
}
.homepage .blog #more-from-legion article p.author {
    color: #bbb;
    text-align: center;
    margin-bottom: 10px;
}

.homepage .blog #more-from-legion article .excerpt p {
    color: #293644;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.homepage .blog #more-from-legion article .readnow {
    color: #dd0000;
    width: 100%;
    display: block;
    padding-top: 20px;
    text-align: center;
    text-decoration: none;
}

#main.homepage .featuredStacks .learnMore,
#main.homepage .featuredStacks .addtocart,
#main.homepage .mobileAddToCart {
    text-transform: none;
}

#main.homepage .learnMore {
    font-weight: normal;
    letter-spacing: 0;
    height: 45px;
    line-height: 45px;
}

/*--------------------------------------------------------------
# New Video Styling ---> Homepage
--------------------------------------------------------------*/

.homepage-vid-about,
.homepage-vid-truth {
    width: 100%;
    max-width: 519px;
    margin: 0 auto;
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: 37px;
    /*padding: 292px 0 0 0;*/
    position: relative;
}

/* .bxslider {
    overflow: hidden;
    transform: translate3d(0, 0, 0);
} */

@media only screen and (max-width: 500px) {
    .homepage-vid-about,
    .homepage-vid-truth {
        /*margin-bottom: 0px;*/
    }
}

@media only screen and (max-width: 400px) {
    .homepage-vid-about,
    .homepage-vid-truth {
        /*margin-bottom: -50px;*/
    }
}

@media only screen and (max-width: 350px) {
    .homepage-vid-about,
    .homepage-vid-truth {
        /*margin-bottom: -100px;*/
    }
}














/*--------------------------------------------------------------
# Optimizely Homepage Winner
--------------------------------------------------------------*/

.hero-tablet,
.hero-mobile {
  display: none;
}

@media screen and (max-width: 1500px) {
    .homepage .hero-intro.desktop-only .container {
        padding: 60px 30px;
      }
}

@media screen and (max-width: 1215px) {
    .homepage #see-for-yourself p {
        font-size: 14px;
    }

    .homepage .hero-intro.desktop-only .text-col {
        width: 500px;
    }

    .homepage .hero-intro.desktop-only .text-col ul {
        padding-left: 35px;
    }

    .homepage .hero-intro.desktop-only .text-col ul li:before {
        left: -34px;
    }
}

@media screen and (max-width: 1125px) {
    .homepage #see-for-yourself p {
        font-size: 13px;
    }

    .homepage #hero-main ul.checks li {
        /*font-size: 12px;*/
    }
    .homepage #hero-main > .right {
        width: 36.2%;
    }
}

@media screen and (max-width: 1075px) {
    .homepage #see-for-yourself ul {
        margin-bottom: 15px;
    }

    .homepage #see-for-yourself p {
        white-space: normal;
    }

    .homepage #hero-main ul.checks {
        margin-top: 33px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .bfcm-splash.tablet {
        display: none !important;
    }
    
}

@media screen and (max-width: 1024px) {
    .homepage #hero-main ul.checks li.checks-fda {
        float: left;
        width: 100%;
    }

  .hero-tablet {
    display: block;
  }

  .homepage #see-for-yourself p,
  .homepage a.desktop-mobile {
    display: none;
  }

  .homepage #hero {
    height: auto;
  }

  .homepage #hero .hero-main-video {
    width: 50%;
    padding-left: 80px;
  }

  .homepage #hero .hero-video {
    width: 100%;
  }

  .homepage #hero-main > .right {
    padding-right: 70px;
    width: 44%;
  }

  .homepage #see-for-yourself h3 {
    letter-spacing: 0.04em;
    font-weight: 600;
    width: 75%;
    font-size: 22px;
  }

  .homepage #see-for-yourself ul li {
    font-size: 18px;
  }

  #see-for-yourself-discover-desktop {
    display: none;
  }

  .homepage #hero-main ul.checks {
    margin-top: 30px;
    width: 100%;
  }

  .homepage #hero-main ul.checks li {
    width: 100% !important;
    font-size: 16px;
    line-height: 1.5;
  }

  .homepage .hero-intro #hero-background-desktop {
    display: none;
  }
  .homepage .hero-intro #hero-background-tablet {
    display: block;
  }

  .homepage .hero-intro .container {
    padding: 48px 10px 35px;
  }

  .homepage .hero-intro .text-col {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .homepage .hero-intro .categories-container.desktop {
    display: none;
  }

  .homepage #hero h1 {
    text-align: center;
    line-height: 42px;
    margin: 0 auto 16px;
    font-size: 34px;
    margin-bottom: 16px;
    max-width: 572px;
    width: 100%;
    padding-top: 0;
  }

  .homepage #hero p {
    font-size: 18px;
    padding: 0;
    margin: 0 auto 25px;
    text-align: center;
    max-width: 572px;
    width: 100%;
  }

  .homepage .hero-intro.desktop-only .text-col ul {
    max-width: 800px;
    margin: 0 auto;
  }

  .homepage .hero-intro.desktop-only #hero .hero-btns {
     justify-content: center;
     max-width: 100%;
  }

  .homepage .hero-intro.desktop-only .text-col ul li {
    font-size: 18px;
  }

  .homepage .hero-intro.desktop-only .container {
    padding:0
  }

  .homepage .hero-intro.desktop-only .text-col {
    width: 100%;
  }

  .homepage #hero .hero-btns {
    margin: 0 auto 13px;
  }

  .homepage #hero a {
    margin: 0 15px;
  }

  .homepage #hero a.sale-banner-homepage,
  .homepage #hero a.sale-banner-homepage-mobile {
    max-width: 500px;
    top: 0;
    margin: 0 auto;
    padding: 0 10px 32px;
  }

  .bfcm-splash.desktop {
    display: none;
  }

  .bfcm-splash.tablet {
    display: block;
    position: relative;
  }

  .homepage .hero-intro .image-col img {
    width: 286px;
  }

  .homepage .hero-header h2 {
      padding-top: 40px;
  }

  .homepage #hero .hero-main-video {
    padding-left: 0;
  }

  .homepage #hero-main #hero-main-video-preview {
    cursor: pointer;
    margin-bottom: -4px;
  }

  .homepage #hero-main {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .homepage #hero-main > .right {
    padding-right: 35px;
  }

  .homepage #see-for-yourself {
    width: 100%;
  }

  .homepage #see-for-yourself h3 {
    width: 85%;
    font-size: 18px;
    margin-top: -6px;
    margin-bottom: 29px;
  }

  .homepage #see-for-yourself ul {
    width: 100%;
  }

  .homepage #see-for-yourself ul li {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .homepage #hero-main ul.checks {
    margin-top: 46px;
    max-width: 320px;
  }

  .homepage #hero-main ul.checks li {
    font-size: 13px;
    margin-bottom: 8px;
    background-position-y: 2px;
  }

  .homepage #hero-main ul.checks li.checks-free {
    left: 0;
  }

  .homepage #most-popular .review {
    font-size: 14px;
  }

  #main.homepage #legion-instagram-reviews #legion-instagram-images {
    margin-bottom: 33px;
  }

  .homepage .most-popular .product .img {
      margin-bottom: 4px;
  }
}

@media screen and (max-width: 900px) {
    .homepage #see-for-yourself ul li {
        font-size: 15px;
        margin-bottom: 11px;
    }
}

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

  .homepage #usp-icons .homeMetaIconList div,
  .homepage #usp-icons .homeMetaIconList div.homeMetaClinicalDose,
  .homepage #usp-icons .homeMetaIconList div.homeMetaSweetened,
  .homepage #usp-icons .homeMetaIconList div.homeMetaTested,
  .homepage #usp-icons .homeMetaIconList div.homeMetaUSA {
    padding-top: 0;
  }

  .homepage #hero .hero-desktop-tablet,
  .homepage #hero .hero-tablet {
    display: none;
  }

  .homepage #hero .hero-mobile,
  .homepage a.desktop-mobile {
    display: block;
    max-width: 230px;
    font-size: 18px;
  }

  .homepage .hero-intro {
    margin-bottom: 3px !important;
  }

  /* .homepage #hero {
    padding-bottom: 10px;
  } */

  .homepage #hero h2 {
    padding: 30px 20px 30px 20px;
    margin: 0 auto;
    line-height: 1.3;
    font-size: 27px;
  }

  .homepage #hero a {
    margin: 0;
  }

  .homepage #hero a.sale-banner-homepage,
  .homepage #hero a.sale-banner-homepage-mobile {
    margin: -2px auto -22px;
    padding: 0;
  }

  .homepage #hero-main > .right {
    width: 100%;
    padding: 0 25px;
  }

  .homepage #hero .hero-main-video {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 30px !important;
  }

  .homepage #hero-main #hero-main-video-preview {
    margin-bottom: 27px;
  }

  .homepage #hero-main .hero-video {
    width: 100%;
    margin: 0 auto;
  }

  .homepage #hero-main .wistia_embed {
    border-radius: 5px;
  }


/* BFCM 2023 */
  .homepage .hero-intro,
  .homepage #sale-banner-timer-countdown,
  .homepage .sale-banner-homepage-desktop {
    display: none !important;
  }


  .homepage .sale-banner-homepage.sale-banner-homepage-mobile {
    display: block !important;
    padding: 0 0 !important;
    line-height: 0 !important;
  }

  .homepage .sale-banner-homepage.sale-banner-homepage-mobile img {
    width: 100%;
    padding-bottom: 35px;
  } 

  .homepage #see-for-yourself {
    width: auto;
  }

  .homepage #see-for-yourself h3 {
    width: auto;
    margin: auto;
    font-size: 22px;
    font-weight: 600;
    padding: 0;
    letter-spacing: 0.6px;
    text-align: center;
  }

  .homepage #see-for-yourself ul {
    margin: 18px auto 25px auto;
    width: 100%;
  }

  .homepage #see-for-yourself ul li {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 13px;
  }

  .homepage #see-for-yourself p {
    padding: 0 20px;
  }

  .homepage #hero-main ul.checks {
    margin-top: 57px;
    margin: 20px auto 14px auto;
    width: 280px;
    left: 6px;
    max-width: 275px;
  }

  .homepage .most-popular .product .prices span {
    font-size: 13px;
    line-height: 1.4;
    display: block;
  }

  .homepage #hero-main {
    margin-top: 0;
    margin-bottom: 0;
  }

  .homepage #see-for-yourself p {
    display: block;
    font-size: 15px;
    text-align: center;
    padding: 0;
    font-weight: 800;
  }

  .homepage #hero-main ul.checks li {
    font-size: 12px;
    width: auto !important;
    padding-left: 25px;
    padding-right: 0px !important;
    float: none !important;
    margin: 0px auto 10px;
  }

  #main.homepage #legion-instagram-reviews {
    display: block;
    padding-top: 0px !important;
    padding-bottom: 40px !important;
  }

  #main.homepage #legion-instagram-reviews h2 {
    font-size: 27px;
    margin-bottom: 12px !important;
  }

  #main.homepage #legion-instagram-reviews #legion-instagram-images {
    padding-bottom: 2px;
    margin-bottom: 27px;
  }

  
   .homepage #hero {
    display: flex;
    flex-direction: column;
  }

  .homepage #hero a.sale-banner-homepage-mobile {
    display: none;
  }
  .bfcm-splash.tablet {
    order: 0;
  }
  .homepage .hero-intro {
    display: block !important;
    order: 1;
  }
  /*
  .homepage .industry-experts div.page-experts .bx-controls-direction a {
        top: 0;
}   */

    .homepage .industry-experts ul li .img {
        margin-bottom: 20px;
    }
    .industry-experts .bx-wrapper .bx-pager {
        bottom: -34px;
    }

    .homepage .moneyback {
        background: transparent;
    }
}

@media screen and (max-width: 767px) {
    .homepage .hero-intro.desktop-only {
        display: none !important;
    }
}


/** Home Slide */
/* .page-slide-hldr {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6%;
} */

/* Image styling Left 30% */
/* .page-left-expert-image {
    flex: 0 0 26%;
    max-width: 26%; 
    text-align: center; 
}
.page-left-expert-image .img {
    display: inline-block; 
}
.page-right-content {
    flex: 0 0 68%; 
    max-width: 68%; 
    padding: 0 20px; 
} */

/* Expert Carousel */
#main .industry-experts ul li img.imgWhiteBg {
    display: block;
}
#main .industry-experts ul li img.imgGrayBg {
    display: none;
}

/*--------------------------------------------------------------
# Merger Homepage Updates
--------------------------------------------------------------*/


body.home .product {
    width: 25%;
}

body.home #main.homepage .featuredStacks .img {
    position: relative;
    top: -10px;
    width: 276px;
    background-size: auto 242px;
    background-position: center;
}

/*body.home .featuredStacks .col h3 {
    font-size: 21px;
}

@media screen and (max-width: 767px) {
    body.home .featuredStacks .col h3 {
        font-size: 13px;
        text-align: center;
        max-width: 225px;
    }
}*/

@media screen and (max-width: 1330px) {
    body.home .featuredStacks .featured-stacks-row {
        max-width: 1024px;
    }

    body.home #main.homepage .featuredStacks .img {
        width: 234px;
        background-size: auto 200px;
    }
}

@media screen and (max-width: 1024px) {
    body.home #main.homepage .featuredStacks .img {
        height: 182px;
        top: 47px;
    }
    /* .bx-wrapper .bx-controls-direction a {
        top: 30px;
    }
    .page-left-expert-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .page-right-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 5px;
    } */
}

@media screen and (max-width: 767px) {
    body.home #main.homepage .featuredStacks .img {
        width: 192px !important;
        height: 148px !important;
        top: 40px;
    }

    body.home .featuredStacks .col h3 {
        max-width: 170px;
    }

    /* Expert Carousel */
    #main .industry-experts ul li img.imgWhiteBg {
        display: none;
    }
    #main .industry-experts ul li img.imgGrayBg {
        display: block;
    }
}

@media screen and (max-width: 435px) {
    body.home #main.homepage .featuredStacks .img {
        width: 143px !important;
        height: 130px !important;
    }
}






















/*--------------------------------------------------------------
# Retina Images
--------------------------------------------------------------*/

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .homepage #hero .blue-strip span:after {
        background: url('../../images/2017-images/hero-icon-separator@2x.png') center no-repeat;
        background-size: 10px;
    }

    .homepage #hero .blue-strip span.naturally {
        background: url('../../images/2017-images/hero-icon-naturally-sweet@2x.png') left no-repeat;
        background-size: 21px;
    }

    .homepage #hero .blue-strip span.made {
        background: url('../../images/2017-images/hero-icon-made-in-usa@2x.png') left no-repeat;
        background-size: 30px;
    }

    .homepage #hero .blue-strip span.no-blends {
        background: url('../../images/2017-images/hero-icon-no-blends@2x.png') left no-repeat;
        background-size: 20px;
    }

    .homepage #hero .blue-strip span.no-fillers {
        background: url('../../images/2017-images/hero-icon-no-filler@2x.png') left no-repeat;
        background-size: 20px;
    }

    .homepage .featuredStacks .cols .col .banner:before,
    .homepage .featuredStacks .cols .col .banner:after {
        background: url('../../images/2017-images/banner-arrow@2x.png') center no-repeat;
        background-size: 13px;
    }

    .homepage .featuredStacks .cols .col.men .img {
        background: url('../../images/2017-images/featured-stack-men@2x.png') center no-repeat;
        background-size: 426px;
    }

    .homepage .featuredStacks .cols .col.women .img {
        background: url('../../images/2017-images/featured-stack-women@2x.png') center no-repeat;
        background-size: 423px;
    }

    .homepage .about-us .cols .col .img.greedy {
        background: url('../../images/2017-images/homepage-about-greedy@2x.png') center no-repeat;
        background-size: 382px;
    }

    .homepage .about-us .cols .col .img.rockets {
        background: url('../../images/2017-images/homepage-about-started@2x.png') center no-repeat;
        background-size: 425px;
    }

    .homepage .most-popular .product.pulse .img {
        background: url('../../images/2017-images/homepage-most-popular-products-pulse@2x.png') center no-repeat;
        background-size: 102px;
    }

    .homepage .most-popular .product.whey .img {
        background: url('../../images/2017-images/homepage-most-popular-products-whey@2x.png') center no-repeat;
        background-size: 70px;
    }

    .homepage .most-popular .product.phoenix .img {
        background: url('../../images/2017-images/homepage-most-popular-products-phoenix@2x.png') center no-repeat;
        background-size: 63px;
    }

    .homepage .most-popular .product.forge .img {
        background: url('../../images/2017-images/homepage-most-popular-products-forge@2x.png') center no-repeat;
        background-size: 64px;
    }

    #hero-main ul.checks li {
        background: url('../../images/2017-images/list-item@2x.png') left center no-repeat;
        background-size: 16px;
    }
}






/*-------------------------------------------------------------
# MEDIA QUERIES: Desktop [ MIN WIDTH: 1401px PIXELS ]
--------------------------------------------------------------*/

@media screen and (min-width: 1401px) {
    #main.homepage .customer-testimonials .quotes {
        max-width: 1240px;
        padding: 0;
    }

    #main.homepage .customer-testimonials .btn.prev {
        left: -50px;
    }

    #main.homepage .customer-testimonials .btn.next {
        right: -50px;
    }

    #main.homepage .customer-testimonials ul li blockquote p {
        margin-bottom: 30px;
        max-width: 280px;
    }
}






/*-------------------------------------------------------------
# MEDIA QUERIES: Desktop [ MIN WIDTH: 1330px PIXELS ]
--------------------------------------------------------------*/

@media screen and (min-width: 1330px) {
    #main.homepage .featuredStacks .learnMore,
    #main.homepage .featuredStacks .addtocart {
        position: relative;
        left: 41px !important;
    }
    #main.homepage .featuredStacks .learnMore {
        height: 45px;
        line-height: 45px;
    }
    #main.homepage .featuredStacks h3 {
        width: 229px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1330px) {
    #main.homepage .featuredStacks h3 {
        width: 229px;
    }

    .homepage .featuredStacks .prices {
        margin-right: 3px;
    }

    #main.homepage .featuredStacks .learnMore,
    #main.homepage .featuredStacks .addtocart {
        position: relative;
        left: 33px !important;
    }

    .homepage .featuredStacks .cols {
        margin-bottom: 59px;
    }

    .homepage .featuredStacks p {
        margin-bottom: 22px;
    }

    .homepage .cols {
        max-width: 966px;
    }

    .homepage .col .img {
        width: 199px;
    }

    #main.homepage .featuredStacks .productFeature.save20,
    .homepage .featuredStacks .productFeature.soldOut {
        /*left: 200px !important;
        right: initial !important;
        top: 75px !important;
        width: 70px !important;
        background-size: 70px;*/
        transform: translate(50%, -50%);
        right: calc(((100% - 463px) / 3) + 114.5px);
    }

    .homepage .featuredStacks .view-all {
        margin-top: 50px;
    }
}

@media screen and (max-width: 1210px) {
    .homepage #hero .hero-featured-in img {
        margin: 0 15px;
    }
}






/*-------------------------------------------------------------
# MEDIA QUERIES: Desktop [ MAX WIDTH: 1180px PIXELS ]
--------------------------------------------------------------*/

@media screen and (max-width: 1180px) {
    .homepage #hero-main ul {
        left: 0;
    }

}






/*--------------------------------------------------------------
# MEDIA QUERIES: Account Tablet [ MAX WIDTH: 1169px PIXELS ]
--------------------------------------------------------------*/

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

    body.home section.most-popular div.product {
        width: 50%;
    }

} */








/*-------------------------------------------------------------
# MEDIA QUERIES: Desktop [ MAX WIDTH: 1110px PIXELS ]
--------------------------------------------------------------*/

@media screen and (max-width: 1110px) {
    .homepage #hero-main ul.checks {
        position: relative;
        width: 110%;
    }
}








@media screen and (max-width: 1059px) {
    .homepage #hero .blue-strip span {
        font-size: 13px;
    }
}







/*--------------------------------------------------------------
# MEDIA QUERIES: Tablet [ MAX WIDTH: 1099 PIXELS ]
--------------------------------------------------------------*/

@media screen and (max-width: 1099px) {
    .homepage #hero .hero-featured-in {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-row-gap: 30px;
        justify-items: center;
        align-items: center;
        max-width: 615px;
        margin: 0 auto 54px;
        display: none;
    }

    .homepage #hero .hero-featured-in-slider {
        display: block;
    }

    .homepage #hero .hero-featured-in-slider ul {
        display: flex;
    }

    .homepage #hero .hero-featured-in-slider li {
        background-image: none;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .homepage #hero .hero-featured-in-slider li.featured-in-5-stars img {
        width: 109px;
    }

    .homepage #hero .hero-featured-in-slider li.featured-in-5-stars div {
        text-align: center;
    }

    .homepage #hero .hero-featured-in-slider li.featured-in-5-stars div span {
        display: block;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.3;
        margin-top: 15px;
    }

    .homepage #hero .hero-featured-in-slider img {
        margin: 0 50px;
    }

    .homepage #hero .hero-featured-in-slider .bx-wrapper {
        margin-bottom: 70px;
    }

    .homepage #hero .hero-featured-in-slider .bx-wrapper .bx-pager {
        bottom: initial;
    }

    .homepage #hero .hero-featured-in-slider a.active {
        background: #1CA4FC;
        width: 8px;
        height: 8px;
        position: relative;
        top: -1px;
    }

    .homepage #hero .hero-featured-in-slider a {
        background: #DDDDDD;
        text-indent: -9999px;
        display: block;
        width: 6px;
        height: 6px;
        margin: 0 8px;
        outline: 0;
        border-radius: 100%;
    }

    .homepage .featured-in ul li.featured-inc5000 img {
        max-width: 50px;
    }

    .homepage .featured-in ul li.featured-labdoor img {
        max-width: 115px;
    }

    .homepage .featured-in ul li.featured-bengreen img {
        max-width: 165px;
    }

    .homepage .featured-in ul li.featured-barbend img {
        max-width: 115px;
    }

    /* .homepage .about-us {
        padding: 48px 0 63px;
    } */

    .homepage .about-us .cols .col {
        width: 100%;
        max-width: 100%;
        float: none;
    }

    .homepage .about-us .container {
        padding: 0 20px;
    }

    .homepage .about-us .cols .col h4 {
        font-size: 23px;
        margin-bottom: 30px;
    }

    .homepage .about-us .cols .col p {
        font-size: 18px;
        margin: 0 auto 43px;
    }

    .homepage .about-us .cols .col .img {
        margin: 0 auto 44px;
    }

    .homepage .about-us .cols .col .img.greedy {
        width: 269px;
        height: 209px;
        background-size: 269px;
    }

    .homepage .about-us .cols .col.rockets {
        padding-top: 70px;
    }

    .homepage .about-us .cols .col .img.rockets {
        width: 295px;
        height: 200px;
        background-size: 295px;
    }

    /* .homepage .moneyback {
        padding: 40px 0px 50px;
    } */

    .homepage .moneyback .container {
        padding: 0px 75px;
        text-align: center;
    }

    .homepage .moneyback header {
        width: 100%;
        float: right;
    }

    .homepage .moneyback h2 {
        line-height: 47px;
        margin-bottom: 57px;
    }

    .homepage .moneyback .left {
        width: 100%;
        text-align: center;
    }

    .homepage .moneyback .right {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }

    .homepage .moneyback img {
        display: inline-block;
        max-width: 270px;
        /*padding-left: 10%;*/
        margin-bottom: 30px;
    }

    .homepage .moneyback p {
        font-size: 18px;
        text-align: center;
    }

    .homepage .moneyback a.btn {
        /* width: 280px;
        font-size: 14px;
        height: 48px;
        line-height: 48px;
        letter-spacing: 1px; */
        margin: 50px auto 0px;
    }

    .homepage .risk-free {
        padding: 50px 0 60px;
        margin-top: 0;
    }

    .homepage .risk-free .img {
        margin-top: 0;
        background: url('../../images/2017-images/page-subscription/risk-free-mobile@2x.png') center no-repeat;
        background-size: 310px;
        height: 180px;
        margin-bottom: 40px;
    }

    /* .homepage .customer-testimonials {
        padding: 36px 0 38px;
    } */
}









/*-------------------------------------------------------------
# MEDIA QUERIES: Tablet [ MAX WIDTH: 1024px PIXELS ]
--------------------------------------------------------------*/

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

    .homepage .hero-intro {
        margin-bottom: 8px;
    }

    body.home section.most-popular div.product {
        width: 49.4%;
        height: auto !important;
        padding-top: 0;
        padding-bottom: 48px;
        margin-top: 40px !important;
    }

    body.home section.most-popular div.product .productFeature {
        top: -20px;
    }

    .homepage .featuredStacks {
        padding-top: 50px;
        padding-bottom: 48px;
    }

    body.home .featuredStacks .col h3 {
        font-size: 18px;
    }

    .homepage .featuredStacks p {
        font-size: 18px;
        margin-bottom: 31px;
    }

    .homepage .featuredStacks span.review {
        margin-left: 0;
    }

    #main.homepage .featuredStacks .learnMore,
    #main.homepage .featuredStacks .addtocart {
        width: 157px;
    }

    #main.homepage .featuredStacks .learnMore {
        height: 45px;
        line-height: 45px;
    }

    .homepage .featuredStacks .view-all {
        margin-top: 42px;
    }

    /* .homepage #more-from-legion article:last-child {
        display: none;
    } */

    .home .woocommerce-message, .home .woocommerce-info, .home .woocommerce-error {
        top: 106px;
        padding: 10px 20px;
    }

    .homepage #hero {
        height: auto;
    }

    .homepage #hero .blue-strip {
        height: 38px;
    }

    .homepage #hero .blue-strip span {
        font-size: 10px;
        height: 38px;
        line-height: 38px;
        margin-right: 30px;
    }

    .homepage #hero .blue-strip span:after {
        top: 15px;
        width: 7px;
        height: 7px;
        background-size: 7px;
        right: -21px;
    }

    .homepage #hero .blue-strip span.naturally {
        background-size: 16px;
        padding-left: 30px;
    }

    .homepage #hero .blue-strip span.made {
        background-size: 22px;
        padding-left: 35px;
    }

    .homepage #hero .blue-strip span.no-blends {
        background-size: 16px;
        padding-left: 25px;
    }

    .homepage #hero .blue-strip span.no-fillers {
        background-size: 16px;
        padding-left: 26px;
    }

    /* .homepage #hero .hero-featured-in {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-row-gap: 30px;
        justify-items: center;
        align-items: center;
        max-width: 615px;
        margin: 0 auto 54px;
    }

    .homepage #hero .hero-featured-in img:first-of-type {
        margin-left: 33px;
    }

    .homepage #hero .hero-featured-in img:last-of-type {
    margin-right: 33px;
    }

    .homepage #hero .hero-featured-in img.abc-logo,
    .homepage #hero .hero-featured-in img.muscle-strength-logo,
    .homepage #hero .hero-featured-in img.elle-logo {
        width: initial;
    } */

    .homepage #hero .categories-container.tablet {
        max-width: 690px;
        display: grid;
        column-gap: 40px;
        margin: 0 auto 58px;
        padding: 0;
    }

    .homepage .hero-intro.desktop-only .categories-container {
        max-width: 690px;
        display: flex;
        max-width: 690px;
        display: grid;
        column-gap: 40px;
        margin: 0 auto 58px;
        padding: 0;
    }

    

    .homepage #hero.hero-intro.desktop-only .categories-container.tablet {
        margin: 0 auto 50px;
    }

    .homepage #hero .categories-container.tablet .category-item {
        max-width: 323px;
        height: 230px;
    }
    .homepage #hero .hero-intro.desktop-only .categories-container.tablet .category-item {
        height: 321px;
    }


    .homepage #hero .categories-container.tablet .category-item .col-left {
        width: 100%;
        padding: 0 19px 63px;
        text-align: center;
    }

    .homepage #hero .categories-container.tablet .category-item .col-right {
        height: 200px;
    }

    .homepage #hero .categories-container.tablet .category-item .col-left p {
        padding: 0 5px;
        max-width: 100%;
    }

    .homepage #hero .categories-container.tablet .category-item .col-left a {
        left: 50%;
        transform: translateX(-50%);
    }

    .homepage #usp-icons {
        padding: 50px 0 14px;
    }

    .homepage #usp-icons .homeMetaIconList {
      grid-template-columns: repeat(2, 1fr);
    }

    .homepage .featuredStacks header h2 {
        font-size: 34px;
        margin-bottom: 25px;
    }

    .homepage .featuredStacks .cols {
        margin-bottom: 51px;
    }

    .homepage .most-popular {
        padding: 50px 0 57px;
    }

    .homepage .most-popular header {
        margin-bottom: 0px;
        /*padding-bottom: 32px;*/
    }

    .homepage .most-popular header h2 {
        font-size: 34px;
        margin-bottom: 45px;
        /*margin-bottom: 2px;*/
    }

    .homepage .most-popular .products {
        margin: 0 auto;
    }

    .homepage .which-product {
        padding: 0 0 67px;
        margin-bottom: 0px;
    }

    .homepage .which-product header h2 {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .homepage .which-product header p {
        font-size: 18px;
    }

    .homepage .which-product header {
        margin: 0 auto 22px;
    }

    .homepage .which-product .options {
        margin-bottom: 42px;
    }

    .homepage .which-product a {
        width: 50%;
        height: 280px
    }

    .homepage .which-product a img {
        bottom: 67px;
    }

    .homepage .which-product a.lose-weight img {
        bottom: 95px;
    }

    .homepage .about-us {
        padding: 0 0 65px;
    }

    .homepage .about-us .cols .col.greedy {
        padding-bottom: 14px;
    }

    .homepage .about-us .cols .col.rockets {
        padding-top: 36px;
    }

    .homepage .about-us .cols .col p {
        font-size: 18px;
    }

    .homepage .moneyback {
        padding: 50px 0 57px;
    }

    .homepage .moneyback h2 {
        margin-bottom: 20px;
    }

    .homepage .moneyback p {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .homepage .moneyback a.btn {
        margin-top: 25px;
    }

    .homepage .industry-experts {
        padding: 50px 0 70px;
    }

    .homepage .industry-experts ul li .img {
        margin: 0 auto 32px;
    }

    .homepage .industry-experts ul li .company,
    .homepage .industry-experts ul li p {
        font-size: 18px;
    }

    .industry-experts .quotes .bx-viewport {
        padding-bottom: 0;
    }

    .homepage .industry-experts .bx-wrapper .bx-pager {
        padding-top: 5px;
    }

    .homepage .customer-testimonials {
        padding: 0 0 47px;
    }

    .homepage .customer-testimonials ul li blockquote p {
        font-size: 18px;
        min-height: 110px;
    }

    .homepage .customer-testimonials .btn.prev {
        left: -113px;
    }

    .homepage .customer-testimonials .btn.next {
        right: -113px;
    }

    .homepage #customer-testimonials .bx-wrapper .bx-pager {
        bottom: -53px;
    }

    #main #legion-instagram-reviews {
        padding-top: 0px !important;
    }

    #main #legion-instagram-reviews .orange-cta {
        margin-bottom: 0;
    }

    .homepage #legion-instagram-reviews .insta-cta-btns {
        margin: 0 auto;
    }

    .homepage #more-from-legion {
        padding-top: 50px !important;
        padding-bottom: 20px !important;
    }

    .homepage #more-from-legion h2.proxima {
        margin-bottom: 45px;
    }

    .homepage .blog #more-from-legion article {
        width: 100%;
    }

    .homepage .blog #more-from-legion article .excerpt p {
        font-size: 18px;
    }
}






@media (max-width: 1024px) and (min-width: 768px) {
    #main.homepage .featuredStacks .productFeature {
        left: initial !important;
        transform: translate(-50%, -50%) !important;
        right: calc(50% - 107.5px) !important;
    }
    #main.homepage .featuredStacks .newFlavor {
        margin-left: -68px;
    }

    .homepage .featuredStacks .regularPrice,
    .homepage .featuredStacks .newPrice {
        margin-right: 3px !important;
    }
}





/*-------------------------------------------------------------
# MEDIA QUERIES: Mobile [ MAX WIDTH: 768px PIXELS ]
--------------------------------------------------------------*/

@media (min-width: 768px) {
    /* DEPRECRATED 8/30/2022 - CARLOS G.
    #main.homepage .featuredStacks .productFeature:after {
        position: absolute;
        right: -11px;
        top: 0;
        content: "";
        width: 11px;
        height: 31px;
        display: block;
        -moz-transform: scaleX(-1);
        -o-transform: scaleX(-1);
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        filter: FlipH;
        -ms-filter: "FlipH";
        background: url('../../images/2017-images/products-edge-sold-out.png') center no-repeat;

    }
    */
    #main.homepage .featuredStacks .newFlavor {
        border-radius: 15px;
        background-position: 100px !important;
        width: 135px;
    }
    #main.homepage .featuredStacks .newFlavor:after {
        -moz-transform: none;
        -o-transform: none;
        -webkit-transform: none;
        transform: none;
        filter: none;
        -ms-filter: none;
        background: none;
        text-align: center !important;
    }
}












@media (max-width: 768px) {
    .homepage .hero-header h2 {
        padding-top: 40px;
    }
}








/*-------------------------------------------------------------
# MEDIA QUERIES: Mobile [ MAX WIDTH: 767px PIXELS ]
--------------------------------------------------------------*/

@media (max-width: 767px) {
    .homepage .hero-intro #hero-background-tablet {
        display: none;
    }
    .homepage .hero-intro #hero-background-mobile {
        display: block;
    }

    .homepage .hero-intro .container {
        flex-direction: column;
        padding: 32px 10px 40px;
    }

    .homepage .hero-intro .text-col {
        width: 100%;
    }

    .homepage #hero h1,
    .homepage #hero h2.hero-subtitle {
        font-size: 27px;
        line-height: 31px;
        text-align: center;
        margin-bottom: 0;
        margin-top: 24px;
    }
    .homepage #hero h1 span {
        margin-top: 24px;
    }
    .homepage #hero h1 {
        margin-top: 0;
    }

    .homepage #hero p {
        text-align: center;
        margin: 0 auto 24px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .homepage #hero .hero-btns {
        display: block;
        margin: 0 auto;
        max-width: 216px;
    }

    .homepage #hero a.quiz-btn {
        margin: 20px 0 0;
    }

    .homepage .hero-intro img {
        width: 238px;
    }


    .homepage #hero .hero-featured-in-slider .bx-wrapper {
        margin-bottom: 66px;
    }

    .homepage #hero .hero-featured-in-slider img {
        margin: 0;
    }

    .homepage #hero .hero-featured-in-slider li.featured-in-5-stars img {
        width: initial;
    }

    .homepage #hero .hero-featured-in-slider {
        display: block;
        max-width: 350px;
        margin: 0 auto;
    }

    .homepage #hero .hero-featured-in-slider ul {
        display: block;
    }

    .homepage #hero .hero-featured-in-slider .bxslider li {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        align-items: center;
        grid-row-gap: 20px;
    }

    .homepage #hero .hero-featured-in-slider .bxslider li.featured-in-5-stars {
        display: flex;
        justify-content: center;
        bottom: -11px;
    }

    .homepage #hero .hero-featured-in-slider .bxslider #womens-health-logo,
    .homepage #hero .hero-featured-in-slider .bxslider #mens-health-logo {
        margin-left: 66px;
    }

    .homepage #hero .hero-featured-in-slider .bxslider #esquire-logo,
    .homepage #hero .hero-featured-in-slider .bxslider #mens-fitness-logo {
        margin-left: 45px;
    }

    .homepage #hero .hero-featured-in-slider .bxslider #mens-fitness-logo,
    .homepage #hero .hero-featured-in-slider .bxslider #elle-logo {
        position: relative;
        bottom: -9px;
    }

    .homepage #hero .hero-featured-in-slider .bx-controls {
        padding-top: 16px;
    }

    .homepage #hero .categories-container.tablet {
        display: flex;
        flex-direction: column;
        grid-gap: 0;
        max-width: none;
        padding: 0 26px;
        padding-top: 0px;
        order: 2;
        margin-bottom: 40px;
        display: none;
    }

    .homepage #hero .categories-container.tablet .category-item {
        max-width: none;
        margin-bottom: 24px;
    }

    .homepage #hero .categories-container.tablet .category-item:last-child {
        margin-bottom: 0px;
    }

    .homepage #hero .categories-container.tablet .category-item a {
        margin: -24px auto;
    }

    .homepage #hero .categories-container #proteinCard a,
    .homepage #hero .categories-container #preworkoutCard a {
        margin: 6px auto;
    }

    .homepage #usp-icons {
        padding: 50px  3px 0px 3px;
        overflow: hidden;
        background: #F8F8F8;
    }

    .homepage .featuredStacks header > h2 {
        margin-bottom: 18px;
        font-size: 27px;
    }

    .homepage .featuredStacks .cols {
        margin-bottom: 0px;
    }

    .homepage .featuredStacks p {
        margin-bottom: 30px;
    }

    #main.homepage .featuredStacks .productFeature.save20,
    .homepage .featuredStacks .productFeature.soldOut {
        /*width: 51px !important;
        height: 51px;
        background-size: 51px;
        left: initial !important;
        top: 3px !important;
        right: calc(50% - 78px) !important;*/
        transform: initial !important;
        right: calc(50% - 55px) !important;
    }
    .homepage .featuredStacks .regularPrice,
    .homepage .featuredStacks .newPrice {
        margin-left: 0px !important;
        margin-right: 0px !important;
        letter-spacing: 1px;
    }
    .homepage .btnBtnAddToCart {
        position: relative;
        top: 0px;
    }

    .homepage .btnLearnMore {
        position: relative;
        top: 10px;
        width: 123px;
        height: 33px;
        line-height: 33px;
        border: none;
        box-shadow: none;
        background: #E4E4E4;
        color: #21343F;
    }

    #main.homepage .mobileAddToCart,
    #main.homepage .featuredStacks .learnMore {
        position: relative;
        width: 123px;
        height: 33px;
        line-height: 33px;
    }

    #main.homepage .featuredStacks .learnMore {
        top: -3px;
        border: none;
        box-shadow: none;
        background: #E4E4E4;
        color: #21343F;
    }

    #main.homepage .featuredStacks .learnMore:hover {
        background: #d2d2d2;
    }

    .homepage #more-from-legion {
        padding-top: 33px !important;
        padding-bottom: 28px !important;
        overflow: hidden;
        background: #fff;
    }

    .homepage #more-from-legion h2 {
        margin-bottom: 40px;
    }

    .home .woocommerce-message, .home .woocommerce-info, .home .woocommerce-error {
        top: 71px;
        padding: 10px 20px;
    }

    .homepage .which-product {
        padding: 0 0 56px;
    }

    .homepage .which-product header {
        margin-bottom: 1px;
    }

    .homepage .which-product header h2 {
        line-height: 1.3;
        padding: 0 8px;
        font-size: 27px;
    }

    .homepage .which-product .options {
        margin-bottom: 32px;
    }

    .homepage .which-product .options a {
        width: 50%;
    }

    .homepage .which-product a.lose-weight img {
        bottom: 51px;
        width: 100px
    }

    .homepage .which-product a.recover-faster img {
        bottom: 40px;
    }

    .homepage .which-product a.build-muscle img {
        bottom: 63px;
        width: 125px;
    }

    .homepage .which-product a.improve-health img {
        width: 110px;
        bottom: 60px;
    }

    .homepage .most-popular {
        background: #F8F8F8;
        padding: 33px 0 42px;
        overflow: hidden;
    }

    .homepage .most-popular header h2 {
        font-size: 27px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .homepage .featuredStacks .view-all {
        margin-top: -6px;
    }

    .homepage .most-popular .view-all {
        margin-top: 0px;
    }

    .homepage .featuredStacks .view-all:hover,
    .homepage .most-popular .view-all:hover,
    .homepage .about-us .cols .col a.btn:hover {
        background: #138EEB;
        color: #fff;
    }

    .homepage .most-popular .products {
        margin-bottom: 10px;
    }

    .homepage #most-popular .productsContainer > div {
        display: flex;
        flex-wrap: wrap;
        align-items: end;
    }

    .homepage #most-popular .productsContainer .productTitle {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .homepage #most-popular .productsContainer .productTitle .productName {
        width: 100%;
        display: inline-block;
        margin-bottom: 0;
    }

    /* .homepage .most-popular .view-all:active,
    .homepage .most-popular .view-all:hover,
    .homepage .about-us .cols .col a.btn:active,
    .homepage .about-us .cols .col a.btn:hover {
        background: #1490ef;
    } */

    .homepage .about-us .cols .col a.btn {
        margin-top: 0;
    }

    .homepage .about-us {
        background: #F8F8F8;
        padding: 0 0 41px;
    }

    .homepage .about-us .cols .col.greedy {
        padding-bottom: 40px;
    }

    .homepage .about-us .cols .col .img.greedy {
        width: 232px;
        height: 180px;
        background: url('../../images/2017-images/phone-homepage-about-greedy@2x.png') center no-repeat;
        background-size: 232px;
        margin-bottom: 35px;
    }

    .homepage .about-us .cols .col .img.rockets {
        width: 276px;
        height: 187px;
        background: url('../../images/2017-images/phone-homepage-about-started@2x.png') center no-repeat;
        background-size: 276px;
        margin-bottom: 37px;
    }

    .homepage-vid-about, .homepage-vid-truth {
        /*padding: 265px 0 0 0;*/
    }

    .homepage .about-us .cols .col h4 {
        font-size: 21px;
        padding: 0 25px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .homepage .about-us .cols .col p {
        font-size: 18px;
        line-height: 1.5;
        margin: 0 auto 24px;
        padding: 0 12px;
    }

    .homepage .about-us .cols .col.rockets {
        padding-top: 0px;
    }

    .homepage .moneyback p {
        font-size: 18px;
        margin-bottom: 17px;
    }

    .homepage .industry-experts {
        background: #F8F8F8;
        padding: 5px 0 32px;
    }

    .homepage .industry-experts .quotes {
        max-width: 100%;
    }

    .homepage .industry-experts h2.proxima {
        margin-bottom: 0;
        font-size: 27px;
        padding: 0 20px;
    }

    .homepage .industry-experts ul li .img {
        margin: 0 auto 20px;
    }

    .homepage .featured-in {
        padding: 30px;
        position: relative;
    }

    .homepage .featured-in .featured-happy {
        width: calc(100% - 60px);
        text-align: center;
        border-radius: 26px;
        margin-bottom: 0;
        padding: 25px 25px;
        position: absolute;
        bottom: -42px;
        top: inherit;
    }

    .homepage .featured-in .reviews {
        display: inline-block;
    }

    .homepage .featured-in ul {
        right: 0;
    }

    .homepage .featured-in ul li.featured-inc5000 {
        width: 50%;
    }

    .homepage .featured-in ul li.featured-inc5000 img {
        position: relative;
        left: -15px;
    }

    .homepage .featured-in ul li.featured-labdoor {
        width: 50%;
    }

    .homepage .featured-in ul li.featured-bengreen {
        width: 100%;
        margin-top: 30px;
    }

    .homepage .featured-in ul li.featured-barbend {
        width: 100%;
        margin-top: 30px;
    }

    .homepage .featured-in .featured-happy .left {
        font-size: 15px;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .homepage .featured-in .featured-happy .sep {
        display: none
    }

    .homepage .featured-in .featured-happy .center {
        font-size: 15px;
    }

    .homepage .featured-in .featured-happy .right {
        font-size: 14px;
    }

    .homepage .featured-in .featured-happy .stars {
        float: left;
        margin-right: 8px;
        top: 1px;
        background-position: right;
        left: -6px;
    }

    .homepage .featuredStacks {
        padding-top: 33px;
        padding-bottom: 35px;
    }

    .homepage .moneyback div,
    .homepage .moneyback header {
        width: 100% !important;
        padding-top: 0px;
    }

    .homepage .moneyback {
        width: 100%;
        padding: 33px 11px 41px;
        background: #F8F8F8;
    }

    .homepage .moneyback h2 {
        margin-bottom: 30px;
    }

    .homepage .moneyback img {
        max-width: 217px;
        padding-left: 0%;
    }

    .homepage .moneyback .container {
        padding: 0px;
    }

    .homepage .moneyback h2 {
        text-align: center;
    }

    .homepage .moneyback a.btn {
        margin: 30px auto 0px !important;
    }

    .homepage .risk-free h2,
    .homepage .moneyback h2 {
        font-size: 27px;
        line-height: 1.3;
        margin-bottom: 33px;
    }

    body.home section.most-popular .container {
        padding: 0;
    }

    body.home section.most-popular div.product {
        background: #F8F8F8;
        padding-bottom: 0;
        display: inline-block;
        vertical-align: top;
        float: none;  
        margin-top: 0px !important;
    }

    body.home section.most-popular div.product .prices {
        display: flex;
        justify-content: center;
    }

    body.home section#most-popular div.product .productFeature {
        top: 10px;
        margin-top: 19px;
    }

    body.home section.most-popular div.product .img {
        width: 145px;
        height: 145px;
        top: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 10px;
    }

    .homepage .most-popular header {
        margin-bottom: 12px;
        padding: 0 30px;
    }

    .homepage .customer-testimonials {
        background: #F8F8F8;
        padding: 40px 0 33px;
    }

    .homepage .customer-testimonials .quotes {
        padding: 0;
    }

    .homepage .customer-testimonials .container header h2 {
        margin-bottom: 30px;
        font-size: 27px;
    }

    .homepage #more-from-legion h2.proxima {
        margin-bottom: 35px;
        font-size: 27px;
        max-width: 345px;
        margin-left: auto;
        margin-right: auto;
    }

    .homepage #more-from-legion article {
        margin: 0 0 10px 0;
        border: none;
    }

    .homepage #usp-icons .homeMetaIconList {
        display: block;
        padding-top: 0;
        grid-template-columns: none;
        max-width: none;
        height: 100%;
    }

    .homepage #usp-icons .homeMetaIconList > div {
        padding: 0;
    }

    .homepage #usp-icons .homeMetaIconList > div h2,
    .homepage #usp-icons .homeMetaIconList > div span {
        padding: 0 20px;
    }

    .homepage #usp-icons .homeMetaIconList > div span {
        color: #293644;
        font-weight: 600;
        font-size: 27px;
        margin: 0 0 20px;
        line-height: 1.2;
        text-decoration: none;
    }

    .homepage #usp-icons .homeMetaIconList > div p {
        padding: 0 26px 15px;
    }

    .homepage #usp-icons .homeMetaIconList .homeMetaIcon {
        margin-bottom: 20px;
    }

    .homepage #more-from-legion .bx-viewport {
        border: 1px solid #ddd !important;
    }

    .homepage #usp-icons .bx-wrapper .bx-prev,
    .homepage #usp-icons .bx-wrapper .bx-next,
    .homepage #most-popular .bx-wrapper .bx-prev,
    .homepage #most-popular .bx-wrapper .bx-next,
    .homepage #more-from-legion .bx-wrapper .bx-prev,
    .homepage #more-from-legion .bx-wrapper .bx-next {
        background: white url('/wp-content/themes/legion-2017/images/2017-images/slider-arrow@2x.png') center no-repeat;
        background-size: 18px;
        width: 59px;
        height: 59px;
        border-radius: 50%;
        border: 1px #E5E5E9 solid;
        z-index: 1;
    }

    .homepage #usp-icons .bx-wrapper .bx-next,
    .homepage #most-popular .bx-wrapper .bx-next,
    .homepage #more-from-legion .bx-wrapper .bx-next {
        transform: rotate(180deg);
    }

    .homepage #most-popular .bx-wrapper .bx-prev,
    .homepage #most-popular .bx-wrapper .bx-next {
        display: none;
    }

    .homepage #more-from-legion .bx-wrapper .bx-prev {
        left: -20px;
    }

    .homepage #more-from-legion .bx-wrapper .bx-next {
        right: -20px;
    }

    .homepage #more-from-legion .bx-wrapper .bx-pager {
        bottom: -80px;
    }
    .homepage #customer-testimonials .bx-wrapper {
        margin: 0 auto;
    }
    .homepage #customer-testimonials .bx-wrapper .bx-pager {
        bottom: 0;
        position: relative;
        padding-top: 37px;
        overflow: hidden;
    }

    .homepage #customer-testimonials .bx-wrapper .bx-pager .bx-pager-item {
        display: inline-block;
        padding: 8px 0;
    }

    .homepage #usp-icons .bx-wrapper .bx-pager.bx-default-pager a,
    .homepage #most-popular .bx-wrapper .bx-pager.bx-default-pager a,
    .homepage #more-from-legion .bx-wrapper .bx-pager.bx-default-pager a {
        background: #DDDDDD;
        width: 6px;
        height: 6px;
        margin: 0 8px;
    }

    .homepage #usp-icons .bx-wrapper .bx-pager.bx-default-pager a.active,
    .homepage #most-popular .bx-wrapper .bx-pager.bx-default-pager a.active,
    .homepage #more-from-legion .bx-wrapper .bx-pager.bx-default-pager a.active {
        background: #1CA4FC;
        width: 8px;
        height: 8px;
        position: relative;
        top: -1px;
    }

    .homepage #more-from-legion article h4,
    .homepage #more-from-legion article .excerpt {
        padding: 0 32px;
    }

    .homepage #legion-instagram-reviews .insta-cta-btns {
        display: block;
        margin: 0 auto;
        max-width: 216px;
    }

    #main #legion-instagram-reviews .insta-cta-btns a.quiz-btn {
        margin: 20px 0 0;
    }
    .industry-experts > .container {
        margin-bottom: 0;
    }
    .industry-experts .btn.prev,
    .industry-experts .btn.next {
        display: none;
    }
    .homepage .bx-pager .bx-pager-item {
        margin: 0 4px;
    }
    .homepage .customer-testimonials .btn {
        display: none;
    }
    /** Home Reviews Slider Bullet **/
    #customer-testimonials {
        overflow: hidden; /* Prevent overflow during sliding */
    }
    
    #customer-testimonials .bx-pager {
        display: flex; /* Set up flexbox for horizontal alignment */
        
    }
    #customer-testimonials .bx-pager {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: hidden; /* Limit overflow */
        transition: transform 0.3s ease; /* Smooth transition for the sliding effect */
    }
    
    #customer-testimonials .bx-pager-item {
        transition: opacity 0.3s ease;
    }
    
    #customer-testimonials .bx-pager-link {
        display: block;
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50%;
    }
    
    #customer-testimonials .bx-pager-link.active {
        background: #000;
    }
    #customer-testimonials .bx-pager.slide-left {
        transform: translateX(-100%); /* Shift pager to the left */
        transition: transform 0.5s ease-in-out;
    }
    
    #customer-testimonials .bx-pager.slide-right {
        transform: translateX(0); /* Shift pager back to the right */
        transition: transform 0.5s ease-in-out;
    }
}

@media screen and (max-width: 718px) {
    .homepage #hero .blue-strip {
        display: none;
    }
}






@media screen and (max-width: 534px) {
    body.home .featuredStacks .col h3 {
        font-size: 12px;
        padding: 0px 5px;
    }

}








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

  .homepage .featuredStacks p {
    padding: 0 22px;
  }

  .homepage .homeFeaturedThumb {
    height: 90px;
  }

  .homepage .blog #more-from-legion article .homeFeaturedThumb .img {
    height: 90px !important;
  }

  .homepage #more-from-legion article h4, .homepage #more-from-legion article .excerpt {
    padding: 0 0 0 15px;
  }

  .homepage .blog #more-from-legion article {
    margin-bottom: 10px;
  }

  .homepage #more-from-legion article .excerpt {
    display: none;
  }

  .homepage #more-from-legion article h4 {
    font-size: 15px;
  }

}




@media screen and (max-width: 350px) {
    .homepage #hero-main ul.checks li.checks-free {
      left: 2%;
      width: 50%;
    }
}




@media screen and (max-width: 335px) {
    .homepage #hero-main ul.checks li.checks-free {
      left: 0%;
    }
}


/*--------------------------------------------------------------
# Cost to Produce Section
--------------------------------------------------------------*/

.cost-to-produce-image-mobile, .cost-to-produce-image-tablet {
    display:  none;
}

.cost-to-produce-text {
    display:  inline-block;
    width:  42%;
    vertical-align: top;
}

.cost-to-produce-image {
    display:  inline-block;
    width:  57%;
    vertical-align: top;
    text-align:  right;
}

.cost-to-produce-image img{
    max-width:  590px;
}

.cost-to-produce-div p {
    font-size:  19px;
    margin-bottom: 18px;
    line-height:  1.5;
    color:  #293644;
    letter-spacing:  .3px;
}

.cost-to-produce-div {
    margin-bottom: 0px;
    background: #F8F8F8;
    width: 100%;
    padding-top: 1px;
    padding-bottom: 60px;
}

.cost-to-produce-div > .container {
    max-width: 1350px;
}

.cost-to-produce-div h2 {
    margin-top:  60px;
    margin-bottom: 20px !important;
    line-height:  1.2;
}

.cost-to-produce-div header p {
    font-size: 19px;
    text-align: center;
    margin-bottom: 60px;
    max-width: 100%;
    color: #293644;
    letter-spacing: .3px;
}

/** Home Featured Post Footer Section**/
.homeFeaturedThumb {
    width: 28%;
    height: 180px;
}
.homepage .blog #more-from-legion .article-home-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.homepage .blog #more-from-legion article .bot {
    height: auto;
    padding: 0;
    width: 65%;
    align-content: center;
    background: #F8F8F8;
}
.homepage .blog #more-from-legion article .bot h4 {
    text-align: left;
}
.homepage .blog #more-from-legion article .bot .excerpt p {
    text-align: left;
    margin-bottom: 0;
}
.homepage  .blog #more-from-legion article {
    border: none;
}
.homepage .blog #more-from-legion article .homeFeaturedThumb .img {
    height: 180px;
}
.homepage .blog #more-from-legion article h4 a {
    text-decoration: none;
    color: #000;
}

.brand-mobile-icon {
    display: none;
}

.homepage .matrix-2023 .comparison-wrapper .highlight-plan ul li.shop-matrix {
    background-color: #27A2FF;
    max-height: 50px;
}
.homepage .matrix-2023 .comparison-wrapper .highlight-plan ul li.shop-matrix a {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0;
    transition: ease all 0.5s;
    padding: 14px 20px;
}

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

    .productStackInfoContainer {
        margin-top: 83px !important;
    }

    .homepage .blog #more-from-legion article .bot {
        align-content: flex-start;
    }

}

@media screen and (min-width: 1024px) {
    .cost-to-produce-image img {
        max-width: 600px;
        margin-top: -5px;
        margin-right: -20px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
    .cost-to-produce-image {
        display:  none !important;
    }
    .cost-to-produce-image-mobile {
        display:  none !important;
    }
    .cost-to-produce-image-tablet {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 550px;
        margin-bottom: 50px;
    }
    .cost-to-produce-div {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }
    .cost-to-produce-div header p {
        font-size: 18px;
        text-align: center;
        margin-bottom: 40px;
        max-width: 100%;
        margin-top: -15px;
        margin-bottom: 30px;
    }
    .cost-to-produce-div h2 {
        font-size: 34px !important;
        max-width: 700px;
        margin-left:  auto;
        margin-right:  auto;
        margin-top:  50px;
    }
    .industry-experts ul li p {
        margin-bottom: 60px;
    }
}

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

    .cost-to-produce-div header p {
        font-size: 18px;
        text-align: center;
        margin-top:  20px;
        margin-bottom: 50px;
        max-width: 100%;
    }


    .cost-to-produce-text {
        display:  inline-block;
        width:  100%;
        vertical-align: top;
    }

    .cost-to-produce-text p, .cost-to-produce-text a {
        font-size: 18px;
        text-align: center;
        margin-left:  auto;
        margin-right:  auto;
        max-width:  600px;
    }

    .cost-to-produce-image {
        display:  inline-block;
        width:  100%;
        vertical-align: top;
        text-align:  right;
    }

    .cost-to-produce-image {
        display:  none;
    }
}

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


    .productStackInfoContainer {
        margin-top: 86px !important;
    }

    .cost-to-produce-div header p {
        margin-bottom:  40px;
    }

    .cost-to-produce-div h2 {
        font-size:  27px !important;
        margin-top:  33px;
        margin-bottom: -8px !important;
    }

    .cost-to-produce-div {
        background: #fff;
        padding-bottom: 18px;
    }

    .cost-to-produce-image-mobile {
        display: block;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-top: -10px;
        margin-bottom: 30px;
    }
    .homepage .blog #more-from-legion .article-home-container {
        display: block;
    }
    .homepage .blog #more-from-legion article {
        width: 100%;
        padding-bottom: 0;
        background: #F8F8F8;
    }
    .homepage .blog #more-from-legion article .bot {
        background: #F8F8F8;
        width: 75%;
    }
    .brand-mobile-icon {
        display: block;
        width: 79px;
        height: auto;
        margin: 0 auto 20px;
    }

}

.homepage .cartTester {
    margin: 15px auto 0px;
    width: 600px;
    font-size: 18px;
    font-weight: bold;
    background: #000;
    color: #fff;
    padding: 8px;
    position: relative;
}

.homepage .cartTesterTable {
    width: 600px;
    border: 2px solid;
    border-collapse: collapse;
    margin: 0px auto;
}

.homepage .cartTester span {
    position: absolute;
    right: 10px;
}

.homepage .cartTesterTable tr.error {
    background-color: red;
}

.homepage .cartTesterTable td {
    padding: 8px;
    border: 1px solid;
    border-collapse: collapse;
}

/** New Matrix Section **/
.homepage .matrix-hldr {
    background: #F8F8F8;
    padding: 70px 0;
}

.homepage #comparison-matrix {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
}
.homepage #comparison-matrix h2 {
    text-align: center;
}
.homepage .comparison-matrix-section .ca-tabs {
    display: inline-block;
    margin-bottom: 50px;
}
.homepage .comparison-matrix-section .ca-tab.ca-hidden,
.homepage  .comparison-matrix-section .ca-tab.ca-hidden,
.homepage  .comparison-matrix-section .ca-content-for-tab > .container.ca-hidden {
    display: none;
}

.homepage  .stacked-product-content-section .content .ca-tabs,
.homepage  .comparison-matrix-section .ca-tabs {
    border-bottom: 1px #e3e3e3 solid;
}

.homepage  .comparison-matrix-section .ca-tab {
    top: 1px;
    display: inline-block;
    padding-bottom: 3px;
    cursor: pointer;
    font-size: 18px;
}

.homepage .comparison-matrix-section {

}

.homepage .comparison-matrix-section .ca-tab .ca-wrap:after {
    content: ' ';
}

.homepage .comparison-matrix-section .ca-tab:not(:last-child){
    margin-right: 42px;
}

.homepage .comparison-matrix-section .ca-active-tab {
    position: relative;
    border-bottom: 2px #27A2FF solid;
    font-weight: 700;
    color: #27A2FF;
}
.homepage .comparison-matrix-section.matrix-2023 h2 {
    font-weight: 700 !important;
    font-size: 36px;
    line-height: 42px;
    color: #333333;
    margin-bottom: 40px;
}


/** Whey Design **/
.homepage .matrix-2023 .comparison-data .highlight-plan {
    border-radius: 8px;
    background: transparent;
}
.comparison-head{
    max-width: 220px;
    width: 100%;
    margin-bottom: 50px;
}
.triumph-matrix .comparison-head {
    max-width: 225px;
}
.comparison-matrix-section.matrix-2023 .comparison-data>div {
    max-width: 241px;
    width: 100%;
}
.homepage .matrix-2023 .comparison-title h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.03em;
    color: #333333;
    margin-bottom: 28px;
    min-height: 48px;
}
.homepage .matrix-2023 .comparison-title h4 span[style="white-space: nowrap"] {
    color: #333333;
    font-weight: 700;
}
.homepage .matrix-2023 .comparison-wrapper {
    display: flex;
}
.homepage .matrix-2023 .comparison-wrapper .comparison-head ul li {
    justify-content: left;
    font-weight: 700;
    padding-left: 10px;
    padding-right: 10px;
}
.comparison-data-container {
    width: calc(100% - 219px);
}
.comparison-head {
    max-width: 220px;
    width: 100%;
}
.homepage .matrix-2023 .comparison-wrapper ul li {
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    border-bottom: 0;
    justify-content: center;
    letter-spacing: 0.03em;
    overflow-wrap: anywhere;
    height: 88px;
}
.homepage .comparison-wrapper li {
    margin: 0;
    padding: 10px;
    -webkit-align-items: center;
    align-items: center;
    display: flex;
}
.homepage .matrix-2023 .comparison-wrapper .comparison-head ul li {
    justify-content: left;
    font-weight: 700;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
}
.homepage .matrix-2023 .comparison-wrapper ul .comparison-title {
    justify-content: flex-start;
    padding: 30px 10px;
    height: 237px;
    display: block;
}
.homepage .comparison-wrapper ul li:first-child {
    background: #FFFFFF;
}
.homepage .comparison-title img {
    width: auto;
    max-height: 114px;
    max-width: 120px;
}
.homepage .creatine-gummies-matrix .comparison-title img {
    max-height: 97px;
}
.homepage .matrix-2023 .comparison-wrapper ul li.matrix-white-row {
    background: #FFFFFF;
}
.homepage .matrix-2023 .comparison-wrapper ul li.matrix-grey-row {
    background: #F8F8F8;
}

.homepage .matrix-2023 .comparison-wrapper .highlight-plan ul li {
    font-weight: 700;
    background: #f2f9ff;
}

.homepage .matrix-2023 .comparison-wrapper .highlight-plan ul li.matrix-white-row {
    background: linear-gradient(
      to bottom,
      rgba(242, 249, 255, 0.6) 0px,
      rgba(242, 249, 255, 0) 150px,
      #ffffff 150px,
      #ffffff 100%
    );
}


.homepage .matrix-2023 .comparison-wrapper .highlight-plan ul li.matrix-grey-row {
    background: rgba(100, 100, 100, 6%) !important;
    background-image: initial !important;
    background-position-x: initial !important;
    background-position-y: initial !important;
    background-size: initial !important;
    background-repeat: initial !important;
    background-attachment: initial !important;
    background-origin: initial !important;
    background-clip: initial !important;

}


.homepage .matrix-2023 .comparison-wrapper .highlight-plan ul {
    border: 1.5px solid rgba(19, 142, 235, 0.24);
    background: rgba(39, 162, 255, 0.06);
    border-radius: 8px;
}
.homepage .matrix-2023 .comparison-wrapper .highlight-plan ul li.comparison-title {
    background: linear-gradient(0deg, rgba(39, 162, 255, 0.06), rgba(39, 162, 255, 0.06)), #FFFFFF;
    border-radius: 8px 8px 0 0;
}

.os-theme-dark>.os-scrollbar-vertical, .os-theme-light>.os-scrollbar-vertical {
    visibility: hidden;
}

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

    .homepage .matrix-2023 .comparison-wrapper {
        padding-top: 10px;
    }
    .homepage #product-content .comparison-matrix-section h2 {
        margin: 0 auto 27px;
        font-weight: 700;
    }

    .homepage .comparison-matrix-section .ca-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 16px;
        margin:15px auto 30px auto;
        justify-content: center;
    }

    .homepage .comparison-matrix-section .ca-tabs::-webkit-scrollbar {
        display: none;
    }
    .homepage .comparison-matrix-section .ca-tab {
        white-space: nowrap;
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: 14px;   /* Optional: adjust font size to fit */
    }
    .homepage .comparison-matrix-section .ca-tab {
        font-size: 16px;
        line-height: 1.3;
    }
    .homepage .comparison-matrix-section .ca-tab:not(:last-child){
        margin-right: 15px;
    }
    .homepage .comparison-matrix-section .ca-tab .ca-wrap:after {
        content: '\A';
        white-space: pre;
    }
    .homepage .comparison-matrix-section .column-1 {
        width: auto;
        margin-right: 0;
    }

    #comparison-matrix .comparison-wrapper .comparison-data-container {
        width: 560px !important;  /* 3 x 220px */
        margin-left: -150px;
        padding-left: 150px;
    }
    #comparison-matrix .comparison-wrapper .comparison-data-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
      }
    /* Ensure the flex container doesn’t wrap items */
    .comparison-data {
        flex-wrap: nowrap !important;
    }
    /* Guarantee each column keeps its fixed width */
    .comparison-data > div {
        flex: 0 0 150px !important;
    }


    .comparison-data-container .os-scrollbar {
        bottom:0;
        width: 60%;
        margin:0 auto;
    }
    .comparison-data-container .os-scrollbar-track {
        background-color: #f2f2f2 !important;
    }
    .short-handle .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
        width: 36% !important;
    }
    .comparison-data-container .os-scrollbar-handle {
        background-color: rgb(39, 162, 255) !important;
    }

    .homepage .matrix-2023 .comparison-data .highlight-plan {
        max-width: 150px;
        width: 100%;
    }

    .homepage .matrix-2023 .comparison-wrapper .comparison-head ul li,
    .homepage .matrix-2023 .comparison-wrapper ul li,
    .homepage .matrix-2023 .comparison-title h4 {
        font-size: 14px;
    }
    .homepage .industry-experts .container {
        padding-top: 40px;
    }
    .homepage .matrix-hldr {
        background: #fff;
        padding: 40px 0;
    }
    .homepage .matrix-2023 .comparison-wrapper ul li.comparison-title.matrix-grey-row {
        background: #fff;
    }
    .home-blog-wrapper {
        background: #fff;
    }
    .homepage .blog #more-from-legion article {
        background: #fff;
    }
    .homepage .blog #more-from-legion article .bot {
        background: #fff;
    }
    .homepage .comparison-matrix-section.matrix-2023 h2 {
        font-size: 27px;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 20px;
        line-height: 35px;
    }
    .homepage .matrix-hldr {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .ca-content-for-tabs .ca-content-for-tab .container {
        padding: 0;
    }
    .comparison-head {
        padding-bottom: 60px;
        max-width: 170px;
        z-index: 10;
        background-color: #fff;
    }
}

@media screen and (max-width: 567px) {
    .homepage .comparison-matrix-section .ca-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 16px 0 140px;
    }

    .homepage .comparison-matrix-section .ca-tabs::-webkit-scrollbar {
        display: none;
    }
    .homepage .comparison-matrix-section .ca-tab {
        white-space: nowrap;
        flex: 0 0 auto;
        padding: 8px 12px; /* Space between tabs */
        font-size: 14px;   /* Optional: adjust font size to fit */
    }
    .comparison-head {
        max-width: 150px;
    }
    .homepage .matrix-2023 .comparison-data .highlight-plan {
                max-width: 150px;
    }
}
