@import '_content/Blazicons/Blazicons.bundle.scp.css';

/* _content/SourceCode/Components/Account/Shared/IdentityLayout.razor.rz.scp.css */
.main-body[b-ub1cpnidka] {
    height: 100vh;
    min-width: 15vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bs-gray-100);
}

.card-holder[b-ub1cpnidka] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card[b-ub1cpnidka] {
    min-width: 25vw;
}
/* _content/SourceCode/Components/Elements/Carousel/Carousel.razor.rz.scp.css */
.carousel-inner[b-453phsl43w] {
    height: 0;
    padding-bottom: 100%; /* this sets carousel aspect ratio (1:1 here) */
}

@media (min-width: 576px) {
    .carousel-inner[b-453phsl43w] {
        padding-bottom: 75%; /* this sets carousel aspect ratio (4:3 here) */
    }
}

@media (min-width: 768px) {
    .carousel-inner[b-453phsl43w] {
        padding-bottom: 50%; /* this sets carousel aspect ratio (2:1 here) */
    }
}
/* _content/SourceCode/Components/Elements/Carousel/CarouselComponent.razor.rz.scp.css */
.carousel-item[b-hzl7huzdbn] {
    position: absolute !important; /* Bootstrap is insistent */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.carousel-item img[b-hzl7huzdbn] {
    height: 100%; /* Bootstrap handles width already */
    object-fit: contain; /* or 'contain' if you want stretch instead of crop */
}
/* _content/SourceCode/Components/Elements/Photo/PhotoCard.razor.rz.scp.css */
.card-img-overlay[b-0l3zs2m35z] {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.hover-effect[b-0l3zs2m35z] {
    display: none
}

.card:hover .card-img-overlay.hover-effect[b-0l3zs2m35z] {
    display: flex;
}

.card-img-overlay[b-0l3zs2m35z]  > * {
    max-width: 100%;
}

[b-0l3zs2m35z] .card-img {
    max-height: 25rem;
    object-fit: contain;
}
/* _content/SourceCode/Components/Layout/Dashboard/DashLayout.razor.rz.scp.css */
.dash-container[b-49h343l4vb] {
    display: flex;
    flex-direction: column-reverse;
}

[b-49h343l4vb] .top-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
}
/* _content/SourceCode/Components/Layout/Dashboard/SideNav/SideNavItem.razor.rz.scp.css */
.nav-link.active > .icon[b-or8og8ft2b]  > svg {
    color: var(--active-link-icon-color) !important;
}

.nav-link > .icon[b-or8og8ft2b]  > svg {
    color: var(--link-icon-color) !important;
}
/* _content/SourceCode/Components/Layout/Footer.razor.rz.scp.css */
.footer[b-dgucgk9cdl] {
    margin-top: 3rem;
    padding: 1.25rem 5rem 1rem;
    background-color: rgb(3, 9, 10);
    color: #cacfce
}

.footer-content[b-dgucgk9cdl] {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.footer-left[b-dgucgk9cdl], .footer-center[b-dgucgk9cdl], .footer-right[b-dgucgk9cdl] {
    width: 90%;
}

.footer-title[b-dgucgk9cdl], .footer-item[b-dgucgk9cdl] {
    text-align: left;
    border-bottom: solid 1px rgb(214, 213, 213);
    padding: 0.4rem 0;
    /* truncate text */
    white-space: nowrap; /* Ensure the text will be on one line */
    overflow: hidden; /* Hide the text that won't fit */
    text-overflow: ellipsis; /* Add the '...' for overflowed text */
}

.footer-item > p[b-dgucgk9cdl] {
    margin: 0;
    padding-left: 0.25rem;
}

.footer-copyright[b-dgucgk9cdl] {
    font-size: small;
    text-align: left;
    margin-top: 3rem;
}

.footer-copyright a[b-dgucgk9cdl] {
    color: #cacfce;
    text-decoration: none;
    font-weight: bolder;
}
/* _content/SourceCode/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-bwyoyf824a] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-bwyoyf824a] {
    flex: 1;
}

.navbar-container[b-bwyoyf824a] {
    padding-bottom: 54.5%;
    position: relative;
}

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

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

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

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


.fade-in[b-bwyoyf824a] {
    animation: fadeIn-b-bwyoyf824a ease 1s;
}

@keyframes fadeIn-b-bwyoyf824a {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

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

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

    .sidebar[b-bwyoyf824a] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

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

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

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

@media (min-width: 971px) {
    .navbar-container[b-bwyoyf824a] {
        height: 66.66vh;
        padding-bottom: 0;
    }
}

@media (max-width: 971px) {
    .navbar[b-bwyoyf824a] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

#blazor-error-ui[b-bwyoyf824a] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-bwyoyf824a] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/SourceCode/Components/Layout/NavImage.razor.rz.scp.css */
.background-image[b-jqt8l1xgbf] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 66.66vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title[b-jqt8l1xgbf] {
    color: white;
    font-size: 4.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 35%;
}

@media (max-width: 971px) {
    .background-image[b-jqt8l1xgbf] {
        height: 33.33vh;
        padding-top: 54.5%;
    }
}

@media (max-width: 800px) {
    .background-image[b-jqt8l1xgbf] {
        height: 100%;
        max-height: 66.66vh;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top;
    }
}
/* _content/SourceCode/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-8gk7j4ock0] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.navbar-toggler:checked[b-8gk7j4ock0] {
    z-index: 1001;
}

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

.navbar-brand[b-8gk7j4ock0] {
    font-size: 1.25rem;
    color: white;
}

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

.bi-house-door-fill-nav-menu[b-8gk7j4ock0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-8gk7j4ock0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-8gk7j4ock0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-8gk7j4ock0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-8gk7j4ock0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-8gk7j4ock0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-8gk7j4ock0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-8gk7j4ock0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.navbar-container[b-8gk7j4ock0] {
    margin: 0;
    position: fixed;
    top: 0;
    height: 100vh;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 0.5rem;
    background-color: rgba(3, 9, 10, 1.0);
    transition: all 1s ease-in-out 0.5s;
    opacity: 0;
    z-index: 1000;
}

.navbar-left[b-8gk7j4ock0], .navbar-right[b-8gk7j4ock0] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar-title[b-8gk7j4ock0] {
    flex-grow: 0.1;
    text-align: center;
    order: -1;
}

.nav-item[b-8gk7j4ock0] {
    font-size: 1rem;
    font-weight: 300;
    padding: 1rem 0;
}

.nav-item[b-8gk7j4ock0]  .nav-link {
    color: #eaeaea;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
    background: none;
    border: none;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    width: 100%;
}

.nav-item[b-8gk7j4ock0]  a.active {
    background-color: rgba(0, 0, 0, 0.37);
    color: white;
    font-weight: 500;
}

.nav-item[b-8gk7j4ock0]  .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.38);
    color: white;
    font-weight: 500;
}

.navbar-title > a[b-8gk7j4ock0] {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.75);
}

.nav-scrollable[b-8gk7j4ock0] {
    display: none;
}

.navbar-toggler:checked ~ .navbar-container[b-8gk7j4ock0] {
    opacity: 1;
    display: flex;
}

.alike[b-8gk7j4ock0] {
    text-space: 0.1rem;
}

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

    .navbar-container[b-8gk7j4ock0] {
        position: relative;
        display: flex;
        flex-direction: row;
        height: 3.5rem;
        background-color: rgba(0, 0, 0, 0);
        opacity: 1;
    }

    .navbar-left[b-8gk7j4ock0] {
        order: 1;
        flex-direction: row;
    }

    .navbar-title[b-8gk7j4ock0] {
        order: 2;
    }

    .navbar-right[b-8gk7j4ock0] {
        order: 3;
        flex-direction: row;
    }
}
/* _content/SourceCode/Components/Objects/PageLinkCard.razor.rz.scp.css */
.card-container[b-wxk0fql5q4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.51);
    background-color: #f1f0f0;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position-y: 30%;
    text-decoration: none;
    background-blend-mode: multiply;
}

.card-title[b-wxk0fql5q4] {
    color: white;
    font-weight: 600;
}

.card-title > *[b-wxk0fql5q4] {
    font-size: 2.5rem !important;
}

@media (min-width: 921px) {
    .card-container[b-wxk0fql5q4] {
        justify-content: flex-start;
    }
}

@media (min-width: 1070px) {
    .card-title > *[b-wxk0fql5q4] {
        font-size: 2rem !important;
    }
}
/* _content/SourceCode/Components/Pages/About.razor.rz.scp.css */
.about-me[b-tvn5zv0gw8] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    padding-top: 1rem;
}

.image-container img[b-tvn5zv0gw8] {
    width: 100%;
    border-radius: 20px;
}

.text-container[b-tvn5zv0gw8] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.text-container > *[b-tvn5zv0gw8] {
    text-align: justify;
}

.text-container h2[b-tvn5zv0gw8] {
    text-align: center;
}


.uk-map[b-tvn5zv0gw8] {
    display: flex;
    justify-content: center;
    height: auto;
}

.uk-map[b-tvn5zv0gw8]  > svg {
    width: 100%;
    height: auto;
    max-height: 100vh;
}

@media (min-width: 1100px) {
    .about-me[b-tvn5zv0gw8] {
        flex-direction: row;
        gap: 4rem;
    }
}
/* _content/SourceCode/Components/Pages/Contact.razor.rz.scp.css */
.form-container[b-pxpt4taq7u] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-control[b-pxpt4taq7u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 75vw;
}

.form-subgroup[b-pxpt4taq7u] {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

.form-group[b-pxpt4taq7u] {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-message-container[b-pxpt4taq7u] {
    width: 100%;
    margin-bottom: 1rem;
}

.form-message-container textarea[b-pxpt4taq7u] {
    min-height: 7rem;
}

.form-group button[b-pxpt4taq7u] {
    width: 100%;
    max-width: 25%;
    margin-top: 1rem;
}
/* _content/SourceCode/Components/Pages/Dashboard/Photos.razor.rz.scp.css */
[b-l7sbz433mw] table {
    max-width: 100%;
    overflow: hidden;
}

td[b-l7sbz433mw] {
    max-width: 100%;
    text-overflow: ellipsis;
    vertical-align: middle;
}
/* _content/SourceCode/Components/Pages/Home.razor.rz.scp.css */
.home-cards-container[b-hrcc9yez10] {
    display: flex;
    justify-content: center;
    width: 100%;
}

.home-cards[b-hrcc9yez10] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    height: 40rem;
    gap: 5rem;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-card[b-hrcc9yez10] {
    width: 100%;
    max-height: 30rem;
    display: flex;
    justify-content: center;
}

.about-card .picture-card[b-hrcc9yez10] {
    width: 80%;
    max-height: 30rem;
    position: relative;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.51);
    border-radius: 1rem;
}

.about-card .about-page-button[b-hrcc9yez10] {
    position: absolute;
    left: 5%;
    top: 57%;
}

.about-page-button > a[b-hrcc9yez10] {
    border-radius: 2rem;
    font-size: 1.25rem;
}

@media (min-width: 1070px) {
    .home-cards[b-hrcc9yez10] {
        display: grid;
        grid-template-columns: repeat(3, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 748px) {
    .about-card .about-page-button[b-hrcc9yez10] {
        position: absolute;
        left: 5rem;
        top: 42%;
    }
}
/* _content/SourceCode/Components/Pages/Portfolio/Archive.razor.rz.scp.css */
.col[b-3sevmrfqsz] {
    max-height: 25rem;
}


[b-3sevmrfqsz] .card-img.square-card {
    object-fit: cover;
    aspect-ratio: 1;
}

.row > div:not(.col)[b-3sevmrfqsz] {
    display: none;
}
/* _content/SourceCode/Components/Pages/Portfolio/Portfolio.razor.rz.scp.css */
.page-container[b-qc4cn3bnqy] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.carousel-container[b-qc4cn3bnqy] {
    width: 100%;
}
