
        /* ==========================================
               ESTABLISHMENT COMPLIANCE CAROUSEL
            ========================================== */
        .establishmentSwiper {
            width: 100%;
            padding: 10px 55px 60px !important;
            overflow: hidden;
        }

        .establishmentSwiper .swiper-wrapper {
            align-items: stretch;
        }

        .establishmentSwiper .swiper-slide {
            height: auto;
            display: flex;
        }

        /* CARD */
        .compliance-card {
            width: 100%;
            background: #ffffff;
            border-radius: 18px;
            padding: 24px;
            border: 1px solid #eeeeee;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .compliance-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
        }

        /* IMAGE */
        .compliance-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            object-position: center;
            border-radius: 14px;
            display: block;
            margin-bottom: 20px;
        }

        /* TITLE */
        .compliance-card h3 {
            font-family: "Outfit", sans-serif;
            font-size: 25px;
            font-weight: 600;
            color: #111111;
            margin: 0 0 12px;
        }

        /* LIST */
        .compliance-card ul {
            margin: 0;
            padding-left: 20px;
            color: #555555;
            font-family: "Outfit", sans-serif;
            font-size: 15px;
            line-height: 1.7;
        }

        .compliance-card li {
            margin-bottom: 6px;
        }

        /* ==========================================
               NAVIGATION
            ========================================== */
        .establishmentSwiper .swiper-button-next,
        .establishmentSwiper .swiper-button-prev {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #173b8f;
            margin-top: -35px;
        }

        .establishmentSwiper .swiper-button-next:after,
        .establishmentSwiper .swiper-button-prev:after {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
        }

        .establishmentSwiper .swiper-button-next:hover,
        .establishmentSwiper .swiper-button-prev:hover {
            background: #ffcd00;
        }

        .establishmentSwiper .swiper-button-next:hover:after,
        .establishmentSwiper .swiper-button-prev:hover:after {
            color: #173b8f;
        }

        /* ==========================================
               PAGINATION
            ========================================== */
        .establishmentSwiper .swiper-pagination {
            bottom: 10px;
        }

        .establishmentSwiper .swiper-pagination-bullet {
            width: 9px;
            height: 9px;
            background: #d5d5d5;
            opacity: 1;
        }

        .establishmentSwiper .swiper-pagination-bullet-active {
            background: #173b8f;
        }

        /* ==========================================
               MOBILE
            ========================================== */
        @media (max-width: 767px) {
            .establishmentSwiper {
                padding-left: 5px !important;
                padding-right: 5px !important;
                padding-bottom: 55px !important;
            }

            .compliance-card {
                padding: 20px;
            }

            .compliance-card img {
                height: 170px;
            }

            .compliance-card h3 {
                font-size: 23px;
            }

            .establishmentSwiper .swiper-button-next,
            .establishmentSwiper .swiper-button-prev {
                display: none;
            }
        }

        /* ==========================================
               TABLET
            ========================================== */
        @media (min-width: 768px) and (max-width: 1023px) {
            .establishmentSwiper {
                padding-left: 35px !important;
                padding-right: 35px !important;
            }
        }

        .animate1-border {
            border-radius: 10%;
        }

        .animate1-border {
            border: 2px solid transparent;
            border-radius: 12px;
            background:
                linear-gradient(white, white) padding-box,
                linear-gradient(90deg,
                    #ff4d4d,
                    #ff9f43,
                    #feca57,
                    #1dd1a1,
                    #48dbfb,
                    #5f27cd,
                    #ff4d4d) border-box;
            background-size: 100% 100%, 300% 100%;
            animation: borderColors 4s linear infinite;
        }

        @keyframes borderColors {
            0% {
                background-position: 0 0, 0% 50%;
            }

            50% {
                background-position: 0 0, 100% 50%;
            }

            100% {
                background-position: 0 0, 0% 50%;
            }
        }

        .hero-button-animation {
            opacity: 0;
            transform: translateX(0px);
            animation: heroButtonIn 1.2s ease-in forwards;
            animation-delay: 1.50s;
        }

        @keyframes heroButtonIn {
            0% {
                opacity: 0;
                transform: translateX(0px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }
    