@font-face {
    font-family: 'Onest';
    src: url(/assets/fonts/Onest-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'OpenDyslexic';
    src: url(/assets/fonts/OpenDyslexic-Regular.otf);
}

@font-face {
    font-family: 'Lexend';
    src: url(/assets/fonts/Lexend-VariableFont_wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Onest';
}

html {
    scroll-behavior: smooth;
    font-family: 'Onest';
}

body {
    overflow-x: hidden;
    font-family: 'Onest';
    color: var(--color-black);
    background-color: var(--color-white);
}

:root {
    --primary: #0E4C90;
    --plain-text: #555555;
    --secondary: #0088C0;
    --accent-grayscale: #F9F9F8;
    --accent: #EFF7FF;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --header-icons: #313131;
}

/* ---------- reset ------------ */
a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 16px;
}

ol, ul, li {
    text-decoration: none;
}

table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0;
    color: var(--plain-text);
}

th, td {
    padding: 8px 12px;
    border: 1px solid var(--plain-text);
    text-align: left;
}

/*------- preloader ------- */
#preloader {
    overflow: hidden;
    background-color: #fff;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
}

.consiliu-load {
    -webkit-animation: 2000ms linear 0s normal none infinite running consiliu-load;
    animation: 2000ms linear 0s normal none infinite running consiliu-load;
    background: transparent none repeat scroll 0 0;
    border-color: #dddddd #dddddd #111111;
    border-radius: 50%;
    border-style: solid;
    border-width: 2px;
    height: 40px;
    left: calc(50% - 20px);
    position: relative;
    top: calc(50% - 20px);
    width: 40px;
    z-index: 9;
}

@-webkit-keyframes consiliu-load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes consiliu-load {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* -----------------------------------------
        tap to top
  ---------------------------------------- */
.tap-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.tap-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.tap-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.tap-to-top svg {
    width: 24px;
    height: 24px;
}

/* -------------------------- */
.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    color: var(--color-black);
}

h2, h3, h4, h5 {
    font-weight: 600;
    line-height: normal;
    color: var(--color-black);
}

.page-name {
    margin-bottom: 40px;
}

p, .plain-text {
    font-size: 16px;
    line-height: 24px;
    color: var(--plain-text);
}

.card-category {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
}

.sidebar-title {
    font-size: 24px;
    line-height: 22px;
}

/* -------------- language selector ------------- */
.lang-menu {
    position: relative;
}

.selected-language {
    display: grid;
    align-items: center;
}

.lang-menu .lang-submenu {
    display: none;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    z-index: 101;
}

.lang-menu:hover .lang-submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lang-submenu ul li img {
    width: 24px;
    height: 16px;
    object-fit: contain;
}

.lang-submenu ul {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lang-poligon img {
    position: relative;
    z-index: 10;
}

.lang-poligon {
    height: 17px;
}

.lang-submenu ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    row-gap: 10px;
}

.lang-submenu ul li a {
    font-weight: 400;
    line-height: 20px;
    color: var(--color-black);
}

.lang-submenu ul li a:hover {
    color: var(--primary);
}

/* -------------------------------------------------------
            search results
------------------------------------------------------- */
.search-box {
    position: relative;
}

.search-box .search-icon {
    font-size: 24px;
    cursor: pointer;
}

.search-box .search-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.search-box .search-container.active {
    opacity: 1;
    visibility: visible;
}

.search-box #search-form {
    display: flex;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

.search-box .search-input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #ccc;
    border-radius: 10px 0 0 10px;
    outline: none;
}

.search-box .submit-btn, .search-box .close-btn-srch {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.search-box .submit-btn {
    background: var(--primary);
    color: var(--color-white);
    border-radius: 0 10px 10px 0;
    padding: 10px 20px;
    font-size: 18px;
}

.search-box .close-btn-srch {
    position: absolute;
    top: 20px;
    right: 20px;
}

.search-page {
    margin: 130px 0;
}

.search-page_for .search-page_title span {
    color: var(--primary);
}

.search-page_title {
    font-size: 18px;
}

.search-result_card {
    display: flex;
    gap: 20px;
    margin: 50px 0;
}

.search-result_card img {
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.search_result_card_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search_result_card_content h1 {
    font-size: 18px;
    color: var(--primary);
    transition: 0.3s;
}

.search_result_moore {
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
    transition: 0.3s;
}

.search_result_moore:hover, .search_result_card_content h1:hover {
    color: var(--secondary);
}

/* -------------------------------------------------------
            Accesibility menu
------------------------------------------------------- */
.acesibility-btnTgl .accessibility-toggle-btn {
    position: fixed;
    z-index: 101;
    top: 185px;
    right: 10px;
    border: none;
    background: none;
    cursor: pointer;
    transition: 0.3s;
}

.acesibility-btnTgl .accessibility-toggle-btn img {
    width: 45px;
    height: 45px;
    border: 4px solid transparent;
    border-radius: 50%;
    transition: border-color 0.3s ease-in-out;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        border-color: rgba(14, 76, 144, 0.5);
    }
    50% {
        transform: scale(1.1);
        border-color: #0e4c90;
    }
    100% {
        transform: scale(1);
        border-color: rgba(14, 76, 144, 0.5);
    }
}

.accessibility-menu.show_accsblty {
    display: block;
    position: fixed;
    opacity: 100;
    top: 10px;
    right: 10px;
    transform: translateY(0);
}

.accessibility-menu {
    position: fixed;
    width: 350px;
    right: 10px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 101;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-20px);
}

.accessibility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: center;
    background: #0f4b92;
    padding: 20px;
    gap: 20px;
}

.accessibility-header span {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
}

.accessibility-header .close-btn {
    background: #02336c;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    padding: 3px;
}

.accessibility-header .close-btn svg {
    width: 25px;
    height: 25px;
    fill: var(--color-white);
}

.accessibility-header .close-btn:hover {
    background: #012044;
}

.accessibility-options {
    width: 100%;
    overflow-y: auto;
    font-size: 16px;
    padding: 20px;
}

.accessibility-options::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.accessibility-options::-webkit-scrollbar-thumb {
    background: #02336c;
    border-radius: 4px;
}

.accessibility-options::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.accessibility-options:hover {
    overflow: auto;
}

.accesibility_widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-top: 20px;
}

.accessibility-options label {
    font-size: 15px;
    font-weight: 500;
}

.accesibility_card_widget_increase {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.toggle-btn {
    font-size: 15px;
}

.accesibility_card_widget_increase .toggle-btn input[type=checkbox] {
    display: none;
}

.accesibility_card_widget_increase .toggle-btn input[type=checkbox] + label {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
    height: 2em;
    width: 4em;
    background: #ECECEC;
    border-radius: 20em;
    vertical-align: middle;
}

.accesibility_card_widget_increase .toggle-btn input[type=checkbox] + label:before, input[type=checkbox] + label:after {
    position: absolute;
    top: 0;
    left: 0;
}

.accesibility_card_widget_increase .toggle-btn input[type=checkbox] + label:before {
    -webkit-transition: 0.3s left;
    -moz-transition: 0.3s left;
    transition: 0.3s left;
    content: "";
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);
    height: 1.5em;
    width: 1.5em;
    margin: 0.25em;
    border-radius: 50%;
    z-index: 200;
}

.accesibility_card_widget_increase .toggle-btn input[type=checkbox] + label:after {
    color: #fff;
    content: "";
    font: 1.25em "FontAwesome";
    top: 50%;
    margin-top: -0.5em;
    left: 2em;
}

.accesibility_card_widget_increase .toggle-btn input[type=checkbox]:checked + label {
    background: #0f4b92;
}

.accesibility_card_widget_increase .toggle-btn input[type=checkbox]:checked + label:before {
    left: 2em;
}

.accesibility_card_widget_increase .toggle-btn input[type=checkbox]:checked + label:after {
    content: "";
    left: 0.5em;
}

.accesibility_cnt_100 {
    position: relative;
    width: 100%;
    height: 114px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.accesibility_cnt_100:hover {
    outline: 3px solid var(--primary);
}

.accesibility_cnt_100 .accesibility_cnt_100_img {
    margin: 0 auto;
    object-fit: contain;
}

.accesibility_cnt_100 span {
    font-size: 15px;
    letter-spacing: 1;
    text-align: center;
    color: var(--color-black);
    font-weight: 600;
}

.accesibility_cnt_100 .accesblt_url_check {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 12px;
    right: 12px;
    object-fit: contain;
}

.accesibility_cnt_100 .accsb_active_cnt {
    color: var(--primary);
}

.accesibility_footer {
    background: var(--primary);
    margin: 20px;
    height: 20px;
}

.accesblt_card_active_progress {
    width: 70%;
    height: 3px;
    background: #e0e0e0;
    bottom: 10px;
    left: 0;
    border-radius: 5px;
    display: none;
    position: relative;
    margin: 0 auto;
}

.accesblt_cnt_progress_line {
    height: 100%;
    width: 0%;
    background: #0e4c90;
    border-radius: 5px;
    transition: 0.3s;
}

.accesibility_reset_settings {
    margin: 20px 0;
}

.accesibility_reset_button {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #0f4b92;
    color: var(--color-white);
    border-radius: 6px;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.accesibility_reset_button:hover {
    background: var(--secondary);
}

.accessibility-menu.large_accsblty img {
    width: 30px;
    height: 30px;
}

.accessibility-menu.large_accsblty {
    transform: scale(1.3);
    top: 110px;
    right: 50px;
}

.accessibility-menu.large_accsblty .accesblt_url_check {
    width: 16px;
    top: 0;
}

@keyframes slideIn {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.accesibility_container_footer {
    background: var(--primary);
    font-size: 15px;
    font-weight: 500;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

/* Contrast+ card */
.contrast_invert {
    filter: invert(100%);
    background: #000000;
}

.contrast_invert .accessibility-menu {
    filter: invert(100%);
    position: fixed;
}

.contrast_dark .accessibility-options label {
    color: rgb(0, 0, 0) !important;
}

.contrast_dark .accessibility-header .close-btn > svg {
    fill: rgb(255, 255, 255) !important;
}

.contrast_dark, .contrast_dark a {
    transition: all;
    background-color: rgb(0, 0, 0) !important;
    border-color: rgb(255, 255, 255) !important;
    color: rgb(252, 255, 60) !important;
}

.contrast_dark svg {
    fill: rgb(252, 255, 60) !important;
}

.contrast_dark p, .contrast_dark h1, .contrast_dark h2, .contrast_dark h3 {
    color: rgb(80, 208, 160) !important;
}

.contrast_dark .bottom-header, .contrast_dark ul {
    background: rgb(0, 0, 0) !important;
}

.contrast_dark .menu ul li:hover, .contrast_dark .news-card, .contrast_dark .footer-copyright, .contrast_dark .footer {
    background: transparent;
}

.contrast_dark .lang-poligon img, .contrast_dark .search-box .search-icon,
.contrast_dark .news-date-icon img, .contrast_dark .news-date img,
.contrast_dark .news-link img, .contrast_dark .social-link img {
    filter: invert(50%);
}

.contrast_dark .lang-submenu ul, .contrast_dark .hero-button {
    border: 1px solid rgb(255, 255, 255) !important;
}

.contrast_dark .slide-dot, .contrast_dark .sl-active, .contrast_dark .news-button {
    border: 1px solid rgb(255, 255, 255) !important;
}

.contrast_dark .sl-active {
    background: rgb(252, 255, 60) !important;
}

.contrast_dark .news-date {
    color: rgb(252, 255, 60) !important;;
}

.contrast_dark .sidebar-card {
    background: transparent;
}

.contrast_light {
    transition: all;
    background: rgb(255, 255, 255) !important;
    border-color: rgb(0, 0, 0) !important;
    color: rgb(0, 0, 0) !important;
}

.contrast_light .accessibility-toggle-btn {
    border: none !important;
}

.contrast_light .accesibility_reset_button {
    border: none !important;
    color: var(--color-white) !important;
    background: #0f4b92 !important;
}

.contrast_light .bottom-header, .contrast_light .menu ul li:hover, .contrast_light .menu ul li ul {
    background: var(--color-white);
}

.contrast_light a, .contrast_light h1, .contrast_light h2, .contrast_light h3, .contrast_light p {
    color: rgb(0, 0, 211) !important;
}

.contrast_light .news-date, .contrast_light .news-date img {
    color: var(--plain-text);
    filter: invert(50%);
}

.contrast_light .sl-active, .slide-dot:hover {
    border: 1px solid rgb(0, 0, 211) !important;
    background: rgb(0, 0, 211) !important;
}

.contrast_light .slide-dot {
    border: 1px solid rgb(0, 0, 211) !important;
}

.contrast_light svg {
    fill: rgb(0, 0, 211) !important;
}

.contrast_light .hero-button, .contrast_light .news-button {
    background: transparent;
    border: 1px solid rgb(0, 0, 0) !important;
}

.contrast_light .news-card, .contrast_light .footer, .contrast_light .footer-copyright, .contrast_light .special-link a {
    background: transparent;
}

.contrast_light .hero-button:hover, .contrast_light .news-button:hover {
    background: transparent;
}

.contrast_light .sidebar-card {
    background: transparent;
}

.contrast_light button,
.contrast_light input,
.contrast_light textarea,
.contrast_light select {
    background: rgb(255, 255, 255) !important;;
    color: rgb(0, 0, 0) !important;
    border: 1px solid rgb(0, 0, 0) !important;;
}

.contrast_light button:hover,
.contrast_light input:hover,
.contrast_light textarea:hover,
.contrast_light select:hover {
    background: #f0f0f0;
}

/* URL card */
.url_marked a, .url_marked a svg, .url_marked .social-link-grid .social-link {
    transition: 0.2s;
    text-decoration: underline !important;
    fill: rgb(255, 255, 0) !important;
    color: rgb(255, 255, 0) !important;
    background: rgb(0, 0, 0) !important;
}

/* Big text */
.big_text_20, .big_text_20 .lang-submenu ul li a, .big_text_20 h1, .big_text_20 h2, .big_text_20 h3, .big_text_20 p, .big_text_20 .news-link a, .big_text_20 .news-date span, .big_text_25 .news-date span, .big_text_30 .news-date span, .big_text_32 .news-date span,
.big_text_20 .menu a, .big_text_20 .hero-text h1, .big_text_20 .hero-button, .big_text_20 .news-button, .big_text_20 .news-category h3, .big_text_25 .news-category h3, .big_text_30 .news-category h3, .big_text_32 .news-category h3, .big_text_20 .special-link p,
.big_text_20 .news-card-title h2, .big_text_20 .consilium-location h2, .big_text_20 .footer-links ul a {
    font-size: 20px;
}

.big_text_25, .big_text_25 .lang-submenu ul li a, .big_text_25 h1, .big_text_25 h2, .big_text_20 h3, .big_text_25 p, .big_text_25 .news-link a, .big_text_25 .footer-contact-item-row a, .big_text_25 .footer-links ul a, .big_text_25 .special-link p,
.big_text_25 .menu a, .big_text_25 .hero-text h1, .big_text_25 .hero-button, .big_text_25 .news-button, .big_text_25 .news-card-title h2, .big_text_25 .consilium-location h2 {
    font-size: 25px;
    line-height: 1.2;
}

.big_text_30, .big_text_30 .lang-submenu ul li a, .big_text_30 h1, .big_text_30 h2, .big_text_30 h3, .big_text_30 p, .big_text_30 .news-link a, .big_text_30 .consilium-location h2, .big_text_30 .footer-links ul a, .big_text_30 .special-link p,
.big_text_30 .menu a, .big_text_30 .hero-text h1, .big_text_30 .hero-button, .big_text_30 .news-button, .big_text_30 .news-card-title h2, .big_text_30 .footer-contact-item-row a {
    font-size: 30px;
    line-height: 1.2;
}

.big_text_32, .big_text_32 .lang-submenu ul li a, .big_text_32 h1, .big_text_32 h2, .big_text_32 h3, .big_text_32 p, .big_text_32 .news-link a, .big_text_32 .consilium-location h2, .big_text_32 .footer-links ul a, .big_text_32 .special-link p,
.big_text_32 .menu a, .big_text_32 .hero-text h1, .big_text_32 .hero-button, .big_text_32 .news-button, .big_text_32 .news-card-title h2, .big_text_32 .footer-contact-item-row a {
    font-size: 32px;
    line-height: 1.2;
}

/* text space */
.text_space_easy {
    letter-spacing: 1px;
    word-spacing: 2px;
}

.text_space_easy .accesibility_card {
    letter-spacing: normal;
    word-spacing: normal;
}

.text_space_moderate {
    letter-spacing: 2px;
    word-spacing: 4px;
}

.text_space_moderate .accesibility_card {
    letter-spacing: normal;
    word-spacing: normal;
}

.text_space_big {
    letter-spacing: 3px;
    word-spacing: 6px;
}

.text_space_big .accesibility_card {
    letter-spacing: normal;
    word-spacing: normal;
}

/*  stop animations */
.animation_off * {
    animation: none !important;
    transition: none !important;
}

/*  hide images */
.hide_all_images img {
    display: none;
}

.hide_all_images .acesibility-btnTgl .accessibility-toggle-btn img,
.hide_all_images .accesibility_cnt_100 .accesibility_cnt_100_img,
.hide_all_images .accesibility_cnt_100 img,
.hide_all_images .accesibility_card_cnt_hide_images .accesblt_url_check,
.hide_all_images .accesibility_reset_settings .accesibility_reset_button img {
    display: block;
}

/* Dislexia */
.dyslexia_easy * {
    font-family: 'OpenDyslexic', sans-serif;
}

.dyslexia_easy .accesibility_cnt_100 span {
    font-family: 'Onest';
}

.dyslexia_fonts * {
    font-family: 'Lexend', sans-serif;
}

.dyslexia_fonts .accesibility_cnt_100 span {
    font-family: 'Onest';
}

/*  Cursor */
.big_cursor {
    cursor: url('../images/accesibility/bigCursor.png'), auto;
}

.reading-guide {
    position: fixed;
    width: 450px;
    height: 10px;
    border: 3px solid rgb(255, 255, 0) !important;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 9999;
    transform: translateX(-50%);
    border-radius: 3px;
    display: none;
}

/*  Line height */
.line_height_1_5 .card-title, .line_height_1_5 p, .line_height_1_5 h1, .line_height_1_5 h2, .line_height_1_5 h3, .line_height_1_5 * {
    line-height: 1.5;
}

.line_height_1_75 .card-title, .line_height_1_75 p, .line_height_1_75 h1, .line_height_1_75 h2, .line_height_1_75 h3, .line_height_1_75 * {
    line-height: 1.75;
}

.line_height_2 .card-title, .line_height_2 p, .line_height_2 h1, .line_height_2 h2, .line_height_2 h3, .line_height_2 * {
    line-height: 2;
}

/*  Align text */
.align_text_left {
    text-align: left;
}

.align_text_right {
    text-align: right;
}

.align_text_center {
    text-align: center;
}

.align_text_justify {
    text-align: justify;
}

/* ------ pagination ------ */
.pagination ul {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 15px;
}

.pagination ul .pag-nvg {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 15px;
    color: var(--color-white);
    background: var(--primary);
    border: 2px solid var(--primary);
}

.pagination li a {
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 15px;
    font-size: 20px;
    font-family: 'Onest';
    transition: background-color .3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination a.pagination-active {
    background: var(--primary);
    color: var(--color-white);
}

.pagination a:hover:not(.pagination-active) {
    background: var(--primary);
    color: var(--color-white);
}

.pagination ul li:nth-child(1) {
    width: 150px;
    height: 50px;
    padding: 14px 22px;
}

.pagination .pag-nvg-prev img {
    transform: rotate(180deg);
}

/* ---------- header --------- */
.top-header {
    width: 100%;
    height: 100px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-content: center;
    align-items: center;
}

.header-logo {
    display: flex;
    gap: 30px;
}

.header-logo img {
    height: 50px;
}

.head-title {
    text-align: center;
}

.head-title a {
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--primary);
}

.top-links {
    display: flex;
    gap: 25px;
    justify-content: right;
    align-items: center;
}

.top-links-nav a {
    display: grid;
    align-items: center;
}

.selected-language svg:hover {
    transform: rotate(180deg);
}

.top-links-nav svg {
    width: 25px;
    height: 25px;
    fill: var(--header-icons);
    transition: 0.3s;
}

.top-links-nav svg:hover {
    fill: var(--secondary);
}

.bottom-header {
    position: absolute;
    width: 100%;
    z-index: 100;
    background: var(--primary);
    transition: 0.3s;
}

.bottom-header.fixed {
    position: fixed;
    top: 0;
}

.bottom-header-container {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
}

/* -----------------------------------
             nav menus
   ----------------------------------- */
.mn-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.mn-main-menu ul {
    line-height: 30px;
    position: relative;
}

.mn-main-menu > ul > li {
    display: inline-block;
    position: relative;
}

.mn-main-menu ul li {
    position: relative;
}

.mn-main-menu ul li a {
    font-size: 16px;
    line-height: 20px;
    color: var(--color-white);
    display: block;
}

.mn-main-menu ul li .mn-active, .mn-main-menu ul li:hover > a {
    color: var(--accent);
}

.mn-main-menu ul li ul {
    width: 300px;
    background: var(--primary);
    transition: 0.3s;
    list-style: none;
}

.mn-main-menu ul li ul li a {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
}

.mn-main-menu ul li ul li a i {
    float: right;
}

.mn-main-menu ul li ul li ul {
    left: 100%;
    top: 0;
}

.mn-arrow {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.mn-mobile-btn {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
    color: var(--color-white);
}


/* ---------------------------
         Passeport page
   --------------------------- */
.content-blocs {
    padding-top: 140px;
}

.content-blocs-index {
    padding: 100px 0;
}

.content-blocs ul {
    margin-left: 20px;
    list-style-type: disc;
    color: var(--plain-text);
}

.passeport-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.sidebar-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.sidebar-card {
    padding: 30px;
    background: var(--accent);
    border-radius: 20px;
}

.sidebar-card h1 {
    font-weight: 600;
    font-size: 24px;
    line-height: 22px;
}

.sidebar-divider {
    height: 1px;
    background: var(--secondary);
    border-radius: 10px;
    margin: 20px 0 30px 0;
}

.sidebar-anounces {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.sidebar-anounces h3 {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--primary);
}

.sidebar-anounces a:hover, .sidebar-anounces h3:hover {
    color: var(--secondary);
    margin-left: 2px;
}

.sidebar-anounces a {
    display: flex;
    gap: 20px;
    transition: 0.3s;
    width: 330px;
}

.sidebar-anounces img {
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.passeport-thumb img {
    width: 100%;
}

.passeport-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.passeport-info h1 {
    padding-bottom: 50px;
}

.passeport-info h2 {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 20px;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.passeport-info p {
    line-height: 24px;
    color: #555555;
}

.main-content-passeport p {
    line-height: 24px;
    color: #555555;
}

.main-content-passeport-2 h2 {
    font-size: 18px;
    line-height: 22px;
    padding: 50px 0 20px 0;
}

.main-content-passeport-2 p {
    font-size: 16px;
    line-height: 24px;
    color: #555555;
}

.table-of-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.table-of-content p {
    line-height: 24px;
    color: #555555;
}

.table-list {
    margin-top: 30px;
}

.limiter {
    width: 100%;
    margin: 0 auto;
}

.wrap-table100 {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.table, .row {
    width: 100% !important;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid var(--secondary);
}

.table {
    width: 100%;
    display: table;
    margin: 0 0 1rem 0;
    border-bottom: 0;
    background-color: transparent;
}

.header {
    border-bottom: 1px solid var(--secondary);
}

.row.header {
    color: var(--color-black);
    display: flex;
    gap: 20px;
}

.row .cell:nth-child(1) {
    width: 100%;
    max-width: 50px;
}

.row .cell:nth-child(2) {
    width: 100%;
    max-width: 215px;
}

.row .cell:nth-child(3) {
    width: 100%;
    max-width: 250px;
}

.row .cell:nth-child(4) {
    width: 100%;
    max-width: 190px;
}

.row .cell:nth-child(5) {
    width: 100%;
    max-width: 190px;
}

.row .cell:nth-child(6) {
    width: 100%;
    max-width: 190px;
}

.row.header .cell {
    font-size: 18px;
    color: var(--color-black);
    line-height: 22px;
    font-weight: 600;
    padding-top: 19px;
    padding-bottom: 19px;
}

.table .header .cell {
    border: none;
}

.row .cell {
    font-size: 15px;
    padding: 15px 0;
}

.cell {
    display: table-cell;
}

/* ----- Anounces page ------ */
.filter-to-sort {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-btn:hover {
    background-color: #ddd;
}

.news-page-container {
    margin: 50px 0 30px 0;
}

/* ------- home page -------- */

.hero-section {
    margin-top: 150px;
}

.hero-text, .hero-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-info ol {
    margin-left: 15px;
}

.hero-text h1 {
    line-height: 38px;
    color: var(--color-black);
}

.hero-text p {
    font-weight: 400;
}

.hero-news-date {
    display: flex;
    gap: 15px;
    align-items: center;
}

.news-date-icon {
    display: flex;
    gap: 7px;
    align-items: center;
}

.hero-button, .news-button {
    width: fit-content;
    background: var(--primary);
    border-radius: 10px;
    transition: 0.3s;
}

.hero-button:hover, .news-button:hover {
    background: var(--secondary);
}

.hero-button, .news-button {
    font-weight: 700;
    font-size: 16px;
    padding: 15px 70px;
    color: var(--color-white);
}

/* ---- slider ----- */
.slide-home img {
    width: 100%;
    border-radius: 20px;
    height: 380px;
    object-fit: cover;
}

.home-slider-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

}

.slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
}

.slider-prev, .slider-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: var(--secondary);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.slider-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.slider-prev:hover, .slider-next:hover {
    background-color: rgba(236, 236, 236, 0.39);
    color: var(--secondary);
}

.slide-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    display: inline-block;
    transition: background-color 0.6s ease;
}

.sl-active, .slide-dot:hover {
    background: var(--secondary);
}

.slide-fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes slide-fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

/* -------------------------------------------------------
    Tab-s subdivizion's
------------------------------------------------------- */
.button-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.button-tab {
    background: var(--primary);
    color: var(--color-white);
    font-family: 'Onest';
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    border: none;
}

/* ----- Anounces ----- */
#social-links ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

#social-links ul li a span:before {
    color: #ffffff;
}

.anounce-section {
    padding-top: 100px;
}

.anounce-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.anounce-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.home-card-anounces .anounce-grid .news-card:last-child {
    display: none;
}

.news-button {
    padding: 15px 52px;
    margin: 0 auto;
}

.news-type {
    padding: 6px 30px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--secondary);
}

.news-category h3 {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--secondary);
}

.news-link {
    padding: 0 30px 30px 30px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.news-link a {
    display: flex;
    gap: 10px;
    color: var(--primary);
    transition: 0.3s;
}

.news-link a:hover {
    color: var(--secondary);
    padding-left: 3px;
    gap: 15px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--secondary);
}

.news-card {
    position: relative;
    width: 100%;
    background: var(--accent);
    border-radius: 20px;
    transition: 0.3s;
}

.news-thumb {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.news-thumb img {
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.news-card-title {
    padding: 30px 30px 0 30px;
    margin-bottom: 82px;
}

.news-card-title h2 {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    transition: 0.3s;
}

.news-card:hover .news-card-title .card-title {
    color: var(--secondary);
}

.news-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-bottom: 100px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.news-grid .news-card:last-child {
    display: none;
}

/* ------- footer section */
.footer {
    background: var(--accent);
    padding: 100px 0;
    margin-top: 100px;
}

.footer-link-column h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: var(--color-black);
}

.footer-container {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr 1fr;
}

.footer-basic-inf {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 34px;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: baseline;
}

.footer-contact-item-row p:first-child {
    font-weight: 400;
    color: var(--color-black);
}

.footer-contact-item-row p, .footer-contact-item-row a {
    color: var(--secondary);
    transition: 0.3s;
}

.footer-contact-item-row a:hover {
    color: var(--primary);
}

.footer-contact-item img {
    height: 16px;
}

.crc-logo img {
    height: 90px;
    object-fit: contain;
}

.consilium-location h2 {
    font-weight: 700;
    font-size: 16px;
    color: var(--secondary);
}

.footer-link-divider {
    border-radius: 10px;
    width: 100px;
    border: 3px solid #0088C0;
    margin: 10px 0 30px 0;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links li {
    list-style: none;
    transition: 0.3s;
}

.footer-links li:hover {
    margin-left: 5px;
}

.footer-links li a:hover {
    color: var(--primary);
}

.footer-links ul a {
    font-weight: 600;
    font-size: 18px;
    color: var(--secondary)
}

.special-link a {
    display: flex;
    gap: 10px;
    background: var(--secondary);
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s;
}

.special-link a:hover {
    background: var(--primary);
}

.special-link p {
    font-weight: 400;
    font-size: 14px;
    color: var(--color-white);
}

.special-clumn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-social-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link-grid {
    display: flex;
    gap: 10px;
}

.social-link a {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    text-align: center;
    border-radius: 30px;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-social-column h2 {
    padding-bottom: 0px;
}

.social-link a img {
    width: 24px;
}

.social-link a:hover {
    background: var(--primary);
    transform: rotate(360deg);
}

.footer-copyright {
    background: var(--accent);
}

.footer-copyright-container {
    border-top: 1px solid var(--secondary);
    padding: 30px 0;
    text-align: center;
}

.main-content-2 iframe {
    border: 3px solid var(--primary);
    border-radius: 15px;
}

.main-content2 {
    padding: 0 0 50px 0;
    line-height: 1.5;
}

.frame-hrz {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--header-icons);
}

.activity-reports-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.activity-reports .card-title {
    margin-bottom: 20px;
}

.onoris-people {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    justify-content: space-between;
}

.content-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.anounces-single {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.card-info-top {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.card-top-thumb img {
    width: 100%;
    border-radius: 20px;
}

.card-breadthumb {
    display: flex;
    gap: 15px;
    align-items: center;
}

.card-top-heading h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: var(--color-black);
}

.card-breadthumb {
    padding: 30px 0 50px 0;
}

.card-breadthumb li {
    list-style: none;
    display: flex;
    gap: 15px;
}

.card-top-data {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-breadthumb li, .card-top-data {
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    color: var(--secondary);
}

.card-link-share {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-link-share h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--plain-text);
}

.content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.content-description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--plain-text);
}

.content-description p a {
    color: var(--primary);
}

.content-description p a:hover {
    color: var(--secondary);
}

.content-description ol {
    margin-left: 15px;
}

.downloads-icon {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.downloads-icon a {
    display: flex;
    gap: 15px;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    color: var(--primary);
}

.downloads-icon img {
    background: #0E4C90;
    border-radius: 15px;
    padding: 8px 13px;
    object-fit: contain;
}

.card-social-share {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
}

.card-social-share a {
    display: flex;
    align-items: center;
    background: #0E4C90;
    border-radius: 50px;
    padding: 10px;
}

.content-quote {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--accent);
    border-radius: 20px;
    padding: 30px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: end;
}

.content-quote p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--plain-text);
}

.quote-author h2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--primary);
}

/* gallery */
.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 10px);
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    border-radius: 20px;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    margin-top: 5%;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.lightbox .prev, .lightbox .next {
    cursor: pointer;
    position: absolute;
    top: 15%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.lightbox .prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox .next {
    right: 0;
    border-radius: 0 3px 3px 0;
}

.conducere-top {
    display: grid;
    grid-template-columns: auto;
    margin-top: 50px;
}

.conducere-top .card-top-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audience-program .hero-button {
    padding: 13px 30px;
}

.team-list-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-thumb img {
    width: 100%;
    max-width: 100px;
    object-fit: contain;
    border-radius: 20px;
}

.team-card-name {
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    color: var(--color-black);
}

.team-card-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-card-function {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--plain-text);
}

.team-card-mail a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.team-card-mail a span {
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    color: var(--primary);
}

.team-card-phone {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-card-phone a {
    display: flex;
    align-items: center;
    color: var(--primary);
}

.audience-description {
    margin: 10px 0 50px 0;
}

.audience-form {
    padding: 40px;
    background: var(--accent);
    border-radius: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.conseil-raionali .cell:nth-child(3) {
    width: initial;
    text-align: end;
}

/* Audience form */
.audienceForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row textarea {
    flex: 1 1 calc(50% - 15px);
    padding: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #8D8D8D;
    background: var(--color-white);
    border: 1px solid #0088C0;
    border-radius: 10px;
}

.form-row textarea {
    flex: 1 1 100%;
    height: 170px;
}

.form-row.terms {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#submitButton {
    background: #ccc;
    border: none;
    cursor: not-allowed;
    padding: 13px 55px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
}

#submitButton.active {
    background: var(--primary);
    cursor: pointer;
}

.terms label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: #F9F9F8;
    border: 1px solid #0088C0;
    border-radius: 5px;
    position: relative;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #0088C0;
}

.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    display: block;
}

.custom-checkbox a {
    color: var(--secondary);
}

.commission-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.commissions {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    width: 100%;
}

.commission-list li {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--plain-text);
}

.commission-list h1, .commission-list h2, .commission-list h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
    color: var(--color-black);
}

.commissions p strong {
    line-height: 2;
}

.comisii-specialitate {
    width: 100%;
    overflow-x: hidden;
}

.fileupload {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fileupload h3 {
    font-size: 14px;
}

.fileupload p {
    font-size: 12px;
}

/* terms & conditions */
.terms-container {
    display: grid;
    grid-template-columns: 2fr 1fr;

}

.terms-conditions .privacy-policy {
    line-height: 1.6;
}

.terms-conditions h2 {
    color: var(--header-icons);
    margin-top: 30px;
    margin-bottom: 10px;
}

.terms-conditions p {
    margin-bottom: 15px;
}

.terms-conditions a {
    color: #0088C0;
    text-decoration: underline;
}

.contact-list {
    display: flex;
    gap: 50px;
}

.contact-list ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list ul li {
    display: flex;
    gap: 10px;
}

.contact-list ul img {
    width: 24px;
    aspect-ratio: 1/1;
}

@media (max-width: 1080px) {
    .head-title a {
        font-size: 24px;
    }
}

@media (max-width: 1040px) {
    .footer-container {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        margin: 0 auto;
        padding: 0 20px 0 20px;
    }

    .table-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 960px) {
    .head-flag {
        display: none;
    }

    .top-header {
        gap: 20px;
    }

    .main-content {
        display: flex;
        flex-wrap: wrap-reverse;
        gap: 20px;
    }

    .passeport-thumb {
        margin: 0 auto;
    }

    .passeport-thumb img {
        max-width: 200px;
    }

    .content-info {
        grid-template-columns: auto;
        gap: 40px;
    }

    .passeport-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .home-slider-card {
        display: flex;
        flex-direction: column;
    }

    .hero-section {
        margin-top: 150px;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .news-grid .news-card:last-child {
        display: flex;
        flex-direction: column;
    }

    .card-info-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .head-title a {
        font-size: 20px;
        line-height: 1.3;
    }

    .top-links {
        gap: 15px;
    }

    .sidebar-anounces a {
        width: 270px;
    }
}

@media screen and (max-height: 800px) {
    .accessibility-menu {
        max-height: 100vh;
        overflow-y: auto;
    }

    .accessibility-options {
        max-height: calc(80vh - 50px);
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .onoris-people {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .search-box .search-input {
        font-size: 16px;
    }

    .bottom-header-container {
        flex-direction: row-reverse;
        margin: 0 20px;
        transition: 0.3s
    }

    .bottom-header.fixed .bottom-header-container {
        height: 50px;
    }

    .search-box .submit-btn {
        font-size: 16px;
    }

    .form-row input[type="text"], .form-row input[type="tel"], .form-row input[type="email"] {
        flex: 1 1 100%;
    }

    .form-row.terms {
        flex-direction: column;
    }

    #submitButton {
        margin-top: 10px;
        width: 100%;
    }

    .news-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .principal-slider .hero-info .hero-button {
        margin: 0 auto;
    }

    .sidebar {
        order: 0;
    }

    .table, .row, .cell {
        width: 100% !important;
    }

    .table {
        display: block;
    }

    .wrap-table100 {
        overflow-x: auto;
        position: relative;
        display: block;
    }

    .wrap-table100 .table {
        width: max-content;
        display: table;
        overflow-x: scroll;
    }

    .row .cell:nth-child(1) {
        padding-left: 30px;
    }

    .main-content {
        grid-template-columns: 2fr 1fr;
    }

    .acesibility-btnTgl .accessibility-toggle-btn {
        z-index: 100;
    }

    .sidebar-anounces a {
        width: 100%;
    }

    .commissions table {
        overflow-x: auto;
        position: relative;
        display: block;
    }

    .commissions table tbody {
        width: max-content;
        display: table;
    }

    .limiter {
        overflow-x: hidden;
    }
}

@media (min-width: 768px) {
    .mn-main-menu ul li ul {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        margin-top: 20px;
    }

    .mn-main-menu ul li:hover > ul {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
        z-index: 99;
    }

    .mn-has-dropdown:hover .mn-arrow {
        transform: translateY(-50%) rotate(180deg);
    }

    .mn-sub-menu .mn-has-dropdown .mn-arrow {
        transform: translateY(-50%) rotate(270deg);
    }

    .mn-arrow {
		display: none;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        margin-left: 0;
    }

    .mn-arrow.active {
        transform: rotate(180deg);
    }

    .mn-has-dropdown > a {
        position: relative;
        padding-right: 18px !important;
    }
}

.mn-sub-menu-div {
    top: -180px !important;
}

@media (max-width: 767.98px) {
    .mn-nav {
        padding: 15px;
    }

    .mn-mobile-btn {
        display: block;
    }

    .mn-main-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100%;
        background: var(--primary);
        z-index: 1000;
        overflow-y: auto;
        padding: 20px;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .mn-main-menu.active {
        display: block;
    }

    .mn-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none;
    }

    .mn-menu-overlay.active {
        display: block;
    }

    .mn-main-menu ul li {
        display: block;
    }

    .mn-main-menu ul li a {
        border-bottom: 1px solid #eeeeee29;
        padding: 20px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mn-main-menu ul li ul {
        width: 100%;
        position: static;
        display: none;
        box-shadow: none;
        margin-top: 0;
    }

    .mn-main-menu ul li ul li ul {
        left: 0;
        top: auto;
    }

    .mn-main-menu ul li ul.active {
        display: block;
    }

    .mn-arrow {
        cursor: pointer;
    }

    .mn-arrow.active {
        transform: rotate(180deg);
    }
}

@media (max-width: 680px) {
    .head-title {
        display: none;
    }

    .head-flag {
        display: none;
    }

    .top-header {
        display: flex;
        justify-content: space-between;
    }

    .footer-container .footer-basic-info .crc-logo {
        margin-left: 20px;
    }

    .content-description ol, .content-description ul {
        margin-left: 30px;
    }

    .audience-form {
        padding: 20px;
    }
}

@media (max-width: 580px) {
    .search-result_card {
        flex-direction: column;
    }

    .search-page_title {
        flex-wrap: wrap;
        display: flex;
        gap: 5px;
    }

    .search-result_card img {
        width: 100%;
        height: 200px;
    }

    .row .cell:nth-child(1) {
        padding-left: 10px;
    }
}

@media (max-width: 480px) {
    .search-box .search-input {
        font-size: 14px;
    }

    .search-box .submit-btn {
        font-size: 14px;
    }

    .team-list {
        flex-direction: column;
    }

    .conducere-top .card-top-info {
        flex-wrap: wrap;
        gap: 40px;
    }

    .team-thumb img {
        width: 100%;
        max-width: 200px;
    }

    .card-breadthumb {
        gap: 5px;
    }
}

@media (max-width: 460px) {
    .special-clumn-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .sidebar-anounces a {
        display: contents;
    }

    .sidebar-anounces img {
        height: 150px;
    }

    .card-breadthumb {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 300px) {
    .slider-prev, .slider-next {
        font-size: 11px
    }
}
