/*===================================== 
YOU CAN WRIGHT CUSTOME CSS 
======================================*/

/* Language switcher buttons */
.lang-switcher { display:flex; gap:8px; align-items:center; }
.lang-switcher .lang-btn {
    display:inline-block;
    padding:6px 10px;
    font-size:13px;
    font-weight:700;
    color:#2d3a4b; /* default dark */
    background:transparent;
    text-decoration:none;
    border-radius:4px;
    border:1px solid transparent;
}

.widget_services,
.widget_services ul,
.widget_services li {
    /* keep structure; do not change base link color here */
}
/* Keep default (template) link color for normal/visited state so appearance stays the same.
   Only change the color when the user hovers/focuses/activates the link. */
.widget_services a,
.widget_services a:visited {
    color: inherit; /* don't override default */
    text-decoration: none;
}
.widget_services a:hover,
.widget_services a:focus,
.widget_services a:active {
    color: var(--theme-primary) !important;
    text-decoration: none !important;
}

/* If the template adds a specific active class or inline color, target hover specifically with higher specificity */
aside .widget_services a:hover,
.widget_services li a:hover {
    color: var(--theme-primary) !important;
}

/* Change any icons or pseudo-elements inside the link only on hover */
.widget_services a:hover .fa,
.widget_services a:hover i,
.widget_services a:hover::before,
.widget_services a:hover::after {
    color: var(--theme-primary) !important;
}

/* ==========================
   Dropdown / Mega-menu visual overrides
   Ensure dropdown background is white, remove orange accents and
   make hover/active state use theme green with subtle gray highlight.
   ========================== */
/* Background and top border (remove orange top line from template) */
.has-mega-menu .sub-menu,
.has-mega-menu .sub-menu.mega-menu,
.has-submenu .sub-menu,
.nav .sub-menu {
    background: #ffffff !important;
    border-top: 4px solid transparent !important; /* remove orange */
    box-shadow: 0 6px 18px rgba(23,31,46,0.08) !important;
}

/* Submenu link base style */
.sub-menu li a {
    color: #222222 !important;
    background: transparent !important;
    padding: 10px 18px !important;
    display: inline-block !important;
}

/* Hover / focus / active: light gray background + green underline */
.sub-menu li a:hover,
.sub-menu li a:focus,
.sub-menu li.active > a {
    background: #f5f5f5 !important;
    color: #222222 !important;
    position: relative !important;
}

/* Small green underline indicator like the design */
.sub-menu li a:hover::after,
.sub-menu li.active > a::after,
.sub-menu li a:focus::after {
    content: "" !important;
    position: absolute !important;
    left: 18px !important;
    bottom: 8px !important;
    width: 40px !important;
    height: 3px !important;
    background: var(--theme-primary) !important;
}

/* For the small single-column Kurumsal submenu (top small box) */
.has-submenu > .sub-menu {
    min-width: 180px !important;
    padding: 8px 10px !important;
    border-top: 4px solid transparent !important;
}

/* Ensure any template inline/or higher-specificity orange color on links does not override hover */
.has-mega-menu .sub-menu li a:hover,
.has-submenu .sub-menu li a:hover {
    color: var(--theme-primary) !important;
}
.lang-switcher .lang-btn:hover { background: rgba(255,255,255,0.08); color:#fff; }
.lang-switcher .lang-btn.active {
    background:#2d3a4b;
    color:#ffffff;
}


/* ============================================
   GALLERY — make all images consistent size
   ============================================ */
.portfolio-wrap .mt-gallery-bx {
    display: flex;
    flex-direction: column;
}

.portfolio-wrap .mt-gallery-bx .mt-thum-bx {
    height: 220px; /* uniform thumbnail height */
    overflow: hidden;
    display: block;
}

.portfolio-wrap .mt-gallery-bx .mt-thum-bx img,
.gal-img {
    width: 100%;
    height: 100%;
    /* show the whole image (no cropping) while keeping aspect ratio */
    object-fit: contain;
    object-position: center center;
    display: block;
    background-color: #f6f7f9; /* subtle neutral background for portrait images */
}

/* If you prefer filling the box for wide images but still show full portrait images,
   one option is to detect orientation server-side and add a class (e.g. .portrait) to the img
   then use different object-fit; for now we use contain so all images are fully visible. */

/* Smaller thumbnails on very small screens */
@media (max-width: 576px) {
    .portfolio-wrap .mt-gallery-bx .mt-thum-bx {
        height: 160px;
    }
}

/* Theme primary color overrides for service boxes and separators */
:root {
    --theme-primary: #8BC53F;
}

/* Progress bar: ensure template primary (orange) is overridden to theme green
   Keep striped look but use a light stripe overlay on green. */
.progress-bar.site-bg-primary,
.progress-bar.site-bg-primary.progress-bar-striped {
    background-color: var(--theme-primary) !important;
    /* subtle diagonal lighter stripes on top of the green */
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0, rgba(255,255,255,0.12) 10px, transparent 10px, transparent 20px) !important;
    color: #fff !important;
}

/* If template applies a separate solid background for progress bars, override that too */
.progress .progress-bar.site-bg-primary {
    background-color: var(--theme-primary) !important;
}


/* Make icons inside .icon-md use the theme primary green */
.icon-md .icon-cell,
.icon-md .icon-cell i,
.mt-icon-box-wraper .icon-md .icon-cell,
.mt-icon-box-wraper .icon-md .icon-cell i {
    color: var(--theme-primary) !important;
}

/* If icons are inside a bordered circle, update border/background as well */
.icon-md {
    border-color: transparent;
}
.icon-md .icon-cell {
    background: transparent;
}

/* Small accent line under titles inside boxes (if any) */
.mt-icon-box-wraper .mt-separator,
.mt-icon-box-wraper .separator-line {
    background-color: var(--theme-primary) !important;
}

/* Ensure section title separator (the small line under headings) is green */
.section-head .mt-separator,
.mt-separator-outer .mt-separator,
.mt-separator.site-bg-primary {
    background-color: var(--theme-primary) !important;
    /* keep existing dimensions but ensure visible color */
    height: 4px !important;
    width: 60px !important;
    margin: 12px auto !important;
}

/* Also handle possible pseudo-elements used by the template */
.section-head .mt-separator::before,
.section-head .mt-separator::after,
.mt-separator.site-bg-primary::before,
.mt-separator.site-bg-primary::after {
    background-color: var(--theme-primary) !important;
}

/* Make all primary buttons green to match brand */
.site-button,
.site-button.text-uppercase {
    background-color: var(--theme-primary) !important;
    color: #ffffff !important;
    border: none !important;
}
.site-button:hover,
.site-button.text-uppercase:hover {
    background-color: #79ab33 !important; /* slightly darker on hover */
    color: #ffffff !important;
}

/* Read more link button style */
.site-button-link {
    background-color: transparent !important;
    color: var(--theme-primary) !important;
    border: 2px solid var(--theme-primary) !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 8px 20px !important;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    overflow: hidden;
}
.site-button-link:hover {
    background-color: var(--theme-primary) !important;
    color: #fff !important;
    border-color: var(--theme-primary) !important;
}
/* Disable the orange bar pseudo-elements from style.css */
.site-button-link::before,
.site-button-link::after {
    display: none !important;
}

/* ---- Equal-height blog/news cards ---- */
.section-full .section-content > .row,
.blog-grid-wrap.row {
    display: flex;
    flex-wrap: wrap;
}
.section-full .section-content > .row > [class*="col-"],
.blog-grid-wrap.row > [class*="col-"] {
    display: flex;
}
.section-full .blog-post.latest-blog-1,
.blog-post.blog-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.section-full .blog-post.latest-blog-1 .mt-post-info,
.blog-post.blog-grid .mt-post-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.section-full .blog-post.latest-blog-1 .mt-post-text,
.blog-post.blog-grid .mt-post-text {
    flex: 1;
}
.section-full .blog-post.latest-blog-1 .site-button-link,
.blog-post.blog-grid .mt-post-readmore {
    margin-top: auto;
}
.site-button-link {
    position: relative;
    z-index: 2;
}

/* Make read-more buttons consistent and not full-width on cards */
.blog-post .site-button-link,
.latest-blog-1 .site-button-link,
.blog-post.blog-grid .site-button-link,
.blog-post.latest-blog-1 .site-button-link {
    display: inline-block !important;
    padding: 8px 18px !important;
    min-width: 150px;
    max-width: 260px;
    text-align: center;
    box-sizing: border-box;
}
.blog-post .mt-post-readmore,
.blog-post .mt-post-info > .mt-post-readmore {
    /* ensure wrapper doesn't force full width */
    display: block;
}

/* If a card layout uses flex and aligns buttons, keep them at the bottom */
.blog-post .site-button-link {
    margin-top: auto !important;
    align-self: flex-start !important;
}

/* Allow the truck wheels to remain visible while preventing layout issues */
.fillter-left-content {
    overflow: visible;
}

/* Ensure buttons inside overlays (dark backgrounds) still show correctly */
.overlay-2 .site-button {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Make counters and their labels use the primary green */
.mt-icon-box-wraper .counter,
.mt-icon-box-wraper.center .counter {
    color: var(--theme-primary) !important;
}
.mt-icon-box-wraper .m-tb0,
.mt-icon-box-wraper.center h4.m-tb0 {
    color: var(--theme-primary) !important;
}

/* If counters are styled as numbers inside other wrappers, target common classes */
.counter.font-50,
.counter.font-50.font-weight-800 {
    color: var(--theme-primary) !important;
}


/* Contact detail boxes (override original orange styles) */
.mt-icon-box-wraper.bx-style-2 {
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    border-radius: 10px !important;
    box-shadow: none !important;
}

.mt-icon-box-wraper.bx-style-2 .mt-icon-box-xs {
    background-color: var(--theme-primary) !important; /* green badge */
    color: #ffffff !important;
    border-radius: 6px !important;
}

.mt-icon-box-wraper.bx-style-2 .mt-icon-box-xs .icon-cell,
.mt-icon-box-wraper.bx-style-2 .mt-icon-box-xs i {
    color: #ffffff !important;
}

/* Titles inside the contact boxes */
.mt-icon-box-wraper.bx-style-2 .mt-tilte,
.mt-icon-box-wraper.bx-style-2 h4 {
    color: #1a1a1a !important; /* dark title */
    font-weight: 700 !important;
}

.mt-icon-box-wraper.bx-style-2 .icon-content p {
    color: #4a4a4a !important; /* body text */
}

/* Reduce the orange link color for anchors inside these boxes */
.mt-icon-box-wraper.bx-style-2 a {
    color: var(--theme-primary) !important;
}

/* Ensure contact boxes have equal visual size and icons are aligned */
.mt-icon-box-wraper.bx-style-2 {
    display: flex !important;
    align-items: center !important;
    padding: 24px 28px !important;
    min-height: 140px !important; /* ensures boxes appear equal height */
    box-sizing: border-box !important;
}

.mt-icon-box-wraper.bx-style-2 .mt-icon-box-xs {
    flex: 0 0 56px !important;
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 22px !important;
    margin-left: 0 !important;
    box-shadow: none !important;
    border-radius: 8px !important;
}

.mt-icon-box-wraper.bx-style-2 .icon-content {
    flex: 1 1 auto !important;
}

/* Keep titles vertically near top inside content for better visual balance */
.mt-icon-box-wraper.bx-style-2 .icon-content h4,
.mt-icon-box-wraper.bx-style-2 .icon-content .mt-tilte {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

/* Galeri carousel görselleri sabit 390x490 boyut */
.filter-carousal-1 .owl-carousel .item .mt-img-effect.overlay-2 {
    width: 390px !important;
    height: 490px !important;
    overflow: hidden !important;
}

.filter-carousal-1 .owl-carousel .item .mt-img-effect.overlay-2 img {
    width: 390px !important;
    height: 490px !important;
    object-fit: cover !important;
    display: block !important;
}

/* ============================================
   HERO NAVBAR — Floating Glass Effect
   ============================================ */
.hero-header .main-bar-wraper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 14px 30px;
}

.hero-navbar {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-radius: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    max-width: 1500px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

/* Force all navbar children onto a single row */
.hero-navbar > .container,
.hero-navbar > .container-fluid {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-navbar .logo-header {
    flex: 0 0 auto;
    order: 1;
    margin-left: 16px;
}

.hero-navbar .navbar-toggler {
    order: 4;
}

@media (min-width: 992px) {
    .hero-navbar .header-nav {
        flex: 1 1 auto;
        display: flex !important;
        justify-content: center;
        order: 2;
    }

    .hero-navbar .header-nav .nav.navbar-nav {
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
    }
}

.hero-navbar .extra-nav {
    flex: 0 0 auto;
    float: none !important;
    order: 3;
}

/* Nav links — dark text on frosted glass */
.hero-header .nav.navbar-nav > li > a {
    color: #1a1f36 !important;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
}
.hero-header .nav.navbar-nav > li > a:hover {
    color: var(--theme-primary) !important;
}

/* Language switcher in hero — dark text */
.hero-header .lang-switcher .lang-btn {
    color: #1a1f36;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 8px;
}
.hero-header .lang-switcher .lang-btn.active {
    background: #1a1f36;
    color: #ffffff;
    border-radius: 6px;
    padding: 5px 10px;
}
.hero-header .lang-switcher .lang-btn:hover {
    color: var(--theme-primary);
}

/* Language divider — dark */
.lang-divider {
    color: rgba(26, 31, 54, 0.35);
    font-size: 13px;
    font-weight: 300;
    user-select: none;
    padding: 0 2px;
}

/* Header social icons — dark navy squares, stacked */
.header-social {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 18px;
}
.header-social a {
    color: #ffffff !important;
    font-size: 14px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #1a1f36;
    transition: all 0.2s ease;
    text-decoration: none;
}
.header-social a:hover {
    background: var(--theme-primary);
    transform: translateY(-1px);
}

/* Extra-cell layout: language + social side by side */
.hero-header .extra-nav .extra-cell {
    display: flex;
    align-items: center;
}

/* ============================================
   VIDEO HERO SECTION
   ============================================ */
.video-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.05) 100%),
        linear-gradient(to left, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    padding-top: 80px;
}

.hero-content > .container {
    max-width: 100%;
    padding-left: 10%;
    padding-right: 5%;
}

.hero-title {
    font-family: 'Rubik', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-title .text-highlight {
    color: var(--theme-primary);
}

.hero-subtitle {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Rubik', sans-serif;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.hero-btn-outline {
    background: #ffffff !important;
    color: #1a1a2e !important;
    border: 2px solid #ffffff !important;
}
.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #1a1a2e !important;
}

.hero-btn-primary {
    background: var(--theme-primary) !important;
    color: #ffffff !important;
    border: 2px solid var(--theme-primary) !important;
}
.hero-btn-primary:hover {
    background: #79ab33 !important;
    border-color: #79ab33 !important;
    color: #ffffff !important;
}

/* ============================================
   RESPONSIVE — Hero & Navbar
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 14px;
    }
    .header-social {
        flex-direction: row;
        margin-left: 12px;
    }

    /* --- Mobile Navbar Layout Fix --- */
    .hero-navbar {
        border-radius: 10px !important;
        margin-top: 10px;
        padding: 0 !important;
    }

    .hero-navbar > .container,
    .hero-navbar > .container-fluid {
        flex-wrap: wrap !important;
        padding-left: 12px;
        padding-right: 12px;
        gap: 0;
    }

    /* --- Mobile Side-Drawer Menu Fix --- */
    .hero-navbar .header-nav {
        display: block !important;
        flex: none;
    }

    .hero-header.mobile-sider-drawer-menu .header-nav {
        position: fixed !important;
        width: 280px !important;
        z-index: 9999 !important;
        height: 100vh !important;
        overflow-y: auto !important;
        left: -280px;
        top: 0 !important;
        transition: all 0.35s ease;
        background-color: #fff !important;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        border-radius: 0 !important;
        padding: 20px 0 !important;
    }

    .hero-header.mobile-sider-drawer-menu.active .header-nav {
        left: 0 !important;
    }

    .hero-navbar .header-nav .nav.navbar-nav {
        display: block !important;
        flex-wrap: unset;
        align-items: unset;
        width: 100%;
        padding: 15px 0;
    }

    .hero-navbar .header-nav .nav.navbar-nav > li {
        display: block !important;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero-navbar .header-nav .nav.navbar-nav > li > a {
        display: block !important;
        padding: 14px 24px !important;
        font-size: 15px;
        color: #1a1f36 !important;
        font-weight: 600;
    }

    .hero-navbar .header-nav .nav.navbar-nav > li > a:hover {
        background-color: #f8f9fa;
        color: var(--theme-primary) !important;
    }

    /* Sub-menu / mega-menu inside drawer */
    .hero-navbar .header-nav .nav.navbar-nav .sub-menu,
    .hero-navbar .header-nav .nav.navbar-nav .mega-menu {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: unset !important;
        box-shadow: none !important;
        border: none !important;
        background: #f8f9fa !important;
        padding: 0 !important;
        display: none;
    }

    .hero-navbar .header-nav .nav.navbar-nav > li:hover > .sub-menu,
    .hero-navbar .header-nav .nav.navbar-nav > li:hover > .mega-menu {
        display: block;
    }

    /* Mega-menu inner layout: force single column */
    .hero-navbar .header-nav .mega-menu > li {
        width: 100% !important;
    }

    .hero-navbar .header-nav .mega-menu .p-a20 {
        padding: 10px 0 !important;
    }

    .hero-navbar .header-nav .mega-menu .row {
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
    }

    .hero-navbar .header-nav .mega-menu .row > [class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
    }

    .hero-navbar .header-nav .mega-menu .list-unstyled {
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-navbar .header-nav .mega-menu .list-unstyled li {
        border-bottom: 1px solid #eee;
    }

    .hero-navbar .header-nav .mega-menu .list-unstyled li:last-child {
        border-bottom: none;
    }

    .hero-navbar .header-nav .nav.navbar-nav .sub-menu li a,
    .hero-navbar .header-nav .nav.navbar-nav .mega-menu a {
        padding: 12px 24px 12px 32px !important;
        font-size: 14px;
        color: #4a4a4a !important;
        display: block;
        white-space: normal !important;
        word-wrap: break-word;
    }

    .hero-navbar .header-nav .nav.navbar-nav .mega-menu a:hover {
        background-color: #eef0f2;
        color: var(--theme-primary) !important;
    }

    /* Servislerimiz arrow indicator */
    .hero-navbar .header-nav .nav.navbar-nav > li.has-mega-menu > a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .hero-navbar .header-nav .nav.navbar-nav > li.has-mega-menu > a .fa {
        display: inline-block !important;
        margin-left: 8px;
        font-size: 12px;
    }

    .hero-navbar .logo-header {
        flex: 1 1 auto;
        margin-left: 8px;
        order: 1;
    }

    .hero-navbar .logo-header img {
        max-width: 140px;
        height: auto;
    }

    .hero-navbar .extra-nav {
        flex: 0 0 auto;
        order: 2;
        margin-right: 4px;
    }

    .hero-navbar .navbar-toggler {
        order: 3;
        margin-left: auto;
        padding: 6px 8px;
    }

    .hero-header .extra-nav .extra-cell {
        gap: 6px;
    }

    .hero-header .lang-switcher {
        gap: 2px;
    }

    .hero-header .lang-switcher .lang-btn {
        font-size: 11px;
        padding: 3px 6px;
    }

    .hero-header .lang-switcher .lang-btn.active {
        padding: 4px 7px;
    }

    .lang-divider {
        font-size: 11px;
        padding: 0 1px;
    }

    .header-social a {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .header-social {
        margin-left: 8px;
        gap: 4px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 30px;
    }
    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .hero-header .main-bar-wraper {
        padding: 6px 8px;
    }

    .hero-navbar .logo-header img {
        max-width: 120px;
    }

    .hero-header .lang-switcher .lang-btn {
        font-size: 10px;
        padding: 2px 5px;
    }

    .hero-header .lang-switcher .lang-btn.active {
        padding: 3px 6px;
    }

    .header-social a {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .header-social {
        margin-left: 6px;
        gap: 3px;
    }
}

