@import "globals.css";

.main {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.main .refills {
    display: flex;
    flex-direction: column;
    align-items: start;
    overflow: hidden;
    padding: 1rem;
    gap: 1rem;
}

.main h1 {
    font-family: 'TT Ramillas Variable Roman', serif;
    max-width: 380px;
    font-size: 26px;
    text-align: left;
    font-weight: 800;
    color: var(--secondary-color);
}

.main h1 span {
    font-family: 'TT Ramillas Variable Roman', serif;
    display: inline-block;
    position: relative;
}

.main h1 span::before {
    content: "";
    background-image: url(../images/brush2.png);
    width: 90px;
    height: 20px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -18px;
    left: -5px;
}

.main p {
    font-family: 'TT Ramillas Variable Roman', serif;
    max-width: 330px;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    color: var(--secondary-color);
}

.main .item-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main .item-list li {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main .item-list li .item-icon {
    width: 30px;
}

.main .item-list li .item-icon img {
    width: 100%;
    max-height: 35px;
    object-fit: contain;
}

.main .item-list li span {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--secondary-color);
}



.main .section-buttons a.redirect-btn {
    width: max-content;
    max-width: unset;
    height: auto;
    box-shadow: unset;
    padding: 1rem;
    border-radius: 10px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
}

.main .section-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: auto;
}

.main .section-image h2 {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    text-align: center;
}

.main .section-image .main-img {
    width: 350px;
}

@media screen and (min-width: 400px) {
    .main .refills {
        align-items: center;
    }

    .main h1 {
        text-align: center;
    }
}


@media screen and (min-width: 950px) {
    .main .refills {
        padding-bottom: 4rem;
    }

    .main .section-image .main-img {
        width: 450px;
    }

    .main .refills {
        align-items: start;
    }

    .main h1 {
        text-align: left;
    }
}

@media screen and (max-width: 300px) {
    .main .start {
        padding: 0 0.5rem;
        background-color: var(--quaternary-color);
    }

}

.main .start::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/logo_black.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    opacity: 0.2;
}

.main .start {
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: column;
}

.main .start .main-img {
    width: 100%;
    max-width: 280px;
    z-index: 2;
}

.main .start .main-btn {
    width: 100%;
    max-width: 300px;
    margin-top: -10px;
    z-index: 3;
    display: flex;
    border-radius: 60px;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
}

.main .start .main-btn:hover {
    -webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both;
    animation: pulsate-fwd 0.5s ease-in-out infinite both;
}

.main .start .main-btn img {
    width: 100%;
    height: 100%;
}


@media screen and (min-width: 950px) {
    .main {
        padding-top: 2rem;
    }

    .main .container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
    }

    .main .start .main-img {
        max-width: 450px;
    }

    .main .start .main-btn {
        max-width: 500px;
        margin-top: -20px;
    }

    .main h1 {
        font-size: 42px;
        max-width: 500px;
    }

    .main h1 span::before {
        width: 130px;
    }

    .main p {
        font-size: 21px;
        max-width: 420px;
    }

    .main .characteristics .item .item-header {
        height: 120px;
    }

    .main .characteristics .item h6 {
        font-size: 18px;
        max-width: 200px;
    }
}



@media screen and (max-width: 300px) {
    .products .container .product-list .product-item {
        flex-direction: column;
    }

    .products .container .product-list .product-item .product-contents .product-price {
        justify-content: center;
    }
}

.products .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.products .container .product-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products .container .product-list .product-item {
    width: 100%;
    display: flex;
    padding: 1rem;
    gap: 0.5rem;
    justify-content: space-between;
}

.products .container .product-list .product-item.mt-2 {
    margin-top: 2rem;
}

.products .container .product-list hr {
    width: 60%;
    border: 1px solid #5f5f5f;
}

.products .container .product-list .product-item .product-contents {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.3rem;
}

.products .container .product-list .product-item .product-contents h2 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--secondary-color);
}

.products .container .product-list .product-item .product-contents hr {
    width: 80px;
    border: 1px solid var(--secondary-color);
}

.products .container .product-list .product-item .product-contents p {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 20px;
    max-width: 130px;
    font-weight: bold;
    color: var(--secondary-color);
}

.products .container .product-list .product-item .product-contents .old-price {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 46px;
    position: relative;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-bottom: -25px;
}

.products .container .product-list .product-item .product-contents .old-price::before {
    content: "$";
    position: absolute;
    left: -10px;
    top: -12px;
    font-size: 16px;
}

.products .container .product-list .product-item .product-contents .old-price::after {
    content: "";
    width: 75px;
    height: 2px;
    margin-left: -10px;
    background-color: red;
    transform: rotate(25deg);
    position: absolute;
}

.products .container .product-list .product-item .product-contents .product-price {
    width: 100%;
    font-family: 'TT Ramillas Variable Roman', serif;
    color: var(--secondary-color);
    font-weight: 800;
    display: flex;
    align-items: end;
    margin-top: 20px;
    font-size: 21px;
    position: relative;
}

.products .container .product-list .product-item .product-contents .product-price::after {
    content: "";
    background-image: url(../images/brush2.png);
    width: 100%;
    height: 12px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -10px;
    left: 10px;
}

.products .container .product-list .product-item .product-contents .product-price .price {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 56px;
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 46px;
    position: relative;
}

.products .container .product-list .product-item .product-contents .product-price span {
    font-size: 32px;
    font-weight: 100;
}

.products .container .product-list .product-item .product-image {
    display: flex;
    justify-content: end;
    align-items: end;
}

.products .container .product-list .product-item .product-contents .product-price .price::before {
    content: "$";
    position: absolute;
    left: -10px;
    top: -21px;
    font-size: 21px;
}

.products .container .product-list .product-item .product-image img {
    width: 100%;
    max-width: 200px;
}


@media screen and (min-width: 900px) {
    .products .container .product-list {
        gap: 2rem;
    }

    .products .container .product-list .product-item {
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 8rem;
    }

    .products .container .product-list .product-item.mt-2 {
        margin-top: 0;
    }

    .products .container .product-list .product-item .product-contents h2 {
        font-size: 52px;
    }

    .products .container .product-list .product-item .product-contents p {
        font-size: 28px;
        max-width: 220px;
    }

    .products .container .product-list .product-item .product-contents .old-price {
        font-size: 42px;
    }

    .products .container .product-list .product-item .product-contents .old-price::before {
        left: -18px;
        top: -18px;
        font-size: 26px;
    }

    .products .container .product-list .product-item .product-contents .old-price::after {
        width: 120px;
        margin-left: -15px;
    }

    .products .container .product-list .product-item .product-contents .product-price .price {
        font-size: 132px;
        line-height: 108px;
    }

    .products .container .product-list .product-item .product-contents .product-price .price::before {
        top: -75px;
        font-size: 56px;
    }

    .products .container .product-list .product-item .product-contents .product-price {
        font-size: 42px;
        margin-top: 70px;
    }

    .products .container .product-list .product-item .product-contents .product-price span {
        font-size: 62px;
    }

    .products .container .product-list .product-item .product-contents .product-price::after {
        height: 25px;
        bottom: -20px;
    }

    .products .container .product-list .product-item .product-image img {
        max-width: 350px;
    }

    .products .container .product-list hr {
        width: 40%;
    }

}


.faqs {
    padding: 2rem 0;
    padding-bottom: 4rem;
    background-color: var(--tertiary-color);
}

.faqs .faqs-list {
    margin: 0 auto;
    display: flex;
    margin-top: 60px;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.faqs .faqs-list .question {
    width: 100%;
}

.faqs .faqs-list .question .question-title {
    font-family: 'TT Ramillas Variable Roman', serif;
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 5rem;
    cursor: pointer;
    color: var(--secondary-color);
    font-size: 25px;
    font-weight: bold;
}

.faqs .faqs-list .question .question-title .question-icon {
    width: 25px;
    height: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
}

.faqs .faqs-list .question .question-title .question-icon::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 2px;
    height: 15px;
    background: var(--secondary-color);
    transform: rotate(0deg);
    transition: transform .3s ease;
}

.faqs .faqs-list .question .question-title .question-icon::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 15px;
    height: 2px;
    background: var(--secondary-color);
}

.faqs .faqs-list .question.active .question-title .question-icon::before {
    transform: rotate(90deg);
}

.faqs .faqs-list .question .question-answer {
    width: 100%;
    overflow: hidden;
    display: none;
    font-weight: 500;
    font-size: 16px;
    padding: 1rem;
    color: black;
}

.faqs .faqs-list hr {
    width: 100%;
    max-width: 90%;
    border: 1px solid black;
}

.faqs .faqs-list .question .question-answer.active {
    display: block;
}

@media screen and (min-width: 900px) {
    .faqs .faqs-list .question .question-title {
        font-size: 28px;
    }

    .faqs .faqs-list .question .question-answer {
        font-size: 18px;
    }

    .faqs .faqs-list hr {
        max-width: 100%;
    }
}

.faqs .section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.faqs .section-title h2 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 40px;
    line-height: 60px;
    font-weight: bold;
    color: var(--secondary-color);
}

.faqs .section-title h2 span {
    font-family: 'TT Ramillas Variable Roman', serif;
    width: max-content;
    position: relative;
}

.faqs .section-title h2 span::before {
    content: "";
    background-image: url(../images/brush2.png);
    width: 100%;
    height: 25px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -20px;
}

@media screen and (min-width: 900px) {
    .faqs .section-title h2 {
        font-size: 42px;
    }

    .faqs .section-title h2 {
        line-height: 76px;
    }

    .faqs .section-title h2 span::before {
        height: 35px;
        bottom: -30px;
    }
}



@-webkit-keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


.effects {
    width: 100%;
    background-color: #2C7068;
}

.effects.pt-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.effects.pb-4 {
    padding-bottom: 4rem;
    padding-top: 0;
}

.effects .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.effects .section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.effects .section-title h2 {
    font-family: 'TT Ramillas Variable Roman', serif;
    width: 100%;
    max-width: 380px;
    font-size: 42px;
    text-align: center;
    line-height: 52px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--white-color);
}

.effects .section-title h2 span {
    font-family: 'TT Ramillas Variable Roman', serif;
    display: inline-block;
    position: relative;
}

.effects .section-title h2 span::before {
    content: "";
    background-image: url(../images/brush3.png);
    width: 330px;
    height: 20px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -18px;
    left: -5px;
}

.effects .effects-img {
    width: 100%;
    max-width: 340px;
}

.effects .effects-contents {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.effects .effects-contents .item {
    padding-left: 3.5rem;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.effects .effects-contents .item h6 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 24px;
    color: #E0E28C;
    font-weight: bold;
    position: relative;
}

.effects .effects-contents .item h6::before {
    content: "";
    width: 32px;
    height: 15px;
    position: absolute;
    left: -40px;
    top: 10px;
    background-image: url(../images/icons/pil.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.effects .effects-contents .item p {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 14px;
    color: white;
    font-weight: 500;
    position: relative;
}

.effects .effects-contents .item p::before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: white;
    position: absolute;
    left: -25px;
    top: 0;
}

.effects .effects-contents .item:last-child p::before {
    display: none;
}

@media screen and (min-width: 950px) {
    .effects {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .effects .section-title.left {
        margin-right: auto;
    }

    .effects .section-title.right {
        margin-left: auto;
    }

    .effects .container.row {
        flex-direction: row;
    }

    .effects .container.row-reverse {
        flex-direction: row-reverse;
        align-items: start;
    }

    .effects .effects-img {
        margin-top: 0;
        max-width: 440px;
        height: 300px;
    }

    .effects .effects-contents.right {
        text-align: right;
    }

    .effects .effects-contents.right .item h6::before {
        left: unset;
        right: -40px;
    }

    .effects .effects-contents.right .item p::before {
        left: unset;
        right: -25px;
    }

    .effects .effects-contents.right .item {
        padding-left: 1.5rem;
        padding-right: 3.5rem;
    }
}


@media screen and (min-width: 1150px) {
    .effects .effects-contents .item h6 {
        font-size: 26px;
    }

    .effects .effects-contents .item p {
        font-size: 18px;
    }

    .effects .effects-img {
        max-width: 650px;
        height: 500px;
    }
}


.rating {
    width: 100%;
    padding: 4rem 0;
}

.rating-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.rating-list .rating-box {
    max-width: 350px;
    width: 100%;
    padding: 1rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--quaternary-color);
    gap: 20px;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.rating-list .rating-box .stars img {
    width: 28px;
}

.rating-list .rating-box .rating-contents {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-list .rating-box .rating-contents h6 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 25px;
    font-weight: 800;
}

.rating-list .rating-box .rating-contents p {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 16px;
    font-weight: 600;
}

.rating-list .rating-box .rating-author {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 15px;
    font-weight: bold;
    display: flex;
    gap: 10px;
    align-items: center;
}

.rating-list .rating-box hr {
    border: 1px solid var(--quaternary-color);
    margin-top: auto;
}


@media screen and (min-width: 950px) {
    .rating-list .rating-box {
        max-width: 450px;
    }

    .rating-list .rating-box .rating-contents h6 {
        font-size: 32px;
    }

    .rating-list .rating-box .rating-contents p {
        font-size: 18px;
    }

    .rating-list .rating-box .rating-author {
        font-size: 18px;
    }
}



.dosing {
    background-color: var(--tertiary-color);
    padding: 0 1rem;
}

.dosing.pt-4 {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.dosing.pb-4 {
    padding-bottom: 4rem;
    padding-top: 2rem;
}

.dosing .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dosing .dosing-contents {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dosing .dosing-contents h2 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary-color);
}

.dosing .dosing-contents h6 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
}

.dosing .dosing-contents p {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.dosing .dosing-contents p span {
    text-decoration: underline;
}

.dosing .dosing-contents p:last-child {
    font-size: 12px;
    color: #A99C7E;
}

.dosing .dosing-contents a.redirect-btn {
    width: 100%;
    max-width: 250px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: relative;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.dosing .dosing-contents a.redirect-btn:hover {
    -webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both;
    animation: pulsate-fwd 0.5s ease-in-out infinite both;
}


.dosing .dosing-contents a.redirect-btn img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.dosing .dosing-contents a.redirect-btn span {
    z-index: 10;
    font-size: 21px;
    color: white;
    font-weight: 600;
}

.dosing .dosing-plans {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dosing .dosing-plans h2 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
}

.dosing .dosing-plans .plan-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.dosing .dosing-plans .plan-list .plan-item {
    width: 100%;
    max-width: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.dosing .dosing-plans .plan-list .plan-item .item-img {
    width: auto;
    height: 190px;
    display: flex;
    align-items: end;
}

.dosing .dosing-plans .plan-list .plan-item .item-img img {
    max-width: 60px;
    width: 100%;
}

.dosing .dosing-plans .plan-list .plan-item:nth-child(3) img {
    max-width: 70px;
}

.dosing .dosing-plans .plan-list .plan-item:last-child img {
    max-width: 80px;
}

.dosing .dosing-plans .plan-list .plan-item h6 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
}

.dosing .dosing-plans .plan-list .plan-item a {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    text-decoration: none;
    border-left: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    border-right: 2px solid var(--secondary-color);
    padding: 0.2rem 1rem;
    position: relative;
}

.dosing .dosing-plans .plan-list .plan-item a::before {
    content: "";
    width: 100%;
    height: 100%;
    max-height: 0;
    position: absolute;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.dosing .dosing-plans .plan-list .plan-item a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.dosing .dosing-plans .plan-list .divisor {
    height: 220px;
    display: flex;
    align-items: center;
}

.dosing .dosing-plans .plan-list .divisor img {
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 380px) {
    .dosing .dosing-contents {
        text-align: center;
        align-items: center;
    }

    .dosing .dosing-plans .plan-list {
        flex-direction: column;
        gap: 40px;
    }

    .dosing .dosing-plans .plan-list .divisor {
        display: none;
    }

    .dosing .dosing-plans .plan-list .plan-item {
        max-width: 100%;
    }

    .dosing .dosing-plans .plan-list .plan-item .item-img {
        height: unset;
    }

    .dosing .dosing-plans .plan-list .plan-item .item-img img {
        max-width: 120px;
    }

    .dosing .dosing-plans .plan-list .plan-item h6 {
        font-size: 21px;
    }

    .dosing .dosing-plans .plan-list .plan-item a {
        font-size: 21px;
    }
}

@media screen and (min-width: 950px) {
    .dosing .dosing-plans .plan-list .plan-item {
        max-width: 110px;
    }

    .dosing .container {
        justify-content: space-between;
        flex-direction: row;
    }

    .dosing .dosing-contents {
        max-width: 400px;
    }

    .dosing .container.row-reverse {
        flex-direction: row-reverse;
    }

    .dosing .dosing-contents.right {
        text-align: right;
        align-items: end;
    }
}


@media screen and (min-width: 1150px) {
    .dosing .dosing-plans .plan-list .plan-item {
        max-width: 160px;
        min-width: 150px;
    }

    .dosing .dosing-plans .plan-list .plan-item .item-img {
        height: 240px;
    }

    .dosing .dosing-plans .plan-list .plan-item .item-img img {
        max-width: 90px;
    }

    .dosing .dosing-plans .plan-list .plan-item:nth-child(3) img {
        max-width: 100px;
    }

    .dosing .dosing-plans .plan-list .plan-item:last-child img {
        max-width: 110px;
    }

    .dosing .dosing-plans .plan-list .plan-item h6 {
        font-size: 18px;
    }

    .dosing .dosing-plans .plan-list .plan-item a {
        font-size: 21px;
    }

    .dosing .dosing-contents {
        max-width: 600px;
    }

    .dosing .dosing-contents h2 {
        font-size: 32px;
    }

    .dosing .dosing-contents h6 {
        font-size: 26px;
    }

    .dosing .dosing-contents p {
        font-size: 18px;
    }
}


.comparison {
    padding: 4rem 0;
    min-height: 1100px;
}

.comparison .comparison-contents {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison .comparison-contents h2 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 52px;
    line-height: 48px;
    font-weight: 800;
    color: var(--secondary-color);
}

.comparison .comparison-contents p {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 15px;
    font-weight: bold;
    color: var(--secondary-color);
}

.comparison-slider {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    margin-top: 40px;
}

.img-comp-container {
    width: 100%;
    position: relative;
    height: 200px;
    /*should be the same height as the images*/
    display: flex;
}

.img-comp-img {
    position: absolute;
    width: auto;
    height: auto;
    overflow: hidden;
}

.img-comp-img img {
    width: 260px;
    height: 380px;
    display: block;
    vertical-align: middle;
}

.img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
}

.img-comp-slider img {
    width: 20px;
    pointer-events: none;
}

@media screen and (min-width: 950px) {
    .comparison {
        min-height: 300px;
    }

    .comparison .container {
        display: flex;
        gap: 4rem;
    }

    .comparison-slider {
        margin-top: 0;
    }

    .comparison-slider {
        max-width: 250px;
    }

    .img-comp-img img {
        width: 250px;
        height: 370px;
    }
}

@media screen and (min-width: 1150px) {
    .comparison {
        min-height: 620px;
    }

    .comparison-slider {
        max-width: 360px;
    }

    .img-comp-img img {
        width: 360px;
        height: 480px;
    }
}


.convenience {
    padding: 4rem 0;
    background-color: var(--quaternary-color);
}

.convenience .section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.convenience .section-title h2 {
    font-family: 'TT Ramillas Variable Roman', serif;
    width: 100%;
    max-width: 420px;
    font-size: 38px;
    text-align: center;
    line-height: 46px;
    font-weight: 800;
    color: var(--white-color);
}

.convenience .section-title h2 span {
    font-family: 'TT Ramillas Variable Roman', serif;
    display: inline-block;
    position: relative;
    color: #E0E28C;
}

.convenience .section-title h2 span::before {
    content: "";
    background-image: url(../images/brush3.png);
    width: 250px;
    height: 20px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -18px;
    left: -5px;
}

.convenience .convenience-list {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    gap: 2rem;
}

.convenience .convenience-list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.convenience .convenience-list .item img {
    max-width: 150px;
    max-height: 90px;
}

.convenience .convenience-list .item h6 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 18px;
    color: #E0E28C;
    text-align: center;
}

.convenience .convenience-list .item p {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 14px;
    color: white;
    text-align: center;
    max-width: 320px;
}

@media screen and (min-width: 1150px) {
    .convenience .section-title {
        margin-bottom: 80px;
    }

    .convenience .section-title h2 {
        max-width: 480px;
        font-size: 52px;
    }

    .convenience .section-title h2 span::before {
        width: 350px;
        bottom: -30px;
    }

    .convenience .convenience-list .item h6 {
        font-size: 24px;
    }

    .convenience .convenience-list .item p {
        font-size: 18px;
    }
}


.buy-box {
    padding: 4rem 1rem;
    background-color: #F0F0E4;
}

.buy-box .container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.buy-box .box-item {
    background-color: white;
    padding: 2rem 1rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border: 2px solid var(--secondary-color);
}

.buy-box .box-item .box-img {
    width: 230px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.buy-box .box-item h2 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 700;
}

.buy-box .box-item h6 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 700;
}

.buy-box .box-item ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.buy-box .box-item ul li {
    color: black;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 600;
}

.buy-box .box-item ul li::before {
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/icons/check.svg) no-repeat;
    background-size: contain;
    background-position: center;
}

.buy-box .box-item .product-price {
    width: 100%;
    font-family: 'TT Ramillas Variable Roman', serif;
    color: var(--secondary-color);
    font-weight: 800;
    display: flex;
    margin-top: 10px;
    align-items: end;
    justify-content: center;
    font-size: 21px;
    position: relative;
}

.buy-box .box-item .product-price .price {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 72px;
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 46px;
    position: relative;
}

.buy-box .box-item .product-price span {
    font-size: 32px;
    font-weight: 100;
}

.products .container .product-list .product-item .product-image {
    display: flex;
    justify-content: end;
    align-items: end;
}

.buy-box .box-item .product-price .price::before {
    content: "$";
    position: absolute;
    left: -15px;
    top: -35px;
    font-size: 26px;
}

.buy-box .box-item p {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: -10px;
}

.buy-box .box-item a.redirect-btn {
    background-color: #E7DEC9;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 18px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.buy-box .box-item a.redirect-btn:hover {
    -webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both;
    animation: pulsate-fwd 0.5s ease-in-out infinite both;
}


.calculator {
    width: 100%;
    height: auto;
    padding: 2rem 1rem;
}

.calculator .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.calculator .calculator-box {
    width: 100%;
    height: auto;
    padding: 1rem;
    background-color: #E0E28C;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calculator .calculator-box .box-header {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calculator .calculator-box .box-header h6 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 18px;
    max-width: 180px;
    color: var(--secondary-color);
    font-weight: 900;
}

.calculator .calculator-box .box-header span {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    padding-right: 1.5rem;
    position: relative;
}

.calculator .calculator-box .box-header span::after {
    content: "lbs";
    position: absolute;
    font-size: 18px;
    font-weight: 500;
    top: -6px;
    right: -3px;
}

.calculator .calculator-box .box-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calculator .calculator-box .box-body input {
    width: 100%;
}

.calculator .calculator-box .box-body .box-result {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: var(--secondary-color);
    border-radius: 10px;
}

.calculator .calculator-box .box-body .box-result h6 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 14px;
    max-width: 120px;
    color: white;
    font-weight: 600;
}

.calculator .calculator-box .box-body .box-result span {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 32px;
    font-weight: bold;
    color: white;
    padding-right: 1.2rem;
    position: relative;
}

.calculator .calculator-box .box-body .box-result span::after {
    content: "lbs";
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    top: -6px;
    right: -3px;
}

.calculator .calculator-box .box-footer p {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 9px;
    color: var(--secondary-color);
    font-weight: 600;
}

.field input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
    --progress: 0%;
}

.field input[type="range"]:hover {
    opacity: 1;
}

.field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    cursor: pointer;
    border-radius: 50%;
    margin-top: -6px;
}

.field input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, #4CAF50 0%, #4CAF50 var(--progress), #ccc var(--progress), #ccc 100%);
}

.field input[type="range"]::-moz-range-progress {
    background: #4CAF50;
    height: 8px;
}

.field input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8px;
    background: #ccc;
}

@media screen and (min-width: 900px) {
    .calculator .calculator-box {
        padding: 2rem;
    }

    .calculator .calculator-box .box-header h6 {
        font-size: 21px;
        max-width: 200px;
    }

    .calculator .calculator-box .box-header span {
        font-size: 32px;
    }

    .calculator .calculator-box .box-header span::after {
        font-size: 18px;
    }

    .calculator .calculator-box .box-body .box-result h6 {
        font-size: 16px;
        max-width: 120px;
    }

    .calculator .calculator-box .box-body .box-result span {
        font-size: 28px;
    }

    .calculator .calculator-box .box-footer p {
        font-size: 14px;
    }

    .calculator a.redirect-btn {
        max-width: 350px;
    }
}


.what-is {
    padding: 4rem 1rem;
}

.what-is .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.what-is .item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.what-is .item img {
    width: 100%;
    max-width: 300px;
}

.what-is .item h2 {
    font-family: 'TT Ramillas Variable Roman', serif;
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-right: auto;
}

.what-is .item hr {
    width: 80%;
    border: 2px solid var(--secondary-color);
    margin-right: auto;
}

.what-is .item p {
    font-size: 18px;
    font-weight: 500;
}

.what-is .item p span {
    text-decoration: underline;
}

@media screen and (min-width: 950px) {
    .what-is .container {
        flex-direction: row;
        gap: 4rem;
    }

    .what-is .item {
        text-align: center;
    }
}

@media screen and (min-width: 1150px) {
    .what-is .item img {
        max-width: 400px;
    }

    .what-is .item h2 {
        font-size: 36px;
    }

    .what-is .item p {
        font-size: 21px;
    }
}