@charset "UTF-8";

/* ===============================
   Design Tokens
================================ */
:root {
    /* Colors */
    --c-white: #fff;
    --c-black: #000;
    --c-gray: #63666b;
    --c-gray-2: #777;
    --c-gray-3: #bababa;
    --c-green: #007A33;
    --c-green-2: #78BE21;
    --c-green-3: #0DA754;
    --c-green-title: #399000;
    --c-green-light: #97c53e;
    --c-orange: #F26522;
    --c-brown: #402A1A;
    --c-brown-2: #a3854b;
    --c-brown-dark: #271108;
    --c-blue: #009ca1;
    --c-red: #ff0000;
    --ci-orange:#f26b22;
    --c-overlay: rgba(0, 0, 0, .5);
    --ci-primary:var(--c-green-light);
    /* Brand gradients */
    --g-brand: linear-gradient(113deg, rgba(127, 190, 65, 1) 20%, rgba(181, 212, 113, 1) 100%);
    --g-brand-hover: linear-gradient(113deg, rgba(127, 190, 65, 1) 46%, rgba(181, 212, 113, 1) 100%);
    --g-green-cta: linear-gradient(113deg, rgba(13, 167, 84, 1) 0%, rgba(74, 191, 99, 1) 40%, rgba(117, 207, 110, 1) 100%);
    --g-green-80: linear-gradient(113deg, rgba(13, 167, 84, 1) 0%, rgba(117, 207, 110, 1) 100%);

    /* Typography */
    --font-base: "Open Sans", sans-serif;
    --font-title: "Montserrat", sans-serif;

    /* Layout / z-index */
    --z-header: 997;
    --z-overlay: 997;
    --z-mobile-nav: 998;
    --z-mobile-toggle: 999;
    --z-top-1: 2147483645;
    --z-top-2: 2147483644;
    --z-top-3: 2147483643;

    /* Sizes / radii */
    --radius-xs: 4px;
    --radius-sm: 20px;
    --radius-pill: 50px;

    /* Motion */
    --t-fast: .3s;
    --t-med: .5s;
}

/* ===============================
   Layer helpers
================================ */
.top-layer-1,
#delProgressOverlay {
    z-index: var(--z-top-1);
}

.top-layer-2 {
    z-index: var(--z-top-2);
}

.top-layer-3 {
    z-index: var(--z-top-3);
}

/* ===============================
   Buttons (Base + Variants)
================================ */
.btn-round {
    border-radius: var(--radius-pill);
    transition: var(--t-med);
    margin: 10px;
    padding: 5px 10px;
    border: 2px solid transparent;
    display: inline-block;
}

.button-round-green-1 {
    composes: btn-round;
    border-color: var(--c-green);
    color: var(--c-green);
    background: transparent;
}

.button-round-green-2 {
    composes: btn-round;
    border-color: var(--c-green-2);
    color: var(--c-green-2);
    background: transparent;
}

/* Confirm / Submit */
.button-round-confirm-1 {
    composes: btn-round;
    padding: 5px 15px;
    background: var(--g-brand);
    border-color: #7fbe41;
    color: #7fbe41;
}

.button-round-confirm-1:hover {
    background: var(--g-brand-hover);
    color: var(--c-white);
}

.button-round-submit-1 {
    composes: btn-round;
    padding: 5px 15px;
    background: var(--g-brand);
    border-color: #7fbe41;
    color: var(--c-white);
}

.button-round-submit-1:hover {
    background: var(--g-brand-hover);
    color: var(--c-white);
}

.button-round-confirm-2 {
    composes: btn-round;
    background: var(--c-green);
    color: var(--c-white);
}

.button-round-confirm-2:hover {
    background: var(--c-green-2);
}

/* Cancel */
.button-round-cancel-1,
.button-round-cancel-2 {
    composes: btn-round;
    background: #e96913;
    color: var(--c-white);
}

.button-round-cancel-1:hover,
.button-round-cancel-2:hover {
    background: #ff0000;
}

/* Disabled links */
a.disabled {
    pointer-events: none;
    opacity: .6;
    cursor: not-allowed;
}

/* Search button (kept visual the same) */
button.aai-search-btn {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    color: #c45696;
}

button.aai-search-btn:hover {
    color: #165fab;
}

.btn-ci-white {
    text-decoration: underline;
    color: var(--c-white);
}

.btn-ci-white:hover {
    font-weight: 500;
    text-decoration: underline;
    color: var(--c-white);
}

/* ===============================
   Form tweaks
================================ */
form select {
    font-size: 14px;
    border-radius: 0;
}

/* ===============================
   Base / Typography
================================ */
body {
    background: var(--c-white);
    color: var(--c-gray);
    font-family: var(--font-base);
    overflow-x: hidden;
}

.mywayFontMontserratNormal {
    font-family: var(--font-title);
    font-weight: 400;
    font-style: italic;
}

.mywayFontMontserratBold {
    font-family: var(--font-title);
    font-weight: 700;
}

.mywayFontMontserratBoldItalic {
    font-family: var(--font-title);
    font-weight: 700;
    font-style: italic;
}

.font-color-green-dark {
    color: var(--c-green);
}

.font-color-green {
    color: var(--c-gray);
}

.font-color-orange {
    color: var(--c-orange);
}

.font-color-green-light {
    color: var(--c-green-light);
}

.font-color-green-title {
    color: var(--c-green-title);
}

.font-color-gray {
    color: var(--c-gray);
}

.font-color-red {
    color: var(--c-red);
}

.font-color-blue {
    color: var(--c-blue);
}

.font-color-brown {
    color: var(--c-brown-2);
}

.font-color-brown-dark {
    color: var(--c-brown-dark);
}

.font-big {
    font-size: 1.6em;
}

ul.ccmxLiLang li a {
    color: var(--c-green);
}

ul.ccmxLiLang li a:hover {
    color: var(--c-green-2);
}

a {
    color: var(--c-white);
    transition: var(--t-med);
}

a:hover,
a:active,
a:focus {
    color: var(--c-gray);
    outline: 0;
    text-decoration: none;
}

p {
    margin: 0 0 30px;
    padding: 0;
}

.mytitle {
    color: var(--c-orange);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    font-weight: 400;
    margin: 0 0 20px;
    color: var(--c-brown);
}

/* Back to top */
.back-to-top {
    position: fixed;
    display: none;
    background: var(--g-brand);
    color: var(--c-white);
    padding: 2px 20px 8px;
    font-size: 16px;
    border-radius: 4px 4px 0 0;
    right: 15px;
    bottom: 0;
}

.back-to-top:focus,
.back-to-top:hover {
    background: var(--g-brand-hover);
    color: var(--c-gray);
}

/* ===============================
   Header
================================ */
#header {
    padding: 30px 0;
    /* height: 92px; */
    position: fixed;
    background-color: transparent;
    left: 0;
    top: 0;
    right: 0;
    transition: all var(--t-med);
    z-index: var(--z-header);
}

#header #logo {
    float: left;
}

#header #logo h1 {
    font-size: 36px;
    margin: -4px 0 0;
    line-height: 1;
    display: inline-block;
    font-family: var(--font-title);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: var(--c-white);
}

#header #logo img {
    padding: 0;
    margin: 0;
}

@media (max-width:768px) {
    #header #logo h1 {
        font-size: 28px;
        margin-top: 0;
    }

    #header #logo img {
        max-height: 40px;
    }
}

#header.header-fixed {
    background: var(--g-brand);
    padding: 20px 0;
    /* height: 72px; */
    transition: all var(--t-med);
    color: var(--c-white);
}

/* Product bullets in modal */
#ccmxModalProduct .modalContent ul {
    list-style: none;
    margin-left: -2rem;
}

#ccmxModalProduct .modalContent ul li {
    font-size: 13px;
    color: var(--c-black);
}

#ccmxModalProduct .modalContent ul li:before {
    content: '✓';
    color: var(--c-green-2);
    margin-right: 6px;
}

/* ===============================
   Modal Page Background helpers
================================ */
.modal-bg-pd-1 {
    width: 100%;
    background: url(/images/products/cocoway/Microsite_Cover_Cocoway100.png) center/cover repeat;
    overflow: auto;
}

.modal-bg-pd-2 {
    width: 100%;
    background: url(/images/products/cocoway/Microsite_Cover_cocoway_coconut_Roasted.png) center/cover no-repeat;
}

.modal-bg-pd-3 {
    width: 100%;
    background: url(/images/products/cocoway/Cover_cocoway_coconut_water.png) center/cover no-repeat;
    background-blend-mode: multiply;
    background-color: rgba(181, 212, 113, .4);
}

.modal-bg-pd-4 {
    width: 100%;
    background: url(/images/products/cocoway/Microsite_Cover_cocoway_Coconut-Milk-Drink.png) top/cover no-repeat;
}

.modal-bg-pd-story {
    width: 100%;
    background: url(/images/products/cocoway/Microsite_Cover_story.png) top/cover no-repeat fixed;
    background-blend-mode: multiply;
    background-color: rgba(181, 212, 113, .4);
}

/* ===============================
   Intro Section
================================ */
#intro {
    width: 100%;
    height: 100vh;
    background: url(/images/products/cocoway/Main-BG-Microsite-CocoWay-Rev2022.jpg) center/cover no-repeat;
    position: relative;
}

@media (min-width:1024px) {
    #intro {
        background-attachment: fixed;
    }
}

#intro .intro-text {
    position: absolute;
    left: 0;
    top: 60px;
    right: 0;
    height: calc(50% - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

#intro h2 {
    margin: 30px 0 10px;
    padding: 0 15px;
    font-size: 48px;
    font-weight: 400;
    line-height: 56px;
    color: var(--c-white);
}

@media (max-width:768px) {
    #intro h2 {
        font-size: 28px;
        line-height: 36px;
    }

    #intro {
        background: url(/images/products/cocoway/Microsite_Cover_Cocoway_mobile.png) center/cover no-repeat;
    }
}

#intro p {
    color: var(--c-white);
    margin-bottom: 20px;
    padding: 0 15px;
    font-size: 24px;
}

@media (max-width:768px) {
    #intro p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }
}

#intro .btn-get-started {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: var(--radius-pill);
    transition: var(--t-med);
    margin: 10px;
    border: 2px solid #7fbe41;
    color: #7fbe41;
    background: transparent;
}

#intro .btn-get-started:hover {
    background: var(--g-brand);
    color: var(--c-white);
    text-decoration: none;
}

/* Product screens */
#intro .product-screens {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    text-align: center;
    width: 100%;
    height: 50%;
}

#intro .product-screens .product-screen-1 {
    position: absolute;
    z-index: 30;
    left: calc(50% + 54px);
    bottom: 0;
    top: -10px;
}

#intro .product-screens .product-screen-2 {
    position: absolute;
    z-index: 20;
    left: calc(50% - 154px);
    bottom: 0;
    top: 40px;
}

#intro .product-screens .product-screen-3 {
    position: absolute;
    z-index: 10;
    left: calc(50% - 374px);
    bottom: 0;
    top: 110px;
}

@media (max-width:767px) {
    #intro .product-screens .product-screen-1 {
        position: static;
        padding-top: 30px;
    }

    #intro .product-screens .product-screen-2,
    #intro .product-screens .product-screen-3 {
        display: none;
    }
}

/* ===============================
   Navigation
================================ */
.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu>li {
    float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
    display: block;
    text-decoration: none;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* arrows */
.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* container */
#nav-menu-container {
    float: none;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-left: 385px;
}

@media (max-width:768px) {
    #nav-menu-container {
        display: none;
    }
}

/* links */
.nav-menu a {
    /* padding: 0 8px 10px; */
    text-decoration: none;
    display: inline-block;
    color: var(--ci-orange);
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 14px;
    outline: 0;
    transition: .5s;
    /* text-shadow: 2px 1px 2px rgba(117, 207, 110, 1); */
}
.scroll-logo + nav .nav-menu a{
    color: white;
   
}
.nav-menu>li {
    margin-left: 10px;
}

.nav-menu ul {
    margin: 4px 0 0;
    padding: 10px;
    box-shadow: 0 0 30px rgba(127, 137, 161, .25);
    background: var(--c-white);
}

.nav-menu ul li {
    transition: var(--t-fast);
}

.nav-menu ul li a {
    padding: 10px;
    color: var(--c-white);
    transition: var(--t-fast);
    display: block;
    font-size: 13px;
    text-transform: none;
}

.nav-menu ul li:hover>a {
    color: #1e5c28;
    text-decoration: none;
}

/* Mobile nav */
#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: var(--z-mobile-toggle);
    margin: 20px;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all .4s;
    outline: 0;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: var(--c-gray);
}

@media (max-width:768px) {
    #mobile-nav-toggle {
        display: inline;
    }
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: var(--z-mobile-nav);
    background: rgba(52, 59, 64, .9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: .4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: var(--c-white);
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: 0;
}

#mobile-nav ul li a:hover {
    color: var(--c-white);
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: var(--c-white);
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #1dc8cd;
}

#mobile-nav ul .menu-item-active {
    color: #1dc8cd;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: var(--z-overlay);
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(52, 59, 64, .9);
    display: none;
}

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: var(--c-white);
}

/* ===============================
   Sections / Headings
================================ */
.section-header .section-title {
    /* font-size: 32px; */
    /* color: #540e05; */
    text-align: center;
    /* font-weight: 400; */
}

.section-header .section-sub-title {
    /* font-size: 22px; */
    color: var(--c-green);
    text-align: left;
    /* font-weight: 400; */
}

.section-header .section-description {
    text-align: center;
    padding-bottom: 40px;
    color: var(--c-gray-2);
    font-style: italic;
}

.section-header .section-divider {
    display: block;
    width: 120px;
    height: 3px;
    background: var(--g-brand);
    margin: 0 auto 20px;
}

.section-bg {
    background: #eff5f5;
}

@media (max-width:768px) {
    h2 {
        font-size: 24px;
    }

    h4 {
        font-size: 18px;
    }

    .section-header .section-title {
        font-size: 22px;
        color: var(--c-orange);
    }

    .section-header .section-divider {
        width: 60px;
    }

    #call-to-action .cta-title {
        color: var(--c-white);
        font-size: 22px;
        font-weight: 700;
    }
}

/* ===============================
   About
================================ */
#about {
    padding: 60px 0;
    overflow: hidden;
}

#about .about-img {
    height: 410px;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}

#about .about-img img {
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
}

@media (max-width:768px) {
    #about .about-img {
        height: auto;
    }

    #about .about-img img {
        margin-left: 0;
        padding-bottom: 30px;
    }
}

#about .content .h2 {
    color: #333;
    font-weight: 300;
    font-size: 24px;
}

#about .content h3 {
    color: #777;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    font-style: italic;
}

#about .content p {
    line-height: 26px;
}

#about .content p:last-child {
    margin-bottom: 0;
}

#about .content i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--c-gray);
}

#about .content ul {
    list-style: none;
    padding: 0;
}

#about .content ul li {
    padding-bottom: 10px;
}

/* ===============================
   Features
================================ */
#features {
    background: var(--c-white);
    padding: 60px 0 0;
    overflow: hidden;
}

#features .features-img {
    text-align: center;
    padding-top: 20px;
}

#features .features-img img,
.features-img img {
    max-width: 100%;
    width: 100%;
}

@media (min-width:769px) {
    #features .features-img {
        padding-top: 120px;
        margin-top: -200px;
    }
}

#features .box {
    margin-bottom: 15px;
    text-align: center;
}

#features .icon {
    margin-bottom: 10px;
}

#features .icon i {
    color: #666;
    font-size: 40px;
    transition: var(--t-med);
}

#features .icon i:before {
    background: var(--g-brand);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#features .title {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 22px;
}

#features .title a {
    color: #111;
}

#features .description {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
}

#features .section-description {
    padding-bottom: 10px;
}

/* ===============================
   Advanced features
================================ */
#advanced-features {
    overflow: hidden;
}

#advanced-features ul {
    list-style: none;
    margin-left: -2rem;
}

#advanced-features .features-row {
    padding: 30px 0;
}

#advanced-features h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--c-black);
}

#advanced-features h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-style: italic;
    color: #999;
}

#advanced-features p {
    line-height: 24px;
    color: #777;
    margin-bottom: 30px;
}

#advanced-features .advanced-feature-img-right {
    max-width: 100%;
    float: right;
    padding: 0 0 30px 30px;
}

#advanced-features .advanced-feature-img-left {
    max-width: 100%;
    float: left;
    padding: 0 30px 30px 0;
}

@media (max-width:768px) {

    #advanced-features .advanced-feature-img-right,
    #advanced-features .advanced-feature-img-left {
        max-width: 50%;
    }
}

@media (max-width:767px) {

    #advanced-features .advanced-feature-img-right,
    #advanced-features .advanced-feature-img-left {
        max-width: 100%;
        float: none;
        padding: 0 0 30px;
    }
}

/* ===============================
   Call To Action
================================ */
#call-to-action {
    overflow: hidden;
    background: url(/images/products/cocoway/Microsite_Cover_BG.png) center/cover no-repeat;
    background-blend-mode: multiply;
    background-color: rgba(181, 212, 113, .5);
    background-attachment: fixed;
    padding: 80px 0;
}

#call-to-action .cta-title {
    color: var(--c-white);
    font-size: 28px;
    font-weight: 700;
}

#call-to-action .cta-text {
    color: var(--c-white);
}

@media (min-width:769px) {
    #call-to-action .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

@media (max-width:768px) {
    #call-to-action {
        background: url(/images/products/cocoway/Microsite_Cover_BG_mobile.png) center/auto no-repeat;
        background-blend-mode: multiply;
        background-color: rgba(181, 212, 113, .5);
        background-attachment: fixed;
    }
}

#call-to-action .cta-btn {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: var(--radius-sm);
    transition: background var(--t-med);
    margin: 10px;
    border: 2px solid var(--c-white);
    color: var(--c-white);
}

#call-to-action .cta-btn:hover {
    color: var(--c-white);
    text-transform: capitalize;
    background: var(--g-brand);
}

/* Team CTA */
#team .cta-btn {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 30px;
    border-radius: var(--radius-sm);
    transition: background var(--t-med);
    margin: 10px;
    border: 2px solid var(--c-orange);
    color: var(--c-orange);
}

#team .cta-btn:hover {
    text-transform: capitalize;
    color: var(--c-white);
    background: var(--g-green-cta);
    border-color: var(--c-orange);
}

/* ===============================
   More Features
================================ */
#more-features {
    padding: 60px 0;
    overflow: hidden;
}

#more-features .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(73, 78, 92, .15);
    background: var(--c-white);
    transition: .4s;
}

#more-features .icon {
    float: left;
}

#more-features .icon i {
    color: #666;
    font-size: 80px;
    transition: var(--t-med);
    line-height: 0;
}

#more-features .icon i:before {
    background: var(--g-green-80);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#more-features h4 {
    margin-left: 100px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#more-features h4 a {
    color: #111;
}

#more-features p {
    font-size: 14px;
    margin-left: 100px;
    margin-bottom: 0;
    line-height: 24px;
}

@media (max-width:767px) {
    #more-features .box {
        margin-bottom: 20px;
    }

    #more-features .icon {
        float: none;
        text-align: center;
        padding-bottom: 15px;
    }

    #more-features h4,
    #more-features p {
        margin-left: 0;
        text-align: center;
    }
}

/* ===============================
   Clients
================================ */
#clients {
    padding: 30px 0;
    background: var(--c-white);
    overflow: hidden;
}

#clients img {
    max-width: 100%;
    opacity: .5;
    transition: var(--t-fast);
    padding: 15px 0;
}

#clients img:hover {
    opacity: 1;
}

/* ===============================
   Catalog (pricing-like)
================================ */
#Catalog {
    padding: 60px 0;
    overflow: hidden;
}

#Catalog .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(73, 78, 92, .15);
    background: var(--c-white);
    text-align: center;
}

#Catalog h3 {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 28px;
}

#Catalog h4 {
    font-size: 1.4em;
    color: #540e05;
    font-weight: 300;
}

#Catalog h4 sup {
    font-size: 20px;
    top: -20px;
}

#Catalog h4 span {
    color: var(--c-gray-3);
    font-size: 20px;
}

#Catalog ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

#Catalog ul li {
    padding-bottom: 12px;
}

#advanced-features ul i,
#Catalog ul i {
    color: var(--c-gray);
    font-size: 18px;
    padding-right: 4px;
}

#Catalog .get-started-btn {
    background: #515e61;
    display: inline-block;
    padding: 6px 30px;
    border-radius: var(--radius-sm);
    color: var(--c-white);
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-title);
}

#Catalog .featured {
    border: 2px solid var(--c-gray);
}

#Catalog .featured .get-started-btn {
    background: var(--g-green-80);
}

/* ===============================
   FAQ
================================ */
#faq {
    padding: 60px 0;
    overflow: hidden;
}

#faq #faq-list {
    padding: 0;
    list-style: none;
}

#faq #faq-list li {
    border-bottom: 1px solid #ddd;
}

#faq #faq-list a {
    padding: 18px 0;
    display: block;
    position: relative;
    font-family: var(--font-title);
    font-size: 22px;
    line-height: 1;
    font-weight: 300;
    padding-right: 20px;
}

#faq #faq-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 16px;
}

#faq #faq-list p {
    margin-bottom: 20px;
}

@media (max-width:768px) {
    #faq #faq-list a {
        font-size: 18px;
    }

    #faq #faq-list i {
        top: 13px;
    }
}

#faq #faq-list a.collapse {
    color: #1dc8cd;
}

#faq #faq-list a.collapsed {
    color: var(--c-black);
}

#faq #faq-list a.collapsed i::before {
    content: "\f2c7" !important;
}

/* ===============================
   Team
================================ */
#team {
    padding: 60px 0;
    overflow: hidden;
}

#team .member {
    text-align: center;
    margin-bottom: 20px;
}

#team .member .pic {
    margin-bottom: 15px;
    overflow: hidden;
    height: 260px;
}

#team .member .pic img {
    max-width: 100%;
}

#team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

#team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

#team .member .social {
    margin-top: 15px;
}

#team .member .social a {
    color: #b3b3b3;
}

#team .member .social a:hover {
    color: #1dc8cd;
}

#team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/* ===============================
   Activity / Gallery
================================ */
#activity {
    background: var(--c-white);
    padding: 60px 0 0;
    overflow: hidden;
}

#activity .container-fluid {
    padding: 0;
}

#activity .gallery-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all .4s;
}

#activity .gallery-item {
    overflow: hidden;
    position: relative;
    padding: 0;
    vertical-align: middle;
    text-align: center;
}

#activity .gallery-item img {
    transition: all .4s;
    width: 100%;
}

#activity .gallery-item:hover img {
    transform: scale(1.1);
}

#activity .gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, .7);
}

#imgToMainSite {
    cursor: pointer;
    text-decoration: none;
}

/* ===============================
   Contact
================================ */
#contact {
    box-shadow: 0 0 12px rgba(0, 0, 0, .1);
    padding: 60px 0;
    overflow: hidden;
}

#contact .contact-about h3 {
    font-size: 36px;
    margin: 0 0 10px;
    line-height: 1;
    font-family: var(--font-title);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1dc8cd;
}

#contact .contact-about p {
    font-size: 14px;
    line-height: 24px;
    font-family: var(--font-title);
    color: #888;
}

#contact .social-links {
    padding-bottom: 20px;
}

#contact .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--g-brand);
    color: var(--c-white);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: var(--t-fast);
    border: 1px solid #7fbe41;
}

#contact .social-links a:hover {
    background: var(--g-brand-hover);
    color: var(--c-gray);
}

#contact .info {
    color: #333;
}

#contact .info i {
    font-size: 32px;
    color: var(--c-green-3);
    float: left;
    line-height: 1;
}

#contact .info p {
    padding: 0 0 10px 42px;
    line-height: 28px;
    font-size: 14px;
}

#contact .form #sendmessage {
    color: #1dc8cd;
    border: 1px solid #1dc8cd;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #errormessage {
    color: var(--c-red);
    display: none;
    border: 1px solid var(--c-red);
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
    display: block;
}

#contact .form .validation {
    color: var(--c-red);
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input,
#contact .form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

#contact .form button[type="submit"] {
    background: var(--g-brand);
    border: 0;
    border-radius: var(--radius-sm);
    padding: 8px 30px;
    color: var(--c-white);
}

#contact .form button[type="submit"]:hover {
    cursor: pointer;
    background: var(--g-brand-hover);
    border: 0;
}

/* ===============================
   Footer
================================ */
#footer {
    background: var(--c-white);
    box-shadow: 0 0 12px rgba(0, 0, 0, .1);
    padding: 10px 0;
    color: var(--c-black);
    font-size: 14px;
}

#footer .credits {
    font-size: 13px;
    color: var(--c-black);
}

#footer .footer-links a {
    color: var(--c-black);
    padding-left: 15px;
}

#footer .footer-links a:first-child {
    padding-left: 0;
}

#footer .footer-links a:hover {
    font-weight: 700;
    color: var(--c-gray);
}

/* ===============================
   Global overlay / loader
================================ */
#delProgressOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--c-overlay);
    margin: 0;
    padding: 0;
    bottom: 0;
}

#delProgressOverlay .delProgressContent {
    position: absolute;
    width: 150px;
    height: 150px;
    line-height: 150px;
    top: 50%;
    left: 50%;
    margin-left: -75px;
    margin-top: -75px;
}

@keyframes ldio-yl1xzrcuh3 {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.ldio-yl1xzrcuh3 div {
    position: absolute;
    width: 132px;
    height: 132px;
    border: 8px solid var(--c-white);
    border-top-color: transparent;
    border-radius: 50%;
}

.ldio-yl1xzrcuh3 div {
    animation: ldio-yl1xzrcuh3 .8474576271s linear infinite;
    top: 100px;
    left: 100px;
}

.loadingio-spinner-rolling-po7ap3h1gvc {
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
    background: none;
}

.ldio-yl1xzrcuh3 {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
}

.ldio-yl1xzrcuh3 div {
    box-sizing: content-box;
}

/* ===============================
   Utilities
================================ */
.clearall {
    clear: both;
    margin-bottom: 20px;
}

.clearspace {
    clear: both;
}

.marginbottom {
    margin-bottom: 160px;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.defaultspace {
    padding: 60px 0 0;
    overflow: hidden;
}

.linesplit {
    float: left;
}

@media (max-width:768px) {
    .linesplit {
        float: none;
        width: 60px;
        margin: 0 auto;
        text-align: center;
    }

    .alignleft {
        float: none;
        margin: 0 auto;
        text-align: center;
    }
}

.carousel-inner img {
    width: 100%;
    height: 100%;
}

.carousel-caption {
    margin-top: 20px;
    color: #333;
}

.coconut {
    width: 400px;
    max-width: 400px;
}

@media (max-width:768px) {
    .coconut {
        width: 220px;
        max-width: 220px;
        opacity: .5;
    }
}

/* Floating decorative images (unchanged positions) */
.float-image {
    cursor: pointer;
    display: block;
    float: right;
    z-index: 99999;
    position: absolute;
    right: 0;
    top: 1735px;
}

.float-image2 {
    cursor: pointer;
    display: block;
    float: right;
    z-index: 99;
    position: absolute;
    left: 0;
    top: 2676px;
    opacity: .7;
}

/* ===============================
   Cookie banner
================================ */
#aaiCookieWrapper {
    position: fixed;
    width: 96%;
    margin: 0 2%;
    bottom: 1rem;
    z-index: 111222;
    border-radius: 2rem;
}

.cookieContainer {
    position: absolute;
    width: 96%;
    max-width: 800px;
    margin: 0 2%;
    bottom: 1rem;
    padding: 0 1rem;
    z-index: 111222;
    border-radius: 2rem;
}

.bg-ci-blue-alpha-sm {
    background-color: rgba(22, 95, 171, .9);
}

#acceptCookie {
    color: var(--c-white);
    padding-left: 2rem;
    padding-right: 2rem;
}

#acceptCookie:hover {
    text-decoration: underline;
    color: var(--c-white);
    background-color: transparent;
}

#closeCookieWindow {
    color: var(--c-white);
}

#closeCookieWindow:hover {
    text-decoration: underline;
}

@media (max-width:600px) {
    .cookieContainer {
        padding: 0;
    }
}


.gallery-img {
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
}

#img_modal {
    backdrop-filter: blur(5px) opacity(.75);
}

#img_modal img {
    max-height: 80dvh;
    border-radius: 1rem;
    padding: .5rem;
    background: white;
}

#img_modal .modal-content {
    box-shadow: unset;
    background: transparent;
    border: 0;
}

#img_modal .close {
    position: absolute;
    left: 100%;
    transform: translate(-50%, -50%);
    background: white;
    opacity: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--ci-pink);
    transition: .5s;
    opacity: 1;
}

#modal-image {
    width: fit-content;
    margin: auto;
    position: relative;

}

#prevBtn,
#nextBtn {
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: var(--ci-pink);
    width: 2.5rem;
    height: 2.5rem;
    opacity: .75;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: .5s;

    &:hover {
        opacity: 1;
    }
}

.image-gallary .mg-item:hover {
    transform: scale(1.125);
    z-index: 2;
}

.mg-item {
    transition: .5s;
}

.image-gallary:has(.mg-item:hover) .mg-item:not(:hover) {
    opacity: .75;
}

#prevBtn {
    left: 5%;
    z-index: 5;
    @media (min-width:992px) {
        left: 0%;
    }
}

#nextBtn {
    left: 95%;
    z-index: 5;
    @media (min-width:992px) {
        left: 100%;
    }
}
#logo{
    &.scroll-logo img{
        filter: brightness(0) invert(1);
    }
    & img{
        transition: .5s;
    }
}