@font-face {
    font-family: proximo-nova;
    font-weight: 400;
    src: url(../fonts/Proxima-Nova-Reg.ttf);
}

@font-face {
    font-family: proximo-nova;
    font-weight: 500;
    src: url(../fonts/Proxima-Nova-Sbold.ttf);
}

@font-face {
    font-family: proximo-nova;
    font-weight: 300;
    src: url(../fonts/Proxima-Nova-Thin.ttf);
}

:root {
    --main_color: #f5f1e6;
    --sec_color: #FCF9F8;
    --ter_color: #66469c;
    --quat_color: #8e77b2;
    --fv-color: #7c63ab;

    --headings_font: "proximo-nova", serif;
    --body_font: "proximo-nova", sans-serif;

    --main_spacer: clamp(30px, 10vh, 90px);
    --small_spacer: clamp(30px, 6vh, 50px);

    --large_headingFS: clamp(40px, 19vh, 200px);
    --main_headingFS: clamp(30px, 5vw, 50px);
    --sec_headingFS: clamp(28px, 6vw, 40px);
    --ter_headingFS: clamp(24px, 5vw, 28px);
    --quat_headingFS: 18px;
    --body_text: 16px;
    --f-banner: 5rem;
}

@media only screen and (min-width: 1800px) {
    :root {
        --large_headingFS: 200px;
    }
}

@media only screen and (max-width: 992px) {
    :root {
        --large_headingFS: 100px;
    }
}

@media only screen and (max-width: 600px) {
    :root {
        --large_headingFS: 60px;
        --f-banner: 3rem;
    }
}



* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-moz-selection {
    color: var(--sec_color);
    background-color: #121212;
}

*::selection {
    color: var(--sec_color);
    background-color: #121212;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--body_bg, #fff);
    font-family: var(--body_font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-family: var(--headings_font);
}

h1 {
    font-size: var(--main_headingFS);
}

h2 {
    font-size: var(--sec_headingFS);
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
}

p {
    color: inherit;
    margin-bottom: .5rem;
}

.fn-1rem {
    font-size: 1.2rem;
}

strong {
    font-weight: 600;
}

.tet-color {
    color: var(--fv-color);
}

img,
video {
    width: 100%;
    height: auto;
    vertical-align: middle;
    object-fit: cover;
}

.f-banner {
    font-size: var(--f-banner);
}

/* Target the specific number input and hide the spin buttons */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox, you may need this additional CSS rule */
input[type="number"] {
    -moz-appearance: textfield;
}

button {
    border: none;
    outline: none;
    white-space: nowrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
}

button.accordion-button,
button.nav-link {
    white-space: normal;
}

button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.img_wrapper img,
.logo_wrapper img,
.blur-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img_wrapper img {
    object-fit: contain;
}


.txt-sm {
    font-size: 0.8rem;
}

.main-banner-txt {
    font-size: 5rem;
    overflow-y: hidden;
}

.main_btn {
    font-size: 1rem;
    padding: 0.2rem 1.2rem;
    border-radius: 50px;
    border: 2px solid var(--ter_color);
    color: var(--main_color);
    background-color: var(--ter_color);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.main_btn:hover {
    color: var(--ter_color);
    background-color: transparent;
}

.mask-img {
    mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 8%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}

.list-none {
    list-style: none;
}

header#site-header {
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: fixed;
    z-index: 8;
    top: 0;
    left: 0;
    right: 0;
}

header#site-header.visible {
    opacity: 1;
    transform: translateY(0);
}


header .logo_wrapper {
    max-width: 200px;
    transition: max-width 0.2s ease-out;
}

header .logo_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header.scrolled-h {
    background-color: #F8F4EB;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.scrolled-h .h-site {
    padding: 10px !important;
}

header.scrolled-h .logo_wrapper {
    max-width: 150px;
    transition: max-width 0.2s ease-in;
}

header .navbar-toggler {
    border: none;
    padding: 7px;
    border-radius: 50%;
    transition: background-color 0.3s ease-in;
}


header .navbar-toggler:hover {
    background-color: #66469c;
}

header .navbar-toggler:hover .bi-list {
    fill: white;
    transition: fill 0.3s ease-in;
}


.offcanvas {
    background-color: #f7f4f0;
}


.offcanvas .offcanvas-header .btn-close {
    font-size: 1.3rem !important;
}


.offcanvas .offcanvas-header .btn-close:focus {
    box-shadow: none;
    outline: none;
}


.offcanvas .offcanvas-header .logo_wrapper {
    max-width: 180px;
}


.offcanvas .offcanvas-body {
    overflow-y: hidden;
}


.offcanvas .offcanvas-body .list-none>li {
    position: relative;
    z-index: 4;
    width: fit-content;
}


.offcanvas .offcanvas-body .list-none>li>a {
    display: inline-block;
    padding: 8px 16px;
    position: relative;
    z-index: 6;
    font-size: 1.35rem;
    color: #000;
    text-decoration: none;
    opacity: 1;
}


.offcanvas .offcanvas-body .list-none>li>a .red-dot-circle {
    width: 30px;
    height: 30px;
    background-color: #66469c;
    border-radius: 50%;
    position: absolute;
    left: -7px;
    z-index: -1;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.offcanvas .offcanvas-body .list-none>li:hover .red-dot-circle {
    opacity: 1;
    transform: translateY(0px);
}


.offcanvas .offcanvas-body .list-none>li .sub-list {
    list-style: none;
    padding: 10px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-left: 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in;
}

.offcanvas .offcanvas-body .list-none li:hover .sub-list {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
}

.sub-list li a {
    font-size: 1rem;
}

.offcanvas .offcanvas-body .list-none li .sub-list li:hover {
    color: #66469c;
}


.offcanvas-body .c-apply {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 150px;
}

.offcanvas-body .bottle1 {
    position: absolute;
    bottom: 0px;
    right: 30px;
    max-width: 250px;
    transform: rotate(-7deg);
}

.offcanvas-body .stick-ksm {
    position: absolute;
    bottom: 100px;
    right: 50px;
    max-width: 200px;
    transform: rotate(-105deg);
    z-index: -1;

}

@media screen and (min-width:1900px) {
    .p-top {
        padding-top: 100px !important;
    }

    .sub-list li a {
        font-size: 1.5rem;
    }

    .offcanvas .offcanvas-body .list-none>li>a .red-dot-circle {
        top: 0px;
        width: 50px;
        height: 50px;
    }

    .offcanvas-body .stick-ksm {
        bottom: 200px;
        right: 100px;
        max-width: 250px;
    }

    .offcanvas-body .bottle1 {
        bottom: 20px;
        right: 50px;
        max-width: 250px;
    }

    .offcanvas-body .c-apply {
        max-width: 250px;
    }

    .offcanvas .offcanvas-body .list-none>li .sub-list {
        font-size: 1.8rem;
    }

    .offcanvas .offcanvas-body .list-none>li>a {
        font-size: 2.2rem;
    }
}

@media screen and (max-width:600px) {

    .offcanvas .offcanvas-body .list-none>li>a .red-dot-circle {
        top: 0px;
    }

    .offcanvas-body .stick-ksm {
        bottom: 50px;
        right: 10px;
        max-width: 100px;
    }

    .offcanvas-body .bottle1 {
        bottom: 0px;
        right: 10px;
        max-width: 80px;
    }

    .offcanvas-body .c-apply {
        max-width: 80px;
    }

    .offcanvas-body ul {
        line-height: 1;
    }

    .offcanvas .offcanvas-body .list-none>li>a {
        font-size: 1.2rem;
    }
}

.sub-list li {
    margin: 5px 0;
}

.sub-list hr {
    margin: 6px 0;
    border: none;
    border-top: 1px solid #ccc;
}

.offcanvas-body .red-header-dot {
    position: absolute;
    bottom: 200px;
    left: 100px;
    width: 100px;
    height: 100px;
    background-color: #66469c;
    border-radius: 50%;
}



header .navbar-toggler:hover {
    background-color: #66469c;
}

header .navbar-toggler:hover .bi-list {
    fill: white;
    transition: fill 0.3s ease-in;
}

.offcanvas.offcanvas-end .btn-close:focus {
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

header .nav-2 .red-dot {
    width: 30px;
    height: 30px;
}

header .nav-2 .red-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section {
    background: url(../images/bg-texture.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section .img_wrapper .main-logo {
    max-width: 300px;
    z-index: 2;
    position: relative;
}

.hero-section .img_wrapper::before,
.hero-section .img_wrapper .line-overlay {
    position: absolute;
    content: "";
    height: 2px;
    transform: rotate(50deg);
    background-color: #000;
    z-index: 2;
}

.hero-section .img_wrapper::before {
    width: 50%;
    top: 0%;
    left: 0%;
}

.hero-section .img_wrapper .line-overlay {
    width: 180%;
    top: 95%;
    left: -100px;
    background-color: #66469c;
}

.hero-section .img_wrapper .img-1,
.hero-section .img_wrapper .img-2,
.hero-section .img_wrapper .img-3 {
    position: absolute;
    height: auto;
}

.hero-section .img_wrapper .img-1 {
    max-width: 250px;
    top: -55px;
    left: 0%;
}

.hero-section .img_wrapper .img-2 {
    max-width: 120px;
    top: -20px;
    left: 80%;
}

.hero-section .img_wrapper .img-3 {
    max-width: 150px;
    top: 75%;
    left: 20%;
    z-index: 3;
}

.hero-section .img_wrapper .pop-bg {
    scale: 200;
    z-index: 4;
}

.hero-section .img_wrapper .pop-bg {
    width: 300px;
    height: 300px;
    background-color: #e2b983;
    border-radius: 50%;
    position: absolute;
}

.hero-section .hero-col-2 .stick5-header,
.hero-section .hero-col-2 .stick3-header {
    max-width: 150px;
    height: auto;
    position: absolute;
}

.hero-section .hero-col-2 .stick5-header {
    top: -65%;
    left: 50%;
}

.hero-section .hero-col-2 .stick3-header {
    bottom: -120%;
    right: 0%;
}

.hero-section .img_wrapper .dot-1 {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #66469c;
    border-radius: 50%;
    top: -35px;
    left: 25%;
}

.hero-section .img_wrapper .dot-2 {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #66469c;
    border-radius: 50%;
    bottom: -120px;
    left: 75%;
}

.hero-section .img_wrapper .dot-3 {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    bottom: -25%;
    left: 130%;
}

.icon_pc_wrapper {
    max-width: 60px;
    margin: 0 auto;
}

.section-2 .wrapper .cap-img,
.section-2 .wrapper .bottle-img {
    max-width: 200px;
    height: auto;
}

.section-2 .wrapper .stick-img {
    max-width: 50px;
    height: auto;
}


.bg-color-secondary {
    background-color: #F0ECE9;
}

.section-3 .blur-img {
    position: absolute;
    top: -110px;
    left: 0;
    max-width: 200px;
    object-fit: cover;
    height: auto;
}

.section-4 .img_wrapper {
    max-width: 450px;
    position: sticky;
    top: 80px;
}

.colr-red {
    color: #7760A6;
}

.img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav.nav-tabs.cTabs {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: none;
}

@media screen and (max-width:600px) {
    .nav.nav-tabs.cTabs {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.nav.nav-tabs.cTabs .nav-link {
    color: inherit;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--quat_color);
    background-color: #fff;
    border-radius: var(--bs-nav-tabs-border-radius);
}

.nav.nav-tabs.cTabs .nav-link.active {
    color: #fff;
    background-color: #66469c !important;
}

.nav.nav-tabs.cTabs .nav-link svg {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hoverBox .icon_wrapper img {
    filter: invert(-1);
}

.hoverBox.active .icon_wrapper img {
    filter: brightness(0) invert(1);
}

.section-4 .sec-pc-tabs .nav-tabs .nav-item .nav-link {
    background-color: #EBE7DC;
    border: none;
    border-radius: 0;
    display: inline-block;
    font-size: 0.8rem;
}

.section-4 .sec-pc-tabs .nav-tabs .nav-item .nav-link .icon_wrapper {
    max-width: 50px;
    width: 100%;
}

.h-screen {
    height: 100vh;
}

.section-pc-5 .brand-r {
    transform-origin: center;
    white-space: nowrap;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    transform: rotate(-90deg);
}

.section-pc-5 .brand-r h1 {
    font-size: 4.5rem;
    margin: 0;
    line-height: 1;
}

.section-pc-5 {
    background-color: #F0ECE9;
    position: relative;
}

.section-pc-5 .stick-1 {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    max-width: 100px;
    transform: translateY(-50%);
    z-index: 1;
}

.section-pc-5 .cream {
    position: absolute;
    top: -100px;
    right: 0;
    width: 100%;
    max-width: 50px;
}


.marquee-container {
    overflow: hidden;
    position: relative;
    min-height: 400px;
}


.marquee-wrapper-up-outside,
.marquee-wrapper-up-within {
    will-change: transform;
    z-index: 1;
}

.marquee-card {
    max-width: 460px;
    border-radius: 12px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee-card:hover {
    transform: scale(1.03);
}

.marquee-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.marquee-3 {
    height: 100vh;
}

#v-pills-tab a {
    padding: 7px 25px;
    z-index: 3;
    border: 1px solid #66469c;
    background-color: #66469c;
    color: white;
}


.section-pc-6 .certification_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.section-pc-6 .certification_wrapper {
    max-width: 200px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 25px;
    cursor: pointer;
}

.section-pc-6 .certification_wrapper .img_wrapper {
    max-width: 140px;
    transition: scale 0.3s ease-in;
    scale: 0.9;
}

.section-pc-6 .certification_wrapper .img_wrapper:hover {
    scale: 1;
}

.section-pc-6 .blur-2 {
    position: absolute;
    top: 60%;
    left: 0;
    max-width: 200px;
    transform: translateY(-50%);
}

/* --------- */

.ter_color {
    color: var(--fv-color);
}

.counterNumber {
    font-size: 6rem;
}

#backToTop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    font-size: 20px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--ter_color);
    color: white;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

#backToTop:active {
    transform: scale(0.95);
}

@media (max-width: 600px) {
    #backToTop {
        width: 40px;
        height: 40px;
        bottom: 25px;
        right: 25px;
    }
}

.pc-footer {
    background-color: #000;
}

.pc-footer .ft-div1 .img_wrapper,
.ft-div3 .img_wrapper {
    max-width: 200px;
}

.pc-footer .ft-div1 .img_wrapper img,
.ft-div3 .img_wrapper img,
.ft-div2 .logo_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-footer .ft-div2 .logo_wrapper {
    max-width: 250px;
    margin-bottom: 20px;
}

.pc-footer .ft-div2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.pc-footer .ft-div2 .nav-list {
    margin-top: 20px;
}

.pc-footer .ft-div2 .nav-list a {
    padding-inline: 10px;
}

.pc-footer .ft-div2 .address-content {
    display: flex;
    border-bottom: 1px solid white;
}

.pc-footer .ft-div2 .address-content .ind {
    width: 50%;
    text-align: end;
    padding: 30px;
}

.pc-footer .ft-div2 .address-content .line {
    width: 1px;
    height: 135px;
    background-color: white;
    margin: auto;
}

.pc-footer .ft-div2 .address-content .usa {
    width: 50%;
    padding: 30px;
}

.pc-footer .social-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    color: white;
}

.pc-footer .ft-last {
    margin-top: 20px;
    color: white;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: transparent;
    background-color: transparent;
    border-color: transparent;
}

.txt-sm {
    font-size: 0.8rem;
}


@media screen and (min-width:1800px) {

    .hero-section {
        padding-bottom: 200px !important;
    }

    .hero-section .img_wrapper .pop-bg {
        width: 500px;
        height: 500px;
    }

    .hero-section .img_wrapper .main-logo {
        max-width: 1200px;
    }

    .hero-section .img_wrapper .line-overlay {
        top: 90%;
        left: -180px;
    }

    .hero-section .img_wrapper .img-1 {
        max-width: 300px;
    }

    .hero-section .img_wrapper .img-2 {
        max-width: 180px;
    }

    .hero-section .img_wrapper .img-3 {
        max-width: 250px;
    }

    .section-2 {
        padding-bottom: 300px !important;
    }

    .section-3 {
        padding-bottom: 60px !important;
    }

    .section-3 .s3-row {
        padding-bottom: 50px !important;
    }

    .section-pc-3 .sec-3-div2 .img_wrapper img {
        width: 120%;
    }

    .section-4 {
        padding-bottom: 150px !important;
    }

    .section-pc-6 {
        padding-top: 100px !important;
        overflow: hidden;
    }
}

@media (max-width: 1200px) {

    .section-3 {
        padding-bottom: 80px !important;
    }

    .section-3 .sec-3-div2 {
        transform: translateY(50px);
    }

    .section-pc-6 .sec-6-main .certification_container {
        padding-inline: 0px !important;
        margin-inline: 10px !important;
    }

    .section-pc-6 .blur-2 {
        z-index: -1;
    }

    .h-screen {
        height: 50vh;
    }

    .marquee-3 {
        height: 50vh;
    }
}

@media screen and (min-width:768px) and (max-width:991px) {

    .section-3 {
        padding-bottom: 10px !important;
    }

    .section-3 .sec-3-div2 {
        transform: translateY(0px);
    }

    .section-pc-5 .brand-r {
        transform: rotate(0deg);
    }

    .section-pc-5 .brand-r h1 {
        font-size: 2.4rem;
    }

    .section-3 .blur-img {
        top: -100px;
        max-width: 180px;
    }

    .h-screen {
        height: 50vh;
    }

    .marquee-3 {
        height: 5vh;
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .hero-section .img_wrapper .main-logo {
        max-width: 230px;
    }

    .hero-section .img_wrapper .pop-bg {
        width: 230px;
        height: 230px;
    }

    .hero-section .img_wrapper .img-1 {
        max-width: 200px;
    }

    .hero-section .img_wrapper .img-2 {
        max-width: 100px;
    }

    .hero-section .img_wrapper .img-3 {
        max-width: 120px;
    }

    .hero-section .img_wrapper .line-overlay {
        top: 90%;
        left: -90px;
    }

    .hero-section .img_wrapper .dot-2 {
        bottom: -100px;
        left: 65%;
    }

    .hero-section .img_wrapper .dot-3 {
        left: 100%;
    }

    .section-2 .wrapper .cap-img,
    .section-2 .wrapper .bottle-img {
        max-width: 180px;
    }

    .section-3 .blur-img {
        max-width: 150px;
        top: -50px;
    }

    .section-3 .sec-3-div2 {
        transform: translateY(75px);
    }

    .section-4 .img_wrapper {
        max-width: 250px;
        position: relative;
        top: 0px;
    }

    .section-pc-5 .sec-5-div1 .subtabs2 {
        gap: 15px;
        font-size: 0.8rem;
    }

    .section-pc-5 .brand-r {
        transform: rotate(0deg);
    }

    .section-pc-5 .brand-r h1 {
        font-size: 30px;
    }

    .section-pc-5 .tab-pane {
        padding-top: 16px;
    }

    .h-screen {
        height: 70vh;
    }

    .section-pc-5 .stick-1 {
        z-index: -1;
    }

    .marquee-3 {
        height: 5vh;
        width: 100%;
    }

    #v-pills-tab button {
        font-size: 0.8rem;
    }

    .section-pc-6 .sec-6-main {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .section-pc-6 .sec-6-main .certification_container {
        padding: 20px 10px;
        z-index: 6;
        position: relative;
    }

    .section-pc-6 .sec-6-main .certification_container .certification_wrapper {
        max-width: 100px;
    }

    .pc-footer .ft-div2 .logo_wrapper {
        max-width: 180px;
    }

    .pc-footer .ft-div2 {
        align-items: flex-start;
    }

    .pc-footer .ft-last,
    .pc-footer .ft-div2 .nav-list {
        text-align: start;
    }

    .pc-footer .ft-div2 .nav-list a {
        padding-left: 0px;
    }

    .pc-footer .ft-last {
        margin: 0px;
    }

    .pc-footer .ft-div2 .address-content {
        flex-direction: column;
    }

    .pc-footer .ft-div2 .address-content .ind,
    .pc-footer .ft-div2 .address-content .usa {
        width: 100%;
        text-align: start;
        padding-block: 10px;
        padding-inline: 0px;
    }

    .pc-footer .ft-div2 .address-content .line {
        display: none;
    }

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

/*----- sustainability ------*/
.sustainability-main {
    background-color: #F5FEFA;
}

.sus-sec2 {
    position: relative;
    z-index: 2;
    margin-top: -100vh;
}

.sus-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #d4a265dc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.sus-circle .sus-circle-overlay {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: white;
    filter: blur(50px);
}


.sus-sec2 .video-wrapper-sus {
    max-width: 400px;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
}

.sus-sec3 .img-sustain-wrapper {
    max-width: 400px;
    min-height: 550px;
    height: 100%;
    background-color: #000;
    border-radius: 24px;
    overflow: hidden;
}

/* ------- hero-banner ------- */
.banner-inner {
    width: 100%;
}

.banner-inner svg {
    fill: #000000;
}

.bg-banner {
    background-color: #EFEFEF;
}

.bg-banner-2 {
    background-color: #faf3e1ba;
}

.banner-line {
    width: 100%;
    height: 2px;
    background-color: #66469c;
}


.noise-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: url("../images/noise.gif");
    background-position: 0 0;
    background-size: auto;
    z-index: 0;
}

.noise-bg-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: url("../images/noise-eff.gif");
    background-position: 0 0;
    background-size: auto;
    z-index: 0;
}


/* ------ what-is-ksm ------ */
.ksm-sec2-inner>h1,
.ksm-sec2-inner>h2,
.ksm-sec2-inner>h3 {
    color: #7f7f7fad;
}

.ksm-sec2 .img-wrapper-container {
    width: fit-content;
    position: relative;
}

.ksm-sec2 .img-wrapper-container .img-wrapper {
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.ksm-sec2 .img-wrapper-container .img-wrapper .color-fill {
    width: 150%;
    height: 100%;
    background-color: #66469c;
    position: absolute;
    transform: translateX(100%);
}

.ksm-sec2 .img-wrapper-container .img-wrapper-2 {
    width: 300px;
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    left: -150px;
    bottom: -50px;
    z-index: 2;
}

.ksm-sec2 .img-wrapper-container .img-wrapper-2 .color-fill-2 {
    width: 150%;
    height: 100%;
    background-color: #1c1c1c;
    position: absolute;
    transform: translateX(-100%);
}

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

.stat-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c1c1c;
}

.stat-box h2 svg {
    fill: #21da24;
}

.stat-box p {
    font-size: 1.1rem;
}


ul.custom-bullets {
    list-style: none;
    padding-left: 20px;
    position: relative;
}

ul.custom-bullets li {
    position: relative;
    padding-left: 20px;
}

ul.custom-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    border-radius: 50%;
    width: 7px;
    height: 7px;
    border: 1px solid #66469c;
    display: inline-block;
}


/* ______ why choose ksm ------- */
.why-ksm-swiper {
    overflow: hidden;
}

.why-ksm-swiper .ksm-sec2-inner {
    position: relative;
    z-index: 1;
}

.why-ksm-swiper .outer-swiper {
    margin-right: -40vw;
}

.why-ksm-swiper .swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

.why-ksm-swiper .swiper-slide {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.why-ksm-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-ksm-swiper .swiper-slide .svg-swiper {
    fill: #7c63ab;
}

.why-ksm-swiper .swiper-slide .img-Swiper {
    width: 100%;
    height: 100%;
}

.why-ksm-swiper .swiper-slide .swiper-col-inner {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: #EEE8E6;
    height: 100%;
    padding: 20px;
}

/* ________ beauty from outside ________ */

.banner-beauty .img-beauty-wrapper {
    max-width: 400px;
    position: relative;
    z-index: 2;
}

.banner-beauty .img-beauty-1 {
    position: absolute;
    bottom: -50px;
    left: 50%;
    z-index: 4;
    width: 550px;
    transform: translate(-50%);
}

.icon-beauty-wrapper .svg-wrapper svg {
    fill: #e2b983;
}

.icon-beauty-wrapper h6 {
    color: #333;
}

/* ----- learn ------ */

.learn-img-wrapper {
    max-width: 500px;
}

.pointer-box .content {
    font-size: 18px;
}

.pointer-box .content p {
    margin-bottom: 0px;
}

.img-learn-wrapper-2 {
    max-width: 350px;
}

.learn-slide {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    background-color: white;
}

.learn-slide .logo-slide {
    width: 60px;
}

/* --- products ----- */

.product-card {
    background: #e9e9e9;
    border-radius: 12px;
    padding: 30px 20px;
    position: relative;
    transition: 0.3s ease;
    overflow: hidden;
}

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

.product-img img {
    transition: 0.4s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-info {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
}


@media (max-width:768px) {
    .product-img img {
        width: 120px;
    }
}

/* --- contact-us --- */

.contact-section {
    background-color: #E6C8AE;
    padding: 80px 0;
    border-radius: 30px;
}

.contact-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title h2 {
    color: var(--fv-color);
}

.image-box img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    height: 100%;
}

.custom-input {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    width: 100%;
    margin-bottom: 20px;
}

.custom-input:focus {
    outline: none;
    box-shadow: none;
}

.custom-textarea {
    height: 140px;
    resize: none;
}

.submit-btn {
    background: var(--ter_color);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 500;
}

.submit-btn:hover {
    background-color: var(--fv-color);
}

@media (max-width: 991px) {
    .image-box {
        margin-bottom: 40px;
    }
}

/* --- certi --- */
#certifications {
    min-height: 100vh;
}

.certificateWrap {
    transform: translateY(-150px);
    opacity: 0;
    will-change: transform, opacity;
}

#certifications .fontText {
    font-size: 1.2rem;
}

.certi {
    width: 90px;
    height: 90px;
    padding: 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #F0ECE9;
    position: relative;
    display: flex;
    align-items: center;
    justify-self: center;
}

#certifications .scale-certi {
    scale: 1.1;
    box-shadow:
        0 0 2px 2px #FFD700,
        /* Small, sharp, bright glow */
        0 0 2px 2px #DAA520,
        /* Medium, softer gold */
        0 0 1px 2px #b8860b;
    border-radius: 50%;
}


/* --- hoverbox --- */


.product_cats {
    display: flex;
    gap: 15px;
}

.product_cats li {
    list-style: none;
}


@media screen and (max-width: 768px) {
    .product_cats {
        flex-wrap: wrap;
    }
    
     .ksm-sec2 .img-wrapper-container .img-wrapper-2{
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
     .why-ksm-swiper .outer-swiper {
        margin-right: 0vw;
    }
}

.hoverBox {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 10px 65px;
    border-radius: 7px;
}

.hoverBox::before,
.hoverBox::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    transform: scale(0);
    pointer-events: none;
    background-color: var(--quat_color);
    /* border-radius: 50%; */
    transition: transform .3s ease-in-out, border-radius .1s ease-in-out .2s;
}

.hoverBox::after {
    background-color: var(--ter_color);
}

.hoverBox.active {
    color: var(--sec_color);
}

.hoverBox.active::after,
.hoverBox:hover::before {
    transform: scale(1);
    /* border-radius: 0; */
}

.hoverBox .icon_wrapper img {
    filter: brightness(0);
    transition: filter .3s ease-in-out;
}

.certificates .icon_wrapper img {
    filter: brightness(0);
    transition: filter .3s ease-in-out;
}

.hoverBox.active .icon_wrapper img {
    filter: brightness(0) invert(1);
}


