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;

    background-color: var(--white);
}

.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,
.safeflex-header__nav #primary-menu {
    height: 100%;

    display: flex;

    align-items: center;
}

.safeflex-navbar__list li,
.safeflex-header__nav #primary-menu li {
    height: 100%;

    position: relative;
}

.safeflex-header__nav .menu-menu-1-container {
    height: 100%;
}

.safeflex-navbar__list li a,
.safeflex-header__nav #primary-menu 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,
.safeflex-header__nav #primary-menu li.current-menu-item a {
    background: #3d368f;

    color: #fff;
}

.safeflex-navbar__list li:hover>a,
.safeflex-header__nav #primary-menu li:hover a {
    background: #3d368f;

    color: #fff;
}

/* ===============================
DROPDOWN
================================ */

.safeflex-dropdown,
.safeflex-header__nav #primary-menu .sub-menu {
    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,
.safeflex-header__nav #primary-menu .sub-menu li {
    height: auto;
}

.safeflex-dropdown li a,
.safeflex-header__nav #primary-menu .sub-menu a {
    height: auto;

    padding: 1.5rem;
}

.dropdown:hover .safeflex-dropdown,
.safeflex-header__nav #primary-menu li:has(.sub-menu):hover .sub-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

@media (min-width: 1200px) {
    .safeflex-navbar__list>li.dropdown>a>i {
        display: none;
    }
}

/* ===============================
SEARCH
================================ */



.safeflex-search,
.safeflex-header div.asl_m .probox .proinput form {
    margin-left: auto !important;

    display: flex !important;

    height: 3.5rem !important;

    position: relative !important;
    padding-bottom: 2px !important;
}

.safeflex-search input,
#ajaxsearchlite1 .probox .proinput input,
div.asl_w .probox .proinput input {
    width: 19.5rem !important;
    border: 1px solid #222 !important;
    padding: 0 1rem !important;
    font-family: var(--font-regular) !important;
    font-size: 14px !important;
    line-height: 21px !important;
    color: var(--light-black) !important;
    border-radius: 4px !important;
    padding-right: 3rem !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    -ms-border-radius: 4px !important;
    -o-border-radius: 4px !important;
    height: 100% !important;
}

#ajaxsearchlite1 .probox,
div.asl_w .probox {
    height: 100% !important;
}

#ajaxsearchliteres1 {
    width: 197px !important;
}

div.asl_r .results .item .asl_content h3 a {
    font-family: var(--font-bold) !important;
    font-size: 14px !important;
    color: var(--black) !important;
}

div.asl_m .probox .proclose svg {
    margin: 0 !important;
    left: auto !important;
    top: 60% !important;
    right: 13px !important;
    transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    -moz-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    -o-transform: translateY(-50%) !important;
}

div.asl_w {
    box-shadow: none !important;
}

div.asl_m .probox .proinput {
    margin: 0px !important;
    padding: 0 !important;
}

.safeflex-search button,
div.asl_w .probox .promagnifier {
    background: transparent !important;
    border: none !important;
    position: absolute !important;
    top: 50% !important;
    right: 1rem !important;
    transform: translateY(-50%) !important;
    color: var(--primary) !important;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    -webkit-transform: translateY(-50%) !important;
    -moz-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    -o-transform: translateY(-50%) !important;
}

/* ===============================
MOBILE BUTTON
================================ */

.safeflex-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 4.5rem;
    min-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));
}

.safeflex-hero__overlay--none {
    background: none;
}

/* 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;
}

/* HERO INTRO SLIDE (tagline + rotating word) */

.safeflexHeroSwiper .swiper-slide--intro {
    align-items: flex-start;
}

.safeflex-hero .swiper-slide--intro .safeflex-container {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: clamp(3rem, 8vw, 7rem);
}

.safeflex-hero__content--intro {
    text-align: left;
    max-width: 60rem;
    margin-left: 22%;
}

.safeflex-hero__content--intro h1 {
    text-align: left;
    width: auto;
    margin: 0;
    color: var(--primary);
    font-weight: 700;
}

.safeflex-hero__tagline {
    font-family: var(--font-regular);
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    line-height: 1.5;
    color: var(--primary);
    max-width: 60rem;
    margin: 1.5rem 0 0;
}

.safeflex-hero__rotator {
    position: relative;
    height: clamp(3.6rem, 6vw, 6rem);
    margin-top: 1.5rem;
    overflow: hidden;
}

.safeflex-hero__rotator-word {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--font-regular);
    font-weight: 700;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    letter-spacing: 0.1rem;
    color: var(--primary);
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.safeflex-hero__rotator-word.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.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;
}

/* INTRO SLIDE ENTRANCE ANIMATIONS (randomized each time slide 1 appears) */

.swiper-slide--intro img {
    transform-origin: center center;
    will-change: transform, opacity;
}

.hero-intro-anim-zoom {
    animation: heroIntroZoom 1.8s ease both;
}

.hero-intro-anim-slide-left {
    animation: heroIntroSlideLeft 1.4s ease both;
}

.hero-intro-anim-slide-down {
    animation: heroIntroSlideDown 1.4s ease both;
}

.hero-intro-anim-flip {
    animation: heroIntroFlip 1.3s ease both;
}

.hero-intro-anim-rotate {
    animation: heroIntroRotate 1.5s ease both;
}

@keyframes heroIntroZoom {
    from {
        transform: scale(1.3);
        opacity: 0.3;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes heroIntroSlideLeft {
    from {
        transform: translateX(10%) scale(1.05);
        opacity: 0;
    }

    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes heroIntroSlideDown {
    from {
        transform: translateY(-10%) scale(1.05);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes heroIntroFlip {
    from {
        transform: perspective(1200px) rotateY(35deg) scale(1.1);
        opacity: 0;
    }

    to {
        transform: perspective(1200px) rotateY(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes heroIntroRotate {
    from {
        transform: rotate(-6deg) scale(1.15);
        opacity: 0;
    }

    to {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

/* ====================== */

.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(3rem, 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,
    .safeflex-header__nav .menu-menu-1-container {
        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,
    .safeflex-header__nav .menu-menu-1-container.active {
        left: 0;
    }

    .safeflex-navbar__list,
    .safeflex-header__nav #primary-menu {
        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,
    .safeflex-header__nav #primary-menu li {
        height: auto;
    }

    .safeflex-navbar__list li a,
    .safeflex-header__nav #primary-menu a {
        height: auto;

        padding: 1.5rem 2rem;

        position: relative;
    }



    /* 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-header__nav #primary-menu li.menu-item-has-children>a::before {
        content: "\f107";
        font-family: "FONTAWESOME";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        right: 19px;
        font-size: 2rem;
        transition: 0.3s transform;
    }

    .safeflex-header__nav #primary-menu li.open.menu-item-has-children>a::before {
        transform: translateY(-50%) rotate(180deg);
        -webkit-transform: translateY(-50%) rotate(180deg);
        -moz-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
        -o-transform: translateY(-50%) rotate(180deg);
    }

    .safeflex-dropdown,
    .safeflex-header__nav #primary-menu .sub-menu {
        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,
    .safeflex-header__nav #primary-menu li.open .sub-menu {
        max-height: 30rem;
    }

    .safeflex-dropdown li a,
    .safeflex-header__nav #primary-menu li .sub-menu a {
        padding-left: 3.5rem;
    }

    .safeflex-header {
        position: sticky;
        top: 0;
    }

    .safeflex-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

@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);
    }

    .safeflex-hero .swiper-slide--intro .safeflex-hero__overlay--none {
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.55),
                rgba(255, 255, 255, 0.15));
    }

    .safeflex-hero .swiper-slide--intro .safeflex-container {
        padding-top: 2.5rem;
    }

    .safeflex-hero__content--intro {
        text-align: left;
        margin-left: 6%;
        max-width: 88%;
    }

    .safeflex-hero__content--intro h1 {
        font-size: clamp(2.2rem, 6vw, 3rem);
    }

    .safeflex-hero__tagline {
        font-size: 1.5rem;
        margin-top: 1rem;
    }

    .safeflex-hero__rotator {
        height: 4rem;
        margin-top: 1rem;
    }

    .safeflex-hero__rotator-word {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .footer-section .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .safeflex-hero {
        height: 30rem;
    }

    .safeflex-hero .swiper-slide--intro .safeflex-container {
        padding-top: 1.5rem;
    }

    .safeflex-hero__content--intro {
        margin-left: 5%;
        max-width: 90%;
    }

    .safeflex-hero__content--intro h1 {
        font-size: clamp(1.9rem, 7vw, 2.4rem);
        line-height: 1.15;
    }

    .safeflex-hero__tagline {
        font-size: 1.3rem;
        line-height: 1.35;
        margin-top: 0.8rem;
    }

    .safeflex-hero__rotator {
        height: 3.2rem;
        margin-top: 0.8rem;
    }

    .safeflex-hero__rotator-word {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .safeflex-navbar,
    .safeflex-header__nav .menu-menu-1-container {
        width: 25rem;
    }

    .safeflex-header {
        flex-direction: column;
        gap: 0;
    }

    .safeflex-header__nav {
        width: 100%;
        justify-content: space-between;
    }

    .safeflex-header__nav .safeflex-container {
        justify-content: space-between !important;
    }

    .safeflex-search {
        margin: 0px !important;
    }
}

@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;
    border: 1px solid #e6e6e6;
}

.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,
table,
.comparison-table-wrapper .table-responsive table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    margin-bottom: 0;
    table-layout: fixed;
}

.comparison-table-wrapper table th,
table th,
table td,
.table-responsive table th,
.comparison-table-wrapper .table td,
.table-responsive table td {
    padding: 1.4rem 1.2rem;
    white-space: nowrap;
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid #ececec;
    font-family: var(--font-regular);
    font-size: 1.4rem;
    line-height: normal;
    color: var(--light-black);
    width: 130px;
}

.table-responsive table th,
table td,
table th,
.table-responsive table td {
    font-family: var(--font-bold);
}

.comparison-table-wrapper table th:first-child,
.table-responsive table th:first-child,
table th:first-child,
table td:first-child,
.table-responsive table td:first-child,
.comparison-table-wrapper .table td:first-child {
    width: 220px;
    white-space: normal;
    text-align: left;
}

.comparison-table-wrapper table thead th,
.table-responsive table thead th,
table thead th {
    background: transparent;
    font-weight: 700;
    font-family: var(--font-regular);
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: normal;
    color: #888;
    border-bottom: 2px solid #333;
}

.comparison-table-wrapper table tbody tr:hover {
    background: #fafafa;
}

.comparison-table-wrapper table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table-wrapper .section-title td {
    font-family: var(--sub-font-bold);
    background: #fafafa;
    font-size: 2rem;
    text-align: center;
    color: #222;
    white-space: normal;
}

.comparison-table-wrapper .sticky-col {
    background: #fff;
    font-weight: 600;
    color: #222;
}

.comparison-table-wrapper .section-title .sticky-col {
    background: #fafafa;
    text-align: center;
}

.comparison-table-wrapper table thead .sticky-col {
    background: transparent;
}

/* ========================= */
/* 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);
    height: 100%;
}

.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) {
    .footer-section .footer-bottom {
        padding-bottom: 7rem;
    }
}

a {
    text-decoration: none;
}

.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}


.floating_btn {
    bottom: 2px !important;
    right: 100px !important;
    width: 50px !important;
    height: 50px !important;
}

.floating_btn .contact_icon {
    width: 50px !important;
    height: 50px !important;
}

.canopies-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.canopies-section p {
    font-family: var(--font-regular);
    font-size: 15px;
    line-height: normal;
    color: var(--light-black);
    line-height: 1.3;
}

.canopies-section .col-md-4 img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.canopies-section .col-md-8 img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.canopies-section table th:first-child,
.canopies-section table td:first-child,
.canopies-section table th,
.canopies-section table td {
    max-width: 150px !important;
    width: 150px !important;
}

.canopies-section table {
    min-width: 500px !important;
}