@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-.ttf) format('truetype');
}
/* BORDER VARIABLES */
/* TABLE VARIABLES */
/* NAV-TABS VARIABLES */
/* CORE SETTINGS & DEFAULT CSS VARIABLES */
:root {
  --fontDefault: 'Montserrat', sans-serif;
  --fontHeading: 'Montserrat', sans-serif;
  --remSize: 18px;
  --h1Size: 2.55rem;
  --h2Size: 1.55rem;
  --h3Size: 1.35rem;
  --primary: #1A2A6C;
  --secondary: #F4F4F1;
  --light: #ffffff;
  --greyWarm: #969779;
  --grey: #76766E;
  --greyDark: #222219;
  --dark: #000000;
  --white: #ffffff;
  --black: #121212;
  --blue-700: #1A2A6C;
  --blue-500: #2E4891;
  --grey-900: #323232;
  --grey-700: #76766E;
  --grey-500: #B2B2A8;
  --grey-300: #E3E4DF;
  --grey-100: #F4F4F1;
  --border: rgba(128, 128, 128, 0.24);
  --navbarHeight: 100px;
}
@media screen and (max-width: 1460px) {
  :root {
    --h1Size: 2.17rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  :root {
    --h1Size: 1.78rem;
    --h2Size: 1.35rem;
    --h3Size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --h1Size: 1.95rem;
    --h2Size: 1.55rem;
    --remSize: 15px;
  }
}
html {
  font-size: var(--remSize);
}
body {
  font-family: var(--fontDefault);
  background-color: var(--secondary);
  color: var(--grey-900);
}
body a {
  color: var(--blue-500);
  text-decoration: underline;
}
body a:hover {
  text-decoration: none;
}
body .large {
  font-size: 120%;
}
body .small {
  font-size: 90%;
}
strong {
  font-weight: 600;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--fontHeading);
  font-weight: 800;
  color: var(--grey-900);
}
h1,
.h1 {
  font-size: var(--h1Size);
}
h2,
.h2 {
  font-size: var(--h2Size);
}
h3,
.h3 {
  font-size: var(--h3Size);
}
h4,
.h4 {
  font-size: 1.1rem;
}
h5,
.h5 {
  font-size: 1rem;
}
h6,
.h6 {
  font-size: 0.9rem;
}
img {
  max-width: 100%;
  height: auto;
}
/* BUTTONS */
.btn {
  color: var(--blue-500);
  background-color: transparent;
  border-color: var(--border);
  border-width: 0px;
  border-style: solid;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
}
.btn:hover,
.btn:focus,
.btn:active {
  color: var(--blue-500);
  background-color: transparent;
}
.btn-default,
.btn-primary {
  padding: 0.5rem 0;
  color: var(--blue-500);
  background-color: transparent;
}
.btn-primary:not(:disabled):not(.disabled):active {
  color: var(--blue-500);
  background-color: transparent;
}
.btn-arrow {
  font-weight: 600;
}
.btn-lg {
  padding: 1rem 1.55rem;
  font-size: 1.25rem;
}
.btn-light {
  color: var(--white);
}
.btn-light:not(:disabled):not(.disabled):active,
.btn-light:hover,
.btn-light:focus,
.btn-light:active {
  color: var(--white);
  background-color: transparent;
}
/* CONTAINER */
.container-fluid {
  padding-right: 0px;
  padding-left: 0px;
}
/* Extra, extra large devices */
@media (min-width: 1460px) {
  .container {
    max-width: 1400px;
  }
}
/* PAGE HEADING */
.page-heading {
  margin-bottom: 1.6rem;
}
.page-heading .tag-label {
  margin-bottom: 0.7rem;
}
.page-heading .item-date {
  margin-bottom: 0.8rem;
  color: var(--grey-900);
  font-size: 1.33rem;
  font-weight: 800;
  line-height: 120%;
}
/* BREADCRUMB */
.breadcrumb {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 10px;
  font-size: 90%;
}
.breadcrumb .divider {
  padding: 0 4px;
}
/* TAG LABEL */
.tag-label {
  display: inline-block;
  padding: 0.6rem 1rem;
  color: var(--white);
  background-color: var(--black);
  font-size: 0.83rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* CSS GRID */
.grid-container {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0px 0px;
  grid-template-areas: "content-wrapper image-wrapper" "content-wrapper more-wrapper";
}
.grid-container .image-wrapper {
  grid-area: image-wrapper;
}
.grid-container .content-wrapper {
  grid-area: content-wrapper;
}
.grid-container .more-wrapper {
  grid-area: more-wrapper;
}
@media screen and (max-width: 767px) {
  .grid-container {
    display: block;
  }
}
/* COMPONENT IMAGES */
.componentImages {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.componentImages .row {
  margin-left: -5px;
  margin-right: -5px;
}
.componentImages .col-md-1,
.componentImages .col-md-2,
.componentImages .col-md-3,
.componentImages .col-md-4,
.componentImages .col-md-5,
.componentImages .col-md-6,
.componentImages .col-md-12 {
  padding: 0rem;
}
@media screen and (max-width: 767px) {
  .componentImages .col-md-1,
  .componentImages .col-md-2,
  .componentImages .col-md-3,
  .componentImages .col-md-4,
  .componentImages .col-md-5,
  .componentImages .col-md-6,
  .componentImages .col-md-12 {
    width: 33.333%;
  }
}
/* NOTIFICATION BAR */
.hp-notification {
  background: var(--blue-700);
  color: var(--white);
}
.hp-notification .hp-notification-bar {
  display: flex;
  align-items: start;
  padding: 14px 0 14px;
  gap: 10px;
  position: relative;
}
.hp-notification .hp-notification-bar .notification-text {
  margin-right: 0.6rem;
}
.hp-notification .hp-notification-bar .notification-text {
  margin-bottom: 0;
}
.notification-bar {
  display: flex;
  align-items: start;
  margin-bottom: 1.7rem;
  padding: 14px 20px 14px 15px;
  gap: 10px;
  position: relative;
  background: rgba(227, 228, 223, 0.6);
}
.notification-bar .notification-text {
  margin-right: 0.6rem;
}
.notification-bar .notification-text {
  margin-bottom: 0;
  font-weight: 600;
}
/* WRAPER */
@media (min-width: 993px) {
  #wrapper {
    padding-top: var(--navbarHeight);
  }
}
/* PAGE CONTENT */
.page-content .content-wrapper {
  background-color: var(--grey-100);
  position: relative;
  padding-right: 5.5rem;
  z-index: 1;
}
.page-content .content-wrapper .content-img {
  margin: 1.7rem 0 2rem;
}
@media screen and (max-width: 1460px) {
  .page-content .content-wrapper {
    padding-right: 4.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .page-content .content-wrapper {
    padding-right: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .page-content .content-wrapper {
    padding-right: 0;
  }
}
.page-content .image-wrapper {
  margin: -3rem 0 0.55rem -10rem;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .page-content .image-wrapper {
    margin: -3rem 0 0.55rem -5rem;
  }
}
@media screen and (max-width: 767px) {
  .page-content .image-wrapper {
    margin: 0 -15px;
  }
}
.page-content .image-wrapper .image-wrapper-in {
  position: relative;
  padding-top: 96.5%;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .page-content .image-wrapper .image-wrapper-in {
    padding-top: 120%;
  }
}
.page-content .image-wrapper .image-wrapper-in .componentImageWrapper {
  position: static;
}
.page-content .image-wrapper .image-wrapper-in img {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 60%;
}
@media screen and (max-width: 767px) {
  .page-content .image-wrapper .image-wrapper-in img {
    object-position: 50% 50%;
  }
}
.page-content .more-wrapper .more-title {
  margin: 4rem 0 0;
}
.page-content .perex {
  margin-bottom: 1.7rem;
}
.page-content .componentImageWrapper {
  margin: 1.7rem 0rem;
}
.page-content table,
.page-content .table {
  margin: 1.25rem 0rem;
}
.page-content table tbody tr:nth-of-type(odd),
.page-content .table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.page-content table p:last-of-type,
.page-content .table p:last-of-type {
  margin-bottom: 0rem;
}
/* ITEMS GRID */
.items-list {
  padding: 2.4rem 0;
}
.items-list .list-item {
  position: relative;
  margin-bottom: 3.2rem;
}
.items-list .list-item .item-link {
  display: block;
  padding-bottom: 5rem;
  text-decoration: none;
}
.items-list .list-item .item-link .item-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.items-list .list-item .item-link .item-img-wrapper img {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.items-list .list-item .item-link .item-desc {
  position: absolute;
  bottom: 0;
  min-width: calc(100% - 3.3rem);
  max-width: calc(100% - 3.3rem);
  padding: 0 1.5rem 0;
  background-color: var(--grey-100);
}
@media screen and (max-width: 767px) {
  .items-list .list-item .item-link .item-desc {
    padding: 0 1.7rem 0 0;
  }
}
.items-list .list-item .item-link .item-desc .item-desc-text .tag-label {
  position: relative;
  top: -1.3rem;
}
.items-list .list-item .item-link .item-desc .item-desc-text .tag-label ~ .item-title {
  margin-top: 0rem;
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-title {
  margin-top: 1.7rem;
  color: var(--blue-500);
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1460px) {
  .items-list .list-item .item-link .item-desc .item-desc-text .item-title {
    font-size: 1.35rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .items-list .list-item .item-link .item-desc .item-desc-text .item-title {
    font-size: 1.55rem;
  }
}
@media screen and (max-width: 767px) {
  .items-list .list-item .item-link .item-desc .item-desc-text .item-title {
    font-size: 1.55rem;
  }
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-date {
  color: var(--grey-900);
  font-size: 1.33rem;
  font-weight: 800;
  line-height: 120%;
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-place {
  color: var(--grey-900);
  line-height: 1.5;
}
.items-list.items-list-small .list-item .item-link {
  padding-bottom: 6.5rem;
}
.items-list.items-list-small .list-item .item-link .item-desc {
  padding: 0 1.5rem 0 0;
  min-width: calc(100% - 1.6rem);
  max-width: calc(100% - 1.6rem);
}
.items-list.items-list-small .list-item .item-link .item-desc .item-desc-text .item-title {
  font-size: 1.3rem;
}
@media screen and (max-width: 1460px) {
  .items-list.items-list-small .list-item .item-link .item-desc .item-desc-text .item-title {
    font-size: 1.15rem;
  }
}
.items-list.items-list-small .list-item .item-link .item-desc .item-desc-text .item-date {
  font-size: 1rem;
}
.items-list.items-list-small .list-item .item-link .item-desc .item-desc-text .item-place {
  font-size: 0.9rem;
}
.items-list.list-expozice .list-item .item-link .item-img-wrapper {
  padding-top: 55%;
}
/* OBJECTS THUMBNAILS */
.objects-thumbnails {
  margin-bottom: 2rem;
}
.objects-thumbnails .object-item {
  margin-bottom: 2.2rem;
}
.objects-thumbnails .object-item .item-number {
  color: var(--grey-500);
}
.objects-thumbnails .object-item .item-link {
  text-decoration: none;
}
/* Menu Links */
.menu-links {
  list-style: none;
  padding: 0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.menu-links .menu-item {
  border-bottom: 1px solid var(--blue-500);
}
.menu-links .menu-item .menu-link {
  display: block;
  padding: 0.6rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--blue-500);
  white-space: normal;
}
.menu-links .menu-item .menu-link:hover,
.menu-links .menu-item .menu-link:focus,
.menu-links .menu-item .menu-link:active {
  background-color: inherit;
}
.menu-links .menu-item:last-child {
  border-bottom: none;
}
/* SUBNAV LINKS */
.subnav-links {
  margin-top: 5.5rem;
}
.subnav-links .nav-item .nav-link {
  padding: 0.3rem 1rem 0.3rem 0;
  font-weight: 600;
  text-decoration: none;
}
.subnav-links .nav-item .nav-link.active {
  color: var(--grey-700);
}
.subnav-links .nav .nav-item {
  position: relative;
}
.subnav-links .nav .nav-item:before {
  content: "•";
  position: absolute;
  font-size: 1.8rem;
  top: -0.5rem;
  left: 0.3rem;
  color: var(--blue-500);
}
.subnav-links .nav .nav-item .nav-link {
  padding: 0.3rem 1rem 0.3rem 1.3rem;
  font-weight: 600;
  font-size: 0.9rem;
}
/* TABLES */
.table {
  width: 100%;
  max-width: 100%;
  margin: 3rem 0;
  background: none;
  text-align: left;
  border-spacing: 0;
  font-size: 0.9rem;
}
.table tbody tr th,
.table tbody tr td {
  padding: 0.8rem 1.2rem;
  vertical-align: middle;
  border-top: 0 solid var(--border);
}
.table tbody thead th {
  vertical-align: bottom;
  border-bottom: 0 solid var(--border);
}
/* PRIMARY LINKS */
.primary-links {
  margin: 0 0 5rem;
}
.primary-links .primary-links-wrapper {
  padding: 0.5rem;
  background-color: var(--blue-700);
}
.primary-links .primary-links-wrapper .row {
  margin-bottom: 0;
}
.primary-links .primary-links-wrapper .row .col:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767px) {
  .primary-links .primary-links-wrapper .row .col:not(:last-child) {
    border-right: 0;
    border-bottom: solid 1px var(--blue-500);
  }
}
.primary-links .primary-links-wrapper .btn {
  color: var(--white) !important;
}
/* CONTENT TABS */
.content-tabs {
  margin-bottom: 1rem;
  border-color: var(--blue-500);
}
@media screen and (max-width: 767px) {
  .content-tabs {
    border: 0;
  }
}
@media screen and (max-width: 767px) {
  .content-tabs .nav-item {
    border-top: solid 1px var(--blue-500);
  }
  .content-tabs .nav-item:last-child {
    border-bottom: solid 1px var(--blue-500);
  }
}
.content-tabs .nav-item .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--blue-500);
  border: 0;
}
@media screen and (max-width: 767px) {
  .content-tabs .nav-item .nav-link {
    padding: 1.05rem 1rem;
    font-size: 1rem;
  }
}
.content-tabs .nav-item .nav-link.active {
  font-weight: 700;
  background-color: transparent;
  border-color: transparent;
}
.content-tabs .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0;
  height: 3px;
  width: calc(100% - 2*1rem);
  background-color: var(--blue-500);
}
@media screen and (max-width: 767px) {
  .content-tabs .nav-item .nav-link.active::after {
    content: none;
  }
}
.content-tabs .nav-item .nav-link:hover,
.content-tabs .nav-item .nav-link:focus {
  border-color: transparent;
}
@media (min-width: 768px) {
  .content-tabs .nav-item:first-child .nav-link {
    padding-left: 0;
  }
}
.content-tabs .nav-item:first-child .nav-link.active::after {
  left: 0;
  width: calc(100% - 1rem);
}
@media (min-width: 768px) {
  .content-tabs .nav-item:last-child .nav-link {
    padding-right: 0;
  }
}
.content-tabs .nav-item:last-child .nav-link.active::after {
  right: 0;
  width: calc(100% - 1rem);
}
/* ARTICLES */
.articles-grid {
  margin: 1.7rem 0 5rem;
}
.articles-grid .article-item {
  margin-bottom: 2rem;
}
.articles-grid .article-item .item-link {
  display: block;
}
.articles-grid .article-item .item-link .item-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.articles-grid .article-item .item-link .item-img-wrapper img {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles-grid .article-item .item-title {
  margin-top: 1rem;
  color: var(--blue-500);
}
.articles-grid .article-item .item-title a {
  text-decoration: none;
}
.articles-grid .article-item .item-date {
  margin-bottom: 0.6rem;
  color: var(--grey-900);
  font-size: 0.85rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.articles-grid .article-item .item-desc {
  font-size: 0.9rem;
  font-weight: 600;
}
/* Component file styles */
.componentFile {
  padding: 12px 10px 12px 50px;
  position: relative;
  line-height: 100%;
  border-top: 1px solid var(--grey-300);
}
.componentFile a {
  color: var(--primary);
  font-size: 18px;
  text-decoration: none;
}
.componentFile a:before {
  font-family: 'Line Awesome Free';
  left: 10px;
  position: absolute;
  top: 20px;
  font-size: 32px;
  color: var(--primary);
}
.componentFile:hover {
  color: var(--primary);
  text-decoration: none;
  background: var(--grey-100);
}
.componentFile:hover a:before {
  color: var(--primary);
}
.componentFile:hover a {
  color: var(--primary);
  font-weight: normal;
}
.componentFile a.file-docx:before,
.componentFile a.file-doc:before {
  content: "\f1c2";
}
.componentFile a.file-pdf:before {
  content: "\f1c1";
}
.componentFile a.file-zip:before {
  content: "\f1c6";
}
.componentFile a.file-jpg:before,
.componentFile a.file-png:before,
.componentFile a.file-gif:before {
  content: "\f1c5";
}
.componentFile a.file-xls:before,
.componentFile a.file-xlsx:before {
  content: "\f1c3";
}
.componentFile .file-name {
  display: block;
  text-decoration: underline;
  font-weight: bold;
}
.componentFile .file-size {
  font-size: 11px;
}
/* Google translator UI custom style */
.goog-text-highlight {
  position: inherit !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
/* Edit navbar styles for translated pages */
.translated-ltr nav.navbar.navbar-expand.navbar-custom {
  position: static !important;
}
.translated-ltr #wrapper {
  padding-top: 0 !important;
}
/* Hide cookie bar on translated pages */
.translated-ltr .cm-container {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
/* style blockquote element */
blockquote {
  border-left: 5px solid var(--blue-500);
  padding-left: 1rem;
  margin-left: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--grey-900);
}
/* eshop elements */
.product-buy-box-wrapper {
  text-align: right;
}
.product-buy-box {
  padding: 0rem 0rem 0rem 1rem;
  margin-bottom: 2rem;
  background-color: var(--white);
  display: inline-block;
}
.product-buy-box.product-buy-block {
  display: block;
  text-align: right;
}
.btn-buy {
  display: inline-block;
  padding: 1rem 1rem;
  color: var(--white);
  background-color: var(--blue-500);
  font-size: 0.83rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
}
.btn-buy:hover {
  background-color: var(--blue-700);
  color: var(--white);
  transition: background-color 0.3s ease-in-out;
}
.btn-core {
  display: inline-block;
  padding: 1rem 1rem;
  color: var(--black);
  background-color: var(--white);
  font-size: 0.83rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
}
.btn-core:hover {
  background-color: var(--grey-200);
  color: var(--black);
  transition: background-color 0.3s ease-in-out;
}
.item-product-price {
  padding: 0 1rem 0 0rem;
  white-space: nowrap;
  line-height: 1;
  font-weight: bold;
  display: inline-block;
}
.content-wrapper-in .gallitem:not(.gallery-item) {
  margin: 5px;
}
