:root {
  --hover-color: #9e1915;
}
:root {
  --dark: #252525;
  --light: #fff;
  --grey: #999;
  --grey-bg: #f6f6f6;
  --border-color: #e5e5e5;
  --contrast-color: #fffc00;
  --wrapper-width: 1520px;
}
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignright {
  float: right;
}
.alignleft {
  float: left;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
body {
  background-color: var(--light);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--dark);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
}
.body-wrapper {
  overflow: hidden;
}
.wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
body.contrast-mode {
  background-color: #000;
  color: var(--contrast-color);
}
body.contrast-mode header {
  background-color: #000;
}
body.contrast-mode header .header-bottom {
  background-color: #000;
}
body.contrast-mode header .dark-mode path {
  fill: var(--contrast-color) !important;
  transition: fill 0.3s;
}
body.contrast-mode header .socials a path {
  fill: var(--contrast-color);
  transition: fill 0.3s;
}
body.contrast-mode header .header-right .language::after {
  background-color: var(--contrast-color);
}
body.contrast-mode header .header-right .language:hover {
  color: var(--contrast-color);
}
body.contrast-mode header .main-menu::after {
  background-color: var(--contrast-color);
}
body.contrast-mode header .main-menu a {
  opacity: 1;
}
body.contrast-mode header .main-menu a::after {
  background-color: var(--contrast-color);
}
body.contrast-mode header .separator {
  background-color: var(--contrast-color);
}
body.contrast-mode header .secondary-menu .wp-menu {
  background-color: #000;
}
body.contrast-mode header .secondary-menu .wp-menu .menu-item::after {
  background-color: var(--contrast-color);
}
body.contrast-mode header .secondary-menu .sub-menu {
  background-color: #000;
}
body.contrast-mode header .secondary-menu .sub-menu .menu-item::after {
  background-color: var(--contrast-color);
}
body.contrast-mode a.button {
  background-color: var(--contrast-color);
  color: #000;
}
body.contrast-mode a.button:hover {
  opacity: 0.6;
}
body.contrast-mode a.button.bordered.wide {
  background-color: var(--contrast-color);
  color: #000;
}
body.contrast-mode footer {
  background-color: #000;
}
body.contrast-mode .content-wrapper.events::before {
  background-color: var(--contrast-color);
}
body.contrast-mode .events-list .events-item {
  border-bottom: 1px solid var(--contrast-color);
}
body.contrast-mode .newsletter::before {
  background-color: var(--contrast-color);
}
body.contrast-mode .slider .slider-item .text-wrapper {
  background-color: #191919;
}
body.contrast-mode .news .news-item .text-wrapper .category {
  color: var(--contrast-color);
}
body.contrast-mode .news .news-item .text-wrapper p {
  opacity: 1;
}
body.contrast-mode .events-menu a {
  opacity: 1;
}
body.contrast-mode .subtitle {
  color: var(--contrast-color);
}
body.contrast-mode .events-list .events-item .date {
  opacity: 1;
}
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 40px 0;
  background-color: var(--light);
}
header a {
  display: inline-block;
  text-decoration: none;
}
header .logo img {
  width: 141px;
}
header .eu-flag {
  height: 30px;
}
header .main-menu {
  margin-right: auto;
  font-family: 'Marcellus', serif;
  font-size: 14px;
  margin-left: 40px;
  padding-left: 32px;
  width: 65%;
  position: relative;
}
header .main-menu::after {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: var(--border-color);
  opacity: 0.8;
}
header .main-menu.responsive {
  display: none;
}
header .main-menu a {
  text-decoration: none;
  opacity: 0.6;
  padding: 12px 0;
  transition: opacity 0.3s;
  position: relative;
}
header .main-menu a::after {
  position: absolute;
  content: '';
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) translateY(3px);
  width: 16px;
  height: 1px;
  background-color: var(--hover-color);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
header .main-menu a.current,
header .main-menu a:hover {
  opacity: 1;
}
header .main-menu a.current::after,
header .main-menu a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0px);
}
header .main-menu a:not(:last-child) {
  margin-right: 40px;
}
header .header-right {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 12px;
}
header .header-right .font-size a:not(:last-child) {
  margin-right: 32px;
}
header .header-right a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}
header .header-right a:hover {
  color: var(--hover-color);
}
header .header-right .dark-mode {
  cursor: pointer;
  margin: 0 56px;
  width: 24px;
  height: 24px;
}
header .header-right .dark-mode path {
  fill: var(--dark);
  transition: fill 0.3s;
}
header .header-right .dark-mode:hover path {
  fill: var(--hover-color);
}
header .header-right .language {
  position: relative;
}
header .header-right .language::after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 1px;
  background-color: var(--hover-color);
  transition: background-color 0.3s;
}
header .header-right .language:hover::after {
  background-color: var(--hover-color);
}
header .separator {
  width: calc(100% + 80px);
  height: 1px;
  background-color: var(--border-color);
  opacity: 0.9;
  margin: 8px -40px 0;
}
header .header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 0;
}
header .secondary-menu .wp-menu .menu-item {
  display: inline-block;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
header .secondary-menu .wp-menu .menu-item::after {
  position: absolute;
  content: '';
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) translateY(3px);
  width: 16px;
  height: 1px;
  background-color: var(--hover-color);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
header .secondary-menu .wp-menu .menu-item {
  margin-right: 54px;
}
header .secondary-menu .wp-menu .menu-item.current-menu-ancestor::after,
header .secondary-menu .wp-menu .menu-item.current-menu-item::after,
header .secondary-menu .wp-menu .menu-item.current::after,
header .secondary-menu .wp-menu .menu-item:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0px);
}
header .secondary-menu .wp-menu .menu-item:hover > .sub-menu {
  display: inline-block;
}
header .secondary-menu .sub-menu {
  display: none;
  position: absolute;
  background-color: #f5f5f5;
  z-index: 1;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 21px 10px 21px;
  width: 200px;
}
header .secondary-menu .sub-menu li {
  width: 100%;
  text-align: center;
}
header .secondary-menu .sub-menu li::after {
  position: absolute;
  content: '';
  bottom: 2px;
  left: 50%;
  transform: translateX(-21%) translateY(3px);
  width: 16px;
  height: 1px;
  background-color: var(--hover-color);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
header .secondary-menu .sub-menu li.current::after,
header .secondary-menu .sub-menu li:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0px);
}
header .secondary-menu .sub-menu li .sub-menu {
  margin-left: 114%;
  top: -10px;
}
header .socials {
  white-space: nowrap;
  display: flex;
  justify-content: center;
  margin-left: 32px;
}
header .socials a {
  width: 20px;
  height: 20px;
}
header .socials a path {
  fill: var(--dark);
  transition: fill 0.3s;
}
header .socials a:not(:last-child) {
  margin-right: 21px;
}
header .socials a:hover path {
  fill: var(--hover-color);
}
header .socials a.bookstore {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 101px;
}
header .socials .x {
  margin: -3px 0 0 -7px;
}
.newsletter {
  max-width: var(--wrapper-width);
  margin: 168px auto;
  padding: 96px 40px 0;
  display: flex;
  position: relative;
}
.newsletter::before {
  position: absolute;
  content: '';
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background-color: var(--border-color);
}
.newsletter h1 {
  width: 30%;
  margin-right: 120px;
}
.newsletter h3 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 48px;
  max-width: 737px;
}
.newsletter .form-wrapper {
  width: 70%;
}
.newsletter .form-wrapper form {
  display: grid;
  grid-template-columns: 2fr 1fr;
  max-width: 737px;
}
.newsletter .form-wrapper input {
  border: none !important;
  border-bottom: 1px solid var(--border-color) !important;
  flex-grow: 1 !important;
  padding-left: 0 !important;
  margin-right: 40px !important;
  font-size: 14px !important;
}
.newsletter .form-wrapper button {
  padding-left: 72px;
  padding-right: 72px;
}
.newsletter .form-wrapper .tnp-email {
  border: none !important;
  border-bottom: 1px solid var(--border-color) !important;
  flex-grow: 1 !important;
  padding-left: 10px !important;
  margin-right: 40px !important;
  font-size: 14px !important;
  width: 100%;
  height: 53px;
}
.newsletter .form-wrapper .tnp-submit {
  margin-right: 0 !important;
  padding-left: 72px !important;
  padding-right: 72px !important;
  display: inline-block;
  font-size: 12px !important;
  text-transform: uppercase;
  font-weight: 600;
  padding: 19px 48px;
  text-align: center;
  background-color: var(--dark);
  color: var(--light);
  text-decoration: none;
  letter-spacing: 1px;
  transition: background-color 0.3s;
  cursor: pointer;
}
.newsletter .tnp.tnp-subscription {
  max-width: none;
}
.newsletter .tnp.tnp-subscription .tnp-field-email {
  width: 100%;
}
.newsletter .tnp.tnp-subscription .tnp-field-email label {
  display: none;
}
.newsletter .tnp.tnp-subscription .tnp-field-email .tnp-email {
  padding-left: 10px !important;
  background-color: transparent;
  height: 53px !important;
}
.newsletter .tnp.tnp-subscription .tnp-field-button .tnp-submit {
  margin-right: 0 !important;
  padding-left: 72px !important;
  padding-right: 72px !important;
  display: inline-block;
  font-size: 12px !important;
  text-transform: uppercase;
  font-weight: 600;
  padding: 19px 48px;
  text-align: center;
  background-color: var(--dark);
  color: var(--light);
  text-decoration: none;
  letter-spacing: 1px;
  transition: background-color 0.3s;
  cursor: pointer;
}
.newsletter .tnp.tnp-subscription .tnp-field-button .tnp-submit:hover {
  background-color: var(--hover-color);
}
footer {
  background-color: var(--grey-bg);
  padding: 40px 0;
  margin-top: 100px;
  text-align: center;
}
footer a {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 0;
  margin: 0 27px;
  text-decoration: none;
  transition: opacity 0.3s;
}
footer a:hover {
  opacity: 0.6;
}
footer .footer-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: inline-block;
}
footer .footer-menu ul li {
  float: left;
}
footer .footer-menu ul li a {
  display: block;
  text-align: center;
  text-decoration: none;
}
footer .footer-logo {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
footer .footer-logo p {
  font-size: 9px;
  grid-column: 1/-1;
}
footer .footer-logo img {
  max-width: 60px;
  margin: 0 auto;
}
footer .footer-logo img.logo-wide {
  max-width: 100px;
}
footer .powered-by {
  margin-top: 25px;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 13px;
}
footer .powered-by a {
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  margin: 7px 0 0 0;
  text-decoration: underline;
}
.section-header {
  margin: 96px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Marcellus', serif;
  line-height: 1.3;
}
h1 {
  font-size: 40px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
.subtitle {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 16px;
}
a {
  color: currentColor;
}
a:hover {
  text-decoration: none;
}
strong {
  font-weight: 600;
}
.excerpt {
  font-size: 24px;
  font-family: 'Marcellus', serif;
}
p + p {
  margin-top: 40px;
}
.button,
form button {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 19px 48px;
  text-align: center;
  background-color: var(--dark);
  color: var(--light);
  text-decoration: none;
  letter-spacing: 1px;
  transition: background-color 0.3s;
}
.button.wide,
form button.wide {
  padding-left: 98px;
  padding-right: 98px;
  white-space: nowrap;
}
.button.full-width,
form button.full-width {
  width: 100%;
}
.button.bordered,
form button.bordered {
  background: none;
  color: var(--dark);
  border: 1px solid var(--border-color);
  transition: background-color 0.5s, color 0.5s, border-color 0.5s;
}
.button:hover,
form button:hover {
  background-color: var(--hover-color);
}
.button.bordered:hover,
form button.bordered:hover {
  color: var(--light);
  border-color: var(--dark);
  background-color: var(--dark);
}
.button-wrapper {
  text-align: center;
  margin-top: 90px;
}
.item-event-header {
  position: relative;
  overflow: hidden;
}
.item-event-header .header-image {
  width: 100%;
}
.item-event-header .header-image .header-image-item {
  position: relative;
  margin: 0 0 10px 0;
  width: 100%;
}
.item-event-header .header-image a img {
  float: left;
  width: 33.3%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/5;
}
.item-event-header .header-image.single-image img {
  width: 100%;
  aspect-ratio: 12/5;
}
.slider .slider-item {
  height: 800px;
  overflow: hidden;
}
.slider .slider-item .image-wrapper {
  width: 50%;
  float: left;
  height: 100%;
}
.slider .slider-item .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.slider .slider-item .text-wrapper {
  width: 50%;
  float: right;
  background-color: var(--grey-bg);
  padding: 132px;
  height: 100%;
  display: flex;
  align-items: center;
}
.slider .slider-item .text-wrapper h1 {
  font-size: 48px;
  line-height: 1.3;
  margin-top: 0;
}
.slider .slider-item .text-wrapper .date {
  display: block;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 42px;
}
.tns-outer {
  position: relative;
}
.tns-outer > button {
  display: none;
}
.tns-controls {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: 50%;
}
.tns-controls button {
  background: none;
  color: transparent;
  transition: opacity 0.3s;
  position: absolute;
  padding: 4px;
}
.tns-controls button[data-controls="prev"] {
  background: url("/t/img/arrow-left.svg") center no-repeat;
  left: 32px;
  bottom: 32px;
}
.tns-controls button[data-controls="next"] {
  background: url("/t/img/arrow-right.svg") center no-repeat;
  right: 32px;
  bottom: 32px;
}
.tns-controls button:hover {
  opacity: 0.6;
}
.news .news-item {
  display: flex;
  align-items: center;
}
.news .news-item:not(:last-child) {
  margin-bottom: 80px;
}
.news .news-item .image-wrapper {
  margin-right: 72px;
}
.news .news-item .text-wrapper {
  max-width: 460px;
}
.news .news-item .text-wrapper a {
  text-decoration: none;
}
.news .news-item .text-wrapper .category {
  color: var(--grey);
  font-family: 'Marcellus', serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.news .news-item .text-wrapper p {
  opacity: 0.6;
}
.news .news-item .text-wrapper .read-more {
  margin-top: 8px;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 0;
  transition: opacity 0.3s;
  position: relative;
}
.news .news-item .text-wrapper .read-more::after {
  position: absolute;
  content: '';
  bottom: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--hover-color);
  transition: transform 0.3s;
}
.news .news-item .text-wrapper .read-more:hover {
  opacity: 0.6;
}
.news .news-item .text-wrapper .read-more:hover::after {
  transform: translateY(-3px);
}
.news .news-item:nth-child(even) {
  justify-content: flex-end;
}
.news .news-item:nth-child(even) .image-wrapper {
  order: 2;
  margin-right: 0;
  margin-left: 72px;
}
.content-wrapper {
  display: flex;
  padding: 104px 40px 0;
  max-width: var(--wrapper-width);
  margin: 0 auto;
}
.content-wrapper .content-sidebar {
  width: 30%;
  margin-right: 120px;
}
.content-wrapper .content-sidebar .button {
  margin-top: 24px;
}
.content-wrapper .content-center {
  width: 70%;
}
.content-wrapper .content-sidebar > :first-child,
.content-wrapper .content-center > :first-child {
  margin-top: 0;
}
.sidebar-menu a {
  display: table;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
}
.sidebar-menu a::after {
  position: absolute;
  content: '';
  bottom: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.3s;
}
.sidebar-menu a:hover::after {
  opacity: 1;
}
.sidebar-submenu .wp-menu {
  padding: 0;
}
.sidebar-submenu .wp-menu > .menu-item {
  display: none;
}
.sidebar-submenu .wp-menu > .menu-item.current-menu-ancestor.menu-item {
  display: table;
  position: relative;
  text-transform: uppercase;
  width: 300px;
  font-family: marcellus, serif;
}
.sidebar-submenu .wp-menu > .menu-item.current-menu-ancestor.menu-item ul {
  list-style-type: none;
  left: 7px;
  line-height: 160%;
  padding: 0;
}
.sidebar-submenu .wp-menu > .menu-item.current-menu-ancestor.menu-item a {
  text-decoration: none;
  font-weight: 500;
  text-align: left;
}
.sidebar-submenu .wp-menu > .menu-item.current-menu-ancestor.menu-item a:hover::after {
  opacity: 1;
}
.sidebar-submenu .wp-menu > .menu-item.current-menu-ancestor.menu-item a:hover {
  text-decoration: underline;
}
.sidebar-submenu .wp-menu > .menu-item.current-menu-ancestor.menu-item .sub-menu {
  margin-left: 21px;
}
.sidebar-submenu .wp-menu > .menu-item.current-menu-ancestor.menu-item a {
  display: none;
}
.sidebar-submenu .wp-menu > .menu-item.current-menu-ancestor.menu-item .sub-menu a {
  display: table;
}
.page-sidebar-submenu {
  display: table;
  position: relative;
  text-transform: uppercase;
  width: 300px;
  font-family: marcellus, serif;
}
.page-sidebar-submenu ul {
  list-style-type: none;
  left: 7px;
  line-height: 160%;
  padding: 0;
}
.page-sidebar-submenu a {
  text-decoration: none;
  font-weight: 500;
  text-align: left;
}
.page-sidebar-submenu a:hover::after {
  opacity: 1;
}
.page-sidebar-submenu a:hover {
  text-decoration: underline;
}
.page-sidebar-submenu .sub-menu {
  margin-left: 21px;
}
.events-menu a {
  display: table;
  opacity: 0.5;
  text-decoration: none;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
}
.events-menu a::after {
  position: absolute;
  content: '';
  bottom: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--hover-color);
  opacity: 0;
  transition: opacity 0.3s;
}
.events-menu a.current,
.events-menu a:hover {
  opacity: 1;
}
.events-menu a.current::after,
.events-menu a:hover::after {
  opacity: 1;
}
.events-menu:not(:last-child) {
  margin-bottom: 40px;
}
.events-menu .filters-breaker {
  display: none;
}
.content-wrapper.events {
  position: relative;
}
.content-wrapper.events::before {
  position: absolute;
  content: '';
  top: 0;
  left: -50%;
  right: -50%;
  height: 1px;
  background-color: var(--border-color);
}
.content-wrapper.events .content-sidebar {
  width: 23%;
}
.content-wrapper.events .content-center {
  width: 77%;
}
.events-list .events-item {
  display: flex;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-color);
}
.events-list .events-item:first-child {
  padding-top: 0;
}
.events-list .events-item a {
  text-decoration: none;
}
.events-list .events-item img {
  max-width: 16rem;
  min-width: 16rem;
  display: block;
}
.events-list .events-item h2 {
  font-size: 24px;
  margin: 0 32px;
}
.events-list .events-item .date {
  display: inline-block;
  margin-right: 32px;
  margin-left: auto;
  opacity: 0.5;
  white-space: nowrap;
}
.events-list .events-item .button {
  padding-left: 60px;
  padding-right: 60px;
  margin-left: auto;
}
.events-list h2 {
  margin-top: 0px;
}
.events-list .permanent-exhibitions {
  margin-top: 70px;
}
.content-wrapper.articles {
  position: relative;
}
.content-wrapper.articles::before {
  position: absolute;
  content: '';
  top: 0;
  left: -50%;
  right: -50%;
  height: 1px;
  background-color: var(--border-color);
}
.articles-list .articles-item {
  display: flex;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-color);
}
.articles-list .articles-item:first-child {
  padding-top: 0;
}
.articles-list .articles-item a {
  text-decoration: none;
}
.articles-list .articles-item img {
  margin-right: 21px;
  display: block;
  min-width: 16rem;
  max-width: 16rem;
  min-height: 12rem;
  max-height: 12rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.articles-list .articles-item h2 {
  font-size: 24px;
  margin: 0 21px;
  width: 21rem;
}
.articles-list .articles-item p {
  margin: 0 21px 0 32px;
}
.articles-list h2 {
  margin-top: 0px;
}
.articles-list .read-more {
  margin: 8px;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 0;
  transition: opacity 0.3s;
  position: relative;
  white-space: nowrap;
  text-align: center;
  margin-left: auto;
  margin-right: 0;
}
.articles-list .read-more::after {
  position: absolute;
  content: '';
  bottom: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--hover-color);
  transition: transform 0.3s;
}
.articles-list .read-more:hover {
  opacity: 0.6;
}
.articles-list .read-more:hover::after {
  transform: translateY(-3px);
}
.paginate-links {
  margin-top: 50px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.paginate-links a {
  padding: 12px;
  text-decoration: none;
}
.paginate-links a:hover {
  color: var(--hover-color);
}
.paginate-links span {
  padding: 12px;
  color: var(--hover-color);
}
.tickets {
  padding-top: 88px;
}
.tickets h3 {
  margin-bottom: 32px;
}
.tickets form button {
  margin-top: 40px;
}
.two-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 12px;
}
.two-columns > * {
  width: calc(50% - 16px);
}
.input-wrapper {
  margin-bottom: 29px;
}
.input-wrapper input {
  width: 100%;
}
.three-columns {
  display: flex;
  justify-content: space-between;
}
.three-columns > * {
  width: calc(33.33% - 16px);
}
.ico-gift {
  background: url("/t/img/ico-gift.svg") left center no-repeat;
  padding-left: 20px;
}
::-moz-placeholder {
  color: currentColor;
  opacity: 0.5;
}
::placeholder {
  transition: opacity 0.3s;
}
:focus::-moz-placeholder {
  opacity: 0.25;
}
:focus::placeholder {
  opacity: 0.25;
}
input,
textarea,
:focus {
  outline: 0;
}
label {
  display: block;
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 8px;
  overflow: hidden;
}
label span {
  float: right;
  color: var(--dark);
}
input,
textarea {
  color: var(--dark);
  padding: 17px 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 0;
  border: 1px solid var(--border-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
button {
  border: none;
}
.partners .logos-container {
  margin-bottom: 50px;
}
.partners h2 {
  margin-top: 0px;
  line-height: 44px;
}
.partners img {
  padding-top: 40px;
}
.partners a {
  text-decoration: none;
}
.partners a:nth-child(odd) {
  padding-left: 20px;
}
.partners a:nth-child(even) {
  padding-right: 20px;
}
.checkbox-wrapper {
  border: 1px solid var(--border-color);
  padding: 0 16px;
  display: flex;
  align-items: center;
}
.checkbox-wrapper + .checkbox-wrapper {
  margin-top: -1px;
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
}
input[type="radio"] {
  -webkit-appearance: radio;
     -moz-appearance: radio;
          appearance: radio;
}
input[type="checkbox"],
input[type="radio"] {
  vertical-align: middle;
}
input[type="checkbox"]:hover,
input[type="radio"]:hover {
  cursor: pointer;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
  vertical-align: middle;
  line-height: 24px;
  margin: 15px 0;
  padding-left: 12px;
}
input[type="checkbox"] + label:hover,
input[type="radio"] + label:hover {
  cursor: pointer;
}
.styled-select {
  position: relative;
  display: inline-block;
  border: 1px solid var(--border-color);
  width: 100%;
}
.styled-select::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 10px;
  top: 50%;
  right: 1em;
  margin-top: -5px;
  z-index: 2;
  background: url("/t/img/dropdown.svg") center center no-repeat;
  pointer-events: none;
}
.styled-select select {
  width: 100%;
  margin: 0;
  border: 1px solid transparent;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  padding: 14px 50px 14px 17px;
  background-color: transparent;
}
.styled-select select:hover {
  cursor: pointer;
}
.styled-select select:focus {
  outline: none;
  color: currentColor;
  border-radius: 0;
}
.styled-select option {
  font-weight: normal;
}
x:-o-prefocus,
.styled-select::after {
  display: none;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .styled-select select::-ms-expand {
    display: none;
  }
  .styled-select select:focus::-ms-value {
    background: transparent;
    color: var(--dark);
  }
}
@-moz-document url-prefix() {
  .styled-select {
    overflow: hidden;
  }
  .styled-select select {
    width: 120%;
    width: calc(100% + em);
  }
}
.styled-select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--dark);
}
.hidden-text {
  display: none;
}
.hidden-text-btn {
  font-size: 12px;
  padding: 7px 21px;
  margin-bottom: 12px;
  text-align: center;
  background-color: var(--dark);
  color: var(--light);
  transition: background-color 0.3s;
}
.hidden-text-btn:hover {
  background-color: var(--hover-color);
}
#menu-opener {
  display: none;
  position: relative;
  width: 38px;
  height: 34px;
  margin-left: 40px;
}
#menu-opener:hover {
  cursor: pointer;
}
#menu-opener::before,
#menu-opener::after,
#menu-opener span {
  display: inline-block;
  position: absolute;
  content: "";
  right: 0;
  width: 38px;
  height: 2px;
  background-color: var(--dark);
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
#menu-opener::before {
  top: 8px;
}
#menu-opener span {
  top: 17px;
}
#menu-opener::after {
  top: 26px;
}
#menu-opener:hover::before,
#menu-opener:hover::after,
#menu-opener:hover span {
  background-color: var(--hover-color);
}
html:not(.is-loading) body.menu-opened #menu-opener::before,
html:not(.is-loading) body.menu-opened #menu-opener::after,
html:not(.is-loading) body.menu-opened #menu-opener span {
  width: 32px;
}
html:not(.is-loading) body.menu-opened #menu-opener::before {
  transform: translate(0px, 9px) rotate(-45deg);
}
html:not(.is-loading) body.menu-opened #menu-opener::after {
  transform: translate(0px, -9px) rotate(45deg);
}
html:not(.is-loading) body.menu-opened #menu-opener span {
  opacity: 0;
}
@media (max-width: 1112px) {
  #menu-opener {
    display: block;
  }
  body {
    margin-top: 75px;
  }
  header {
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 4px;
  }
  header .separator {
    margin-top: 0;
  }
  header .main-menu {
    display: none;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
  }
  header .main-menu::after {
    display: none;
  }
  header .header-right .dark-mode {
    margin: 0 20px;
  }
  header .header-bottom {
    padding-bottom: 48px;
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    top: 75px;
    bottom: 0;
    background-color: var(--light);
    overflow: auto;
    text-align: center;
    flex-wrap: wrap;
  }
  header .header-bottom .main-menu {
    display: block;
    margin: 16px 0 48px;
  }
  header .header-bottom .main-menu a {
    width: 100%;
    display: inline-block !important;
    margin: 0 20px;
    padding: 8px 0;
  }
  header .header-bottom .secondary-menu {
    max-width: 800px;
    margin: auto auto 56px;
  }
  header .header-bottom .secondary-menu .wp-menu .menu-item {
    width: 80%;
  }
  header .header-bottom .secondary-menu a {
    margin: 0;
    display: block;
  }
  header .header-bottom .socials {
    width: 100%;
    margin-left: 0;
    margin-bottom: auto;
  }
  body.menu-opened {
    overflow: hidden;
  }
  body.menu-opened header .header-bottom {
    display: flex;
  }
}
@media (max-width: 768px) {
  header .header-bottom .main-menu a {
    display: block !important;
  }
}
@media (max-width: 700px) {
  header .font-size {
    display: none;
  }
}
@media (max-width: 480px) {
  #menu-opener {
    margin-left: 16px;
  }
  header .header-right .dark-mode {
    margin: 0 10px !important;
  }
  header .header-bottom .main-menu {
    margin-bottom: 32px;
  }
  header .header-bottom .secondary-menu {
    margin-bottom: 40px;
  }
}
@media (max-width: 1112px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  .button.wide {
    padding-left: 80px;
    padding-right: 80px;
  }
  .section-header {
    margin: 72px 0;
  }
  .button-wrapper {
    margin-top: 72px;
  }
}
@media (max-width: 480px) {
  .section-header {
    margin: 56px 0;
  }
  .button-wrapper {
    margin-top: 64px;
  }
}
@media (max-width: 1112px) {
  .content-wrapper {
    padding-top: 88px;
  }
  .content-wrapper .content-sidebar {
    margin-right: 72px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    padding-top: 64px;
  }
}
@media (max-width: 480px) {
  header,
  .wrapper,
  .newsletter,
  .content-wrapper {
    padding-left: 7px;
    padding-right: 7px;
  }
  .newsletter::before {
    left: 24px;
    right: 24px;
  }
}
@media (max-width: 1112px) {
  .slider .slider-item .text-wrapper {
    padding: 40px 40px 64px;
  }
  .slider .slider-item .text-wrapper h1 {
    font-size: 40px;
    margin-bottom: 4px;
  }
  .slider .slider-item .text-wrapper .date {
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  .slider .slider-item {
    height: auto;
  }
  .slider .slider-item .image-wrapper {
    float: none;
    width: 100%;
  }
  .slider .slider-item .text-wrapper {
    float: none;
    width: 100%;
    text-align: center;
  }
  .slider .slider-item .text-wrapper .text-inner {
    width: 100%;
  }
  .slider .slider-item .text-wrapper h1 {
    font-size: 32px;
  }
  .slider .slider-item .text-wrapper .date {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .tns-controls {
    width: 100%;
    left: 0;
  }
}
@media (max-width: 480px) {
  .slider .slider-item .text-wrapper {
    padding-top: 32px;
    padding-right: 24px;
    padding-left: 24px;
  }
  .tns-controls button[data-controls="prev"] {
    left: 20px;
  }
  .tns-controls button[data-controls="next"] {
    right: 20px;
  }
}
@media (max-width: 1112px) {
  .partners a {
    padding: 0px !important;
  }
}
@media (max-width: 1112px) {
  .news .news-item .image-wrapper {
    margin-right: 48px;
  }
  .news .news-item:nth-child(even) .image-wrapper {
    margin-right: 0;
    margin-left: 48px;
  }
}
@media (max-width: 480px) {
  .news .news-item {
    flex-wrap: wrap;
  }
  .news .news-item .image-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 26px;
  }
  .news .news-item .image-wrapper img {
    display: block;
  }
  .news .news-item:nth-child(even) .image-wrapper {
    order: 0;
    margin-left: 0;
  }
  .news .news-item:not(:last-child) {
    margin-bottom: 64px;
  }
}
@media (max-width: 1112px) {
  .articles-list .articles-item {
    box-sizing: border-box;
    flex-wrap: wrap;
    flex-flow: row wrap;
  }
  .articles-list .articles-item .image-wrapper {
    width: 50%;
    aspect-ratio: 16/11;
  }
  .articles-list .articles-item .image-wrapper img {
    box-sizing: border-box;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    padding-right: 32px;
  }
  .articles-list .articles-item .title-wrapper {
    width: 50%;
  }
  .articles-list .articles-item .title-wrapper h2 {
    min-width: 50%;
  }
  .articles-list .articles-item p {
    width: 100%;
    margin: 25px 0 0 0;
  }
}
@media (max-width: 800px) {
  .articles-list .articles-item {
    flex-wrap: wrap;
  }
  .articles-list .articles-item .image-wrapper {
    width: 100%;
  }
  .articles-list .articles-item .image-wrapper img {
    padding: 0;
  }
  .articles-list .articles-item .title-wrapper,
  .articles-list .articles-item a {
    width: 100%;
  }
  .articles-list .articles-item .title-wrapper h2,
  .articles-list .articles-item a h2 {
    min-width: 100%;
    margin: 21px 0;
  }
  .articles-list .articles-item p {
    margin: 25px 0;
    padding: 0;
  }
  .articles-list .articles-item .read-more {
    width: auto;
  }
}
@media (max-width: 1279px) {
  .content-wrapper.events {
    display: block;
  }
  .content-wrapper.events .content-sidebar {
    width: 100%;
    margin-bottom: 88px;
    margin-right: 0;
  }
  .content-wrapper.events .content-center {
    width: 100%;
  }
  .events-menu a {
    display: inline-block;
  }
  .events-menu a:not(:last-child) {
    margin-right: 24px;
  }
  .events-menu:not(:last-child) {
    margin-bottom: 32px;
  }
  .events-menu .filters-breaker {
    display: inline;
  }
}
@media (max-width: 1112px) {
  .content-wrapper.events::before {
    display: none;
  }
}
@media (max-width: 900px) {
  .events-list .events-item {
    flex-wrap: wrap;
  }
  .events-list .events-item > :nth-child(1) {
    width: 25%;
  }
  .events-list .events-item > :nth-child(1) img {
    width: 100%;
  }
  .events-list .events-item > :nth-child(2) {
    width: 75%;
  }
  .events-list .events-item .date {
    width: 100%;
    margin: 16px 0;
  }
}
@media (max-width: 768px) {
  .content-wrapper.events .content-sidebar {
    margin-bottom: 64px;
  }
  .events-list .events-item > :nth-child(1) {
    width: auto;
    margin-bottom: 32px;
  }
  .events-list .events-item > :nth-child(2) {
    width: 100%;
  }
  .events-list .events-item h2 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 6px;
  }
}
@media (max-width: 1420px) {
  header .header-right .dark-mode {
    margin: 0 20px;
  }
}
@media (max-width: 1112px) {
  .tickets {
    padding-top: 64px;
  }
}
@media (max-width: 768px) {
  .tickets {
    padding-top: 48px;
  }
}
@media (max-width: 639px) {
  .two-columns > * {
    width: 100%;
  }
  .input-wrapper {
    margin-bottom: 24px;
  }
}
@media (max-width: 800px) {
  .content-wrapper {
    display: block;
  }
  .content-wrapper .content-sidebar {
    width: 100%;
    margin-right: 0;
    margin-bottom: 72px;
  }
  .content-wrapper .content-center {
    width: 100%;
  }
}
@media (max-width: 1112px) {
  .newsletter {
    margin: 104px auto;
    padding-top: 64px;
  }
  .newsletter h1 {
    margin-right: 72px;
  }
  .newsletter h3 {
    margin-top: 24px;
    font-size: 24px;
  }
  footer {
    padding: 24px 40px;
  }
  footer a {
    padding: 8px 0;
    margin: 0 24px;
  }
}
@media (max-width: 768px) {
  .newsletter {
    display: block;
    text-align: center;
    margin: 72px auto;
    padding-top: 40px;
  }
  .newsletter h1 {
    margin-right: 0;
    width: 100%;
  }
  .newsletter .form-wrapper {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .newsletter .form-wrapper form {
    display: block;
  }
  .newsletter .form-wrapper form input {
    margin-right: 0;
    width: 100%;
    margin-bottom: 24px;
    text-align: center;
    padding-right: 0;
  }
}
@media (max-width: 360px) {
  header .logo img {
    width: 100px;
  }
}
.bip-flag {
  height: 30px;
}
.bip-flag img {
  height: 30px;
  margin-right: 15px;
}
@media screen and (max-width: 420px) {
  .bip-flag {
    height: 20px;
  }
  .bip-flag img {
    height: 20px !important;
    margin-right: 10px;
  }
  .eu-flag img,
  .eu-flag {
    height: 20px !important;
  }
}