@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --primary-color: #ffc107;
    --secondary-color: #006877;
    --white-color: #FFFFFF;
    --third-color: #2f4858;
    --text-color: #434343;
    --text-color-2: #727272;
    --red-color: #ff0000;
    --blue-color: #4185F5;
    --green-color: #28A745;
    --box-shadow: 2px 2px 15px 0px rgba(58, 58, 58, 0.155);
    --box-shadow-2: 0px 0px 25px 1px rgba(75, 75, 75, 0.1);
    --box-shadow-3: 0px 0px 20px 1px rgba(75, 75, 75, 0.1);
    --box-shadow-4: 0px 2px 15px 1px rgba(58, 58, 58, 0.1);
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.1s ease-in;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}

.capitalize {
    text-transform: capitalize !important;
}

.my-font {
    font-variant: var(--my-font);
}

.title {
    font-size: 42px;
    font-weight: 300;
    line-height: 54px;
    font-family: var(--my-font);
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-style: italic;
}

.title span {
    font-style: normal;
}

/* ================================ 
Color section 
=================================== */
.text-color {
    color: var(--text-color-2);
}

.primary-color {
    color: var(--primary-color);
}

.second-color {
    color: var(--secondary-color);
}

.red-color {
    color: var(--red-color);
}

.green-color {
    color: var(--green-color);
}

.blue-color {
    color: var(--blue-color);
}


/* ================================ 
Button style
=================================== */
.btn1 {
    font-size: 14px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50vw;
    font-weight: 600;
    border: none;
    outline: none;
    min-width: 110px;
    background-color: var(--blue-color);
    color: var(--white-color);
    transition: all 0.25s ease-in-out;
}

.btn1:hover {
    background-color: var(--secondary-color);
}











/* ================================ 
Header section 
=================================== */
.navbar {
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e4e4e4;
}

.navbar-brand img {
    height: 36px;
}

.navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 8px 0 !important;
    margin: 0 1rem;
    color: #121212;
}

.navbar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    transition: all 0.25s ease-in-out;
    height: 2px;
    background-color: var(--secondary-color);
}

.navbar .nav-link:hover::before {
    width: 100%;
}

.navbar .nav-link:hover {
    color: var(--secondary-color);
}

@media all and (min-width:992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
        min-width: 22rem
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        min-width: 14rem;
        border-radius: 0;
        border: 0;
        box-shadow: -2px 3px 10px rgb(0 0 0 / .1)
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible
    }



    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: #4185F5;
        background-color: #fff0
    }

    .dropdown-toggle::after {
        margin-left: 8px
    }
}

.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #0000000f;
    animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

/* ================================ 
Hero section 
=================================== */
.hero {
    background: url('../images/banner/banner-bg.jpg') no-repeat center;
    background-size: cover;
    height: 93vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}
.hero .product-img {
        width: 550px;
    }

.hero h1 {
    font-size: 50px;
    font-weight: 300;
    line-height: 65px;
    margin-bottom: 1rem;
    font-style: italic;
    letter-spacing: 0.25px;
}

.hero h1 span {
    font-style: normal;
}

.hero .short-desc {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
    margin: 12px 0;
    color: #2B2B2B;
}

.leaf {
    position: absolute;
}

.leaf-1 {
    top: 4%;
    left: 25%;
}

.leaf-2 {
    top: 43%;
    left: 18%;
}

.leaf-3 {
    bottom: 0;
    left: 9%;
}

.leaf-4 {
    top: 5%;
    right: 4%;
}

.leaf-5 {
    top: 25%;
    right: 26%;
}

.leaf-6 {
    bottom: 14%;
    right: 17%;
}

.back-circle {
    bottom: 0;
}

/* ================================ 
About Section 
=================================== */
.about h2 {
    font-weight: 600;
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 20px;
}

.about img {
    filter: brightness(0.9);
}

.about i {
    font-size: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
    animation: shadow-pulse 1.5s ease-in-out infinite;
    line-height: 1;
    border-radius: 50%;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 35px rgba(255, 255, 255, 0);
    }
}





/* ================================ 
Maquee section 
=================================== */

.text-slider-section {
    background-color: #246a35;
    padding: 2.25rem 0;
    overflow-x: hidden;
}

.text-slider-section .slider-main {
    gap: 49px
}

.text-slider-section .slider-main .slider-item {
    white-space: nowrap;
    -webkit-animation: scroll2 18s linear infinite;
    animation: scroll2 25s linear infinite;
    gap: 49px
}

.text-slider-section .slider-item .marquee-title {
    color: var(--white-color);
    font-family: var(--my-font);
    font-size: 85px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
    align-items: center;
    display: flex;
    text-transform: uppercase;
}

.text-slider-section .slider-item .marquee-title img {
    margin-right: 55px;
}

.text-slider-section .slider-main:hover .slider-item {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes scroll2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(calc(-100% - 3rem));
        transform: translateX(calc(-100% - 3rem));
    }
}

@keyframes scroll2 {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(calc(-100% - 3rem));
        transform: translateX(calc(-100% - 3rem));
    }
}


/* ================================ 
Ingredient section 
=================================== */
.ingredient .in-img {
    width: 240px;
    border-radius: 10px;
}


/* ================================ 
Why choose us section 
=================================== */
.why-choose .inner-contain {
    padding: 30px;
    border-radius: 10px;
    background: var(--white-color);
    border: 1px solid #dadada;
}

.why-choose .inner-contain h6 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 0;
}


/* ============================== */
/* Footer Panel */
/* =============================== */
footer {
    padding-top: 3rem;
    background-color: #00122e;
    color: #eeeeee;
    position: relative;
    padding-bottom: 2.5rem;
}

footer ul li {
    margin-bottom: 10px;
}

footer h2 {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 10px;
}

footer h3 {
    font-size: 15.3vw;
    text-align: center;
    margin-bottom: 0;
    line-height: 1;
    opacity: 0.05;
    font-weight: 700;
    display: block;
    pointer-events: none;
    color: var(--white-color);
}

.top-border {
    border-top: 1px solid #454D59;
}

/* ==============================
 Inner Banner Section
=============================== */
.inner-banner {
    background: url('../images/banner/inner-banner.jpg') no-repeat center;
    background-size: cover;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* ==============================
Document Section
=============================== */
.document .inner-contain span {
    background-color: #009522;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 12px;
}


/* ==============================
Business Section
=============================== */
.business .inner-contain {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    background-color: #ade6bbb8;
    padding: 20px;
    transition: all 0.35s ease-in-out;
}

.business .inner-contain:hover {
    transform: translateY(-10px);
}

.business .inner-contain h3 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    line-height: 26px;
}

.business .row>div:nth-child(2) .inner-contain {
    background-color: #FFEFAE;
}

.business .row>div:nth-child(3) .inner-contain {
    background-color: #D1DFFF;
}

.business .row>div:nth-child(4) .inner-contain {
    background-color: #FFDCCB;
}

.business .row>div:nth-child(5) .inner-contain {
    background-color: #B0F0EA;
}

.business .row>div:nth-child(6) .inner-contain {
    background-color: #FFDDF3;
}

.business .row>div:nth-child(7) .inner-contain {
    background-color: #FFC3C3;
}

.business .row>div:nth-child(8) .inner-contain {
    background-color: #C6F4F0;
}

.business .row>div:nth-child(9) .inner-contain {
    background-color: #E4E7F7;
}



/* ==============================
Contact Section
=============================== */
.contact .wrap-div i {
    position: absolute;
    top: 50%;
    left: 10px;
    font-size: 18px;
    transform: translateY(-50%);
    color: #777;
}

.contact .wrap-div input {
    width: 100%;
    padding-left: 2.5rem;
    min-height: 48px;
}

.contact .wrap-div textarea {
    width: 100%;
    padding-left: 2.5rem;
    height: 100px;
    resize: none;
}

.contact .wrap-div-2 i {
    position: absolute;
    top: 20px;
}


.gen-info .icon-div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e3eeff;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: #4185F5;
}

/* ==============================
Plan Section
=============================== */
.plan {
    width: 100%;
    background: #f3f8ff;
    background-size: cover;
    background-attachment: fixed
}

.accordion-button {
    font-size: 18px;
    font-weight: 600
}

.accordion-item {
    margin-bottom: 12px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #ffe9a5;
    font-size: 18px;
    font-weight: 600;
    color: #121212
}

/* Login Panel */
/* ===================================== */
.loginPanel {
    padding: 40px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
}

.loginPanel h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--uprise-theme-color);
}

.loginPanel .form-control {
    font-size: 1.1rem;
}

.loginPanel .form-select {
    font-size: 1.05rem;
}

.loginPanel .form-control:focus,
.loginPanel .form-select:focus {
    box-shadow: none;
    border-color: var(--uprise-hover-color);
}

.loginPanel li {
    margin-bottom: 0.5rem;
    font-size: 15px;
    color: var(--uprise-font-color2);
}

#myModal .btn-close {
    position: absolute;
    right: -10px;
    top: -10px;
}




@media (max-width: 1540px) {
    footer h3 {
        font-size: 19.2vw;
    }

    .hero h1 {
        font-size: 46px;
        line-height: 60px;
    }

    .hero .yellow-2 {
        width: 30%;
    }

    .hero .big-green {
        width: 25%;
    }

    .hero .green-2 {
        width: 20%;
    }

    .hero .product-img {
        width: 26%;
    }

    .hero .big-yellow {
        width: 35%;
    }

    .leaf-5 {
        right: 17%;
    }

    .leaf-1 {
        left: 18%;
    }

    .text-slider-section .slider-item .marquee-title {
        font-size: 70px;
    }

    .text-slider-section {
        padding: 2rem 0;
    }
}

@media (max-width: 1366px) {
    .text-slider-section .slider-item .marquee-title {
        font-size: 40px;
    }

    .text-slider-section {
        padding: 1.5rem 0;
    }

    footer h3 {
        font-size: 18.7vw;
    }
}

@media (max-width: 991px) {
    .navbar {
        background-color: var(--white-color);
    }

    .hero {
        height: 70vh;
    }

    .navbar .nav-link::before {
        display: none;
    }

    .navbar .nav-link {
        padding: 10px 18px !important;
        font-size: 16px;
        display: block;
        margin: 0;
        border-bottom: 1px dashed #a8a8a8;
        border-width: 1px;
        color: #121212;
    }

    .navbar .nav-link:hover {
        color: var(--primary-color);
    }

    #offcanvasNavbar,
    #filter-offcanvas {
        width: 300px;
        height: 100vh;
        background-color: #fff
    }

    #offcanvasNavbar .button {
        display: inline-block;
        margin-top: 10px
    }

    .offcanvas-title img {
        height: 50px
    }

    .banner h2 {
        font-size: 38px;
        line-height: 54px
    }

    .offcanvas-title img {
        height: 30px
    }

    .offcanvas-header {
        background-color: #f4f4f4;
        padding-top: .75rem;
        padding-bottom: .75rem
    }

    .offcanvas-body {
        padding-left: 0 !important;
        padding-top: 8px;
        padding-right: 0 !important;
    }

    .my-mobile-menu li {
        font-size: 14px;
        padding: 8px 18px;
        position: relative;
        padding-left: 34px;
        border-bottom: 1px solid #ddd;
    }

    .my-mobile-menu li a {
        white-space: wrap;

    }

    .my-mobile-menu li a i {
        font-size: 7px;
        position: absolute;
        top: 13px;
        left: 6%;
        color: var(--primary-color);
    }

    .ingredient .in-img {
        width: 160px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 52px;
    }

    .leaf-1 {
        left: 8%;
    }

    .hero .big-yellow {
        width: 85%;
    }

    .hero .yellow-2 {
        width: 69%;
    }

    .hero .big-green {
        width: 55%;
    }

    .hero .green-2 {
        width: 40%;
    }

    .hero .product-img {
        width: 55%;
    }

    .leaf-1 {
        left: 0%;
    }

    .leaf-4 {
        top: 14%;
        right: 1%;
    }

    .hero h1 {
        margin-top: 2.5rem;
    }

    .loginPanel {
        padding: 25px;
    }

}

@media (max-width: 767px) {
    .ingredient .in-img {
        width: 245px;
    }

    body {
        font-size: 90%;
    }

    .why-choose .inner-contain h6 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 0;
    }

    footer h2 {
        font-size: 20px;
        line-height: 34px;
        margin: 18px 0;
    }

    footer h3 {
        font-size: 15.7vw;
    }

    .hero .leaf {
        display: none;
    }

    .hero .big-yellow {
        width: 85%;
    }

    .hero .yellow-2 {
        width: 69%;
    }

    .hero .big-green {
        width: 55%;
    }

    .hero .green-2 {
        width: 40%;
    }

    .hero .product-img {
        width: 55%;
    }

    .hero h1 {
        margin-top: 1rem;
    }

    .hero {
        height: 88vh;
    }

    .accordion-button {
        font-size: 16px;
    }

    .accordion-item {
        margin-bottom: 12px;
    }

    .accordion-button:not(.collapsed) {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 90%;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .about h2 {
        font-weight: 600;
        font-size: 24px;
        line-height: 38px;
        margin-bottom: 8px;
    }

    p {
        line-height: 24px;
    }

    .title {
        font-size: 32px;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
    }

    .title span {
        margin-left: 10px;
    }

    .ingredient .in-img {
        width: 220px;
    }

    .why-choose .inner-contain h6 {
        font-size: 16px;
        line-height: 28px;
    }

    .document .inner-contain span {
        font-size: 14px;
    }

    .business .inner-contain {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: 24px;
        line-height: 36px;
    }

    .hero {
        height: 68vh;
    }

    .ingredient .in-img {
        width: 190px;
    }
}

@media (max-width: 410px) {
    .hero h1 {
        font-size: 22px;
        line-height: 36px;
    }

    .hero {
        height: 88vh;
    }

    .ingredient .in-img {
        width: 175px;
    }
}