@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Regular.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Medium.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-MediumItalic.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Bold.ttf) format('truetype')
}

:root {
    --primary-color: #224d24;
    --secondary-color: #8dc63f;
    --body-text-color: #666666;
}

body {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

button:focus,
.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.bg-tertiary {
    background: #fafafa;
}

input::placeholder,
textarea::placeholder {
    font-size: 14px;
}

.btn {
    border-radius: 8px;
    padding: .5rem 1rem;
}

ul, address {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
}

.form-control {
    font-size: 14px;
}

.form-control:focus {
    border-color: transparent;
    box-shadow: none;
    border: 1px solid #ced4da;
}

h2, h3, h6 {
    color: #000;
}

.loader {
    position: fixed;
    z-index: 1026;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
}

.loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loaded #loader {
    display: none;
}

.topbar {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1020;
    height: 35px;
    transition: background-color 0.3s ease;
    padding: .5rem 0;
}

.topbar a {
    color: #fff;
}

.topbar a span i {
    margin-right: .5rem;
}

.navbar {
    position: sticky;
    top: 35px;
    z-index: 1020;
    transition: background-color 0.3s ease;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.navbar.scrolled {
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.nav-link {
    color: #000;
    font-weight: 500;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link,
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

a.navbar-brand {
    padding: 0;
}

#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1030;
    border-radius: 50%;
}

.btn-scroll-top,
.btn-scroll-top:hover {
    padding: .25rem .6rem;
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-scroll-top:hover {
    opacity: .8;
}

section {
    padding: 2rem 0;
}

.title-section {
    text-align: center;
    padding-bottom: .5rem;
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px dashed var(--secondary-color);
}

h2.title-section {
    font-size: 1.75rem;
}

.banner-section {
    background: url(../images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: .5rem 0;
    color: #fff;
    height: 450px;
}

.banner-section .banner-contents {
    padding: 6rem 0 4rem 2rem;
    position: relative;
}

.banner-section h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 60px;
    margin-bottom: 2rem;
}

.banner-section .powder-features {
    width: 100%;
}

.banner-section .powder-features .features-box {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
}

.banner-section .powder-features .features-box span {
    font-weight: 500;
    margin-bottom: 1rem;
    width: 100%;
    font-size: 1rem;
}

.banner-section .powder-features .features-box span img {
    width: 25px;
    margin-right: 1rem;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-40px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.features-box>* {
    animation: slideInLeft 900ms ease-out both;
}

.features-box>*:nth-child(1) {
    animation-delay: 0ms;
}

.features-box>*:nth-child(2) {
    animation-delay: 160ms;
}

@media (prefers-reduced-motion: reduce) {

    .features-box>* {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.banner-section .banner-contents .img-group {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-top: 1rem;
    gap: 2rem;
    position: absolute;
    top: 45%;
    right: 0;
}

.banner-section .banner-contents .img-group img {
    width: 110px;
}

.banner-section .banner-contents .img-group img:last-child {
    width: 125px;
}

.our-products .card-product {
    padding: 1rem;
    background: #fafafa;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    position: relative;
}

.our-products .card-product img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.our-products .card-product .product-details {
    margin-top: 1rem;
}

.our-products .card-product .product-details .bg-share {
    background-color: var(--primary-color);
    color: #fff;
    padding: .5rem .75rem;
    position: absolute;
    right: 20px;
    bottom: 15px;
    border-radius: 6px;
    cursor: pointer;
}

.our-products .card-product .product-details h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.our-products .card-product .product-details a:hover h3 {
    color: var(--secondary-color);
}

.our-products .card-product .product-details h3:after {
    content: "\f0a5";
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
    color: var(--primary-color);
    font-size: 15px;
    padding-left: 1rem;
}

.our-products .card-product .product-details span.price {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 600;
}

.ingredients-section .ingredients-wrapper .ingredients-details h2 {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e1e1e1;
}

.ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list {
    margin: 0;
    padding: 0;
}

.ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li {
    display: flex;
    margin-bottom: .5rem;
}

.ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li .ingredient-container {
    width: 100%;
}

.ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li .ingredient-container {
    color: #23292c;
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li .ingredient-container span {
    padding: 3px 0;
}

.ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li .ingredient-container span.ingredient {
    padding-right: 10px;
    width: 25%;
}

.ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li .ingredient-container .dot-line {
    border-top: 2px dashed var(--primary-color);
    min-width: 300px;
    margin: 0;
    width: 65%;
}

.ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li .ingredient-container span.qty {
    text-align: end;
    color: var(--primary-color);
    padding-left: 10px;
    width: 15%;
}

.ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li:last-child {
    margin-bottom: 0;
}

.nutrient-comparison-section .inner-container {
    position: relative;
}

.nutrient-comparison-section {
    position: relative;
    overflow: hidden;
}

.nutrient-comparison-section img.badge-vegan,
.nutrient-comparison-section img.badge-non-gmo {
    position: absolute;
    top: 5%;
    max-width: 150px;
}

.nutrient-comparison-section img.badge-vegan {
    left: 10%;
}

.nutrient-comparison-section img.badge-non-gmo {
    right: 10%;
}

.nutrient-comparison-section .left-column {
    position: relative;
    margin-bottom: 30px;
}

.nutrient-comparison-section .left-column .inner-column {
    position: relative;
    padding-right: 30px;
    padding-top: 130px;
}

.nutrient-block {
    position: relative;
    margin-bottom: 50px;
}

.nutrient-block .inner-box {
    position: relative;
    text-align: right;
    padding-top: 12px;
    min-height: 100px;
    padding-right: 130px;
}

.nutrient-block .inner-box .icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    line-height: 50px;
    background-color: #fff;
    border: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.nutrient-block.style-two .inner-box .icon {
    left: 0;
    right: auto;
}

.nutrient-block .inner-box .icon img {
    width: 80px;
}

.nutrient-block .inner-box h6 {
    font-weight: 600;
    margin-bottom: 0;
}

.nutrient-block .inner-box h6 a {
    position: relative;
    color: #27272f;
    transition: all .3s ease;
}

.nutrient-block .inner-box .text {
    color: #5e5e5e;
}

.nutrient-block .inner-box .text span.high-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: .25rem;
}

.nutrient-comparison-section .image-column .image {
    position: relative;
    margin: 0 auto;
    border: 3px dotted var(--secondary-color);
    border-radius: 50%;
    padding: 1rem;
    width: 370px;
    height: 370px;
    text-align: center;
}

.orbit {
    position: absolute;
    inset: 0;
    animation: spin 8s linear infinite;
}

.dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .2);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.nutrient-comparison-section .image-column .image:hover .orbit {
    animation-play-state: paused;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .orbit {
        animation: none;
    }
}

.nutrient-comparison-section .image-column .nutrient-block {
    margin-top: 14px;
    margin-left: 65px;
}

.nutrient-comparison-section .right-column {
    position: relative;
    margin-bottom: 30px;
}

.nutrient-comparison-section .right-column .inner-column {
    position: relative;
    padding-left: 30px;
    padding-top: 130px;
}

.nutrient-block.style-two .inner-box {
    text-align: left;
    padding-right: 0;
    padding-left: 130px;
}

.nutrient-block.style-two .inner-box .icon {
    left: 0;
    right: auto;
}

.benefits .accordion .accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.benefits .accordion .accordion-item .accordion-button {
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.card-benefits {
    color: var(--body-text-color);
}

.benefits .accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.benefits .accordion .accordion-item .accordion-body p {
    color: var(--body-text-color);
}

.title-benefits {
    color: var(--primary-color);
}

.card-benefits p {
    margin-bottom: .25rem;
}

.card-benefits:hover .title-benefits,
.card-benefits:hover .benefits-data .number {
    color: var(--secondary-color);
}

.card-benefits:hover .benefits-data .number {
    border: 1px solid var(--secondary-color);
}

.usage .using-methods .row {
    align-items: center;
}

.usage .using-methods .row .col-md-4 .row {
    margin-bottom: 2rem;
}

.usage .using-methods .row .col-md-4 .row:last-child {
    margin-bottom: 0;
}

.usage .using-methods .row .col-md-4 p {
    margin-bottom: 0;
    color: var(--body-text-color);
    font-weight: 600;
}

.usage .using-methods .row .col-md-4 .row img {
    width: 70px;
    height: 70px;
}

.storage-box {
    padding: .5rem 0;
}

.storage-box:last-child {
    padding-bottom: 0;
}

.storage-box p {
    color: var(--body-text-color);
}

.storage-box p:last-child {
    margin-bottom: 0;
}

.storage-box p::before {
    content: "\f02c";
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
    margin-right: 1rem;
    color: var(--secondary-color);
}

.consistency-section .consistency-box {
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    min-height: 140px;
}

.consistency-section .consistency-box h6 {
    background-color: var(--primary-color);
    padding: .5rem 1rem;
    border-radius: 7px 7px 0 0;
    color: #fff;
    margin-bottom: 0;
}

.consistency-section .consistency-box p {
    padding: .5rem 1rem;
}

footer {
    background: var(--primary-color);
    color: #fff;
    min-height: 250px;
    padding-top: 1.5rem;
    position: relative;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

footer .footer-logo img {
    max-width: 160px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    padding-bottom: .25rem;
}

.quick-links .footer-links li:before {
    content: "\f0da";
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
    padding-right: 10px;
    color: var(--secondary-color);
    font-size: 14px;
}

.footer-links li a {
    color: #fff;
    font-weight: 500;
}

.footer-links li span {
    font-weight: 500;
}

.footer-links li a:hover {
    color: var(--secondary-color);
}

.footer-links li i {
    width: 20px;
    margin-right: 1rem;
    font-size: 1rem;
}

.footer-links li i.w-20 {
    margin-right: 2.5rem;
}

footer .copyright-section {
    padding: 1.5rem 0;
}

footer .copyright-section .social-media-icons ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: end;
}

footer .copyright-section .social-media-icons ul li {
    margin: 0 .25rem;
}

footer .copyright-section .social-media-icons ul li.bg-social-icon {
    width: 35px;
    height: 35px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .copyright-section .social-media-icons ul li a {
    color: #fff;
}

footer .copyright-section .social-media-icons ul li:hover {
    background-color: #fff;
}

footer .copyright-section .social-media-icons ul li:hover a {
    color: var(--primary-color);
}

section.page-title {
    padding: 0;
}

.page-title {
    background-color: var(--primary-color);
    min-height: 180px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title h2 {
    margin-bottom: 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

/* Flaoting icon Style */

.float {
    position: fixed;
    width: 75px;
    height: 75px;
    bottom: 20px;
    left: 20px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 100;
}

a.float:hover i {
    opacity: .8;
    color: #fff;
}

#blinking-image {
    padding: 5px;
    border-radius: 50%;
}


@keyframes blink2 {
    0%, 100% {
        background-color: #fff;
    }

    50% {
        background-color: #95cc49;
    }
}

@keyframes blink {
    0% {
        box-shadow: 0px 1px 0px 3px #ab1a1a30, 0px 0px 0px 0px #224d24;
    }

    30% {
        box-shadow: 0px 1px 0px 3px #ab1a1a30, 0px 0px 0px 5px #448c47;
    }

    70% {
        box-shadow: 0px 1px 0px 3px #ab1a1a30, 0px 0px 0px 10px #4fd256;
    }

    100% {
        box-shadow: 1px 1px 2px 1px #ab1a1a30, 0px 0px 0px 12px transparent;
    }
}

#blinking-image {
    color: white;
    animation: blink 1s linear infinite;
}

.page-title.about-title {
    background-image: url(../images/bg-about.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 300px;
}

.about-us {
    margin-bottom: 50px;
}

.vision {
    background-color: var(--primary-color);
    min-height: 150px;
    padding-top: 110px;
}

.vision .card-vision {
    background-color: #fff;
    border-radius: 7px;
    padding: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    min-height: 125px;
    margin-top: -170px;
}

.vision .card-vision h6 {
    color: var(--primary-color);
}

.about-us p,
.vision .card-vision p {
    color: var(--body-text-color);
}

.vision .card-vision p {
    margin-bottom: 0;
}

.card-testimony {
    padding: 1rem;
    padding-top: 4rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 1px 10px 1px var(--secondary-color);
    color: var(--body-text-color);
    margin: 4rem 0;
    position: relative;
    min-height: 230px;
}

.card-testimony .profile-pic img {
    border-radius: 50%;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border: 3px solid #fff;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.card-testimony .client-details {
    margin-bottom: 0;
}

.card-testimony .client-details h6 {
    color: var(--primary-color);
    margin-bottom: 0;
}

.card-testimony .client-details span {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.card-testimony .client-details p {
    margin-top: .25rem;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--secondary-color);
    margin-top: 1rem;
}

.page-title.product-title {
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 350px;
}

.details-wrapper .carousel-indicators {
    bottom: -45px;
}

.details-wrapper .carousel-inner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.details-wrapper .product-details-content {
    padding: 2rem;
}

.details-wrapper .product-details-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.details-wrapper .product-details-content a:hover h4 {
    color: var(--secondary-color);
}

.details-wrapper .product-details-content a h4::after {
    content: "\f0a5";
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
    color: var(--primary-color);
    font-size: 15px;
    padding-left: 1rem;
}

.details-wrapper .product-details-content p {
    color: var(--body-text-color);
}

.details-wrapper .product-details-content .powder-features .features-box {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
}

.details-wrapper .product-details-content .powder-features .features-box span {
    width: 33.33%;
    margin-bottom: 1rem;
}

.details-wrapper .product-details-content .powder-features .features-box span img {
    width: 25px;
    margin-right: 1rem;
}

/* Media Query */

@media(max-width:1199px) {
    .banner-section .banner-contents {
        padding: 2rem 1rem;
    }

    .nutrient-comparison-section .image-column .image {
        width: 325px;
        height: 325px;
    }

    .vision .card-vision {
        min-height: 145px;
    }
}

@media(min-width:992px) {
    .nutrient-block {
        margin-bottom: 20px;
    }

}

@media(max-width:991px) {

    .page-title.about-title,
    .page-title.product-title {
        height: 200px;
    }

    .banner-section h1 {
        font-size: 2.25rem;
        line-height: 40px;
    }

    .banner-section .powder-features {
        width: 100%;
    }

    .banner-section .banner-contents .img-group {
        top: 85%;
    }

    .card-product {
        margin-bottom: 1rem;
    }

    .ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li .ingredient-container span.ingredient {
        width: 40%;
    }

    .ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li .ingredient-container .dot-line {
        min-width: 100px;
        width: 45%;
    }

    .ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li .ingredient-container span.qty {
        width: 15%;
    }

    .nutrient-comparison-section .image-column .image {
        width: 300px;
        height: 300px;
    }

    .nutrient-comparison-section img.badge-vegan,
    .nutrient-comparison-section img.badge-non-gmo {
        position: absolute;
        left: 10%;
    }

    .nutrient-comparison-section img.badge-vegan {
        top: 10%;
    }

    .nutrient-comparison-section img.badge-non-gmo {
        top: 25%;
    }

    .nutrient-block {
        margin-bottom: 20px;
    }

    .nutrient-block .inner-box {
        position: relative;
        text-align: right;
        padding-right: 140px;
    }

    .nutrient-comparison-section .left-column .inner-column .nutrient-block:nth-child(2) {
        margin-right: 0;
    }

    .nutrient-comparison-section .right-column .inner-column {
        padding-left: 0;
        padding-top: 0;
    }

    .nutrient-comparison-section .left-column .inner-column {
        padding-top: 0;
        padding-right: 0;
    }

    .nutrient-block.style-two .inner-box {
        padding-left: 140px;
    }

    .nutrient-comparison-section .right-column {
        margin-bottom: 0;
    }

    .nutrient-comparison-section .image-column .nutrient-block {
        margin-top: 14px;
        margin-left: 0;
    }

    .usage .using-methods .row .col-md-4 .row,
    .usage .using-methods .row .col-md-4 .row:last-child {
        margin-bottom: .5rem;
    }

    .consistency-section .consistency-box {
        min-height: auto;
        margin-bottom: 1rem;
    }

    .vision .card-vision {
        min-height: 165px;
    }

    .details-wrapper .product-details-content {
        padding: 2rem 0 0 0;
    }
}

@media(max-width:767px) {
    .topbar a span i {
        margin-right: .25rem;
    }

    .page-title.about-title,
    .page-title.product-title {
        min-height: 100px;
        height: 100px;
    }

    h2.title-section {
        font-size: 1.5rem;
    }

    .banner-section {
        height: auto;
    }

    .banner-section .banner-contents {
        padding: 2rem 0 15rem 0;
    }

    .banner-section .powder-features .features-box span {
        width: 100%;
        font-size: 14px;
    }

    .banner-section .banner-contents .img-group {
        justify-content: center;
        top: 78%;
        right: 50%;
        transform: translate(50%, 0%);
    }

    .banner-section .banner-contents .img-group img {
        background: #000;
        border-radius: 50%;
        width: 90px;
    }

    .banner-section .banner-contents .img-group img:last-child {
        width: 90px;
    }

    footer .copyright-section .social-media-icons ul {
        justify-content: center;
        padding-top: .5rem;
    }

    .float {
        position: fixed;
        width: 60px;
        height: 60px;
    }

    .ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li .ingredient-container span {
        background: transparent;
    }

    .ingredients-section .ingredients-wrapper .ingredients-details ul.ingredients-list li:last-child {
        margin-bottom: .5rem;
    }

    .nutrient-comparison-section img.badge-vegan,
    .nutrient-comparison-section img.badge-non-gmo {
        position: absolute;
        top: 33%;
        max-width: 70px;
    }

    .nutrient-comparison-section img.badge-non-gmo {
        left: 75%;
    }

    .nutrient-block .inner-box {
        position: relative;
        text-align: left;
        padding-right: 70px;
        min-height: 75px;
    }

    .nutrient-block.style-two .inner-box {
        padding-left: 100px;
    }

    .nutrient-block .inner-box .icon {
        width: 80px;
        height: 80px;
    }

    .nutrient-block .inner-box .icon img {
        width: 60px;
    }

    .nutrient-comparison-section .left-column .inner-column {
        padding-right: 0;
    }

    .about-us {
        margin-bottom: 0;
    }

    .vision {
        min-height: auto;
        padding-top: 2rem;
    }

    .vision .card-vision {
        margin-top: 0;
        min-height: auto;
    }

    .card-testimony {
        margin: 3.25rem 0;
    }

    .details-wrapper .product-details-content .powder-features .features-box span {
        width: 100%;
    }

    .details-wrapper .product-details-content .powder-features {
        width: 100%;
    }
}

@media(max-width:359px) {
    .topbar a span {
        font-size: 12px;
    }

    .banner-section h1 {
        font-size: 2rem;
    }

    .banner-section .powder-features .features-box span img {
        width: 25px;
        margin-right: .5rem;
    }
}