@charset "UTF-8";
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --theme-primary: #EF8402;
    --theme-primary-dark: #1337B6;
    --theme-primary-light: #149CFF;
    --theme-primary-very-light: #F3FBFF;
    --theme-primary-border: #AFE2FF;
    --theme-primary-btn-text: #FFFFFF;
    --theme-link: #EF8402;
    --theme-link-hover: #EF8402;
    --bs-gutter-x: 42px;
    --bs-body-bg: #EAEBEE;
    --bs-body-color: #1B1B1F;
    --bs-body-font-family: Montserrat, sans-serif;
    --bs-body-font-size: 16px;
    --bs-body-line-height: 1.5;
}

@media screen and (max-width: 991.98px) {
    :root {
        --bs-gutter-x: 36px;
    }
}

@media screen and (max-width: 767.98px) {
    :root {
        --bs-gutter-x: 12px;
    }
}

a {
    color: var(--theme-link);
    text-decoration: unset;
}

a:hover {
    color: var(--theme-link-hover);
}

a:focus {
    outline-color: transparent;
    outline-style: none;
}

[role=button]:focus {
    outline-color: transparent;
    outline-style: none;
}

article > :last-child {
    margin-bottom: 0;
}

* + h1, * + h2, * + h3, * + h4, * + h5, * + h6 {
    margin-top: 2.5rem;
}

@media screen and (max-width: 991.98px) {
    * + h1, * + h2, * + h3, * + h4, * + h5, * + h6 {
        margin-top: 2rem;
    }
}

img, canvas, video {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

input[type=number] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 768px) {
    main {
        margin-top: 15px;
    }
}

.btn {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 13px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    border: 1px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
    background-color: #EF8402;
    color: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #EF8402;
}

.btn-primary:hover {
    background-color: #DE5D00;
    border-color: #DE5D00;
    color: #FFFFFF;
}

.btn-primary:active {
    background-color: #B03F00;
    border-color: #B03F00;
    color: #FFFFFF;
}

.btn-default {
    background-color: transparent;
    color: #1B1B1F;
    border-radius: 4px;
    border: 1px solid #80838E;
    padding: 13.5px 24px;
    box-sizing: border-box;
}

.btn-default:hover {
    border-color: #1B1B1F;
    background-color: transparent;
    color: #1B1B1F;
}

.btn-default:active {
    border-color: #EF8402;
    background-color: #EF8402;
    color: #FFFFFF;
}

.btn-small {
    font-size: 14px;
    padding: 11px 32px;
}

@media screen and (max-width: 991.98px) {
    .w100-lg {
        width: 100%;
    }
}

.text-small {
    font-size: 14px;
    line-height: 1.3;
}

.last-child-margin-remove > :last-child {
    margin-bottom: 0 !important;
}

@media screen and (max-width: 1199.98px) and (min-width: 991.98px) {
    .last-child-hidden-xl > div:nth-child(4) {
        display: none;
    }
}

.columns-2 {
    -moz-column-gap: 24px;
    column-gap: 24px;
    -moz-column-count: 2;
    column-count: 2;
}

.columns-2 > * {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}

@media screen and (max-width: 991.98px) {
    .columns-2 {
        -moz-column-count: 1;
        column-count: 1;
    }
}

.columns-3 {
    -moz-column-gap: 24px;
    column-gap: 24px;
    -moz-column-count: 3;
    column-count: 3;
}

.columns-3 > * {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}

@media screen and (max-width: 991.98px) {
    .columns-3 {
        -moz-column-count: 1;
        column-count: 1;
    }
}

.dropdown-menu {
    box-shadow: 0 8px 16px rgba(32, 32, 32, 0.16);
}

.dropdown-item {
    transition: color 0.3s ease;
}

.dropdown-item:hover {
    background: transparent;
    color: var(--theme-primary);
}

.dropdown-item:focus {
    background-color: transparent;
}

.w-lg-auto {
    width: auto;
}

@media screen and (max-width: 991.98px) {
    .w-lg-auto {
        width: 100%;
    }
}

.theme-dark:root {
    --bs-body-bg: #131313;
}

.theme-dark .main-container, .theme-dark .head-inner .container {
    background-color: #1B1B1F;
}

.theme-dark .head-inner .container {
    border-color: #2F2F34;
}

.theme-dark .head-col-right, .theme-dark .head-socials {
    border-color: #404147;
}

.theme-dark .head-menu:not(:hover) svg,
.theme-dark .toggle-search:not(:hover) svg {
    fill: #FFFFFF;
}

.theme-dark .head-socials a:not(:hover) svg {
    fill: #E3E6F3;
}

.theme-dark .head-inner nav a:not(:hover) > span {
    color: #FFFFFF;
}

.theme-dark .head-inner nav a:not(:hover) > svg {
    fill: #FFFFFF;
}

.theme-dark .footer .dark-container {
    border-top: 1px solid #404147;
}

.theme-dark .page-title {
    border-bottom-color: #404147;
}

.theme-dark .head-bottom {
    display: block;
}

.theme-dark .pagination > .active > * {
    background-color: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.theme-dark .pagination > *:not(.pagination-arrow) > *:hover,
.theme-dark .pagination > *:not(.pagination-arrow) > *:focus {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #1B1B1F;
}

.theme-dark .pagination > .active > * {
    background-color: transparent;
    color: #FFFFFF;
}

.theme-dark .head-live-btn svg {
    fill: #FFFFFF;
}

.theme-dark .btn-default {
    color: #FFFFFF;
    border-color: #404147;
}

.theme-dark .btn-default:hover {
    color: #EF8402;
    border-color: #EF8402;
}

.theme-dark .btn-default:active {
    background-color: #EF8402;
    color: #FFFFFF;
    border-color: #EF8402;
}

.theme-dark .slider-arrow {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.theme-dark .slider-arrow:hover {
    background-color: #EF8402;
    border-color: #EF8402;
}

.theme-dark .slider-arrow:hover svg {
    fill: #FFFFFF;
}

.theme-dark .slider-arrow:active {
    background-color: #DE5D00;
    border-color: #DE5D00;
}

.theme-dark .slider-arrow:active svg {
    fill: #FFFFFF;
}

.theme-dark .slider-arrow svg {
    fill: #1B1B1F;
}

.theme-light .head {
    background-color: #FFFFFF;
}

.theme-light .footer {
    background-color: #1B1B1F;
}

.head-inner .container {
    border-bottom: 1px solid #E3E6F3;
    background-color: #FFFFFF;
}

.head-logo {
    transition: opacity 0.3s ease;
}

.head-logo img, .head-logo svg {
    -webkit-transform: translate3d(0, 0, 0);
}

.head-logo:hover {
    opacity: 0.7;
}

.head-navigation {
    padding: 23px 0;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .head-navigation {
        justify-content: space-between;
        padding: 16px 0;
    }
}

.head-inner a[aria-expanded=true]:hover {
    opacity: 1;
}

.head-inner a[aria-expanded=true] span {
    color: #EF8402;
}

.head-inner a[aria-expanded=true] svg {
    fill: #EF8402;
    transform: rotate(-180deg);
}

.head-inner nav {
    margin-left: 3rem;
}

@media screen and (max-width: 1399.98px) {
    .head-inner nav {
        margin-left: 2rem;
    }
}

.head-inner nav a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

.head-inner nav a:hover span {
    color: #EF8402;
}

.head-inner nav a:hover svg {
    fill: #EF8402;
}

.head-inner nav a > span {
    color: #1B1B1F;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.head-inner nav a > svg {
    fill: #1B1B1F;
    transition: all 0.3s ease;
}

.head-inner nav > ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.head-inner nav li {
    line-height: 2;
}

.head-inner nav li:not(:last-child) {
    margin-right: 1.5rem;
}

.head .item-active a {
    color: #FFBE00;
}

.head-search-btn {
    margin-left: 16px;
}

.head-search-btn:hover svg {
    fill: #FF6E1D;
}

.head-search-btn svg {
    fill: #1B1B1F;
    transition: fill 0.3s ease;
}

form .in-process {
    display: none;
    position: absolute;
    top: 3px;
    right: 115px;
    width: 20px;
}

form.menu-dropdown-search .in-process {
    top: 7px;
    right: 40px;
}

.head-search {
    position: relative;
    width: 100%;
}

.head-search input {
    padding-left: 38px;
    padding-right: 117px;
}

@media screen and (min-width: 991.98px) {
    .head-search input {
        min-width: 401px;
    }
}

.head-search button {
    -webkit-appearance: none;
    outline: none;
    background-color: transparent;
    border: unset;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    transition: opacity 0.3s ease;
}

.head-search button:hover {
    opacity: 0.7;
}

.head-search button {
    position: absolute;
    right: 40px;
    padding: 0 10px;
    font-size: 14px;
    border-radius: 3px;
    background-color: #ffbe00;
}

.head-search-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    width: 16px;
    height: 16px;
}

.head-search-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    transition: opacity 0.3s ease;
}

.head-search-close:hover {
    opacity: 0.7;
}

.head-menu {
    -webkit-appearance: none;
    border: unset;
    background: transparent;
    padding: 0;
    margin-left: 24px;
    transition: opacity 0.3s ease;
}

.head-menu:hover svg {
    fill: #EF8402;
}

.head-menu:focus-visible {
    outline: none;
}

@media screen and (max-width: 991.98px) {
    .head-menu {
        margin-left: 32px;
    }
}

.head-menu svg {
    transition: fill 0.3s ease;
    fill: #1B1B1F;
}

@media screen and (max-width: 991.98px) {
    .head-menu svg {
        width: 32px;
        height: 32px;
    }
}

.head-live-btn svg {
    fill: #EF8402;
    width: 32px;
    height: 32px;
}

.head-socials {
    padding: 27px 16px 27px 4px;
    border-right: 1px solid #E3E6F3;
    max-height: 78px;
    display: flex;
}

.head-socials svg {
    fill: #224B83;
}

.head-socials ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.head-socials li:not(:last-child) {
    margin-right: 0.5rem;
}

.head-socials a {
    display: block;
    transition: border-color 0.3s ease;
    border: 1px solid transparent;
    border-radius: 4px;
}

.head-socials a:hover:hover {
    border-color: #E3E6F3;
}

.head-socials a:hover:hover svg {
    fill: #EF8402;
}

.head-socials a:hover svg {
    fill: #FFBE00;
}

.head-socials a svg {
    transition: fill 0.3s ease;
}

.head-col-right {
    border-left: 1px solid #E3E6F3;
}

.head-dropdown-btn {
    display: flex;
    align-items: center;
}

.head-dropdown-btn span {
    margin-right: 0.5rem;
}

.head-dropdown {
    border-radius: unset;
    border: unset;
    box-shadow: 0 8px 16px rgba(52, 52, 52, 0.24);
    min-width: 194px;
    padding: 16px;
}

.head-dropdown li:not(:last-child) {
    margin-bottom: 16px;
}

.head-dropdown a {
    color: #1B1B1F;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 500;
}

.head-dropdown a:hover {
    color: #EF8402;
}

.head-dropdown-close {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    -webkit-appearance: none;
    border: unset;
    background-color: transparent;
    padding: 0;
}

.head-dropdown-close:hover svg {
    fill: #FFBE00;
}

.head-dropdown-close:hover span {
    color: #FFBE00;
}

.head-dropdown-close span {
    line-height: 1.2;
    font-weight: 500;
    margin-left: 8px;
    transition: color 0.3s ease;
}

.head-dropdown-close svg {
    transition: fill 0.3s ease;
}

.head-dropdown-live {
    background: #FFFFFF;
    border-radius: 4px;
    height: 32px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 991.98px) {
    .head-dropdown-live {
        height: 40px;
        padding: 0 24px;
        font-size: 14px;
    }
}

@media screen and (max-width: 1199.98px) and (min-width: 991.98px) {
    .head-dropdown-live {
        padding: 0 8px;
        font-size: 10px;
    }
}

.head-dropdown-live:hover {
    opacity: 0.7;
}

.head-dropdown-live span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    margin-left: 8px;
    text-transform: uppercase;
    color: #1B1B1F;
}

@media screen and (max-width: 767.98px) {
    .head-dropdown-live svg {
        width: 24px;
        height: 24px;
    }
}

.head-transparent {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.head-transparent .container {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}

.head-transparent .head-search-btn:hover svg {
    fill: #FFBE00;
}

.head-transparent .head-search-btn svg {
    fill: #FFFFFF;
}

.head-transparent .head-menu svg {
    fill: #FFFFFF;
}

.head-transparent .head-menu svg:hover {
    fill: #FFBE00;
}

.head-transparent .head-inner nav a:hover span {
    color: #FFBE00;
}

.head-transparent .head-inner nav a:hover svg {
    fill: #FFBE00;
}

.head-transparent .head-inner nav a > span {
    color: #FFFFFF;
}

.head-transparent .head-inner nav a > svg {
    fill: #FFFFFF;
}

.head-transparent .head-col-right {
    border-left-color: rgba(255, 255, 255, 0.2);
}

.head-transparent .head-socials {
    border-right-color: rgba(255, 255, 255, 0.2);
}

.head-transparent .head-socials svg {
    fill: #E3E6F3;
}

.head-transparent .head-socials a:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.head-transparent .head-socials a:hover svg {
    fill: #FFBE00;
}

.head-transparent .head-live-btn svg {
    fill: #FFFFFF;
}

.head-bottom {
    display: none;
}

.head-bottom .container {
    background-color: #2F2F34;
}

.head-bottom ul {
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767.98px) {
    .head-bottom ul {
        margin-left: 0;
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

.head-bottom li {
    line-height: 1;
}

.head-bottom li:not(:last-child) {
    margin-right: 32px;
}

@media screen and (max-width: 991.98px) {
    .head-bottom li:not(:last-child) {
        margin-right: 24px;
    }
}

@media screen and (max-width: 767.98px) {
    .head-bottom li:not(:last-child) {
        margin-bottom: 24px;
        margin-right: 0;
    }
}

.head-bottom a {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

@media screen and (max-width: 991.98px) {
    .head-bottom a {
        font-size: 12px;
    }
}

.head-bottom a:hover {
    color: #FFBE00;
}

.head-bottom .accordion-item {
    background-color: transparent;
}

.head-bottom .accordion-button {
    position: relative;
    background-color: transparent;
    line-height: 1.2;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    padding: 16px 0;
}

.head-bottom .accordion-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(227, 230, 243, 0.2);
    height: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.head-bottom .accordion-button:not(.collapsed)::before {
    opacity: 1;
}

.head-bottom .accordion-body {
    padding: 24px 0;
}

@media screen and (min-width: 767.98px) {
    .head-bottom .accordion-body {
        padding: 0;
    }
}

@media screen and (min-width: 767.98px) {
    .head-bottom .collapse:not(.show) {
        display: block;
    }
}

.head-search-items.toggled {
    display: none;
}

.head-search-items.toggled[hidden] {
    display: block !important;
}

.menu-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
    background: transparent;
    opacity: 0;
    transition: opacity 0.15s linear;
    display: none;
}

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

.menu-dropdown .container {
    background-color: #224B83;
    box-shadow: 0 4px 8px rgba(32, 32, 32, 0.16);
}

.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
}

.menu-dropdown-head {
    padding-top: 24px;
    padding-bottom: 24px;
}

.menu-dropdown-body {
    border: 1px solid #37639F;
    border-top: 3px solid transparent;
    padding: 24px;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1.3;
    position: relative;
}

.menu-dropdown-body::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background-color: #FFBE00;
}

.menu-dropdown-body a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

.menu-dropdown-body ul {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

.menu-dropdown-body li {
    font-size: 13px;
    line-height: 1.1;
    color: #FFFFFF;
}

.menu-dropdown-body li:not(:last-child) {
    margin-bottom: 16px;
}

.menu-dropdown-body li a {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.1;
    color: #FFFFFF;
}

.menu-dropdown-body li a:hover {
    color: #FFBE00;
}

.menu-dropdown-body h3 + h3 {
    margin-top: 0;
}

.menu-dropdown-body h3 a {
    color: #FFFFFF;
}

.menu-dropdown-body h3 a:hover {
    color: #FFBE00;
}

.menu-dropdown-body .row > div {
    position: relative;
}

.menu-dropdown-body .row > div:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #37639F;
}

.menu-dropdown-socials {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

.menu-dropdown-socials svg {
    -webkit-transform: translate3d(0, 0, 0);
}

.menu-dropdown-socials a:hover {
    opacity: 0.7;
}

.menu-dropdown-search {
    position: relative;
}

.menu-dropdown-search input {
    padding-right: 32px;
    font-size: 16px;
}

.menu-dropdown-search button {
    -webkit-appearance: none;
    outline: none;
    background-color: transparent;
    border: unset;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    transition: opacity 0.3s ease;
    display: flex;
}

.menu-dropdown-search button:hover {
    opacity: 0.7;
}

.form-input {
    max-width: 100%;
    width: 100%;
    padding: 0 16px;
    height: 32px;
    font-size: 14px;
    border-radius: 4px;
    background-color: #FFFFFF;
    border: 1px solid #E3E6F3;
    -webkit-appearance: none;
    box-sizing: border-box;
    margin: 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:hover {
    border-color: #1B1B1F;
}

.form-input:focus {
    border-color: #E3E6F3;
    border-bottom-color: #1B1B1F;
}

.form-input:focus-visible {
    outline: transparent;
}

.slider-floating {
    position: absolute;
    bottom: 24px;
    right: 42px;
    z-index: 5;
    max-width: 261px;
}

@media screen and (max-width: 767.98px) {
    .slider-floating {
        margin-top: 40px;
        position: relative;
        bottom: unset;
        right: unset;
        max-width: unset;
        padding: 0 12px;
    }
}

.top-news-items {
    background: rgba(34, 75, 131, 0.4);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    padding: 1rem;
}

.top-news {
    color: #FFFFFF;
}

.top-news:not(:first-child) {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1200px) {
    .top-news:not(:first-child) {
        display: none;
    }
}

.top-news a {
    transition: color 0.3s ease;
}

.top-news-head {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.top-news-body {
    min-height: 96px;
}

.top-news-title {
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3;
    color: #FFFFFF;
    display: block;
}

.top-news-category {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    color: #FFBE00;
    display: block;
}

.top-news-date {
    font-size: 11px;
    line-height: 1.3;
    color: #FFFFFF;
    margin-left: 8px;
}

.player-live {
	margin-top:15px;
    display: block;
    padding: 16px 0;
}

.player-live a {
    display: block;
    text-align: center;
}

@media screen and (max-width: 767.98px) {
    .player-live {
        padding-top: 0;
        padding-bottom: 40px;
    }
}

.player-live > a:hover .player-live-btn {
    border-color: #EF8402;
    background-color: #EF8402;
}

.player-live-footer {
    background-color: #EF8402;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.player-live-footer:hover {
    background-color: #DE5D00;
    color: #FFFFFF;
}

.player-live-footer:active {
    background-color: #B03F00;
    color: #FFFFFF;
}

.player-live-footer span {
    text-transform: uppercase;
    margin-left: 8px;
    font-size: 11px;
    font-weight: 500;
}

.player-live-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    background-color: #1B1B1F;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.index-slider .container {
    position: relative;
    background-color: #224B83;
}

.index-slider .swiper {
    max-height: 600px;
}

.index-slider .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(46, 99, 172, 0.9) 0%, rgba(46, 99, 172, 0) 100%), linear-gradient(180deg, rgba(46, 99, 172, 0.2) 0%, rgba(54, 113, 193, 0) 17.35%), linear-gradient(0deg, rgba(34, 75, 131, 0.4), rgba(34, 75, 131, 0.4));
    z-index: 2;
}

@media screen and (max-width: 767.98px) {
    .index-slider .swiper-slide::before {
        background: linear-gradient(359.73deg, #224B83 20%, rgba(34, 75, 131, 0) 99.82%);
    }
}

.index-slider .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(34, 75, 131, 0.6) 0%, rgba(34, 75, 131, 0) 29.49%);
}

@media screen and (min-width: 767.98px) {
    .index-slider .swiper-slide::after {
        display: none;
    }
}

.index-slider .swiper-slide img {
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 991.98px) {
    .index-slider .swiper-slide img {
        min-height: 500px;
    }
}

@media screen and (max-width: 767.98px) {
    .index-slider .swiper-slide img {
        min-height: 380px;
    }
}

.index-slider-controls {
    position: absolute;
    bottom: 24px;
    left: 42px;
    right: 42px;
    z-index: 5;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767.98px) {
    .index-slider-controls {
        margin-top: 32px;
        position: relative;
        right: unset;
        bottom: unset;
        left: unset;
        justify-content: center;
    }
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

@media screen and (max-width: 767.98px) {
    .slider-arrow {
        display: none;
    }
}

.slider-arrow:hover {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}

.slider-arrow:hover svg {
    fill: #1B1B1F;
}

.slider-arrow:active {
    background-color: #E3E6F3;
    border-color: #E3E6F3;
}

.slider-arrow:active svg {
    fill: #1B1B1F;
}

.slider-arrow svg {
    transition: fill 0.3s ease;
}

.slider-arrow.swiper-button-prev {
    margin-right: 24px;
}

.slider-arrow.swiper-button-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.slider-arrow-pos {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

@media screen and (max-width: 767.98px) {
    .slider-arrow-pos {
        display: flex;
    }
}

.slider-arrow-pos.swiper-button-prev {
    left: 8px;
}

.slider-arrow-pos.swiper-button-next {
    right: 8px;
}

.slider-pagination {
    margin-left: 56px;
    line-height: 1;
}

@media screen and (max-width: 767.98px) {
    .slider-pagination {
        margin-left: 0;
    }
}

.slider-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.slider-pagination .swiper-pagination-bullet:not(:last-child) {
    margin-right: 24px;
}

@media screen and (max-width: 767.98px) {
    .slider-pagination .swiper-pagination-bullet:not(:last-child) {
        margin-right: 16px;
    }
}

.slider-pagination .swiper-pagination-bullet-active {
    background-color: #FFBE00;
}

.article-slide-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 42px;
    right: 42px;
    z-index: 10;
    max-width: 546px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (max-width: 991.98px) {
    .article-slide-inner {
        left: 36px;
        right: 36px;
        max-width: 345px;
    }
}

@media screen and (max-width: 767.98px) {
    .article-slide-inner {
        left: 12px;
        right: 12px;
        justify-content: flex-end;
    }
}

.article-slide-head {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-slide-category {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: #FFBE00;
    transition: color 0.3s ease;
}

.article-slide-date {
    font-size: 12px;
    line-height: 1.3;
    margin-left: 8px;
    color: #FFFFFF;
}

.article-slide-type {
    margin-left: 8px;
}

.article-slide-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: #FFFFFF;
    transition: opacity 0.3s ease;
}

.article-slide-title:hover {
    color: #FFFFFF;
    opacity: 0.7;
}

@media screen and (max-width: 991.98px) {
    .article-slide-title {
        font-size: 20px;
    }
}

.section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-large {
    padding-top: 64px;
    padding-bottom: 64px;
}

.section-xlarge {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-top {
    margin-top: 40px;
}

.section-large-top {
    margin-top: 64px;
}

.section-secondary {
    background-color: #F7F7F9;
}

.navigation {
    border: 1px solid #E3E6F3;
    box-sizing: border-box;
    padding: 24px;
}

.navigation h3 {
    margin-bottom: 8px;
}

.navigation ol {
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: li;
}

.navigation li {
    position: relative;
    line-height: 1.5;
    padding-left: 20px;
    color: #EF8402;
}

.navigation li:hover {
    color: #FFBE00;
}

.navigation li::before {
    content: counters(li, ".") ". ";
    counter-increment: li;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    color: inherit;
    transition: color 0.3s ease;
}

.navigation li:not(:last-child) {
    margin-bottom: 8px;
}

.navigation li a {
    color: inherit;
    transition: color 0.3s ease;
    line-height: inherit;
}

.main-container {
    background-color: #FFFFFF;
}

.secondary-container {
    background-color: #1B1B1F;
    color: #FFFFFF;
}

.dark-container {
    background-color: #1B1B1F;
    color: #FFFFFF;
}

.container-gap {
    padding-left: 42px;
    padding-right: 42px;
}

.main-content {
    border: 1px solid #E3E6F3;
    padding: 24px;
}

@media screen and (max-width: 991.98px) {
    .main-content {
        padding: 24px 36px;
        border-left: unset;
        border-right: unset;
    }
}

@media screen and (max-width: 767.98px) {
    .main-content {
        padding: 24px 12px;
    }
}

.main-content.secondary {
    padding: 0;
}

.main-content-head {
    padding: 16px 24px;
    border-bottom: 1px solid #E3E6F3;
}

.main-content-head h3 {
    margin: 0;
    padding-left: 24px;
    position: relative;
}

.main-content-head h3::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    bottom: 0;
    width: 8px;
    height: 8px;
    background-color: #FFBE00;
}

.main-content-body {
    padding: 24px;
}

@media screen and (max-width: 991.98px) {
    .main-content-body {
        padding: 24px 36px;
    }
}

@media screen and (max-width: 767.98px) {
    .main-content-body {
        padding: 24px 12px;
    }
}

.main-content-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-content-body li:not(:last-child) {
    margin-bottom: 24px;
}

@media screen and (max-width: 767.98px) {
    .main-content-body li:not(:last-child) {
        margin-bottom: 16px;
    }
}

.sda-section {
    background-color: #F9F9F9;
    position: relative;
    padding-top: 40px;
    padding-bottom: 26px;
}

@media screen and (max-width: 991.98px) {
    .sda-section {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

.sda-section-small {
    padding-top: 24px;
    padding-bottom: 10px;
}

.sda-section-inner {
    /* max-width: 735px; */
    width: 100%;
    margin: 0 auto;
}

.sda-banner {
    background-color: #EBEBEB;
    height: 116px;
    width: 100%;
}

@media screen and (max-width: 576px) {
    .sda-banner {
        height: 184px;
    }
}

.sda-banner-notice {
    font-weight: normal;
    font-size: 8px;
    line-height: 10px;
    color: #80838E;
    margin-top: 4px;
    display: flex;
    justify-content: flex-end;
}

.weather-block {
    padding: 16px;
    height: 100%;
}

@media screen and (max-width: 1200px) {
    .weather-block {
        padding: 24px;
    }
}

@media screen and (max-width: 991.98px) {
    .weather-block {
        padding: 24px 36px;
    }
}

@media screen and (max-width: 767.98px) {
    .weather-block {
        padding: 24px 12px;
    }
}

.weather-block-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: #1B1B1F;
    margin-bottom: 12px;
}

@media screen and (max-width: 1200px) {
    .weather-block-title {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    .weather-block-title {
        margin-bottom: 12px;
    }
}

.weather-block-title > a {
    transition: opacity 0.3s ease;
}

.weather-block-title > a:hover {
    opacity: 0.7;
}

.weather-block-status {
    display: flex;
    align-items: center;
}

.weather-block-status span {
    margin-left: 8px;
    font-weight: 500;
}

.weather-block-forecast {
    display: flex;
    align-items: center;
}

.weather-block-forecast:hover span {
    color: #FF6E1D;
}

.weather-block-forecast:hover svg {
    fill: #FFFFFF;
}

.weather-block-forecast:hover .weather-block-btn {
    background-color: #EF8402;
    border-color: #EF8402;
}

.weather-block-forecast span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: #1B1B1F;
    margin-left: 8px;
    display: block;
    max-width: -webkit-min-content;
    max-width: -moz-min-content;
    max-width: min-content;
    transition: color 0.3s ease;
}

@media screen and (max-width: 991.98px) {
    .weather-block-forecast span {
        max-width: unset;
    }
}

.weather-block-forecast svg {
    transition: fill 0.3s ease;
}

.weather-block-btn {
    width: 32px;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(95, 95, 95, 0.2);
    border-radius: 50%;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.popular-block {
    height: 100%;
}

@media screen and (min-width: 991.98px) {
    .popular-block {
        padding: 16px 24px 12px;
    }
}

.popular-block-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.popular-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    align-items: center;
    margin-right: -24px;
    margin-left: -24px;
    padding-bottom: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: #000 #BDBFC6;
    scrollbar-width: thin;
}

@media screen and (max-width: 991.98px) {
    .popular-list {
        margin-right: -36px;
        margin-left: -36px;
    }
}

.popular-list::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #E3E6F3;
}

.popular-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.popular-list::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: transparent;
    margin-right: 24px;
    margin-left: 24px;
}

@media screen and (max-width: 991.98px) {
    .popular-list::-webkit-scrollbar-track {
        margin-right: 36px;
        margin-left: 36px;
    }
}

.popular-list::-webkit-scrollbar-thumb {
    border-radius: 8px;
}

.popular-list li:not(:last-child) {
    margin-right: 8px;
}

.popular-list li:first-child {
    padding-left: 24px;
}

@media screen and (max-width: 991.98px) {
    .popular-list li:first-child {
        padding-left: 36px;
    }
}

.popular-list li:last-child {
    padding-right: 24px;
}

@media screen and (max-width: 991.98px) {
    .popular-list li:last-child {
        padding-right: 36px;
    }
}

.popular-list li a {
    height: 32px;
    background: #FFFFFF;
    border: 1px solid #E3E6F3;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #224B83;
    padding: 0 16px;
    white-space: nowrap;
    text-align: center;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.popular-list li a:hover {
    color: #FF6E1D;
    border-color: #FF6E1D;
}

.latest-news {
    border: 1px solid #E3E6F3;
}

.latest-news-head {
    padding: 16px;
    border-bottom: 1px solid #E3E6F3;
}

.latest-news-title {
    padding-left: 16px;
    position: relative;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.latest-news-title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #FFBE00;
}

.latest-news-body {
    padding: 20px 16px;
}

.latest-news-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.latest-news-body li:not(:last-child) {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #E3E6F3;
}

.daily-news {
    background: linear-gradient(180deg, #F8F8FC 0%, #E7ECF4 100%);
    border-top: 3px solid #FFBE00;
    border-bottom: 3px solid #FFBE00;
}

.daily-news-head {
    max-width: 128px;
    margin: 0 auto;
    padding: 4px 16px;
    background-color: #FFBE00;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #1B1B1F;
}

.daily-news-title {
    display: block;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    color: #1B1B1F;
    margin-top: 24px;
    padding: 0 24px;
    transition: color 0.3s ease;
}

.daily-news-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 16px;
    padding-bottom: 24px;
}

.daily-news-category {
    margin-right: 8px;
    color: #224B83;
    line-height: 130%;
    transition: color 0.3s ease;
}

.daily-news-date {
    line-height: 130%;
    color: #80838E;
}

.popular-news-head {
    padding: 16px;
    background-color: #FFBE00;
}

.popular-news-title {
    padding-left: 16px;
    position: relative;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.popular-news-title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #FFFFFF;
}

.popular-news-body {
    border: 1px solid #E3E6F3;
    padding: 16px;
}

.popular-news-body ol {
    margin-top: 16px;
    margin-bottom: 0;
    padding: 0;
    counter-reset: li;
    list-style: none;
}

.popular-news-body li {
    position: relative;
}

.popular-news-body li:not(:last-child) {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #E3E6F3;
}

.popular-news-body li::before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 24px;
    height: 24px;
    background-color: #FFBE00;
    font-weight: 700;
    font-size: 16px;
    color: #1B1B1F;
    display: flex;
    align-content: center;
    justify-content: center;
}

.popular-item {
    display: block;
    padding-left: 32px;
    font-weight: 700;
    font-size: 12px;
    line-height: 130%;
    color: #1B1B1F;
    transition: color 0.3s ease;
}

.article-card {
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 991.98px) {
    .article-card.large {
        border-radius: 8px;
    }

    .article-card.large::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 8px;
        background: linear-gradient(360deg, rgba(9, 20, 41, 0.9) 0%, rgba(10, 23, 49, 0) 50.12%);
    }
}

@media screen and (min-width: 991.98px) and (max-width: 991.98px) {
    .article-card.large::after {
        display: none;
    }
}

@media screen and (min-width: 991.98px) {
    .article-card.large .article-card-img-type {
        width: 48px;
        height: 48px;
        right: 16px;
        bottom: 16px;
        z-index: 1;
    }

    .article-card.large .article-card-img-type svg {
        width: 32px;
        height: 32px;
    }
}

@media screen and (min-width: 991.98px) {
    .article-card.large .article-card-title {
        font-weight: 700;
        font-size: 24px;
        line-height: 1.3;
    }

    .article-card.large .article-card-title:not(:hover) {
        color: #FFFFFF;
    }
}

@media screen and (min-width: 991.98px) {
    .article-card.large .article-card-category:not(:hover) {
        color: #FFFFFF;
    }
}

@media screen and (min-width: 991.98px) {
    .article-card.large .article-card-date {
        color: #C5C7CD;
    }
}

@media screen and (min-width: 991.98px) {
    .article-card.large .article-card-img {
        border-radius: inherit;
        margin-bottom: 0;
    }
}

.article-card-img {
    display: block;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 8px;
}

.article-card-img img {
    width: 100%;
}

.article-card-category {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    color: #224B83;
    transition: color 0.3s ease;
}

.article-card-img-type {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    width: 24px;
    height: 24px;
    background-color: #EF8402;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card-type {
    margin-left: 4px;
}

.article-card-type svg {
    fill: #C5C7CD;
}

.article-card-head {
    display: flex;
    align-items: center;
    line-height: 1;
    margin-bottom: 8px;
}

.article-card-head img {
    display: block;
    margin: 0 auto;
}

.article-card-date {
    font-size: 11px;
    line-height: 1.1;
    color: #80838E;
    margin-left: 8px;
}

.article-card-title {
    display: block;
    font-weight: 700;
    line-height: 1.3;
    color: #1B1B1F;
    transition: color 0.3s ease;
}

@media screen and (min-width: 991.98px) {
    .article-card-inner {
        position: absolute;
        bottom: 32px;
        left: 32px;
        right: 120px;
        z-index: 3;
    }
}

.article-card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

@media screen and (max-width: 991.98px) {
    .article-card-link {
        display: none;
    }
}

.articles-section {
    background-color: #F3F5F9;
}

.news-card-large .news-card-title {
    font-size: 24px;
}

.news-card-large .news-card-head {
    margin-bottom: 16px;
}

.news-card-large .news-card-head:not(:first-child) {
    margin-top: 16px;
}

.news-card-head {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    line-height: 1;
}

.news-card-head:not(:first-child) {
    margin-top: 8px;
}

.news-card-img {
    position: relative;
    overflow: hidden;
    display: block;
}

.news-card-img img {
    width: 100%;
}

.news-card-img-type {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 24px;
    height: 24px;
    background-color: #EF8402;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-type {
    margin-left: 4px;
}

.news-card-type svg {
    fill: #C5C7CD;
}

.news-card-title {
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3;
    overflow-wrap: normal;
    display: block;
    color: #1B1B1F;
    transition: color 0.3s ease;
}

.news-card-body {
    min-height: 85px; /* 96 */
}

@media screen and (max-width: 991.98px) {
    .news-card-body {
        min-height: unset;
    }
}

.news-card-category {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    color: #224B83;
    display: block;
    transition: color 0.3s ease;
}

.news-card-date {
    font-size: 11px;
    line-height: 1.1;
    color: #80838E;
    margin-left: 8px;
}

.news-card-date.latest {
    color: #EF8402;
}

@media screen and (max-width: 991.98px) {
    .news-card-title {
        font-size: 14px;
    }
}

.news-card-desc {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.3;
    color: #80838E;
}

@media screen and (max-width: 767.98px) {
    .news-card-desc {
        display: none;
    }
}

.news-card.large .news-card-category, .news-card.large .news-card-date {
    font-size: 12px;
}

.news-card.large .news-card-head {
    margin-bottom: 16px;
}

.news-card.large .news-card-head:not(:first-child) {
    margin-top: 16px;
}

@media screen and (min-width: 991.98px) {
    .news-card.large .news-card-img-type {
        width: 48px;
        height: 48px;
    }

    .news-card.large .news-card-img-type svg {
        width: 32px;
        height: 32px;
    }
}

.news-card.large .news-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

@media screen and (min-width: 991.98px) {
    .news-card.large .news-card-title {
        font-size: 24px;
    }
}

.news-card.medium .news-card-category, .news-card.medium .news-card-date {
    font-size: 12px;
}

.news-card.medium .news-card-head {
    margin-bottom: 16px;
}

@media screen and (max-width: 991.98px) {
    .news-card.medium .news-card-head {
        margin-bottom: 8px;
    }
}

.news-card.medium .news-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

@media screen and (min-width: 991.98px) {
    .news-card.medium .news-card-title {
        font-size: 20px;
    }
}

.news-card.xsmall .news-card-category, .news-card.xsmall .news-card-date {
    font-size: 12px;
}

.news-card.xsmall .news-card-head {
    margin-bottom: 16px;
}

@media screen and (max-width: 991.98px) {
    .news-card.xsmall .news-card-head {
        margin-bottom: 8px;
    }
}

@media screen and (min-width: 991.98px) {
    .news-card.xsmall .news-card-img-type {
        width: 32px;
        height: 32px;
    }

    .news-card.xsmall .news-card-img-type svg {
        width: 24px;
        height: 24px;
    }
}

.news-card.xsmall .news-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

@media screen and (min-width: 991.98px) {
    .news-card.xsmall .news-card-title {
        font-size: 16px;
    }
}

.news-card.small .news-card-category, .news-card.small .news-card-date {
    font-size: 11px;
}

.news-card.small .news-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

@media screen and (min-width: 991.98px) {
    .news-card.small .news-card-body {
        min-height: 113px;
    }
}

.news-block {
    border: 1px solid #E3E6F3;
    position: relative;
}

@media screen and (max-width: 991.98px) {
    .news-block {
        border-left: unset;
        border-right: unset;
    }
}

.news-block::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background-color: #FFBE00;
}

.news-block-title {
    border-top: 2px solid #E3E6F3;
    border-bottom: 1px solid #E3E6F3;
    padding: 16px 24px;
}

@media screen and (max-width: 767.98px) {
    .news-block-title {
        padding: 16px 12px;
    }
}

.news-block-title h3 {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    padding-left: 24px;
    position: relative;
}

.news-block-title h3::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #FFBE00;
}

.news-block-body {
    padding: 24px;
}

@media screen and (max-width: 767.98px) {
    .news-block-body {
        padding: 12px;
    }
}

.news-block-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.news-block-col {
    padding-left: 0;
    height: 100%;
    list-style: none;
    position: relative;
}

.news-block-col .news-card {
    min-height: 166px;
}

.news-block-col li:not(:last-child) {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E3E6F3;
}

.news-block-col-center {
    position: relative;
}

@media screen and (min-width: 991.98px) {
    .news-block-col-center {
        border-left: 1px solid #E3E6F3;
        border-right: 1px solid #E3E6F3;
    }
}

.news-block-col-center::before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 24px;
    right: 24px;
    background-color: #E3E6F3;
    height: 1px;
    opacity: 0;
}

@media screen and (max-width: 991.98px) {
    .news-block-col-center::before {
        opacity: 1;
    }
}

.news-block-divider {
    position: relative;
}

.news-block-divider::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 24px;
    right: 24px;
    background-color: #E3E6F3;
    height: 1px;
    opacity: 0;
}

@media screen and (max-width: 991.98px) {
    .news-block-divider::before {
        opacity: 1;
    }
}

.news-block-col-three > div:not(:first-child) {
    position: relative;
}

.news-block-col-three > div:not(:first-child)::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 12px;
    right: 12px;
    background-color: #E3E6F3;
    height: 1px;
}

@media screen and (max-width: 1200px) {
    .news-block-col-three > div:not(:first-child)::before {
        top: -12px;
    }
}

@media screen and (max-width: 991.98px) and (min-width: 767.98px) {
    .news-block-col-three > div:not(:first-child)::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: unset;
        width: 1px;
    }
}

@media screen and (max-width: 767.98px) {
    .news-block-col-three > div:not(:first-child)::before {
        left: 12px;
        right: 12px;
        top: -16px;
    }
}

.news-block-col-two > div:not(:first-child) {
    position: relative;
}

.news-block-col-two > div:not(:first-child)::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 12px;
    right: 12px;
    background-color: #E3E6F3;
    height: 1px;
}

@media screen and (max-width: 991.98px) and (min-width: 767.98px) {
    .news-block-col-two > div:not(:first-child)::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: unset;
        width: 1px;
    }
}

@media screen and (max-width: 767.98px) {
    .news-block-col-two > div:not(:first-child)::before {
        left: 12px;
        right: 12px;
        top: -16px;
    }
}

.news-block-row-three {
    position: relative;
}

.news-block-row-three::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 16px;
    right: 16px;
    width: unset;
    height: 1px;
    background-color: #E3E6F3;
}

.news-block-row-three > div:not(:first-child) {
    position: relative;
}

.news-block-row-three > div:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background-color: #E3E6F3;
}

@media screen and (max-width: 991.98px) {
    .news-block-row-three > div:not(:first-child)::before {
        top: -16px;
        left: 16px;
        right: 16px;
        width: unset;
        height: 1px;
    }
}

.news-block-useful .news-block-col-center {
    border-left: unset;
}

.news-block-useful .news-block-divider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: #E3E6F3;
}

@media screen and (max-width: 991.98px) {
    .news-block-useful .news-block-divider::after {
        opacity: 0;
    }
}

.media-section {
    background-image: url("../img/decor/video-section.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    color: #FFFFFF;
}

@media screen and (max-width: 991.98px) {
    .media-section {
        background: linear-gradient(180deg, #224B83 0%, #14274E 100%);
        padding-top: 32px;
        padding-bottom: 48px;
    }
}

.media-section .news-card-title:not(:hover) {
    color: #FFFFFF;
}

.media-section .news-card-type svg {
    fill: #E3E6F3;
}

.media-section .news-card-date {
    color: #FFFFFF;
}

.media-section .news-card-category:not(:hover) {
    color: #FFBE00;
}

.media-section-head {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(227, 230, 243, 0.2);
}

@media screen and (min-width: 991.98px) {
    .media-section-head {
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 8px;
    }
}

@media screen and (max-width: 991.98px) {
    .media-section-head {
        margin-left: -12px;
        margin-right: -12px;
        padding-right: 12px;
        padding-left: 12px;
    }
}

.media-section-head h3 {
    position: relative;
    margin: 0;
    padding-left: 72px;
}

@media screen and (max-width: 991.98px) {
    .media-section-head h3 {
        padding-left: 48px;
    }
}

.media-section-head h3::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 56px;
    height: 8px;
    background-color: #FFBE00;
}

@media screen and (max-width: 991.98px) {
    .media-section-head h3::before {
        width: 32px;
    }
}

.media-section .more-link {
    color: #FFFFFF;
}

@media screen and (max-width: 767.98px) {
    .media-section .more-link {
        margin-left: 48px;
    }
}

.section-heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #1B1B1F;
    position: relative;
    padding-left: 64px;
}

@media screen and (max-width: 991.98px) {
    .section-heading {
        padding-left: 48px;
    }
}

.section-heading::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 56px;
    height: 8px;
    background-color: #FFBE00;
}

@media screen and (max-width: 991.98px) {
    .section-heading::before {
        width: 32px;
    }
}

.more-link {
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.more-link:hover {
    opacity: 0.7;
}

.survey {
    background: linear-gradient(180deg, #F8F8FC 0%, #E7ECF4 100%);
    border: 1px solid #E3E6F3;
    box-sizing: border-box;
    padding: 40px;
}

@media screen and (max-width: 991.98px) {
    .survey {
        padding: 32px;
    }
}

@media screen and (max-width: 767.98px) {
    .survey {
        padding: 24px 16px;
    }
}

.survey-small {
    padding: 24px 16px;
}

.survey-small .survey-type {
    font-size: 13px;
}

.survey-small .survey-head {
    margin-bottom: 16px;
}

.survey-small .survey-item label {
    padding: 8px;
}

.survey-small .survey-item input {
    left: 8px;
}

.survey-small .survey-title {
    font-size: 16px;
    line-height: 1.2;
}

.survey-small .btn {
    padding: 10px 32px;
}

@media screen and (max-width: 991.98px) {
    .survey .btn {
        height: 40px;
        padding: 10px 32px;
    }
}

.survey-head {
    margin-bottom: 24px;
}

.survey-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #1B1B1F;
}

@media screen and (max-width: 991.98px) {
    .survey-title {
        font-size: 20px;
    }
}

.survey-type {
    background: linear-gradient(285.14deg, #EF8402 -31.45%, #FFBE00 87.43%);
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #FFFFFF;
    display: inline-block;
}

@media screen and (max-width: 991.98px) {
    .survey-type {
        font-size: 13px;
    }
}

.survey-item {
    position: relative;
}

.survey-item label {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 14px 16px;
    width: 100%;
    min-height: 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    border: 1px solid #E3E6F3;
    transition: border-color 0.3s ease;
}

@media screen and (max-width: 991.98px) {
    .survey-item label {
        padding: 8px;
    }
}

.survey-item label span {
    margin-left: 32px;
    font-size: 14px;
    line-height: 1.3;
}

.survey-item input {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    width: 24px;
    height: 24px;
}

.survey-item input:checked ~ label {
    border-color: #F8BC53;
}

.survey-item input:hover ~ label {
    border-color: #f7b23a;
}

.survey-items {
    padding: 0;
    list-style: none;
}

.page-nav {
    background-color: #224B83;
    padding-top: 24px;
    padding-bottom: 32px;
}

@media screen and (max-width: 767.98px) {
    .page-nav {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.page-nav-small {
    padding-top: 24px;
    padding-bottom: 24px;
}

@media screen and (max-width: 767.98px) {
    .page-nav-small {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

.page-nav h1 {
    color: #FFFFFF;
}

.page-nav h1:last-child {
    margin-bottom: 0;
}

.page-nav ul {
    margin-bottom: 0;
    margin-left: -16px;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 767.98px) {
    .page-nav ul {
        margin-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

.page-nav li {
    line-height: 1;
    padding: 9px 16px;
}

@media screen and (max-width: 767.98px) {
    .page-nav li {
        padding: 0;
    }
}

.page-nav li:not(:last-child) {
    position: relative;
}

@media screen and (max-width: 767.98px) {
    .page-nav li:not(:last-child) {
        margin-bottom: 24px;
    }
}

.page-nav li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: #53729C;
    width: 4px;
    height: 4px;
}

@media screen and (max-width: 767.98px) {
    .page-nav li:not(:last-child)::before {
        opacity: 0;
    }
}

.page-nav li a {
    font-weight: 500;
    font-size: 14px;
    color: #E3E6F3;
    transition: color 0.3s ease;
}

@media screen and (max-width: 767.98px) {
    .page-nav li a {
        font-size: 16px;
    }
}

.page-nav li a:hover {
    color: #FFBE00;
}

.page-nav .accordion-item {
    background-color: transparent;
}

.page-nav .accordion-button {
    position: relative;
    background-color: transparent;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #FFFFFF;
    padding: 16px 0;
}

.page-nav .accordion-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(227, 230, 243, 0.2);
    height: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-nav .accordion-button:not(.collapsed)::before {
    opacity: 1;
}

.page-nav .accordion-body {
    padding: 24px 0;
}

@media screen and (min-width: 767.98px) {
    .page-nav .accordion-body {
        padding: 0;
    }
}

@media screen and (min-width: 767.98px) {
    .page-nav .collapse:not(.show) {
        display: block;
    }
}

.news-list {
    padding: 24px;
    border: 1px solid #E3E6F3;
}

@media screen and (max-width: 991.98px) {
    .news-list {
        padding: 24px 36px;
        border-left: unset;
        border-right: unset;
    }
}

@media screen and (max-width: 767.98px) {
    .news-list {
        padding: 24px 12px;
    }
}

.news-list .news-card-img {
    min-height: 137px;
}

@media screen and (max-width: 991.98px) {
    .news-list .news-card-img {
        min-height: 112px;
    }
}

@media screen and (max-width: 767.98px) {
    .news-list .news-card-img {
        min-height: unset;
    }
}

.news-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.news-list li:not(:last-child) {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E3E6F3;
}

.news-list-more {
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    color: #1B1B1F;
    background-color: #FFFFFF;
    border: 1px solid #E3E6F3;
    height: 48px;
    margin-top: 32px;
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.news-list-more:hover {
    color: #1B1B1F;
    border-color: #1B1B1F;
}

.news-list-more:active {
    background-color: #EF8402;
    border-color: #EF8402;
    color: #FFFFFF;
}

@media screen and (max-width: 767.98px) {
    .news-list-more {
        margin-top: 40px;
    }
}

.project-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background-color: #E3E6F3;
}

.project-card:hover .project-card-title {
    color: #EF8402;
}

.project-card-img {
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.project-card-img img {
    width: 100%;
}

.project-card-body {
    padding: 16px 16px 24px;
    background: linear-gradient(180deg, #F2F2FC 0%, #E7ECF4 100%);
}

.project-card-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    min-height: 47px;
    color: #1B1B1F;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

@media screen and (min-width: 991.98px) {
    .project-card-title {
        min-height: 46px;
    }
}

.project-card-btn {
    border: 1px solid #C5C7CD;
    box-sizing: border-box;
    border-radius: 4px;
    color: #EF8402;
    background-color: transparent;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.project-card-btn span {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: inherit;
    margin-left: 8px;
}

@media screen and (max-width: 991.98px) {
    .project-card-btn span {
        font-size: 14px;
    }
}

.project-card-btn svg {
    transition: fill 0.3s ease;
}

.project-items-dark .project-card:hover .project-card-btn {
    color: #EF8402;
    border-color: #EF8402;
}

.project-items-dark .project-card:hover .project-card-btn svg {
    fill: #EF8402;
}

.project-items-dark .project-card, .project-items-dark .project-card-body {
    background: #232327;
}

.project-items-dark .project-card-title {
    color: #FFFFFF;
}

.project-items-dark .project-card-btn {
    border-color: #404147;
    color: #FFFFFF;
}

.project-items-dark .project-card-btn svg {
    fill: #FFFFFF;
}

.project-pagination {
    display: flex;
    justify-content: center;
    line-height: 1;
    margin-top: 16px;
}

.project-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #EF8402;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.project-pagination .swiper-pagination-bullet:not(:last-child) {
    margin-right: 8px;
}

.project-pagination .swiper-pagination-bullet-active {
    background-color: #EF8402;
}

.project-detail-tags {
    padding: 0;
    margin-top: 32px;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.project-detail-tags li:not(:last-child) {
    margin-right: 16px;
}

.project-detail-tags a {
    display: block;
    padding: 4px 8px;
    border: 1px solid #404147;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 1.3;
    color: #FFFFFF;
}

@media screen and (max-width: 991.98px) {
    .project-detail-tags a {
        padding: 8px 16px;
    }
}

.team-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background-color: #EF8402;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    opacity: 0.7;
}

.team-card-img {
    overflow: hidden;
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.team-card-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, #EF8402 0%, rgba(239, 132, 2, 0) 25.54%);
}

.team-card-img img {
    width: 100%;
}

.team-card-body {
    padding: 16px 16px 24px;
    background: #EF8402;
}

.team-card-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 8px;
}

@media screen and (max-width: 767.98px) {
    .team-card-title {
        font-size: 16px;
    }
}

.team-card-desc {
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    color: #FFFFFF;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.team-card-btn {
    border: 1px solid #C5C7CD;
    box-sizing: border-box;
    border-radius: 4px;
    color: #EF8402;
    background-color: transparent;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.team-card-btn:hover {
    border-color: #EF8402;
}

.team-card-btn span {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    color: inherit;
    margin-left: 8px;
}

.team-detail {
    background-color: #EF8402;
    border-radius: 8px;
    overflow: hidden;
    margin: 48px 0;
}

.team-detail-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 991.98px) {
    .team-detail-body {
        padding: 32px 24px;
    }
}

@media screen and (max-width: 767.98px) {
    .team-detail-body {
        padding: 32px 16px;
        text-align: center;
    }
}

.team-detail-photo {
    position: relative;
}

.team-detail-photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, #EF8402 0%, rgba(239, 132, 2, 0) 19.32%);
}

@media screen and (max-width: 767.98px) {
    .team-detail-photo::before {
        background: linear-gradient(0deg, #EF8402 0%, rgba(239, 132, 2, 0) 28.35%);
    }
}

.team-detail-photo img {
    height: 328px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (min-width: 991.98px) {
    .team-detail-photo img {
        max-width: 493px;
    }
}

@media screen and (max-width: 767.98px) {
    .team-detail-photo img {
        height: unset;
        width: 100%;
    }
}

.team-detail-position {
    margin-bottom: 48px;
}

.team-detail-social {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767.98px) {
    .team-detail-social {
        justify-content: center;
    }
}

.team-detail-social li:not(:last-child) {
    margin-right: 8px;
}

.team-detail-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #E3E6F3;
    box-sizing: border-box;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.team-detail-social a:hover {
    opacity: 0.7;
}

.team-slider {
    overflow: visible;
}

.team-slider .slider-arrow-pos.swiper-button-prev {
    left: -20px;
}

@media screen and (max-width: 767.98px) {
    .team-slider .slider-arrow-pos.swiper-button-prev {
        left: 0;
    }
}

.team-slider .slider-arrow-pos.swiper-button-next {
    right: -20px;
}

@media screen and (max-width: 767.98px) {
    .team-slider .slider-arrow-pos.swiper-button-next {
        right: 0;
    }
}

.team-slider .swiper-slide {
    width: auto;
}

.team-slider .swiper-button-disabled {
    display: none;
}

.team-slider .team-card {
    max-width: 261px;
}

@media screen and (max-width: 767.98px) {
    .team-slider .team-card {
        max-width: 256px;
    }
}

.project-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(261px, 1fr));
    row-gap: 32px;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

@media screen and (max-width: 991.98px) {
    .project-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
}

.project-slider::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #E3E6F3;
}

.project-slider::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.project-slider::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #656565;
    margin-right: 24px;
    margin-left: 24px;
}

@media screen and (max-width: 991.98px) {
    .project-slider::-webkit-scrollbar-track {
        margin-right: 36px;
        margin-left: 36px;
    }
}

@media screen and (max-width: 767.98px) {
    .project-slider::-webkit-scrollbar-track {
        margin-right: 12px;
        margin-left: 12px;
    }
}

@media screen and (max-width: 991.98px) {
    .project-slider > div:first-child {
        padding-left: 36px;
    }
}

@media screen and (max-width: 767.98px) {
    .project-slider > div:first-child {
        padding-left: 12px;
    }
}

@media screen and (max-width: 991.98px) {
    .project-slider > div:last-child {
        padding-right: 36px;
    }
}

@media screen and (max-width: 767.98px) {
    .project-slider > div:last-child {
        padding-right: 12px;
    }
}

@media screen and (min-width: 1199.98px) {
    .project-slider > div:nth-child(9) {
        display: none;
    }
}

.project-slider .project-card {
    min-width: 256px;
}

.project-slider-wrap {
    overflow-x: hidden;
}

@media screen and (max-width: 991.98px) {
    .project-slider-wrap {
        margin-left: -36px;
        margin-right: -36px;
    }
}

@media screen and (max-width: 767.98px) {
    .project-slider-wrap {
        margin-left: -12px;
        margin-right: -12px;
    }
}

.community-widget {
    padding: 32px 24px;
    border: 1px solid #404147;
    box-sizing: border-box;
    border-radius: 8px;
    margin-top: 40px;
    min-height: 335px;
}

.community-widget h2 {
    margin-bottom: 24px;
}

.nav-links a, .nav-links span {
    vertical-align: middle;
    display: inline-block;
}

.pagination {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-scrolling: touch;
}

.pagination::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 767.98px) {
    .pagination > *:first-child {
        padding-left: 30px;
    }
}

@media screen and (max-width: 575.98px) {
    .pagination > *:first-child {
        padding-left: 16px;
    }
}

@media screen and (max-width: 767.98px) {
    .pagination > *:last-child {
        padding-right: 30px;
    }
}

@media screen and (max-width: 575.98px) {
    .pagination > *:last-child {
        padding-right: 16px;
    }
}

.pagination > * > * {
    background: transparent;
    color: #80838E;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: auto;
    min-height: auto;
    font-weight: 400;
    font-size: 16px;
    box-sizing: border-box;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    text-decoration: unset;
    padding: 5px 20px;
}

.pagination > * > *:hover, .pagination > * > *:focus {
    background-color: #224B83;
    border-color: #224B83;
    color: #FFFFFF;
}

.pagination li {
    margin-right: 8px;
}

.pagination > .active > * {
    border-color: #224B83;
    background-color: #FFFFFF;
    color: #224B83;
    font-weight: 500;
}

.pagination .disabled span {
    background: transparent;
    border-color: transparent;
    color: #80838E;
    font-weight: 500;
    pointer-events: none;
}

.pagination-wrapper {
    overflow: hidden;
    margin-top: 40px;
}

@media screen and (max-width: 1199.98px) {
    .pagination-wrapper {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 767.98px) {
    .pagination-wrapper {
        margin-top: 32px;
    }
}

@media screen and (max-width: 575.98px) {
    .pagination-wrapper {
        margin-left: -16px;
        margin-right: -16px;
    }
}

.pagination-arrow svg {
    transition: fill 0.3s ease, color 0.3s ease, opacity 0.3s ease;
    min-width: 13px;
    width: 13px;
    fill: #80838E;
    color: #80838E;
}

.pagination-arrow > * {
    background: transparent;
    width: 24px;
    padding: 0;
}

.pagination-arrow > *:hover, .pagination-arrow > *:focus {
    background: transparent;
    border-color: transparent;
}

.pagination-arrow:hover svg {
    opacity: 0.6;
}

.pagination-arrow:active svg {
    opacity: 0.7;
}

.pagination-left {
    margin-right: 16px;
}

.pagination-left svg {
    color: #80838E;
    fill: #80838E;
}

.pagination-right {
    margin-left: 8px;
}

.pagination-right svg {
    color: #80838E;
    fill: #80838E;
}

.video-block {
    border: 1px solid #E3E6F3;
}

.video-block-head {
    padding: 16px;
    border-bottom: 1px solid #E3E6F3;
}

.video-block-title {
    position: relative;
    padding-left: 40px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.video-block-title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 32px;
    height: 8px;
    background-color: #FFBE00;
}

.video-block-body {
    padding: 16px;
}

.video-block-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.video-block-body li:not(:last-child) {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E3E6F3;
}

.video-card-img {
    position: relative;
}

.video-card-img img {
    width: 100%;
}

.video-card-icon {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 24px;
    height: 24px;
    background-color: #EF8402;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card-title {
    display: block;
    margin-top: 8px;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.video-card-title:not(:hover) {
    color: #1B1B1F;
}

@media screen and (min-width: 1199.98px) {
    .news-content {
        max-width: 736px;
    }
}

.news-content > :last-child {
    margin-bottom: 0;
}

.news-content a:not(.hover-default) {
    transition: color 0.3s ease;
}

.news-content a:not(.hover-default):hover {
    text-decoration: underline;
}

.news-content a:not(.hover-default):active {
    color: #652FFF;
}

.news-title {
    font-size: 24px;
}

@media screen and (max-width: 767.98px) {
    .news-title {
        font-size: 22px;
    }
}

.news-content-category {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #224B83;
    transition: color 0.3s ease;
}

.news-content-date {
    display: flex;
}

.news-content-date span {
    font-size: 14px;
    line-height: 1.3;
    color: #80838E;
    margin-left: 16px;
}

.news-content-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border: 1px solid #E3E6F3;
    box-sizing: border-box;
    padding: 0 16px;
    color: #80838E;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

@media screen and (max-width: 767.98px) {
    .news-content-btn {
        height: 40px;
    }
}

.news-content-btn:hover {
    border-color: #1B1B1F;
    color: #1B1B1F;
}

.news-content-btn:hover svg {
    fill: #1B1B1F;
}

.news-content-btn:active {
    background-color: #EF8402;
    border-color: #EF8402;
    color: #FFFFFF;
}

.news-content-btn:active svg {
    fill: #FFFFFF;
}

.news-content-btn span {
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    color: inherit;
    margin-left: 8px;
}

.news-content-btn svg {
    transition: fill 0.3s ease;
}

@media screen and (min-width: 991.98px) {
    .news-content-btn.secondary {
        min-width: 200px;
    }
}

.news-content .sda-section {
    margin-top: 32px;
    margin-bottom: 40px;
}

@media screen and (min-width: 1199.98px) {
    .news-content .sda-section {
        margin-left: -138px;
    }
}

@media screen and (max-width: 1199.98px) {
    .news-content .sda-section {
        padding-right: 42px;
        padding-left: 42px;
        margin-right: -42px;
        margin-left: -42px;
    }
}

@media screen and (max-width: 991.98px) {
    .news-content .sda-section {
        padding-right: 36px;
        padding-left: 36px;
        margin-right: -36px;
        margin-left: -36px;
    }
}

@media screen and (max-width: 767.98px) {
    .news-content .sda-section {
        padding-right: 12px;
        padding-left: 12px;
        margin-right: -12px;
        margin-left: -12px;
    }
}

.news-content-img {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
	max-width: 100%;
}

.news-content-img > img {
    width: 100%;
}

.news-footer {
    padding-top: 40px;
}

@media screen and (min-width: 1199.98px) {
    .news-footer {
        max-width: 736px;
    }
}

.news-share {
    padding-top: 24px;
    border-top: 1px solid #E3E6F3;
}

.news-tags {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E3E6F3;
}

.news-channels {
    padding: 16px 24px;
    background-color: #F3F5F9;
    margin-top: 24px;
}

@media screen and (max-width: 767.98px) {
    .news-channels {
        margin-top: 40px;
        padding: 16px 12px;
    }
}

.news-channels-title {
    font-size: 14px;
    line-height: 1.3;
    color: #1B1B1F;
    margin-bottom: 16px;
}

.news-channel {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
}

.news-channel:hover {
    border-color: #1B1B1F;
}

.news-channel span {
    font-size: 12px;
    line-height: 1.3;
    color: #1B1B1F;
    margin-left: 8px;
}

.news-tags-items {
    padding: 0;
    margin: 0;
    list-style: none;
}

.news-tags-items a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    background-color: #FFFFFF;
    border: 1px solid #E3E6F3;
    box-sizing: border-box;
    padding: 0 8px;
    font-size: 12px;
    line-height: 1.3;
    color: #1B1B1F;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.news-tags-items a:hover {
    border-color: #EF8402;
    background-color: #EF8402;
    color: #FFFFFF;
}

.news-share-items {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.news-share-items svg {
    transition: fill 0.3s ease;
}

@media screen and (max-width: 767.98px) {
    .news-share-items svg {
        width: 24px;
        height: 24px;
    }
}

.news-share-items a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E3E6F3;
    transition: border-color 0.3s ease;
    width: 32px;
    height: 32px;
    overflow: hidden;
}

@media screen and (max-width: 991.98px) {
    .news-share-items a {
        width: 40px;
        height: 40px;
    }
}

.news-share-items a:hover {
    opacity: 1;
}

.news-share-items a:hover svg {
    fill: #EF8402;
}

.news-share-items li:not(:last-child) {
    margin-right: 8px;
}

.news-items > div:not(:last-child) {
    margin-bottom: 40px;
}

.img-caption {
    font-size: 14px;
    line-height: 1.3;
    color: #80838E;
    margin-top: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E3E6F3;
}

.gallery .swiper-slide img {
    width: 100%;
}

.gallery-thumbs {
    margin-top: 16px;
}

.gallery-thumbs .swiper-slide {
    width: unset;
    height: unset;
    min-width: 88px;
    cursor: pointer;
}

@media screen and (max-width: 991.98px) {
    .gallery-thumbs .swiper-slide {
        min-width: 72px;
    }
}

@media screen and (max-width: 991.98px) {
    .gallery-thumbs .swiper-slide img {
        width: 72px;
    }
}

.gallery-thumbs .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: rgba(34, 75, 131, 0.6);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-thumbs .swiper-slide::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    opacity: 0;
    height: 2px;
    background-color: #FFBE00;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-thumbs .swiper-wrapper {
    padding-bottom: 6px;
}

.gallery-thumbs .swiper-slide-thumb-active::before, .gallery-thumbs .swiper-slide-thumb-active::after {
    opacity: 1;
}

.gallery-thumbs .slider-arrow {
    cursor: pointer;
    width: 48px;
    height: 48px;
    background-color: rgba(27, 27, 31, 0.6);
    border: unset;
    border-radius: unset;
    top: 0;
    transform: unset;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 991.98px) {
    .gallery-thumbs .slider-arrow {
        width: 39.27px;
        height: 39.27px;
    }
}

.gallery-thumbs .slider-arrow:hover {
    opacity: 0.8;
}

.gallery-thumbs .slider-arrow:hover svg {
    fill: #FFFFFF;
}

.gallery-thumbs .swiper-button-disabled {
    display: none;
}

.gallery-thumbs .swiper-button-prev {
    left: 0;
}

.gallery-thumbs .swiper-button-next {
    right: 0;
}

.gallery-caption {
    padding-top: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E3E6F3;
}

@media screen and (max-width: 767.98px) {
    .gallery-caption {
        order: 1;
    }
}

.gallery-caption-text {
    font-size: 14px;
    line-height: 130%;
}

.gallery-caption-amount {
    font-size: 11px;
    line-height: 130%;
}

.docs-card {
    display: flex;
    align-items: center;
    background: #F3F5F9;
    border: 1px solid #E3E6F3;
    box-sizing: border-box;
    padding: 24px;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 767.98px) {
    .docs-card {
        padding: 16px;
        align-items: start;
    }
}

.docs-card:hover {
    opacity: 0.7;
}

.docs-card:hover span {
    color: #EF8402;
}

.docs-card span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: #1B1B1F;
    margin-left: 24px;
    transition: color 0.3s ease;
}

@media screen and (max-width: 767.98px) {
    .docs-card span {
        margin-left: 16px;
    }
}

.docs-card svg {
    min-width: 24px;
    width: 24px;
    height: 24px;
    -webkit-transform: translate3d(0, 0, 0);
}

.page-title {
    position: relative;
    padding-bottom: 16px;
    border-bottom: 1px solid #E3E6F3;
}

@media screen and (min-width: 767.98px) {
    .page-title.secondary {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.page-title.secondary a {
    display: block;
    margin-left: 24px;
    transition: color 0.3s ease;
}

@media screen and (max-width: 767.98px) {
    .page-title.secondary a {
        margin-top: 16px;
    }
}

.page-title.secondary a:not(:hover) {
    color: #FFFFFF;
}

.page-title h1, .page-title .page-title-h1 {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    padding-left: 24px;
}

@media screen and (max-width: 767.98px) {
    .page-title h1, .page-title .page-title-h1 {
        font-size: 20px;
    }
}

.page-title h3 {
    padding-left: 24px;
    margin: 0;
}

.page-title::before {
    content: "";
    position: absolute;
    top: calc(50% - 11px);
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #FFBE00;
}

@media screen and (max-width: 991.98px) {
    .page-title::before {
        top: 8px;
    }
}

.radio-btn {
    background-image: url("../img/icons/radio-off.svg");
    -webkit-appearance: none;
    outline: 0;
    border: none;
    width: 24px;
    cursor: pointer;
    min-width: 24px;
    height: 24px;
    transition: background-image 0.3s ease;
    overflow: hidden;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin: 0;
}

.radio-btn:checked {
    background-image: url("../img/icons/radio-on.svg");
}

.photo-reports-row > div:not(:first-child) {
    position: relative;
}

.photo-reports-row > div:not(:first-child)::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 12px;
    right: 12px;
    bottom: 0;
    height: 1px;
    background-color: #E3E6F3;
}

.photo-reports-row .news-card.large .news-card-body {
    min-height: unset;
}

.videos-row > div:not(:first-child) {
    position: relative;
}

.videos-row > div:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: #E3E6F3;
}

@media screen and (max-width: 767.98px) {
    .videos-row > div:not(:first-child)::before {
        height: 1px;
        width: unset;
        bottom: unset;
        top: -24px;
        right: 12px;
        left: 12px;
    }
}

.videos-row .news-card.large .news-card-body {
    min-height: unset;
}

.articles-row > div:not(:first-child) {
    position: relative;
}

.articles-row > div:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: #E3E6F3;
}

@media screen and (max-width: 575.98px) {
    .articles-row > div:not(:first-child)::before {
        height: 1px;
        width: unset;
        bottom: unset;
        top: -24px;
        right: 16px;
        left: 16px;
    }
}

@media screen and (max-width: 991.98px) and (min-width: 575.98px) {
    .articles-row > div:nth-child(3)::before {
        bottom: unset;
        left: 16px;
        right: calc(16px - 100%);
        top: -24px;
        height: 1px;
        width: unset;
    }
}

.photos-row > div:not(:first-child) {
    position: relative;
}

.photos-row > div:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: #E3E6F3;
}

@media screen and (max-width: 991.98px) {
    .photos-row > div:not(:first-child)::before {
        height: 1px;
        width: unset;
        bottom: unset;
        top: -24px;
        right: 16px;
        left: 16px;
    }
}

.article-banner {
    position: relative;
    overflow: hidden;
}

.article-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, rgba(9, 20, 41, 0.9) 0%, rgba(10, 23, 49, 0) 58.23%), linear-gradient(0deg, rgba(34, 75, 131, 0.3), rgba(34, 75, 131, 0.3));
}

.article-banner-inner {
    min-height: 504px;
    max-width: 926px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 991.98px) {
    .article-banner-inner {
        min-height: 368px;
        padding: 56px 0;
    }
}

.article-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    -o-object-fit: cover;
    object-fit: cover;
}

.article-banner-title {
    text-align: center;
    color: inherit;
    margin: 0;
}

@media screen and (max-width: 991.98px) {
    .article-banner-title {
        font-size: 24px;
    }
}

.article-banner-category {
    font-size: 14px;
    line-height: 1.1;
    color: inherit;
    margin-bottom: 16px;
}

.article-short {
    font-weight: 500;
    font-size: 18px;
    line-height: 180%;
}

@media screen and (max-width: 991.98px) {
    .article-short {
        font-size: 16px;
    }
}

@media screen and (min-width: 991.98px) {
    .article-content {
        max-width: 641px;
    }
}

.article-content p:last-child {
    margin-bottom: 0;
}

.text-muted {
    font-size: 14px;
    line-height: 1.1;
    color: #80838E;
}

.useful {
    padding: 24px;
    background: #F3F5F9;
    position: relative;
    border-top: 2px solid transparent;
    box-sizing: border-box;
}

@media screen and (max-width: 991.98px) {
    .useful {
        padding: 24px 16px;
    }
}

.useful::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #224B83;
}

.useful p:last-child {
    margin: 0;
}

.useful-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #1B1B1F;
    margin-bottom: 8px;
}

.similar-article {
    border-left: 4px solid #FFBE00;
    box-sizing: border-box;
    padding-left: 16px;
    margin: 32px 0;
}

.similar-article a {
    font-size: 14px;
    line-height: 130%;
    transition: color 0.3s ease;
}

.similar-article a:not(:hover) {
    color: #1B1B1F;
}

.similar-article-title {
    font-weight: 500;
    font-size: 10px;
    line-height: 130%;
    color: #EF8402;
    margin-bottom: 8px;
}

.blockquote {
    padding-top: 24px;
    border-top: 2px solid #EF8402;
    font-weight: normal;
    font-style: italic;
    font-size: 16px;
    line-height: 150%;
    color: #1B1B1F;
}

.tabs {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tabs li:not(:last-child) {
    margin-right: 16px;
}

.tabs li.active a {
    background-color: #EF8402;
    color: #FFFFFF;
    border-color: #EF8402;
}

@media screen and (max-width: 767.98px) {
    .tabs li:first-child {
        padding-left: 12px;
    }

    .tabs li:last-child {
        padding-right: 12px;
    }
}

@media screen and (max-width: 991.98px) and (min-width: 767.98px) {
    .tabs li:first-child {
        padding-left: 36px;
    }

    .tabs li:last-child {
        padding-right: 36px;
    }
}

.tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #404147;
    color: #FFFFFF;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 4px;
    height: 40px;
    padding: 0 24px;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

@media screen and (max-width: 991.98px) {
    .tabs a {
        padding: 0 16px;
    }
}

.tabs a:hover {
    color: #EF8402;
    border-color: #EF8402;
}

.tabs a:active {
    background-color: #EF8402;
    color: #FFFFFF;
    border-color: #EF8402;
}

.tabs-wrapper {
    margin-top: 32px;
    overflow: hidden;
}

.article-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.article-table th {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #1B1B1F;
    padding: 16px;
    text-align: left;
    vertical-align: bottom;
    background: #E3E6F3;
    border: 1px solid #E3E6F3;
}

.article-table td {
    padding: 16px;
    vertical-align: top;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.3;
    border: 1px solid #E3E6F3;
    min-width: 159px;
}

.article-table-wrap {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.article-table-wrap::-webkit-scrollbar {
    display: none;
}

.series-detail h3 {
    margin-bottom: 8px;
}

.series-detail-date {
    font-size: 14px;
    line-height: 130%;
    color: #80838E;
    margin-bottom: 16px;
}

.series-detail-desc {
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
}

.schedule {
    overflow: hidden;
}

.schedule ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.schedule-head {
    background-color: #2F2F34;
    padding: 16px 40px;
    overflow: hidden;
}

@media screen and (max-width: 991.98px) {
    .schedule-head {
        padding: 16px 0;
    }
}

.schedule-head ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 991.98px) {
    .schedule-head ul {
        padding-bottom: 4px;
    }
}

.schedule-head ul::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #80838E;
}

.schedule-head ul::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.schedule-head ul::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: transparent;
    margin-right: 24px;
    margin-left: 24px;
}

@media screen and (max-width: 767.98px) {
    .schedule-head ul::-webkit-scrollbar-track {
        margin-right: 12px;
        margin-left: 12px;
    }
}

.schedule-head ul::-webkit-scrollbar-thumb {
    border-radius: 8px;
}

.schedule-head li:not(:last-child) {
    margin-right: 8px;
}

.schedule-head li:first-child {
    padding-left: 12px;
}

.schedule-head li:last-child {
    padding-right: 12px;
}

.schedule-head li .active {
    border-color: #FFFFFF;
}

.schedule-head li .active span {
    font-weight: 700;
}

.schedule-head a {
    display: flex;
    font-weight: 500;
    color: #E3E6F3;
    padding: 8px 16px;
    border: 1px solid transparent;
    box-sizing: border-box;
    border-radius: 4px;
    white-space: nowrap;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.schedule-head a:hover {
    color: #1B1B1F;
    border-color: #FFFFFF;
    background-color: #FFFFFF;
}

.schedule-head a:active {
    border-color: #EAEBEE;
    background-color: #EAEBEE;
}

.schedule-head span {
    font-size: 14px;
    line-height: 1.1;
    color: inherit;
}

.schedule-body {
    padding: 24px;
    border: 1px solid #2F2F34;
}

@media screen and (max-width: 991.98px) {
    .schedule-body {
        padding: 16px 0;
        border: unset;
    }
}

.schedule-body li:not(:last-child) {
    border-bottom: 1px solid #2F2F34;
}

.schedule-item {
    display: block;
    padding: 16px;
    color: #FFFFFF;
    position: relative;
    transition: background-color 0.3s ease;
}

.past .schedule-item {
    color: #80838E;
}

.now .schedule-item {
    background-color: #2F2F34;
    color: #EF8402;
}

.now .schedule-item .schedule-title:hover {
    opacity: 0.7;
}

.schedule-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background-color: #2F2F34;
}

@media screen and (min-width: 991.98px) {
    .schedule-img {
        min-height: 56px;
    }
}

.schedule-live {
    display: inline-flex;
    align-items: center;
    padding: 5px 16px;
    background-color: #404147;
    margin-top: 8px;
}

@media screen and (max-width: 991.98px) {
    .schedule-live {
        margin-top: 0;
        margin-left: 16px;
    }
}

.schedule-live span {
    font-size: 12px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-left: 8px;
}

.schedule-live svg {
    min-width: 6px;
}

.schedule-date {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
    transition: color 0.3s ease;
}

@media screen and (min-width: 991.98px) {
    .schedule-date {
        min-width: 113px;
    }
}

.schedule-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: inherit;
}

a.schedule-title {
    transition: color 0.3s ease, opacity 0.3s ease;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

a.schedule-title:hover {
    text-decoration: unset;
}

.schedule-age {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #80838E;
}

.schedule-banner {
    transition: opacity 0.3s ease;
}

.schedule-banner:hover {
    opacity: 0.7;
}

.tabs-content > * {
    display: none;
}

.tabs-content > .active {
    display: block;
}

.live-head {
    border-top: 3px solid #FFBE00;
    border-bottom: 1px solid #404147;
    padding: 16px 24px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 991.98px) {
    .live-head {
        padding: 24px 12px;
        flex-wrap: wrap;
        margin-left: -36px;
        margin-right: -36px;
    }
}

@media screen and (max-width: 767.98px) {
    .live-head {
        margin-left: -12px;
        margin-right: -12px;
    }
}

.live-head h3 {
    position: relative;
    padding-left: 24px;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 40px;
}

.live-head h3::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #FFBE00;
}

.live-head .tabs-wrapper {
    margin-top: 0;
}

@media screen and (max-width: 991.98px) {
    .live-head .tabs-wrapper {
        margin-top: 24px;
        margin-left: -36px;
        margin-right: -36px;
    }
}

@media screen and (max-width: 767.98px) {
    .live-head .tabs-wrapper {
        margin-left: -12px;
        margin-right: -12px;
    }
}

.live-head .tabs a {
    padding: 0 16px;
    white-space: nowrap;
    overflow: hidden;
}

.live-label {
    padding: 9px 16px;
    background-color: #2F2F34;
    display: inline-flex;
    align-items: center;
}

.live-label span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    margin-left: 8px;
}

.live-date {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

@media screen and (max-width: 991.98px) {
    .live-date {
        margin-bottom: 8px;
    }
}

.live-date span {
    font-size: 14px;
    line-height: 130%;
    color: #80838E;
}

.live-date span:not(:last-child) {
    margin-right: 8px;
}

.live-title {
    margin-top: 0;
}

@media screen and (max-width: 991.98px) {
    .live-title {
        margin-bottom: 0;
    }
}

.live-desc {
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF;
}

.live-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #404147;
    box-sizing: border-box;
    border-radius: 4px;
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.live-share:hover {
    color: #EF8402;
    border-color: #EF8402;
}

.live-share:hover svg {
    fill: #EF8402;
}

.live-share:active {
    background-color: #EF8402;
    color: #FFFFFF;
    border-color: #EF8402;
}

.live-share:active svg {
    fill: #FFFFFF;
}

.live-share svg {
    transition: fill 0.3s ease;
}

.live-schedule {
    border: 1px solid #2F2F34;
    overflow: hidden;
}

.live-schedule ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: stretch;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 767.98px) {
    .live-schedule ul {
        flex-direction: column;
        max-height: 294px;
        overflow-x: hidden;
        overflow-y: scroll;
    }
}

.live-schedule ul::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #E3E6F3;
}

.live-schedule ul::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.live-schedule ul::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: transparent;
}

.live-schedule ul::-webkit-scrollbar-thumb {
    border-radius: 8px;
}

.live-schedule-item {
    max-width: 279px;
    box-sizing: border-box;
    padding: 16px;
    background-color: #1B1B1F;
    color: #FFFFFF;
    border-left: 1px solid transparent;
}

@media screen and (max-width: 991.98px) {
    .live-schedule-item {
        max-width: unset;
    }
}

.live-schedule-item.past {
    color: #80838E;
}

.live-schedule-item.now {
    background-color: #2F2F34;
}

.live-schedule-item.now .live-schedule-status {
    display: none;
}

.live-schedule-item.now .live-schedule-label {
    display: inline-flex;
}

.live-schedule-item:not(:first-child) {
    border-left: 1px solid #2F2F34;
}

@media screen and (max-width: 767.98px) {
    .live-schedule-item:not(:first-child) {
        border-left: unset;
    }
}

@media screen and (max-width: 767.98px) {
    .live-schedule-item:not(:last-child) {
        border-bottom: 1px solid #2F2F34;
    }
}

.live-schedule-head {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    min-height: 20px;
}

.live-schedule-status {
    color: #80838E;
    font-size: 14px;
    line-height: 1.2;
}

.live-schedule-label {
    display: none;
    padding: 3px 8px;
    background-color: #404147;
    align-items: center;
}

.live-schedule-label span {
    font-weight: 500;
    font-size: 11px;
    line-height: 1.3;
    color: #FFFFFF;
    margin-left: 8px;
}

.live-schedule-date {
    font-size: 14px;
    line-height: 1.2;
    color: #80838E;
    margin-left: 8px;
}

.live-schedule-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 130%;
    color: inherit;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    min-height: 36px;
}

a.live-schedule-title {
    text-decoration: underline;
    transition: color 0.3s ease;
}

a.live-schedule-title:hover {
    text-decoration: unset;
    color: #EF8402;
}

.live-schedule-age {
    font-size: 12px;
    line-height: 1.2;
    text-align: right;
    color: #80838E;
    margin-left: 16px;
}

.schedule-slider {
    height: 105px;
}

@media screen and (max-width: 991.98px) {
    .schedule-slider {
        height: 296px;
    }
}

.schedule-slider .slider-arrow.swiper-button-disabled {
    display: none;
}

.schedule-slider .slider-arrow {
    width: 40px;
    height: 100%;
    border: unset;
    border-radius: unset;
    background: rgba(27, 27, 31, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: unset;
}

@media screen and (max-width: 991.98px) {
    .schedule-slider .slider-arrow {
        display: none;
    }
}

.schedule-slider .swiper-button-prev {
    left: 0;
}

.schedule-slider .swiper-button-prev svg {
    transform: rotate(-180deg);
}

.schedule-slider .swiper-button-next {
    right: 0;
}

@media screen and (min-width: 991.98px) {
    .schedule-slider .swiper-slide {
        width: auto;
    }
}

.schedule-slider .swiper-slide:not(:first-child) .live-schedule-item {
    border-left-color: #2F2F34;
}

@media screen and (max-width: 991.98px) {
    .schedule-slider .swiper-slide:not(:first-child) .live-schedule-item {
        border-bottom: 1px solid #2F2F34;
        border-left: unset;
    }
}

.video-slider {
    overflow: visible;
}

.video-slider .slider-arrow.swiper-button-disabled {
    display: none;
}

.video-slider .swiper-slide {
    width: auto;
}

.video-slider .slider-arrow-pos.swiper-button-prev {
    left: -20px;
}

@media screen and (max-width: 767.98px) {
    .video-slider .slider-arrow-pos.swiper-button-prev {
        left: 0;
    }
}

.video-slider .slider-arrow-pos.swiper-button-next {
    right: -20px;
}

@media screen and (max-width: 767.98px) {
    .video-slider .slider-arrow-pos.swiper-button-next {
        right: 0;
    }
}

.video-slider .slider-arrow-pos {
    top: 18%;
    transform: unset;
}

.video-slider .news-card {
    max-width: 261px;
}

@media screen and (max-width: 991.98px) {
    .video-slider .news-card {
        max-width: 256px;
    }
}

.video-cards-light .news-card-title:not(:hover) {
    color: #FFFFFF;
}

.video-cards-light .news-card-category:not(:hover) {
    color: #FFBE00;
}

.video-cards-light .news-card-type svg {
    fill: #80838E;
}

.offcanvas {
    background-color: #224B83;
    background-clip: border-box;
}

.offcanvas .accordion {
    border-top: 1px solid rgba(227, 230, 243, 0.2);
}

.offcanvas .accordion-button {
    background-color: #224B83;
    padding: 16px 0;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
}

.offcanvas .accordion-button:not(.collapsed)::before {
    opacity: 0;
}

.offcanvas .accordion-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(227, 230, 243, 0.2);
    height: 1px;
    transition: opacity 0.15s ease;
}

.offcanvas .accordion-item {
    background-color: #173D72;
    margin-left: -12px;
    margin-right: -12px;
    padding-right: 12px;
    padding-left: 12px;
}

.offcanvas .accordion-header {
    margin-right: -12px;
    margin-left: -12px;
    padding-left: 12px;
    padding-right: 12px;
    background-color: #224B83;
}

.offcanvas .accordion-body ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    padding-top: 24px;
    padding-bottom: 24px;
}

.offcanvas .accordion-body li {
    font-size: 16px;
    line-height: 1.1;
}

.offcanvas .accordion-body li:not(:last-child) {
    margin-bottom: 24px;
}

.offcanvas .accordion-body li a {
    font-size: inherit;
    line-height: inherit;
    color: #FFFFFF;
}

.offcanvas-socials {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

.offcanvas-socials svg {
    width: 40px;
    height: 40px;
}

.offcanvas-socials a:hover {
    opacity: 0.7;
}

.offcanvas .form-input {
    height: 40px;
}

.offcanvas-header {
    padding: 16px 12px;
}

.offcanvas-body {
    color: #FFFFFF;
    padding: 16px 12px;
}

.offcanvas-close {
    -webkit-appearance: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.offcanvas-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.offcanvas-menu li {
    font-size: 20px;
    line-height: 1.2;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(227, 230, 243, 0.2);
}

.offcanvas-menu li:not(:last-child) {
    margin-bottom: 16px;
}

.offcanvas-menu li a {
    color: #FFFFFF;
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
}

.offcanvas-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.offcanvas-links li {
    font-size: 16px;
    line-height: 1.2;
}

.offcanvas-links li:not(:last-child) {
    margin-bottom: 24px;
}

.offcanvas-links li a {
    color: #FFFFFF;
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
}

.footer {
    overflow: hidden;
    color: #FFFFFF;
    font-size: 14px;
}

.footer a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer a:not(.footer-link) {
    color: inherit;
}

.footer a:not(.footer-link):hover {
    color: #FFBE00;
}

.footer p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767.98px) {
    .footer .accordion-item {
        margin-left: -12px;
        margin-right: -12px;
        padding-right: 12px;
        padding-left: 12px;
    }
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../img/icons/accordion-arrow.svg");
}

.accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
    background-image: url("../img/icons/accordion-arrow.svg");
}

.footer .accordion-button {
    background-color: #1B1B1F;
    padding: 0 12px 16px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
}

.footer .accordion-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    background-color: #404147;
    height: 1px;
    transition: opacity 0.3s ease;
}

.footer .accordion-button:not(.collapsed)::before {
    opacity: 0;
}

.footer .accordion-item {
    background-color: transparent;
}

@media screen and (max-width: 767.98px) {
    .footer .accordion-item {
        background-color: #2F2F34;
    }
}

.footer .accordion-header {
    margin-right: -12px;
    margin-left: -12px;
}

@media screen and (max-width: 767.98px) {
    .footer .accordion-body {
        padding: 24px 0;
    }
}

.footer-menu {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media screen and (min-width: 767.98px) {
    .footer-menu li:not(:last-child) {
        margin-right: 32px;
    }
}

.footer-menu a {
    line-height: 1.2;
    font-size: 16px;
    color: #FFFFFF;
}

.footer-menu a:hover {
    opacity: 1;
    color: #FFBE00;
}

.footer-socials {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-socials svg {
    transition: fill 0.3s ease;
}

@media screen and (max-width: 991.98px) {
    .footer-socials svg {
        width: 24px;
        height: 24px;
    }
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: border-color 0.3s ease;
    width: 32px;
    height: 32px;
    overflow: hidden;
}

@media screen and (max-width: 991.98px) {
    .footer-socials a {
        width: 40px;
        height: 40px;
    }
}

.footer-socials a:hover {
    opacity: 1;
    border-color: #404147;
}

.footer-socials a:hover svg {
    fill: #FFBE00;
}

.footer-socials li:not(:last-child) {
    margin-right: 8px;
}

.footer-divider {
    height: 1px;
    background-color: #404147;
}

.footer-notice {
    line-height: 1.3;
    color: #C5C7CD;
}

.footer-notice::before {
    content: "";
    position: absolute;
    top: -24px;
    bottom: -24px;
    left: 0;
    width: 1px;
    background-color: #404147;
}

@media screen and (max-width: 991px) {
    .footer-notice::before {
        bottom: unset;
        right: 0;
        left: 0;
        top: 0;
        width: 100%;
    }
}

.footer-license {
    line-height: 1.3;
    color: #80838E;
}

.footer-link:not(:hover) {
    color: #FFBE00;
}

@media screen and (min-width: 767.98px) {
    .footer .collapse:not(.show) {
        display: block;
    }
}

.row-divider {
    display: flex;
    align-items: center;
}

.row-divider > :not(:last-child) {
    border-right: 1px solid #C5C7CD;
}

@media screen and (max-width: 767.98px) {
    .row-divider > :not(:last-child) {
        border: unset;
    }
}

.row-divider a:not(.footer-link) {
    color: #C5C7CD;
}

.row-divider a:not(.footer-link):hover {
    opacity: 1;
    color: #FFBE00;
}

@media screen and (min-width: 767.98px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@-webkit-keyframes slideIn {
    0% {
        transform: translateY(2rem);
        opacity: 0;
    }
    100% {
        transform: translateY(1.5rem);
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(2rem);
        opacity: 0;
    }
    100% {
        transform: translateY(1.5rem);
        opacity: 1;
    }
}

@-webkit-keyframes slideInSmallTop {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(1.5rem);
        opacity: 1;
    }
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@keyframes slideInSmallTop {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(1.5rem);
        opacity: 1;
    }
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideInTop {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@keyframes slideInTop {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.slideInSmallTop {
    -webkit-animation-name: slideInSmallTop;
    animation-name: slideInSmallTop;
}

.slideInTop {
    -webkit-animation-name: slideInTop;
    animation-name: slideInTop;
}

@media all and (min-width: 991.98px) {
    nav .nav-item .dropdown-menu {
        display: none;
    }

    nav .nav-item:hover a svg {
        transform: rotate(-180deg);
    }

    nav .nav-item:hover .dropdown-menu {
        display: block;
    }

    nav .nav-item .dropdown-menu {
        margin-top: 0;
    }
}

.section-full {
    padding-right: 42px;
    padding-left: 42px;
    margin-right: -42px;
    margin-left: -42px;
}

@media screen and (max-width: 991.98px) {
    .section-full {
        padding-right: 36px;
        padding-left: 36px;
        margin-right: -36px;
        margin-left: -36px;
    }
}

@media screen and (max-width: 767.98px) {
    .section-full {
        padding-right: 12px;
        padding-left: 12px;
        margin-right: -12px;
        margin-left: -12px;
    }
}

.dark-section {
    background: linear-gradient(180deg, #262628 0%, #1B1B1F 13.85%);
    padding-top: 48px;
}

.dark-section-heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    padding-bottom: 16px;
    border-bottom: 1px solid #404147;
    margin-bottom: 24px;
}

.dark-section-heading h3 {
    position: relative;
    padding-left: 64px;
    margin: 0;
}

.dark-section-heading h3::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 56px;
    height: 8px;
    background-color: #FFBE00;
}

@media screen and (max-width: 991.98px) {
    .re-container {
        margin-right: -36px;
        margin-left: -36px;
    }
}

@media screen and (max-width: 767.98px) {
    .re-container {
        margin-right: -12px;
        margin-left: -12px;
    }
}

.my-video-dimensions {
    width: 100%;
}

.video-js .vjs-big-play-button {
    top: calc(50% - 30px) !important;
    left: calc(50% - 50px) !important;
}

.page-contacts ul li {
    vertical-align: top;
    display: inline-block;
    padding: 0 10px;
}

.live-loading {
    display: block;
    border: 1px solid #2F2F34;
    padding: 100px 0;
    width: 100%;
    text-align: center;
    color: #2F2F34;
}

iframe {
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    iframe {
        width: 100%;
        height: 250px;
    }
}

.totalpoll-message-error {
    margin-bottom: 30px !important;
}

.sda-banner {
    height: auto;
}

.sda-banner img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
    height: auto;
}

.team-card {
    min-height: 275px;
}

.swiper-sidebar .team-card {
    min-height: 370px;
}

.theme-dark .head-inner nav a.active > span, .head-inner nav a.active > span {
    color: #EF8402;
}

.theme-dark .head-inner nav a.active > svg, .head-inner nav a.active > svg {
    fill: #EF8402;
}

.theme-dark .menu-dropdown .container {
    background-color: #2F2F34;
}

.docs-card span {
    word-break: break-all;
}

.news-tags-items a {
    height: auto;
}

.copy-me-text {
    position: absolute;
    top: -1000px;
}

.post-share li a {
    color: #224B83;
}

.social-share-container {
    position: relative;
}

.social-share-items {
    display: none;
    position: absolute;
    padding: 10px;
    top: 35px;
    left: 8px;
    background-color: #fff;
}

.social-share-items ul {
    margin: 0;
    padding: 0;
}

.social-share-items ul li {
    list-style: none;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    top: 50%;
    right: -50px;
    width: 50px;
    height: 50px;
    border-top: 1px solid #fff;
    border-right: none;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    transition: right 0.3s, background 0.3s, border 0.3s;
    cursor: pointer;
    z-index: 1;
}

.scroll-top:hover {
    border: 1px solid #ffbe00;
    background: #ffbe00;
}

.scroll-top:hover:after {
    background: url(/wp-content/themes/kuban24/assets/img/sprite.png) no-repeat -182px -96px;
}

.scroll-top:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 9px;
    width: 31px;
    height: 17px;
    background: url(/wp-content/themes/kuban24/assets/img/sprite.png) no-repeat -221px -96px;
}

/* Yandex maps for programs */
.map {
    width: 100%;
    height: 500px;
}

.mapContainer {
    position: relative;
}

.mapControls {
    display: block;
    position: relative;
    top: -15px;
    left: calc(100% - 34px);
}

.mapControls div {
    vertical-align: middle;
    display: inline-block;
}

.mapControls .mapBack {
    display: none;
    padding: 5px;
    color: #fff;
    background: #EF8402;
    cursor: pointer;
}

.mapControls .mapShowProgramList {
    position: relative;
    padding: 3px 5px 5px;
    color: #fff;
    background: #EF8402;
    cursor: pointer;
}

.mapControls .mapItems {
    overflow: auto;
    display: none;
    position: absolute;
    padding: 0 15px;
    top: 49px;
    right: calc(100% - 34px);
    width: 250px;
    max-height: 500px;
    background: #fff;
    z-index: 1;
}

.mapControls .mapItems h4 {
    margin-bottom: 0 !important;
}

.mapControls .mapItems ul li {
    margin: 0 !important;
    width: auto;
    font-size: 16px !important;
    line-height: normal !important;
}

.mapControls .mapItems ul li:before {
    display: none;
    content: "";
}

.mapControls .mapItems ul li a {
    color: #000 !important;
}

@media (max-width: 768px) {
    .map {
        height: 70vh;
    }

    .mapControls {
        top: -55px;
    }

    .mapControls .mapItems {
        top: 88px;
        max-height: 250px;
    }

    .mapControls .mapShowProgramList {
        top: 45px;
    }
}

/* Page channel */
.sources-list-parents {
    border: 1px solid #2F2F34;
}

.sources-list-parents .sources-list-parent {
    padding: 30px 30px 10px;
    border-right: 1px solid #2F2F34;
    cursor: pointer;
}

.sources-list-parents .sources-list-parent:last-child {
    border-right: none;
}

.sources-list-parents .sources-list-parent.active, .sources-list-parents .sources-list-parent:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sources-list-parents .sources-list-parent img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    height: auto;
}

.sources-list-parents .sources-list-parent svg {
    display: block;
    margin: 30px auto;
    width: 100%;
    height: auto;
}

.sources-list-parents .sources-list-parent p {
    padding: 30px 0 0;
    text-align: center;
}

@media (max-width: 768px) {
    .sources-list-parents .sources-list-parent {
        padding: 5px;
    }

    .sources-list-parents .sources-list-parent p {
        font-size: 13px;
    }

    .sources-list-parents, .sources-list-parents .sources-list-parent:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 992px) {
    .sources-list-parents {
        border-bottom: none;
    }

    .sources-list-parents .sources-list-parent {
        border-bottom: 1px solid #2F2F34;
    }
}

.sources-list-children {
    display: none;
    padding: 50px 0;
}

.sources-list-children.active {
    display: flex;
    background-color: rgba(255, 255, 255, .1);
}

.sources-list-children .sources-list-child a {
    color: #ccc;
    text-align: center;
}

.sources-list-children .sources-list-child:hover a {
    color: #fff;
}

.sources-list-children .sources-list-child h3 {
    display: inline-block;
}

.sources-list-children .sources-list-child .download-btn {
    vertical-align: middle;
    display: inline-block;
    margin-left: 20px;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: #2F2F34;
}

.sources-list-children .sources-list-child .download-btn svg {
    fill: #FFBE00;
}

.gallery-item {
    transition: opacity 0.3s;
}

.gallery-item:hover {
    opacity: 0.5;
}

.gallery-item img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.gallery-item-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 1;
}

.gallery-item-container .item {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-item-container .item img {
    display: block;
    position: relative;
    margin: auto;
    top: 50%;
    width: 100%;
    max-width: 50%;
    height: auto;
    max-height: 100%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .gallery-item-container .item img {
        max-width: 90%;
    }
}

@media (min-width: 992px) {
    .press_reliz .col-5-in-line {
        width: 20%;
    }
}

@media (max-width: 768px) {
    .press_reliz .article-card-title {
        font-size: 14px;
    }
}

.pagination > * > * {
    padding: 11px 18.5px !important;
    margin-left: 5px
}

@media (max-width: 768px) {
    .pagination > * > * {
        padding: 5px 10px !important;
        margin-left: 0
    }
}

.nav-links .current {
    border: 1px solid #224B83 !important
}

.pagination > * > *:hover, .pagination > * > *:focus {
    background-color: #224B83;
    border-color: #224B83;
    color: #fff;
    padding: 11px 18.5px !important
}

.mw-100 {
    max-width: 100%;
}

.prev:hover, .next:hover {
    background: transparent !important;
    border: 1px solid transparent !important;
    opacity: .6 !important
}

.wp-caption {
    max-width: 100% !important;
    width: 100% !important;
}

.form-password input {
    padding: 10px 15px;
    width: calc(100% - 150px);
    outline: none;
    border: 1px solid #e3e6f3;
}

@media (max-width: 768px) {
    .form-password input {
        margin-bottom: 15px;
        width: 100%;
    }
}

.vc_row-fluid {
    background-size: cover;
}

.lazy-video {
    position: relative;
}

.lazy-video .button {
    position: absolute;
    margin-top: -75px;
    margin-left: -75px;
    top: 50%;
    left: 50%;
    width: 150px;
    height: auto;
    cursor: pointer;
}

.applications img {
    display: block;
    margin: 0 auto;
}

.text-line {
    display: flex;
    position: relative;
    justify-content: center;
}

.text-line::before {
    content: '';
    display: block;
    position: absolute;
    top: 21px;
    width: 100%;
    height: 1px;
    background-color: #e3e6f3;
}

.text-line p {
    position: relative;
    padding: 10px;
    font-weight: bold;
    background-color: #fff;
}

.text-line p::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    background-color: transparent;
}

.sticky {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 5;
}

.sticky img {
    width: 100%;
    height: auto;
}

.sticky .close {
    position: absolute;
    padding: 3px 5px 0;
    top: -24px;
    right: 0;
    font-size: 14px;
    background-color: #fff;
}

@media (max-width: 768px) {
    .sticky {
        width: 90%;
    }
}

.yandex_metrika .article-card-title {
    font-size: 14px;
}

@media (max-width: 768px) {
    html {
        margin-top: 50px;
    }

    .head {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #224b83;
        z-index: 10;
    }
}

.popular-selected {
    color: #ef8402 !important;
    border: 1px solid #ef8402 !important;
}

.like-block {
    vertical-align: middle;
    display: inline-block;
}

.like-block img {
    width: 24px;
    height: auto;
}

.like-block .counter {
    position: relative;
    top: 3px;
    margin: 0;
}

.can-vote {
    cursor: pointer;
}

.article-author {
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px;
    width: 170px;
    font-size: 14px;
}

.article-author:last-child {
    margin-right: 0;
}

.article-author a {
    display: block;
    text-align: center;
}

.article-author p {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .yandex_metrika .article-card div {
        vertical-align: middle;
        display: inline-block;
    }

    .yandex_metrika .article-card-head {
        margin-right: 5px;
        width: 100px;
    }

    .yandex_metrika .article-card-body {
        width: calc(100% - 110px);
    }
}

@media (max-width: 768px) {
    .section:has(.sda-section) {
        padding: 0;
    }
    .sda-section, .sda-banner {
        padding: 0;
        background: none;
    }
}

.news-content .aligncenter {
    display: block;
    margin: 0 auto;
}

.main_page_big {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    z-index: 10;
}
.main_page_big .view {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 11;
}
.main_page_big .view .close {
    position: absolute;
    padding: 3px;
    top: 0;
    right: 0;
    cursor: pointer;
}
.main_page_big .view .close svg {
    width: 16px;
    height: auto;
}
.main_page_big .view a {
    display: block;
}
.main_page_big .view img {
    width: 100%;
    height: 100%;
}
@media (min-width: 992px) {
    .main_page_big .view {
        padding: 0 290px;
        max-width: 1200px;
        max-height: 780px;
    }
    .main_page_big .view .close {
        right: 295px;
    }
}
@media (max-width: 992px) {
    .main_page_big .view {
        width: 90%;
    }
    .main_page_big .view .close {
        right: 5px;
    }
}

@media (max-width: 320px) {
    .head-navigation .head-logo svg {
        padding-right: 5px;
        width: 100%;
        height: auto;
    }
}

.vc_custom_heading a {
    color: var(--theme-link) !important;
}

.breadcrumbs {
    margin-top: 15px;
}
.breadcrumbs span {
    color: #fff;
}
.breadcrumbs a span {
    color: inherit;
}
.staii_ot{
	margin-top:25px;
	margin-bottom:25px !important;
}
@media (min-width: 768px) {
.img160 img,img.img160{height: 160px;}
.img250 img{height: 250px;}
}
div[itemprop="description"] a{
	color: #0b2e8e;
}