/* /Components/ImageCarousel.razor.rz.scp.css */
.carousel-container[b-glu1eqj9yd] {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* viewport clips */
.carousel-viewport[b-glu1eqj9yd] {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

/* track: 3 slots each 50% of container => total width 150% */
.carousel-track[b-glu1eqj9yd] {
    display: flex;
    width: 150%;
    height: 100%;
    /* default rest transform (we set inline via style in component) */
    transform: translateX(-33.333333%);
}

    /* animate transform only when .animating is present */
    .carousel-track.animating[b-glu1eqj9yd] {
        transition: transform 0.6s ease-in-out;
    }

/* each slot takes 50% of the container */
.carousel-slot[b-glu1eqj9yd] {
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* image sizing (handles tall/wide/square) */
.carousel-image[b-glu1eqj9yd] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}


/* responsive */
@media (max-width: 640px) {
    .carousel-container[b-glu1eqj9yd] {
        border-radius: 12px;
    }

    .carousel-slot[b-glu1eqj9yd] {
        padding: 6px;
    }
}
/* /Components/NavigationItem.razor.rz.scp.css */
.nav-container[b-8frhs5boaq] {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0; /* absolutely no gaps */
}

.nav-item[b-8frhs5boaq] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    z-index: 2001;
    transition: background-color 0.2s ease;
    padding: 0 1.2rem;
}

    /* keep centered half-height separator */
    .nav-item[b-8frhs5boaq]::after {
        content: "";
        position: absolute;
        right: 0;
        top: 25%;
        height: 50%;
        width: 1px;
        background-color: rgba(0, 0, 0, 0.15);
        pointer-events: none; /* let hover pass through */
    }

    .nav-item:last-child[b-8frhs5boaq]::after {
        display: none;
    }

/* center content */
.nav-item-main[b-8frhs5boaq] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* fix hover gap: put background behind separator via ::before layer */
.nav-item[b-8frhs5boaq]::before {
    content: "";
    position: absolute;
    inset: 0; /* cover entire area */
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.2s ease;
    z-index: -1; /* keep below text and border */
}

.nav-item:hover[b-8frhs5boaq]::before {
    background-color: rgba(0, 0, 0, 0.05);
}

/* dropdown same as before */
.nav-dropdown[b-8frhs5boaq] {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fdf8f1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    width: 100%; /* 👈 now matches the parent item’s width */
    box-sizing: border-box; /* include borders/padding in width calc */
    z-index: 2001;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
}

    .nav-dropdown.show[b-8frhs5boaq] {
        display: flex;
    }

.nav-dropdown-item[b-8frhs5boaq] {
    padding: 0.5rem 1rem;
    white-space: nowrap;
    transition: background 0.2s;
}

    .nav-dropdown-item:hover[b-8frhs5boaq] {
        background-color: #e0e9dc;
    }

.link-text[b-8frhs5boaq] {
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.2;
    color: #48381B;
    letter-spacing: 1px;
}

.arrow[b-8frhs5boaq] {
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.2;
    color: #48381B;
    letter-spacing: 3px;
}

@media (max-width: 900px) {
    /* stack main + dropdown */
    .nav-item[b-8frhs5boaq] {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 0;
        border-bottom: none;
        position: relative;
    }

    /* main item */
    .nav-item-main[b-8frhs5boaq] {
        width: 100%;
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        /* border-bottom if has subitems */
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-sizing: border-box;
    }

        /* remove border for items without subitems */
        .nav-item-main + .nav-dropdown[b-8frhs5boaq] {
            border-top: none;
        }

    /* dropdown container */
    .nav-dropdown[b-8frhs5boaq] {
        position: static;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0; /* container flush */
        margin: 0;
        box-shadow: none;
        background-color: transparent;
    }

    /* subitems */
    .nav-dropdown-item[b-8frhs5boaq] {
        position: relative;
        padding: 0.5rem 0;
        padding-left: 2.5rem; /* indent */
        font-size: 0.9rem;
        color: #48381B;
        letter-spacing: 3px;
        background-color: transparent;
        cursor: pointer;
    }

        /* border above each subitem, except first one */
        .nav-dropdown-item:not(:first-child)[b-8frhs5boaq]::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 75%;
            height: 1px;
            background-color: rgba(0,0,0,0.1);
        }

        /* optional: last subitem spacing */
        .nav-dropdown-item:last-child[b-8frhs5boaq] {
            padding-bottom: 0.25rem;
        }
}




/* /Components/NavigationMenu.razor.rz.scp.css */
.nav-menu[b-crg3rrw4ou] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FBEFD8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: height 0.4s ease, box-shadow 0.3s ease;
    z-index: 1000;
    overflow: visible !important;
}

.nav-large[b-crg3rrw4ou] {
    height: 12vh;
}

.nav-small[b-crg3rrw4ou] {
    height: 6vh;
}

/* main nav layout container */
.nav-inner[b-crg3rrw4ou] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Left side: logo */
.nav-left[b-crg3rrw4ou] {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

.nav-logo[b-crg3rrw4ou] {
    height: 90%;
    width: auto;
    object-fit: contain;
    margin-left: 30px;
}

/* Right side: nav items */
.nav-right[b-crg3rrw4ou] {
    display: flex;
    font-size: clamp(0.8rem, 2vh, 1rem);
    font-weight: 500;
    height: 100%;
    align-items: center;
    margin-right: 30px; /* adds spacing from edge */
}

/* Responsive shrink behavior */
.nav-small .nav-logo[b-crg3rrw4ou] {
    max-height: 100%;
}

.nav-small .nav-right[b-crg3rrw4ou] {
    font-size: clamp(0.7rem, 1.8vh, 0.9rem);
}

.burger-button[b-crg3rrw4ou] {
    display: none;
    flex-direction: column;
    justify-content: space-between; /* evenly space the lines */
    align-items: center;
    width: 30px; /* button width */
    height: 22px; /* total height to fit 3 lines nicely */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 30px;
}

    .burger-button span[b-crg3rrw4ou] {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #23440C;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* simple “menu open” animation */
    .burger-button.active span:nth-child(1)[b-crg3rrw4ou] {
        transform: translateY(-4px); /* move top line up */
    }

    .burger-button.active span:nth-child(2)[b-crg3rrw4ou] {
        width: 12px; /* shrink middle line */
        margin-left: auto; /* optional: center it */
        margin-right: auto;
    }

    .burger-button.active span:nth-child(3)[b-crg3rrw4ou] {
        transform: translateY(4px); /* move bottom line down */
    }


/* dropdown container below nav */
.burger-menu[b-crg3rrw4ou] {
    display: none;
    flex-direction: column;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fdf8f1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


/* ---------- MOBILE BEHAVIOR ---------- */
@media (max-width: 900px) {
    .nav-right[b-crg3rrw4ou] {
        display: none;
    }

    .burger-button[b-crg3rrw4ou] {
        display: flex;
    }

    .burger-menu[b-crg3rrw4ou] {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; /* right below the nav */
        right: 0; /* align to the right edge */
        width: 200px; /* adjust width as needed */
        background-color: #fdf8f1;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        z-index: 1001;
        border-radius: 0 0 8px 8px; /* optional rounding at bottom */
    }

        .burger-menu.open[b-crg3rrw4ou] {
            max-height: 500px; /* or whatever max height you need */
        }

    .nav-item[b-crg3rrw4ou] {
        justify-content: flex-start;
        border: none;
        padding: 1rem 1.5rem;
    }

    .nav-dropdown[b-crg3rrw4ou] {
        position: static;
        box-shadow: none;
        border: none;
        background-color: transparent;
    }

    .nav-dropdown-item[b-crg3rrw4ou] {
        padding-left: 2rem;
    }
}

/* /Components/TitleScreen.razor.rz.scp.css */
@keyframes fadeInTitle-b-ar1v2n0ctb {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.title-screen-container[b-ar1v2n0ctb] {
    position: relative;
    width: calc(100vw - 250px); /* Adjust for navmenu width */
    height: 100vh;
    overflow: hidden;
}

@media (max-width: 641px) {
    .title-screen-container[b-ar1v2n0ctb] {
        width: 100vw;
        height: calc(100vw - 56); /* Adjust for navmenu height */
    }
}

.title-screen-image[b-ar1v2n0ctb] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.0);
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%);
    z-index: 1;
}

    .title-screen-overlay[b-ar1v2n0ctb] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 2;
    }

.title-container[b-ar1v2n0ctb] {
    position: absolute;
    top: 30%;
    left: 50%;
    z-index: 3;
}

.title-screen-pre-title[b-ar1v2n0ctb] {
    color: #F1D5AA;
    font-size: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), /* Deep shadow for legibility */
    0 0 5px rgba(255, 255, 255, 0.3); /* Soft glow for subtle lift */
    opacity: 0;
    animation: fadeInTitle-b-ar1v2n0ctb 1.5s ease-out forwards;
    animation-delay: 0.5s;
    padding-left: 20px;
    padding-right: 20px;
}

.title-screen-title[b-ar1v2n0ctb] {
    color: #F1D5AA;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), /* Deep shadow for legibility */
    0 0 5px rgba(255, 255, 255, 0.3); /* Soft glow for subtle lift */
    opacity: 0;
    animation: fadeInTitle-b-ar1v2n0ctb 1.5s ease-out forwards;
    animation-delay: 0.5s;
    padding-left: 20px;
    padding-right: 20px;
}

.scroll-indicator[b-ar1v2n0ctb] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Resize to your liking */
    z-index: 3;
    bottom: 100px;
    opacity: 0;
    animation: fadeIn-b-ar1v2n0ctb 1.5s, bounce-b-ar1v2n0ctb 1.5s infinite;
    animation-fill-mode: forwards;
    animation-delay: 1.5s, 1.5s;
}

@keyframes fadeIn-b-ar1v2n0ctb {
    to {
        opacity: 1;
    }
}

/* Bouncing animation */
@keyframes bounce-b-ar1v2n0ctb {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@media (max-width: 700px) {
    .title-screen-title[b-ar1v2n0ctb] {
        font-size: 2rem;
    }
    .title-screen-pre-title[b-ar1v2n0ctb] {
        font-size: 1.2rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
:root[b-6jvmshc4z4] {
    --nav-height: 20vh;
}

.page[b-6jvmshc4z4] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-6jvmshc4z4] {
    flex: 1;
}

.sidebar[b-6jvmshc4z4] {
    background-color: #1B7643;
    position: sticky;
}

.top-row[b-6jvmshc4z4] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-6jvmshc4z4]  a, .top-row[b-6jvmshc4z4]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-6jvmshc4z4]  a:hover, .top-row[b-6jvmshc4z4]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-6jvmshc4z4]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-6jvmshc4z4] {
        justify-content: space-between;
    }

    .top-row[b-6jvmshc4z4]  a, .top-row[b-6jvmshc4z4]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-6jvmshc4z4] {
        flex-direction: row;
    }

    .sidebar[b-6jvmshc4z4] {
        width: 250px;
        height: 100vh;
        top: 0;
    }

    .top-row[b-6jvmshc4z4] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-6jvmshc4z4]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-6jvmshc4z4], article[b-6jvmshc4z4] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

.body-wrapper[b-6jvmshc4z4] {
    padding-top: var(--nav-height);
    transition: padding-top 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #FBEFD8;
}

.body-content[b-6jvmshc4z4] {
    flex: 1; /* S�rger for, at indholdet fylder det resterende rum */

}

.footer[b-6jvmshc4z4] {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
    min-height: 800px;
    background-image: url('https://dakaa16.github.io/Stjerneduggen-image-server/images/GrassFooter1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-image[b-6jvmshc4z4] {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.footer-content[b-6jvmshc4z4] {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    padding-top: 450px;
    padding-bottom: 40px;
    gap: 250px;
    z-index: 100;
}

.footer-column[b-6jvmshc4z4] {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.footer-column .logo[b-6jvmshc4z4] {
    flex: 1;
    margin: 10px;
}

.footer-column a[b-6jvmshc4z4] {
    margin: 5px 0;
    color: #f7f7eb;
}

.footer-column p[b-6jvmshc4z4] {
    margin: 5px 0;
    color: #f7f7eb;
}

.footer-column h3[b-6jvmshc4z4] {
    margin: 5px 0;
    color: #f7f7eb;
    text-shadow: 0px 0px;
}

.nav-style[b-6jvmshc4z4] {
    margin: 5px 0 !important;
    text-decoration: none !important;
    color: #f7f7eb !important;
}

    .nav-style.active[b-6jvmshc4z4] {
        font-weight: bold;
        color: #ffd700;
    }

.logo img[b-6jvmshc4z4] {
    max-width: 100px;
    height: auto;
}

/* Mobile-Friendly Styling */
@media (max-width: 768px) {
    .footer-content[b-6jvmshc4z4] {
        flex-direction: column; /* Skift til en kolonne-layout p� sm� sk�rme */
        align-items: center;
        justify-content: space-around;
        gap: 20px;
    }

    .divider[b-6jvmshc4z4] {
        margin-top: 20px;
    }

    .contact[b-6jvmshc4z4], .company-info[b-6jvmshc4z4], .logo[b-6jvmshc4z4] {
        margin: 5px 0;
    }

    .logo img[b-6jvmshc4z4] {
        max-width: 70px; /* Mindre billede p� sm� sk�rme */
    }
}

/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-u3jf6v4ylc] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-u3jf6v4ylc] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-u3jf6v4ylc] {
    font-size: 1.1rem;
}

.bi[b-u3jf6v4ylc] {
    display: inline-block;
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 0.75rem;
    top: -1px;
    background-size: 32px;
}

.home-background[b-u3jf6v4ylc] {
    background-image: url("/resources/icons/house-icon.png");
}

.checklist-background[b-u3jf6v4ylc] {
    background-image: url("/resources/icons/register-icon.png");
}

.schedule-background[b-u3jf6v4ylc] {
    background-image: url("/resources/icons/routine-icon.png");
}

.piggybank-background[b-u3jf6v4ylc] {
    background-image: url("/resources/icons/finance-icon.png");
}

.info-background[b-u3jf6v4ylc] {
    background-image: url("/resources/icons/info-icon.png");
}



.nav-item[b-u3jf6v4ylc] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-u3jf6v4ylc] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-u3jf6v4ylc] {
        padding-bottom: 1rem;
    }

    .nav-item[b-u3jf6v4ylc]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-u3jf6v4ylc]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-u3jf6v4ylc]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-u3jf6v4ylc] {
        display: none;
    }

    .collapse[b-u3jf6v4ylc] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-u3jf6v4ylc] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/*Icon attributes:*/
/*Home: <a href="https://www.flaticon.com/free-icons/home" title="home icons">Home icons created by Freepik - Flaticon</a>*/
/*Checklist: <a href="https://www.flaticon.com/free-icons/form" title="form icons">Form icons created by Freepik - Flaticon</a>*/
/*Calender: <a href="https://www.flaticon.com/free-icons/calendar" title="calendar icons">Calendar icons created by Freepik - Flaticon</a>*/
/*Piggybank: <a href="https://www.flaticon.com/free-icons/piggybank" title="piggybank icons">Piggybank icons created by Freepik - Flaticon</a>*/
/*Info: <a href="https://www.flaticon.com/free-icons/info" title="info icons">Info icons created by Vector Squad - Flaticon</a>*/
/* /Pages/Home.razor.rz.scp.css */

.flex-container[b-jbg3ihcnne] {
    display: flex; /* Creates a flexbox container */
    gap: 20px; /* Adds space between the paragraph and image */
}

    .flex-container .image-style[b-jbg3ihcnne] {
        max-width: 40%; /* Sets a maximum width for the image */
        height: auto; /* Ensures the image maintains aspect ratio */
        border-radius: 5px; /* Optional: adds rounded corners */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
    }

.value-container[b-jbg3ihcnne] {
    display: flex; /* Creates a flexbox container */
    gap: 20px; /* Adds space between the paragraph and image */
    flex-direction: row;
    cursor: pointer;
}

.title-screen[b-jbg3ihcnne] {
    padding: 12px;
    text-align: center;
}

.stardew-title[b-jbg3ihcnne] {
    font-family: 'D-DINCondensed',Helvetica,Arial,Lucida,sans-serif;
    font-size: 79px;
    letter-spacing: 5px;
    line-height: 1.4em;
    color: #4C6E22;
}

.image-carusel-container[b-jbg3ihcnne] {
    width: 100%;
    height: 50vh;
    position: relative;
    display: flex;
    margin-bottom: 1rem;
    text-align: center;
}

.eye-catcher-card[b-jbg3ihcnne] {
    width: 100%;
    padding: 2rem 2rem;
    background-color: #B8BB98;
    border-radius: 50px;
    color: #222;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.eye-catcher-card-small[b-jbg3ihcnne] {
    padding: 1rem 1rem;
    background-color: #B8BB98;
    border-radius: 50px;
    color: #222;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.eye-catcher-title[b-jbg3ihcnne] {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #48381B;
    letter-spacing: 3px;
}

.eye-catcher-title2[b-jbg3ihcnne] {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #48381B;
    letter-spacing: 3px;
}

.eye-catcher-subtitle[b-jbg3ihcnne] {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #555;
    text-shadow: 0px 0px;
}

.fb-wrapper[b-jbg3ihcnne] {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.text-image-wrap[b-jbg3ihcnne] {
    overflow: hidden; /* Clearfix alternative */
}

.float-img[b-jbg3ihcnne] {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    width: 40%; /* or auto */
    min-width: 300px;
    border-radius: 50px;
    height: auto;
}

@media (max-width: 900px) {
    .value-container[b-jbg3ihcnne] {
        flex-direction: column;
    }

    .image-carusel-container[b-jbg3ihcnne] {
        height: 40vh;
    }

    .float-img[b-jbg3ihcnne] {
        float: none;
        width: 80%;
        display: block;
        margin: 0 auto 20px auto;
    }
    .eye-catcher-title[b-jbg3ihcnne] {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .eye-catcher-title2[b-jbg3ihcnne] {
        font-size: 1.8rem;
    }

    .eye-catcher-subtitle[b-jbg3ihcnne] {
        font-size: 1.2rem;
    }
}
