﻿#preloder {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: #fff;
    opacity: 1;
    z-index: 9999;
    transition: all .3s;
}

    #preloder .spinner-border {
        width: 4rem;
        height: 4rem;
        border: var(--bs-spinner-border-width) solid var(--bs-primary);
        border-right-color: transparent;
    }

.preloder-done {
    opacity: 0 !important;
    visibility: hidden;
}

.ratio img {
    object-fit: cover;
    object-position: center;
}

img {
    max-width: 100%;
    height: auto;
}

.py-10 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pt-10 {
    padding-top: 6rem;
}

.pb-10 {
    padding-bottom: 6rem;
}

/* HEADER MENU */
.navbar {
    background: transparent;
    top: 15px;
    border-radius: 99px;
    z-index: 1030;
    transition: all .1s;
}

    .navbar .blur-effect {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 99px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: -1;
    }

    .navbar .navbar-brand img {
        width: 50px;
        transition: all ease-in-out .3s;
    }

    .navbar .navbar-brand:hover img {
        transform: rotate(-25deg);
    }

.navbar-nav .nav-item {
    margin-right: 8px;
}

    .navbar-nav .nav-item:last-child {
        margin-right: 0;
    }

.navbar-nav .nav-link {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: var(--bs-heading-color);
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--bs-primary);
}

.navbar .navbar-nav .nav-item.active .nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show {
    color: var(--bs-primary);
}

.navbar .navbar-nav.addition-nav .nav-item {
    margin-right: 15px;
}

    .navbar .navbar-nav.addition-nav .nav-item:last-child {
        margin-right: 0;
    }

.navbar-nav button.nav-link {
    position: relative;
    width: 16px;
    padding: 0 !important;
}

.navbar-nav .nav-item.dropdown.active .nav-link.active + button.nav-link .menu-arrow {
    color: var(--bs-body-color);
}

.navbar-nav button.nav-link .menu-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.navbar-nav button.nav-link:hover .menu-arrow,
.navbar-nav button.nav-link.show .menu-arrow {
    color: var(--bs-primary) !important;
}

.navbar .navbar-nav .nav-link.dropdown-toggle::after {
    content: "";
    border: 0;
    background-image: url(/css/img/menu/arrow-down.svg);
    background-size: 18px;
    background-position: center center;
    height: 10px;
    width: 10px;
    filter: brightness(0) invert(0);
    transition: all .15s ease-in-out;
}

.navbar .navbar-nav .nav-link:hover.dropdown-toggle::after,
.navbar .navbar-nav .nav-link.show.dropdown-toggle::after,
.navbar .navbar-nav .nav-link.active.dropdown-toggle::after {
    content: "";
    filter: none;
}

.dropdown-item {
    color: var(--bs-heading-color);
    padding: 12px 20px;
    white-space: normal;
}

    .dropdown-item:focus,
    .dropdown-item:hover,
    .dropdown-item.active,
    .dropdown-item:active {
        background-color: transparent;
        color: var(--bs-primary);
    }

    .dropdown-item.active {
        color: var(--bs-primary)
    }

.navbar .megamenu {
    padding: 30px 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .navbar .megamenu .title-page {
        color: var(--bs-heading-color);
        font-size: 24px;
        font-weight: 700;
        font-family: "PT Sans", sans-serif;
    }

    .navbar .megamenu .description-page {
        color: #7a7a7a;
        font-size: 14px;
    }

.navbar-toggler.collapsed {
    border: none;
    background: transparent !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .icon-bar {
    background-color: var(--bs-primary);
}

    .navbar-toggler .icon-bar + .icon-bar {
        margin-top: 4px;
    }

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.navbar-toggler:hover {
    background: transparent !important;
}

.navbar-toggler .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 10% 10%;
    -ms-transform-origin: 10% 10%;
    transform-origin: 10% 10%;
}

.navbar-toggler .icon-bar:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 10% 90%;
    -ms-transform-origin: 10% 90%;
    transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.navbar-toggler.collapsed .icon-bar:nth-of-type(2) {
    opacity: 1;
}

.navbar-toggler.collapsed .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
/* END HEADER MENU */

/* SEARCH */
.modal-search .input-group {
   
    
}

.modal-search .form-control,
.modal-search .form-control::placeholder {
    font-size: 20px;
    color: var(--bs-body-color);
    font-weight: 500;
}

.modal-search .input-group-text img {
    filter: brightness(0);
    opacity: .5;
}

.modal-search .icon-ipcb-menu {
    opacity: .1;
}

#searchResults {
    height: 65vh;
    overflow-y: auto;
}

    #searchResults::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgb(218 218 218);
        background-color: #f1f1f1;
    }

    #searchResults::-webkit-scrollbar {
        width: 5px;
        background-color: #c1c1c1;
    }

    #searchResults::-webkit-scrollbar-thumb {
        background-color: #c1c1c1;
    }

    #searchResults .list-group-flush > .list-group-item {
        padding: 18px var(--bs-list-group-item-padding-x);
        color: var(--bs-primary);
        font-weight: 600;
    }

    #searchResults nav {
        font-weight: 400;
    }

    #searchResults .breadcrumb {
        color: #656565;
        margin-bottom: 5px;
    }

    #searchResults .breadcrumb-item + .breadcrumb-item::before {
        color: rgb(0 0 0 / 20%);
    }
/* END SEARCH */

/* BANNER */
.swiper-container {
    width: 100%;
    position: relative;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


    .swiper-slide img {
        width: auto;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.swiper-pagination-bullet-active {
    background: var(--bs-primary);
}

.swiper.banner .swiper-slide,
.swiper.banner .swiper-slide img {
    height: 100%;
    object-fit: cover;
    background-size: cover;
}

    .swiper.banner .swiper-slide .bg-overlay {
        /*background-color: rgb(29 29 29 / 50%);*/
        background: linear-gradient(45deg, var(--bs-primary), transparent);
        /*background: linear-gradient(135deg, #0d47a1, #1976d2);*/
        z-index: -1;
    }

.swiper.banner .slide-content-text {
    margin-top: 150px;
}

    .swiper.banner .slide-content-text .slide-title,
    .swiper.banner .slide-content-text p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .swiper.banner .slide-content-text .slide-title {
        font-size: 50px;
        line-height: 1.1;
        color: #fff;
        -webkit-line-clamp: 3;
    }

        .swiper.banner .slide-content-text .slide-title .dot {
            font-size: 55px;
        }

.swiper.banner .slide-text p {
    font-size: 20px;
    color: #fff;
    -webkit-line-clamp: 5;
    opacity: .8;
}

.swiper.banner .slide-btn:hover {
    border-color: var(--bs-dark);
}

.swiper.banner .swiper-pagination .custom-bullet {
    position: relative;
    background: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 0 2px rgb(255 255 255 / 0%);
    transition: box-shadow 0.3s ease;
    opacity: .5;
}

.swiper.banner .swiper-pagination .custom-bullet-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    text-indent: -999em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper.banner .swiper-pagination .custom-bullet.swiper-pagination-bullet-active,
.swiper.banner .swiper-pagination .custom-bullet:hover {
    border: none;
    border-radius: 50%;
    background: transparent;
    opacity: 1;
    box-shadow: 0 0 0 2px #fff;
}

    .swiper.banner .swiper-pagination .custom-bullet.swiper-pagination-bullet-active .custom-bullet-inner,
    .swiper.banner .swiper-pagination .custom-bullet:hover .custom-bullet-inner {
        background-color: #fff;
        transform: scale(0.4);
    }

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    filter: drop-shadow(0px 1px 2px rgb(0 0 0 / 30%));
}

    .autoplay-progress svg {
        --progress: 0;
        position: absolute;
        left: 0;
        top: 0px;
        z-index: 10;
        width: 100%;
        height: 100%;
        stroke-width: 4px;
        stroke: #fff;
        fill: none;
        stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
        stroke-dasharray: 125.6;
        transform: rotate(-90deg);
    }
/* END BANNER */

/* HEADER BANNER */
.bg-img {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.header-banner {
    padding-top: 140px;
}

    .header-banner .bg-overlay {
        background: linear-gradient(45deg, var(--bs-primary), transparent);
    }

    .header-banner .description {
        color: rgb(255 255 255 / 85%);
    }

        .header-banner .description p:last-child {
            margin-bottom: 0;
        }
/* END HEADER BANNER */

/* BREADCRUMB */
.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

    .breadcrumb a:hover {
        color: var(--spliu-primary);
    }

.breadcrumb-item + .breadcrumb-item::before {
    color: rgb(255 255 255 / 50%);
}

.breadcrumb-item + .breadcrumb-item.active {
    color: rgb(255 255 255 / 80%);
}
/* END BREADCRUMB */

/* CONTENT */
.bgs-sections section {
    border-bottom: 5px solid rgba(var(--bs-secondary-bg-rgb));
}

    .bgs-sections section:last-child {
        border-bottom: 0;
    }

.bg-custom-gradient {
    background: linear-gradient(135deg, var(--bs-primary), #0c1d4d);
}

.content-grid h2,
.content-grid h3 {
    margin-bottom: 20px;
}


.sections-bgs section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

    .sections-bgs section:first-child {
        padding-top: 0;
    }

    .sections-bgs section:nth-child(even) {
        background-color: var(--bs-light);
    }

.page-update-date {
    font-size: 14px;
    line-height: 2;
    color: var(--bs-body-color);
    display: inline-block;
    border-top: 0.5px solid #e1e1e1;
}
/* END CONTENT */

/* HIGHLIGHTS */
.swiper-highlights .card-news:hover {
    transform: none;
}

.swiper-highlights .card-news .card-img {
    transform: none;
}

.swiper-highlights .swiper-pagination {
    left: auto;
}

.card-highlight {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
}

    .card-highlight img {
        min-height: 312px;
        object-fit: cover;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }

.img-overlay {
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.card-highlight .card-body {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.card-highlight .content,
.card-highlight .content-grid {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.custom-highlights-height .card-highlight {
    min-height: 144px;
}

    .custom-highlights-height .card-highlight .h5 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
    }
/* END HIGHLIGHTS */

/* PARTNER */
.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .benefit-item .benefit-icon {
        width: 24px;
        height: 24px;
        background: linear-gradient(45deg, #b34c0e, var(--spliu-primary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

        .benefit-item .benefit-icon::after {
            content: '✓';
            color: #fff;
            font-weight: 700;
            font-size: 14px;
        }

.effect-circle:after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -55px;
    width: 275px;
    height: 275px;
    background-image: url(img/content/dot-grid.svg);
    filter: brightness(0) invert(1);
    z-index: 0;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}
/* END PARTNER */

/* NEWS */
.card-news {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

    .card-news:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .card-news .categories .badge + .badge {
        width: 28px;
        height: 28px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .card-news img {
        object-fit: cover;
        object-position: center center;
    }

    .card-news .card-text {
        opacity: .7;
    }

.category-chip {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(13, 71, 161, 0.1);
    color: var(--bs-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .category-chip:hover,
    .category-chip:focus,
    .category-chip.active {
        background: var(--bs-primary);
        color: white;
    }

.card-news .card-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
/* END NEWS */

/* SIDEBAR */
.sidebar-sticky {
    top: 115px;
    max-height: calc(100vh - 135px);
    overflow-y: auto;
}

.sidebar {
    background-color: var(--bs-light-bg-subtle);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #f2f2f2;
}

    .sidebar .icon {
        height: 18px;
        width: 18px;
        object-fit: inherit;
        filter: brightness(1) invert(0);
        opacity: .4;
    }

.sidebar-sticky .btn-outline-secondary {
    --bs-btn-color: #858585;
    --bs-btn-border-color: #e2e2e2;
}

.sidebar-sticky hr {
    border-color: var(--bs-secondary-border-subtle)
}
/* END SIDEBAR */

/* BLOG */
.categories .badge {
    font-weight: 500;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

    .categories .badge:hover {
        opacity: .9;
    }
/* END BLOG */

/* LIST GROUP */
.list-group {
    --bs-list-group-active-bg: var(--bs-primary);
    --bs-list-group-active-border-color: var(--bs-primary);
}

    .list-group .list-group-item {
        margin-bottom: 10px;
        border: 0
    }
/* END LIST GROUP */

/* LEGISLATION */
#nav-tabContent {
    scroll-margin-top: 115px;
}

.card-legislation {
    margin-bottom: 20px;
    transition: all ease-in-out .3s;
}

    .card-legislation:hover {
        box-shadow: var(--bs-box-shadow);
    }

    .card-legislation:last-child {
        margin-bottom: 0;
    }

    .card-legislation .small p:last-child {
        margin-bottom: 0;
    }

.list-legislation-hr .card .content-grid .col-lg-12 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
/* END LEGISLATION */

/* VIEW ALL */
.view-all {
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    opacity: .8;
    transition: all ease .3s;
}

    .view-all:hover {
        opacity: 1;
    }
/* END VIEW ALL */

/* PAGINATION */
.pagination li {
    margin: 2px;
    background: #fff;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .pagination li:hover,
    .pagination li.active {
        background: var(--bs-primary);
    }

        .pagination li:hover a {
            color: #fff;
        }

    .pagination li a {
        font-size: 14px;
        line-height: 1;
        font-weight: 600;
        text-decoration: none;
        color: var(--bd-dark);
    }

    .pagination li.active a {
        color: #fff;
    }

    .pagination li.disabled {
        display: none;
    }
/* END PAGINATION */

/* SERVICES */
.card-service {
    min-height: 500px;
    border-radius: 0;
}

    .card-service .bg-overlay {
        background: transparent linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(29 29 29 / 83%) 77%, rgb(29 29 29) 100%) 0% 0% no-repeat padding-box;
    }

    .card-service:hover .bg-overlay {
        background: transparent linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgba(var(--bs-primary-rgb), 0.83) 77%, rgb(var(--bs-primary-rgb)) 100%) 0% 0% no-repeat padding-box;
    }

    .card-service .card-body {
        padding-top: 60%;
    }

    .card-service .title {
        font-weight: 500;
        line-height: 1.3;
        transform: translateY(80px);
        transition: all .3s;
    }

    .card-service:hover .title {
        transform: translateY(0);
    }

    .card-service .content {
        opacity: 0;
        transform: translateY(100px);
        transition: all .3s;
    }

    .card-service:hover .content {
        opacity: 1;
        transform: translateY(0);
    }

    .card-service .content hr {
        opacity: 1;
    }

.list-services div:first-child .card-service,
.list-services div:first-child .card-service .bg-overlay {
    border-top-left-radius: var(--bs-border-radius-xl) !important;
    border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.list-services div:last-child .card-service,
.list-services div:last-child .card-service .bg-overlay {
    border-top-right-radius: var(--bs-border-radius-xl) !important;
    border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}
/* END SERVICES */

/* LIST DOCUMENTS */
.row-card-document {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 48px;
    margin-bottom: 48px;
}

    .row-card-document .img-cover {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top left;
        min-height: 290px;
        max-height: 290px;
    }

    .row-card-document .card-document {
        margin: 0 auto 0 -6%;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
/* END LIST DOCUMENTS */

/* FOOTER */
footer {
    background-color: #edf0f3;
    border-top: 3px solid #d1d6dc;
}

    footer .nav a {
        color: var(--bs-primary);
        display: inline-block;
    }

        footer .nav a i {
            padding-right: 10px;
            transition: all ease-in-out .3s;
        }

        footer .nav a:hover i {
            padding-left: 10px;
            padding-right: 5px;
        }

    .social-links a img {
        filter: brightness(0) invert(.5);
        width: 24px;
        height: 24px;
    }

    .social-links a:hover img {
        filter: none;
    }

.social-links-top a img {
    filter: brightness(0) invert(.5);
    width: 30px;
    height: 30px;
}

.social-links-top a:hover img {
    filter: none;
}

    footer .nav a:hover,
    footer .nav a:focus {
        color: var(--spliu-primary);
    }

    footer .contacts {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

        footer .contacts img {
            height: 35px;
            width: 35px;
            margin-top: 4px;
            margin-right: 20px;
            filter: brightness(0) invert(0);
            opacity: .3;
        }

.policy {
    border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.copyright a {
    color: #4e4e4e;
    text-decoration: none;
}

    .copyright a:hover {
        color: #f6921e;
    }
/* END FOOTER */

/* COOKIES */
.cc--netsigma {
    --cc-bg: #FFF;
    --cc-primary-color: #112954;
    --cc-secondary-color: #112954;
    --cc-btn-primary-bg: #00205c;
    --cc-btn-primary-color: var(--cc-bg);
    --cc-btn-primary-hover-bg: #002f88;
    --cc-btn-primary-hover-color: #fff;
    --cc-btn-secondary-bg: #ebebeb;
    --cc-btn-secondary-color: var(--cc-secondary-color);
    --cc-btn-secondary-hover-bg: #000;
    --cc-btn-secondary-hover-color: #FFF;
    --cc-cookie-category-block-bg: #ebeff9;
    --cc-cookie-category-block-border: #ebeff9;
    --cc-cookie-category-block-hover-bg: #dbe5f9;
    --cc-cookie-category-block-hover-border: #dbe5f9;
    --cc-cookie-category-expanded-block-hover-bg: #ebeff9;
    --cc-cookie-category-expanded-block-bg: #ebeff9;
    --cc-overlay-bg: rgba(219, 232, 255, 0.85) !important;
    --cc-toggle-readonly-bg: #cbd8f1;
    --cc-toggle-on-knob-bg: var(--cc-bg);
    --cc-toggle-off-bg: #8fa8d6;
    --cc-toggle-readonly-knob-bg: var(--cc-bg);
    --cc-separator-border-color: #f1f3f5;
    --cc-footer-border-color: #f1f3f5;
    --cc-footer-bg: var(--cc-bg);
    --cc-btn-border-radius: 0 0 0 0 / 0 0;
    --cc-modal-border-radius: var(--cc-btn-border-radius);
    --cc-pm-toggle-border-radius: var(--cc-btn-border-radius);
    --cc-border-radius: 0;
}

#s-c-bn:hover {
    background: #b0b0b0;
}

.c-bn, .c-bn:hover {
    text-transform: uppercase;
}

#cm .c_link:active, #cm .c_link:hover, #s-c-bn:active, #s-c-bn:hover, #s-cnt button + button:active, #s-cnt button + button:hover, #s-c-bn:hover {
    color: #FFF;
}

.cc_div .title {
    font-size: 1em;
    display: block;
    margin: 0;
}

    .cc_div .title::before {
        content: none;
    }
/* END COOKIES */

@media only screen and (min-width: 992px) {
    .navbar .has-megamenu {
        position: static !important;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 10px;
        border-radius: 15px;
    }
}

@media only screen and (max-width: 992px) {
    .navbar .blur-effect {
        border-radius: 15px;
    }

    .navbar .navbar-nav.level-2 {
        margin-top: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 15px;
    }

        .navbar-nav .nav-item .nav-link {
            font-size: 20px;
        }

    .navbar-nav .megamenu .container {
        max-width: 100%;
        padding: 0;
    }

    .navbar-nav .megamenu {
        padding: 14px 0;
        border-radius: 0;
        background-color: transparent;
        box-shadow: 0px 1px 0 #e7e7e7;
    }

    .navbar .megamenu .col-xl-4 {
        display: none;
    }

    .navbar-collapse.show {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -moz-overflow-scrolling: touch;
        -ms-overflow-scrolling: touch;
        -o-overflow-scrolling: touch;
        overflow-scrolling: touch;
        top: 0 !important;
        left: 0 !important;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 105px);
    }

    .row-card-document .card-document {
        margin: 0;
    }
}

@media only screen and (max-width: 576px) {
    .sidebar-sticky {
        border: 0 !important;
    }
}
