/*!
 * Bootstrap v5.0.0-beta1 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * 
 * OPTIMIZATIONS APPLIED:
 * - Added CSS custom properties for common values (spacing, border-radius, transitions)
 * - Consolidated duplicate media queries for navbar styles
 * - Unified transition declarations using CSS variables
 * - Removed redundant breakpoint declarations (991.98px vs 992.98px)
 * - Optimized form controls, buttons, and select inputs to use shared variables
 * - Consolidated deputy tabs responsive styles
 * - Reduced duplicate padding/margin declarations throughout
 */
:root {
    --main: #0b5966;
    --light-main: #1c6a79;
    --dark-main: #073942;
    --secondary: #f8a16d;
    --dark-secondary: #F89459;
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    
    /* Common transition patterns */
    --transition-base: 0.15s ease-in-out;
    --transition-form: border-color var(--transition-base), box-shadow var(--transition-base);
    --transition-button: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
    
    /* Common border radius values */
    --border-radius-sm: 0.25rem;
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    
    /* Common spacing values */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.75rem;
    --spacing-lg: 1rem;
}

/* =================================
   RESPONSIVE BREAKPOINTS USED:
   - max-width: 1199.98px (Large desktop)
   - max-width: 991.98px  (Tablet)
   - max-width: 767.98px  (Mobile)
   - max-width: 575.98px  (Small mobile)
   ================================= */

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

hr:not([size]) {
    height: 1px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1, .h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 2.5rem;
    }
}

h2, .h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    h2, .h2 {
        font-size: 2rem;
    }
}

h3, .h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h3, .h3 {
        font-size: 1.75rem;
    }
}

h4, .h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    h4, .h4 {
        font-size: 1.5rem;
    }
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-left: 2rem;
}

ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

b,
strong {
    font-weight: bolder;
}

small, .small {
    font-size: 0.875em;
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

a {
    color: #0d6efd;
    text-decoration: underline;
}

a:hover {
    color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    direction: ltr /* rtl:ignore */;
    unicode-bidi: bidi-override;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

code {
    font-size: 0.875em;
    color: #d63384;
    word-wrap: break-word;
}

a > code {
    color: inherit;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}


td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

button:focus {
    outline: dotted 1px;
    outline: -webkit-focus-ring-color auto 5px;
}

input,
button,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

[list]::-webkit-calendar-picker-indicator {
    display: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

textarea {
    resize: vertical;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    width: 100px;
    height: auto
}

iframe {
    border: 0;
}

[hidden] {
    display: none !important;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.container,
.container-fluid,
.container-xl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container, .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container, .container-xl {
        max-width: 1320px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    /*width: 100%;*/
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.g-0 {
    --bs-gutter-x: 0;
}

.g-0 {
    --bs-gutter-y: 0;
}

.g-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3 {
    --bs-gutter-x: 1rem;
}

.g-3 {
    --bs-gutter-y: 1rem;
}

@media (min-width: 768px) {
    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66667%;
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333%;
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66667%;
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .g-md-0 {
        --bs-gutter-x: 0;
    }

    .g-md-0 {
        --bs-gutter-y: 0;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66667%;
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66667%;
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333%;
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66667%;
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333%;
    }

    .g-lg-5 {
        --bs-gutter-x: 3rem;
    }

    .g-lg-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1200px) {
    .g-xl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xl-5 {
        --bs-gutter-y: 3rem;
    }
}

.table {
    --bs-table-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6;
}

.table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    background-image: -webkit-gradient(linear, left top, left bottom, from(var(--bs-table-accent-bg)), to(var(--bs-table-accent-bg)));
    background-image: -webkit-linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
    background-image: -o-linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
    background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
    border-bottom-width: 1px;
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: currentColor;
}

.form-control {
    display: block;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-md);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-form);
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.form-control[type="file"] {
    overflow: hidden;
}

.form-control[type="file"]:not(:disabled):not([readonly]) {
    cursor: pointer;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em;
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.form-control::file-selector-button {
    padding: var(--spacing-md) var(--spacing-md);
    margin: calc(-1 * var(--spacing-md)) calc(-1 * var(--spacing-md));
    -webkit-margin-end: var(--spacing-md);
    margin-inline-end: var(--spacing-md);
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: var(--transition-button);
}

@media (prefers-reduced-motion: reduce) {
    .form-control::file-selector-button {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}

.form-control::-webkit-file-upload-button {
    padding: var(--spacing-md) var(--spacing-md);
    margin: calc(-1 * var(--spacing-md)) calc(-1 * var(--spacing-md));
    -webkit-margin-end: var(--spacing-md);
    margin-inline-end: var(--spacing-md);
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: var(--transition-button);
}

@media (prefers-reduced-motion: reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

textarea.form-control {
    min-height: calc(1.5em + calc(2 * var(--spacing-md)) + 2px);
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: var(--spacing-md) var(--spacing-md);
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-button);
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.btn:hover {
    color: #212529;
}

.btn:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn:disabled, .btn.disabled {
    pointer-events: none;
    opacity: 0.65;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-primary:focus {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.btn-primary:active, .btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0a58ca;
    border-color: #0a53be;
}

.btn-primary:active:focus, .btn-primary.active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}

.btn-primary:disabled, .btn-primary.disabled {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
}

.btn-secondary:focus {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}

.btn-secondary:active, .btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #565e64;
    border-color: #51585e;
}

.btn-secondary:active:focus, .btn-secondary.active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}

.btn-secondary:disabled, .btn-secondary.disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.fade {
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    -o-transition: height 0.35s ease;
    transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.dropdown-menu[style] {
    right: auto !important;
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropend .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropend .dropdown-toggle::after {
    vertical-align: 0;
}

.dropstart .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropstart .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropstart .dropdown-toggle::after {
    display: none;
}

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
    margin-left: 0;
}

.dropstart .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #1e2125;
    background-color: #f8f9fa;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0d6efd;
}

.dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}

.dropdown-menu.show {
    display: block;
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}

.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar > .container,
.navbar > .container-fluid, .navbar > .container-xl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar-brand {
    margin-right: var(--spacing-lg);
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-brand img {
    width: 200px;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}

.navbar-nav .dropdown-menu {
    position: static;
}

.navbar-collapse {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    -webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
    transition: -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: box-shadow 0.15s ease-in-out;
    transition: box-shadow 0.15s ease-in-out;
    transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem;
    box-shadow: 0 0 0 0.25rem;
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .navbar-expand-lg .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem;
    }
}

.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.25rem;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.list-group-item + .list-group-item {
    border-top-width: 0;
}

.list-group-item + .list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px;
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: 0.875rem;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.toast:not(.showing):not(.show) {
    opacity: 0;
}

.toast.hide {
    display: none;
}

.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-body iframe{
    width: 100%!important;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 0.9;
}

.tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}

.popover {
    position: absolute;
    top: 0;
    left: 0 /* rtl:ignore */;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}

.popover .popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem;
}

.popover .popover-arrow::before, .popover .popover-arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.popover-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f0f0f0;
    border-bottom: 1px solid #d8d8d8;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
    display: none;
}

.popover-body {
    padding: 1rem 1rem;
    color: #212529;
}

.carousel {
    position: relative;
}

.carousel.pointer-event {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

/* rtl:end:ignore */

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators li {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    -webkit-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators li {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.carousel-indicators .active {
    opacity: 1;
}

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg) /* rtl:ignore */;
        transform: rotate(360deg) /* rtl:ignore */;
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg) /* rtl:ignore */;
        transform: rotate(360deg) /* rtl:ignore */;
    }
}

@keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    display: block;
    padding-top: var(--aspect-ratio);
    content: "";
}

.ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.w-100 {
    width: 100% !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.text-center {
    text-align: center !important;
}

.bg-primary {
    background-color: var(--main) !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-white {
    background-color: var(--bs-white) !important;
}

.text-white {
    color: var(--bs-white) !important;
}

/* rtl:begin:remove */

/* rtl:end:remove */

.rounded {
    border-radius: 0.25rem !important;
}

.visible {
    visibility: visible !important;
}

@media (min-width: 768px) {
    .order-md-last {
        -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }

    .mt-md-5 {
        margin-top: 3rem !important;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pe-md-5 {
        padding-right: 3rem !important;
    }

    .ps-md-4 {
        padding-left: 1.5rem !important;
    }
}

@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .p-lg-5 {
        padding: 3rem !important;
    }
}

.main {
    color: var(--main) !important;
}

.bg-main {
    background-color: var(--main) !important;
}

body {
    font-family: "Roboto", Arial, sans-serif;
    background: #fff;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    color: #000000;
}

a, button {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: var(--dark-main);
    text-decoration: none;
}

a:hover, a:focus, button:hover, button:focus {
    text-decoration: none;
    color: var(--dark-main);
    outline: none !important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5,
.h1, .h2, .h3, .h4, .h5 {
    line-height: 1.5;
    font-weight: 400;
}

.ftco-navbar-light {
    background: transparent !important;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0;
}

.ftco-navbar-light .navbar-brand {
    color: #fff;
}

.ftco-navbar-light .navbar-brand:hover, .ftco-navbar-light .navbar-brand:focus {
    color: #000000 !important;
}

.ftco-navbar-light .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    font-size: 12px;
    padding: var(--spacing-lg) 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 0;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 15px;
    left: 25px;
    right: 25px;
    background-color: #fff;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    z-index: -1;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
    color: #fff;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover:before {
    visibility: visible;
    background-color: #fff;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link.active {
    color: #fff !important;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link.active:before {
    visibility: visible;
    background-color: #fff;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.ftco-navbar-light .navbar-nav > .nav-item .nav-link.active {
    background: transparent;
    background: none;
    color: var(--dark-main);
}

.ftco-navbar-light .navbar-nav > .nav-item .nav-link.active span:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.ftco-navbar-light .navbar-toggler {
    border: none;
    color: rgba(255, 255, 255, 0.9) !important;
    cursor: pointer;
    padding-right: 0;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .1em;
}

.ftco-navbar-light .navbar-toggler:hover, .ftco-navbar-light .navbar-toggler:focus {
    text-decoration: none;
    color: var(--dark-main);
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar-brand {
    font-weight: 900;
    font-size: 24px;
    z-index: 3;
    position: relative;
}

.navbar-brand img {
    width: 200px;
}

@media (max-width: 575.98px) {
    .navbar-brand {
        line-height: 1;
    }
}

.hero-wrap {
    height: 800px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    background: var(--main);
    background: -moz-linear-gradient(45deg, var(--main) 0%, var(--light-main) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, var(--main)), color-stop(100%, var(--light-main)));
    background: -webkit-linear-gradient(45deg, var(--main) 0%, var(--light-main) 100%);
    background: -o-linear-gradient(45deg, var(--main) 0%, var(--light-main) 100%);
    background: -ms-linear-gradient(45deg, var(--main) 0%, var(--light-main) 100%);
    background: linear-gradient(45deg, var(--main) 0%, var(--light-main) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--main)', endColorstr='var(--light-main)', GradientType=1);
}

.hero-wrap.noimage {
    height: 150px;
}

.hero-wrap .map a path {
    transition: fill 0.3s, stroke 0.3s;
}

.hero-wrap .map a:hover path {
    fill: var(--bs-orange);
    stroke: var(--bs-orange);
}

.hero-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .1;
    background: #000000;
    z-index: -1;
}

.hero-wrap:after {
    position: absolute;
    top: -150px;
    left: -200px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    content: '';
    background: #fff;
    z-index: -1;
    opacity: .05;
}

.hero-wrap:before {
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 40%;
    height: 180px;
    content: '';
    background: #000000;
    z-index: -1;
    opacity: .05;
    border-radius: 0 50% 50% 0;
}

.hero-wrap.hero-wrap-2 {
    min-height: auto;
    height: 600px;
}

.hero-wrap.hero-wrap-2 .overlay {
    opacity: 0;
}

.hero-wrap.hero-wrap-2 .slider-text {
    min-height: auto;
    height: 600px;
}

.hero-wrap .slider-text {
    height: 800px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 0;
    position: relative;
}

.hero-wrap .slider-text .ftco-social {
    position: absolute;
    bottom: 70px;
    padding: 0;
}

@media (max-width: 575.98px) {
    .hero-wrap .slider-text .ftco-social {
        bottom: 0px;
    }
}

.hero-wrap .slider-text .ftco-social li {
    list-style: none;
    display: inline-block;
}

.hero-wrap .slider-text .ftco-social li a {
    height: 30px;
    width: 30px;
    display: block;
    float: left;
    color: #fff;
    border-radius: 50%;
    position: relative;
}

.hero-wrap .slider-text .ftco-social li a span {
    position: absolute;
    font-size: 14px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff !important;
}

.hero-wrap .slider-text .ftco-social li a:hover {
    background: var(--dark-main);
}

.hero-wrap .slider-text h1, .hero-wrap .slider-text .h1 {
    font-weight: 700;
    color: #fff;
    font-size: 60px;
    line-height: 1.2;
}

.hero-wrap .slider-text .btn {
    margin-right: 10px;
}

.hero-wrap .slider-text .btn span {
    display: block;
}

.hero-wrap .slider-text .btn .call {
    font-size: 12px;
}

.hero-wrap .slider-text .breadcrumbs {
    font-size: 14px;
    margin-bottom: 10px;
    z-index: 99;
    font-weight: 400;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.hero-wrap .slider-text .breadcrumbs span {
    color: rgba(255, 255, 255, 0.8);
}

.hero-wrap .slider-text .breadcrumbs span i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.hero-wrap .slider-text .breadcrumbs span a {
    color: rgba(255, 255, 255, 0.8);
}

.hero-wrap .slider-text .breadcrumbs span a:hover, .hero-wrap .slider-text .breadcrumbs span a:focus {
    color: var(--dark-main);
}

.hero-wrap .slider-text .breadcrumbs span a:hover i, .hero-wrap .slider-text .breadcrumbs span a:focus i {
    color: var(--dark-main);
}

.hero-wrap .slider-text .bread {
    font-weight: 300;
    color: #fff;
    font-size: 60px;
}

.bg-light {
    background: #f9faff !important;
}

.bg-primary {
    background: var(--dark-main);
}

.btn {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 40px 40px 40px 0;
    -webkit-box-shadow: 0px 24px 36px -11px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0px 24px 36px -11px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 24px 36px -11px rgba(0, 0, 0, 0.09);
    font-size: 14px;
    font-weight: 500;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn:hover, .btn:active, .btn:focus {
    outline: none;
    border-radius: 0 40px 40px 40px;
}

.btn.btn-primary {
    background: var(--light-main) !important;
    border: 1px solid var(--light-main) !important;
    color: #fff !important;
}

.btn.btn-primary span {
    color: #fff !important;
}

.btn.btn-primary:hover {
    border: 1px solid var(--dark-main);
    background: var(--dark-main) !important;
    color: var(--dark-main);
}

.btn.btn-secondary {
    background: var(--secondary) !important;
    border: 1px solid var(--secondary) !important;
    color: #fff !important;
}

.btn.btn-secondary:hover {
    border: 1px solid #bc6ff1;
    background: var(--dark-secondary) !important;
    color: #bc6ff1;
}



.form-control {
    height: 45px;
    background: #fff;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    border-radius: 2px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.3) !important;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.3) !important;
}

.form-control:focus, .form-control:active {
    border-color: var(--dark-main) !important;
}

textarea.form-control {
    height: inherit !important;
}



.services {
    width: 100%;
    background: #fff;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 0;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
}

.services:after {
    position: absolute;
    bottom: -100%;
    right: -15%;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    opacity: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.services .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: #eff2ff;
    margin-bottom: 10px;
}

.services .icon span {
    font-size: 40px;
    line-height: 1.2;
    color: var(--dark-main);
}

.services .text {
    width: 100%;
}

.services .text h2, .services .text .h2 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
}

.services .text p {
    color: #88879e;
}

.services:hover, .services.active {
    background: var(--dark-main);
    -webkit-box-shadow: 0px 5px 14px -6px rgba(0, 0, 0, 0.27);
    -moz-box-shadow: 0px 5px 14px -6px rgba(0, 0, 0, 0.27);
    box-shadow: 0px 5px 14px -6px rgba(0, 0, 0, 0.27);
    color: rgba(255, 255, 255, 0.9);
}

.services:hover:after, .services.active:after {
    bottom: -70%;
    right: 0;
    opacity: 1;
}

.services:hover .icon, .services.active .icon {
    background: white;
}

.services:hover .icon span, .services.active .icon span {
    color: var(--dark-main);
}

.services:hover .text h2, .services:hover .text .h2, .services.active .text h2, .services.active .text .h2 {
    color: #fff;
}

.services:hover .text p, .services.active .text p {
    color: #fff;
}

.v-section {
    position: relative;
    z-index: 0;
}

.v-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: -1;
    background: var(--dark-main);
    background: -moz-linear-gradient(45deg, var(--dark-main) 0%, var(--light-main) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, var(--dark-main)), color-stop(100%, var(--light-main)));
    background: -webkit-linear-gradient(45deg, var(--dark-main) 0%, var(--light-main) 100%);
    background: -o-linear-gradient(45deg, var(--dark-main) 0%, var(--light-main) 100%);
    background: -ms-linear-gradient(45deg, var(--dark-main) 0%, var(--light-main) 100%);
    background: linear-gradient(45deg, var(--dark-main) 0%, var(--light-main) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--dark-main)', endColorstr='var(--light-main)', GradientType=1);
    opacity: 1;
    height: 600px;
}

.v-section .services {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 30px;
    background: #fff;
    -webkit-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.v-section .services .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--dark-main);
    margin: 0 auto;
    margin-bottom: 10px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.v-section .services .icon span {
    color: #fff;
    font-size: 45px;
}

.v-section .services .text h2, .v-section .services .text .h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.v-section .services:hover {
    background: var(--dark-main);
}

.v-section .services:hover .icon {
    background: #fff;
}

.v-section .services:hover .icon span {
    color: var(--dark-main);
}





.ftco-section {
    padding: 6em 0;
    position: relative;
    width: 100%;
}

.text-block p {
    text-align: justify;
}

.text-block a {
    color: var(--secondary);
    text-decoration: underline;
}

.text-block table {
    border: 0;
    width: 100% !important;
}

.text-block th, .text-block td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.text-block th img, .text-block td img {
    width: 25px !important;
    height: 100%;
}


@media (max-width: 575.98px) {
    .ftco-section {
        padding: .5em 0;
    }
}

.ftco-no-pt {
    padding-top: 0 !important;
}

.ftco-no-pb {
    padding-bottom: 0 !important;
}



.ftco-intro {
    width: 100%;
    position: relative;
    z-index: 0;
    color: rgba(255, 255, 255, 0.8);
}

.ftco-intro h2, .ftco-intro .h2 {
    color: #fff;
    font-size: 27px;
    font-weight: 500;
}

.ftco-intro .subscribe-form {
    width: 100%;
}

.ftco-intro .subscribe-form .form-group {
    position: relative;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0;
}

.ftco-intro .subscribe-form .form-group input {
    background: transparent !important;
    color: white !important;
    font-size: 16px;
    padding: 0;
    border-radius: 5px 0px 0px 5px;
    border: none !important;
}

.ftco-intro .subscribe-form .form-group input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: white !important;
}

.ftco-intro .subscribe-form .form-group input::-moz-placeholder {
    /* Firefox 19+ */
    color: white !important;
}

.ftco-intro .subscribe-form .form-group input:-ms-input-placeholder {
    /* IE 10+ */
    color: white !important;
}

.ftco-intro .subscribe-form .form-group input:-moz-placeholder {
    /* Firefox 18- */
    color: white !important;
}

.ftco-intro .subscribe-form .form-group input:focus {
    outline: none !important;
    border: none !important;
}

.ftco-intro .subscribe-form .form-group .btn-icon span {
    color: #fff;
}

.ftco-intro .subscribe-form .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
}

.ftco-footer {
    padding: 5em 0 0 0;
    background: var(--main);
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.ftco-footer:after {
    position: absolute;
    top: -250px;
    left: -200px;
    width: 700px;
    height: 500px;
    border-radius: 50%;
    z-index: -1;
    content: '';
    background: var(--light-main);
}

.ftco-footer:before {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    z-index: -1;
    content: '';
    background: var(--dark-main);
}

.ftco-footer .logo a {
    color: var(--dark-main);
    font-size: 18px;
}

.ftco-footer {
    color: var(--secondary);
}

.ftco-footer .ftco-footer-widget h2, .ftco-footer .ftco-footer-widget .h2 {
    color: var(--secondary);
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Roboto", Arial, sans-serif;
}

.ftco-footer .ftco-footer-widget ul li {
    margin-bottom: 10px;
}

.ftco-footer .ftco-footer-widget ul li a {
    color: var(--secondary);
}

.ftco-footer .ftco-footer-widget ul li a span {
    font-size: 14px;
}

.ftco-footer .ftco-footer-widget ul li a:hover {
    color: var(--dark-main);
}

.ftco-footer .ftco-footer-widget ul li a:hover span {
    color: var(--dark-main);
}

.ftco-footer .ftco-footer-widget .btn-primary {
    background: #fff !important;
    border: 2px solid #fff !important;
}

.ftco-footer .ftco-footer-widget .btn-primary:hover {
    background: #fff;
    border: 2px solid #fff !important;
}

.ftco-footer .block-21 .img {
    display: block;
    height: 50px;
    width: 50px;
}

.ftco-footer .block-21 .text {
    width: calc(100% - 50px);
    padding-left: 20px;
}

.ftco-footer .block-21 .text .heading {
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", Arial, sans-serif;
}

.ftco-footer .block-21 .text .heading a {
    color: var(--dark-secondary);
    text-decoration: none;
}

.ftco-footer .block-21 .text .heading a:hover, .ftco-footer .block-21 .text .heading a:active, .ftco-footer .block-21 .text .heading a:focus {
    text-decoration: none;
    color: var(--secondary);
}

.ftco-footer .block-21 .text .meta > div {
    display: inline-block;
    font-size: 11px;
    margin-right: 5px;
    text-transform: uppercase;
}

.ftco-footer .block-21 .text .meta > div span {
    color: var(--dark-main);
}

.ftco-footer .block-21 .text .meta > div a {
    color: darkgrey;
}

.ftco-footer .block-23 ul {
    padding: 0;
}

.ftco-footer .block-23 ul li {
    font-size: 15px;
}

.ftco-footer .block-23 ul li, .ftco-footer .block-23 ul li > a {
    display: table;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 15px;
}

.ftco-footer .block-23 ul li .icon, .ftco-footer .block-23 ul li .text {
    display: table-cell;
    vertical-align: top;
    color: var(--secondary) !important;
}

.ftco-footer .block-23 ul li .icon {
    width: 40px;
    font-size: 15px;
    padding-top: 2px;
    color: #fff !important;
}

.ftco-footer .bg-wrap {
    background: var(--dark-main);
    background: var(--dark-main);
    background: -moz-linear-gradient(45deg, var(--dark-main) 0%, var(--light-main) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, var(--dark-main)), color-stop(100%, var(--light-main)));
    background: -webkit-linear-gradient(45deg, var(--dark-main) 0%, var(--light-main) 100%);
    background: -o-linear-gradient(45deg, var(--dark-main) 0%, var(--light-main) 100%);
    background: -ms-linear-gradient(45deg, var(--dark-main) 0%, var(--light-main) 100%);
    background: linear-gradient(45deg, var(--dark-main) 0%, var(--light-main) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--dark-main)', endColorstr='var(--light-main)', GradientType=1);
}



#map {
    width: 100%;
}

@media (max-width: 767.98px) {
    #map {
        height: 300px;
    }
}



.heading-section .subheading {
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
    color: var(--dark-main);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
}

.heading-section h2, .heading-section .h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.4;
}

.heading-section h2 span, .heading-section .h2 span {
    font-weight: 400;
}

.heading-section p {
    text-align: justify;
}

@media (max-width: 575.98px) {
    .heading-section h2, .heading-section .h2 {
        font-size: 28px;
    }
}

.heading-section.heading-section-white {
    color: rgba(255, 255, 255, 0.8);
}

.heading-section.heading-section-white .subheading {
    color: #fff;
}

.heading-section.heading-section-white h2, .heading-section.heading-section-white .h2 {
    color: #fff;
}

.img,
.blog-img,
.user-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}



.ftco-counter-section .img {
    display: block;
    width: 100%;
    position: relative;
}

.ftco-counter-section .logo {
    background-image: url("../img/logo.20ed1a921393.svg");
    background-size: 85%;
    background-color: var(--light-main);
}



.ftco-counter-section .counter-section {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.1);
}

.ftco-counter-section .counter-wrap {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

.ftco-counter-section .text {
    width: 100%;
}

.ftco-counter-section .text .number {
    font-size: 50px;
    font-weight: 400;
    color: var(--dark-main);
    line-height: 1;
    display: inline-block;
    margin-bottom: 5px;
}

.ftco-counter-section .text span.counter {
    font-size: 50px;
    font-weight: 400;
    color: var(--dark-main);
    line-height: 1;
    display: inline-block;
    margin-bottom: 5px;
}

.ftco-counter-section .text p {
    display: inline-block;
    font-size: 14px;
    color: #2a3a60;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0;
}

.ftco-counter-section .icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    position: relative;
    margin-bottom: 10px;
}

.ftco-counter-section .icon span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 40px;
}



.blog-entry {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-radius: 4px;
    -webkit-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    justify-content: flex-start !important;
}

.inner-container{
    box-shadow: 0 24px 48px -13px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.hover-main-color:hover{
    color: var(--main)!important;
}

@media (min-width: 768px) {
    .blog-entry {
        margin-bottom: 40px;
    }
}

@media (max-width: 575.98px) {
    .blog-entry {
        margin-bottom: 30px;
    }
}

.blog-entry .text {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    z-index: 0;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

.blog-entry .text .heading {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.blog-entry .text .heading a{
    color: #000000;
    text-decoration: none;
    display: block;
    word-break: normal;
    overflow-wrap: normal;
}

.blog-entry .text .heading a:hover,
.blog-entry .text .heading a:focus,
.blog-entry .text .heading a:active{
    color: var(--dark-main);
}

.blog-entry .meta {
    font-size: 13px;
    font-weight: 500;
}

.blog-entry .meta span {
    margin-right: 10px;
}

.blog-entry .meta a, .meta.span {
    color: var(--dark-main);
}

.blog-entry .btn-custom {
    text-transform: uppercase;
    color: #000000;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Article card image styles */
.blog-entry .block-20 {
    width: 100%;
    height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    border-radius: 0.5rem 0.5rem 0 0;
    transition: all 0.3s ease;
}

.blog-entry:hover .block-20 {
    transform: scale(1.02);
}

/* Responsive adjustments for article images */
@media (max-width: 768px) {
    .blog-entry .block-20 {
        height: 200px;
    }
}

.blog-single h2, .blog-single .h2 {
    font-size: 40px;
    font-weight: 400;
}

.blog-single table td {
    text-align: justify;
}

.blog-single p img:not(.vertical) {
    width: 100% !important;
    height: auto !important;
}

.blog-single p img.vertical {
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
    display: block;
    margin: 0 auto;
}



.contact-section .h3 {
    font-weight: 500;
}

.contact-section .contact-info p a {
    color: var(--dark-main);
}

.contact-section .contact-form {
    width: 100%;
}

.block-9 .form-control {
    height: 50px;
    background: white;
    color: rgba(0, 0, 0, 0.8);
    font-size: 14px;
    border-radius: 2px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    margin-bottom: 10px;
}

.block-9 .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.3) !important;
}

.block-9 .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.block-9 .form-control:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.block-9 .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.3) !important;
}

.block-9 .form-control:focus, .block-9 .form-control:active {
    border-color: var(--dark-main) !important;
}

.block-9 textarea.form-control {
    height: inherit !important;
}

.block-21 .blog-img {
    display: block;
    height: 80px;
    width: 80px;
}

.block-21 .text {
    width: calc(100% - 90px);
}

.block-21 .text .heading {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

.block-21 .text .heading a {
    color: #2a3a60;
}

.block-21 .text .heading a:hover, .block-21 .text .heading a:active, .block-21 .text .heading a:focus {
    color: var(--dark-main);
}

.block-21 .text .meta > div {
    display: inline-block;
    font-size: 11px;
    margin-right: 5px;
}

.block-21 .text .meta > div a {
    color: gray;
    color: var(--dark-main);
}

.tagcloud a {
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 7px;
    margin-right: 4px;
    border-radius: 40px 40px 40px 0;
    color: #fff;
    font-size: 11px;
    background: var(--dark-main);
}





.sidebar-box {
    margin-bottom: 30px;
    padding: 10px;
    font-size: 15px;
    width: 100%;
}

.sidebar-box *:last-child {
    margin-bottom: 0;
}

.sidebar-box h3, .sidebar-box .h3 {
    font-size: 14px;
    margin-bottom: 14px;
    font-weight: 500;
}
.sidebar-box .meta{
    font-size: 10px;
}
.categories li {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    list-style: none;
    font-size: 15px;
    font-weight: 400;
    border-bottom: 1px solid #f9faff;
}

.categories li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.categories li a {
    display: block;
    color: #1a1a1a;
    padding-left: 20px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.categories li a span {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--dark-main);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.categories li a:hover {
    padding-left: 30px;
    color: var(--dark-main);
}

.categories li a:hover span {
    left: 10px;
}

.categories li.active a {
    color: #000000;
    font-style: italic;
}

.shadow {
    box-shadow: 0px 24px 48px -13px var(--dark-main);
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: var(--bs-light)
}

.text-nowrap {
    white-space: nowrap !important;
}

tr[id^="node"] td {
    padding: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

tr[id^="node"] td .item-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    transition: border-color 0.3s;
}

tr[id^="node"] td .item-container:hover {
    border-bottom-color: var(--light-main);
    border-top-color: var(--light-main);
}

tr[id^="node"] td .toggle-children {
    margin-left: auto;
    cursor: pointer;
    border: none;
    background: transparent;
    font-size: 16px;
}

.pagination .page-link {
    color: var(--main);
    background-color: #fff;
    border-color: var(--dark-main);
}

.pagination .page-item.active .page-link {
    color: var(--secondary);
    background-color: var(--main);
    border-color: var(--dark-main);
}

.pagination .page-item.disabled .page-link {
    color: var(--dark-main);
    border-color: var(--dark-main);
}

@media (max-width: 768px) {
    .pagination .page-item {
        margin: 0 2px;
    }

    .pagination .page-link {
        padding: 6px 10px;
        font-size: 14px;
    }
}

.ftco-footer-widget h2 {
    font-size: 1.5rem;
    color: #ff6108;
}

.ftco-footer p {
    font-size: 13px;
    color: #fff;
}

.list-unstyled {
    padding: 0;
    margin: 0;
}

.list-unstyled .mb-3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ftco-footer .block-23 ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ftco-footer .block-23 ul li a {
    color: #fff;
    text-decoration: none;
}

.ftco-footer .block-23 ul li a:hover {
    color: #ff6108;
}

.ftco-footer .block-23 ul li .fa {
    margin-right: 10px;
    color: #ff6108;
}

.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: fit-content;
    z-index: 2000;
}

blockquote {
    padding: 8px;
    background-color: var(--light-main);
    border-top: 1px solid var(--dark-main);
    border-bottom: 1px solid var(--dark-main);
    margin-left: 35px;
    background-position: top left;
    background-repeat: no-repeat;
    text-indent: 30px;
    color: white;
    position: relative;
}

blockquote::before {
    content: "\201C";
    text-indent: 0;
    line-height: 50px;
    color: var(--dark-secondary);
    font-size: 80px;
    left: 5px;
    top: 15px;
    position: absolute;
    font-family: Arial, sans-serif;
}

#graph .line {
    stroke: #000;
    stroke-width: 1.2px;
}

#graph .circle {
    fill: #d3d3d3;
}

#graph .text {
    font-size: 18px; /* Reduced font size */
    font-weight: bold;
}

#graph .label {
    font-size: 12px; /* Reduced font size for compactness */
    fill: #000;
}

#graph .small-label {
    font-size: 10px; /* Smaller text for sublabel */
    fill: #e74c3c; /* Red color for sublabel */
}

#graph .year-button {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px; /* Reduce margins for compact layout */
    background-color: #f39c12;
    color: white;
    border-radius: 10px;
    text-align: center;
    font-size: 12px; /* Smaller font for buttons */
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.col-4 {
        flex: 0 0 auto;
        width: 25%;
    }
.col-5 {
        flex: 0 0 auto;
        width: 20%;
    }

.select2-input {
    display: block;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-md);
    font-size: 1rem;
    line-height: 1.5;
    height: 30px;
    color: #999;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #aaa;
    border-radius: 4px;
    transition: var(--transition-form);
}
.select2-input::placeholder {
    color: #999; /* Change this to your desired color */
}

.select2-input:focus {
    outline: 0;
}
/* Deputy tabs - Common styles */
#deputy-tabs .nav-link {
    color: #495057;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0;
    margin-bottom: -1px;
}

#deputy-tabs .nav-link:hover {
    color: #0056b3;
    background-color: #e9ecef;
}

#deputy-tabs.nav.nav-pills.flex-column .nav-link.active {
    color: #fff !important;
    background-color: var(--main) !important;
    border-color: var(--main) !important;
    font-weight: 500 !important;
}

#deputy-tabs.nav.nav-pills.flex-column .nav-link.active:hover {
    color: #fff !important;
    background-color: var(--light-main) !important;
    border-color: var(--light-main) !important;
}

/* Border radius for first/last items - applies to both desktop and mobile */
#deputy-tabs .nav-item:first-child .nav-link {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

#deputy-tabs .nav-item:last-child .nav-link {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

/* Responsive deputy tabs styling */
@media (max-width: 991.98px) {
    #deputy-tabs {
        flex-direction: column !important;
        flex-wrap: nowrap;
    }
    
    #deputy-tabs .nav-item {
        width: 100%;
        margin-bottom: -1px;
    }
    
    #deputy-tabs .nav-link {
        width: 100%;
        text-align: left !important;
        padding: var(--spacing-md) var(--spacing-lg);
        border-radius: 0 !important;
    }
    
    /* Override border radius for mobile - reset middle items */
    #deputy-tabs .nav-item:not(:first-child):not(:last-child) .nav-link {
        border-radius: 0 !important;
    }
    
    /* Ensure first/last items maintain proper radius on mobile */
    #deputy-tabs .nav-item:first-child .nav-link,
    #deputy-tabs .nav-item:last-child .nav-link {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }
    
    #deputy-tabs .nav-item:first-child .nav-link {
        border-top-left-radius: var(--border-radius) !important;
        border-top-right-radius: var(--border-radius) !important;
    }
    
    #deputy-tabs .nav-item:last-child .nav-link {
        border-bottom-left-radius: var(--border-radius) !important;
        border-bottom-right-radius: var(--border-radius) !important;
    }
}

/* Keep vertical layout on larger screens */
@media (min-width: 992px) {
    #deputy-tabs {
        flex-direction: column !important;
    }
}

/* Desktop table - no horizontal scroll unless absolutely needed */
@media (min-width: 768px) {
    .table-responsive {
        overflow-x: visible;
    }
    
    /* Only enable scroll if content actually overflows */
    .table-responsive.force-scroll {
        overflow-x: auto;
    }
}

/* Mobile table improvements */
@media (max-width: 767.98px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    #sortableTable {
        font-size: 0.875rem;
        min-width: 600px; /* Ensure table is wide enough to show all columns */
    }
    
    #sortableTable th,
    #sortableTable td {
        padding: var(--spacing-sm) var(--spacing-xs);
        white-space: nowrap;
    }
    
    #sortableTable .img-thumbnail {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }
}

/* Chart container styling - reduce graph size to prevent overflow */
.chart-container {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 400px; /* Prevent layout shift */
}

.chart-container > div {
    max-width: 100% !important;
    width: 100% !important;
}

/* Plotly chart responsive adjustments */
.chart-container .plotly-graph-div,
.chart-container .js-plotly-plot,
.chart-container .plot-container {
    max-width: 100% !important;
    width: 100% !important;
    height: 400px !important; /* Fixed height to prevent overflow */
    overflow: hidden !important;
}

/* Plotly SVG and canvas elements */
.chart-container .plotly .svg-container,
.chart-container .plotly .main-svg,
.chart-container svg {
    max-width: 100% !important;
    width: 100% !important;
    height: 400px !important;
}

/* Ensure plotly charts resize properly on tab switch */
.tab-pane:not(.active) .chart-container {
    visibility: hidden;
}

.tab-pane.active .chart-container {
    visibility: visible;
}

/* Plotly modebar (toolbar) adjustments */
.chart-container .modebar {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 1000 !important;
}

/* For smaller screens, make the chart even more compact */
@media (max-width: 991.98px) {
    .chart-container .plotly-graph-div,
    .chart-container .js-plotly-plot,
    .chart-container .plot-container,
    .chart-container .plotly .svg-container,
    .chart-container .plotly .main-svg,
    .chart-container svg {
        height: 350px !important;
    }
}

@media (max-width: 767.98px) {
    .chart-container .plotly-graph-div,
    .chart-container .js-plotly-plot,
    .chart-container .plot-container,
    .chart-container .plotly .svg-container,
    .chart-container .plotly .main-svg,
    .chart-container svg {
        height: 300px !important;
    }
    
    /* Hide some plotly toolbar buttons on mobile for space */
    .chart-container .modebar-group:nth-child(3),
    .chart-container .modebar-group:nth-child(4) {
        display: none !important;
    }
}

/* Mobile fixes for sandwich menu and hero spacing */
@media (max-width: 991.98px) {
    /* Mobile sandwich menu styling */
    .ftco-navbar-light .navbar-collapse {
        background: rgba(11, 89, 102, 0.95);
        border-radius: 5px;
        margin-top: 10px;
        padding: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .ftco-navbar-light .navbar-nav .nav-link {
        color: white !important;
        padding: 8px 15px !important;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }
    
    .ftco-navbar-light .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Style search form in mobile menu */
    .navbar .form-control {
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--main);
    }
    
    .navbar .form-control::placeholder {
        color: rgba(11, 89, 102, 0.7);
    }
}

/* Hero spacing fix for absolutely positioned navbar */
.hero-wrap .slider-text {
    padding-top: 80px; /* Add padding to account for navbar */
}

/* Ensure navbar toggler is properly visible */
.ftco-navbar-light .navbar-toggler {
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.ftco-navbar-light .navbar-toggler .fa-bars {
    color: white;
}
