/* NAVIGATION ------------------------------------- */
.TopSpace {
    padding-top: 60px;
}

/* Nav styles */
header {
    height: 60px;
    border-bottom: 1px solid #BEC6CB;
}

    header .navbar-brand {
        padding: 15px 0;
    }

        header .navbar-brand img {
            max-width: 150px;
            width: 100%;
        }

    header .nav-item .dropdown__item {
        padding: 16px;
        cursor: pointer;
    }

    header .nav__link,
    header .nav-link {
        font-weight: 500;
        font-size: max(14px, 0.729vw);
        line-height: 118%;
        color: var(--bs-dark-gray);
    }

    header .nav-item .dropdown__item:hover,
    header .nav-item .dropdown__item.active,
    header .nav-item .dropdown__item.show,
    header .nav-item .dropdown__item:hover .nav-link,
    header .nav-item .dropdown__item.active .nav-link,
    header .nav-item .dropdown__item.show .nav-link {
        color: var(--bs-red);
        transition: all 0.3s ease-out;
        font-style: italic;
    }

    /* Dropdown Menu */
    header .navbar--down-arrow {
        height: max(1rem, 0.833vw);
        width: max(1rem, 0.833vw);
    }

    header .dropdown__item .navbar--down-arrow .down--arrow {
        filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(75deg) brightness(103%) contrast(102%);
    }

    header .dropdown__item.show .navbar--down-arrow .down--arrow {
        transform: rotate(180deg);
        filter: brightness(0) saturate(100%) invert(92%) sepia(80%) saturate(1989%) hue-rotate(15deg) brightness(101%) contrast(88%);
    }

    header .nav-item .dropdown__item:hover .down--arrow,
    header .nav-item .dropdown__item.active .down--arrow {
        filter: brightness(0) saturate(100%) invert(92%) sepia(80%) saturate(1989%) hue-rotate(15deg) brightness(101%) contrast(88%);
    }

@media (min-width:992px) {
    header .nav-item .dropdown__item {
        padding: max(4px, 0.208vw);
    }
}

@media (min-width:1400px) {
    header .navbar-brand {
        padding: max(29px, 1.51vw) 0;
    }

        header .navbar-brand img {
            max-width: max(200px, 7.031vw);
            width: 100%;
            height: max(33px, 1.718vw);
        }

    .TopSpace {
        padding-top: max(91px, 4.737vw);
    }

    header {
        height: max(91px, 4.737vw);
    }

        header .navbar-nav .nav-item {
            margin-right: max(24px, 1.25vw) !important;
        }
}

header .navbar-toggler {
    height: 42px;
    width: 42px;
    min-width: 42px;
    background: var(--transparent);
    transform: translateY(0);
    z-index: 1047;
}

    header .navbar-toggler .hamburger {
        height: 2px;
        width: 28px;
        margin: 0px auto;
        display: block;
        transition: all 0.3s ease-out;
        background-color: var(--bs-white);
        left: 7px;
    }

        header .navbar-toggler .hamburger:first-of-type {
            display: block;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            margin-top: 16px;
            top: 5px;
        }

        header .navbar-toggler .hamburger:nth-child(2) {
            display: none;
        }

        header .navbar-toggler .hamburger:last-of-type {
            display: block;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            margin-top: -5px;
            top: 25px;
        }

    header .navbar-toggler.collapsed .hamburger {
        transition: all 0.3s ease-out;
        transform: rotate(0);
    }

        header .navbar-toggler.collapsed .hamburger:first-of-type {
            top: 18px;
            margin-top: 10px;
        }

        header .navbar-toggler.collapsed .hamburger:nth-child(2) {
            display: block;
            top: 20px;
        }

        header .navbar-toggler.collapsed .hamburger:last-of-type {
            margin-top: -10px;
            top: 22px;
        }

header .logo--white,
header.header--white .logo--default {
    display: none;
}

header.header--white .nav__link,
header.header--white .nav-link {
    color: var(--bs-white);
}

header.header--white .logo--white {
    display: block;
}

/* scroll down after header */
.scrolled header {
    background: var(--bs-white);
}

    .scrolled header.header--white {
        background: var(--bs-primary);
    }

header.header--white .hamburger {
    background-color: var(--bs-white) !important;
}

/* Dropdown */
.dropdown__menu {
    background-color: var(--bs-dark-90);
    padding: max(24px, 1.249vw);
    border-radius: 0;
}

    .dropdown__menu .dropdown--item {
        color: var(--bs-white);
        font-size: max(18px, 0.937vw);
        line-height: max(26px, 1.353vw);
        padding: 0 max(16px, 0.833vw);
        margin-top: max(16px, 0.833vw);
        font-weight: 700;
        position: relative;
        transition: all 0.3s ease;
    }

    .dropdown__menu li:first-child .dropdown--item {
        margin-top: 0;
    }

    .dropdown__menu .dropdown--item::before {
        content: "";
        background: var(--bs-dark);
        width: 2px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.3s ease;
    }

    .dropdown__menu .dropdown--item.active::before,
    .dropdown__menu .dropdown--item:hover::before,
    .dropdown__menu .dropdown--item:focus::before {
        background: var(--bs-primary);
        transition: all 0.3s ease;
        width: 4px;
    }

.dropdown--item:hover,
.dropdown--item:focus,
.dropdown--item.active,
.dropdown--item:active {
    background-color: var(--bs-dark);
    color: var(--bs-primary);
    transition: all 0.3s ease;
}

@media (max-width:991.9px) {
    header .navbar--down-arrow {
        position: absolute;
        right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 24px;
    }

    .collapse-border {
        background: var(--bs-gray-light);
        height: 0.125rem;
    }

    #navbarScroll {
        background-color: var(--bs-white);
        position: fixed;
        left: 0;
        top: 60px;
        width: 100%;
        max-height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1048;
    }

    header.header--white #navbarScroll {
        background: var(--bs-primary);
    }
}

@media (min-width:992px) {
    #navbarScroll {
        background-image: none !important;
    }

    .dropdown__menu {
        padding: max(16px, 0.833vw);
        max-height: calc(100dvh - max(81px, 4.217vw));
        overflow-y: auto;
        overflow-x: hidden;
        /* box-shadow: 0px 8px 34px, 1.77vw 4px rgba(188, 241, 36, 0.5); */
    }

    .searchTggleShow .search--box {
        padding: max(200px, 10.411vw) 0;
    }
}

/* HEADER & BANNER ------------------------------------- */
#banner {
    border-bottom: 1px solid var(--bs-gray);
}

.banner--inner-full {
    min-height: 100dvh;
}

.banner-content h6, .banner--inner h6 {
    color: var(--bs-red);
    font-weight: 700;
    font-size: 18px;
    line-height: 118%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.banner--inner h6 {
    color: var(--bs-white);
}

.banner--inner i {
    font-weight: 600;
}

.banner-content h1, .banner--inner h1 {
    margin-top: 24px;
    margin-bottom: 24px;
}

.banner-content p, .banner--inner p {
    font-weight: 300;
    font-size: 17px;
    line-height: 140%;
    color: var(--bs-body);
    margin-bottom: 32px;
}

.banner--inner p {
    color: var(--bs-white);
}

.banner--inner .card {
    padding: 48px 20px;
    max-width: max(360px, 18.74vw);
}

    .banner--inner .card h2,
    .pureclor_solutions h3,
    .section--content h2 {
        font-size: max(20px, 1.041vw);
        line-height: 140%;
        font-weight: 600;
        color: var(--bs-primary);
        margin-bottom: max(18px, 0.937vw);
    }

.pureclor_solutions h3 {
    margin-top: 0 !important;
}

.banner--inner .card p {
    font-size: 14px;
    line-height: 140%;
    font-weight: 300;
    color: var(--bs-body);
    margin-bottom: 24px;
    margin-top: 0;
}

.banner--inner .card ul {
    padding-left: 0;
    list-style: none;
}

    .banner--inner .card ul li {
        font-size: max(16px, 0.833vw);
        line-height: 140%;
        font-weight: 300;
        color: var(--bs-body);
        margin-bottom: max(4px, 0.208vw);
        padding-left: max(18px, 0.937vw);
        position: relative;
    }

        .banner--inner .card ul li::before {
            content: "";
            position: absolute;
            left: 0;
            height: max(22px, 1.145vw);
            width: max(4px, 0.208vw);
            background: var(--bs-red);
            display: inline-block;
            transform: skewX(0deg);
            transition: transform 0.3s ease;
        }

        .banner--inner .card ul li:hover::before {
            transform: skewX(-15deg);
        }

.banner--inner-logo {
    max-height: max(92px, 4.789vw);
    margin-bottom: 28px;
}

@media (min-width:992px) {
    .banner--inner {
        min-height: 634.69px;
    }

    .banner--inner-full {
        min-height: calc(100dvh - 50px);
    }

    .border-lg-bottom {
        border-bottom: 1px solid var(--bs-gray);
    }

    .border-lg-top {
        border-top: 1px solid var(--bs-gray);
    }
}

@media (min-width:1200px) {
    .banner--inner-full {
        min-height: calc(100dvh - 98px);
    }

    .banner--inner {
        min-height: 634.69px;
    }
}

.scrollDown {
    border: none;
    padding: 0;
    background: none;
    bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.scrollDown img {
    width: max(32px, 1.666vw);
    animation: bounce 2s infinite;
}

.sliced-video {
    width: 100%;
    aspect-ratio: 3 / 2;
    position: relative;
}

    .sliced-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -webkit-mask: linear-gradient(#000 0 0) top, linear-gradient(#000 0 0) center, linear-gradient(#000 0 0) bottom;
        -webkit-mask-size: 100% 31.5%, 100% 31.5%, 100% 31.5%;
        -webkit-mask-position: 0 0, 0 50%, 0 100%;
        -webkit-mask-repeat: no-repeat;
    }

@media (min-width:768px) {
    .sliced-video {
        clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
    }
}

@media (min-width:992px) {
    .scrollDown {
        bottom: max(40px, 2.082vw);
    }

    .banner--inner .card {
        padding: max(54px, 2.811vw) max(42px, 2.186vw);
        margin-left: auto;
    }

        .banner--inner .card p {
            font-size: max(15px, 0.781vw);
            margin-bottom: max(35px, 1.822vw);
        }

    .banner--inner-logo {
        margin-bottom: max(42px, 2.186vw);
    }
}

@media (min-width:1400px) {
    #banner {
        min-height: calc(99dvh - 91px);
    }

    .banner-content p, .banner--inner p {
        font-size: max(19px, 0.989vw);
        margin-bottom: max(57px, 2.967vw);
    }

    .banner-content h1, .banner--inner h1 {
        margin-top: max(29px, 1.51vw);
        margin-bottom: max(29px, 1.51vw);
    }

    .banner-content h6, .banner--inner h6 {
        font-size: max(19px, 0.989vw);
    }
}

/* FOOD SAFETY */
.section--food-sefety h2 {
    color: var(--bs-primary);
    margin-bottom: 18px;
}

    .section--food-sefety h2 span {
        font-style: normal;
    }

.section--food-sefety h3,
.section--food-sefety .h3,
.section--food-sefety p {
    font-weight: 600;
    font-size: 18px;
    line-height: 140%;
    color: var(--bs-primary);
    margin-top: 24px;
    margin-bottom: 10px;
    max-width: max(494px, 25.706vw);
}

.section--food-sefety h2,
.section--food-sefety .h2 {
    max-width: max(494px, 25.706vw);
}

.section--food-sefety p,
.section-content-blank p {
    font-weight: 300;
    color: var(--bs-body);
    margin-bottom: 20px;
    margin-top: 0;
}

.section--food-sefety ul {
    padding-left: 18px;
    margin-bottom: 0;
}

    .section--food-sefety ul li {
        font-weight: 300;
        font-size: 14px;
        line-height: 140%;
        color: var(--bs-body);
    }

.text-exta h6 {
    font-weight: 800;
}

@media (min-width:992px) {
    .section--food-sefety h2 {
        margin-bottom: max(23px, 1.197vw);
    }

    .section--food-sefety h3,
    .section--food-sefety .h3 {
        font-size: max(19px, 0.989vw);
        margin-top: max(34px, 1.77vw);
        margin-bottom: max(15px, 0.781vw);
    }

    .section--food-sefety p,
    .section-content-blank p {
        font-size: max(19px, 0.989vw);
        margin-bottom: max(28px, 1.458vw);
    }

    .section--food-sefety ul li {
        font-size: max(16px, 0.833vw);
    }
}

/* HOW WE ARE */
.section--how-we-are .h2 {
    margin-top: 24px;
    margin-bottom: 24px;
}

.section--how-we-are .h6, .section--how-we-are h6 {
    letter-spacing: 0.8px;
}

.section--how-we-are .list-unstyled li {
    margin-bottom: 15px;
    position: relative;
    padding-left: max(24px, 1.249vw);
    font-weight: 300;
    font-size: 17px;
    line-height: 140%;
    margin-bottom: max(10px, 0.521vw);
}

    .section--how-we-are .list-unstyled li:last-child {
        margin-bottom: 0;
    }

    .section--how-we-are .list-unstyled li::before {
        content: "";
        position: absolute;
        left: 0;
        height: max(28px, 1.458vw);
        width: max(4px, 0.208vw);
        background: var(--bs-red);
        display: inline-block;
        transform: skewX(0deg);
        transition: transform 0.3s ease;
    }

    .section--how-we-are .list-unstyled li:hover::before {
        transform: skewX(-15deg);
    }

@media (min-width:992px) {
    .section--how-we-are .h2 {
        margin-top: 32px;
        margin-bottom: 32px;
    }
}

@media (min-width:1400px) {
    .section--how-we-are .h2 {
        margin-top: max(45px, 2.343vw);
        margin-bottom: max(45px, 2.343vw);
    }

    .section--how-we-are .list-unstyled li {
        margin-bottom: max(12px, 0.625vw);
        font-size: max(19px, 0.989vw);
    }
}

/* Product Card */
.product-card .ratio {
    overflow: hidden;
}

    .product-card .ratio .lazy {
        transition: all 0.3s ease-out;
    }

.product-card:hover .ratio .lazy {
    transform: scale(1.05);
    transition: all 0.3s ease-out;
}

.product-card .card-body {
    padding: 30px 0 0 0;
}

    .product-card .card-body .h6 {
        font-weight: 500;
        font-style: Italic;
        font-size: 18px;
        line-height: 140%;
        margin-top: 24px;
        margin-bottom: 6px;
    }

    .product-card .card-body p {
        font-weight: 300;
        font-size: max(14px, 0.729vw);
        line-height: 140%;
        margin-bottom: 28px;
        margin-top: 0;
    }

.product-card .name--ic {
    height: max(24px, 1.25vw);
}

@media (min-width:992px) {
    .product-card .card-body {
        padding: max(40px, 2.082vw) 0 0 0;
    }

        .product-card .card-body .h6 {
            font-size: max(19px, 0.989vw);
            margin-top: max(30px, 1.562vw);
            margin-bottom: max(9px, 0.469vw);
        }

        .product-card .card-body p {
            font-size: max(16px, 0.833vw);
            margin-bottom: max(36px, 1.874vw);
        }
}

/* ====================== About Page ====================== */
.methods--card {
    min-height: 150px;
}

    .methods--card .methods--icon,
    .methods--card .methods--icon-md {
        max-width: max(84px, 4.373vw);
        min-width: max(84px, 4.373vw);
        margin-right: 24px;
    }

    .methods--card .methods--icon {
        width: 100%;
    }

    .methods--card h4,
    .methods--card .h4 {
        font-size: 18px;
        line-height: 118%;
        font-weight: 600;
        margin-bottom: max(10px, 0.521vw);
        color: var(--bs-primary);
    }

    .methods--card p {
        font-size: 16px;
        line-height: 140%;
        font-weight: 300;
        color: var(--bs-body);
        margin-bottom: 0;
    }

        .methods--card p strong, .methods--card p span {
            color: var(--bs-red);
        }

        .methods--card p strong {
            font-weight: 700;
        }

@media (min-width:992px) {

    .methods--card .methods--icon,
    .methods--card .methods--icon-md {
        margin-right: max(42px, 2.186vw);
    }

    .methods--card .methods--icon-md {
        max-width: max(100px, 5.206vw);
        min-width: max(100px, 5.206vw);
    }

    .methods--card p {
        font-size: max(19px, 0.989vw);
    }
}

.section--content h2 {
    color: var(--bs-body);
}

.section--content p,
.pureclor_solutions p,
.section--whypureclor p {
    font-weight: 300;
    font-size: 18px;
    line-height: 140%;
    color: var(--bs-body);
    margin-bottom: 0;
}

.section--content p {
    margin-top: 0;
}

.pureclor_solutions p {
    margin-bottom: 24px;
}

.pharmaceutical--blog h2 {
    font-size: 24px;
    line-height: 118%;
    font-weight: 600;
    margin-bottom: 24px;
}

    .pharmaceutical--blog h2 span {
        color: var(--bs-red);
    }

.section--whypureclor ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

    .section--whypureclor ul li {
        font-weight: 600;
        border-bottom: 1px solid var(--bs-gray);
        padding-top: 15px;
        padding-bottom: 15px;
        color: var(--bs-primary);
        display: block;
        overflow: hidden;
        max-width: 100%;
    }

        .section--whypureclor ul li:last-child {
            border-bottom: none;
        }

.section--howit-work h2,
.section--howit-work h3 {
    font-size: 42px;
    line-height: 118%;
    font-weight: 400;
    margin-bottom: 0;
}

    .section--howit-work h2 span {
        font-weight: 700;
        display: block;
        color: var(--bs-red);
        font-style: italic;
    }

.section--howit-work h3 {
    font-weight: 800;
    color: #FF00FF;
}

@media (min-width:992px) {

    .banner--inner .card h2,
    .pureclor_solutions h3,
    .methods--card h4,
    .methods--card .h4,
    .banner--inner .card h2 {
        font-size: max(22px, 1.145vw);
    }

    .section--content p,
    .pureclor_solutions p,
    .section--whypureclor ul li {
        font-size: max(19px, 0.989vw);
    }

    .pureclor_solutions p {
        margin-bottom: max(38px, 1.978vw);
    }
}

@media (min-width:1200px) {
    .section--whypureclor ul li {
        padding-top: max(22px, 1.145vw);
        padding-bottom: max(22px, 1.145vw);
    }

    .pharmaceutical--blog h2 {
        font-size: max(34px, 1.666vw);
        margin-bottom: max(48px, 2.499vw);
    }

    .section--howit-work h2,
    .section--howit-work h3 {
        font-size: max(68px, 3.54vw);
    }
}

.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #041E64;
}

.hero-video-view {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background-color: #041e64e6;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

/* WIDGET ------------------------------------- */
#backToTopBtn {
    background: var(--bs-primary);
    position: fixed;
    right: 5px;
    bottom: 5px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
}

    #backToTopBtn img {
        width: max(32px, 1.666vw);
    }

/*============ Contact Page ============*/
.contactform .form-control, .contactform .form-select {
    font-size: 14px;
    line-height: 140%;
    font-weight: 500;
    color: var(--bs-body);
    background: var(--bs-white);
}

    .contactform .form-control:focus {
        box-shadow: none;
        border-color: var(--bs-primary);
    }

.contactform .form-floating label {
    font-size: 14px;
    line-height: 140%;
    font-weight: 300;
    color: var(--bs-body-light);
}

    .contactform .form-floating label .text-red {
        color: var(--bs-red);
    }

.contact p {
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
}

.contactform p {
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    color: var(--bs-white);
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    transform: scale(.85) translateY(-0.5rem) translateX(0);
}

@media (min-width:992px) {

    .contactform .form-control, .contactform .form-select,
    .contactform .form-floating label {
        font-size: max(16px, 0.833vw);
    }

    .contact p {
        font-size: max(19px, 0.989vw);
    }

    .contactform p {
        font-size: max(15px, 0.781vw);
    }
}

/*================ Privacy Policy Page ================*/
.section--privacy h5,
.section--privacy h6,
.section--privacy p,
.section--privacy ul {
    margin-top: 0;
    margin-bottom: 14px;
    color: var(--bs-primary);
}

.section--privacy ul {
    padding-left: max(24px, 1.249vw);
}

    .section--privacy p,
    .section--privacy ul li {
        font-weight: 300;
        font-size: 14px;
        line-height: 140%;
        color: var(--bs-body);
    }

    .section--privacy ul li {
        margin-bottom: max(6px, 0.312vw);
    }

.section--privacy p:last-child {
    margin-bottom: 0;
}

.section--privacy a {
    font-size: poppins, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 140%;
    color: var(--bs-red);
}

    .section--privacy a:hover {
        font-style: italic;
    }

@media (min-width:992px) {

    .section--privacy h5,
    .section--privacy h6,
    .section--privacy p,
    .section--privacy ul {
        margin-bottom: max(18px, 0.937vw);
    }

        .section--privacy p,
        .section--privacy a,
        .section--privacy ul li {
            font-size: max(16px, 0.833vw);
        }
}

.play--btn {
    right: 20px;
    bottom: 10px;
}

.bg-icon-md {
    width: 32px;
    height: 32px;
}

.icon-white {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(48deg) brightness(113%) contrast(107%);
}

@media (min-width:992px) {
    .bg-icon-md {
        width: max(48px, 2.5vw);
        height: max(48px, 2.5vw);
    }

    .play--btn {
        right: max(40px, 2.082vw);
        bottom: max(30px, 1.562vw);
    }
}
