/* /Components/GridImageComponent.razor.rz.scp.css */
.grid-container[b-ygnynescdf] {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-gap: 10px;
    padding: 10px 0;
}

.grid-item[b-ygnynescdf] {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    font-size: 2.5rem;
    display: grid;
}

    .grid-item img[b-ygnynescdf] {
        width: 0;
        height: 0;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
        filter: brightness(90%);
    }

.grid-image-title[b-ygnynescdf] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.6); /* Darker semi-transparent background */
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    line-height: 1.2; /* Tighter line height */
    overflow: hidden;
    box-sizing: border-box;
    white-space: normal; /* Allow wrapping */
    padding: 4px; /* Reduce padding for small screens */
    transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
    font-size: 7vw;
}

.grid-item:hover > .grid-image-title[b-ygnynescdf] {
    font-size: 8vw;
}

.grid-item:hover > img[b-ygnynescdf] {
    transform: scale(1.1);
}

.grid-container-single .grid-item[b-ygnynescdf] {
    grid-column: span 4;
}

@media (min-width: 460px) {
    .grid-container[b-ygnynescdf] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-image-title[b-ygnynescdf] {
        font-size: 4vw;
    }

    .grid-item:hover > .grid-image-title[b-ygnynescdf] {
        font-size: 5vw;
    }
}

@media (min-width: 950px) {
    .grid-container[b-ygnynescdf] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .grid-image-title[b-ygnynescdf] {
        font-size: 2vw;
    }

    .grid-item:hover > .grid-image-title[b-ygnynescdf] {
        font-size: 2.5vw;
    }

    .grid-container-half[b-ygnynescdf] {
        width: 50%;
        margin: 0 auto;
    }

    .grid-container-half .grid-item[b-ygnynescdf] {
        grid-column: span 2;
    }

    .grid-container-single[b-ygnynescdf] {
        width: 50%;
        margin: 0 auto;
    }    
}
/* /Components/ImageGridComponent.razor.rz.scp.css */
.grid-container[b-dxicni6v8b] {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
    margin: 0 auto;
    background: #808080b0;
    padding: 15px;
    border-radius: 6px;
}

.grid-image[b-dxicni6v8b] {
    aspect-ratio: 1 / 1;
    position: relative; /* Ensure positioning context for img */
    font-size: 1rem;
}

    .grid-image img[b-dxicni6v8b] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensure image covers without distorting aspect */
    }

.grid-image-title[b-dxicni6v8b] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    background-color: rgba(0, 0, 0, 0.6); /* Darker semi-transparent background */
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    font-size: inherit;
    line-height: 1.2; /* Tighter line height */
    overflow: hidden;
    box-sizing: border-box;
    white-space: normal; /* Allow wrapping */
    padding: 4px; /* Reduce padding for small screens */
}

.grid-image:hover[b-dxicni6v8b] {
    font-size: 2.5rem;
}

    .grid-image:hover > img[b-dxicni6v8b] {
        transform: scale(1.1);
    }

/* Adjustments for smaller screens */
@media (min-width: 400px) {
}

@media (min-width: 400px) {
    .grid-container[b-dxicni6v8b] {
        gap: 20px;
    }
}

@media (min-width: 800px) {
    .grid-container[b-dxicni6v8b] {
        gap: 30px;
        max-width: 750px;
    }

    .grid-image[b-dxicni6v8b] {
        font-size: 1.2rem; /* Smaller font for small screens */
    }
}



/*Second style*/
.grid-image-small[b-dxicni6v8b] {
    width: 25%;
    float: left;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    flex: 1;
    flex-basis: 24%;
}

.grid-image-small img[b-dxicni6v8b] {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.grid-image-small:hover img[b-dxicni6v8b] {
    transform: scale(1.25);
    transition: .5s ease;
}

@media only screen and (max-width: 1000px) {

    .grid-image-small[b-dxicni6v8b] {
        flex-basis: 40%;
    }
}

@media only screen and (max-width: 768px) {
    .grid-image-small[b-dxicni6v8b] {
        width: 100%;
        float: none;
    }

    .grid-image-square-container[b-dxicni6v8b] {
        flex-direction: column;
    }
}

.grid-image-small-title[b-dxicni6v8b] {
    position: absolute;
    left: 50%;
    top: 90%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    line-height: 3.75rem;
    -webkit-text-stroke-width: 1.2px;
    -webkit-text-stroke-color: #ffffff;
    font-weight: 500;
    transition: font-size .5s ease;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    color: white;
}

.fa-arrow-right[b-dxicni6v8b] {
    position: absolute;
    left: 65%;
    top: 59%;
    font-size: 28.8px;
    transform: translate(-50%, -50%);
    transition: font-size .5s ease;
}

/* (A) ARROW "BASE" */
.arrow[b-dxicni6v8b]::before {
    display: inline-block;
    width: 30px;
    text-align: center;
    font-size: 48.8px;
    color: #50d691;
    position: absolute;
    left: 65%;
    top: 53.5%;
    transition: font-size .5s ease;
}




/* (B) ARROW DIRECTION */
.up[b-dxicni6v8b]::before {
    content: "\2191"
}

.down[b-dxicni6v8b]::before {
    content: "\2193"
}

.left[b-dxicni6v8b]::before {
    content: "\2190"
}

.right[b-dxicni6v8b]::before {
    content: "\2192"
}

@keyframes offsetr-b-dxicni6v8b {
    from {
        transform: translateX(-5px);
    }

    to {
        transform: translateX(5px);
    }
}

.grid-image-small:hover .arrow[b-dxicni6v8b]::before {
    animation-name: offsetr-b-dxicni6v8b;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
/* /Layout/MainLayout.razor.rz.scp.css */
*[b-isyk4p7vox] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-isyk4p7vox], html[b-isyk4p7vox] {
    height: 100%;
    overflow: hidden;
}

.page[b-isyk4p7vox] {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100vh;
}

.header[b-isyk4p7vox], .footer[b-isyk4p7vox] {
    width: 100vw;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    z-index: 1000;
}

.header[b-isyk4p7vox] {
    top: 0;    
}

.footer[b-isyk4p7vox] {
    bottom: 0;
    background: #005D49;
    height: 60px;
    flex-direction: column;
}

.content[b-isyk4p7vox] {
    position: absolute;
    top: var(--header-height);
    bottom: 60px;
    width: 100%;
    overflow-y: auto;
    padding: 20px;
    color: black;
    text-align: center;
    z-index: 2;
}

.content p[b-isyk4p7vox] {
    margin-bottom: 20px;
}

.hero-image[b-isyk4p7vox] {
    background-image: url('../images/banner2.jpg'); /* Update the path to your image */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    width: 100vw; /* Full width of the viewport */
    height: 400px;
    position: absolute; /* Allows for layering with content */
    overflow: hidden; /* Hide overflow if needed */
}

    .hero-image[b-isyk4p7vox]::before {
        content: ''; /* Required for pseudo-elements */
        position: absolute; /* Position it absolutely within the parent */
        top: 0; /* Align to top */
        left: 0; /* Align to left */
        right: 0; /* Align to right */
        bottom: 0; /* Align to bottom */
        background: linear-gradient(to top, rgba(62, 79, 62, 1), rgba(62, 79, 62, 0)); /* Gradient from solid color to transparent */
        z-index: 2; /* Ensure the overlay is above the image */
    }

.contact[b-isyk4p7vox] {
    color: white;    
    font-size: calc(0.9rem + .6vw);
}

    .contact:hover[b-isyk4p7vox] {
        color: #b3b3b3;
    }

@media (min-width: 650px) {
    .contact[b-isyk4p7vox] {
        font-size: calc(1.3rem + .6vw);
    }
    .footer[b-isyk4p7vox] {
        flex-direction: row;
        gap: 3rem !important;
    }   
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-xn2ldavcm2] {
    height: calc(var(--header-height) * 0.7);
    width: calc(var(--header-height) * 0.7);
    background: #005D49;
}

.navbar-toggler-icon[b-xn2ldavcm2] {
    width: 100%;
}

.top-row[b-xn2ldavcm2] {
    height: var(--header-height);
    background-image: linear-gradient(to right, white, #d7d7d7, white);
    border-bottom: 2px solid #d7d7d7;
}

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

.navbar-brand img[b-xn2ldavcm2] {
    height: calc(var(--header-height)* 0.8);
}

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

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

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

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

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

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

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

.nav-scrollable[b-xn2ldavcm2] {
    background: #353e38;
}


@media (min-width: 720px) {
    .nav-scrollable[b-xn2ldavcm2] {
        margin-left: auto;
        text-align: right;
        width: 50% !important;
        position: relative;
    }    
}

@media (min-width: 1280px) {
    .nav-scrollable[b-xn2ldavcm2] {
        margin-left: auto;
        text-align: right;
        width: 400px !important;
        position: relative;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.hero-text[b-949rwjbrh5] {
    font-size: 2.2em;
    font-weight: 700;
}

@media (min-width: 460px) {
    .hero-text[b-949rwjbrh5] {
        font-size: 3em;
    }
}

@media (min-width: 950px) {
    .hero-text[b-949rwjbrh5] {
        font-size: 3.5em;
    }
}

@media (min-width: 1500px) {
    .hero-text[b-949rwjbrh5] {
        font-size: 6em;
    }
}
