:root,
[data-bs-theme=light] {
    --ar-gray-100: #f6f9fc;
    --ar-gray-200: #edf1f5;
    --ar-gray-300: #e3e9ef;
    --ar-gray-400: #d7dde2;
    --ar-gray-500: #b4bbc3;
    --ar-gray-600: #858c97;
    --ar-gray-700: #576071;
    --ar-gray-800: #434a57;
    --ar-gray-900: #121519;
    --ar-primary: #448c74;
    --ar-secondary: #edf1f5;
    --ar-success: #3fca90;
    --ar-info: #3f7fca;
    --ar-warning: #edcb50;
    --ar-danger: #ed5050;
    --ar-light: #fff;
    --ar-dark: #121519;
    --ar-primary-rgb: 68, 140, 116;
    --ar-secondary-rgb: 237, 241, 245;
    --ar-success-rgb: 63, 202, 144;
    --ar-info-rgb: 63, 127, 202;
    --ar-warning-rgb: 237, 203, 80;
    --ar-danger-rgb: 237, 80, 80;
    --ar-light-rgb: 255, 255, 255;
    --ar-dark-rgb: 18, 21, 25;
    --ar-primary-text-emphasis: #336a58;
    --ar-secondary-text-emphasis: #576071;
    --ar-success-text-emphasis: #2ea875;
    --ar-info-text-emphasis: #2e66a8;
    --ar-warning-text-emphasis: #e8bd22;
    --ar-danger-text-emphasis: #e82222;
    --ar-light-text-emphasis: #576071;
    --ar-dark-text-emphasis: #121519;
    --ar-primary-bg-subtle: #ecf4f1;
    --ar-secondary-bg-subtle: #f6f9fc;
    --ar-success-bg-subtle: #ecfaf4;
    --ar-info-bg-subtle: #ecf2fa;
    --ar-warning-bg-subtle: #fdfaee;
    --ar-danger-bg-subtle: #fdeeee;
    --ar-light-bg-subtle: #fff;
    --ar-dark-bg-subtle: #ececed;
    --ar-primary-border-subtle: #dae8e3;
    --ar-secondary-border-subtle: #edf1f5;
    --ar-success-border-subtle: #d9f4e9;
    --ar-info-border-subtle: #d9e5f4;
    --ar-warning-border-subtle: #fbf5dc;
    --ar-danger-border-subtle: #fbdcdc;
    --ar-light-border-subtle: #f6f9fc;
    --ar-dark-border-subtle: #edf1f5;
    --ar-white-rgb: 255, 255, 255;
    --ar-black-rgb: 0, 0, 0;
    --ar-font-sans-serif: "Inter", sans-serif;
    --ar-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --ar-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --ar-root-font-size: 1rem;
    --ar-body-font-family: var(--ar-font-sans-serif);
    --ar-body-font-size: 1rem;
    --ar-body-font-weight: 400;
    --ar-body-line-height: 1.5;
    --ar-body-color: #576071;
    --ar-body-color-rgb: 87, 96, 113;
    --ar-body-bg: #fff;
    --ar-body-bg-rgb: 255, 255, 255;
    --ar-emphasis-color: #000;
    --ar-emphasis-color-rgb: 0, 0, 0;
    --ar-secondary-color: #858c97;
    --ar-secondary-color-rgb: 133, 140, 151;
    --ar-secondary-bg: #edf1f5;
    --ar-secondary-bg-rgb: 237, 241, 245;
    --ar-tertiary-color: rgba(87, 96, 113, 0.5);
    --ar-tertiary-color-rgb: 87, 96, 113;
    --ar-tertiary-bg: #f6f9fc;
    --ar-tertiary-bg-rgb: 246, 249, 252;
    --ar-heading-color: var(--ar-gray-900);
    --ar-link-color: #448c74;
    --ar-link-color-rgb: 68, 140, 116;
    --ar-link-decoration: underline;
    --ar-link-hover-color: #37715d;
    --ar-link-hover-color-rgb: 55, 113, 93;
    --ar-link-hover-decoration: none;
    --ar-code-color: #e3116c;
    --ar-highlight-color: #576071;
    --ar-highlight-bg: #fff3cd;
    --ar-border-width: 1px;
    --ar-border-style: solid;
    --ar-border-color: #e3e9ef;
    --ar-border-color-translucent: rgba(0, 0, 0, 0.1);
    --ar-border-radius: 1rem;
    --ar-border-radius-sm: calc(var(--ar-border-radius) * 0.75);
    --ar-border-radius-lg: calc(var(--ar-border-radius) * 1.125);
    --ar-border-radius-xl: calc(var(--ar-border-radius) * 1.5);
    --ar-border-radius-xxl: calc(var(--ar-border-radius) * 2.25);
    --ar-border-radius-2xl: var(--ar-border-radius-xxl);
    --ar-border-radius-pill: 50rem;
    --ar-box-shadow: 0 0.4375rem 1.25rem rgba(208, 208, 196, 0.32);
    --ar-box-shadow-sm: 0 0.375rem 0.75rem -0.125rem rgba(208, 208, 196, 0.24);
    --ar-box-shadow-lg: 0 0.5rem 1.75rem -0.125rem rgba(208, 208, 196, 0.48);
    --ar-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    --ar-focus-ring-width: 0.25rem;
    --ar-focus-ring-opacity: 0.25;
    --ar-focus-ring-color: rgba(68, 140, 116, 0.25);
    --ar-form-valid-color: #3fca90;
    --ar-form-valid-border-color: #3fca90;
    --ar-form-invalid-color: #ed5050;
    --ar-form-invalid-border-color: #ed5050
}

[data-bs-theme=dark] {
    color-scheme: dark;
    --ar-body-color: rgba(255, 255, 255, 0.7);
    --ar-body-color-rgb: 255, 255, 255;
    --ar-body-bg: #121519;
    --ar-body-bg-rgb: 18, 21, 25;
    --ar-emphasis-color: #f6f9fc;
    --ar-emphasis-color-rgb: 246, 249, 252;
    --ar-secondary-color: rgba(255, 255, 255, 0.5);
    --ar-secondary-color-rgb: 255, 255, 255;
    --ar-secondary-bg: rgba(255, 255, 255, 0.03);
    --ar-secondary-bg-rgb: 255, 255, 255;
    --ar-tertiary-color: rgba(255, 255, 255, 0.4);
    --ar-tertiary-color-rgb: 255, 255, 255;
    --ar-tertiary-bg: rgba(255, 255, 255, 0.03);
    --ar-tertiary-bg-rgb: 255, 255, 255;
    --ar-primary-text-emphasis: #3c7b66;
    --ar-secondary-text-emphasis: #edf1f5;
    --ar-success-text-emphasis: #34bc83;
    --ar-info-text-emphasis: #3472bc;
    --ar-warning-text-emphasis: #ebc439;
    --ar-danger-text-emphasis: #eb3939;
    --ar-light-text-emphasis: #edf1f5;
    --ar-dark-text-emphasis: #fff;
    --ar-primary-bg-subtle: #0a1511;
    --ar-secondary-bg-subtle: #434a57;
    --ar-success-bg-subtle: #091e16;
    --ar-info-bg-subtle: #09131e;
    --ar-warning-bg-subtle: #241e0c;
    --ar-danger-bg-subtle: #240c0c;
    --ar-light-bg-subtle: #121519;
    --ar-dark-bg-subtle: #030304;
    --ar-primary-border-subtle: #142a23;
    --ar-secondary-border-subtle: #576071;
    --ar-success-border-subtle: #133d2b;
    --ar-info-border-subtle: #13263d;
    --ar-warning-border-subtle: #473d18;
    --ar-danger-border-subtle: #471818;
    --ar-light-border-subtle: #576071;
    --ar-dark-border-subtle: #434a57;
    --ar-heading-color: #fff;
    --ar-link-color: #8fbaac;
    --ar-link-hover-color: #a5c8bd;
    --ar-link-color-rgb: 143, 186, 172;
    --ar-link-hover-color-rgb: 165, 200, 189;
    --ar-code-color: #ee70a7;
    --ar-highlight-color: rgba(255, 255, 255, 0.7);
    --ar-highlight-bg: #664d03;
    --ar-border-color: rgba(255, 255, 255, 0.13);
    --ar-border-color-translucent: rgba(255, 255, 255, 0.15);
    --ar-form-valid-color: #3fca90;
    --ar-form-valid-border-color: #3fca90;
    --ar-form-invalid-color: #ed5050;
    --ar-form-invalid-border-color: #ed5050
}

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

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ar-heading-color)
}

a {
    color: rgba(var(--ar-link-color-rgb), var(--ar-link-opacity, 1));
    text-decoration: underline
}

a:hover {
    --ar-link-color-rgb: var(--ar-link-hover-color-rgb);
    text-decoration: none
}

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

a {
    text-decoration: none;
}

a:link {
}

a:visited {
}

a:focus {
}

a:hover {
}

a:active {
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand>img {
    margin-right: 0.4375rem;
}

.navbar-toggler {
    padding: 0.625rem 0.25rem;
    font-size: 1.125rem;
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid transparent;
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

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

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

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 var(--si-navbar-toggler-focus-width)
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.535rem 0;
    font-size: var(--si-nav-link-font-size);
    /*font-weight: 500;*/
    text-decoration: none;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
}

/*.nav-item:not(:last-child) {
    border-right: 1px dotted #cccccc;
}*/

.nav-link:hover,
.nav-link:focus {
    /*border-radius: 16px;*/
    color: #C82E3E;
    /*background-color: #feea6c;*/
}

.navbar-top .nav-link {
    color: #ccd2d9;
}

.navbar-top .nav-link:hover {
    color: #99a4b3;
}

.navbar-middle a {
    color: #969696;
    font-weight: 500;
}

.navbar-middle a:hover {
    color: #C82E3E;
}

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 20rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 0.9rem;
    /*0.85*/
    --bs-dropdown-color: var(--bs-body-color);
    --bs-dropdown-bg: var(--bs-body-bg);
    --bs-dropdown-border-color: transparent;
    --bs-dropdown-border-radius: var(--bs-border-radius);
    --bs-dropdown-border-width: var(--bs-border-width);
    --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: var(--bs-box-shadow);
    --bs-dropdown-link-color: var(--bs-body-color);
    --bs-dropdown-link-hover-color: #6366f1;
    --bs-dropdown-link-hover-bg: #f5f5f5;
    /*transparent*/
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #f5f5f5;
    /*transparent*/
    --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    /*max-width: 20rem;*/
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
}

.dropdown-menu.show {
    animation: fade-in .2s ease-in-out;
}

.navbar .navbar-nav .dropdown-menu {
    border: 0;
    border-left: var(--bs-dropdown-border-wdth, 1px) solid var(--bs-border-color);
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0);
    background: none;
    box-shadow: none;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: normal;
    background-color: rgba(0, 0, 0, 0);
    border: 0
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #212529;
    background-color: #f5f9fc;
}

.dropdown-item.active,
.dropdown-item:active {
    /*color: var(--bs-dropdown-link-active-color);*/
    color: var(--bs-dropdown-link-hover-color);
    text-decoration: none;
    font-weight: 500;
    background-color: var(--bs-dropdown-link-active-bg)
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: var(--bs-dropdown-link-color);
    pointer-events: none;
    background-color: transparent;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: 0.1em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid rgba(0, 0, 0, 0);
    border-bottom: 0;
    border-left: 0.3em solid rgba(0, 0, 0, 0);
}

/*
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: 0.1em;
    content: "";
    width: 12px;
    height: 12px;
    background-image: url(../images/icons/chevron-down.svg);
}
*/
.navbar .navbar-nav .dropdown-menu .dropdown-toggle::after {
    margin-top: -0.0625rem;
    margin-right: 0;
    margin-left: 0.5rem;
    font-size: 1em;
}

.submenu {
    border-left: 1px solid var(--bs-border-color);
    list-style-type: none;
    margin-left: 1rem;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        /*margin-top: var(--bs-dropdown-spacer);*/
        margin-top: 0.0625rem;
        border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
        border-radius: 16px;
        background-color: var(--bs-dropdown-bg);
        box-shadow: var(--bs-dropdown-box-shadow);
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .mega-dropdown-column {
        width: 14rem;
        padding: 0 0.75rem;
    }
}

.sidebar-menu li {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
    font-weight: 500;
    /*border-bottom: 1px solid #dee2e6 !important;*/
}

.sidebar-menu li:hover {
    background-color: #f7f7f8;
}

.sidebar-menu a {
    color: #595959;
}

.sidebar-menu a:hover {
    color: #6366f1;
}

.sidebar-menu a.disabled {
    color: #595959;
    pointer-events: none;
    background-color: transparent;
}

.sidebar-menu li.disabled {
    background-color: transparent;
}

.text-info {
    font-size:1rem;
}

.text-info a {
    color: #969696;
}

.text-info a:hover {
    color: #ccd2d9;
}

.btn-warning {
    --bs-btn-color: #000;
    --bs-btn-bg: #ffdd00;
    --bs-btn-border-color: #ffdd00;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #eaca02;
    --bs-btn-hover-border-color: #eaca02;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #eaca02;
    --bs-btn-active-border-color: #eaca02;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffdd00;
    --bs-btn-disabled-border-color: #ffdd00;
}

.logo__text {
    display: flex;
    flex-direction: column;
    max-width: 250px;
    white-space: normal;
    margin-bottom: 5px;
}

.events_item {
    max-width: 100%;
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .events_item-time span {
    color: #fff;
    font-size: 24px;
    display: block;
    line-height: 30px;
  }
  
  .events_item img {
    width: 100%;
    height: 100%;
    /*-webkit-filter: brightness(70%);
    filter: brightness(70%);*/
    object-fit: cover;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  
  .events_item img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-filter: brightness(70%);
    filter: brightness(70%);
  }

  .inner {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.27) 56%, rgba(0, 0, 0, 0.7) 86%);
  }

.rounded-bottom {
    border-bottom-right-radius: 1rem !important;
    border-bottom-left-radius: 1rem !important;
}