/* Extracted from app/Views/frontend/partials/styles.php during CSS refactor. */

footer {
        position: relative;
        overflow: hidden;
    }

    footer::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(40, 167, 69, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(40, 167, 69, 0.04) 1px, transparent 1px);
        background-size: 48px 48px;
        pointer-events: none;
        z-index: 0;
    }

    footer>* {
        position: relative;
        z-index: 1;
    }

    .contact-section {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
        padding-top: 72px;
        padding-bottom: 72px;
        color: #fff;
    }

    .contact-section::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .08);
        pointer-events: none;
    }

    .contact-section::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: 14%;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .06);
        pointer-events: none;
    }

    .contact-section .container {
        position: relative;
        z-index: 1;
    }

    .contact-section .section-title h2 {
        color: #fff;
    }

    .contact-section .section-title .title-tag {
        color: rgba(255, 255, 255, .82);
    }

    .contact-section .contact-list li {
        color: rgba(255, 255, 255, .9);
    }

    .contact-section .contact-list li i {
        color: #fff;
    }

    .contact-section .contact-form {
        background: #fff;
        border-radius: 20px;
        padding: 34px;
        box-shadow: 0 20px 44px rgba(0, 0, 0, .2);
    }

    .contact-section .contact-form .title {
        color: #1a1a1a;
    }

    .contact-section .contact-form input[type=text],
    .contact-section .contact-form input[type=email],
    .contact-section .contact-form textarea {
        background: #f8f9fa;
        border: 1.5px solid #e9ecef;
        border-radius: 12px;
        color: #1a1a1a;
    }

    .contact-section .contact-form input[type=text]:focus,
    .contact-section .contact-form input[type=email]:focus,
    .contact-section .contact-form textarea:focus {
        border-color: #28a745;
        background: #fff;
    }

    .contact-section .contact-form input[type=submit] {
        background: #111827;
        color: #fff;
        border-radius: 12px;
        font-weight: 700;
        transition: .25s ease;
    }

    .contact-section .contact-form input[type=submit]:hover {
        background: #000;
        transform: translateY(-1px);
    }

    @media (max-width: 991px) {
        .contact-section {
            padding-top: 56px;
            padding-bottom: 56px;
        }

        .contact-section .contact-form {
            padding: 24px;
        }
    }

    .promo-ticker {
        overflow: hidden;
        background: #16ad44;
        color: #fff;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 10px 0;
    }

    .haeder-absolute~.promo-ticker {
        margin-top: 90px;
    }

    .promo-ticker__inner {
        display: flex;
        white-space: nowrap;
        width: max-content;
        will-change: transform;
        animation: promoTickerScroll var(--ticker-duration, 22s) linear infinite;
    }

    .promo-ticker:hover .promo-ticker__inner {
        animation-play-state: paused;
    }

    .promo-ticker__item {
        padding: 0 48px;
        flex-shrink: 0;
    }

    .promo-ticker__dot {
        color: rgba(0, 0, 0, .4);
        margin: 0 12px;
    }

    @media (prefers-reduced-motion: reduce) {
        .promo-ticker__inner {
            animation: none;
            transform: translateX(0);
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .haeder-absolute~.promo-ticker {
            margin-top: 83px;
        }
    }

    @media (max-width: 767px) {
        .haeder-absolute~.promo-ticker {
            margin-top: 70px;
        }
    }

    @keyframes promoTickerScroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    header .mobilemenu,
    header .mobile-nav-toggle,
    header .mobile-nav-backdrop,
    header .mobile-nav-panel {
        display: none;
    }

    @media (max-width: 991px) {
        header .header-right .off-canver-menu {
            display: none !important;
        }

        header .mobilemenu,
        header .mobile-nav-toggle,
        header .mobile-nav-backdrop,
        header .mobile-nav-panel {
            display: block;
        }

        header .mobilemenu {
            display: block;
        }

        header .mobile-nav-toggle {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0;
            width: 42px;
            height: 42px;
            padding: 0;
            margin-left: 12px;
            appearance: none;
            border: 1px solid rgba(46, 204, 64, .42);
            border-radius: 12px;
            background: rgba(255, 255, 255, .05);
            box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
        }

        header .mobile-nav-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            margin: 3px 0;
            background: #2ecc40;
            transition: .25s ease;
        }

        header.mobile-nav-open .mobile-nav-toggle span:nth-child(1) {
            transform: translateY(5px) rotate(45deg);
        }

        header.mobile-nav-open .mobile-nav-toggle span:nth-child(2) {
            opacity: 0;
        }

        header.mobile-nav-open .mobile-nav-toggle span:nth-child(3) {
            transform: translateY(-5px) rotate(-45deg);
        }

        header .mobile-nav-backdrop {
            position: fixed;
            inset: 0;
            z-index: 997;
            opacity: 0;
            visibility: hidden;
            border: 0;
            background: rgba(6, 9, 7, .78);
            backdrop-filter: blur(4px);
            transition: .25s ease;
        }

        header.mobile-nav-open .mobile-nav-backdrop {
            opacity: 1;
            visibility: visible;
        }

        header .mobile-nav-panel {
            position: fixed;
            top: 0;
            right: 0;
            width: min(420px, 100vw);
            height: 100vh;
            z-index: 998;
            overflow-y: auto;
            overflow-x: hidden;
            transform: translateX(100%);
            transition: transform .3s ease;
            background: radial-gradient(circle at 15% 20%, rgba(46, 204, 64, .16) 0%, rgba(17, 17, 17, .95) 45%, #090909 100%);
        }

        header.mobile-nav-open .mobile-nav-panel {
            transform: translateX(0);
        }

        header .mobile-nav-panel::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(46, 204, 64, .08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(46, 204, 64, .08) 1px, transparent 1px);
            background-size: 34px 34px;
            opacity: .24;
            z-index: 0;
        }

        header .mobile-nav-panel::after {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, .17) 2px, rgba(0, 0, 0, .17) 4px);
            opacity: .34;
            z-index: 0;
        }

        header .mobile-nav-panel>* {
            position: relative;
            z-index: 2;
        }

        header .mobile-nav-panel .mobile-nav-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 20px 14px;
            border-bottom: 1px solid rgba(245, 245, 240, .16);
        }

        header .mobile-nav-panel .mobile-nav-brand img {
            max-height: 34px;
        }

        header .mobile-nav-panel .mobile-nav-close {
            position: relative;
            width: 42px;
            height: 42px;
            flex: 0 0 42px;
            border: 1px solid rgba(245, 245, 240, .2);
            border-radius: 12px;
            background: rgba(255, 255, 255, .05);
        }

        header .mobile-nav-panel .mobile-nav-close span {
            position: absolute;
            left: 10px;
            right: 10px;
            top: 50%;
            height: 2px;
            background: #f5f5f0;
            border-radius: 2px;
        }

        header .mobile-nav-panel .mobile-nav-close span:nth-child(1) {
            transform: translateY(-1px) rotate(45deg);
        }

        header .mobile-nav-panel .mobile-nav-close span:nth-child(2) {
            transform: translateY(-1px) rotate(-45deg);
        }

        header .mobile-nav-panel .mobile-nav-intro {
            margin: 6px 16px 12px;
            padding: 14px 14px 12px;
            border: 1px solid rgba(245, 245, 240, .14);
            border-radius: 14px;
            background: rgba(255, 255, 255, .02);
        }

        header .mobile-nav-panel .mobile-nav-intro p {
            margin: 0;
            color: rgba(245, 245, 240, .72);
            line-height: 1.55;
            font-size: 15px;
        }

        header .mobile-nav-panel .mobile-nav-actions {
            margin-top: 12px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }

        header .mobile-nav-panel .mobile-nav-btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-size: 12px;
            font-weight: 800;
            border-radius: 12px;
            padding: 12px;
            border: 1px solid transparent;
        }

        header .mobile-nav-panel .mobile-nav-btn--primary {
            color: #101010;
            background: #2ecc40;
            box-shadow: 0 10px 24px rgba(46, 204, 64, .22);
        }

        header .mobile-nav-panel .mobile-nav-btn--ghost {
            color: #f5f5f0;
            border-color: rgba(245, 245, 240, .28);
        }

        header .mobile-nav-panel>ul {
            padding: 4px 0 10px;
        }

        header .mobile-nav-panel ul li>a {
            color: #f5f5f0;
            font-size: 18px;
            border-top: 1px solid rgba(245, 245, 240, .1);
            position: relative;
            padding: 10px 14px 10px 48px;
        }

        header .mobile-nav-panel>ul>li>a::after {
            content: '';
            position: absolute;
            left: 26px;
            top: 50%;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #2ecc40;
            box-shadow: 0 0 0 0 rgba(46, 204, 64, .45);
            transform: translateY(-50%);
            animation: mobileMenuDotPulse 1.8s ease-out infinite;
        }

        header .mobile-nav-panel ul li>a:hover {
            background: rgba(46, 204, 64, .09);
            color: #2ecc40;
        }

        header .mobile-nav-panel ul li.has-submenu>.mobile-submenu-toggle {
            position: absolute;
            top: 8px;
            right: 14px;
            width: 32px;
            height: 32px;
            border: 1px solid rgba(245, 245, 240, .2);
            border-radius: 50%;
            background: rgba(255, 255, 255, .03);
            color: #f5f5f0;
        }

        header .mobile-nav-panel ul li.has-submenu.submenu-open>.mobile-submenu-toggle {
            border-color: #2ecc40;
            background: rgba(46, 204, 64, .2);
        }

        header .mobile-nav-panel ul li.has-submenu>ul {
            display: none;
            background: rgba(255, 255, 255, .03);
        }

        header .mobile-nav-panel ul li.has-submenu.submenu-open>ul {
            display: block;
        }

        header .mobile-nav-panel ul li.has-submenu>ul li>a {
            color: rgba(245, 245, 240, .84);
            padding: 9px 12px 9px 34px;
        }

        header .mobile-nav-panel ul li.has-submenu>ul li>a::before,
        header .mobile-nav-panel ul li.has-submenu>ul li>a::after {
            content: none;
        }

        header .mobile-nav-panel .mobile-nav-search {
            padding: 10px 16px 12px;
        }

        header .mobile-nav-panel .mobile-nav-search form {
            display: flex;
            gap: 10px;
        }

        header .mobile-nav-panel .mobile-nav-search input {
            flex: 1;
            min-width: 0;
            height: 48px;
            border: 1px solid rgba(245, 245, 240, .24);
            border-radius: 12px;
            background: rgba(255, 255, 255, .04);
            color: #f5f5f0;
            padding: 0 14px;
        }

        header .mobile-nav-panel .mobile-nav-search button {
            width: 48px;
            height: 48px;
            border: 0;
            border-radius: 12px;
            background: #2ecc40;
            color: #101010;
            flex: 0 0 48px;
        }

        header .mobile-nav-panel .mobile-nav-info {
            margin: 0 16px 12px;
            padding: 10px 0 8px;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-card {
            border: 0;
            background: transparent;
            padding: 0;
            margin-bottom: 14px;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-card:last-child {
            margin-bottom: 0;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-quick-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 8px;
            border: 1px solid rgba(245, 245, 240, .14);
            border-radius: 10px;
            background: rgba(255, 255, 255, .02);
            padding: 7px 9px;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-phone {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #f5f5f0;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-phone i {
            color: #2ecc40;
            font-size: 13px;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-social-inline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-list li {
            display: grid;
            grid-template-columns: 28px 1fr;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            border: 1px solid rgba(245, 245, 240, .14);
            border-radius: 10px;
            background: rgba(255, 255, 255, .02);
            padding: 8px 10px;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-list li:last-child {
            margin-bottom: 0;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-icon {
            color: #2ecc40;
            text-align: center;
            font-size: 12px;
            width: 24px;
            height: 24px;
            line-height: 24px;
            border-radius: 50%;
            background: rgba(46, 204, 64, .12);
            border: 1px solid rgba(46, 204, 64, .28);
        }

        header .mobile-nav-panel .mobile-nav-info .mni-link {
            color: rgba(245, 245, 240, .92);
            font-size: 14px;
            font-weight: 600;
            line-height: 1.35;
            word-break: break-word;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-social-link {
            width: 34px;
            height: 34px;
            line-height: 34px;
            border: 1px solid rgba(245, 245, 240, .3);
            border-radius: 50%;
            text-align: center;
            background: rgba(255, 255, 255, .03);
            color: #f5f5f0;
            font-size: 13px;
        }

        header .mobile-nav-panel .mobile-nav-info .mni-social-link:hover {
            background: #2ecc40;
            border-color: #2ecc40;
            color: #101010;
        }

        header .mobile-nav-panel .mobile-nav-ticker {
            margin: 0 20px 16px;
            border-radius: 10px;
            background: #2ecc40;
            color: #0b0b0b;
            overflow: hidden;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 8px 0;
        }

        header .mobile-nav-panel .mobile-nav-ticker__inner {
            display: flex;
            align-items: center;
            white-space: nowrap;
            width: max-content;
            animation: mobileNavTicker 16s linear infinite;
        }

        header .mobile-nav-panel .mobile-nav-ticker__inner span {
            padding: 0 12px;
        }

        @media (max-width: 575px) {
            header .mobile-nav-toggle {
                width: 42px;
                height: 42px;
                margin-left: 10px;
            }

            header .mobile-nav-panel {
                width: 100vw;
            }

            header .mobile-nav-panel ul li>a {
                padding: 9px 12px 9px 40px;
                font-size: 18px;
            }

            header .mobile-nav-panel>ul>li>a::after {
                left: 16px;
            }

            header .mobile-nav-panel .mobile-nav-info {
                margin: 0 12px 10px;
                padding: 10px 0;
            }
        }
    }

    @keyframes mobileMenuDotPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(46, 204, 64, .42);
            opacity: .9;
        }

        70% {
            box-shadow: 0 0 0 8px rgba(46, 204, 64, 0);
            opacity: 1;
        }

        100% {
            box-shadow: 0 0 0 0 rgba(46, 204, 64, 0);
            opacity: .9;
        }
    }

    @keyframes mobileNavTicker {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    .off-canvas-wrap.off-canvas-creative {
        width: 500px;
    }

    .off-canvas-wrap.off-canvas-creative:not(.show-off-canvas) {
        margin-right: -500px;
    }

    .off-canvas-wrap.off-canvas-creative .overly {
        background-color: #060907;
    }

    .off-canvas-wrap.off-canvas-creative .overly.show-overly {
        opacity: .72;
    }

    .off-canvas-wrap.off-canvas-creative .off-canvas-widget {
        background: radial-gradient(circle at 15% 20%, rgba(46, 204, 64, .16) 0%, rgba(17, 17, 17, .95) 45%, #090909 100%);
        color: #f5f5f0;
        padding: 30px 42px 5px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .off-canvas-wrap.off-canvas-creative .off-canvas-widget::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image:
            linear-gradient(rgba(46, 204, 64, .08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(46, 204, 64, .08) 1px, transparent 1px);
        background-size: 36px 36px;
        opacity: .25;
    }

    .off-canvas-wrap.off-canvas-creative .off-canvas-widget::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, .2) 2px, rgba(0, 0, 0, .2) 4px);
        opacity: .35;
    }

    .off-canvas-wrap.off-canvas-creative .off-canvas-widget>* {
        position: relative;
        z-index: 2;
    }

    .off-canvas-wrap.off-canvas-creative .off-canvas-widget a.off-canvas-close {
        right: 36px;
        top: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0;
        line-height: 0;
        font-size: 0;
        text-align: center;
        border: 1px solid rgba(245, 245, 240, .28);
        border-radius: 50%;
        color: #f5f5f0;
        transition: all .25s ease;
        z-index: var(--legacy-z-floating, 993);
    }

    .off-canvas-wrap.off-canvas-creative .off-canvas-widget a.off-canvas-close:hover {
        color: #2ecc40;
        border-color: #2ecc40;
        transform: rotate(90deg);
    }

    .off-canvas-wrap.off-canvas-creative .off-canvas-widget .widget {
        margin-bottom: 34px;
        border-bottom: 1px solid rgba(245, 245, 240, .13);
        padding-bottom: 30px;
    }

    .off-canvas-wrap.off-canvas-creative .off-canvas-widget .widget:last-child {
        margin-bottom: 0;
    }

    .off-canvas-wrap.off-canvas-creative .widget .widget-title {
        color: #f5f5f0;
        font-size: 24px;
        margin-bottom: 14px;
    }

    .off-canvas-wrap.off-canvas-creative .welcome-widget .widget-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #2ecc40;
        margin-bottom: 18px;
    }

    .off-canvas-wrap.off-canvas-creative .welcome-widget .widget-kicker::before,
    .off-canvas-wrap.off-canvas-creative .welcome-widget .widget-kicker::after {
        content: '';
        width: 18px;
        height: 2px;
        background: #2ecc40;
    }

    .off-canvas-wrap.off-canvas-creative .welcome-widget .widget-subtitle {
        margin-bottom: 20px;
        line-height: 1.65;
        color: rgba(245, 245, 240, .72);
    }

    .off-canvas-wrap.off-canvas-creative .canvas-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .off-canvas-wrap.off-canvas-creative .canvas-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 12px;
        font-weight: 800;
        padding: 14px 16px;
        border-radius: 12px;
        border: 1px solid transparent;
        transition: all .25s ease;
    }

    .off-canvas-wrap.off-canvas-creative .canvas-btn--primary {
        background: #2ecc40;
        color: #101010;
    }

    .off-canvas-wrap.off-canvas-creative .canvas-btn--primary:hover {
        background: #38d84b;
        color: #050505;
        transform: translateY(-1px);
    }

    .off-canvas-wrap.off-canvas-creative .canvas-btn--ghost {
        border-color: rgba(245, 245, 240, .28);
        color: #f5f5f0;
    }

    .off-canvas-wrap.off-canvas-creative .canvas-btn--ghost:hover {
        border-color: #2ecc40;
        color: #2ecc40;
    }

    .off-canvas-wrap.off-canvas-creative .widget.contact-widget ul li {
        color: rgba(245, 245, 240, .85);
        font-size: 16px;
        margin-bottom: 14px;
        padding-left: 30px;
    }

    .off-canvas-wrap.off-canvas-creative .widget.contact-widget ul li i {
        color: #2ecc40;
        font-size: 14px;
        top: 4px;
        transform: none;
    }

    .off-canvas-wrap.off-canvas-creative .widget.contact-widget ul li a {
        color: #f5f5f0;
    }

    .off-canvas-wrap.off-canvas-creative .widget.contact-widget ul li a:hover {
        color: #2ecc40;
    }

    .off-canvas-wrap.off-canvas-creative .widget.social-widget ul li {
        display: flex;
        flex-wrap: wrap;
    }

    .off-canvas-wrap.off-canvas-creative .widget.social-widget ul li a {
        border-color: rgba(245, 245, 240, .28);
        color: #f5f5f0;
        background: rgba(255, 255, 255, .03);
    }

    .off-canvas-wrap.off-canvas-creative .widget.social-widget ul li a:hover {
        background: #2ecc40;
        border-color: #2ecc40;
        color: #101010;
    }

    .off-canvas-wrap.off-canvas-creative .canvas-ticker {
        margin-top: -10px;
        border-radius: 10px;
        background: #2ecc40;
        color: #0b0b0b;
        overflow: hidden;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 9px 0;
    }

    .off-canvas-wrap.off-canvas-creative .canvas-ticker__inner {
        display: flex;
        align-items: center;
        white-space: nowrap;
        width: max-content;
        animation: canvasTickerScroll 16s linear infinite;
    }

    .off-canvas-wrap.off-canvas-creative .canvas-ticker__item {
        padding: 0 16px;
    }

    .off-canvas-wrap.off-canvas-creative .canvas-ticker__dot {
        opacity: .55;
    }

    footer .widget.contact-widget .contact-info li i {
        display: inline-block;
        margin-right: 12px;
    }

    @keyframes canvasTickerScroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

@media (max-width: 575px) {
        .off-canvas-wrap.off-canvas-creative {
            width: 100%;
        }

        .off-canvas-wrap.off-canvas-creative:not(.show-off-canvas) {
            margin-right: -100%;
        }

        .off-canvas-wrap.off-canvas-creative .off-canvas-widget {
            padding: 78px 22px 66px;
        }

        .off-canvas-wrap.off-canvas-creative .widget .widget-title {
            font-size: 21px;
        }
    }

.our-service-cards .services__slide {
    min-width: clamp(260px, 22vw, 340px) !important;
    max-width: 100%;
}

.go-top-area .go-top .go-top-icon {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    pointer-events: none;
    transform: translateY(-50%);
    transition: all 0.5s ease-out 0s;
}

.go-top-area .go-top .go-top-icon:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.go-top-area .go-top .go-top-icon svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.go-top-area .go-top:focus .go-top-icon:first-child,
.go-top-area .go-top:hover .go-top-icon:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.go-top-area .go-top:focus .go-top-icon:last-child,
.go-top-area .go-top:hover .go-top-icon:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.off-canvas-wrap.off-canvas-creative .off-canvas-widget a.off-canvas-close .icon-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.off-canvas-wrap.off-canvas-creative .off-canvas-widget a.off-canvas-close .icon-close svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-tab.tab-btn {
    cursor: pointer;
}

@media (max-width: 991px) {
    .our-service-section .service-tabs ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 12px;
        padding-bottom: 0;
        white-space: normal;
    }

    .our-service-section .service-tabs ul li {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 0;
        padding: 0 14px;
        line-height: 36px;
    }
}

@media (max-width: 991px) {
    .our-service-cards .services__slide,
    .services__slide {
        width: min(232px, calc(100vw - 48px)) !important;
        min-width: 0 !important;
        max-width: calc(100vw - 48px) !important;
    }
}

@media (max-width: 574px) {
    .our-service-cards .services__slide,
    .services__slide {
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
    }
}
