/* Playfair Display */
@font-face {
    font-family: 'PlayfairDisplay';
    font-weight: 400;
    src: url('../fonts/playfair-display/PlayfairDisplay-Regular.ttf');
}

@font-face {
    font-family: 'PlayfairDisplay';
    font-weight: 500;
    src: url('../fonts/playfair-display/PlayfairDisplay-Medium.ttf');
}

@font-face {
    font-family: 'PlayfairDisplay';
    font-weight: 600;
    src: url('../fonts/playfair-display/PlayfairDisplay-SemiBold.ttf');
}

@font-face {
    font-family: 'PlayfairDisplay';
    font-weight: 700;
    src: url('../fonts/playfair-display/PlayfairDisplay-Bold.ttf');
}

@font-face {
    font-family: 'PlayfairDisplay';
    font-weight: 800;
    src: url('../fonts/plus-jakarta-sans/PlusJakartaSans-ExtraBold.ttf');
}

/* Plus Jakarta */
@font-face {
    font-family: 'PlusJakartaSans';
    font-weight: 200;
    src: url('../fonts/plus-jakarta-sans/PlusJakartaSans-ExtraLight.ttf');
}

@font-face {
    font-family: 'PlusJakartaSans';
    font-weight: 300;
    src: url('../fonts/plus-jakarta-sans/PlusJakartaSans-Light.ttf');
}

@font-face {
    font-family: 'PlusJakartaSans';
    font-weight: 400;
    src: url('../fonts/plus-jakarta-sans/PlusJakartaSans-Regular.ttf');
}

@font-face {
    font-family: 'PlusJakartaSans';
    font-weight: 500;
    src: url('../fonts/plus-jakarta-sans/PlusJakartaSans-Medium.ttf');
}

@font-face {
    font-family: 'PlusJakartaSans';
    font-weight: 600;
    src: url('../fonts/plus-jakarta-sans/PlusJakartaSans-SemiBold.ttf');
}

@font-face {
    font-family: 'PlusJakartaSans';
    font-weight: 700;
    src: url('../fonts/plus-jakarta-sans/PlusJakartaSans-Bold.ttf');
}

@font-face {
    font-family: 'PlusJakartaSans';
    font-weight: 800;
    src: url('../fonts/plus-jakarta-sans/PlusJakartaSans-ExtraBold.ttf');
}

:root {
    --primary-color: #FDA4AF;
    --secondary-color: #5F5298;
    --tertiary-color: #FFFFFF;
    --primary-soft-color: rgba(244, 104, 169, 0.3);
    --secondary-soft-color: #5F52984D;

    --pink: #FDA4AF;
    --pink-pastel: #ECBDC4;
    --purple: #5F5298;
    --red: #DC2626;
    --yellow: #E3BA14;
    --white: #FFFFFF;
    --black: #333237;
    --grey: #828282;
    --grey-soft: #DDE5E9;
    --background: #FAF9FB;
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: 'PlusJakartaSans';
}

#product-category {
    padding: 40px 0px;
}

#homepage>*:not(nav, #slider, #product-category, #offCanvasProduct, .phpdebugbar, footer) {
    padding: 40px 0;
}

#product-category h1,
#product h1,
#solution h1,
#gallery-video h1,
#gallery-photo h1,
#testimonial h1,
#promo h1,
#about h1,
#blog h1,
#contact h1 {
    font-family: 'PlayfairDisplay';
    font-size: 28px;
    color: var(--primary-color);
    line-height: 42px;
}

#contact h2 {
    font-family: 'PlayfairDisplay';
    font-size: 24px;
    color: var(--primary-color);
    line-height: 42px;
}

#product-category p,
#product p,
#solution p,
#gallery-video p,
#gallery-photo p,
#testimonial p,
#promo p,
#about p,
#blog p,
#faq p,
#testimonial p,
#contact p,
#content p {
    font-size: 15px;
    color: var(--grey);
    line-height: 23px;
}

.object-fit-cover {
    object-fit: cover;
}

/* Components - Buttons */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: unset;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    opacity: 0.8;
}

.btn-primary span,
.btn-secondary span {
    color: var(--white) !important;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: unset;
    text-decoration: none;
    border: var(--secondary-color) 1px solid;
}

.btn-secondary:hover {
    background-color: var(--white);
    border: var(--secondary-color) 1px solid;
}

.btn-secondary:hover span,
.btn-secondary:hover {
    color: var(--secondary-color) !important;
}

.btn-secondary:hover img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(8%) saturate(3209%) hue-rotate(211deg) brightness(91%) contrast(91%);
}


.btn-secondary-outline {
    background-color: var(--white);
    color: var(--secondary-color);
    border: var(--secondary-color) 1px solid;
    text-decoration: none;
}

.btn-secondary-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    border: var(--secondary-color) 1px solid;
    text-decoration: none;
    box-shadow: 2px 6px 10px var(--secondary-soft-color);
}

.btn-light {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-light:hover {
    background-color: var(--secondary-color);
    border: var(--white) 1px solid;
    color: var(--white);
}

.btn-soft-primary {
    background-color: var(--primary-soft-color);
    color: var(--primary-color);
    border: unset;
    text-decoration: none;
}

.btn-soft-secondary {
    background-color: var(--secondary-soft-color);
    color: var(--secondary-color);
    border: unset;
    text-decoration: none;
}

.btn-soft-secondary:hover,
.btn-soft-secondary:active {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-soft-secondary:hover img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(313%) hue-rotate(276deg) brightness(114%) contrast(100%);
}

.btn-search {
    background-color: var(--secondary-color);
    border: unset;
    padding: 10px 15px;
    padding-bottom: 15px;
}

.cta-content a {
    border-radius: 10px;
    font-size: 14px;
    padding: 15px 30px;
}

.cta-section a {
    font-family: 'PlayfairDisplay';
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: var(--secondary-color);
}

.cta-section .icon img {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 10px;
}

/* Text */

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}


/* Pagination */
.pagination .btn-control-pagination {
    background-color: var(--background);
    color: var(--grey);
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
    margin-right: 10px;
}

.pagination .btn-pagination {
    background-color: var(--background);
    color: var(--grey);
    border-radius: 5px;
    padding: 5px 15px;
    text-decoration: none;
    margin-right: 10px;
}

.pagination .btn-pagination.active {
    background-color: var(--secondary-color) !important;
    color: var(--white) !important;
    border-radius: 5px;
    padding: 5px 15px;
}


/* Components - Tables */
table {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--grey-soft);
    border-collapse: separate;
    border-spacing: 0;
}

table th {
    background-color: var(--background) !important;
    color: var(--grey) !important;
    font-weight: 600 !important;
    padding: 20px !important;
}

table .th-search {
    padding: unset !important;
}

table td {
    background-color: var(--background) !important;
    color: var(--grey) !important;
    padding: 25px !important;
}

table td a {
    color: var(--grey) !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

table td img {
    max-height: 80px;
}

input:focus {
    border-color: unset !important;
    color: unset !important;
    outline: unset !important;
    box-shadow: unset !important;
    border: var(--secondary-color) 1px solid !important;
}

textarea:focus {
    border-color: unset !important;
    color: unset !important;
    outline: unset !important;
    border: var(--secondary-color) 1px solid !important;
    box-shadow: unset !important;
}

hr {
    border: 1px solid var(--grey-soft);
}

.horizontal-line {
    width: 80%;
    height: 1px;
    background-color: var(--grey-soft);
}

/* Filter Category */
#content .filter-category .nav-link {
    color: var(--grey);
}

#content .filter-category .nav-link.active,
#content .filter-category .nav-link:hover {
    color: var(--primary-color);
}

/* Components */
@media (min-width: 768px) {
    .discount-badge {
        position: absolute;
        top: -25px;
        right: -20px;
        background-color: var(--red);
        color: white;
        font-size: 14px;
        font-weight: bold;
        padding: 10px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: rotate(15deg);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 10;
        overflow: visible;
    }
}

@media (max-width: 767px) {
    .discount-badge {
        position: absolute;
        top: -25px;
        right: -5px;
        background-color: var(--red);
        color: white;
        font-size: 14px;
        font-weight: bold;
        padding: 10px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: rotate(15deg);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 10;
        overflow: visible;
    }
}

/* Component Offcanvas */
/* Offcanvas Product */
#offCanvasProduct h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 160%;
}

#offCanvasProduct .product-detail .image-container {
    border: var(--grey-soft) 1px solid;
    border-radius: 20px;
    padding: 50px;
}

#offCanvasProduct .product-detail h4 {
    font-family: 'PlayfairDisplay';
    font-size: 23px;
    font-weight: 600;
    line-height: 160%;
}

#offCanvasProduct .product-detail .price {
    font-family: 'PlusJakartaSans';
    font-size: 20px;
    font-weight: 600;
    line-height: 160%;
    color: var(--pink-pastel);
}

#offCanvasProduct .product-detail .normal-price-is-discount {
    color: var(--black);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-decoration: line-through var(--red) 2px;
}

#offCanvasProduct .marketplace-wrapper {
    width: 100%;
    background-color: var(--background);
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    padding: 30px 30px;
}

#offCanvasProduct .marketplace-wrapper p {
    font-size: 20px;
    color: var(--black);
    font-weight: 500;
}

#offCanvasProduct .marketplace-wrapper .marketplace-item {
    background-color: var(--white);
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
}

#offCanvasProduct .marketplace-wrapper .marketplace-item p {
    color: var(--grey);
    font-size: 16px;
    font-weight: 500;
}

#offCanvasProduct .marketplace-wrapper .marketplace-item .cta .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 5px;
}

#offCanvasProduct .marketplace-wrapper .marketplace-item .cta .btn img {
    rotate: 145deg;
}

/* Navbar Desktop */
nav {
    font-family: 'PlayfairDisplay';
    background-color: var(--white) !important;
    height: 80px;
}

nav .navbar-brand img {
    height: 45px;
}

nav .nav-link {
    color: var(--black) !important;
    font-weight: 400;
}

nav .nav-link.active,
nav .nav-link:hover {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar-toggler {
    background-color: unset;
    border: unset;
    line-height: unset;
}

/* START HOMEPAGE */
/* Slider */
#slider {
    margin-top: 80px;
}

#slider .item {
    position: relative;
    width: 100%;
    height: calc(100vh - 250px);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

#slider .item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#slider .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000066;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 45px;
    text-align: left;
}

#slider h4 {
    font-family: 'PlayfairDisplay';
    font-size: 38px;
    font-weight: 600;
    line-height: 60px;
    color: var(--white);
}

#slider p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--white);
}

#slider .container-custom-control {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

#slider .slider-prev,
#slider .slider-next {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border: unset;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

#slider .slider-prev {
    left: -60px;
}

#slider .slider-next {
    right: -60px;
}

#slider .container-custom-nav {
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.custom-nav-hero-slider {
    display: flex;
    align-items: center;
    top: 50%;
}

.custom-nav-hero-slider button {
    background-color: var(--white);
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    margin-right: 5px;
}

.custom-nav-hero-slider button.tns-nav-active {
    background-color: var(--secondary-color);
    width: 12px;
    height: 12px;
}

@media (min-width: 1400px) {
    #slider .container-custom-control {
        top: 50% !important;
        transform: translateY(-50%);
    }

    #slider .item {
        position: relative;
        width: 100%;
        height: calc(100vh - 320px);
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 1399px) {
    #slider .container-custom-control {
        top: 35% !important;
        transform: translateY(0);
    }
}

/* Product Category */
#product-category .item {
    position: relative;
    overflow: hidden;
}

#product-category .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#product-category .item .item-overlay h1 {
    font-family: 'PlayfairDisplay';
    font-size: 28px;
    font-weight: 600;
    line-height: 43px;
    color: var(--white);
}

#product-category .item.large .item-overlay h1 {
    font-size: 34px;
    line-height: 45px;
}

/* Gambar Besar (500x500) */
#product-category .item.large {
    height: 490px;
    width: 100%;
}

/* Gambar Tengah (240x490) */
#product-category .item.tall {
    height: 490px;
    width: 100%;
}

/* Gambar Kanan Atas & Bawah (366x230) */
#product-category .item.small {
    height: 100%;
    width: 100%;
}

#product-category .item .item-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
}

#product-category .item.large .item-overlay {
    top: 0;
    left: 40px;
    padding-bottom: 45px;
}

#product-category .item.tall .item-overlay {
    top: 0;
    left: 5px;
    padding-bottom: 45px;
}

#product-category .item.small .item-overlay {
    top: 0;
    left: 25px;
    padding-bottom: 15px;
}

#product-category .item.large .item-overlay .cta a {
    border-radius: 50px;
    padding: 10px 30px;
}

#product-category .item.tall .item-overlay .cta a {
    border-radius: 50px;
    padding: 10px 15px;
}

#product-category .item.small .item-overlay .cta a {
    border-radius: 50px;
    padding: 8px 15px;
}

@media (max-width: 768px) {

    #product-category .item.large .item-overlay,
    #product-category .item.tall .item-overlay,
    #product-category .item.small .item-overlay {
        left: 5px;
    }
}

/* product */
#product .item {
    background-color: var(--background);
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
    position: relative;
    overflow: visible;
}

#product .item h4 {
    font-family: 'PlayfairDisplay';
    font-weight: 600;
    font-size: 19px;
    line-height: 30px;
}

#product .item .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 17px;
    line-height: 26px;
}

#product .item .cta a {
    border-radius: 50px;
    padding: 10px 30px;
}

/* Solution */
#solution {
    padding-bottom: 100px !important;
}

#solution .item {
    position: relative;
}

@media (min-width: 992px) {
    #solution .item:last-child:not(.modal .item)::after {
        content: "";
        position: absolute;
        top: 10%;
        right: -22%;
        width: 1px;
        height: 110%;
        background-color: var(--grey-soft);
    }

    #solution .col-lg-2:nth-child(n+4) .item::after {
        display: none;
    }

    #solution .solution-row {
        position: relative;
        /* justify-content: center; */
    }

    #solution .solution-row::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--grey-soft);
        text-align: center;
    }

    #solution .col-lg-3 {
        position: relative;
        padding: 20px;
    }

    #solution .col-lg-3:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        height: 110%;
        width: 1px;
        background-color: var(--grey-soft)
    }

    #solution .solution-row::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--grey-soft);
        text-align: center;
    }

}

#solution .item h3 {
    font-family: 'PlayfairDisplay';
    font-size: 50px;
    font-weight: 500;
    line-height: 80px;
    color: var(--red);
}

#solution .item h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: var(--black);
    text-wrap: balance;
    overflow-wrap: break-word;
}

#solution .item .cta a {
    max-width: 100px;
    border-radius: 50px;
    padding: 8px 15px;
    justify-self: center;
}

/* Solution - Modal */
#solution .modal .modal-content {
    border-radius: 40px;
    overflow: hidden;
}

#solution .modal .modal-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 40px;
}

#solution .modal .product-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 60vh;
    padding-bottom: 50px;
}

#solution .modal .image-wrapper {
    position: relative;
    display: inline-block;
    text-align: center;
}

#solution .modal .image-wrapper img {
    display: block;
    width: 100%;
    border-radius: 20px;
    filter: brightness(70%);
}

#solution .modal .overlay-text {
    width: 100%;
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'PlayfairDisplay';
    font-weight: 600;
    font-size: 25px;
    line-height: 22px;
}

#solution .modal .normal-price-is-discount {
    color: var(--black);
    font-weight: 400;
    font-size: 14px;
    text-decoration: line-through var(--red) 2px;
}

#solution .modal .price {
    color: var(--primary-color);
    font-weight: 600;
}

#solution .modal-dialog-scrollable {
    overflow-y: hidden !important;
}

#solution .modal .item {
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
}

#solution .modal .content h4 {
    font-family: 'PlayfairDisplay';
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

#solution .modal .image-container {
    background-color: var(--background);
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
    height: auto;
    padding: 25px 10px;
}

#solution .modal .item .cta a {
    padding: 5px 15px;
    border-radius: 60px;
    width: fit-content;
    justify-self: end;
}

/* Gallery Video */
#gallery-video {
    background: var(--background);
}

/* video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  } */

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--secondary-color);
    color: white;
    font-size: 40px;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s ease;
}

.play-button:hover {
    background-color: #5c2da8;
}

.play-icon {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}

#gallery-video .swiper {
    width: 100%;
    height: fit-content;
    padding: 20px 0px 50px;
}

#gallery-video .swiper-slide {
    max-width: 240px !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    transition: 0.3s ease;
}

#gallery-video .swiper-slide-active {
    max-width: 300px !important;
}

#gallery-video .swiper-slide .video-wrapper {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 178%;
}

#gallery-video .swiper-slide .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: calc(50%);
    left: calc(50%);
    transform: translate(-50%, -50%);
    display: block;
}

/* #gallery-video .swiper-slide,
#gallery-video .swiper-slide video{
    position: relative;
    max-width: 260px !important;
    max-height: 360px !important;
    transition: width 0.3s ease, height 0.3s ease;
    margin-right: 30px !important;
}

#gallery-video .swiper-slide:last-child {
    margin-right: 0px !important;
}

#gallery-video .swiper-slide-active,
#gallery-video .swiper-slide-active video {
    width: 335px !important;
    max-height: unset !important;
    transition: width 0.3s ease, height 0.3s ease;
    margin-bottom: 100px;
}

#gallery-video .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 32, 32, 0.438);
    border-radius: inherit;
    transition: opacity 0.3s ease;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
}

#gallery-video .swiper-slide-active::after {
    opacity: 0;
}

#gallery-video .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    user-select: none;
    z-index: 2;
} */

#gallery-video .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin-top: 150px !important;

}

#gallery-video .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

#gallery-video .swiper-pagination-bullet-active {
    width: 42px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 5px;
    transition: opacity 0.3s ease-in-out;
}

#gallery-video .product .item {
    border: var(--grey-soft) 1px solid;
    background-color: var(--white);
    border-radius: 10px;
}

#gallery-video .product .content h4 {
    font-family: 'PlayfairDisplay';
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

#gallery-video .product .content p {
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

#gallery-video .product .image-container {
    background-color: var(--background);
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
    height: auto;
    padding: 15px 10px;
}

#gallery-video .product .item:hover {
    border: var(--pink-pastel) 1px solid;
}

#gallery-video .product .item .cta a {
    padding: 5px 15px;
    border-radius: 60px;
    width: fit-content;
    justify-self: end;
}

/* Gallery Photo */
#gallery-photo .item {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 100%;
    border-radius: 10px;
}

#gallery-photo .item a img {
    border-radius: 10px;
    border: var(--grey-soft) 1px solid;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: calc(50%);
    left: calc(50%);
    transform: translate(-50%, -50%);
    display: block;
}

#gallery-photo .item a:focus-visible {
    outline: unset !important;
}

/* Testimonial */
#testimonial .slider {
    min-height: 100% !important;
}

#testimonial .item {
    background-color: var(--background);
    border-radius: 10px;
    min-height: 285px;
}

#testimonial .item h4 {
    font-family: 'PlayfairDisplay';
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
}

#testimonial .item img {
    width: 27px;
    height: 27px;
}

#testimonial .container-custom-control {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    height: auto;
}

#testimonial .testimonial-prev,
#testimonial .testimonial-next {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border: unset;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transform: translateY(-50%);
}

#testimonial .testimonial-prev {
    left: -15px;
}

#testimonial .testimonial-next {
    right: -15px;
}

/* Promo */
#promo .splide {
    overflow: hidden;
}

#promo .splide__track {
    position: relative;
    overflow: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#promo .splide__track::-webkit-scrollbar {
    display: none;
}

#promo .item {
    max-width: 520px;
    background-color: var(--pink-pastel);
    color: var(--white);
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
    position: relative;
    overflow: visible;
    margin: 0;
    padding: 0;
}

#promo .item h4 {
    font-family: 'PlayfairDisplay';
    font-weight: 600;
    font-size: 23px;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

#promo .item p {
    font-size: 14px;
    line-height: 160%;
    font-weight: 400;
    color: var(--white);
}

#promo .item .cta a {
    font-weight: 600;
    color: var(--white);
}

/* About */
#about .content {
    background-color: var(--background);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#about .image-content {
    position: absolute;
    left: 52%;
}

#about .image-content img {
    width: 400px;
    height: 350px;
    border-radius: 20px;
}

/* Blog */
#blog .item {
    background-color: var(--white);
    border: var(--grey-soft) 1px solid;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
}

#blog .item:hover {
    background-color: var(--background);
}

#blog .item .image-container {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 56.25%;
}

#blog .item .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: calc(50%);
    left: calc(50%);
    transform: translate(-50%, -50%);
    display: block;
    max-height: none;
    max-width: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#blog .item h4 {
    font-family: 'PlayfairDisplay';
    font-size: 19px;
    font-weight: 600;
    color: var(--black);
    line-height: 28px;
    max-width: 274px;
    margin-bottom: 10px;
}

#blog .item p {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey);
    line-height: 23.6px;
}

#blog .btn-secondary,
#blog .btn-secondary-outline,
#blog .btn-secondary:hover,
#blog .btn-secondary-outline:hover {
    border-radius: 10px;
    padding: 15px 30px;
}

#blog .btn-detail {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    padding: 10px 10px 15px;
}

#blog .btn-detail img {
    rotate: -45deg;
}



/* Footer */
footer {
    background-color: var(--pink-pastel);
    color: var(--white);
}

footer .img-container {
    background-color: var(--white);
    width: fit-content;
    padding: 20px 20px;
}

footer img {
    width: 160px;
    height: auto;
}

footer p {
    font-size: 16px;
    line-height: 26px;
}

footer h4 {
    font-family: 'PlayfairDisplay';
    font-size: 20px;
    font-weight: 600;
}

footer li {
    list-style: none;
    padding-bottom: 12px;

}

footer li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
}

footer li a:hover {
    text-decoration: none;
    color: var(--white);
}

/* Header Detail Page */
#header {
    top: 80px;
    border-bottom-right-radius: 90px;
    border-bottom-left-radius: 90px;
    background-color: var(--primary-color);
    padding: 40px 0;
    overflow: hidden;
    margin-bottom: 100px;
}

#header .overlay {
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 1;
}

#header h1 {
    font-family: 'PlayfairDisplay';
    color: var(--white);
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    text-wrap: balance;
    overflow-wrap: break-word;
}

@media (max-width: 992px) {
    #header {
        border-bottom-right-radius: 40px;
        border-bottom-left-radius: 40px;
        padding: 20px 0;
        margin-bottom: 50px;
    }

    #header img {
        background-size: cover;
    }

    #header h1 {
        font-size: 19px;
        line-height: 160%;
    }
}

/* END HOMEPAGE */

/* START PAGE CONTENT | DESKTOP */
#content {
    /* min-height: 75vh; */
    background-color: var(--white);
    color: var(--black);
    font-family: 'PlusJakartaSans';
}

#content h1 {
    font-family: 'PlayfairDisplay';
    font-size: 28px;
    color: var(--primary-color);
    line-height: 42px;
}

/* About Page */
#about img {
    border-radius: 20px;
}

#about h3 {
    font-family: 'PlayfairDisplay';
    font-size: 36px;
    color: var(--black);
    line-height: 100%;
}

#about .cta a {
    padding: 15px 30px;
    border-radius: 10px;
    color: var(--white);
}

/* Solution Page */
#content #product-recommendation .item {
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
}

#content #product-recommendation .item:hover {
    border: var(--pink-pastel) 1px solid;
}

#content #product-recommendation .image-wrapper {
    width: fit-content;
    position: relative;
    display: inline-block;
    text-align: center;
}

#content #product-recommendation .image-wrapper img {
    display: block;
    width: 100%;
    border-radius: 20px;
    filter: brightness(70%);
}

#content #product-recommendation .overlay-text {
    width: 100%;
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'PlayfairDisplay';
    font-weight: 600;
    font-size: 25px;
    line-height: 22px;
}

#content #product-recommendation .item-content h4 {
    font-family: 'PlayfairDisplay';
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

#content #product-recommendation .price {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

#content #product-recommendation .image-container {
    background-color: var(--background);
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
    height: auto;
    padding: 25px 10px;
}

#content #product-recommendation .item-cta {
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 60px;
    width: fit-content;
    justify-self: end;
}

#content #product-recommendation .item-cta:hover {
    background-color: var(--white);
    border: var(--secondary-color) 1px solid;
}

#content #product-recommendation .item-cta:hover span,
#content #product-recommendation .item-cta:hover {
    color: var(--secondary-color) !important;
}

#content #product-recommendation .item-cta:hover img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(8%) saturate(3209%) hue-rotate(211deg) brightness(91%) contrast(91%);
}

#content #product-recommendation .product-wrapper {
    flex-grow: 1;
    overflow: hidden;
}

/* All Product Page */
#content #product {
    padding: 0 !important;
}

#content .product-all #filter p {
    color: var(--grey);
    font-size: 17px;
    font-weight: 600;
    padding: 5px 10px;
}

#content .product-all #filter select {
    background-color: var(--background);
    border: var(--grey-soft) 1px solid;
    color: var(--grey);
    padding: 8px 20px;
}

#content .product-all #filter input {
    background-color: var(--white);
    border: var(--grey-soft) 1px solid;
    color: var(--grey);
    padding: 8px 20px;
}

#content .product-all #filter .input-group-text {
    background-color: var(--white) !important;
}

#content .product-all #filter .input-group-text i {
    color: var(--grey);
}

#content .product-all #category-product-tab {
    overflow-x: auto;
    white-space: nowrap;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

#content .product-all #category-product-tab::-webkit-scrollbar {
    display: none;
}

#content .product-all #category-product-tab ul {
    display: flex;
    flex-wrap: nowrap;
    padding-right: 20px;
}

#content .product-all #category-product-tab ul li:last-child {
    padding-right: 20px;
}

#content .product-all #category-product-tab .nav-link {
    background-color: var(--background);
    border: var(--grey-soft) 1px solid;
    border-radius: 50px;
    color: var(--grey) !important;
}

#content .product-all #category-product-tab .nav-link:hover {
    background-color: var(--secondary-soft-color);
    color: var(--secondary-color) !important;
    border: var(--secondary-color) 1px solid;
}

#content .product-all #category-product-tab .nav-link.active {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    border-radius: 50px;
}

#content .product-all #category-product-tab .nav-link.active p {
    color: var(--white);
}

#content .product-all #category-product-tab .nav-link p {
    margin-bottom: 0;
}

#content .product-all #category-product-tab .item {
    background-color: var(--background);
    border: var(--grey-soft) 1px solid;
    border-radius: 50px;
    padding: 10px 20px;
}

#content .product-all #category-product-tab .item.active {
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 20px;
}

#content .product-all #category-product-tab .item.active p {
    color: var(--white);
}

#content .product-all #category-product-tab .item p {
    margin-bottom: 0;
}

#content .product-all .item {
    background-color: var(--background);
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
    position: relative;
    overflow: visible;
}

#content .product-all .item h4 {
    font-family: 'PlayfairDisplay';
    font-weight: 600;
    font-size: 19px;
    line-height: 30px;
}

#content .product-all .item .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 17px;
    line-height: 26px;
}

#content .product-all .item .cta a {
    border-radius: 50px;
    padding: 10px 30px;
}

/* All Gallery */
#content .gallery-all .image-ratio {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 100%;
    border-radius: 10px;
}

#content .gallery-all a img {
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: calc(50%);
    left: calc(50%);
    transform: translate(-50%, -50%);
    display: block;
}

#content .gallery-all video:focus-visible {
    outline: unset !important;
}

#content .gallery-all .video-ratio {
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 178%;
}

#content .gallery-all .video-ratio video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: calc(50%);
    left: calc(50%);
    transform: translate(-50%, -50%);
    display: block;
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
}

#content .gallery-all .video-ratio iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

#content .gallery-all a img:focus-visible {
    outline: unset !important;
}

/* All Blog */
#content .blog-all {
    padding-top: 0 !important;
}

#content .blog-all .btn-detail {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50px;
    padding: 10px 10px 15px;
}

#content .blog-all .btn-detail img {
    rotate: -45deg;
}

#content .blog-all h4 {
    font-size: 17px !important;
}

#content .blog-all p {
    font-size: 14px !important;
    line-height: 21px;
}

/* All Affiliator */
#content .affiliator-all .item {
    background-color: var(--background);
    border-radius: 30px;
    overflow: visible;
}

#content .affiliator-all .item .photo-affiliator {
    width: 50%;
    border-radius: 15px;
}

#content .affiliator-all .item #username {
    font-size: 20px;
    font-family: 'PlayfairDisplay';
    font-weight: 600;
    color: var(--black);
}




/* Career Page */
#career img {
    border-radius: 20px;
}

#career h1 {
    font-family: 'PlayfairDisplay';
    font-size: 28px;
    color: var(--black);
    text-wrap: balance;
}

.career-similar h1 {
    color: var(--primary-color) !important;
}

#career p {
    color: var(--grey);
}

#career .item {
    border-radius: 10px;
}

#career .item h4 {
    font-family: 'PlayFairDisplay';
    color: var(--white);
}

#career .item p {
    color: var(--white);
}

#career .cta a {
    padding: 10px 50px;
    border-radius: 50px;
}

/* Catalog Page */
#e-catalogue h1 {
    font-family: 'PlayfairDisplay';
    font-size: 28px;
    font-weight: 600;
    line-height: 48px;
}

#e-catalogue p {
    font-weight: 500;
}

#e-catalogue .pdf-container {
    height: 450px;
    border-radius: 15px;
}

#e-catalogue .pdf-container iframe {
    width: 100%;
    height: 100%;
    border: var(--grey-soft) 1px solid;
}

#e-catalogue .btn-secondary {
    border-radius: 10px;
    padding: 15px 30px;
}

#e-catalogue .btn-contact {
    background-color: var(--background);
    border-radius: 10px;
    border: var(--grey-soft) 1px solid;
    padding: 15px 30px;
    color: var(--secondary-color);
    font-weight: 500;
}

#e-catalogue .btn-contact:hover {
    border: var(--secondary-color) 1px solid;
    box-shadow: 2px 6px 10px var(--secondary-soft-color);
}

/* FAQ Page */
#faq .border-bottom {
    border-bottom: 1px solid var(--grey-soft) !important;
    margin-bottom: 40px;
}

#faq .border-bottom:last-child {
    border-bottom: unset !important;
    margin-bottom: unset !important;
}

#faq .item .item-icon {
    font-family: 'PlayfairDisplay';
    font-size: 38px;
    font-weight: 400;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    padding: 10px 22px 15px;
}

#faq .item h4 {
    font-family: 'PlayfairDisplay';
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    line-height: 36px;
}

/* Contact Page */
#content .contact .item h4 {
    font-family: 'PlayfairDisplay';
    font-size: 18px;
    font-weight: 600;
    line-height: 34px;
    color: var(--black);
}

#content .contact .item p {
    font-size: 15px;
    font-weight: 500;
    line-height: 27px;
    color: var(--grey);
}

#content .contact .iframe-container,
#content .contact .iframe-container iframe {
    width: 100%;
    height: 550px;
    border-radius: 30px;
}

#content .contact .marketplace-item p {
    font-size: 20px;
    color: var(--black);
    font-weight: 500;
}

#content .contact .marketplace-item {
    background-color: var(--white);
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
}

#content .contact .marketplace-item:hover {
    border: var(--secondary-color) 1px solid;
    box-shadow: 2px 6px 10px var(--secondary-soft-color);
}


#content .contact .marketplace-item p {
    color: var(--grey);
    font-size: 16px;
    font-weight: 500;

}

#content .contact .marketplace-item .cta-item {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    padding: 5px;
}

#content .contact .marketplace-item .cta-item img {
    rotate: 145deg;
}

/* START DETAIL CONTENT PAGE | DESKTOP */
/* Product Detail */
#content .product-detail .image-feature {
    /* height: 350px; */
    background-color: var(--background);
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
    padding: 40px;
}

#content .product-detail .image-container {
    background-color: var(--background);
    border: var(--grey-soft) 1px solid;
    border-radius: 10px;
    padding: 10px;
}

#content .product-detail .container-custom-control {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

#content .product-detail .product-prev,
#content .product-detail .product-next {
    width: 40px;
    height: 40px;
    background-color: var(--background);
    border: var(--grey-soft) 1px solid;
    border-radius: 50%;
    cursor: pointer;
}

#content .product-detail .product-prev {
    left: -10px;
}

#content .product-detail .product-next {
    right: -10px;
}

#content .product-detail .product-next img {
    rotate: 180deg;
}

#content .product-detail h4 {
    font-family: 'PlayfairDisplay';
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
}

#content .product-detail p {
    max-width: 550px;
    color: var(--grey);
}

#content .product-detail .normal-price-is-discount {
    color: var(--black);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-decoration: line-through var(--red) 2px;
}

#content .product-detail .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 17px;
    line-height: 26px;
}

#content .product-detail .content .variant p {
    background-color: var(--background);
    padding: 10px 20px;
    border-radius: 10px;
}

#content .product-detail .cta a {
    max-width: 260px;
    border-radius: 60px;
    padding: 10px 30px;
}

#content .product-detail .content-info-product {
    background-color: var(--background);
    border-radius: 10px;
}

#content .product-detail .benefit-info h4 {
    font-family: 'PlayfairDisplay';
    font-weight: 500;
    font-size: 50px;
    line-height: 160%;
    color: var(--secondary-color);
}

#content .product-detail .benefit-info p {
    font-size: 16px;
    line-height: 160%;
    color: var(--secondary-color);
}

.product-detail .ingredient-info .info p {
    margin-bottom: 0 !important;
}

#content .benefit-info .col-lg-3::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -10px;
    right: 0;
    background-color: var(--grey-soft);
}

#content .row .col-lg-3:not(:nth-child(5)):not(:last-child)::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 120%;
    top: 0;
    right: 0;
    background-color: var(--grey-soft);
}

/* Blog Detail */
#content .blog-detail .content-body {
    font-family: 'PlusJakartaSans';
    color: var(--grey);
}

#content .blog-detail .image-thumbnail {
    width: 50%;
}

#content .blog-detail .content-body img {
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Detail Career */
#career-detail .header-info h4 {
    font-family: 'PlayfairDisplay';
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 46px;
}

#career-detail p {
    color: var(--grey);
}

#career-detail .body h4 {
    font-family: 'PlayFairDisplay';
    color: var(--black);
}

#career-detail .body {
    color: var(--grey);
}

#career-detail .cta a {
    padding: 15px 30px;
    border: 10px;
}

/* Detail Promo */
#content .detail-promo .image-container {
    border-radius: 30px;
    overflow: hidden;
}

#content .detail-promo h4 {
    font-family: 'PlayfairDisplay';
    font-size: 24px;
    font-weight: 600;
    line-height: 27px;
}

#content .detail-promo h5 {
    font-family: 'PlayfairDisplay';
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

#content .detail-promo p {
    font-size: 15px;
    line-height: 27px;
}

/* END DETAIL CONTENT PAGE */



/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

    /* START HOMEPAGE | MOBILE */
    #homepage>*:not(nav, #slider, #product-category, #offCanvasProduct, .phpdebugbar, footer) {
        padding: 20px 0 !important;
    }

    #product-category h1,
    #product h1,
    #solution h1,
    #gallery-video h1,
    #gallery-photo h1,
    #testimonial h1,
    #promo h1,
    #about h1,
    #blog h1,
    #content h1,
    #career h1 {
        font-size: 18px;
        line-height: 160%;
    }

    #product-category p,
    #product p,
    #solution p,
    #gallery-video p,
    #gallery-photo p,
    #testimonial p,
    #promo p,
    #about p,
    #blog p,
    #content p,
    #contact p,
    #career-detail p,
    footer p,
    footer a {
        font-size: 12px;
        line-height: 160%;
    }

    footer h4 {
        font-size: 16px;
        line-height: 160%;
    }

    /* Components */
    .btn-secondary span {
        font-size: 12px;
        line-height: 160%;
    }

    .btn-secondary img {
        width: 18px;
        height: 18px !important;
    }

    .btn-secondary-outline {
        font-size: 12px;
        line-height: 160%;
    }

    .cta a {
        font-size: 16px;
        line-height: 160%;
        /* color: var(--secondary-color); */
    }

    .cta .icon img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 10px;
    }

    .cta-section a {
        font-size: 14px;
        line-height: 160%;
    }

    /* Navbar */
    nav {
        height: 60px;
    }

    nav .navbar-brand img {
        height: 30px;
    }

    nav .offcanvas-header {
        height: 60px;
    }

    #offCanvasNavbar .offcanvas-body {
        background-color: var(--pink-pastel);
        color: var(--white) !important;
    }

    #offCanvasProduct .offcanvas-body {
        padding: unset;
    }

    nav .offcanvas-body .nav-link,
    nav .offcanvas-body .nav-link.active,
    nav .offcanvas-body .nav-link:hover {
        color: var(--white) !important;
    }

    nav .offcanvas-body .nav-item {
        border-bottom: 1px solid var(--white);
        margin-bottom: 20px;
    }

    /* Filter Category */
    #content .filter-category .nav-link {
        color: var(--grey);
        font-size: 14px;
    }

    #content .filter-category .nav-link.active,
    #content .filter-category .nav-link:hover {
        color: var(--primary-color);
        font-size: 14px;
    }

    /* Slider  */
    #slider {
        margin-top: 60px;
    }

    #slider .item {
        height: 260px;
    }

    #slider .item img {
        object-fit: cover;
    }

    #slider h4 {
        font-size: 21px;
        line-height: 160%;
    }

    #slider p {
        font-size: 14px;
        line-height: 160%;
    }

    #slider .slider-next,
    #slider .slider-prev {
        width: 40px;
        height: 40px;
        padding: 5px;
    }

    #slider .slider-prev {
        left: 20px;
    }

    #slider .slider-next {
        right: 20px;
    }

    /* Product Category */
    #product-category .item .item-overlay h1 {
        font-size: 18px !important;
        line-height: 160%;
    }

    #product-category .item.tall,
    #product-category .item.large {
        height: 100% !important;
    }

    #product-category .item.large .item-overlay,
    #product-category .item.tall .item-overlay,
    #product-category .item.small .item-overlay {
        padding-bottom: 10px;
    }

    #product-category .item.large .item-overlay h1 {
        line-height: 160%;
    }

    #product-category .item .cta a {
        padding-left: 14px !important;
        padding-right: 14px !important;
        font-size: 12px;
        color: white;
    }

    /* Product */
    #product .product-item:last-child {
        margin-bottom: 25px !important;
    }

    #product .item {
        border-radius: 20px;
    }

    #product .item h4 {
        font-size: 16px;
        line-height: 160%;
    }

    #product .item .cta a {
        padding: 10px 0px;
        font-size: 12px;
    }

    #product .item .price {
        font-size: 14px;
        line-height: 160%;
    }

    /* Solution */
    #solution .item h4 {
        font-size: 14px;
        color: var(--grey);
        line-height: 120%;
    }

    #solution .item .cta {
        margin-bottom: 15px;
    }

    #solution .item .cta span {
        font-size: 12px;
    }

    #solution .item .cta img {
        width: 22px;
        height: 22px;
    }

    #solution #cta a {
        color: var(--white);
        border-radius: 10px;
        padding: 10px 15px;
    }

    /* Gallery Video */
    #gallery-video .swiper {
        padding-top: 30px;
        padding-bottom: 40px;
    }

    #gallery-video .swiper-slide {
        width: 170px !important;
        margin-left: 8px !important;
        margin-right: 8px !important;
    }

    #gallery-video .swiper-slide-active {
        width: 190px !important;
    }

    /* #gallery-video .swiper-slide,
    #gallery-video .swiper-slide video {
        width: 170px;
        max-height: 260px;
        margin-bottom: unset;
    } */

    .play-button {
        top: 50%;
    }

    /* #gallery-video .swiper-slide-active {
        width: 190px;
        height: 350px !important;
    } */

    #gallery-video .product {
        position: relative;
        width: 100vw;
        max-width: 100vw;
        transform: translateX(-50%);
        left: 50%;
        padding: 16px;

    }

    #gallery-video .product .content h4 {
        font-family: 'PlayfairDisplay';
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
    }

    #gallery-video .product .item .cta a {
        font-size: 12px;
        padding: 10px 12px;
    }

    #gallery-video .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

    #gallery-video .swiper-pagination-bullet-active {
        width: 33px;
        height: 7px;
    }

    /* Gallery Photo */
    #gallery-photo .cta-section a {
        font-size: 14px;
    }

    /* Testimonial */
    #testimonial .item {
        min-height: unset;
    }

    #testimonial .item h4 {
        font-size: 14px;
        line-height: 160%;
    }

    #testimonial .item p {
        font-size: 12px;
        line-height: 160%;
    }

    #testimonial .item img {
        width: 18px;
        height: 18px;
    }

    /* Promo */
    #promo .item h4 {
        font-size: 18px;
        line-height: 160%;
        text-wrap: balance;
    }

    #promo .item p,
    #promo .item .cta a {
        font-size: 12px;
        line-height: 160%;
    }

    /* Blog */
    #blog .item h4 {
        font-size: 16px;
        line-height: 160%;
    }

    #blog .item p {
        font-size: 12px;
        line-height: 160%;
    }

    #blog .btn-detail {
        width: 40px;
        height: 40px;
        padding: 7px;
    }

    /* END HOMEPAGE */

    /* Header Detail Page */
    #header {
        top: 60px;
        border-radius: 0px;
    }

    #header h1 {
        margin-bottom: 0;
    }

    /* Solution Page */
    #content #product-recommendation .image-wrapper img {
        width: 70%;
        border-radius: 12px;
    }

    #content #product-recommendation .overlay-text {
        font-size: 15px;
        line-height: 120%;
    }

    #content #product-recommendation .image-container {
        padding: 10px;
    }

    #content #product-recommendation .item-content {
        max-width: 60%;
    }

    #content #product-recommendation .item-content h4 {
        font-size: 14px;
        line-height: 120%;
    }

    #content #product-recommendation .price {
        font-size: 12px;
    }

    #content #product-recommendation .item-cta {
        padding: 5px 15px 10px;
        border-radius: 20px;
    }

    #content #product-recommendation .item-cta span {
        font-size: 12px;
        line-height: 160%;
    }

    #content #product-recommendation .item-cta img {
        width: 20px;
        height: 20px;
    }

    /* About Page */
    #about {
        padding-top: 50px;
    }

    #about img {
        width: 100% !important;
        border-radius: 10px;
    }

    #about h3 {
        font-size: 16px;
        line-height: 160%;
    }

    /* All Product */
    #content .product-all .item {
        border-radius: 20px;
    }

    #content .product-all .item h4 {
        font-size: 16px;
        line-height: 160%;
    }

    #content .product-all .item .cta a {
        padding: 10px 0px;
        font-size: 12px;
    }

    #content .product-all .item .price {
        font-size: 14px;
        line-height: 160%;
    }

    /* All Affiliator */
    #content .affiliator-all .item {
        border-radius: 10px;
    }

    #content .affiliator-all .item .photo-affiliator {
        width: unset;
    }

    /* Ukuran Tombol CTA */

    /* Contact Page */
    #content .contact .item h4 {
        font-size: 16px;
        line-height: 160%;
    }

    #content .contact .item p {
        font-size: 14px;
        line-height: 160%;
    }

    #content .contact .iframe-container,
    #content .contact .iframe-container iframe {
        height: 300px;
        border-radius: 20px;
    }

    #content .contact .item img {
        height: 35px;
        width: 35px;
    }

    #content .contact h2 {
        font-size: 16px;
        line-height: 160%;
    }

    /* Detail Page */
    /* Detail Product */
    #content .product-detail .content-info-product {
        border-radius: unset;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }

    #content .product-detail .benefit-info p {
        font-size: 14px;
        color: var(--grey);
    }

    #content .row .col-lg-3:not(:nth-child(5)):not(:last-child)::before {
        content: unset;
    }

    #content .benefit-info .col-lg-3::after {
        bottom: unset;
    }

    #content .ingredient-info .item img {
        width: 20px;
        height: 25px;
    }

    #content .ingredient-info .item::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: -10px;
        right: 0;
        background-color: var(--grey-soft);
    }

    /* Detail Blog */
    #content .blog-detail .image-thumbnail {
        border-radius: 20px;
        width: 100%;
    }

    /* Detail Career */
    #career-detail .header-info h4 {
        font-size: 16px;
        line-height: 160%;
    }

    #career-detail .cta a {
        font-size: 14px;
        padding: 10px 15px;
        color: white;
        border-radius: 10px;
        margin-top: 10px;
    }

    #career .item h4 {
        font-size: 16px;
    }

    #career .item p {
        font-size: 14px;
    }

    .career-similar h1 {
        font-size: 17px;
    }

    #content .body {
        font-size: 14px;
    }

    /* Catalog Page */
    #e-catalogue .btn-secondary {
        padding: 10px 15px;
    }

    #e-catalogue .btn-contact {
        padding: 10px 15px;
    }

    /* FAQ Page */
    #faq .item {
        margin-bottom: 20px;
        border-bottom: 1px solid var(--grey-soft);
    }

    #faq .border-bottom:last-child .col-12:last-child .item {
        border-bottom: unset;
    }

    #faq .item .item-icon {
        font-size: 16px;
        padding: 10px 15px;
        border-radius: 10px;
    }

    #faq .item h4 {
        font-size: 16px;
        line-height: 160%;
    }

    #faq .col-lg-6::after {
        /* content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: -10px;
        right: 0;
        background-color: var(--grey-soft); */
    }

    #faq .border-bottom {
        border-bottom: unset !important;
        margin-bottom: 0;
    }

    /* Detail Promo */
    #content .detail-promo h4 {
        color: var(--primary-color);
    }

    #content .detail-promo p {
        font-size: 12px;
        line-height: 160%;
    }


    footer .img-container {
        padding: 10px 15px;
    }

    footer img {
        width: 80px;
    }

    footer li {
        padding-bottom: 8px;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    #offCanvasProduct {
        top: unset;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 80vh;
        transform: translateY(100%);
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    #offCanvasProduct.show {
        transform: translateY(0);
    }
}

/* `lg` applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

    /* Slider */
    #slider .slider-prev {
        left: 5px;
    }

    #slider .slider-next {
        right: 5px;
    }

    /* About */
    #about {
        background-color: var(--background);
    }

    #about .image-content {
        position: unset;
        left: 0;
    }

    #about .image-content img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    #about img {
        width: 70%;
        border-radius: 10px;
    }

    /* Solution */
    #solution .item .cta {
        margin-bottom: 15px;
    }

    #solution .item::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--grey-soft);
        text-align: center;
    }

    /* Solution Page */
    #content #product-recommendation .image-wrapper {
        justify-items: center;
    }

    /* Career Page */
    #career {
        padding-top: 10px;
    }

    #career h1 {
        font-size: 20px;
        line-height: 160%;
    }

    /* Testimonial Page */
    .testimonial-all {
        padding-top: 50px;
    }

    /* Detail Product */
    #content .product-detail {
        padding-top: 50px;
    }

    #content .row .col-lg-3:not(:nth-child(5)):not(:last-child)::before {
        content: unset;
    }

    /* Detail Promo */
    #content .detail-promo {
        padding-top: 50px;
    }
}

@media (min-width: 992px) {

    /* Slider */
    #slider .slider-prev {
        left: 20px;
    }

    #slider .slider-next {
        right: 20px;
    }
}


/* `xl` applies to large devices (desktops, less than 1200px) */
@media (min-width: 1200px) {

    /* Slider */
    #slider .slider-prev {
        left: 20px;
    }

    #slider .slider-next {
        right: 20px;
    }
}

/* `xxl` applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) {}

@media (min-width: 1440px) {
    #slider .slider-prev {
        left: -30px;
        bottom: -10px;
    }

    #slider .slider-next {
        right: -30px;
        bottom: -10px;
    }
}