/* 
/* 
/*  custom.css
/*
/*  If not using Gulp and Sass, add your custom CSS below then include it
/*  in your page by adding a reference to assets/css/custom.css in the head of each page.
/*
*/

body {
    font-family: 'Jost', sans-serif !important;
}

.nopadding {
    padding:0 !important;
}

.fixed-width-td {
    width: 100px;
}

.navbar {
    background-color: white;
}

.bg-bw-darkblue {
    background-color: #01354d !important;
}

.bg-bw-mediumblue {
    background-color: #1d74bb !important;
}

.bg-bw-teal {
    background-color: #00a2a5 !important;
}

.bg-bw-orange {
    background-color: #f58232 !important;
}

.bg-bw-yellow {
    background-color: #ffd401 !important;
}

.btn-bw-orange {
    color: #000  !important;
    background-color: #f58232  !important;
    border-color: #f58232 !important; }
.btn-bw-orange:hover {
    color: #000;
    background-color: #f58232;
    border-color: #f58232; }
.btn-bw-orange:focus, .btn-bw-orange.focus {
    color: #000;
    background-color: #f58232;
    border-color: #f58232;
    box-shadow: 0 0 0 0.2rem rgba(74, 74, 135, 0.5); }
.btn-bw-orange.disabled, .btn-bw-orange:disabled {
    color: #fff;
    background-color: #2A2A72;
    border-color: #2A2A72; }
.btn-bw-orange:not(:disabled):not(.disabled):active, .btn-bw-orange:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #000;
    background-color: #f58232;
    border-color: #f58232; }
.btn-bw-orange:not(:disabled):not(.disabled):active:focus, .btn-bw-orange:not(:disabled):not(.disabled).active:focus,
.show > .btn-bw-orange.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(74, 74, 135, 0.5); }

.slider-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.slider {
    position: relative;
    width: 100%;         /* Use full width of Bootstrap column */
    max-width: 100%;     /* Ensure slider never exceeds parent width */
    height: 0;
    padding-bottom: 66.67%; /* Aspect ratio: 3:2 (height ÷ width × 100) */
    overflow: hidden;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills space without distortion */
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

.shortsection {
    padding: 2em !important;
}

.content-spacing {
    margin-top: 50px; /* Adjust to match or exceed your navbar height */
}

.border-bw-darkblue {
    border-width: 3px !important;
    border-color: #01354d !important;

}

.border-bw-lightgray {
    border-width: 0px !important;
    border-color: #aaaaaa !important;
}

.bg-white-opacity-80 {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.text-bw-orange {
    color: #f58232 !important;
}

.text-bw-teal {
    color: #00a2a5 !important;
}

.auto-resize-text-lg {
    white-space: nowrap;
    display: inline-block;
    font-size: clamp(2rem, 6vw, 3rem);
    max-width: 100%;
}

.auto-resize-text-md {
    white-space: nowrap;
    display: inline-block;
    font-size: clamp(1rem, 6vw, 2rem);
    max-width: 100%;
}

.cookie-consent{
    position: fixed;
    bottom: 0px;
    width: 100%;

    height: 45px;
    color: #fff;
    line-height: 20px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    background: #292929;
    z-index: 120;
    cursor: pointer;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.allow-button{
    height: 20px;
    width: 104px;
    color: #fff;
    font-size: 12px;
    line-height: 10px;
    border-radius: 3px;
    border: 1px solid green;
    background-color: green;
}

.hover-bg-bw-teal:hover {
    background-color: #00a2a5 !important;
    border-color: #01354d !important;
}