:root {
    /** Site Color **/
    --color1: #160959;
    --color2: #F4B715;
    --accent: #F7F6FE;
    --black: #000000;
    --stroke: #EDEDED;
    --gray: #F7F7F7;
    --white: #FFFFFF;
    --accent_black: #111111;
    --SemiBold: "KalamehSemiBold";
    --Medium: "KalamehMedium";
    --Regular: "KalamehRegular";
    /** Main Color **/
    --green: lawngreen;
    --danger: #E9322A;
    --border: #DFE2F7;
    --gray1: #EDEEF4;
    --gray2: #767A8A;
    --gray3: #B6B8BE;
    --gray4: #CCCEDA;
    --gray5: #edeef44d;
    /** fonts **/
    --fs-8: 0.5rem;
    --fs-12: 0.75rem;
    --fs-16: 1rem;
    --fs-24: 1.5rem;
    --fs-32: 2rem;
    --fs-40: 2.5rem;
    --heading_h1_fontsize: 1.5rem;
}
@font-face {
    font-family: "KalamehSemiBold";
    font-style: normal;
    font-display: swap;
    src: url("../fonts/KalamehFaNum-SemiBold.woff2") format("woff2");
    font-weight: normal;
}
@font-face {
    font-family: "KalamehRegular";
    font-style: normal;
    font-display: swap;
    src: url("../fonts/KalamehFaNum-Regular.woff2") format("woff2");
    font-weight: normal;
}
@font-face {
    font-family: "KalamehMedium";
    font-style: normal;
    font-display: swap;
    src: url("../fonts/KalamehFaNum-Medium.woff2") format("woff2");
    font-weight: normal;
}
ul {
    padding: 0;
    list-style: none;
}
a {
    text-decoration: none !important;
    position: relative;
    color: var(--black);
    transition: 0.4s;
}
a:hover, a:focus {
    outline: none;
    color: var(--color1);
}
body {
    font-family: var(--Regular) !important;
    font-size: 14px;
    color: var(--black);
    line-height: 2;
    padding-top: 20px;
}
@media only screen and (max-width: 768px) {
    body {
        padding-top: 0px;
    }
}
main {
    min-height: 100vh;
}
video {
    width: 100%;
    border-radius: 1rem;
}
.text-center {
    text-align: center;
}
.title-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    justify-content: center;
    margin-bottom: clamp(24px, 3vw, 40px);
    padding-inline: 16px;
}
.s-title {
    font-family: var(--SemiBold);
    margin: 0;
    font-size: clamp(18px, 3vw, 24px);
    color: var(--black);
    line-height: 1.8;
}
.s-desc {
    font-size: clamp(12px, 2vw, 18px);
}
.s-space {
    margin-block: clamp(72px, 9vw, 128px);
}
.s-space:nth-child(1) {
    margin-top: 0;
}
.s-space:nth-last-child(1) {
    margin-bottom: 0;
}
.s-padding {
    padding-block: clamp(24px, 3vw, 40px);
    background: #F7F6FE;
}
.position-relative {
    position: relative;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.inner-page .content-inner-page {
    box-shadow: 0px 6px 20px -4px #0000001A;
    background: var(--white);
    border-radius: 20px;
    padding: clamp(24px, 3vw, 40px);
}
@media only screen and (min-width: 550px) {
    .container-medium {
        padding: 0;
    }
}
@media only screen and (min-width: 1400px) {
    .container-medium {
        max-width: 1400px;
    }
}
/** Arrow Swiper **/
.sw {
    position: relative;
}
/*.swiper-pagination {
    bottom: 0 !important;
    line-height: 1;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 0.5rem;
    transition: 0.4s;
    background: var(--color2);
}
.swiper-pagination-bullet-active {
    width: 32px;
}*/
.arrow-swiper {
    div {
        width: clamp(40px, 4vw, 48px);
        height: clamp(40px, 4vw, 48px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: #E8E6EE;
        border-radius: 16px;
        color: var(--color1);
        cursor: pointer;
        transition: 0.4s;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        font-size: 22px;
        &:hover {
            background: var(--color1);
            color: var(--white);
        }
    }
    .swiper-sw-next {
        left: calc(100% - 24px);
    }
    .swiper-sw-prev {
        right: calc(100% - 24px);
    }
}
.section-product .arrow-swiper {
    .swiper-sw-next {
        left: calc(100% - 32px);
    }
    .swiper-sw-prev {
        right: calc(100% - 32px);
    }
}
.swiper-button-disabled {
    opacity: 0.5;
    cursor: unset !important;
}
@media only screen and (max-width: 768px) {
    .sw-padding {
        padding-bottom: 70px !important;
    }
    .arrow-swiper {
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        display: flex;
        justify-content: space-between;
        width: 100px;
        div {
            position: relative;
            right: auto !important;
            left: auto !important;
            top: auto !important;
            transform: unset;
        }
    }
    .section-testimonial .arrow-swiper {
        bottom: 52px;
    }
}
@media only screen and (min-width: 992px) {
    .section-blog .arrow-swiper div {
        top: 100px;
        transform: unset;
    }
}
.sw--product {
    padding: 18px 12px !important;
}
.sw--testimonial {
    &:after,
    &:before {
        content: "";
        background: #F7F6FE;
        width: clamp(48px, 12vw, 210px);
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
        background: linear-gradient(-90deg, #F7F6FE, transparent);
    }
    &:after {
        left: 0;
        right: auto;
        background: linear-gradient(90deg, #F7F6FE, transparent);
    }
    .swiper-wrapper {
        padding-block: clamp(32px, 3vw, 40px);
        margin-bottom: 24px;
        .swiper-slide {
            transition: 0.4s;
        }
        .swiper-slide-next,
        .swiper-slide-prev {
            transform: scale(0.9);
            transition: 0.4s;
        }
    }
}
.sw--brand {
    &:after,
    &:before {
        content: "";
        background: #F7F6FE;
        width: clamp(70px, 12vw, 210px);
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
        background: linear-gradient(-90deg, #F7F6FE, transparent);
    }
    &:after {
        left: 0;
        right: auto;
        background: linear-gradient(90deg, #F7F6FE, transparent);
    }
    .swiper-wrapper {
        transition-timing-function: linear !important;
        .brand-item {
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}
/** Archive Blog **/
.blog-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 20px;
}
@media only screen and (min-width: 768px) {
    .blog-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 1100px) {
    .blog-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
.filter-wrapper {
    width: 100%;
    margin-bottom: 30px;
    .desktop-filters {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 26px;
        padding-inline: 16px;
        .desktop-sort {
            box-shadow: 0px 6px 20px -4px #0000001A;
            background: white;
            border-radius: 20px;
            padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 41px);
            display: flex;
            align-items: center;
            gap: clamp(12px, 2vw, 20px);
            span {
                font-size: clamp(12px, 2vw, 16px);
                font-family: var(--Medium);
                color: #68696E;
            }
            .sort-btn {
                font-size: clamp(12px, 2vw, 16px);
                font-family: var(--Medium);
                color: #020014;
                transition: 0.4s;
                &:hover,
                &.active {
                    color: var(--color2);
                }
            }
        }
    }
}
.dropdown-trigger {
    cursor: pointer;
    box-shadow: 0px 6px 20px -4px #0000001A;
    background: white;
    border-radius: clamp(12px, 2vw, 20px);
    padding: clamp(8px, 2vw, 16px) clamp(8px, 2vw, 20px);
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    min-width: clamp(140px, 20vw, 304px);
    border: 0;
    font-family: var(--Medium);
    font-size: clamp(10px, 1vw, 16px);
    color: var(--black);
    justify-content: space-between;
    transition: 0.4s;
    i {
        transition: 0.4s;
    }
    &.active i {
        transform: rotateX(180deg);
    }
}
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0px 6px 20px -4px #0000001A;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    border-radius: clamp(12px, 2vw, 20px);
    margin-top: 6px;
    padding: 12px clamp(16px, 2vw, 24px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    &.show {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
    }
    .dropdown-item {
        font-size: clamp(12px, 1vw, 16px);
        padding-bottom: 12px;
        cursor: pointer;
        border-bottom: 1px solid var(--accent);
        margin-bottom: 12px;
        transition: 0.4s;
        &:last-child {
            border-bottom: 0;
            padding-bottom: 0;
            margin-bottom: 0;
        }
        &.active,
        &:hover {
            color: var(--color2);
        }
    }
}
.mobile-filters {
    display: none;
}
.dropdown-container {
    position: relative;
    display: inline-block;
}
@media only screen and (max-width: 768px) {
    .desktop-sort,
    .desktop-filters {
        width: 100%;
    }
    .archive-blogs {
        .desktop-filters {
            display: none;
        }
        .mobile-filters {
            display: block;
            width: 100%;
            padding-inline: 32px;
            margin-bottom: 24px;
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
    }
}
/** Banner **/
.item-banner {
    display: flex;
    transition: 0.4s;
    border-radius: clamp(14px, 2vw, 28px);
}
.item-banner:hover {
    transform: translateY(-10px);
}
.item-banner img {
    width: 100%;
    height: auto;
}
/** Intro Page **/
.intro-body {
    min-height: clamp(120px, 14vw, 230px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
    .s-title {
        font-size: clamp(32px, 4vw, 48px);
    }
    &:before {
        content: "";
        z-index: -1;
        width: calc(100% + 8px);
        height: clamp(320px, 29vw, 490px);
        background: var(--accent);
        position: absolute;
        top: 0;
        right: -4px;
        border-radius: clamp(24px, 3vw, 40px);
        background-image: url(../img/pattern.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
}
.section-intro .intro-body:before {
    height: 100%;
}
@media only screen and (max-width: 768px) {
    /*.intro-body:not(.section-intro .intro-body) {
        padding-top: 0;
    }*/
}
/** Sidebar **/
.sidebar {
    position: sticky;
    top: 130px;
}
.banner-item {
    display: flex;
    border-radius: 1rem;
    transition: 0.4s;
    overflow: hidden;
    margin-top: 1rem;
}
.banner-item img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    transition: 0.4s;
}
.banner-item:hover img {
    transform: scale(1.08);
}
@media only screen and (max-width: 768px) {
    .sidebar {
        position: initial;
    }
    .banner-item {
        margin-top: 3rem;
    }
}
/** Page Numbers **/
.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
}
.page-numbers li a,
.page-numbers li span {
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    transition: 0.4s;
}
.page-numbers .prev,
.page-numbers .next {
    color: var(--color2);
}
.page-numbers li:hover a,
.page-numbers li .current {
    background: var(--color1);
    color: var(--white);
    transition: 0.4s;
}
.modular-content {
    border: 1px solid var(--border);
    padding: clamp(16px, 2vw, 24px);
    border-radius: 1.5rem;
}
.play-btn {
    width: clamp(64px, 10vw, 160px);
    height: clamp(64px, 10vw, 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.56px solid rgb(255 255 255 / 20%);
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background: rgb(255 255 255 / 8%);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1;
    color: white;
    cursor: pointer;
    &:before {
        content: "";
        position: absolute;
        background-image: url(../img/video-play.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        width: clamp(54px, 9vw, 144px);
        height: clamp(54px, 9vw, 144px);
        animation: rotate 8s linear infinite;
        transform-origin: center center;
    }
}
/** Section Gallery **/
.sw--gallery {
    .swiper-slide {
        transition: 0.4s;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }
    }
}
@media only screen and (min-width: 992px) {
    .section-gallery .arrow-swiper div {
        top: auto;
        bottom: 158px;
    }
    .sw--gallery .swiper-slide {
        transform: scale(0.8) !important;
        transform-origin: bottom;
    }
    .sw--gallery .swiper-slide-active {
        transform: scale(1) !important;
    }
}
/** Archive Product **/
.product-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 20px;
}
@media only screen and (min-width: 768px) {
    .product-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (min-width: 1100px) {
    .product-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (min-width: 1220px) {
    .product-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}
.product-category-wrapper {
    position: relative;
    margin-block: 24px;
}
.product-main-categories {
    display: flex;
    overflow: auto;
    width: 100%;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    .product-category-item {
        min-width: clamp(200px, 18vw, 305px);
        padding: clamp(12px, 2vw, 20px);
        border-radius: clamp(12px, 2vw, 20px);
        box-shadow: 0px 6px 20px -4px #0000001A;
        background: white;
        min-height: clamp(64px, 6vw, 100px);
        display: flex;
        align-items: center;
        transition: 0.4s;
        cursor: pointer;
        a {
            display: flex;
            align-items: center;
            font-size: clamp(14px, 2vw, 18px);
            font-family: var(--SemiBold);
            gap: 20px;
            transition: 0.4s;
            color: var(--black);
            span {
                width: clamp(40px, 4vw, 64px);
                height: clamp(40px, 4vw, 64px);
                flex: 0 0 clamp(40px, 4vw, 64px);
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 16px;
                transition: 0.4s;
                background: white;
                font-size: clamp(18px, 2vw, 26px);
            }
        }
        &:hover {
            background: var(--color1);
            a {
                color: white;
                span {
                    color: var(--color1);
                }
            }
        }
    }
}
.list-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    .search-item {
        display: flex;
        align-items: center;
        gap: 12px;
        background: white;
        box-shadow: 0px 6px 20px -4px #0000001A;
        border-radius: 20px;
        padding: 16px;
        transition: 0.4s;
        .img {
            width: 100px;
            height: 100px;
            flex: 0 0 100px;
            display: flex;
            border-radius: 12px;
            overflow: hidden;
        }
        &:hover {
            color: var(--color2);
        }
    }
}
.mobile-category-toggle {
    display: none;
}
@media only screen and (min-width: 1024px) {
    .product-main-categories {
        justify-content: center;
    }
}
@media only screen and (max-width: 768px) {
    .list-items {
        grid-template-columns: repeat(1, 1fr);
    }
    .mobile-category-toggle {
        width: 100%;
        font-size: 16px;
        padding: clamp(12px, 2vw, 20px);
        border-radius: clamp(12px, 2vw, 20px);
        box-shadow: 0px 6px 20px -4px #0000001A;
        background: white;
        min-height: clamp(64px, 6vw, 100px);
        display: flex;
        align-items: center;
        transition: 0.4s;
        cursor: pointer;
        font-family: var(--Medium);
        border: 0;
        &:before {
            content: "\e927";
            font-family: icomoon;
            position: absolute;
            left: 16px;
            font-size: 8px;
            top: 50%;
            transition: 0.8s;
            transform: translateY(-50%);
            transition: 0.6s;
        }
        &.active:before {
            transform: translateY(-50%) rotateX(180deg);
            transition: 0.6s;
        }
    }
    .product-main-categories {
        display: none;
        flex-direction: column;
        border: 1px solid #ddd;
        margin-top: 10px;
    }
    .product-main-categories.active {
        padding: clamp(12px, 2vw, 20px);
        border-radius: clamp(12px, 2vw, 20px);
        box-shadow: 0px 6px 20px -4px #0000001A;
        background: white;
        min-height: clamp(64px, 6vw, 100px);
        display: flex;
        align-items: center;
        transition: 0.6s;
        cursor: pointer;
        position: absolute;
        z-index: 2;
        gap: 10px;
        .product-category-item {
            min-width: auto;
            padding: 0;
            border-radius: 0;
            box-shadow: unset;
            background: white;
            min-height: 48px;
            display: flex;
            align-items: center;
            transition: 0.4s;
            cursor: pointer;
            justify-content: flex-start;
            width: 100%;
        }
    }
}
iframe #map-controls {
    display: none !important;
    opacity: 0 !important;
}