:root {
    --footer-navigation-height: 55px;
    --site-width: 1500px;
    --site-category-color-1: #283f52;
    --site-category-background-color-1: #bad1e3;
    --site-category-border-color-1: #283f52;
    --site-category-border-size-1: 1px;
    --site-category-color-2: #ededed;
    --site-category-background-color-2: #4a9de0;
    --site-category-border-color-2: #3a81ba;
    --site-category-border-size-2: 1px;
    --main-font-family: "Roboto", sans-serif;
    --navigation-height: 110px;
    --navigation-main-font-size: 21px;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mb-6 {
    margin-bottom: 6rem;
}

.mb-7 {
    margin-bottom: 7rem;
}

.mb-8 {
    margin-bottom: 8rem;
}

.mb-9 {
    margin-bottom: 9rem;
}

.mb-10 {
    margin-bottom: 10rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mt-6 {
    margin-top: 6rem;
}

.mt-7 {
    margin-top: 7rem;
}

.mt-8 {
    margin-top: 8rem;
}

.mt-9 {
    margin-top: 9rem;
}

.mt-10 {
    margin-top: 10rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.pb-6 {
    padding-bottom: 6rem;
}

.pb-7 {
    padding-bottom: 7rem;
}

.pb-8 {
    padding-bottom: 8rem;
}

.pb-9 {
    padding-bottom: 9rem;
}

.pb-10 {
    padding-bottom: 10rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pt-6 {
    padding-top: 6rem;
}

.pt-7 {
    padding-top: 7rem;
}

.pt-8 {
    padding-top: 8rem;
}

.pt-9 {
    padding-top: 9rem;
}

.pt-10 {
    padding-top: 10rem;
}

/* Margin classes for left and right sides */
.mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx-3 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mx-4 {
    margin-left: 4rem;
    margin-right: 4rem;
}

.mx-5 {
    margin-left: 5rem;
    margin-right: 5rem;
}

.mx-6 {
    margin-left: 6rem;
    margin-right: 6rem;
}

.mx-7 {
    margin-left: 7rem;
    margin-right: 7rem;
}

.mx-8 {
    margin-left: 8rem;
    margin-right: 8rem;
}

.mx-9 {
    margin-left: 9rem;
    margin-right: 9rem;
}

.mx-10 {
    margin-left: 10rem;
    margin-right: 10rem;
}

/* Padding classes for left and right sides */
.px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-3 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.px-4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.px-5 {
    padding-left: 5rem;
    padding-right: 5rem;
}

.px-6 {
    padding-left: 6rem;
    padding-right: 6rem;
}

.px-7 {
    padding-left: 7rem;
    padding-right: 7rem;
}

.px-8 {
    padding-left: 8rem;
    padding-right: 8rem;
}

.px-9 {
    padding-left: 9rem;
    padding-right: 9rem;
}

.px-10 {
    padding-left: 10rem;
    padding-right: 10rem;
}

/* Text Alignment */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

/* Text Styles */
.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.font-weight-bold {
    font-weight: bold;
}

.font-italic {
    font-style: italic;
}

/* Background and Border */
.bg-primary {
    background-color: #007bff;
    color: #fff;
}

.bg-secondary {
    background-color: #6c757d;
    color: #fff;
}

.bg-success {
    background-color: #28a745;
    color: #fff;
}

.bg-danger {
    background-color: #dc3545;
    color: #fff;
}

.bg-warning {
    background-color: #ffc107;
    color: #000;
}

.bg-info {
    background-color: #17a2b8;
    color: #fff;
}

.bg-light {
    background-color: #f8f9fa;
    color: #000;
}

.bg-dark {
    background-color: #343a40;
    color: #fff;
}

.border {
    border: 1px solid #000;
}

.border-primary {
    border-color: #007bff;
}

.border-secondary {
    border-color: #6c757d;
}

.border-success {
    border-color: #28a745;
}

.border-danger {
    border-color: #dc3545;
}

.border-warning {
    border-color: #ffc107;
}

.border-info {
    border-color: #17a2b8;
}

.border-light {
    border-color: #f8f9fa;
}

.border-dark {
    border-color: #343a40;
}

.rounded {
    border-radius: 0.25rem;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Display and Visibility */
.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-flex {
    display: flex;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
}

/* Spacing */
.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

.m-1 {
    margin: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.m-3 {
    margin: 1rem;
}

.m-4 {
    margin: 1.5rem;
}

.m-5 {
    margin: 3rem;
}

/* Sizing */
.w-25 {
    width: 25%;
}

.w-50 {
    width: 50%;
}

.w-75 {
    width: 75%;
}

.w-100 {
    width: 100%;
}

.h-25 {
    height: 25%;
}

.h-50 {
    height: 50%;
}

.h-75 {
    height: 75%;
}

.h-100 {
    height: 100%;
}

/* Positioning */
.position-static {
    position: static;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

/* Flexbox Utilities */
.align-items-start {
    align-items: flex-start;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}
/*#endregion StyleBuildup*/

/*#region Custom Site Styling*/
.sc1 {
    background-color: var(--site-category-background-color-1);
    border-color: var(--site-category-border-color-1);
    border-width: var(--site-category-border-size-1);
    color: var(--site-category-color-1);
}
.sc2 {
    background-color: var(--site-category-background-color-2);
    border-color: var(--site-category-border-color-2);
    border-width: var(--site-category-border-size-2);
    color: var(--site-category-color-2);
}
/*#endregion Custom Site Styling*/


html, body {
    padding: 0px;
    margin: 0px;
    font-family: var(--main-font-family);
}

* {
    font-family: var(--main-font-family);
}


.logo img {
    width:150px;
}




.page-container-width {
    max-width: var(--site-width);
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

h1,h2,h3,h4,h5{
    line-height:100%;
}


/* HEADER / NAVIGATION */
header {
    width: 100%;
    height: var(--navigation-height);
    background-color: white;
    padding: 0px;
    margin: 0px;
    border-bottom: 1px solid #e8e8e8;
    -webkit-box-shadow: 0px 1px 9px 1px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 1px 9px 1px rgba(0,0,0,0.05);
    box-shadow: 0px 1px 9px 1px rgba(0,0,0,0.05);
}

    header nav {
        position: absolute;
        left: 45%;
        transform: translateX(-45%);
    }

    header nav ul {
        display: flex;
        flex-direction: row;
        list-style: none;
        margin: 0;
        padding: 0;
        height: var(--navigation-height);
    }
        header nav ul li {
            height: var(--navigation-height);
            line-height: var(--navigation-height);
            padding: 0px 10px;
            width: max-content;
        }
            header nav ul li a {
                text-decoration: none !important;
                color: var(--site-category-color-1) !important;
                font-size: var(--navigation-main-font-size);
            }

/* FOOTER / NAVIGATION */
footer{
    font-size:14px;
}
footer nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    height: var(--footer-navigation-height);
}

    footer nav ul li {
        height: var(--footer-navigation-height);
        line-height: var(--footer-navigation-height);
        padding: 0px 10px;
    }

     

        footer nav ul li a{
            color: var(--site-category-color-1) !important;
        }



footer .page-container-width {
    display: flex;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    height: 100%;
}

header .page-container-width {
    display: flex;
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    height: 100%;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Styles for the image block container */
.image-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Styles for each row of images */
.image-block-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* Styles for each image item */
.image-block-item {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-align: center;
}

    /* Styles for the figure containing the image */
    .image-block-item figure {
        margin: 0;
        position: relative;
        overflow: hidden;
    }

    /* Styles for the image within the figure */
    .image-block-item img {
        display: block;
        width: 120%;
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }

.CustomImageBlockStyling1 .image-block-item {
    padding:5px;
    margin-top:5px;
    margin-bottom:5px
}

.CustomImageBlockStyling1 {
    padding-left: 5px;
    padding-right: 5px;
}


.split-block-column {
    position: relative;
}

    .split-block-column .widget_text_block {
        display: flex;
        align-items: center;
        position: absolute;
        top: 0;
        bottom: 0;
    }
/* Banner block container */
.banner-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - var(--navigation-height)); /* Full viewport height */
}

    .banner-block.fullscreen {
        height: calc(100vh - var(--navigation-height)); /* Full viewport height */
    }
    .banner-block.medium {
        height: calc(75vh - var(--navigation-height)); /* Full viewport height */
    }
    .banner-block.short {
        height: calc(50vh - var(--navigation-height)); /* Full viewport height */
    }
    .banner-block.fullscreen.noheader {
        height: 100vh !important; /* Full viewport height */
    }

.banner-content .main-heading-large {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.banner-content .main-heading-medium {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.banner-content .main-heading-small {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content .secondary-heading-large {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content .secondary-heading-medium {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content .secondary-heading-small {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.banner-content h2{
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.banner-content h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}




/* Banner item */
.banner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

    /* Dark overlay */
    .banner-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    }

/* Banner content */
.banner-content {
    max-width: 500px; /* Adjust width as needed */
    padding: 20px;
    border-radius: 10px; /* Rounded corners */
    position: absolute;
    z-index: 1; /* Ensure content is above overlay */
    color: white;
    top: -90px;
}

.banner-item .page-container-width {
    max-width: var(--site-width);
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    position: absolute;
}

    /* Banner content alignment */
.banner-content.left {
    margin-left: unset;
    margin-right: auto;
    position: relative;
    top: unset;
}

.banner-content.right {
    margin-left: auto;
    margin-right: unset;
    position: relative;
    top: unset;
}

.banner-content.center {
    margin-left: auto;
    margin-right: auto;
    position:relative;
    top:unset;
}

    /* Banner content headings */
    .banner-content h1,
    .banner-content h2 {
        margin: 0;
    }
     
    /* Banner content button */
    .banner-content .button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #007bff; /* Blue color */
        color: #fff; /* White text */
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

        .banner-content .button:hover {
            background-color: #0056b3; /* Darker blue color on hover */
        }

img.lazy-loading-img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

img.lazy-loading-img[src] {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
.banner-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease-in-out;
}