/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------*/
:root {
    --color__black: #000000;
    --color__white: #ffffff;
    --color__lightGreen: #27b090;
    --font-primary: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 58%;
    -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 768px) {
    html {
        font-size: 60%;
    }
}
@media screen and (min-width: 992px) {
    html {
        font-size: 62.5%;
    }
}

body {
    font-size: 1.4rem;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
}

p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 0;
}
@media screen and (min-width: 410px) {
    p {
        font-size: 1.6rem;
    }
}
img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul li,
ol li {
    font-size: 1.6rem;
}

a {
    color: inherit;
    text-decoration: none;
    font-size: 1.6rem;
}
a:hover {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

/*-------------------------------------------------
    [ ## Fields ]
---------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="search"] {
    padding: 1rem 1rem;
    font-size: 1.6rem;
    font-family: var(--font-primary);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus {
    outline: none;
    box-shadow: none;
    border-color: #ced4da;
}

input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="search"] {
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: var(--font-primary);
    padding: 1rem 1rem;
    font-size: 1.6rem;
}

textarea.form-control {
    display: block;
    width: 100%;
    display: block;
    min-height: 50px;
    font-family: var(--font-primary);
    padding: 1rem 1rem;
    font-size: 1.6rem;
}
textarea.form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-control {
    width: 100%;
}
.form-error {
    margin-top: 15px;
    color: red;
}
.form-floating > .form-control {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

::-webkit-input-placeholder {
    color: var(--color__black);
}

.widget_newsletter::-webkit-input-placeholder {
    color: #808080;
}

:-moz-placeholder {
    color: var(--color__black);
    opacity: 1;
}

::-moz-placeholder {
    color: var(--color__black);
    opacity: 1;
}

:-ms-input-placeholder {
    color: var(--color__black);
}

.text-red {
    color: red;
}

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

.d-flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}
.text-golden {
    color: #ffc000;
}
.btn-green {
    background-color: #52b588;
    color: var(--color__white);
    display: inline-block;
    padding: 1.2rem 2.3rem;
    border-radius: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-green:hover {
    background-color: #12253c;
    color: var(--color__white);
}
@media screen and (min-width: 410px) {
    .btn-green {
        font-size: 1.5rem;
    }
}
.btn-dark {
    background-color: #12253c;
    color: var(--color__white);
    display: inline-block;
    padding: 1.6rem 2.4rem; /* Increase the padding values */
    border-radius: 1rem;
    font-weight: bold;
    font-size: 1.4rem; /* Increase the font size */
    transition: all 0.2s;
}
.btn-dark:hover {
    color: var(--color__white);
    padding: 1.2rem 2.8rem;
}

.btn-shadow {
    box-shadow: 0.4rem 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.25);
}
.p-0 {
    padding: 0 !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.m-0 {
    margin: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
.gradient-shape {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40rem;
    z-index: -1;
    clip-path: polygon(100% 0, 100% 75%, 0 100%, 0 0);
    pointer-events: none;
}
.gradient-shape canvas {
    width: 100%;
    height: 100%;
}
.linear-background {
    background: rgb(249, 232, 241);
    background: linear-gradient(
        0deg,
        rgb(249, 232, 241) 0%,
        rgb(255, 255, 255) 100%
    );
    position: fixed;
    inset: 0;
    z-index: -1;
}

header {
    padding: 2rem 0;
}
header .nav .right-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1.5rem;
}



.hero .hero-content {
    padding: 3rem 0 8rem;
}
.hero h1 {
    margin-bottom: 3rem;
    font-size: 3.2rem;
}

.hero p {
    font-size: 1.8rem;
    line-height: 1.6;
}

.promo-heading {
    background-color: #f3c0da;
    padding: 1rem 0.6rem;
}
.promo-heading p {
    font-size: 1.2rem;
    line-height: 1;
}

.solutions-wrapper {
    position: relative;
    overflow: hidden;
}
.solutions-wrapper .container {
    max-width: 410px;
}

.solutions-wrapper .grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
    margin: 2rem 0;
}
.solutions-wrapper .item {
    padding: 0.5rem 0;
    text-align: center;
    box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
}
.solutions-wrapper .item .inner {
    background-color: white;
    padding: 0.8rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--color) 0 0.8rem 0 0, var(--color) 0 -0.8rem 0 0;
    border-radius: 1rem;
}
.solutions-wrapper .item .inner .btn {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 1.5rem;
    padding: 0.5rem 2rem;
    display: block;
}

.solutions-wrapper .item .thumbnail {
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-size: cover;
    background-position: center;
    margin-bottom: 0.5rem;
}

.solutions-wrapper .item .thumbnail .text {
    background-color: rgba(255, 255, 255, 0.8);
    border: 0.1rem solid var(--color);
    padding: 1.5rem 0;
    border-radius: 1rem;
    flex: 1;
    font-size: 1rem;
}
.solutions-wrapper .item .thumbnail .text img {
    width: 80%;
    display: block;
    text-align: center;
    margin: auto;
}
.solutions-wrapper .item.disabled .inner::before {
    content: "";
    inset: 0;
    background-color: #000;
    opacity: 0.2;
    position: absolute;
    z-index: 9;
}
.solutions-wrapper .shape {
    background-color: var(--bg);
    width: 10rem;
    height: 5rem;
    border-radius: 1rem;
    position: absolute;
    z-index: -1;
    box-shadow: 0 0.5rem 0.5rem 0 rgba(0, 0, 0, 0.5);
}
.solutions-wrapper .shape.left {
    top: 8rem;
    left: -5rem;
}
.solutions-wrapper .shape.right {
    bottom: 8rem;
    right: -5rem;
}


.special-plans {
    margin: 3rem 0;
}
.special-plans .container {
    max-width: 410px;
}
.special-plans .text-wrapper {
    background-color: #52b588;
    border-radius: 1.5rem;
    color: #fff;
    padding: 2rem;
    display: flex;
    gap: 1rem;
}
.special-plans .text-wrapper h5 {
    font-weight: 500;
}
.special-plans .text-wrapper h6 {
    font-weight: 400;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    line-height: 1;
}
.special-plans .text-wrapper p {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 200;
}

.subscription-plan {
    margin: 5rem 0;
    overflow: hidden;
}
.subscription-plan .container {
    max-width: 100%;
}

.subscription-plan .slidePrev-btn {
    left: 0;
}
.subscription-plan .slideNext-btn {
    right: 0;
}
.subscription-plan .slidePrev-btn,
.subscription-plan .slideNext-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    z-index: 10;
    background-color: #e1e1e1;
    border-radius: 50%;
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
}
.subscription-plan .slidePrev-btn.swiper-button-disabled,
.subscription-plan .slideNext-btn.swiper-button-disabled {
    opacity: 0;
}
.subscription-plan .swiper {
    padding: 0 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}
.subscription-plan .swiper-wrapper {
    align-items: stretch;
}
.subscription-plan .plan-item {
    height: 100%;
    background-color: var(--color__white);
    border-radius: 2rem;
    box-shadow: 0 -10px 0 var(--color) inset;
    -webkit-box-shadow: 0 -10px 0 var(--color) inset;
    -moz-box-shadow: 0 -10px 0 var(--color) inset;
}
.subscription-plan .plan-item .plan-header {
    padding: 2rem 3rem 1rem;
    position: relative;
    overflow: hidden;
}
.subscription-plan .plan-item .plan-header h5,
.subscription-plan .plan-item .plan-header h6,
.subscription-plan .plan-item .plan-header .price {
    color: var(--color);
}
.subscription-plan .plan-item .plan-header h5 {
    font-size: 2.3rem;
}
.subscription-plan .plan-item .plan-header h6 {
    font-size: 1.8rem;
    line-height: 1.2;
}
.subscription-plan .plan-item .plan-header .price {
    font-size: 4rem;
    line-height: 1;
    margin: 1rem 0;
}
.subscription-plan .plan-item .plan-header .price span {
    font-size: 5rem;
    font-weight: 600;
}

.subscription-plan .plan-item .plan-header a {
    background-color: var(--color);
    display: block;
    padding: 1rem 3rem;
    border-radius: 1rem;
    color: var(--color__white);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 1rem 0;
    box-shadow: 0.4rem 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.25);
}
.subscription-plan .plan-item .plan-header .featured {
    position: absolute;
    background-color: #ec7aad;
    top: 24px;
    right: -34px;
    transform: rotate(45deg);
    font-weight: 700;
    padding: 0.5rem 3.5rem;
    color: var(--color__white);
    box-shadow: 0 0 .8rem 0 rgba(0,0,0,0.5);
}
.subscription-plan .plan-item .plan-body {
    padding: 1rem 2rem 4rem;
}
.subscription-plan .plan-item .plan-body h6 {
    font-size: 1.6rem;
    color: #5d5d5d;
    margin-bottom: 1rem;
}
.subscription-plan .plan-item .plan-body ul li {
    border: 0.1rem solid #ddd;
    display: block;
    padding: 0.5rem 1rem;
    font-size: 1.4rem;
}
.subscription-plan .plan-item .plan-body ul li + li {
    margin-top: 0.5rem;
}
.subscription-plan .plan-item .plan-body button {
    border: 0;
    cursor: pointer;
}

.subscription-plan .plan-item .plan-body .form-group input,
.subscription-plan .plan-item .plan-body .form-group textarea {
    border: 0.1rem solid #ddd;
}
.subscription-plan .plan-item .plan-body .form-group + .form-group {
    margin-top: 1rem;
}
.subscription-plan .plan-item .thanks-content {
    display: none;
    border: 0.1rem solid #000;
    padding: 2rem;
    border-radius: 1rem;
}
.subscription-plan .plan-item .thanks-content h5 {
    font-size: 2rem;
}

.essential-gel-plan {
    padding: 3rem 0;
}
.essential-gel-plan .info-content {
    max-width: 50rem;
    margin: 0 auto;
}
.essential-gel-plan h3 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
}
.essential-gel-plan .plan-slider {
    margin: 3rem -1.5rem 5rem -1.5rem;
}
.essential-gel-plan .plan-slider .swiper-wrapper {
    align-items: stretch;
}

.essential-gel-plan .plan-slider .swiper-slide {
    background: #42936c;
    padding: 2rem 1.5rem 4rem;
    border-radius: 3rem;
    color: var(--color__white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.essential-gel-plan .plan-slider .big-title {
    font-size: 2.4rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}
.essential-gel-plan .plan-slider .bg-shape {
    position: absolute;
    width: 100%;
    height: 100% !important;
    left: 0;
    top: 0;
    z-index: -1;
}
.essential-gel-plan .plan-slider .bg-shape img {
    width: 100%;
    height: 100% !important;
}

.essential-gel-plan .plan-slider h6,
.essential-gel-plan .plan-slider p {
    z-index: 1 !important;
    position: relative;
    font-size: 1.2rem;
}

.essential-gel-plan .plan-slider h6 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 1rem 0;
}
.essential-gel-plan .plan-slider .list-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0 0 ;
}
.essential-gel-plan .plan-slider ul.small-text {
    list-style-type: disc;
    margin-left: 1rem;
}

.essential-gel-plan .plan-slider ul.small-text li {
    font-size: 1rem;
    text-align: left;
    font-weight: 600;
    text-indent: -0.5rem;
    line-height: 1.7;
}
.essential-gel-plan .plan-slider p.small-text {
    font-size: 1.3rem;
}
.essential-gel-plan .swiper-pagination span {
    background-color: #fff;
    width: 1.2rem;
    height: 1.2rem;
}
.essential-gel-plan .links-footer {
    max-width: 50rem;
    margin: 0 auto;
}

.terms-condition {
    padding: 3rem 0;
}
.terms-condition p {
    line-height: 1.7;
}




/*  =================================================
    Responsive CSS Starts Here
=================================================== */
@media screen and (min-width: 375px) {
    .essential-gel-plan .plan-slider .swiper-slide {
        padding: 3rem 2rem 5rem;
    }
    .essential-gel-plan .plan-slider h6,
    .essential-gel-plan .plan-slider p {
        font-size: 1.5rem;
    }
    .essential-gel-plan .plan-slider .big-title {
        font-size: 2.8rem;
    }
}
@media screen and (min-width: 410px) {
    .solutions-wrapper .item .thumbnail {
        height: 15rem;
    }
    .solutions-wrapper .item .inner .btn,
    .solutions-wrapper .item .thumbnail .text {
        font-size: 1.4rem;
    }
    .special-plans .text-wrapper h6 {
        font-size: 1.6rem;
    }
    .promo-heading p {
        font-size: 1.5rem;
    }
}
@media screen and (min-width: 576px) {
    .container {
        max-width: 560px;
        padding: 0 2rem;
    }
    .hero h1 {
        font-size: 4rem;
        max-width: 40rem;
    }
    .solutions-wrapper .container {
        max-width: 560px;
        padding: 0 2rem;
    }
    .solutions-wrapper .grid {
        gap: 2rem;
    }
    .solutions-wrapper .item .thumbnail {
        height: 17rem;
        padding: 2rem;
    }
    .solutions-wrapper .item .thumbnail .text {
        font-size: 1.8rem;
    }
    .special-plans .container {
        max-width: 560px;
        padding: 0 2rem;
    }
    .essential-gel-plan .plan-slider {
        max-width: 45rem;
        margin: 3rem auto 5rem;
    }
    .essential-gel-plan .plan-slider ul.small-text {
        margin-left: 2rem;
    }
    .essential-gel-plan .plan-slider ul.small-text li  {
        font-size: 1.2rem;
    }
    .special-plans .text-wrapper h6 {
        font-size: 1.8rem;
    }
    .subscription-plan .plan-item .plan-body {
        padding: 1rem 3rem 4rem;
    }
}
@media screen and (min-width: 768px) {
    .container {
        max-width: 740px;
    }
    .hero h1 {
        font-size: 4.6rem;
        max-width: 60rem;
    }
    .subscription-plan .plan-item .plan-header p {
        font-size: 1.8rem;
    }
    .subscription-plan .plan-item .plan-body button {
        font-size: 1.6rem;
        padding: 1.5rem 3rem;
    }
    .subscription-plan .container {
        max-width: 760px;
    }
}
@media screen and (min-width: 992px) {
    .container {
        max-width: 1020px;
    }
    .gradient-shape {
        height: 50rem;
    }
    .hero p {
        max-width: 70rem;
        font-size: 2rem;
    }
    .subscription-plan .container {
        max-width: 1020px;
    }
    .solutions-wrapper .shape.left {
        left: -2rem;
    }
    .solutions-wrapper .shape.right {
        right: -2rem;
    }
    .terms-condition .container {
        max-width: 80rem;
    }
}
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
    .gradient-shape {
        height: 70rem;
    }
    .subscription-plan .container {
        max-width: 1170px;
    }
}
@media screen and (min-width: 1400px) {
    .subscription-plan .container {
        max-width: 1380px;
    }
}