a {
    text-decoration: none;
}

*,
ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

@font-face {
    font-family: "PTSans-Bold";
    src: url("../fonts/PTSans-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "PTSans-Regular";
    src: url("../fonts/PTSans-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato-Black";
    src: url("../fonts/Lato-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato-Bold";
    src: url("../fonts/Lato-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato-Light";
    src: url("../fonts/Lato-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lato-Regular";
    src: url("../fonts/Lato-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-regular: "Lato-Regular";
    --font-bold: "Lato-Bold";
    --font-black: "Lato-Black";
    --sub-font: "PTSans-Regular";
    --sub-font-bold: "PTSans-Bold";
    --primary: #3c3b89;
    --secondary: #3032ba;
    --black: #000000;
    --light-black: #515151;
    --bg-color: #f2f2f2;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.modal-open {
    padding: 0px !important;
}

html {
    font-size: clamp(56.25%, calc(54.05% + 0.59vw), 62.5%);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.py-100 {
    padding-block: clamp(6rem, 8vw, 10rem);
}

section {
    scroll-margin-top: 100px;
}

.safeflex-container {
    width: min(92%, 132rem);
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-inline: auto;
    height: 100%;
}

/* ===============================
HEADER TOP
================================ */

.safeflex-header {
    position: relative;

    z-index: 100;
}

.safeflex-header__top {
    height: 10.2rem;

    background: #fff;
}

.safeflex-header__top .safeflex-container {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.safeflex-header__logo {
    width: 25rem;
}

.safeflex-header__logo img {
    width: 100%;
}

.safeflex-header__social {
    display: flex;
}

.safeflex-header__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 3.1rem;
    min-width: 3.1rem;
    height: 3.1rem;

    font-size: 1.7rem;

    color: #666;

    transition: 0.3s;
    margin: 5px;
}

.safeflex-header__social a:hover {
    background: var(--primary);
    color: var(--white);
}

.safeflex-navbar__social {
    display: none;
}

/* ===============================
NAVIGATION
================================ */

.safeflex-header__nav {
    height: 6.2rem;
    margin-bottom: 0.2rem;

    background: #fff;
}

.safeflex-header__nav.is-fixed {
    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.08);

    z-index: 200;
}

.safeflex-header__nav .safeflex-container {
    display: flex;

    align-items: center;

    height: 100%;
}

.safeflex-navbar {
    height: 100%;
}

.safeflex-navbar__list {
    height: 100%;

    display: flex;

    align-items: center;
}

.safeflex-navbar__list li {
    height: 100%;

    position: relative;
}

.safeflex-navbar__list li a {
    font-family: var(--font-bold);
    height: 100%;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    font-size: 1.55rem;
    color: #555;
    white-space: nowrap;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -ms-transition: 0.3s all;
    -o-transition: 0.3s all;
}

.safeflex-navbar__list li.active a {
    background: #3d368f;

    color: #fff;
}

.safeflex-navbar__list li:hover>a {
    background: #3d368f;

    color: #fff;
}

/* ===============================
DROPDOWN
================================ */

.safeflex-dropdown {
    position: absolute;

    top: 100%;

    left: 0;

    width: 22rem;

    background: white;

    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);

    opacity: 0;

    visibility: hidden;

    transform: translateY(1rem);

    transition: 0.3s;
}

.safeflex-dropdown li {
    height: auto;
}

.safeflex-dropdown li a {
    height: auto;

    padding: 1.5rem;
}

.dropdown:hover .safeflex-dropdown {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

@media (min-width: 1200px) {
    .safeflex-navbar__list>li.dropdown>a>i {
        display: none;
    }
}

/* ===============================
SEARCH
================================ */

.safeflex-search {
    margin-left: auto;

    display: flex;

    height: 3.5rem;

    position: relative;
}

.safeflex-search input {
    width: 19.5rem;

    border: 1px solid #222;

    padding: 0 1rem;
    font-family: var(--font-regular);
    font-size: 14px;
    line-height: 21px;
    color: var(--light-black);
    border-radius: 4px;
    padding-right: 3rem;
}

.safeflex-search button {
    background: transparent;
    border: none;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 600;
}

/* ===============================
MOBILE BUTTON
================================ */

.safeflex-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 4.5rem;
}

.safeflex-menu-toggle span {
    height: 0.3rem;

    background: #333;

    display: block;

    margin: 0.6rem 0;

    transition: 0.3s;

    transform-origin: center;
}

.safeflex-menu-toggle.active span:nth-child(1) {
    transform: translateY(0.9rem) rotate(45deg);
}

.safeflex-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.safeflex-menu-toggle.active span:nth-child(3) {
    transform: translateY(-0.9rem) rotate(-45deg);
}

.safeflex-hero {
    position: relative;

    width: 100%;

    height: 60rem;

    overflow: hidden;
}

.safeflexHeroSwiper,
.safeflexHeroSwiper .swiper-slide {
    width: 100%;

    height: 100%;
}

.safeflexHeroSwiper .swiper-slide {
    position: relative;

    display: flex;

    align-items: center;
}

.safeflexHeroSwiper .swiper-slide img {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;
}

/* DARK OVERLAY */

.safeflex-hero__overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

/* CONTENT */

.safeflex-hero .safeflex-container {
    position: relative;

    z-index: 2;
}

.safeflex-hero__content {
    color: #fff;
    padding-bottom: 3rem;
}

.safeflex-hero__content h1 {
    font-family: var(--font-regular);
    font-size: clamp(2.6rem, 4vw, 4.5rem);
    line-height: 1.2;
    color: var(--white);
    text-align: center;
    width: 100%;
}

.safeflex-hero__content p {
    font-size: clamp(1.6rem, 2vw, 2rem);

    max-width: 55rem;

    margin-bottom: 3rem;
}

.safeflex-hero__btn {
    display: inline-flex;

    padding: 1.4rem 3.5rem;

    background: #fff;

    color: #333;

    font-size: 1.6rem;

    font-weight: 600;

    border-radius: 0.5rem;

    transition: 0.3s;
}

.safeflex-hero__btn:hover {
    background: #38348f;

    color: #fff;
}

/* PAGINATION */

.safeflex-hero__pagination {
    position: absolute;

    bottom: 5rem;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;
}

.safeflex-hero__pagination .swiper-pagination-bullet {
    width: 1rem;

    height: 1rem;

    background: #fff;

    opacity: 0.6;
}

.safeflex-hero__pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

/* PROGRESS BAR */

.safeflex-hero__progress {
    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 0.5rem;

    background: rgba(255, 255, 255, 0.3);

    z-index: 10;
}

.safeflex-hero__progress span {
    display: block;

    height: 100%;

    width: 0;

    background: #fff !important;
}

/* ====================== */

.vc_custom_1616412653124 {
    padding-top: 5px !important;
    background-color: #3c3b89 !important;
    overflow: hidden;
}

.wpb_wrapper marquee a {
    font-family: var(--font-regular);
    color: var(--white);
    font-size: 14px;
    padding-left: 15px;
}

.marquee marquee a::before {
    content: "•";
    margin: 0px 10px;
}

/* ====================== */
.safeflex-about-intro {
    background: #f2f2f2;

    padding: 4rem 0;
}

.safeflex-about-intro__title {
    font-family: var(--font-regular);

    font-size: 2rem;

    line-height: 1.5;

    font-weight: 400;

    color: var(--black);

    margin-bottom: 2rem;
}

.safeflex-about-intro__text {
    font-family: var(--font-regular);
    font-size: 1.45rem;

    line-height: 1.5;

    color: var(--light-black);
    margin-bottom: 0rem;
}

/* FEATURES */

.safeflex-features {
    padding: 5rem 0;

    background: #fff;
}

.safeflex-feature-card {
    display: flex;

    align-items: flex-start;

    gap: 2rem;
}

.safeflex-feature-card__icon {
    min-width: 7rem;

    height: 7rem;

    border-radius: 50%;

    background: var(--secondary);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 3.5rem;
}

.safeflex-feature-card__content h3 {
    font-family: var(--sub-font);
    font-size: 2.4rem;

    color: #333;

    margin-bottom: 1rem;
}

.safeflex-feature-card__content h3 span {
    color: var(--secondary);
}

.safeflex-feature-card__content p {
    font-family: var(--font-regular);
    font-size: 1.4rem;
    line-height: normal;
    color: var(--light-black);
}

/* TESTIMONIAL */

.safeflex-testimonial {
    background: #7897bf;

    padding: 4rem 0;
}

.safeflex-testimonial__wrapper {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 3rem;

    color: #fff;

    text-align: center;
}

.safeflex-testimonial__wrapper p {
    font-family: var(--sub-font-bold);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: normal;
    max-width: 110rem;
}

.safeflex-testimonial__wrapper p:last-child {
    margin-bottom: 0rem;
}

.safeflex-testimonial__wrapper i {
    font-size: 4rem;

    font-weight: bold;

    line-height: 1;
}

.home-map-section {
    padding: 60px 0px;
}

.home-map-img img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
    margin-inline: auto;
    aspect-ratio: auto 1588 / 779;
}

/*==================================================
FOOTER
==================================================*/

.footer-section {
    border-top: solid 1px #ffffffb3;
    background: #2b2b2b !important;
    color: var(--white);
    padding: 5rem 0;
    padding-bottom: 3rem;
}

/*==================================================
LEFT CONTENT
==================================================*/

.footer-section .footer-title {
    font-family: var(--sub-font);
    font-size: 2.4rem;
    color: var(--white);
}

.footer-section .footer-line {
    width: clamp(12rem, 15vw, 15rem);
    height: 0.3rem;
    background: #fed426;
    margin-bottom: 2rem;
}

.footer-section .footer-address {
    font-style: normal;
}

.footer-section .footer-address p {
    font-family: var(--font-regular);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.footer-section .footer-address strong {
    font-weight: 700;
    margin-right: 0.5rem;
}

.footer-section .footer-address a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section .footer-address a:hover {
    color: var(--yellow);
}

/*==================================================
FORM
==================================================*/

.footer-section form {
    width: 100%;
}

.footer-section .form-label {
    font-family: var(--font-regular);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.footer-section .form-control {
    font-family: var(--font-regular);
    height: clamp(4.5rem, 5vw, 5rem);
    border: none;
    border-radius: 0.4rem;
    background: #fff;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    box-shadow: none;
}

.footer-section textarea.form-control {
    height: clamp(12rem, 18vw, 14rem);
    resize: none;
    padding-top: 1.2rem;
}

.footer-section .form-control:focus {
    border: 0.2rem solid var(--yellow);
    box-shadow: none;
}

/*==================================================
BUTTON
==================================================*/

.footer-section .footer-btn {
    width: 100%;
    height: 5rem;
    border: none;
    border-radius: 0.4rem;
    background: var(--secondary);
    color: var(--white);
    font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    font-weight: 500;
    transition: var(--transition);
}

.footer-section .footer-btn:hover {
    opacity: 0.8;
}

/*==================================================
COPYRIGHT
==================================================*/

.footer-section .footer-bottom {
    margin-top: clamp(5rem, 8vw, 9rem);
    font-family: var(--font-regular);
    font-size: 1.4rem;
    color: var(--white);
}

/* RESPONSIVE */

@media (max-width: 767px) {
    .safeflex-about-intro {
        padding: 3rem 0;
    }

    .safeflex-testimonial__wrapper {
        flex-direction: column;

        gap: 1rem;
    }
}

/* ========================= */
/* ========================= */

@media (max-width: 1199px) {
    .safeflex-header__social {
        display: none;
    }

    .safeflex-navbar {
        position: fixed;

        top: 0;

        left: -100%;

        width: 30rem;

        height: 100dvh;

        background: #fff;

        transition: 0.4s;

        z-index: 1000;

        pointer-events: auto;

        display: flex;

        flex-direction: column;
    }

    .safeflex-navbar.active {
        left: 0;
    }

    .safeflex-navbar__list {
        display: block;

        flex: 1;

        /* padding-top: 8rem; */

        overflow: hidden;

        overflow-y: auto;

        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
    }

    .safeflex-navbar__social {
        display: flex;

        justify-content: center;

        flex-wrap: wrap;

        padding: 1.5rem;

        border-top: 1px solid #eee;
    }

    .safeflex-navbar__social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 3.1rem;
        min-width: 3.1rem;
        height: 3.1rem;
        font-size: 1.7rem;
        color: #666;
        transition: 0.3s;
        margin: 5px;
    }

    .safeflex-navbar__social a:hover {
        background: var(--primary);
        color: var(--white);
    }

    .safeflex-navbar__list li {
        height: auto;
    }

    .safeflex-navbar__list li a {
        height: auto;

        padding: 1.5rem 2rem;
    }

    /* Merge the nav row into the top row so logo, search icon
       and hamburger sit together on one line */

    .safeflex-header__nav {
        position: absolute;

        inset: 0;

        height: 100%;

        background: transparent;

        pointer-events: none;
    }

    .safeflex-header__nav .safeflex-container {
        justify-content: flex-end;

        pointer-events: none;
    }

    .safeflex-search {
        order: 1;

        margin-left: 0;

        pointer-events: auto;
    }

    .safeflex-search input {
        display: none;
    }

    .safeflex-search button {
        position: static;

        transform: none;

        font-size: 1.9rem;
    }

    .safeflex-menu-toggle {
        display: block;

        order: 2;

        margin-left: 1.8rem;

        padding: 0.5rem 1rem;

        background: var(--primary);
        color: var(--white);

        pointer-events: auto;
    }

    .safeflex-menu-toggle span {
        background: var(--white);
    }

    /* ===============================
    MOBILE SUBMENU (DROPDOWN)
    ================================ */

    .dropdown>a {
        justify-content: space-between;
    }

    .dropdown>a i {
        font-size: 1.2rem;

        transition: 0.3s transform;
    }

    .dropdown.open>a i {
        transform: rotate(180deg);
    }

    .safeflex-dropdown {
        position: static;

        width: 100%;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        max-height: 0;

        overflow: hidden;

        transition: 0.3s max-height;
    }

    .dropdown.open .safeflex-dropdown {
        max-height: 30rem;
    }

    .safeflex-dropdown li a {
        padding-left: 3.5rem;
    }

    .safeflex-header {
        position: sticky;
        top: 0;
    }
}

@media (max-width: 767px) {
    .safeflex-header__top {
        height: auto;

        padding: 2rem 0;
    }

    .safeflex-header__logo {
        width: 18rem;
    }

    .safeflex-header__social {
        display: none;
    }

    .safeflex-hero {
        height: 55rem;
    }

    .safeflex-hero__content {
        text-align: center;

        /* margin: auto; */
    }

    .safeflex-hero__overlay {
        background: rgba(0, 0, 0, 0.45);
    }

    .footer-section .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .safeflex-hero {
        height: 30rem;
    }

    .safeflex-navbar {
        width: 25rem;
    }
}

@media (max-width: 480px) {
    .safeflex-logo {
        width: 15rem;
    }
}

/* ========================= */
/* NewPage */
/* ========================= */

/*=========================================
INTRODUCTION SECTION
=========================================*/

.introduction-section {
    width: 100%;
}

/*=========================================
TOP BANNER
=========================================*/

.introduction-section .introduction-banner {
    background: var(--primary);
    padding: 3.5rem 0;
}

.introduction-section .introduction-title {
    font-family: var(--sub-font);
    font-size: 3.2rem;
    color: #fed426;
    letter-spacing: -1px;
    margin: 0;
}

/*=========================================
BREADCRUMB
=========================================*/

.introduction-section .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.introduction-section .breadcrumb-item {
    font-size: 1.3rem;
}

.introduction-section .breadcrumb-item a {
    font-family: var(--font-regular);
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.introduction-section .breadcrumb-item a:hover {
    color: #ffd400;
}

.introduction-section .breadcrumb-item.active {
    color: #ffffff;
}

.introduction-section .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff;
    content: "/";
}

/*=========================================
CONTENT
=========================================*/

.introduction-section .introduction-content {
    padding: 4rem 0;
}

.introduction-section .introduction-image {
    margin-bottom: 3rem;
    display: block;
}

.introduction-section p {
    font-family: var(--font-regular);
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--light-black);
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .introduction-section .introduction-title {
        text-align: center;
    }

    .introduction-section .breadcrumb {
        justify-content: center !important;
    }
}

/* ========================= */
/* NewPage */
/* ========================= */

.leadership-section {
    padding: 5rem 0;
    /* background: #f8f9fc; */
}

.leadership-section .section-subtitle {
    display: inline-block;
    color: #3f3db9;
    font-size: clamp(1.4rem, 1vw, 1.6rem);
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.leadership-section .section-title {
    font-size: clamp(3rem, 4vw, 4.4rem);
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
}

.leadership-section .section-description {
    font-size: clamp(1.6rem, 1.2vw, 1.8rem);
    color: #666;
    max-width: 70rem;
    margin: auto;
}

/*=============================
Card
==============================*/

.leadership-section .team-card {
    background: #fff;
    border-radius: 1.6rem;
    overflow: hidden;
    height: 100%;
    transition: 0.35s;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.leadership-section .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.12);
}

.leadership-section .team-image {
    overflow: hidden;
    padding: 2.5rem;
    padding-bottom: 0px;
}

.leadership-section .team-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 350 / 317;
    transition: 0.5s;
    object-fit: contain;
}

.leadership-section .team-content {
    padding: 2.5rem;
}

.leadership-section .team-content h3 {
    font-family: var(--sub-font);
    font-size: clamp(2rem, 2vw, 2.4rem);
    margin-bottom: 0.5rem;
}

.leadership-section .team-content span {
    font-family: var(--sub-font);
    display: block;
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.leadership-section .team-content p {
    font-family: var(--font-regular);
    font-size: 1.5rem;
    color: var(--light-black);
    line-height: 1.5;
    margin: 0;
}

.full-team-wrp {
    text-align: center;
    margin-top: 5rem;
}

.full-team-wrp img {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin-inline: auto;
    margin-bottom: 35px;
}

.full-team-wrp p {
    font-family: var(--font-regular);
    font-size: 1.5rem;
    line-height: normal;
    color: var(--light-black);
    text-align: left;
    max-width: 1100px;
    margin-inline: auto;
}

/*=============================
Responsive
==============================*/

@media (max-width: 991px) {
    .leadership-section .team-image {
        height: 28rem;
    }
}

@media (max-width: 767px) {
    .leadership-section {
        padding: 5rem 0;
    }

    .introduction-section .introduction-title {
        font-size: 2.8rem;
    }

    .leadership-section .team-image {
        height: 26rem;
    }
}

@media (max-width: 575px) {
    .leadership-section .team-image {
        height: 30rem;
    }
}

/* ========================= */
/* NewPage */
/* ========================= */

.statistics-section {
    padding: 5rem 0px;
}

.comparison-table-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table-wrapper .table-responsive {
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.comparison-table-wrapper table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    margin-bottom: 0;
    table-layout: fixed;
}

.comparison-table-wrapper table th,
.comparison-table-wrapper table td {
    padding: 12px;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid #d9d9d9;
    font-family: var(--font-regular);
    font-size: 1.5rem;
    line-height: normal;
    color: var(--light-black);
    width: 130px;
}

.comparison-table-wrapper table th:first-child,
.comparison-table-wrapper table td:first-child {
    width: 240px;
    white-space: normal;
    text-align: center;
}

.comparison-table-wrapper table thead th {
    background: #f9f9f9;
    font-weight: 700;
    font-family: var(--font-regular);
    font-size: 1.5rem;
    line-height: normal;
    color: var(--light-black);
}

.comparison-table-wrapper .section-title td {
    font-family: var(--sub-font-bold);
    background: #fafafa;
    font-size: 2.2rem;
    text-align: center;
    color: #222;
    white-space: normal;
}

.comparison-table-wrapper .sticky-col {
    background: #fff;
    font-weight: 600;
}

.comparison-table-wrapper .section-title .sticky-col {
    background: #fafafa;
    text-align: center;
}

.comparison-table-wrapper table thead .sticky-col {
    background: #f9f9f9;
}

.comparison-table-wrapper .table-bordered> :not(caption)>*>* {
    border: 1px solid #d9d9d9;
}

.table> :not(:last-child)> :last-child>* {
    border-bottom-color: #d9d9d9 !important;
}

/* ========================= */
/* NewPage */
/* ========================= */

.certification-section {
    background: #fff;
    padding: 6rem 0px;
}

.certification-section .certification-card {
    text-align: center;
}

.certification-section .certification-logo {
    max-width: 330px;
    /* width: 100%; */
    /* height: 100px; */
    object-fit: contain;
    margin: auto;
}

.certification-section .certification-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 4rem;
}

.certification-section .certification-links a {
    font-family: var(--font-bold);
    color: rgb(30, 115, 190);
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.certification-section .certification-links a:hover {
    color: #004ea8;
    text-decoration: underline;
}

.certification-section hr {
    border-color: #ddd;
}

.certification-section .certificate-box h3 {
    font-family: var(--sub-font);
    font-size: 30px;
    /* margin-bottom: 20px; */
    color: #333;
}

.certification-section .certificate-image {
    border: 6px solid #ebebeb;
    background: #fff;
}

.certification-section .certificate-image img {
    width: 100%;
    display: block;
}

.certification-section .divider {
    margin: 5rem 0rem;
    border-color: #ebebeb !important;
    opacity: 0.1;
}

/* ========================= */
/* NewPage */
/* ========================= */

.innovation-accordion {
    padding: 40px 0px;
}

.innovation-accordion .accordion-item {
    border: none;
    margin-bottom: 4px;
}

.innovation-accordion .accordion-button {
    background: #e0e0e0;
    color: var(--black);
    font-family: var(--font-regular);
    font-size: 18px;
    font-weight: 400;
    padding: 14px 20px;
    box-shadow: none;
    border-radius: 4px;
}

.innovation-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}

.innovation-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.innovation-accordion .accordion-button::after {
    display: none;
}

.innovation-accordion .accordion-body {
    padding: 20px;
    background: #fff;
}

.innovation-accordion .accordion-body p {
    font-family: var(--font-regular);
    font-size: 14px;
    line-height: 1.5;
    color: var(--light-black);
}

.innovation-accordion .accordion-body ul li {
    list-style: disc;
    font-family: var(--font-regular);
    font-size: 14px;
    line-height: 1.5;
    color: var(--light-black);
}

.innovation-accordion .accordion-body em {
    font-style: italic;
}

.innovation-accordion .feature-icon {
    max-width: 150px;
    float: right;
    margin: 7px 0 7px 24px;
}

/* ========================= */
/* NewPage */
/* ========================= */

.process-section {
    padding-block: 40px;
}

.process-section .quote-card {
    background: #fff;
    box-shadow: 0 0 25px rgb(0 0 0 / 22%);
    padding: 20px;
    border-radius: 5px;
    max-width: 800px;
    margin: 0px auto;
    margin-bottom: 30px;
}

.process-section .quote-card p {
    font-family: var(--font-regular);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--light-black);
}

.process-section .quote-card h5 {
    font-family: var(--font-black);
    font-size: 1.4rem;
    line-height: normal;
    color: var(--light-black);
    font-style: italic;
}

.process-section .process-row {
    max-width: 800px;
    margin: 0px auto;
    margin-bottom: 4rem;
}

.process-section .content {
    max-width: 36rem;
    padding-top: 50px;
}

.process-section .content p {
    font-family: var(--font-regular);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--light-black);
}

.process-section .image-box {
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    border: 6px solid #ebebeb;
    margin: 0px auto;
}

.process-section .image-box img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
}

.process-section .image-box:hover img {
    transform: scale(1.05);
}

.process-section .bottom-content p {
    font-family: var(--font-regular);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--light-black);
}

.process-section .bottom-content h4 {
    font-family: var(--sub-font-bold);
    font-size: 1.8rem;
    color: #333;
    margin: 1rem 0 1rem;
}

.process-section .bottom-content ul {
    padding-left: 2rem;
}

.process-section .bottom-content li {
    font-family: var(--font-regular);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--light-black);
    list-style: disc;
}

.process-section .bottom-content {
    max-width: 800px;
    margin: 0px auto;
}

@media (max-width: 991px) {
    .process-section .process-row {
        text-align: center;
    }

    .process-section .content {
        padding-top: 0px;
        margin: 0px auto;
    }
}

@media (max-width: 576px) {
    .process-section .quote-card {
        padding: 2rem;
    }

    .process-section .bottom-content ul {
        display: inline-block;
        text-align: left;
    }
}

/* ========================= */
/* NewPage */
/* ========================= */

.technology-section {
    padding: 6rem 0rem;
}

.technology-section .process-row {
    max-width: 100%;
}

.technology-section .content {
    max-width: 55rem;
}

.technology-section .content ul {
    padding-left: 2rem;
}

.technology-section .content ul li {
    font-family: var(--font-regular);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--light-black);
    list-style: disc;
    text-align: left;
}

.technology-section .col-lg-6:has(.image-box) p {
    font-family: var(--font-regular);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--light-black);
    text-align: center;
    margin-top: 0.5rem;
}

.technology-section .image-box {
    margin-top: 2rem;
}

/* ========================= */
/* NewPage */
/* ========================= */

.bulk-products {
    padding: 4rem 0;
}

.bulk-products .bulk-products__heading {
    margin-bottom: clamp(4rem, 6vw, 6rem);
}

.bulk-products .bulk-products__heading p {
    font-family: var(--font-regular);
    font-size: clamp(1.5rem, 1.5vw, 1.7rem);
    line-height: 1.5;
    color: #444;
}

.bulk-products .bulk-products__heading a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.bulk-products .bulk-products__card {
    background: #fff;
    border: 2px solid #f2c300;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.bulk-products .bulk-products__card:hover {
    transform: translateY(-8px);
    border-color: #0056b3;
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.18);
}

.bulk-products .bulk-products__image {
    overflow: hidden;
}

.bulk-products .bulk-products__image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.bulk-products .bulk-products__card:hover img {
    transform: scale(1.05);
}

.bulk-products .bulk-products__content {
    padding: clamp(2rem, 3vw, 3rem);

    text-align: center;
}

.bulk-products .bulk-products__content h3 {
    font-family: var(--sub-font-bold);
    font-size: clamp(2rem, 2vw, 2.4rem);

    color: #0056b3;

    margin-bottom: 2rem;

    font-weight: 600;
}

.bulk-products .bulk-products__btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #f2c300;
    color: #0056b3;
    padding: 12px 28px;
    border-radius: 40px;

    text-decoration: none;
    font-family: var(--font-regular);
    font-size: 1.5rem;

    font-weight: 600;

    transition: 0.35s;
}

.bulk-products .bulk-products__btn:hover {
    background: #0056b3;
    color: #fff;
}

@media (max-width: 991px) {
    .bulk-products .bulk-products__heading {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .bulk-products .bulk-products__btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .bulk-products .bulk-products__card {
        max-width: 300px;
        margin: 0px auto;
    }
}

/* ========================= */
/* NewPage */
/* ========================= */

.clients-section {
    padding: 5rem 0rem;
}

.clients-img-wrp {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}

.clients-img-wrp img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

/* ========================= */
/* NewPage */
/* ========================= */

.news-section {
    padding: 5rem 0;
}

.news-section .news-section__item {
    display: flex;

    align-items: flex-start;

    gap: 2rem;

    padding-bottom: 1rem;

    margin-bottom: 1rem;

    max-width: 850px;
}

.news-section .news-section__date {
    width: 6rem;

    flex-shrink: 0;
}

.news-section .news-section__day {
    font-family: var(--font-regular);
    display: block;
    color: #fff !important;
    background: #555;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 15px 0;
    line-height: normal;
}

.news-section .news-section__month {
    background: var(--secondary);

    color: #fff;

    text-align: center;

    padding: 1rem;

    font-family: var(--font-regular);

    font-size: 1.3rem;

    text-transform: capitalize;

    line-height: 1;
}

.news-section .news-section__content {
    flex: 1;
}

.news-section__content p {
    font-family: var(--font-regular);
    font-size: 1.4rem;
    line-height: normal;
    color: var(--light-black);
}

.news-section .news-section__content h3 {
    font-family: var(--sub-font);
    font-size: 2.4rem;
    line-height: 1;
    color: var(--secondary);
}

.news-section .news-section__content h3 a {
    color: var(--secondary);

    text-decoration: none;

    transition: 0.3s;
}

.news-section .news-section__content h3 a:hover {
    text-decoration: underline;
}

.news-section .news-section__readmore {
    display: flex;

    align-items: center;

    gap: 1rem;

    color: var(--secondary);

    text-decoration: none;

    font-family: var(--font-regular);

    font-size: 1.5rem;

    transition: 0.3s;

    margin: 10px 0 10px 0px;
    padding-bottom: 10px;
    border-bottom: solid 1px #ddd;
}

.news-section .news-section__readmore span {
    color: #555;

    font-size: 1.5rem;
}

.news-section .news-section__readmore:hover {
    color: #000;
}

.news-section .news-section__readmore:hover span {
    transform: translateX(0.5rem);

    transition: 0.3s;
}

@media (max-width: 767px) {
    .news-section .news-section__item {
        gap: 2rem;
    }

    .news-section .news-section__date {
        width: auto;
    }

    .news-section .news-section__month {
        padding: 0.8rem;
    }

    .news-section .news-section__date {
        display: flex;
        align-items: stretch;
    }

    .news-section .news-section__day,
    .news-section .news-section__month {
        font-size: 1.6rem;
        min-width: 60px;
        padding: 4px 5px;
    }

    .news-section .news-section__month {}
}

@media (max-width: 575px) {
    .news-section .news-section__item {
        flex-direction: column;
    }

    .news-section .news-section__content {
        width: 100%;
    }
}

/*==================================================
Video Gallery
==================================================*/

.video-gallery {
    padding: 5rem 0px;
}

.video-card {
    cursor: pointer;
}

.video-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #eee;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    transition: 0.35s;
}

.video-card:hover .video-thumb::after {
    background: rgba(0, 0, 0, 0.3);
}

.video-gallery .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 4rem;
    height: 4rem;

    border-radius: 50%;

    background: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.5rem;

    color: #000;

    z-index: 2;

    transition: 0.35s;
}

.video-card:hover .play-btn {
    background: var(--secondary);
    color: #fff;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#videoModal .modal-content {
    border: none;
    background: transparent;
}

#videoModal .modal-body {
    overflow: hidden;
    background-color: var(--white);
    padding: 10px !important;
}

iframe {
    border: none;
    width: 100%;
    height: 100%;
}

#videoModal .btn-close {
    font-size: 1.4rem;
    opacity: 1;
    background-color: var(--secondary) !important;
    z-index: 1;
    color: var(--white);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    right: -10px !important;
    top: -10px !important;
    background: none;
    font-size: 2rem;
}

@media (max-width: 991.98px) {
    .video-gallery {
        padding-block: 6rem;
    }
}

@media (max-width: 767.98px) {
    .video-gallery {
        padding-block: 5rem;
    }

    .video-gallery .play-btn {
        width: 6rem;
        height: 6rem;
    }

    #videoModal .btn-close {
        width: 2rem;
        height: 2rem;
    }
}

@media (max-width: 575.98px) {
    .video-gallery {
        padding-block: 4rem;
    }
}

/*==================================================
FAQ Section
==================================================*/

.faq-section {
    padding: 5rem 0rem;
}

.faq-section .section-title {
    margin-bottom: 3rem;
    border-bottom: 0.2rem solid #ebebeb;
}

.faq-section .section-title h2 {
    font-family: var(--sub-font);
    font-size: 3rem;
    line-height: normal;
    color: #333;
}

/* Accordion */

.faq-section .accordion-item {
    border: 0;
    border-radius: 0;
    margin-bottom: 0.5rem;
}

.faq-section .accordion-button {
    position: relative;
    background: #3c3b89;
    color: #fff;
    box-shadow: none;
    border-radius: 0;
    padding: 14px 20px;
    font-family: var(--sub-font);
    font-size: 1.8rem;
    line-height: 1.5;
    padding-left: 46px;
}

.faq-section .accordion-button:hover {
    background: #403d86;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #3c3b89;
    color: #fff;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

/* Hide Bootstrap Arrow */

.faq-section .accordion-button::after {
    display: none;
}

/* Plus / Minus */

.faq-section .accordion-button::before {
    content: "+";
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1;
}

.faq-section .accordion-button:not(.collapsed)::before {
    content: "−";
}

.faq-section .accordion-body {
    background: #f8f8f8;
    border: 0.1rem solid #f8f8f8;
    border-top: 0;
    padding: 2rem;
    color: #333;
    font-family: var(--font-regular);
    font-size: 1.6rem;
    line-height: 1.5;
}

.faq-foot h3 {
    font-family: var(--sub-font-bold);
    font-size: 30px;
    line-height: normal;
    color: #333;
    margin-top: 5rem;
}

.faq-foot p {
    font-family: var(--font-regular);
    font-size: 1.6rem;
    line-height: normal;
    color: #333;
}

.faq-foot p a {
    color: var(--secondary);
}

/* Responsive */

@media (max-width: 991px) {
    .faq-section .accordion-button {
        padding: 1.8rem 2rem 1.8rem 4.5rem;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 5rem 0;
    }

    .faq-section .section-title h2 {
        font-size: 3rem;
    }

    .faq-section .accordion-button {
        font-size: 1.6rem;
    }

    .faq-section .accordion-body {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .faq-section .accordion-button {
        padding: 1.6rem 1.6rem 1.6rem 4rem;
    }

    .faq-section .accordion-button::before {
        left: 1.5rem;
    }
}

/*==================================================
CONTACT SECTION
==================================================*/

.contact-section {
    padding: 5rem 0px;
}

.contact-section__heading {
    margin-bottom: 1.6rem;
}

.contact-section__heading h2 {
    font-family: var(--sub-font-bold);
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.2rem;
}

.contact-section__line {
    display: flex;
    align-items: center;
    width: 100%;
}

.contact-section__accent {
    width: clamp(14rem, 16vw, 20rem);
    height: 0.3rem;
    background: #fed426;
    flex-shrink: 0;
}

.contact-section__rest {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.contact-section__note {
    font-family: var(--font-regular);
    font-size: 1.5rem;
    color: var(--light-black);
    margin-bottom: 2.5rem;
}

/*==================================================
CONTACT FORM
==================================================*/

.contact-section__form .form-label {
    font-family: var(--font-regular);
    font-size: 1.5rem;
    color: var(--light-black);
    margin-bottom: 0.8rem;
}

.contact-section__form .form-control {
    font-family: var(--font-regular);
    height: clamp(4.5rem, 5vw, 5rem);
    border: 1px solid #e2e2e2;
    border-radius: 0.4rem;
    background: var(--bg-color);
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    box-shadow: none;
}

.contact-section__form textarea.form-control {
    height: clamp(12rem, 18vw, 16rem);
    resize: none;
    padding-top: 1.2rem;
}

.contact-section__form .form-control:focus {
    border: 1px solid var(--primary);
    box-shadow: none;
}

.contact-section__btn {
    font-family: var(--font-bold);
    font-size: 1.5rem;
    color: var(--white);
    background: var(--secondary);
    border: none;
    border-radius: 0.4rem;
    padding: 1.4rem 3.5rem;
    transition: var(--transition);
}

.contact-section__btn:hover {
    background: var(--primary);
    color: var(--white);
}

/*==================================================
CONTACT INFO
==================================================*/

.contact-section__info-item {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eaeaea;
}

.contact-section__info-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.contact-section__info-item h6 {
    font-family: var(--font-black);
    font-size: 1.4rem;
    color: var(--light-black);
    line-height: 1.5;
    margin: 0;
}

.contact-section__info-item p {
    font-family: var(--font-regular);
    font-size: 1.4rem;
    color: var(--light-black);
    line-height: 1.5;
    margin: 0;
}

.contact-section__info-item p a {
    color: var(--light-black);
    text-decoration: none;
    transition: var(--transition);
}

.contact-section__info-item p a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .contact-section__accent {
        width: 10rem;
    }
}

@media (max-width: 767px) {
    .contact-section__heading h2 {
        font-size: 2.4rem;
    }

    .contact-section__btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .contact-section__form .form-control {
        font-size: 1.4rem;
    }

    .contact-section__info-item h6 {
        font-size: 1.5rem;
    }
}

/*==================================================
LOCATIONS SECTION
==================================================*/

.locations-section {
    background: var(--bg-color);
    padding: 5rem 0;
}

.locations-section__heading {
    margin-bottom: 1.6rem;
}

.locations-section__heading h3 {
    font-family: var(--sub-font-bold);
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.locations-section__accent {
    display: block;
    width: 8rem;
    height: 0.3rem;
    background: #fed426;
}

.locations-section__address {
    font-family: var(--font-regular);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--light-black);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.locations-section__item p {
    font-family: var(--font-regular);
    font-size: 1.4rem;
    color: var(--light-black);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.locations-section__item p strong {
    font-family: var(--font-bold);
    color: #222;
    margin-right: 0.3rem;
}

.locations-section__item p a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

.locations-section__item p a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.locations-section__map {
    position: relative;
    margin-top: 1.5rem;
    border-radius: 0.6rem;
    overflow: hidden;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
}

.locations-section__map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.locations-section__link {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-bold);
    font-size: 1.3rem;
    padding: 0.8rem 1.4rem;
    border-radius: 0.4rem;
    text-decoration: none;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.locations-section__link i {
    font-size: 1.1rem;
}

.locations-section__link:hover {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 1199px) {
    .locations-section__map iframe {
        height: 20rem;
    }
}

@media (max-width: 767px) {
    .locations-section__heading h3 {
        font-size: 1.8rem;
    }

    .locations-section__map iframe {
        height: 22rem;
    }
}

@media (max-width: 575px) {
    .locations-section {
        padding: 4rem 0;
    }

    .locations-section__link {
        font-size: 1.2rem;
        padding: 0.7rem 1.2rem;
    }
}

/* ===============================
SCROLL TO TOP
================================ */

.safeflex-scroll-top {
    position: fixed;

    right: 3rem;

    bottom: 3rem;

    width: 5rem;

    height: 5rem;

    border: none;

    border-radius: 50%;

    background: #fff;

    color: #333;

    font-size: 1.6rem;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(1rem);

    transition: 0.3s;

    z-index: 999;
}

.safeflex-scroll-top.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.safeflex-scroll-top:hover {
    background: var(--primary);

    color: #fff;
}

@media (max-width: 575px) {
    .safeflex-scroll-top {
        right: 1.5rem;

        bottom: 1.5rem;

        width: 4.2rem;

        height: 4.2rem;

        font-size: 1.4rem;
    }
}