	/* Import font from Google - Go to fonts.google.com, select a font and look for the import command */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');


/* Change some root colors and settings of the document */

:root {

    --cassiopeia-color-primary: #202124;
    --cassiopeia-color-link: #000000;
    --cassiopeia-color-hover: #CB023E;

    
    --cassiopeia-font-family-body: "Noto Sans";
    --cassiopeia-font-family-headings: "Noto Sans";
    --cassiopeia-font-weight-headings: 700;
    --cassiopeia-font-weight-normal: 400;
    
    --blue: #0d6efd;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #d63384;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #198754;
    --teal: #20c997;
    --cyan: #0dcaf0;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --primary: #0d6efd;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
    --primary-rgb: 13, 110, 253;
    --secondary-rgb: 108, 117, 125;
    --success-rgb: 25, 135, 84;
    --info-rgb: 13, 202, 240;
    --warning-rgb: 255, 193, 7;
    --danger-rgb: 220, 53, 69;
    --light-rgb: 248, 249, 250;
    --dark-rgb: 33, 37, 41;
    --white-rgb: 255, 255, 255;
    --black-rgb: 0, 0, 0;
    --body-color-rgb: 33, 37, 41;
    --body-bg-rgb: 255, 255, 255;
    --font-sans-serif:"Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --body-font-family: var(--cassiopeia-font-family-body);
   /* --body-font-size: 2rem;*/
    --body-font-weight: 400;
    --body-line-height: 1.5;
    --body-color: #383838;
    --body-bg: white;
  
    --link-color: #0c0c0c;
    --link-hover-color: #0c0c0c;



}
 
.pagination {
    --pagination-active-bg: #004B99;
    --pagination-active-border-color: #004B99;
    --pagination-hover-border-color: #004B99;
  }
.active > .page-link:hover {
  color: white;
}

/* Use the importeed font (See first lines of the document) on the page: On Google you can also find the CSS instruction for using the font. If you put this in the body element then the font will be used on the whole website. */

body {
    font-family: 'Noto Sans';
}

a:not([class]) {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Color the principal menu item in the menu with the class .metismenu.mod-menu ..metismenu-item */

.metismenu.mod-menu .metismenu-item {
    color: #0c0c0c;
  font-family: 'Noto Sans';
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  
}
.metismenu-item .button {
  color: #0c0c0c;

}
/*.metismenu-item .level-1 > button:hover{
  text-decoration: underline;
}*/

.container-header .metismenu > li.level-1 > button:hover {
    text-decoration: underline;
 } 
.container-header .metismenu > li.level-1 > a:hover {
    text-decoration: underline;
 } 

.metismenu.mod-menu .metismenu-item .level-2,.metismenu.mod-menu .metismenu-item .level-3, .metismenu.mod-menu .metismenu-item .level-4, .metismenu.mod-menu .metismenu-item .level-5, .metismenu.mod-menu .metismenu-item .level-6 {
  font-size: 14px;
  line-height: 16px;
}

/* The page header of Cassiopeia has the class "header" so you control it with .header */

.header {
    background: white;
    /*background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(119, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);*/
    text-align: center;
   box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15) !important;

}
.container-header nav {
  margin-top: 0em;
  }
.container-header .container-search {
margin-top: 0em;
}
.container-header .container-nav {
  /*padding-bottom: 0.5em;*/
  align-items: center;
  margin-top: 0em;
}

.mod-languages {
   font-weight:500;
   font-size:18px;
   border-left-style: solid;
}
.mod-languages a {
  padding: .25rem;
  text-decoration: none;
}

.mod-languages a:hover {
  text-decoration: underline;
}

div.mod-languages ul li.lang-active {
  background-color: #ffffff;
}


.mod-languages ul li.lang-active {
    font-weight: 700;
}

.mod-languages li {
  margin: 0 .25rem !important;
}
.footer {
    background: --cassiopeia-color-primary;
    background-image: none;
}
.footer .grid-child {
  padding-bottom: 0em;
  padding-top:0em;
}
.footerlinks {
    background: --cassiopeia-color-primary;
    background-image: none;
    padding-bottom: 1em;
    padding-top:1em;

}

.footerlinks a {
  text-decoration: none;
}
.footerlinks a:hover {
  text-decoration: underline;
}
.footerxarxes {
    background: #f6f6f6;
    background-image: none;
    /*padding-bottom: 1em;
    padding-top:1em;
    padding-left:1em;*/
    color: #000000;
}
.container-header .navbar-toggler {
  color: black;
}