.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transition-delay: var(--delay);
}

.animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

.isopure-blue {
    color: #37B0C9;
}

.dark-blue {
    color: #097CD9;
}

.isopure-red {
    color: #D50158
}

body {
    font-family: 'DinCondensedRegular', sans-serif;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
p,
ul {
    color: #404349;
    margin: 0;
    padding: 0;
}

.logo {
    margin: 1.5rem;
}

.isopure-logo {
    max-width: 150px;
    margin: 0 auto;
    display: block;
}

.main-title {
    text-transform: uppercase;
    font-size: 6rem;
    line-height: 6rem;
}

.top-section-wrap {
    border: 35px solid #FFF;
    position: relative;
    border-bottom: none;
}

.top-section-wrap .new-banner {
    position: absolute;
    top: -35px;
    left: 40px;
    width: 50px;
}

.top-section {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    border-bottom: 0px;
}

.footnote {
    display: flex;
    justify-content: end;
    width: 100%;
    padding: 1rem 0rem;
}

.footnote p {
    font-weight: bold;
    font-size: 1.25rem;
}

.top-section-wrap .text {
    position: absolute;
    top: calc(50% - 35px);
    transform: translate(0%, -50%);
    font-size: 1.5rem;
    max-width: 60%;
    text-align: left;
    margin-left: 8rem;
    max-width: 500px;
}

.second-section,
.third-section {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.second-section .right,
.third-section .left {
    text-align: center;
    display: flex;
    flex-direction: column;

}

.second-section .right {
    margin-right: 6rem
}

.third-section .left {
    margin-left: 6rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.collagen-banner-mobile {
    display: none;

}

img {
    max-width: 100%;
}

.benefits {
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.benefit-circle {
    width: 100%;
    height: auto;
    border-radius: 50%;
    background-color: #37B0C9;
    color: #FFF;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: .5rem;
    text-align: center;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
}

.benefit-main-title {
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 2rem;
}

.benefit-sub-title {
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.third-section {
    position: relative;
}

.fourth-section {
    position: relative;
    display: flex;
    margin-top: 3rem;
}

.banner-content {
    position: absolute;
    top: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 4rem;
    transform: translate(0, -50%);
    gap: 6rem;
}

.heading-2 {
    font-size: 5rem;
    line-height: 5rem;
}

.right-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1rem;
}

.callout {
    display: flex;
    gap: 10px;
}

.callout img {
    width: auto;
    height: 100px;
}

.callout-copy * {
    margin: 0;
    padding: 0;
}

.callout-copy {
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.callout-copy p {
    font-family: 'DinCondensedLight', sans-serif;
}

.whey-bg-mobile {
    display: none;
}

.about {
    margin: 4rem auto 6rem;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
}

.about p {
    font-size: 1.5rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.second-section-wrap .section-title {
    margin-bottom: 1rem;
}

.wtb {
    margin: 5rem 1rem 5rem;
    text-align: center;
}

.wtb-logos {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.wtb-soon {
    font-size: 2rem;
    margin-top: 2rem;
    font-size: 1.5rem;
}

.amazon-logo {
    max-height: 40px;
}

.faqs {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 3rem 1rem;
    text-align: center;
}

.faqs h3 {
    text-align: left;
    margin: .5rem .25rem;
}

.faqs ul {
    display: inline-block;
    list-style: none;
}

.faqs p,
.faqs li {
    font-size: 1.15rem;
}

.buy-cta {
    display: block;
    margin: .5rem;
    text-decoration: none;
    color: #097cd9;
}

.banner-title {
    font-size: 3rem;
    display: block;
    font-weight: bold;
}

.accordion {
    cursor: pointer;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion:after {
    content: '\25BC';
    color: #404349;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.accordion.active:after {
    transform: rotate(180deg);
}

.panel {
    padding: 0 .25rem 1rem;
    display: none;
    overflow: hidden;
    text-align: left;
}

.buy-now {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.buy-product {
    max-height: 150px;
}

.buy-cta h3 {
    font-size: 1rem;
    max-width: 150px;
    background-color: #37B0C9;
    color: white;
    padding: .25rem .5rem;
    font-weight: 100;
}

.wtb-soon h3 {
    line-height: 2rem;
}

.reg-mark {
    font-size: 0.3em;
    vertical-align: top;
    font-weight: 100;
    line-height: 1rem;
}

sup {
    font-weight: 100;
}

.wtb-logo {
    max-height: 80px;
}
.green {
    color: #93D501;
}
.center-section { 
padding: 0 2rem;
}
.center-section {
    background: url('protein-bg.png');
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

    .center-section .benefits {
        max-width: 100%;
    }

    .center-section .text-wrap, .center-section .image {
        max-width: 50%;
        margin: 0 auto;
        text-align: center;
    }

    footer li {
    display: inline-block;
    margin: 0 auto;
}
footer {
    text-align: center;
    margin: 1rem auto;
}
footer a {
    color: #000;
}
@media screen and (max-width: 1300px) {
    .benefit-main-title {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

    .benefit-sub-title {
        text-transform: uppercase;
        font-size: 1rem;
        line-height: 1rem;
    }

    .main-title {
        font-size: 4rem;
        line-height: 4rem;

    }

}

@media screen and (max-width: 1200px) {
    .top-section-wrap .text {
        font-size: 1rem;
        margin-left: 4rem;
    }

    .top-section-wrap .new-banner {
        left: 1rem;
        width: 30px;
    }

}

@media screen and (max-width: 1000px) {
    .top-section-wrap .new-banner {
        top: -16px;
    }

    .top-section-wrap {
        border: 1rem solid #FFF;
    }

    .heading-2 {
        font-size: 4rem;
        line-height: 4rem;
    }

    .main-title {
        font-size: 3rem;
        line-height: 3rem;
    }

    .callout-copy {
        font-size: 1rem;
    }

    .banner-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 700px) {
    .center-section .benefits {
        max-width: 100%;
    }
    .collagen-banner {
        display: none;
    }

    .collagen-banner-mobile {
        display: block;

    }

    .top-section-wrap .text {
        font-size: 2rem;
        position: absolute;
        top: 11%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0 1rem;
        text-align: center;
        min-width: 50%;
        margin: 0;
        margin-top: 1rem;
    }

    .second-section,
    .third-section {
        grid-template-columns: 1fr;
        margin: 1rem 0 2rem;
    }

    .second-section .left {
        order: 2;

    }

    .second-section .right,
    .third-section .left {
        margin: 1rem auto;
        width: 80%;
    }

    .section-title {
        font-size: 2rem;
        line-height: 2rem;
    }

    .benefits {
        grid-template-columns: 1fr 1fr;
        margin: 3rem 2rem 0;
    }

    .benefit-main-title {
        font-size: 3rem;
        line-height: 3rem;
    }

    .benefit-sub-title {
        font-size: 1.2rem;
        line-height: 1.2rem;
    }

    .banner-content {
        text-align: center;
        grid-template-columns: 1fr;
        margin: 0 4rem;
        gap: 1rem;
    }

    .heading-2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
        margin-bottom: 2rem;
    }

    .right-side {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 1rem;
    }

    .whey-bg-mobile {
        display: block;
    }

    .whey-bg {
        display: none;
    }

    .callout {
        flex-direction: column;
        align-items: center;
    }

    .callout h3 {
        font-size: 2rem;
    }

    .callout p {
        font-size: 1.2rem;
    }

    .faqs h3 {
        font-size: 1.25rem;
    }

    .faqs p,
    .faqs li {
        font-size: 1.25rem;
    }

    .wtb-logos {
        flex-direction: row;
        gap: 1;
    }

    .buy-cta {
        font-size: 1.5rem;
    }

    .wtb {
        margin: 5rem 1rem 3rem;
    }

    .faqs {
        margin: 0 auto 1rem;
    }

    .about {
        margin: 2rem auto 4rem;
    }

    .about p {
        font-size: 1.25rem;
    }

    .banner-title {
        font-size: 1.5rem;
    }
     .center-section .text-wrap, .center-section .image {
        max-width: 100%;
    }

}

@media screen and (max-width: 440px) {
    .banner-title {
        font-size: 1.5rem;
    }
}