html {
  --color-main: #7B341C;
  --color-mainHover: #652b18;
  --color-secondary: #353C6B;
  --color-tertiary: #718E9E;
  --color-lightblue: #8BB5CC;
  --color-lightblue2: #70BCE6;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-blackAlmost: #2D2729;
  --color-error: red;
  --color-gray: #676767;
  --color-gray95: #959595;
  --color-grayF4: #F4F2F0;
  --color-grayBB: #BBBBBB;
  --color-grayFB: #FBFAF9;
  --color-line: #E2E3E4;
  --color-graymild: #F0F0F0;
  --notification_bar: 65px;
  --header-height: 274px;
  --scrollbar-compensate: 0;
  padding-right: var(--scrollbar-compensate, 0px);
}
html.scrolled:not(.header_menu_open) {
  --header-height: 134px;
}
@media (max-width: 1200px) {
  html.scrolled:not(.header_menu_open) {
    --header-height: 100px;
  }
}
@media (max-width: 1200px) {
  html {
    --header-height: 190px;
  }
}
:root {
  --cc-text: var(--color-blackAlmost);
  --cc-btn-primary-bg: var(--color-main);
  --cc-btn-primary-hover-bg: var(--color-mainHover);
  --swiper-theme-color: var(--color-main) !important;
}
header.header_wrapper {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  transition: height, background ease-in-out 0.25s;
}
@media (max-width: 768px) {
  header.header_wrapper {
    transition: height, background ease-in-out 0.3s;
  }
}
header.header_wrapper .container {
  display: flex;
  justify-content: space-between;
  gap: 22px;
}
@media (max-width: 1200px) {
  header.header_wrapper .container {
    height: 100%;
  }
}
header.header_wrapper button {
  border-radius: 5px;
  outline: 2px solid transparent;
}
header.header_wrapper button:focus-visible {
  outline: 2px solid var(--color-black);
}
header.header_wrapper .header_navigation > div > ul {
  display: flex;
  gap: 4px;
}
header.header_wrapper .header_navigation > div > ul > li {
  position: relative;
}
header.header_wrapper .header_navigation > div > ul > li > a {
  white-space: nowrap;
}
header.header_wrapper .header_navigation > div > ul > li a {
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.25em;
  padding: 19px 30px 18px 30px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: background ease-in-out 0.25s;
}
@media (max-width: 1400px) {
  header.header_wrapper .header_navigation > div > ul > li a {
    padding: 19px 18px 18px 18px;
  }
}
header.header_wrapper .header_navigation > div > ul > li:hover > a,
header.header_wrapper .header_navigation > div > ul > li.submenu_active > a {
  background: var(--color-white);
  border-radius: 5px;
  border: 1px solid #F0EBE6;
  border-width: 1px;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children:hover > a,
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children.submenu_active > a {
  border-radius: 5px 5px 0 0;
  border-width: 1px 1px 0 1px;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > a {
  padding-right: 40px;
  position: relative;
  z-index: 15;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children:not(.submenu_active, :hover) .sub-menu {
  visibility: hidden;
  opacity: 0;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu {
  width: 16.25rem;
  position: absolute;
  bottom: 2px;
  left: 0;
  transform: translateY(100%);
  margin: 0;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: ease-in-out 0.25s;
  background: var(--color-white);
  box-shadow: 0 11px 15px #00000014;
  border: 1px solid #F0EBE6;
  border-radius: 0 5px 5px 5px;
  opacity: 1;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu a {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.25em;
  padding: 10px 30px;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu a:hover,
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu a:focus-visible {
  background: var(--color-grayFB);
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li {
  position: initial;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li > .js_child_menu_btn {
  height: 47px;
  top: initial;
  transform: translateY(-100%);
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li:not(.submenu_active, :hover) .sub-menu {
  visibility: hidden;
  opacity: 0;
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li.submenu_active > .js_child_menu_btn,
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li:hover > .js_child_menu_btn {
  transform: translateY(-100%) rotate(-90deg);
}
header.header_wrapper .header_navigation > div > ul > li.menu-item-has-children > .sub-menu > li > .sub-menu {
  width: 16.25rem;
  height: auto;
  visibility: visible;
  opacity: 1;
  position: absolute;
  top: initial;
  right: 0;
  margin: 0;
  padding: 12px 0;
  transform: translateX(100%) translateY(-52px);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: ease-in-out 0.25s;
  background: var(--color-white);
  box-shadow: 0 11px 15px #00000014;
  border: 1px solid #F0EBE6;
}
header.header_wrapper .header_navigation > div > ul > li .js_child_menu_btn {
  border: initial;
  background: initial;
  width: 38px;
  height: 100%;
  background-image: url('../../images/icons/chevron_down.svg');
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: top 54% center;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: ease-in-out 0.25s;
  position: absolute;
  z-index: 20;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
header.header_wrapper .header_logo,
header.header_wrapper .header_logo img,
header.header_wrapper .header_logo svg {
  display: block;
  width: 252px;
  height: 193px;
  margin: auto 0 0 0;
  transition: ease-in-out 0.1s;
}
@media (max-width: 1200px) {
  header.header_wrapper .header_logo,
  header.header_wrapper .header_logo img,
  header.header_wrapper .header_logo svg {
    height: 124px;
    width: 162px;
    transition: ease-in-out 0.4s;
  }
}
header.header_wrapper .header_middle {
  display: flex;
}
header.header_wrapper .language_switcher {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
header.header_wrapper .language_switcher .language_btn {
  background: initial;
  border: initial;
  padding: 5px 20px 5px 40px;
  margin: 0;
  cursor: pointer;
  position: relative;
  background-repeat: no-repeat;
  background-image: url('../../images/icons/globe.svg');
  background-size: 20px 20px;
  background-position: left 5px center;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2em;
}
header.header_wrapper .language_switcher .language_btn:not([aria-expanded="true"]) + .language_popup {
  display: none;
}
header.header_wrapper .language_switcher .language_btn::before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  background-image: url('../../images/icons/chevron_down.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: ease-in-out 0.25s;
}
header.header_wrapper .language_switcher .language_btn[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(180deg);
}
header.header_wrapper .language_switcher .language_popup {
  position: absolute;
  z-index: 50;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  background: var(--color-white);
  padding: 4px 6px;
  border-radius: 5px;
  width: 124px;
  box-shadow: 0 3px 6px #00000029;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0;
}
header.header_wrapper .language_switcher .language_popup .wpml-ls-legacy-list-vertical {
  display: block;
  width: 100%;
  border: initial;
}
header.header_wrapper .language_switcher .language_popup a {
  width: 100%;
  padding: 8px 10px 8px 20px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25em;
  color: var(--color-blackAlmost);
  border: initial;
}
header.header_wrapper .language_switcher_simple {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
header.header_wrapper .language_switcher_simple .language_btn {
  background: initial;
  border: initial;
  padding: 8px 20px 3px 40px;
  margin: 0;
  cursor: pointer;
  position: relative;
  background-repeat: no-repeat;
  background-image: url('../../images/icons/globe.svg');
  background-size: 20px 20px;
  background-position: left 5px center;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2em;
}
@media (max-width: 1200px) {
  header.header_wrapper .language_switcher_simple .language_btn {
    padding: 5px 14px 5px 34px;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 500;
  }
}
@media (max-width: 1200px) {
  header.header_wrapper .language_switcher_simple {
    height: auto;
    position: absolute;
    top: 34px;
    left: 30px;
  }
}
@media (max-width: 768px) {
  header.header_wrapper .language_switcher_simple {
    left: 20px;
  }
}
header.header_wrapper .search_wrap {
  position: relative;
}
header.header_wrapper .search_wrap .search_btn {
  display: block;
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 12;
  background: initial;
  border: initial;
  border-radius: 5px;
  padding: 5px;
  margin: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: center;
  background-image: url('../../images/icons/search.svg');
  transition: ease-in-out 0.25s;
}
header.header_wrapper .search_wrap .search_btn:not([aria-expanded="true"]) + .search_popup {
  display: none;
}
header.header_wrapper .search_wrap .search_btn[aria-expanded="true"] {
  background-color: var(--color-main);
  background-image: url('../../images/icons/search_white.svg');
  border-radius: 0 5px 5px 0;
}
header.header_wrapper .search_wrap .search_popup {
  width: 456px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 50;
  top: 0;
  right: 64px;
  background: var(--color-white);
  padding: 2px;
  border-radius: 5px 0 0 5px;
  gap: 0;
  border: 1px solid var(--color-line);
}
header.header_wrapper .search_wrap .search_popup input {
  display: block;
  padding: 8px 8px 8px 23px;
  width: 100%;
  height: 100%;
  border: initial;
  border-radius: inherit;
  background: initial;
  font-weight: 400;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-blackAlmost);
}
header.header_wrapper #easy_read_btn {
  height: 24px;
  display: flex;
  align-items: center;
}
header.header_wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: var(--header-height);
}
header.header_wrapper .header_upper,
header.header_wrapper .header_lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: ease-in-out 0.25s;
}
header.header_wrapper .header_upper .header_left,
header.header_wrapper .header_lower .header_left,
header.header_wrapper .header_upper .header_right,
header.header_wrapper .header_lower .header_right {
  display: flex;
}
header.header_wrapper .header_upper {
  height: 100px;
  padding: 0;
  display: flex;
}
header.header_wrapper .header_upper .header_left,
header.header_wrapper .header_upper .header_right {
  width: 520px;
  height: 100%;
  padding: 46px 0 28px 0;
  display: flex;
  flex-direction: row;
  gap: 24px;
  border-bottom: 1px solid var(--color-grayBB);
  transition: ease-in-out 0.25s;
  align-items: center;
}
@media (max-width: 1400px) {
  header.header_wrapper .header_upper .header_left,
  header.header_wrapper .header_upper .header_right {
    width: 100%;
    max-width: 360px;
    border: initial;
    height: auto;
  }
}
@media (min-width: 1201px) {
  header.header_wrapper .header_upper .header_left {
    padding-left: 20px;
  }
}
header.header_wrapper .header_upper .header_right {
  justify-content: end;
}
@media (min-width: 1201px) {
  header.header_wrapper .header_upper .header_right {
    padding-right: 20px;
  }
}
header.header_wrapper .header_lower .header_left,
header.header_wrapper .header_lower .header_right {
  flex-direction: row;
  padding: 0;
  width: 430px;
  height: 146px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-grayBB);
  transition: ease-in-out 0.25s;
}
@media (max-width: 1400px) {
  header.header_wrapper .header_lower .header_left,
  header.header_wrapper .header_lower .header_right {
    width: 100%;
    border: initial;
  }
}
header.header_wrapper .header_lower .header_left {
  justify-content: start;
}
header.header_wrapper .header_lower .header_middle {
  margin-top: -60px;
  position: relative;
  top: 34px;
}
header.header_wrapper .header_lower .header_right {
  justify-content: end;
}
html .a_switch_wrap {
  position: relative;
}
html .a_switch_wrap .a_switch {
  display: block;
  width: 24px;
  height: 24px;
  background: initial;
  border: initial;
  padding: 5px;
  margin: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
html .a_switch_wrap .a_switch:not([aria-expanded="true"]) + .a_switch_popup {
  display: none;
}
html .a_switch_wrap .a_switch_popup {
  position: absolute;
  z-index: 50;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  background: var(--color-white);
  padding: 4px 6px;
  border-radius: 5px;
  width: 12.5rem;
  box-shadow: 0 11px 15px #00000014;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 22px;
}
html .a_switch_wrap .a_switch_popup .a_switch_popup_title {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-blackAlmost);
  margin: 0 0 10px 0;
}
html .a_switch_wrap .a_switch_popup#contrast_change_popup {
  width: 16.25rem;
}
html .a_switch_wrap .acc_row {
  display: flex;
  gap: 5px;
  margin: 0;
}
@media (max-width: 1000px) {
  html .a_switch_wrap .acc_row {
    flex-wrap: wrap;
  }
}
html .a_switch_wrap .acc_row .acc_box {
  width: 3.125rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 1px;
  border: initial;
  border-radius: 5px;
  background: var(--color-white);
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-blackAlmost);
  transition: color, background ease-in-out 0.25s;
  cursor: pointer;
}
html .a_switch_wrap .acc_row .acc_box:not(.active,[data-contrast]):focus {
  background: var(--color-main);
  color: var(--color-white);
  opacity: 0.8;
}
html .a_switch_wrap .acc_row .acc_box[data-contrast]:focus {
  outline: 2px solid var(--color-black);
  border-color: var(--color-black);
}
html .a_switch_wrap .acc_row .acc_box[data-contrast] {
  border: 1px solid var(--color-black);
}
html .a_switch_wrap .acc_row .active:not([data-contrast]) {
  background: var(--color-main);
  color: var(--color-white);
}
html .a_switch_wrap .acc_box[data-contrast="default"] {
  background: #ffffff;
}
html .a_switch_wrap .acc_box[data-contrast="white-black"] {
  background: #000000;
  border-color: #ffffff;
}
html .a_switch_wrap .acc_box[data-contrast="white-black"] img,
html .a_switch_wrap .acc_box[data-contrast="white-black"] svg {
  fill: #ffffff;
  color: #ffffff;
}
html .a_switch_wrap .acc_box[data-contrast="yellow-black"] {
  background: #f7ef81;
  border-color: #f7ef81;
}
html .a_switch_wrap .acc_box[data-contrast="yellow-black"] img,
html .a_switch_wrap .acc_box[data-contrast="yellow-black"] svg {
  fill: #000000;
  color: #000000;
}
html .a_switch_wrap .acc_box[data-contrast="black-yellow"] {
  background: #000000;
  border-color: #ffffff;
}
html .a_switch_wrap .acc_box[data-contrast="black-yellow"] img,
html .a_switch_wrap .acc_box[data-contrast="black-yellow"] svg {
  fill: #f7ef81;
  color: #f7ef81;
}
html #text_size_change {
  background-image: url('../../images/icons/text_size.svg');
}
html #contrast_change {
  background-image: url('../../images/icons/contrast.svg');
  background-size: 20px 20px;
}
html.scrolled:not(.header_menu_open) header.header_wrapper {
  top: 0;
  position: fixed;
  background: var(--color-white);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}
html.scrolled:not(.header_menu_open) header.header_wrapper .header_left,
html.scrolled:not(.header_menu_open) header.header_wrapper .header_right {
  padding: 0;
}
html.scrolled:not(.header_menu_open) header.header_wrapper .header_left .header_upper,
html.scrolled:not(.header_menu_open) header.header_wrapper .header_right .header_upper {
  height: 66px;
  padding: 4px 0 0 0;
  align-items: center;
}
@media (min-width: 1201px) {
  html.scrolled:not(.header_menu_open) header.header_wrapper .header_left .header_upper,
  html.scrolled:not(.header_menu_open) header.header_wrapper .header_right .header_upper {
    padding-right: 20px;
  }
}
html.scrolled:not(.header_menu_open) header.header_wrapper .header_left .header_lower,
html.scrolled:not(.header_menu_open) header.header_wrapper .header_right .header_lower {
  height: 66px;
  border-color: transparent;
}
@media (max-width: 1200px) {
  html.scrolled:not(.header_menu_open) header.header_wrapper .header_left .header_lower,
  html.scrolled:not(.header_menu_open) header.header_wrapper .header_right .header_lower {
    height: 100%;
  }
}
html.scrolled:not(.header_menu_open) header.header_wrapper .header_logo,
html.scrolled:not(.header_menu_open) header.header_wrapper .header_logo img,
html.scrolled:not(.header_menu_open) header.header_wrapper .header_logo svg {
  width: 135px;
  height: 103px;
  margin: auto 0;
}
@media (max-width: 1200px) {
  html.scrolled:not(.header_menu_open) header.header_wrapper .header_logo,
  html.scrolled:not(.header_menu_open) header.header_wrapper .header_logo img,
  html.scrolled:not(.header_menu_open) header.header_wrapper .header_logo svg {
    height: 48px;
    width: 62px;
  }
}
html.scrolled:not(.header_menu_open) header.header_wrapper .header_upper {
  height: 66px;
}
html.scrolled:not(.header_menu_open) header.header_wrapper .header_upper .header_left,
html.scrolled:not(.header_menu_open) header.header_wrapper .header_upper .header_right {
  padding: 2px 20px 0 20px;
}
html.scrolled:not(.header_menu_open) header.header_wrapper .header_lower .header_left,
html.scrolled:not(.header_menu_open) header.header_wrapper .header_lower .header_right {
  height: 66px;
  border-color: transparent;
}
html.scrolled:not(.header_menu_open) header.header_wrapper .header_lower .header_middle {
  top: -20px;
  margin-top: -30px;
}
@media (max-width: 1200px) {
  html.scrolled:not(.header_menu_open) header.header_wrapper .header_lower .header_middle {
    top: -1px;
  }
}
.page_notification_bar {
  width: 100%;
  height: var(--notification_bar);
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2px 24px;
  z-index: 100;
  gap: 44px;
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  .page_notification_bar {
    gap: 18px;
  }
}
.page_notification_bar p {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-white);
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .page_notification_bar p {
    text-align: left;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.1em;
  }
}
.page_notification_bar p a {
  font-size: inherit;
  font-weight: 500;
  color: var(--color-lightblue);
}
.page_notification_bar p a:hover {
  color: var(--color-lightblue);
}
.page_notification_bar p a:focus-visible {
  outline: 2px solid var(--color-white);
  color: var(--color-lightblue);
}
.page_notification_bar.closed {
  height: 0;
  overflow: hidden;
}
html:not(.header_menu_open, .scrolled) .page_notification_bar + header.header_wrapper {
  top: var(--notification_bar);
}
html.mobile_menu_scrolled .header_logo,
html.mobile_menu_scrolled .language_switcher_simple {
  opacity: 0;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.page_ticket_pin {
  position: fixed;
  z-index: 40;
  top: 320px;
  right: 0;
  background: url('../../images/ticket_bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px 18px;
  margin: 0;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2em;
  color: var(--color-white);
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media (min-width: 1401px) {
  .page_ticket_pin {
    width: 58px;
  }
}
@media (max-width: 768px) {
  .page_ticket_pin {
    font-size: 16px;
    font-size: 1rem;
    top: initial;
    right: initial;
    bottom: 28px;
    left: 0;
    padding: 16px 12px;
    border-radius: 0 3px 3px 0;
  }
  .page_ticket_pin.sibling_nav_used {
    bottom: 90px;
  }
}
.page_ticket_pin span {
  font: inherit;
  background: var(--color-main);
  border-radius: 3px;
}
.page_ticket_pin svg {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .page_ticket_pin svg {
    width: 0.7rem;
    height: 0.7rem;
  }
}
@media (max-width: 1400px) and (orientation: landscape) {
  .page_ticket_pin {
    display: none !important;
  }
}
label.hb_label {
  display: flex;
  flex-direction: column;
  width: 32px;
  height: 32px;
  cursor: pointer;
  margin-left: auto;
  transition: ease-in-out 0.5s;
  background: initial;
  border-radius: 5px;
  padding: 5px 3px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  label.hb_label {
    position: absolute;
    top: 34px;
    right: 30px;
  }
}
@media (max-width: 768px) {
  label.hb_label {
    right: 20px;
  }
}
label.hb_label span {
  background: var(--color-blackAlmost);
  border-radius: 15px;
  height: 2px;
  margin: 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
label.hb_label span:nth-of-type(1) {
  width: 100%;
}
label.hb_label span:nth-of-type(2) {
  width: 100%;
}
label.hb_label span:nth-of-type(3) {
  width: 100%;
}
label.hb_label input[type="checkbox"] {
  display: none;
}
label.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  width: 50%;
  transform-origin: bottom;
  transform: rotatez(45deg) translate(0, 7px);
}
label.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  width: 100%;
  transform-origin: top;
  transform: rotatez(-45deg);
}
label.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(4px, -6px) rotatez(45deg);
}
.header_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: transparent linear-gradient(180deg, #F4F2F0 0%, #FFFFFF 150%) 0% 0% no-repeat padding-box;
  z-index: 199;
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.header_menu .header_menu_content {
  width: 100%;
  height: 100%;
  padding: var(--header-height) 0 0 0;
  display: flex;
  flex-direction: column;
}
.header_menu .header_menu_content .mobile_header_navigation {
  padding: 16px 30px 24px 30px;
}
.header_menu .mobile_header_navigation > .combined_menu > ul a {
  display: block;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2em;
  padding: 8px 0;
  margin: 0;
}
.header_menu .mobile_header_navigation > .combined_menu > ul > li {
  padding: 7px 0;
}
.header_menu .mobile_header_navigation > .combined_menu > ul > li:not(:first-child) {
  border-top: 1px solid var(--color-line);
}
.header_menu .mobile_header_navigation > .combined_menu > ul > li > a {
  font-weight: 500;
}
.header_menu .mobile_header_navigation > .combined_menu > ul li {
  position: relative;
}
.header_menu .mobile_header_navigation > .combined_menu > ul .js_mobile_child_menu_btn {
  border: initial;
  background: initial;
  width: 48px;
  height: 3.375rem;
  background-image: url('../../images/icons/chevron_down.svg');
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: top 54% center;
  transition: ease-in-out 0.25s;
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  transform: initial;
}
.header_menu .mobile_header_navigation > .combined_menu > ul .js_mobile_child_menu_btn[aria-expanded="true"] {
  transform: rotate(180deg);
}
.header_menu .mobile_header_navigation > .combined_menu > ul .js_mobile_child_menu_btn + ul .js_mobile_child_menu_btn {
  height: 2.5rem;
}
.header_menu .mobile_header_navigation > .combined_menu > ul .js_mobile_child_menu_btn + ul {
  display: none;
}
.header_menu .mobile_header_lower {
  flex-shrink: 0;
  width: 100%;
  height: 5.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  border-top: 1px solid var(--color-grayBB);
  margin: auto 0 0 0;
}
.header_menu .mobile_header_lower button {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position: center;
}
.header_menu .mobile_header_lower #mobile_contrast_change {
  background-size: 22px 22px;
  background-image: url('../../images/icons/contrast.svg');
}
.header_menu .mobile_header_lower #mobile_text_size_change {
  background-size: 27px 27px;
  background-image: url('../../images/icons/text_size.svg');
}
.header_menu .mobile_header_lower #mobile_search {
  background-size: 22px 22px;
  background-image: url('../../images/icons/search.svg');
}
.slide-in-right {
  -webkit-animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-right {
  0% {
    right: -1500px;
    opacity: 0;
  }
  100% {
    right: 0px;
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    right: -1500px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
.slide-out-right {
  -webkit-animation: slide-out-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-out-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-out-right {
  0% {
    right: 0px;
    opacity: 1;
  }
  100% {
    right: -1500px;
    opacity: 0;
  }
}
@keyframes slide-out-right {
  0% {
    right: 0;
    opacity: 1;
  }
  100% {
    right: -1500px;
    opacity: 0;
  }
}
@media (min-width: calc(1200px + 1px)) {
  #mobile_menu_popup {
    display: none;
  }
  label.hb_label {
    display: none;
  }
}
@media (max-width: 1200px) {
  .header_wrapper nav.header_navigation,
  .header_wrapper form.search_wrap,
  .header_wrapper .header_upper > *:not([class*="header_left"]),
  .header_wrapper .btn {
    display: none !important;
  }
}
#mobile_menu_popup {
  opacity: 0;
}
#mobile_menu_popup.hidden {
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
#secondary,
#enkurs {
  scroll-margin-top: 168px;
}
.mobile_popup {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mobile_popup[aria-hidden="true"] {
  display: none;
}
.mobile_popup div[data-a11y-dialog-hide] {
  width: 100%;
  height: 100%;
  background: var(--color-black);
  opacity: 0.45;
}
.mobile_popup .mobile_popup_content {
  flex-shrink: 0;
  padding: 25px;
  background: var(--color-white);
}
.mobile_popup .mobile_popup_content .h1 {
  margin: 0 auto 20px auto;
  text-align: center;
  font-family: "eb-garamond", serif;
}
.mobile_popup .mobile_popup_close {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-gray);
  margin: 14px auto 0 auto;
  width: 100%;
}
.mobile_popup form[role="search"] {
  display: flex;
  flex-direction: column;
}
.mobile_popup form[role="search"] .search_row {
  display: flex;
  align-items: center;
  gap: 0;
  height: 55px;
}
.mobile_popup form[role="search"] .search_row input {
  width: 100%;
  border: 1px solid var(--color-line);
  padding: 16px 24px;
  margin: 0;
  border-radius: 5px 0 0 5px;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2em;
}
.mobile_popup form[role="search"] .search_row button {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: var(--color-main);
  border-radius: 0 5px 5px 0;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: center;
  background-image: url('../../images/icons/search_white.svg');
}
.mobile_popup .a_switch_wrap .acc_row {
  justify-content: center;
}
html {
  font-size: 100%;
}
html body {
  margin: 0;
  font-family: 'TT Commons', sans-serif;
  font-style: normal;
}
html.font_125 {
  font-size: 125%;
}
@media (max-width: 768px) {
  html.font_125 {
    font-size: 112.5%;
  }
}
html.font_150 {
  font-size: 150%;
}
@media (max-width: 768px) {
  html.font_150 {
    font-size: 125%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
* {
  box-sizing: border-box;
}
a {
  color: inherit;
  outline: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
}
a:focus-visible {
  outline-color: var(--color-black);
}
button {
  display: block;
  border: initial;
  border-radius: 2px;
  background: initial;
  outline: 2px solid transparent;
  padding: 0;
  margin: 0;
  font-family: inherit;
  color: var(--color-blackAlmost);
  line-height: 1.25em;
  text-decoration: initial;
  text-transform: initial;
}
button:not([disabled]) {
  cursor: pointer;
}
button:focus-visible {
  outline-color: var(--color-black);
}
input {
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  background: initial;
  border: 1px solid var(--color-line);
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"]::-moz-focus-inner {
  border: 0;
}
input[type="number"]::-ms-clear,
input[type="number"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type="number"]:focus::-webkit-outer-spin-button,
input[type="number"]:focus::-webkit-inner-spin-button,
input[type="number"]:focus::-moz-focus-inner,
input[type="number"]:focus::-ms-clear,
input[type="number"]:focus::-ms-reveal {
  -webkit-appearance: none;
  appearance: none;
}
.container {
  max-width: 1200px;
  width: calc(100% - 60px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 40px);
  }
}
.container.container_sm {
  max-width: 895px;
}
.container.container_xl {
  max-width: 1720px;
}
p {
  margin: 0;
}
img {
  max-width: 100%;
  border-radius: 5px;
}
picture {
  border-radius: inherit;
}
h1,
.h1 {
  font-weight: 700;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.15em;
  color: var(--color-blackAlmost);
  margin: 0 0 0.8em 0;
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
h2,
.h2 {
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.15em;
  color: var(--color-blackAlmost);
  margin: 0.8em 0 0.5em 0;
}
h2:first-child,
.h2:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  h2,
  .h2 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
h3,
.h3 {
  font-weight: 700;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.2em;
  color: var(--color-blackAlmost);
  margin: 0.8em 0 0.5em 0;
}
h3:first-child,
.h3:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  h3,
  .h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
h4,
.h4 {
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.25em;
  color: var(--color-blackAlmost);
  margin: 0.8em 0 0.5em 0;
}
h4:first-child,
.h4:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  h4,
  .h4 {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
h5,
.h5 {
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.25em;
  color: var(--color-blackAlmost);
  margin: 0.8em 0 0.5em 0;
}
h5:first-child,
.h5:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  h5,
  .h5 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
h6,
.h6 {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.25em;
  color: var(--color-blackAlmost);
  margin: 0.8em 0 0.5em 0;
}
h6:first-child,
.h6:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  h6,
  .h6 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
p,
.paragraph {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4em;
  color: var(--color-blackAlmost);
  margin: 0 0 0.6em 0;
}
@media (max-width: 768px) {
  p,
  .paragraph {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 320px) {
  p,
  .paragraph {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
p a,
.paragraph a {
  color: var(--color-main);
  text-decoration: underline;
}
p a:hover,
.paragraph a:hover,
p a:focus-visible,
.paragraph a:focus-visible {
  color: var(--color-blackAlmost);
  text-decoration: initial;
}
p a[href*="mailto"],
.paragraph a[href*="mailto"] {
  color: var(--color-blackAlmost);
}
@media (max-width: 768px) {
  p a,
  .paragraph a {
    word-break: break-word;
  }
}
header p,
footer p {
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
html.scroll-locked {
  overflow: hidden;
}
html.scroll-locked body {
  overflow: hidden;
}
.events-none {
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (min-width: 1201px) {
  .hide_above_1200 {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .hide_below_1200 {
    display: none !important;
  }
}
@media (min-width: 1001px) {
  .hide_above_1000 {
    display: none !important;
  }
}
@media (max-width: 1000px) {
  .hide_below_1000 {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .hide_above_768 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hide_below_768 {
    display: none !important;
  }
}
.otgs-development-site-front-end {
  display: none !important;
}
button {
  outline: 2px solid transparent;
}
button::focus-visible {
  outline: 2px solid var(--color-black);
}
.btn {
  position: relative;
  transition: ease-in-out 0.25s;
  font-weight: 400;
  border-radius: 3px;
  cursor: pointer;
  outline: 2px solid transparent;
  border: none;
}
.btn_style_1 {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-white);
  padding: 12px 26px;
  background: var(--color-main);
  border-radius: 5px;
}
.btn_style_underline {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3em;
  color: var(--color-blackAlmost);
  border-radius: 0;
  text-decoration: initial;
  padding: 0 0 8px 0;
  border-bottom: 1px solid var(--color-line);
}
@media (max-width: 768px) {
  .btn_style_underline {
    font-size: 16px;
    font-size: 1rem;
    padding: 0 0 6px 0;
  }
}
aside.side_tools {
  position: absolute;
  top: 36px;
  right: 0;
  border: 1px solid var(--color-line);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (max-width: 1850px) {
  aside.side_tools {
    right: 40px;
  }
}
@media (max-width: 1200px) {
  aside.side_tools {
    position: relative;
    right: initial;
    top: initial;
    flex-direction: row;
    margin: 24px 0 0 auto;
  }
}
aside.side_tools button {
  width: 46px;
  height: 54px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center;
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  aside.side_tools button {
    width: 40px;
    height: 48px;
    background-size: 16px 16px;
  }
}
aside.side_tools button:not(:first-child) {
  border-top: 1px solid var(--color-line);
}
@media (max-width: 1200px) {
  aside.side_tools button:not(:first-child) {
    border-top: initial;
    border-left: 1px solid var(--color-line);
  }
}
aside.side_tools button:hover {
  background-color: var(--color-main);
}
aside.side_tools button.active {
  background-color: var(--color-main);
  background-image: url('../../images/icons/share_white.svg');
}
aside.side_tools .btn_tool_printer {
  background-image: url('../../images/icons/printer.svg');
}
aside.side_tools .btn_tool_printer:hover {
  background-image: url('../../images/icons/printer_white.svg');
}
aside.side_tools .btn_tool_download {
  background-image: url('../../images/icons/file_download.svg');
}
aside.side_tools .btn_tool_download:hover {
  background-image: url('../../images/icons/file_download_white.svg');
}
aside.side_tools .btn_tool_share {
  background-image: url('../../images/icons/share.svg');
}
aside.side_tools .btn_tool_share:hover {
  background-image: url('../../images/icons/share_white.svg');
}
@media (max-width: 1000px) {
  aside.side_tools .btn_tool_printer {
    display: none !important;
  }
  aside.side_tools .btn_tool_download {
    border: initial !important;
  }
}
aside.side_tools .btn_tool_share.active ~ .share_popup {
  width: 46px;
  display: block !important;
  position: absolute;
  top: 42px;
  right: 18px;
  transform: translateX(-100%);
  background: var(--color-white);
  box-shadow: 0 10px 16px #0000000F;
  border-radius: 5px;
  padding: 8px 0;
}
@media (max-width: 1200px) {
  aside.side_tools .btn_tool_share.active ~ .share_popup {
    width: auto;
    height: auto;
    top: 50%;
    right: initial;
    left: -10px;
    transform: translateY(-50%) translateX(-100%);
  }
}
aside.side_tools .btn_tool_share.active ~ .share_popup .share_popup_socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
@media (max-width: 1200px) {
  aside.side_tools .btn_tool_share.active ~ .share_popup .share_popup_socials {
    flex-direction: row;
  }
}
aside.side_tools .btn_tool_share.active ~ .share_popup .share_popup_socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  aside.side_tools .btn_tool_share.active ~ .share_popup .share_popup_socials a {
    width: 36px;
    height: 36px;
  }
}
section.full_gallery + .container aside.side_tools {
  top: 0;
}
html.dialog_open {
  overflow: hidden;
}
@media (max-width: 1200px) {
  body.single-events .side_tools {
    margin-top: 0;
    margin-bottom: 28px;
  }
}
body.admin-bar header.header_wrapper {
  top: 32px;
}
html.scrolled:not(.header_menu_open) body.admin-bar header.header_wrapper {
  top: 32px;
}
main {
  position: relative;
  z-index: 10;
  min-height: 100vh;
}
main::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: transparent linear-gradient(180deg, #F4F2F0 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
}
main.main_header_padding {
  padding: 340px 0 0 0;
}
@media (max-width: 1200px) {
  main.main_header_padding {
    padding: 240px 0 0 0;
  }
}
main.main_page,
main.search_page {
  padding: 355px 0 0 0;
}
@media (max-width: 1200px) {
  main.main_page,
  main.search_page {
    padding: 240px 0 0 0;
  }
}
main.standard_page {
  padding-bottom: 80px;
}
main.maps_used {
  padding-bottom: 0 !important;
}
main.single_articles {
  padding-bottom: 80px;
}
main.main_page > .container {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  grid-template-rows: 1fr;
}
@media (max-width: 1400px) {
  main.main_page > .container {
    grid-template-columns: 300px 1fr;
  }
  main.main_page > .container div.container.container_sm {
    padding-right: 70px;
  }
}
@media (max-width: 1200px) {
  main.main_page > .container {
    grid-template-columns: 1fr;
  }
  main.main_page > .container div.container.container_sm {
    padding-right: 0;
    width: 100%;
  }
}
aside .sidebar_nav {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  padding-bottom: 42px;
}
@media (max-width: 1200px) {
  aside .sidebar_nav {
    display: none;
  }
}
aside .sidebar_nav a:hover {
  text-decoration: underline;
}
aside .sidebar_nav li {
  position: relative;
  width: 100%;
  padding: 0 28px 0 0;
}
aside .sidebar_nav li a {
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2em;
  padding: 5px 2px;
  color: var(--color-blackAlmost);
}
aside .sidebar_nav li.active > a,
aside .sidebar_nav li a.active {
  color: var(--color-main);
}
aside .sidebar_nav li.active > a {
  font-weight: 600;
}
aside .sidebar_nav li:not(.submenu_active, :hover) .submenu:not(.active) {
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
}
aside .sidebar_nav li:hover .aside_child_menu_btn,
aside .sidebar_nav li.submenu_active .aside_child_menu_btn {
  transform: rotate(180deg);
}
aside .sidebar_nav .aside_child_menu_btn {
  border: initial;
  background: initial;
  width: 38px;
  height: 34px;
  background-image: url('../../images/icons/chevron_down.svg');
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: top 48% center;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: ease-in-out 0.25s;
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
}
aside ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 8px;
}
aside .submenu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0 14px 24px;
  margin: 0 0 16px 0;
  border-bottom: 1px solid var(--color-line);
}
section {
  position: relative;
  z-index: 5;
}
section.museum_nav {
  margin: 0 0 68px 0;
}
@media (max-width: 768px) {
  section.museum_nav {
    margin: 0 0 32px 0;
  }
}
section.museum_nav .block_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
}
@media (max-width: 1200px) {
  section.museum_nav .block_content {
    gap: 36px 12px;
  }
}
@media (max-width: 768px) {
  section.museum_nav .block_content {
    gap: 2px;
  }
}
section.museum_nav .block_content a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 135px;
  height: auto;
  text-align: center;
  position: relative;
  padding: 158px 0 0 0;
}
@media (max-width: 1200px) {
  section.museum_nav .block_content a {
    width: 100%;
  }
}
@media (max-width: 768px) {
  section.museum_nav .block_content a {
    padding: 100px 0 0 0;
  }
}
@media (max-width: 500px) {
  section.museum_nav .block_content a {
    width: 100%;
  }
}
@media (max-width: 400px) {
  section.museum_nav .block_content a {
    padding: 84px 0 0 0;
  }
}
section.museum_nav .block_content a img,
section.museum_nav .block_content a svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
section.museum_nav .block_content a p {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 768px) {
  section.museum_nav .block_content a p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
section.museum_nav .block_content a .box_1,
section.museum_nav .block_content a .box_2,
section.museum_nav .block_content a .box_1 svg,
section.museum_nav .block_content a .box_2 svg {
  width: 135px;
  height: 140px;
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  section.museum_nav .block_content a .box_1,
  section.museum_nav .block_content a .box_2,
  section.museum_nav .block_content a .box_1 svg,
  section.museum_nav .block_content a .box_2 svg {
    width: 90px;
    height: 93px;
  }
}
@media (max-width: 500px) {
  section.museum_nav .block_content a .box_1,
  section.museum_nav .block_content a .box_2,
  section.museum_nav .block_content a .box_1 svg,
  section.museum_nav .block_content a .box_2 svg {
    width: 100%;
  }
}
@media (max-width: 400px) {
  section.museum_nav .block_content a .box_1,
  section.museum_nav .block_content a .box_2,
  section.museum_nav .block_content a .box_1 svg,
  section.museum_nav .block_content a .box_2 svg {
    height: 76px;
  }
}
section.museum_nav .block_content a .box_1,
section.museum_nav .block_content a .box_2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
section.museum_nav .block_content a .box_2 {
  opacity: 0;
}
section.museum_nav .block_content a:hover .box_2,
section.museum_nav .block_content a:focus-visible .box_2 {
  opacity: 1;
}
section.news_slider_full {
  margin: 68px 0 80px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  section.news_slider_full {
    margin: 46px 0 54px 0;
  }
}
section.news_slider_full .swiper {
  overflow: initial;
}
section.news_slider_full .swiper .swiper-wrapper {
  padding: 0 0 46px 0;
}
section.news_slider_full .swiper .swiper-slide {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  transition: ease-in-out 0.25s;
}
@media (min-width: 769px) {
  section.news_slider_full .swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0;
    scale: 1;
    visibility: hidden;
  }
}
section.news_slider_full .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 550px;
  margin: 0;
  object-fit: cover;
}
@media (min-width: 1401px) {
  section.news_slider_full .swiper .swiper-slide img {
    width: 1200px;
    height: 545px;
  }
}
@media (max-width: 1200px) {
  section.news_slider_full .swiper .swiper-slide img {
    height: 480px;
  }
}
@media (max-width: 768px) {
  section.news_slider_full .swiper .swiper-slide img {
    height: 365px;
  }
}
section.news_slider_full .swiper .swiper-slide h3 {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 45px;
  font-size: 2.8125rem;
  margin: 62px auto 16px auto;
  max-width: 1100px;
}
@media (max-width: 768px) {
  section.news_slider_full .swiper .swiper-slide h3 {
    font-size: 24px;
    font-size: 1.5rem;
    margin: 32px auto 8px auto;
  }
}
section.news_slider_full .swiper .swiper-slide p {
  max-width: 970px;
  margin: 0 auto;
  font-size: 22px;
  font-size: 1.375rem;
}
@media (max-width: 768px) {
  section.news_slider_full .swiper .swiper-slide p {
    font-size: 16px;
    font-size: 1rem;
  }
}
section.news_slider_full .swiper .swiper-slide h3,
section.news_slider_full .swiper .swiper-slide p {
  text-align: center;
}
section.news_slider_full .swiper .swiper-button-prev,
section.news_slider_full .swiper .swiper-button-next {
  top: initial;
  bottom: 106px;
}
@media (max-width: 768px) {
  section.news_slider_full .swiper .swiper-button-prev,
  section.news_slider_full .swiper .swiper-button-next {
    display: none;
  }
}
section.news_slider_full .swiper .swiper-button-prev {
  left: -140px;
}
@media (max-width: 1500px) {
  section.news_slider_full .swiper .swiper-button-prev {
    left: 32px;
  }
}
section.news_slider_full .swiper .swiper-button-next {
  right: -140px;
}
@media (max-width: 1500px) {
  section.news_slider_full .swiper .swiper-button-next {
    right: 32px;
  }
}
.swiper {
  width: 100%;
  contain: layout;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  color: var(--color-blackAlmost);
  width: 36px;
  height: 36px;
  --swiper-navigation-size: 33px;
}
@media (max-width: 1400px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    color: var(--color-white);
  }
}
@media (max-width: 1000px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    color: var(--color-blackAlmost);
  }
}
@media (max-width: 768px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 24px;
    height: 24px;
    --swiper-navigation-size: 20px;
  }
}
.swiper .swiper-pagination.swiper-pagination-bullets {
  bottom: 0;
  --swiper-pagination-bullet-horizontal-gap: 5px;
}
.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  outline: 2px solid transparent;
  background: initial;
  position: relative;
  margin: 0;
}
.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet::before {
  content: '';
  border-radius: inherit;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
}
@media (max-width: 768px) {
  .swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet::before {
    width: 8px;
    height: 8px;
  }
}
.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:focus-visible {
  outline: 2px solid var(--color-black);
}
.swiper .swiper-counter {
  height: 1.875rem;
  width: 3.75rem;
  position: absolute;
  z-index: 5;
  bottom: 44px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-white);
}
@media (max-width: 1000px) {
  .swiper .swiper-counter {
    position: initial;
    margin: 20px auto 0 auto;
    background: initial;
    color: var(--color-blackAlmost);
  }
}
select {
  display: none;
}
div.nice-select {
  width: 100%;
  max-width: 290px;
  height: 45px;
  display: flex;
  align-items: center;
  padding-left: 25px;
  padding-right: 42px;
  border-radius: 5px;
  border: 1px solid var(--color-line);
  background: initial;
  outline: 2px solid transparent;
}
div.nice-select:focus-visible {
  outline: 2px solid var(--color-black);
}
div.nice-select::after {
  content: '';
  border: initial;
  display: block;
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  background-image: url('../../images/icons/chevron_down.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(0, -50%);
  transform-origin: initial;
  position: absolute;
  top: 50%;
  right: 26px;
}
div.nice-select.open::after {
  transform: translate(0, -50%) rotate(180deg);
}
div.nice-select.disabled {
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: not-allowed;
  border: initial;
}
div.nice-select.disabled::after {
  opacity: 0.5;
}
div.nice-select.disabled span.current {
  color: var(--color-gray95);
}
div.nice-select .nice-select-dropdown {
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--color-line);
  box-shadow: initial;
}
div.nice-select span.current,
div.nice-select ul li.option {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-blackAlmost);
}
div.nice-select ul li.option {
  padding-left: 25px;
}
div.nice-select ul li.option.disabled {
  color: var(--color-gray);
  font-weight: 700;
  cursor: not-allowed;
}
div.nice-select span.current {
  overflow: hidden;
  text-overflow: ellipsis;
}
div.nice-select .list {
  overflow-y: auto;
  max-height: 210px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-main) var(--color-grayLight);
}
div.nice-select .list::-webkit-scrollbar {
  width: 12px;
}
div.nice-select .list::-webkit-scrollbar-track {
  background: var(--color-grayLight);
}
div.nice-select .list::-webkit-scrollbar-thumb {
  background: var(--color-main);
}
div.nice-select .list::-webkit-scrollbar-thumb:hover {
  background: var(--color-mainHover);
}
div.nice-select .option {
  line-height: 1.1em;
  min-height: 40px;
  display: flex;
  align-items: center;
  white-space: normal;
  padding-top: 10px;
  padding-bottom: 10px;
}
section.events_slider_full {
  margin: 78px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  section.events_slider_full {
    margin: 52px 0;
  }
}
section.events_slider_full .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.events_slider_full .container > .btn {
  margin: 60px auto 3px auto;
  text-transform: uppercase;
}
section.events_slider_full .swiper {
  overflow: initial;
}
section.events_slider_full .swiper .swiper-button-prev,
section.events_slider_full .swiper .swiper-button-next {
  top: initial;
  bottom: -90px;
}
@media (max-width: 768px) {
  section.events_slider_full .swiper .swiper-button-prev,
  section.events_slider_full .swiper .swiper-button-next {
    display: none;
  }
}
section.events_slider_full .swiper .swiper-button-prev {
  left: initial;
  right: 80px;
}
@media (max-width: 768px) {
  section.events_slider_full .swiper .swiper-button-prev {
    right: 48px;
  }
}
section.events_slider_full .swiper .swiper-button-next {
  right: 0;
}
section.events_slider_full .no_results_text {
  width: 100%;
  height: 80px;
  text-align: center;
}
.title_line {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 42px;
  align-items: center;
  margin: 0 0 62px 0;
}
@media (max-width: 768px) {
  .title_line {
    gap: 20px;
    margin: 0 0 34px 0;
  }
}
.title_line > div {
  flex-grow: 1;
  width: auto;
  height: 1px;
  background: var(--color-line);
}
.title_line .section_title {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 32px;
  font-size: 2rem;
  margin: 0;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .title_line .section_title {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
main .events_box_a_wrap {
  width: 415px;
  height: 475px;
}
@media (max-width: 1400px) {
  main .events_box_a_wrap {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  main .events_box_a_wrap {
    height: 380px;
  }
}
@media (max-width: 768px) {
  main .events_box_a_wrap {
    height: 360px;
  }
}
main .events_box {
  width: inherit;
  height: inherit;
  border-radius: 5px;
  position: relative;
  z-index: 5;
  padding: 36px 24px 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--color-blackAlmost);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  main .events_box {
    padding: 28px 20px 22px 20px;
  }
}
main .events_box .events_box_emblem {
  display: block;
  position: absolute;
  top: 30px;
  right: 34px;
  width: 60px;
  height: 60px;
  object-fit: contain;
  user-select: none;
}
@media (max-width: 768px) {
  main .events_box .events_box_emblem {
    width: 48px;
    height: 48px;
    top: 28px;
    right: 20px;
  }
}
main .events_box .events_box_location + .events_box_location .events_box_emblem {
  top: 100px;
}
@media (max-width: 768px) {
  main .events_box .events_box_location + .events_box_location .events_box_emblem {
    top: 80px;
  }
}
main .events_box p {
  margin: 0;
  color: var(--color-white);
}
main .events_box .events_box_date {
  font-weight: 500;
  font-size: 22px;
  font-size: 1.375rem;
}
@media (max-width: 768px) {
  main .events_box .events_box_date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
main .events_box .events_box_location {
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  main .events_box .events_box_location {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
main .events_box .events_box_title {
  display: block;
  max-width: 340px;
  font-weight: 500;
  font-size: 22px;
  font-size: 1.375rem;
  margin: auto 0 0 0;
  color: var(--color-white);
}
main .events_box .events_box_title h3 {
  font-weight: 500;
  font-size: 22px;
  font-size: 1.375rem;
  margin: auto 0 0 0;
  color: var(--color-white);
}
@media (max-width: 768px) {
  main .events_box .events_box_title {
    font-size: 18px;
    font-size: 1.125rem;
  }
  main .events_box .events_box_title h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
main .events_box .events_box_title:focus-visible {
  outline: 2px solid var(--color-white);
}
main .events_box::before,
main .events_box::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  border-radius: inherit;
}
main .events_box::before {
  background: transparent linear-gradient(180deg, #00000086 0%, #00000015 78%, #00000000 100%) 0% 0% no-repeat padding-box;
  height: 161px;
  top: 0;
}
main .events_box::after {
  background: transparent linear-gradient(0deg, #000000A0 0%, #00000015 75%, #00000000 100%) 0% 0% no-repeat padding-box;
  height: 238px;
  bottom: 0;
}
main .events_box.placeholder_bg {
  background-color: var(--color-grayF4);
}
main .events_box.placeholder_bg h3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-image: url('../../images/logo_placeholder.svg');
  background-size: contain;
}
body.home .events_box_a_wrap {
  width: auto;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  body.home .events_box_a_wrap {
    width: 100%;
    aspect-ratio: initial;
  }
}
main .events_box_alt {
  display: flex;
  align-items: center;
  gap: 56px;
  border-top: 1px solid var(--color-line);
  padding: 30px 0;
}
@media (max-width: 768px) {
  main .events_box_alt {
    padding: 34px 0 32px 0;
    gap: 20px;
  }
  main .events_box_alt:nth-child(1) {
    border: initial;
  }
}
main .events_box_alt:last-of-type {
  border-bottom: 1px solid var(--color-line);
}
main .events_box_alt .box_left {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
}
@media (max-width: 768px) {
  main .events_box_alt .box_left {
    width: 100px;
    height: 100px;
  }
}
main .events_box_alt .box_left a,
main .events_box_alt .box_left img,
main .events_box_alt .box_left .events_box_placeholder,
main .events_box_alt .box_left figure {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
main .events_box_alt .box_left .events_box_placeholder {
  background-repeat: no-repeat;
  background-color: var(--color-grayF4);
  background-image: url('../../images/logo_placeholder.svg');
  background-size: 64px 64px;
  background-position: center;
}
main .events_box_alt .box_right {
  display: flex;
  flex-direction: column;
  max-width: 55rem;
}
main .events_box_alt .box_right .box_right_upper {
  display: flex;
  align-items: center;
  gap: 4px 14px;
  margin: 0 0 20px 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  main .events_box_alt .box_right .box_right_upper {
    gap: 3px 10px;
    margin: 0 0 12px 0;
  }
}
main .events_box_alt .box_right .box_right_upper p,
main .events_box_alt .box_right .box_right_upper .separator {
  display: flex;
  gap: 3px;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-gray);
  margin: 0;
}
@media (max-width: 768px) {
  main .events_box_alt .box_right .box_right_upper p,
  main .events_box_alt .box_right .box_right_upper .separator {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
main .events_box_alt .box_right h3 {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-blackAlmost);
  margin: 0 0 22px 0;
}
@media (max-width: 768px) {
  main .events_box_alt .box_right h3 {
    font-size: 16px;
    font-size: 1rem;
    margin: 0 0 12px 0;
  }
}
main .events_box_alt .box_right .box_right_lower {
  display: flex;
  align-items: center;
  gap: 6px;
}
main .events_box_alt .box_right .box_right_lower p {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-tertiary);
  margin: 0;
}
@media (max-width: 768px) {
  main .events_box_alt .box_right .box_right_lower p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
main .events_box_alt .box_team_type_lower {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 16px;
}
main .events_box_alt .box_team_type_lower > div,
main .events_box_alt .box_team_type_lower .team_box_email_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 4px;
}
main .events_box_alt .box_team_type_lower .team_box_email_wrap {
  gap: 2px 8px;
}
main .events_box_pb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--color-line);
}
main .events_box_pb .box_upper {
  height: 250px;
  width: 100%;
}
main .events_box_pb .box_upper img,
main .events_box_pb .box_upper .events_box_placeholder {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
main .events_box_pb .box_upper .events_box_placeholder {
  background-repeat: no-repeat;
  background-color: var(--color-grayF4);
  background-image: url('../../images/logo_placeholder.svg');
  background-size: 128px 128px;
  background-position: center;
}
main .events_box_pb .box_lower {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
main .events_box_pb .box_lower .box_row {
  display: flex;
  align-items: center;
  gap: 6px 14px;
  margin: 0 0 14px 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  main .events_box_pb .box_lower .box_row {
    gap: 4px 8px;
    margin: 0 0 12px 0;
  }
}
main .events_box_pb .box_lower .box_row p,
main .events_box_pb .box_lower .box_row .separator {
  display: flex;
  gap: 3px;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-gray);
  margin: 0;
}
@media (max-width: 768px) {
  main .events_box_pb .box_lower .box_row p,
  main .events_box_pb .box_lower .box_row .separator {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
main .events_box_pb .box_lower h3 {
  font-weight: 500;
  font-size: 22px;
  font-size: 1.375rem;
  color: var(--color-blackAlmost);
  margin: 0 0 0 0;
}
@media (max-width: 768px) {
  main .events_box_pb .box_lower h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
main .events_box_pb .box_lower .box_description {
  margin: 14px 0 0 0;
}
@media (max-width: 768px) {
  main .events_box_pb .box_lower .box_description {
    margin: 10px 0 0 0;
  }
}
main .events_box_pb .box_lower .box_tag_row {
  margin: 18px 0 0 0;
  gap: 20px;
}
main .events_box_pb .box_lower .box_tag_row p {
  color: var(--color-tertiary);
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  main .events_box_pb .box_lower .box_tag_row {
    margin: 14px 0 0 0;
    gap: 16px;
  }
  main .events_box_pb .box_lower .box_tag_row p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
section.font_test {
  margin: 60px 0;
  background: white;
}
section.font_test .container div:nth-child(1) p {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 100;
  font-style: normal;
}
section.font_test .container div:nth-child(2) p {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 200;
  font-style: normal;
}
section.font_test .container div:nth-child(3) p {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}
section.font_test .container div:nth-child(4) p {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
section.font_test .container div:nth-child(5) p {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
}
section.font_test .container div:nth-child(6) p {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 600;
  font-style: normal;
}
section.font_test .container div:nth-child(7) p {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}
section.font_test .container div:nth-child(8) p {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 800;
  font-style: normal;
}
section.font_test .container div:nth-child(9) p {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.scroll_to_top {
  display: block;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  border: initial;
  border-radius: 50%;
  background: initial;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../../images/icons/arrow_up_circled.svg');
  cursor: pointer;
  outline: 2px solid transparent;
}
.scroll_to_top:focus-visible {
  outline: 2px solid var(--color-white);
}
@media (max-width: 768px) {
  .scroll_to_top {
    background-size: 22px 22px;
  }
}
.pb_wrap p {
  margin-bottom: 1.5em;
}
.pb_wrap p img {
  display: block;
  border-radius: 5px;
}
.pb_wrap p + ul:not([class]) {
  margin-top: -16px;
  margin-bottom: 26px;
}
.pb_wrap h1,
.pb_wrap h2,
.pb_wrap h3,
.pb_wrap h4 {
  font-weight: 500;
}
.pb_wrap h1 {
  font-family: "EB Garamond", serif;
}
@media (min-width: 769px) {
  .pb_wrap h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .pb_wrap h1 {
    text-align: center;
  }
}
@media (min-width: 769px) {
  .pb_wrap h2 {
    font-weight: 600;
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 0.7em;
  }
}
.pb_wrap h5 {
  font-weight: 600;
}
.pb_wrap hr {
  display: block;
  width: 100%;
  height: 1px;
  border: initial;
  background: var(--color-line);
  margin: 30px 0;
}
.pb_wrap ul:not([class]) {
  margin: 12px 0;
}
.pb_wrap ul:not([class]) li {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4em;
  color: var(--color-blackAlmost);
  margin: 0 0 0.6em 0;
  margin: 0 0 2px 0;
  padding: 0 0 0 20px;
  position: relative;
}
@media (max-width: 768px) {
  .pb_wrap ul:not([class]) li {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 320px) {
  .pb_wrap ul:not([class]) li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.pb_wrap ul:not([class]) li a {
  color: var(--color-main);
  text-decoration: underline;
}
.pb_wrap ul:not([class]) li a:hover,
.pb_wrap ul:not([class]) li a:focus-visible {
  color: var(--color-blackAlmost);
  text-decoration: initial;
}
.pb_wrap ul:not([class]) li a[href*="mailto"] {
  color: var(--color-blackAlmost);
}
@media (max-width: 768px) {
  .pb_wrap ul:not([class]) li a {
    word-break: break-word;
  }
}
.pb_wrap ul:not([class]) li:not(.no_dot)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-main);
}
.pb_wrap ol:not([class]) {
  margin: 12px 0;
  padding: 0 0 0 26px;
}
.pb_wrap ol:not([class]) li {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4em;
  color: var(--color-blackAlmost);
  margin: 0 0 0.6em 0;
  margin: 0 0 2px 0;
  padding: 0 0 0 3px;
  position: relative;
}
@media (max-width: 768px) {
  .pb_wrap ol:not([class]) li {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 320px) {
  .pb_wrap ol:not([class]) li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.pb_wrap ol:not([class]) li a {
  color: var(--color-main);
  text-decoration: underline;
}
.pb_wrap ol:not([class]) li a:hover,
.pb_wrap ol:not([class]) li a:focus-visible {
  color: var(--color-blackAlmost);
  text-decoration: initial;
}
.pb_wrap ol:not([class]) li a[href*="mailto"] {
  color: var(--color-blackAlmost);
}
@media (max-width: 768px) {
  .pb_wrap ol:not([class]) li a {
    word-break: break-word;
  }
}
.pb_wrap .pb_read_more {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-blackAlmost);
  text-decoration: underline;
}
.pb_wrap .pb_read_hidden {
  margin: -14px 0 0 0;
}
.pb_wrap .pb_gallery {
  margin: 0 0 30px 0;
  contain: inline-size;
}
.pb_wrap .pb_gallery .swiper {
  overflow: initial;
}
.pb_wrap .pb_gallery .swiper-slide {
  transition: ease-in-out 0.1s;
}
.pb_wrap .pb_gallery .swiper-slide img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
.pb_wrap .pb_gallery .swiper-slide.square img {
  aspect-ratio: 1/1;
}
.pb_wrap .pb_gallery .swiper-slide.news img {
  aspect-ratio: 2.2/1;
}
.pb_wrap .pb_gallery .swiper-slide:not(.swiper-slide-active) {
  opacity: 0;
  scale: 0.95;
  visibility: hidden;
}
@media (max-width: 1000px) {
  .pb_wrap .pb_gallery .swiper-button-prev,
  .pb_wrap .pb_gallery .swiper-button-next {
    bottom: 0;
    margin: 0;
    top: initial;
    width: 24px;
    height: 24px;
    --swiper-navigation-size: 20px;
  }
}
.pb_wrap .pb_gallery .swiper-button-prev {
  left: -80px;
}
@media (max-width: 1400px) {
  .pb_wrap .pb_gallery .swiper-button-prev {
    left: 36px;
  }
}
@media (max-width: 1000px) {
  .pb_wrap .pb_gallery .swiper-button-prev {
    left: calc(50% - 44px);
    transform: translateX(-50%);
  }
}
.pb_wrap .pb_gallery .swiper-button-next {
  right: -80px;
}
@media (max-width: 1400px) {
  .pb_wrap .pb_gallery .swiper-button-next {
    right: 36px;
  }
}
@media (max-width: 1000px) {
  .pb_wrap .pb_gallery .swiper-button-next {
    right: calc(50% - 44px);
    transform: translateX(50%);
  }
}
.pb_wrap .pb_gallery .aspect_ratio_relative {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-height: 550px;
}
.pb_wrap .pb_gallery .aspect_ratio_relative.square {
  aspect-ratio: 1/1;
}
.pb_wrap .pb_gallery .aspect_ratio_relative.news {
  aspect-ratio: 2.2/1;
}
.pb_wrap .pb_post_date p {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 20px 0;
}
.pb_wrap .pb_free_text {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px 38px;
  position: relative;
}
@media (min-width: 1001px) {
  .pb_wrap .pb_free_text[column-count="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pb_wrap .pb_free_text p:last-child {
  margin-bottom: 0;
}
.pb_wrap .pb_free_text .pb_read_more {
  margin: 0;
  position: absolute;
  left: 0;
  bottom: -4px;
  transform: translateY(100%);
}
.pb_wrap .pb_free_text img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}
.pb_wrap .pb_free_text img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}
.pb_wrap .pb_free_text img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pb_wrap .pb_video_wrap {
  margin: 28px 0 30px 0;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 5px;
}
.pb_wrap .pb_video_wrap .pb_video {
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pb_wrap .pb_video_wrap .pb_video svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
}
@media (max-width: 768px) {
  .pb_wrap .pb_video_wrap .pb_video svg {
    width: 36px;
    height: 36px;
  }
}
.pb_wrap .pb_team {
  margin: 30px 0 46px 0;
  padding: 32px 0 0 0;
  border-top: 1px solid var(--color-line);
}
.pb_wrap .pb_team .pb_team_upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 32px 0;
  min-height: 45px;
}
.pb_wrap .pb_team .pb_team_upper p {
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0;
}
@media (max-width: 768px) {
  .pb_wrap .pb_team .pb_team_upper {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .pb_wrap .pb_team .pb_team_upper div.nice-select {
    max-width: initial;
  }
}
.pb_wrap .pb_team .pb_team_content {
  display: grid;
  gap: 30px 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1000px) {
  .pb_wrap .pb_team .pb_team_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pb_wrap .pb_team .pb_team_content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pb_wrap .pb_team .pb_team_lower {
  margin: 60px 0 0 0;
  padding: 58px 0 0 0;
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .pb_wrap .pb_team .pb_team_lower {
    margin: 48px 0 0 0;
    padding: 0;
    border: initial;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 0 10px;
  }
}
.pb_wrap .pb_team .pb_team_lower .lnvm_structure {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-main);
  margin: 0 auto 0 0;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .pb_wrap .pb_team .pb_team_lower .lnvm_structure {
    width: 100%;
    margin: 0 0 38px 0;
    padding: 0 0 36px 0;
    border-bottom: 1px solid var(--color-line);
  }
}
.pb_wrap .pb_team .pb_team_lower .pagination_buttons {
  justify-content: center;
}
.pb_wrap .pb_team .pb_team_lower .pagination_status {
  justify-content: end;
}
.pb_wrap .pb_two_side_content {
  padding: 21px 0 42px 0;
  margin: 21px 0;
  border-bottom: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 30px;
}
@media (max-width: 1000px) {
  .pb_wrap .pb_two_side_content {
    display: flex;
    flex-direction: column-reverse;
  }
  .pb_wrap .pb_two_side_content .block_left,
  .pb_wrap .pb_two_side_content .block_right {
    max-width: 500px;
    width: 100%;
  }
  .pb_wrap .pb_two_side_content picture,
  .pb_wrap .pb_two_side_content img {
    display: block;
    width: 100%;
    max-width: 500px;
  }
}
@media (min-width: 1001px) {
  .pb_wrap .pb_two_side_content.reversed .block_right {
    order: -1;
  }
}
@media (min-width: 1001px) and (min-width: 1201px) {
  .pb_wrap .pb_two_side_content.reversed .block_left {
    padding-left: 20px;
  }
}
.pb_wrap .pb_two_side_content .block_right img {
  display: block;
  width: 100%;
}
.pb_wrap .pb_two_side_content h2 {
  font-weight: 500;
  margin: 0 0 22px 0;
}
.pb_wrap .pb_two_side_content h3 {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 15px 0;
}
.pb_wrap .pb_two_side_content h2 + h3 {
  margin-top: -14px;
}
.pb_wrap .pb_two_side_content p {
  margin: 0 0 1.2em 0;
}
@media (min-width: 1001px) {
  .pb_wrap .pb_two_side_content h2,
  .pb_wrap .pb_two_side_content p {
    max-width: 25.4rem;
  }
}
.pb_wrap .pb_two_side_content .btn {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-blackAlmost);
  text-decoration: underline;
}
.pb_wrap .pb_two_side_content .btn:hover,
.pb_wrap .pb_two_side_content .btn:focus-visible {
  text-decoration: initial;
}
.pb_wrap .pb_free_text + .pb_two_side_content {
  border-top: 1px solid var(--color-line);
  padding-top: 42px;
  margin-top: 42px;
}
.pb_wrap .pb_location {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 32px 0;
  border-top: 1px solid var(--color-line);
}
@media (max-width: 768px) {
  .pb_wrap .pb_location {
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .pb_wrap .pb_location {
    flex-direction: column;
  }
}
.pb_wrap .pb_location .block_left {
  width: 100%;
  max-width: 400px;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .pb_wrap .pb_location .block_left {
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .pb_wrap .pb_location .block_left {
    width: 46%;
  }
}
@media (max-width: 500px) {
  .pb_wrap .pb_location .block_left {
    width: 100%;
  }
}
.pb_wrap .pb_location .block_left img {
  display: block;
  width: 100%;
  border-radius: 5px;
}
.pb_wrap .pb_location .block_right {
  max-width: 26rem;
}
@media (max-width: 768px) {
  .pb_wrap .pb_location .block_right {
    max-width: initial;
    flex-grow: 1;
  }
}
@media (max-width: 500px) {
  .pb_wrap .pb_location .block_right {
    width: 100%;
    max-width: 260px;
  }
}
.pb_wrap .pb_location .block_right h3 {
  font-weight: 500;
  margin: 0 0 14px 0;
}
@media (max-width: 768px) {
  .pb_wrap .pb_location .block_right h3 {
    margin: 0 0 8px 0;
  }
}
.pb_wrap .pb_location .block_right p {
  margin: 0;
  font-weight: 400;
}
.pb_wrap .pb_location .block_right p strong {
  font-weight: 500;
}
.pb_wrap .pb_location .block_right .btn {
  margin: 10px 0 0 0;
  color: var(--color-main);
  text-decoration: underline;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .pb_wrap .pb_location .block_right .btn {
    margin: 7px 0 0 0;
  }
}
.pb_wrap .pb_location .location_line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 10px 0;
}
.pb_wrap .pb_location .location_line svg {
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
}
@media (max-width: 768px) {
  .pb_wrap .pb_location .location_line {
    gap: 10px;
  }
  .pb_wrap .pb_location .location_line svg {
    width: 14px;
    height: 14px;
  }
}
.pb_wrap .pb_location .location_line p {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
}
@media (max-width: 768px) {
  .pb_wrap .pb_location .location_line p {
    font-size: 16px;
    font-size: 1rem;
  }
}
.pb_wrap .pb_table {
  margin: 30px 0;
}
@media (max-width: 768px) {
  .pb_wrap .pb_table.three_col_wide,
  .pb_wrap .pb_table.three_col_middle_centered,
  .pb_wrap .pb_table.three_col_left_wide,
  .pb_wrap .pb_table.five_col {
    width: calc(100vw - 40px);
    overflow: auto;
  }
  .pb_wrap .pb_table.three_col_wide table,
  .pb_wrap .pb_table.three_col_middle_centered table,
  .pb_wrap .pb_table.three_col_left_wide table,
  .pb_wrap .pb_table.five_col table {
    min-width: 550px;
  }
  .pb_wrap .pb_table.three_col_left_wide table {
    min-width: 400px;
  }
}
.pb_wrap .pb_table table {
  position: relative;
  margin: 0;
  padding: 45px 40px 35px 40px;
  border: 1px solid var(--color-line);
  border-radius: 5px;
  border-spacing: 0;
}
@media (min-width: 1650px) {
  .pb_wrap .pb_table table:not(.narrow) {
    left: -40px;
    width: calc(100% + 80px);
  }
}
@media (max-width: 768px) {
  .pb_wrap .pb_table table {
    padding: 26px 22px 18px 22px;
  }
}
.pb_wrap .pb_table table th,
.pb_wrap .pb_table table td {
  font-family: inherit;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2em;
  color: var(--color-blackAlmost);
}
@media (max-width: 768px) {
  .pb_wrap .pb_table table th,
  .pb_wrap .pb_table table td {
    font-size: 16px;
    font-size: 1rem;
  }
}
.pb_wrap .pb_table table th a,
.pb_wrap .pb_table table td a {
  color: var(--color-main);
  text-decoration: underline;
}
.pb_wrap .pb_table table th a:hover,
.pb_wrap .pb_table table td a:hover,
.pb_wrap .pb_table table th a:focus-visble,
.pb_wrap .pb_table table td a:focus-visble {
  text-decoration: initial;
}
.pb_wrap .pb_table table[data-columns="2"] thead th:nth-child(1),
.pb_wrap .pb_table table[data-columns="2"] tbody th:nth-child(1) {
  text-align: left;
}
.pb_wrap .pb_table table[data-columns="2"] thead th:nth-child(2),
.pb_wrap .pb_table table[data-columns="2"] tbody th:nth-child(2) {
  text-align: right;
}
.pb_wrap .pb_table table[data-columns="2"] tbody td {
  text-align: right;
}
.pb_wrap .pb_table table[data-columns="2"] thead th {
  padding-bottom: 34px;
}
.pb_wrap .pb_table table[data-columns="2"] thead th:nth-child(1) {
  font-weight: 600;
}
.pb_wrap .pb_table table[data-columns="2"] tbody td,
.pb_wrap .pb_table table[data-columns="2"] tbody th {
  padding: 12px 2px;
}
.pb_wrap .pb_table table[data-columns="2"] tbody tr:not(:last-of-type) td,
.pb_wrap .pb_table table[data-columns="2"] tbody tr:not(:last-of-type) th {
  border-bottom: 1px solid var(--color-line);
}
.pb_wrap .pb_table table.three_col_wide td {
  font-size: 16px;
  font-size: 1rem;
}
.pb_wrap .pb_table table.three_col_wide thead th {
  padding-bottom: 10px;
  font-weight: 500;
}
.pb_wrap .pb_table table.three_col_wide thead th:nth-child(1) {
  font-weight: 600;
}
.pb_wrap .pb_table table.three_col_wide tbody td,
.pb_wrap .pb_table table.three_col_wide tbody th {
  padding: 12px 2px;
}
.pb_wrap .pb_table table.three_col_wide tbody tr:not(:last-of-type) td,
.pb_wrap .pb_table table.three_col_wide tbody tr:not(:last-of-type) th {
  border-bottom: 1px solid var(--color-line);
}
.pb_wrap .pb_table table.three_col_wide tr > *:nth-child(1) {
  width: 17%;
  text-align: left;
}
.pb_wrap .pb_table table.three_col_wide tr > *:nth-child(2) {
  width: 66%;
  text-align: left;
  padding-left: 8px;
  padding-right: 8px;
}
.pb_wrap .pb_table table.three_col_wide tr > *:nth-child(3) {
  width: 17%;
  text-align: right;
}
.pb_wrap .pb_table table.three_col_wide.three_col_left_wide tr > *:nth-child(1) {
  width: 66%;
  text-align: left;
}
.pb_wrap .pb_table table.three_col_wide.three_col_left_wide tr > *:nth-child(2) {
  width: 17%;
  text-align: right;
}
.pb_wrap .pb_table table.three_col_wide.three_col_left_wide tr > *:nth-child(3) {
  width: 17%;
  text-align: right;
}
.pb_wrap .pb_table table.three_col_middle_centered td {
  font-size: 16px;
  font-size: 1rem;
}
.pb_wrap .pb_table table.three_col_middle_centered thead th {
  padding-bottom: 10px;
  font-weight: 500;
}
.pb_wrap .pb_table table.three_col_middle_centered thead th:nth-child(1) {
  font-weight: 600;
}
.pb_wrap .pb_table table.three_col_middle_centered tbody td,
.pb_wrap .pb_table table.three_col_middle_centered tbody th {
  padding: 12px 2px;
}
.pb_wrap .pb_table table.three_col_middle_centered tbody tr:not(:last-of-type) td,
.pb_wrap .pb_table table.three_col_middle_centered tbody tr:not(:last-of-type) th {
  border-bottom: 1px solid var(--color-line);
}
.pb_wrap .pb_table table.three_col_middle_centered tr > *:nth-child(1) {
  width: 33%;
  text-align: left;
}
.pb_wrap .pb_table table.three_col_middle_centered tr > *:nth-child(2) {
  width: 34%;
  text-align: center;
}
.pb_wrap .pb_table table.three_col_middle_centered tr > *:nth-child(3) {
  width: 33%;
  text-align: right;
}
.pb_wrap .pb_table table.five_col td {
  font-size: 16px;
  font-size: 1rem;
}
.pb_wrap .pb_table table.five_col thead th {
  padding: 0 8px 10px 8px;
  font-weight: 600;
  text-align: left;
}
.pb_wrap .pb_table table.five_col tbody td,
.pb_wrap .pb_table table.five_col tbody th {
  padding: 12px 8px;
}
.pb_wrap .pb_table table.five_col tbody tr:not(:last-of-type) td,
.pb_wrap .pb_table table.five_col tbody tr:not(:last-of-type) th {
  border-bottom: 1px solid var(--color-line);
}
.pb_wrap .pb_table table.five_col td,
.pb_wrap .pb_table table.five_col th {
  width: auto;
  max-width: 270px;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .pb_wrap .pb_table table.five_col td,
  .pb_wrap .pb_table table.five_col th {
    min-width: 120px;
  }
}
.pb_wrap .pb_accordion {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin: 0 0 10px 0;
}
.pb_wrap .accordion_box {
  width: 100%;
}
.pb_wrap .accordion_box:not(:last-of-type) {
  border-bottom: 1px solid var(--color-line);
}
.pb_wrap .accordion_box .accordion_btn {
  width: 100%;
  height: auto;
  padding: 30px 12px 30px 0;
  text-align: left;
  position: relative;
  font-family: inherit;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--color-blackAlmost);
  line-height: 1.25em;
}
@media (max-width: 768px) {
  .pb_wrap .accordion_box .accordion_btn {
    padding: 20px 22px 20px 0;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.pb_wrap .accordion_box .accordion_btn::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url('../../images/icons/chevron_down.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: ease-in-out 0.25s;
}
.pb_wrap .accordion_box .accordion_btn[aria-expanded="true"] {
  color: var(--color-main);
}
.pb_wrap .accordion_box .accordion_btn[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(180deg);
  top: 48%;
}
.pb_wrap .accordion_box .accordion_content {
  padding: 4px 0;
  transition: ease-in-out 0.25s;
  position: relative;
  z-index: 5;
}
.pb_wrap .accordion_box .accordion_content.with_max_width {
  max-width: 38.5rem;
}
.pb_wrap .accordion_box .accordion_content.maps_icons_used {
  max-width: initial;
  padding-right: 112px;
}
@media (max-width: 1000px) {
  .pb_wrap .accordion_box .accordion_content.maps_icons_used {
    padding-right: 0;
  }
}
.pb_wrap .accordion_box .accordion_content.panzoom_used .maps_url_wrap {
  top: 400px;
}
.pb_wrap .accordion_box .accordion_content a {
  color: var(--color-main);
  text-decoration: underline;
}
.pb_wrap .accordion_box .accordion_content a:hover {
  text-decoration: initial;
}
.pb_wrap .accordion_box .accordion_btn:not([aria-expanded="true"]) ~ .accordion_content {
  visibility: hidden;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.pb_wrap .accordion_box .pb_pricing_table {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin: 6px 0 42px 0;
}
.pb_wrap .accordion_box .pb_pricing_table .pb_pricing_row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.pb_wrap .accordion_box .pb_pricing_table .pb_pricing_row:not(:last-of-type) {
  border-bottom: 1px solid var(--color-line);
}
.pb_wrap .accordion_box .pb_pricing_table .pb_pricing_row p {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
}
@media (max-width: 768px) {
  .pb_wrap .accordion_box .pb_pricing_table .pb_pricing_row p {
    min-width: 36px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.pb_wrap .accordion_box .pb_pricing_table .pb_pricing_row .left {
  max-width: 740px;
}
.pb_wrap .accordion_box .pb_pricing_table .pb_pricing_row .right {
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: right;
  padding-left: 4px;
}
@media (max-width: 768px) {
  .pb_wrap .accordion_box .pb_pricing_table .pb_pricing_row .right {
    gap: 14px;
  }
}
@media (min-width: 1201px) {
  .pb_wrap .accordion_box .pb_pricing_table .pb_pricing_row .right p {
    white-space: nowrap;
  }
}
.pb_wrap .accordion_box .pb_work_time_table {
  display: flex;
  gap: 58px;
  padding: 0 0 28px 0;
}
@media (max-width: 768px) {
  .pb_wrap .accordion_box .pb_work_time_table {
    flex-direction: column;
    gap: 20px;
  }
}
.pb_wrap .accordion_box .pb_work_time_table p {
  margin: 0;
}
.pb_wrap .accordion_box .pb_work_time_table .separator {
  width: 1px;
  height: initial;
  background: var(--color-line);
  margin: 0;
}
@media (max-width: 768px) {
  .pb_wrap .accordion_box .pb_work_time_table .separator {
    width: 100%;
    height: 1px;
  }
}
.pb_wrap .accordion_box .pb_work_time_table .left {
  width: 15rem;
  display: flex;
  flex-direction: column;
}
.pb_wrap .accordion_box .pb_work_time_table .left .table_day_rwap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pb_wrap .accordion_box .pb_work_time_table .left .table_day_rwap p :last-child {
  text-align: right;
}
.pb_wrap .accordion_box .pb_work_time_table .right {
  width: 21rem;
}
@media (max-width: 768px) {
  .pb_wrap .accordion_box .pb_work_time_table .right {
    width: 100%;
  }
}
.pb_wrap .accordion_box .pb_accordion_icon_with_text {
  margin: 6px 0 16px 0;
}
.pb_wrap .accordion_box .pb_accordion_icon_with_text .pb_icon_row {
  min-width: 120px;
}
.pb_wrap .accordion_box .pb_accordion_icon_with_text .title {
  font-weight: 500;
  margin: 0;
}
.pb_wrap .accordion_box .pb_accordion_icon_with_text .pb_icons {
  display: flex;
  align-items: center;
  gap: 8px 26px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .pb_wrap .accordion_box .pb_accordion_icon_with_text .pb_icons {
    gap: 6px 16px;
  }
}
.pb_wrap .accordion_box .pb_accordion_icon_with_text .pb_icons.no_min_width .pb_icon_row {
  min-width: initial;
}
.pb_wrap .accordion_box .maps_url_wrap {
  position: absolute;
  top: 3px;
  right: 0;
  display: flex;
  gap: 10px;
}
@media (max-width: 1000px) {
  .pb_wrap .accordion_box .maps_url_wrap {
    position: initial;
    margin: 20px 0;
  }
}
.pb_wrap .accordion_box .waze,
.pb_wrap .accordion_box .gmaps {
  display: block;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.pb_wrap .accordion_box .waze {
  background-image: url('../../images/icons/square_waze.svg');
}
.pb_wrap .accordion_box .gmaps {
  background-image: url('../../images/icons/square_g.svg');
}
.pb_wrap .accordion_box .pb_eadress_row {
  margin: 0 0 34px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.pb_wrap .accordion_box .pb_eadress_row > div:nth-child(1) {
  width: 100%;
  max-width: 608px;
}
.pb_wrap .accordion_box .pb_eadress_row > div:nth-child(2) a,
.pb_wrap .accordion_box .pb_eadress_row > div:nth-child(2) img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.pb_wrap .pb_supporters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--color-line);
}
.pb_wrap .pb_supporters:last-child {
  border-bottom: 1px solid var(--color-line);
}
@media (max-width: 500px) {
  .pb_wrap .pb_supporters {
    flex-direction: column-reverse;
  }
}
.pb_wrap .pb_supporters .box_left {
  max-width: 37.5rem;
}
.pb_wrap .pb_supporters .box_left p {
  margin-bottom: 12px;
}
.pb_wrap .pb_supporters .box_left .pb_text1,
.pb_wrap .pb_supporters .box_left .pb_text2 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
}
@media (max-width: 768px) {
  .pb_wrap .pb_supporters .box_left .pb_text1,
  .pb_wrap .pb_supporters .box_left .pb_text2 {
    font-size: 16px;
    font-size: 1rem;
  }
}
.pb_wrap .pb_supporters .box_left .pb_text1 {
  font-weight: 500;
}
.pb_wrap .pb_supporters .box_left .pb_text2 {
  font-weight: 400;
}
.pb_wrap .pb_supporters .box_left a {
  color: var(--color-main);
  text-decoration: underline;
}
.pb_wrap .pb_supporters .box_left a:hover {
  text-decoration: initial;
}
.pb_wrap .pb_supporters .box_right {
  max-width: 225px;
  min-width: 128px;
}
@media (max-width: 768px) {
  .pb_wrap .pb_supporters .box_right {
    min-width: initial;
    width: 112px;
    flex-shrink: 0;
  }
}
.pb_wrap .pb_supporters .box_right img {
  display: block;
}
.pb_wrap .pb_three_col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  width: 100%;
  margin: 20px 0 40px 0;
}
.pb_wrap .pb_three_col ul:not([class]) li {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-size: 1rem;
}
.pb_wrap .pb_three_col ul:not([class]) li::before {
  background: initial;
  border: 1px solid var(--color-main);
  border-radius: 50%;
}
.pb_wrap .pb_page_map h1 {
  margin: 0 0 42px 0;
}
.pb_wrap .pb_page_map .block_content h2 {
  margin: 0 0 16px 0;
}
.pb_wrap .pb_page_map .block_content a {
  text-decoration: initial;
}
.pb_wrap .pb_page_map .block_content a:hover {
  text-decoration: underline;
}
.pb_wrap .pb_page_map .block_content > ul {
  column-count: 3;
  column-gap: 36px;
}
@media (min-width: 1200px) and (max-width: 1330px) {
  .pb_wrap .pb_page_map .block_content > ul {
    column-count: 2;
  }
}
@media (max-width: 1000px) {
  .pb_wrap .pb_page_map .block_content > ul {
    column-count: 2;
  }
}
@media (max-width: 500px) {
  .pb_wrap .pb_page_map .block_content > ul {
    column-count: 1;
  }
}
.pb_wrap .pb_page_map .block_content > ul > li {
  margin: 0 0 32px 0;
}
.pb_wrap .pb_page_map .block_content > ul > li::before {
  content: initial;
}
.pb_wrap .pb_page_map .block_content > ul ul {
  padding-left: 8px;
}
@media (max-width: 768px) {
  .pb_wrap .pb_page_map .block_content > ul ul {
    padding-left: 6px;
  }
}
.pb_wrap .pb_page_map ul ul li {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-size: 1rem;
}
.pb_wrap .pb_page_map ul ul li:not(.no_dot)::before {
  background: initial;
  border: 1px solid var(--color-main);
  border-radius: 50%;
  top: 0.8em;
}
.pb_wrap .pb_three_col_img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 16px;
}
@media (max-width: 768px) {
  .pb_wrap .pb_three_col_img {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
}
@media (max-width: 350px) {
  .pb_wrap .pb_three_col_img {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pb_wrap .pb_three_col_img .col {
  padding: 0 0 25px 0;
  border-bottom: 1px solid var(--color-line);
}
.pb_wrap .pb_three_col_img .col img,
.pb_wrap .pb_three_col_img .col .pb_img_placeholder {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.pb_wrap .pb_three_col_img .col .pb_img_placeholder {
  background-repeat: no-repeat;
  background-color: var(--color-grayF4);
  background-image: url('../../images/logo_placeholder.svg');
  background-size: 128px 128px;
  background-position: center;
}
@media (max-width: 768px) {
  .pb_wrap .pb_three_col_img .col .pb_img_placeholder {
    background-size: 64px 64px;
  }
}
.pb_wrap .pb_three_col_img .col h3 {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 16px 0 0.4em 0;
  color: var(--color-blackAlmost);
}
@media (max-width: 768px) {
  .pb_wrap .pb_three_col_img .col h3 {
    font-size: 16px;
    font-size: 1rem;
    margin: 10px 0 0.3em 0;
  }
}
.pb_wrap .pb_three_col_img .col p {
  margin: 0 0 0.3em 0;
}
.pb_wrap .pb_three_col_img .col a {
  display: block;
  margin: 5px 0 0 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-blackAlmost);
}
.pb_wrap .pb_service_apply .pb_service_apply_row {
  display: flex;
  align-items: center;
  gap: 18px 22px;
}
@media (max-width: 768px) {
  .pb_wrap .pb_service_apply .pb_service_apply_row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.pb_wrap .pb_service_apply .pb_service_apply_row p {
  margin: 0;
}
@media (max-width: 768px) {
  .pb_wrap .pb_tab_part {
    width: calc(100vw - 40px);
  }
}
.pb_wrap .pb_tab_part .pb_tab_nav {
  width: 100%;
  display: flex;
  gap: 32px;
  border-bottom: 1px solid var(--color-line);
  margin: 8px 0 32px 0;
}
@media (max-width: 768px) {
  .pb_wrap .pb_tab_part .pb_tab_nav {
    padding: 0 0 24px 0;
    margin: 22px 0 24px 0;
    gap: 12px;
    width: calc(100% + 40px);
    overflow-x: auto;
    position: relative;
    left: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.pb_wrap .pb_tab_part .pb_tab_nav button {
  position: relative;
  z-index: 5;
  padding: 26px 0;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--color-blackAlmost);
  border-radius: 5px;
}
@media (max-width: 768px) {
  .pb_wrap .pb_tab_part .pb_tab_nav button {
    padding: 10px 8px;
    font-size: 18px;
    font-size: 1.125rem;
    white-space: nowrap;
    flex: 0 0 auto;
  }
}
.pb_wrap .pb_tab_part .pb_tab_nav button[aria-selected="true"] {
  color: var(--color-main);
}
@media (min-width: 769px) {
  .pb_wrap .pb_tab_part .pb_tab_nav button[aria-selected="true"]::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: -2px;
    background: var(--color-main);
  }
}
@media (max-width: 768px) {
  .pb_wrap .pb_tab_part .pb_tab_nav button[aria-selected="true"] {
    color: var(--color-white);
    background: var(--color-main);
  }
}
.pb_wrap .pb_tab_part .pb_tab_content[aria-hidden="true"] {
  display: none;
  visibility: hidden;
}
.pb_wrap .pb_img_with_caption {
  display: block;
  margin: 30px 0;
}
.pb_wrap .pb_img_with_caption img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  margin: 0;
}
.pb_wrap .pb_img_with_caption p,
.pb_wrap .pb_img_with_caption figcaption {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  margin: 12px 0 0 0;
  color: var(--color-gray);
}
.pb_wrap .pb_events {
  margin: 0 0 30px 0;
}
.pb_wrap .pb_events .pb_events_upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 30px 0;
  margin: 0 0 0 0;
  border-bottom: 1px solid var(--color-line);
}
@media (max-width: 768px) {
  .pb_wrap .pb_events .pb_events_upper {
    padding: 0 0 18px 0;
  }
}
.pb_wrap .pb_events .pb_events_upper h1 {
  margin: 0;
}
.pb_wrap .pb_events .pb_events_upper .events_filter {
  width: 100%;
  max-width: 19.25rem;
  min-height: 45px;
}
.pb_wrap .pb_events .pb_events_upper .nice-select {
  width: 100%;
  height: 45px;
  max-width: initial;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 5px;
  padding: 10px 24px;
  margin: 0;
  font-weight: 400;
  font-family: inherit;
  font-size: 18px;
  font-size: 1.125rem;
}
.pb_wrap .pb_events .pb_events_upper .nice-select {
  padding-right: 40px;
}
.pb_wrap .pb_events[total-posts="0"] .pb_events_upper {
  border: initial;
}
.pb_wrap .pb_events .pb_events_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pb_wrap .pb_events .btn.btn_style_underline {
  margin: 48px auto 0 auto;
}
.pb_wrap .pb_panzoom_group {
  margin: 0 0 30px 0;
}
@media (min-width: 1401px) {
  .pb_wrap .pb_panzoom_group {
    width: 895px;
  }
}
.pb_wrap .pb_panzoom_group .pb_panzoom_view {
  width: 100%;
  height: 370px;
  position: relative;
}
.pb_wrap .pb_panzoom_group .pb_panzoom_view img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.pb_wrap .pb_panzoom_group .pb_panzoom_view .pb_panzoom_open {
  position: absolute;
  top: 25px;
  left: 22px;
  width: 48px;
  height: 48px;
  background-color: var(--color-secondary);
  background-image: url('../../images/icons/expand.svg');
  background-size: 40px 40px;
  background-position: center;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .pb_wrap .pb_panzoom_group .pb_panzoom_view .pb_panzoom_open {
    width: 34px;
    height: 34px;
    background-size: 26px 26px;
  }
}
.pb_accordion_icon_with_text {
  margin: 6px 0 16px 0;
}
.pb_accordion_icon_with_text .pb_icon_row {
  min-width: 120px;
}
.pb_accordion_icon_with_text svg {
  fill: var(--color-black);
}
.pb_accordion_icon_with_text svg path {
  fill: var(--color-black);
}
.pb_accordion_icon_with_text .title {
  font-weight: 500;
  margin: 0;
}
.pb_accordion_icon_with_text .pb_icons {
  display: flex;
  align-items: center;
  gap: 8px 26px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .pb_accordion_icon_with_text .pb_icons {
    gap: 6px 16px;
  }
}
.pb_info_wrap {
  position: relative;
  z-index: auto;
  width: 18px;
  height: 18px;
}
.pb_info_wrap .pb_info_button {
  display: block;
  width: 18px;
  height: 18px;
  padding: 2px;
  border-radius: 50%;
  background-image: url('../../images/icons/question.svg');
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center;
}
.pb_info_wrap .pb_info_button:not(:hover, :focus-visible, :focus, .active) ~ .pb_info_content {
  display: none;
}
.pb_info_wrap .pb_info_button:focus {
  outline: 2px solid var(--color-black);
}
.pb_info_wrap .pb_info_button:hover,
.pb_info_wrap .pb_info_button:focus-visible,
.pb_info_wrap .pb_info_button:focus,
.pb_info_wrap .pb_info_button.active {
  filter: brightness(0) saturate(100%) invert(25%) sepia(15%) saturate(2374%) hue-rotate(329deg) brightness(101%) contrast(100%);
}
.pb_info_wrap .pb_info_content {
  width: auto;
  min-width: 14rem;
  height: auto;
  padding: 22px 22px 18px 22px;
  position: absolute;
  z-index: 10;
  bottom: 8px;
  right: 18px;
  transform: translateY(100%);
  box-shadow: 0 10px 22px #7B341D10;
  border-radius: 5px;
  text-align: left;
  background: var(--color-white);
}
.pb_info_wrap .pb_info_content p {
  font-size: 16px !important;
  font-size: 1rem !important;
  margin: 0 0 6px 0 !important;
}
.pb_img_placeholder {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-color: var(--color-grayF4);
  background-image: url('../../images/logo_placeholder.svg');
  background-size: 120px 120px;
  background-position: center;
}
.pb_files_box {
  display: flex;
  align-items: center;
  gap: 18px;
  outline: 2px solid transparent;
  margin: 4px 0;
  padding: 10px 0;
  transition: ease-in-out 0.25s;
  border-bottom: 1px solid transparent;
}
.pb_files_box:focus-visible {
  outline: 2px solid var(--color-black);
}
.pb_files_box .pb_files_side {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pb_files_box .pb_files_icon {
  display: block;
  width: 22px;
  height: 22px;
  transition: inherit;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('../../images/icons/document_icon.svg');
}
.pb_files_box p {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
  transition: inherit;
}
.pb_files_box span {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-blackAlmost);
  margin: 0;
  visibility: hidden;
  transition: inherit;
}
@media (max-width: 768px) {
  .pb_files_box {
    gap: 14px;
    padding-bottom: 6px;
    margin-bottom: 2px;
    align-items: flex-start;
    min-height: 42px;
  }
  .pb_files_box .pb_files_icon {
    margin-top: 4px;
  }
  .pb_files_box .pb_files_side {
    flex-direction: column;
    gap: 3px;
  }
  .pb_files_box *:not(:hover,:focus-visible) span {
    height: 0;
  }
}
.pb_files_box:hover,
.pb_files_box:focus-visible {
  padding: 4px 0 22px 0;
  margin: 10px 0 16px 0;
  border-bottom: 1px solid var(--color-line);
}
@media (max-width: 768px) {
  .pb_files_box:hover,
  .pb_files_box:focus-visible {
    margin-bottom: 0;
  }
}
.pb_files_box:hover .pb_files_icon,
.pb_files_box:focus-visible .pb_files_icon {
  background-image: url('../../images/icons/download_icon.svg');
}
.pb_files_box:hover p,
.pb_files_box:focus-visible p {
  color: var(--color-main);
}
.pb_files_box:hover span,
.pb_files_box:focus-visible span {
  visibility: visible;
}
.pb_url_box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 10px 0;
  padding: 2px 0;
  transition: ease-in-out 0.25s;
}
.pb_url_box a {
  color: var(--color-main);
  text-decoration: underline;
  outline: 2px solid transparent;
}
.pb_url_box a:focus-visible {
  outline: 2px solid var(--color-black);
}
.pb_url_box a:hover,
.pb_url_box a:focus-visible {
  text-decoration: initial;
  color: var(--color-blackAlmost);
}
.pb_icon_row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px 0;
}
.pb_icon_row img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.pb_icon_row p {
  margin: 0;
}
.pb_icon_row a {
  color: var(--color-main);
  text-decoration: underline;
}
.pb_icon_row a:hover {
  text-decoration: initial;
}
.single_post_other_posts {
  display: flex;
  gap: 0;
  margin: 80px 0 100px 0;
  padding: 90px 0 0 0;
  border-top: 1px solid var(--color-line);
}
.single_post_other_posts .swiper {
  padding-bottom: 46px;
}
@media (max-width: 1400px) {
  .single_post_other_posts .swiper {
    contain: inline-size;
  }
}
@media (min-width: 769px) {
  .single_post_other_posts .swiper-button-prev,
  .single_post_other_posts .swiper-button-next {
    display: none;
  }
}
@media (max-width: 768px) {
  .single_post_other_posts .swiper .swiper-button-prev,
  .single_post_other_posts .swiper .swiper-button-next {
    color: var(--color-black);
    top: initial;
    bottom: 4px;
  }
}
.post_box {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
@media (max-width: 768px) {
  .post_box {
    max-width: 90vw;
  }
}
.post_box a,
.post_box picture {
  display: block;
  width: 100%;
}
.post_box img,
.post_box .post_box_placeholder {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 16/9;
  margin: 0;
  border-radius: 5px;
  object-fit: cover;
}
@media (min-width: 1401px) {
  .post_box img,
  .post_box .post_box_placeholder {
    max-width: 285px;
  }
}
@media (max-width: 768px) {
  .post_box img,
  .post_box .post_box_placeholder {
    max-width: initial;
  }
}
.post_box .post_box_placeholder {
  background-color: var(--color-grayF4);
  background-image: url('../../images/logo_placeholder.svg');
  background-repeat: no-repeat;
  background-size: 96px 96px;
  background-position: center;
}
@media (max-width: 768px) {
  .post_box .post_box_placeholder {
    background-size: 48px 48px;
  }
}
.post_box .post_box_date {
  font-size: 16px;
  font-size: 1rem;
  margin: 30px 0 14px 0;
}
@media (max-width: 768px) {
  .post_box .post_box_date {
    margin: 18px 0 8px 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.post_box .post_box_title {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.25em;
  margin: 0 0 14px 0;
  min-height: 2.5em;
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .post_box .post_box_title {
    font-size: 16px;
    font-size: 1rem;
    margin: 0 0 8px 0;
  }
}
.post_box .post_box_read_more {
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
  text-decoration: underline;
}
.breadcrumbs_row {
  margin: 0 0 26px 0;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .breadcrumbs_row {
    margin: 0 0 16px 0;
  }
}
.breadcrumbs_row .container {
  display: flex;
  align-items: center;
  gap: 4px 14px;
  flex-wrap: wrap;
  max-width: initial;
  width: 100%;
}
@media (max-width: 768px) {
  .breadcrumbs_row .container {
    gap: 4px 10px;
  }
}
.breadcrumbs_row .container .br_box {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 600px;
}
@media (max-width: 768px) {
  .breadcrumbs_row .container .br_box {
    font-size: 14px;
    font-size: 0.875rem;
    position: relative;
    top: 2px;
  }
  .breadcrumbs_row .container .br_box p {
    max-width: 65vw;
  }
}
.breadcrumbs_row .container .br_box.br_box_active {
  display: none;
}
.breadcrumbs_row svg {
  display: block;
  width: 8px;
  height: 8px;
  opacity: 0.5;
}
.breadcrumbs_row a,
.breadcrumbs_row p {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1em;
  color: var(--color-gray);
  margin: 0;
}
@media (max-width: 768px) {
  .breadcrumbs_row a,
  .breadcrumbs_row p {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: -0.2px;
  }
}
.breadcrumbs_row a {
  text-decoration: initial;
}
.breadcrumbs_row a:hover {
  text-decoration: underline;
}
.team_box {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
@media (max-width: 768px) {
  .team_box {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
.team_box .team_box_up {
  width: 100%;
  height: 340px;
  margin: 0 0 12px 0;
  position: relative;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .team_box .team_box_up {
    height: 400px;
  }
}
@media (max-width: 500px) {
  .team_box .team_box_up {
    height: auto;
    aspect-ratio: 10 / 12;
  }
}
.team_box .team_box_upper,
.team_box .team_box_upper_placeholder {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  margin: 0;
}
.team_box .team_box_upper img,
.team_box .team_box_upper_placeholder img,
.team_box .team_box_upper picture,
.team_box .team_box_upper_placeholder picture {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.team_box .team_box_upper_placeholder {
  background-color: var(--color-grayF4);
  background-image: url('../../images/logo_placeholder.svg');
  background-repeat: no-repeat;
  background-size: 96px 96px;
  background-position: center;
}
.team_box .team_box_name {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 3px 0;
}
@media (max-width: 768px) {
  .team_box .team_box_name {
    font-size: 16px;
    font-size: 1rem;
  }
}
.team_box .team_box_role {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.4em;
  min-height: 2.8em;
}
@media (max-width: 768px) {
  .team_box .team_box_role {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.team_box:not(:hover) .team_box_hover_content {
  display: none;
}
.team_box .team_box_hover_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-tertiary);
  border-radius: inherit;
  padding: 18px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: end;
}
@media (max-width: 768px) {
  .team_box .team_box_hover_content {
    padding: 12px 12px 8px 12px;
  }
}
.team_box .team_box_hover_content::before {
  content: '';
  position: absolute;
  top: 18px;
  right: 16px;
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-image: url('../../images/logo_placeholder.svg');
  background-size: contain;
  background-position: center;
}
.team_box .team_box_hover_content p {
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  color: var(--color-white);
  margin: 0 0 13px 0;
}
@media (max-width: 768px) {
  .team_box .team_box_hover_content p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.team_box .team_box_hover_content p a {
  color: inherit;
  text-decoration: underline;
}
.team_box .team_box_hover_content p a:hover,
.team_box .team_box_hover_content p a:focus-visible {
  text-decoration: initial;
}
.team_box .team_box_hover_content .team_box_hover_title {
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 0 0 7px 0;
}
.team_box .team_box_hover_content .team_box_email_wrap {
  margin: 0 0 12px 0;
  width: 100%;
}
.team_box .team_box_hover_content .team_box_email_wrap p {
  margin: 0;
  word-wrap: break-word;
}
body .popup_close {
  display: block;
  cursor: pointer;
  border: initial;
  border-radius: 5px;
  outline: 2px solid transparent;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 8px;
  right: 7px;
  width: 8px;
  height: 8px;
  background: initial;
  background-image: url('../../images/icons/menu_close.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
body .popup_close:focus-visible {
  outline: 2px solid var(--color-black);
}
body .popup_close.large_size {
  top: 11px;
  right: 10px;
  width: 10px;
  height: 10px;
}
.page_h1 {
  font-weight: 500;
  font-family: "EB Garamond", serif;
  margin: 0 0 40px 0;
}
@media (min-width: 769px) {
  .page_h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .page_h1 {
    font-size: 25px;
    font-size: 1.5625rem;
    margin: 0 0 36px 0;
  }
}
.archive_events .page_h1 {
  text-align: center;
}
.archive_events .events_archive_filter_row {
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 0 68px 0;
}
@media (max-width: 1200px) {
  .archive_events .events_archive_filter_row {
    flex-direction: column;
    gap: 5px;
    height: auto;
  }
  .archive_events .events_archive_filter_row .events_filter input {
    height: 55px !important;
  }
}
@media (max-width: 768px) {
  .archive_events .events_archive_filter_row {
    margin: 0 0 36px 0;
  }
}
.archive_events .events_archive_filter_row .events_filter {
  width: auto;
  max-width: 350px;
  flex-grow: 1;
  height: 100%;
  display: flex;
  border-radius: 0;
  position: relative;
}
.archive_events .events_archive_filter_row .events_filter:first-of-type {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media (max-width: 1200px) {
  .archive_events .events_archive_filter_row .events_filter {
    width: 100%;
    max-width: 600px;
  }
}
.archive_events .events_archive_filter_row .events_filter input,
.archive_events .events_archive_filter_row .events_filter .nice-select {
  width: 100%;
  height: 100%;
  max-width: initial;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: inherit;
  padding: 10px 24px;
  margin: 0;
  font-weight: 400;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}
.archive_events .events_archive_filter_row .events_filter input::placeholder,
.archive_events .events_archive_filter_row .events_filter .nice-select::placeholder {
  color: var(--color-blackAlmost);
  opacity: 1;
}
@media (max-width: 768px) {
  .archive_events .events_archive_filter_row .events_filter input,
  .archive_events .events_archive_filter_row .events_filter .nice-select {
    height: 55px;
    font-size: 16px;
    font-size: 1rem;
    border-radius: 5px;
  }
}
.archive_events .events_archive_filter_row .events_filter .nice-select {
  padding-right: 40px;
}
.archive_events .events_archive_filter_row .events_filter.events_filter_date #event_date {
  padding-right: 64px;
}
.archive_events .events_archive_filter_row .events_filter.events_filter_date #event_date:not([aria-expanded="true"]) ~ .events_filter_popup {
  display: none;
}
.archive_events .events_archive_filter_row .events_filter.events_filter_date::before {
  content: '';
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid var(--color-grayBB);
  background-color: transparent;
  background-image: url('../../images/icons/calendar.svg');
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: center;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 768px) {
  .archive_events .events_archive_filter_row .events_filter.events_filter_date::before {
    width: 32px;
    height: 32px;
    background-size: 18px 18px;
  }
}
.archive_events .events_archive_filter_row .events_filter .events_filter_popup {
  width: 100%;
  position: absolute;
  z-index: 20;
  bottom: -4px;
  left: 0;
  transform: translateY(100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-white);
  box-shadow: 0px 10px 22px #7B341D10;
  border-radius: 5px;
}
.archive_events .events_archive_filter_row .events_filter .events_filter_clear {
  display: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-grayF4);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 28px;
  background-repeat: no-repeat;
  background-size: 9px 9px;
  background-image: url('../../images/icons/clear_filter_x.svg');
  background-position: center;
}
.archive_events .events_archive_filter_row .events_filter > *.in_usage ~ .events_filter_clear {
  display: block;
}
.archive_events .events_archive_filter_row .events_filter #event_date_clear {
  right: 82px;
}
@media (max-width: 768px) {
  .archive_events .events_archive_filter_row .events_filter #event_date_clear {
    right: 72px;
  }
}
.archive_events .events_archive_filter_row .events_filter #event_category_clear,
.archive_events .events_archive_filter_row .events_filter #event_location_clear {
  right: 62px;
}
.archive_events .events_archive_filter_row button[type="submit"] {
  width: 100px;
  height: 100%;
  border-radius: 0 5px 5px 0;
  background-color: var(--color-main);
  background-image: url('../../images/icons/search_white.svg');
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: center;
}
@media (max-width: 1200px) {
  .archive_events .events_archive_filter_row button[type="submit"] {
    width: 100%;
    height: 55px;
    border-radius: 5px;
    max-width: 600px;
  }
}
.archive_events .events_archive_content_wrap {
  position: relative;
  z-index: 5;
  min-height: 380px;
}
.archive_events .events_archive_content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 62px 0;
  min-height: 180px;
  transition: ease-in-out 0.25s;
}
@media (max-width: 1400px) {
  .archive_events .events_archive_content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  .archive_events .events_archive_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .archive_events .events_archive_content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.archive_events .events_archive_content .events_box {
  width: 100%;
}
.archive_events.archive > .container {
  max-width: 1540px;
}
.archive_events.archive .events_archive_content {
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}
.archive_events.archive .for_standard {
  display: none;
}
.archive_events.archive .for_ongoing {
  display: none;
}
.archive_events:not(.archive) .for_archive {
  display: none;
}
.archive_events:not(.archive) .for_ongoing {
  display: none;
}
.archive_events:not(.archive) .nice-select ul.list li[data-value="brivibas-bulvaris-32"] {
  display: none;
}
.archive_events:not(.archive) .nice-select ul.list li[data-value="brivibas-bulvaris-32-en"] {
  display: none;
}
.archive_events:not(.archive) .nice-select ul.list li[data-value="zinas"] {
  display: none;
}
.archive_events:not(.archive) .nice-select ul.list li[data-value="zinas-en"] {
  display: none;
}
.archive_events:not(.archive) .nice-select ul.list li[data-value="news"] {
  display: none;
}
.archive_events:not(.archive) .nice-select ul.list li[data-value*="ekspozicija"] {
  display: none;
}
.archive_events:not(.archive) .nice-select ul.list li[data-value="izstade"] {
  display: none;
}
.archive_events:not(.archive) .nice-select ul.list li[data-value="exhibition"] {
  display: none;
}
.archive_events:not(.archive) .nice-select ul.list li[data-value="exposition"] {
  display: none;
}
.archive_events.ongoing .for_standard {
  display: none;
}
.archive_events.ongoing .for_archive {
  display: none;
}
.archive_events.ongoing .for_ongoing {
  display: block;
}
.archive_events.ongoing .events_filter_date {
  display: none;
}
.archive_events:not(.processing_ajax) .lds-ellipsis {
  display: none;
}
.archive_events.processing_ajax .events_archive_content {
  opacity: 0.5;
}
.archive_events .events_archive_lower {
  margin: 0 0 72px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.archive_events .events_archive_lower .btn.btn_style_underline {
  margin: 0;
}
@media (max-width: 768px) {
  .archive_events .events_archive_lower {
    margin: 0 0 48px 0;
    flex-wrap: wrap;
  }
  .archive_events .events_archive_lower .btn.btn_style_underline {
    width: 100%;
    text-align: center;
    margin: 0 0 42px 0;
  }
}
.archive_events .events_archive_no_results {
  opacity: 0;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: ease-in-out 0.5s;
}
.archive_events.no_results .events_archive_content {
  min-height: 0;
}
.archive_events.no_results .events_archive_no_results {
  opacity: 1;
  height: auto;
  visibility: visible;
  overflow: initial;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 0 48px 0;
}
.archive_events.no_results .events_archive_no_results h3 {
  font-weight: 400;
  font-size: 26px;
  font-size: 1.625rem;
  color: var(--color-blackAlmost);
  margin: 0 0 16px 0;
}
.archive_events.no_results .events_archive_no_results .btn {
  margin: 0;
}
.archive_events.no_results .events_archive_lower {
  display: none;
}
.archive_events .btn.btn_style_underline {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 0;
  margin: 16px 0;
  color: var(--color-main);
  text-decoration: underline;
  border: initial;
}
@media (max-width: 768px) {
  .pagination_wrap > div:last-child {
    margin: 0 0 0 auto;
  }
}
.pagination_wrap .pagination_buttons {
  display: flex;
  gap: 16px;
}
.pagination_wrap .pagination_buttons .page_prev,
.pagination_wrap .pagination_buttons .page_next {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 42px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25em;
  color: var(--color-white);
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  .pagination_wrap .pagination_buttons .page_prev,
  .pagination_wrap .pagination_buttons .page_next {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.pagination_wrap .pagination_buttons .page_prev:hover,
.pagination_wrap .pagination_buttons .page_next:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0 0 0 1px;
}
.pagination_wrap .pagination_buttons .page_prev.disabled,
.pagination_wrap .pagination_buttons .page_next.disabled {
  cursor: not-allowed;
  opacity: 0.75;
}
.pagination_wrap .pagination_buttons .page_prev {
  width: 42px;
  background-image: url('../../images/icons/page_prev.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.pagination_wrap .pagination_buttons .page_next {
  transform: rotate(180deg);
  width: 42px;
  background-image: url('../../images/icons/page_prev.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.pagination_wrap .pagination_status {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .pagination_wrap .pagination_status {
    gap: 10px;
  }
}
.pagination_wrap .pagination_status .ps_text_1,
.pagination_wrap .pagination_status .ps_text_3,
.pagination_wrap .pagination_status .ps_text_4 {
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-black);
  margin: 0;
}
@media (max-width: 768px) {
  .pagination_wrap .pagination_status .ps_text_1,
  .pagination_wrap .pagination_status .ps_text_3,
  .pagination_wrap .pagination_status .ps_text_4 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 400px) {
  .pagination_wrap .pagination_status .ps_text_1,
  .pagination_wrap .pagination_status .ps_text_3,
  .pagination_wrap .pagination_status .ps_text_4 {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.pagination_wrap .pagination_status .ps_text_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: initial;
  border-radius: 50%;
  padding: 0;
  background: var(--color-grayF4);
  text-align: center;
  user-select: all;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-black);
}
@media (max-width: 768px) {
  .pagination_wrap .pagination_status .ps_text_2 {
    width: 32px;
    height: 32px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 400px) {
  .pagination_wrap .pagination_status .ps_text_2 {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.page-404 .container {
  padding: 64px 0 72px 0;
}
.page-404 .container h1,
.page-404 .container p {
  margin: 0 auto;
  color: var(--color-blackAlmost);
  max-width: 34.375rem;
  text-align: center;
}
.page-404 .container h1 {
  font-weight: 400;
  font-size: 32px;
  font-size: 2rem;
  margin: 0 auto 28px auto;
}
.page-404 .error-404-title,
.page-404 .error-404-text {
  text-align: center;
}
.page-404 .error-404-title {
  font-size: 21px;
  line-height: 36px;
  margin: 40px 0 12px 0;
}
.page-404 .error-404-text {
  font-size: 60px;
  font-weight: 600;
  display: block;
  margin-bottom: 30px;
  color: black;
}
.page-404 a.error-404-btn {
  background: #35606e;
  height: 46px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 24px;
  font-size: 18px;
  color: white;
  transition: ease-in-out 0.18s;
  margin: 0 auto 90px auto;
  text-decoration: none;
}
.page-404 .error-404-btn:hover {
  background: #2a4c57;
}
section.full_gallery {
  overflow: hidden;
}
section.full_gallery .pb_gallery {
  margin: 0 0 60px 0;
}
@media (max-width: 768px) {
  section.full_gallery .pb_gallery {
    margin: 0 0 40px 0;
  }
}
section.full_gallery .pb_gallery .swiper {
  overflow: initial;
}
section.full_gallery .pb_gallery .swiper-slide {
  transition: ease-in-out 0.1s;
}
section.full_gallery .pb_gallery .swiper-slide img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 5px;
  max-height: 545px;
}
section.full_gallery .pb_gallery .swiper-slide.square img {
  aspect-ratio: 1/1;
}
section.full_gallery .pb_gallery .swiper-slide.news img {
  aspect-ratio: 2.2/1;
}
section.full_gallery .pb_gallery .swiper-slide:not(.swiper-slide-active) {
  opacity: 0;
  scale: 0.95;
  visibility: hidden;
}
section.full_gallery .pb_gallery .swiper-button-prev {
  left: -80px;
}
@media (max-width: 1400px) {
  section.full_gallery .pb_gallery .swiper-button-prev {
    left: 36px;
  }
}
@media (max-width: 1000px) {
  section.full_gallery .pb_gallery .swiper-button-prev {
    left: calc(50% - 44px);
    transform: translateX(-50%);
    top: initial;
    bottom: 0;
  }
}
section.full_gallery .pb_gallery .swiper-button-next {
  right: -80px;
}
@media (max-width: 1400px) {
  section.full_gallery .pb_gallery .swiper-button-next {
    right: 36px;
  }
}
@media (max-width: 1000px) {
  section.full_gallery .pb_gallery .swiper-button-next {
    right: calc(50% - 44px);
    transform: translateX(50%);
    top: initial;
    bottom: 0;
  }
}
section.full_gallery .pb_gallery_title p {
  margin: 30px auto 0 auto;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 55px;
  font-size: 3.4375rem;
  text-align: center;
  color: var(--color-blackAlmost);
}
@media (max-width: 768px) {
  section.full_gallery .pb_gallery_title p {
    font-size: 25px;
    font-size: 1.5625rem;
    margin: 24px auto 0 auto;
  }
}
section.search_wrap h1 {
  font-weight: 500;
  font-family: "EB Garamond", serif;
  font-size: 32px;
  font-size: 2rem;
  margin: 0 auto 42px auto;
  text-align: center;
}
@media (max-width: 768px) {
  section.search_wrap h1 {
    font-size: 25px;
    font-size: 1.5625rem;
    margin: 0 auto 32px auto;
  }
}
section.search_wrap form.search_page_upper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 65px;
  margin: 0 0 68px 0;
}
@media (max-width: 768px) {
  section.search_wrap form.search_page_upper {
    height: 55px;
    gap: 0;
    margin: 0 0 44px 0;
  }
}
section.search_wrap form.search_page_upper input[type="search"] {
  width: 100%;
  max-width: 640px;
  height: 100%;
  border: 1px solid var(--color-line);
  border-radius: 5px 0 0 5px;
  padding: 20px 24px;
  margin: 0;
  background: var(--color-white);
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-blackAlmost);
}
@media (max-width: 768px) {
  section.search_wrap form.search_page_upper input[type="search"] {
    font-size: 16px;
    font-size: 1rem;
  }
}
section.search_wrap form.search_page_upper button[type="submit"] {
  width: 100px;
  height: 100%;
  position: relative;
  z-index: 12;
  background: initial;
  border: initial;
  border-radius: 5px;
  padding: 5px;
  margin: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: 22px 22px;
  background-position: center;
  background-image: url(../../images/icons/search_white.svg);
  background-color: var(--color-main);
  border-radius: 0 5px 5px 0;
  color: var(--color-white);
}
@media (max-width: 768px) {
  section.search_wrap form.search_page_upper button[type="submit"] {
    max-width: 55px;
  }
}
section.search_wrap .search_result_wrap {
  margin: 0 0 60px 0;
}
section.search_wrap .search_result_lower {
  margin: 0 0 148px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.search_wrap .search_result_lower .search_result_count {
  margin: 0;
}
@media (max-width: 768px) {
  section.search_wrap .search_result_lower {
    margin: 0 0 48px 0;
    flex-wrap: wrap;
  }
  section.search_wrap .search_result_lower .search_result_count {
    width: 100%;
    text-align: center;
    margin: 0 0 42px 0;
  }
}
body .lnvm_panzoom_popup {
  max-width: 1850px;
  width: 100%;
  padding: 50px 40px 45px 40px;
  max-height: calc(100vh - 48px);
  min-height: 500px;
}
@media (max-width: 768px) {
  body .lnvm_panzoom_popup {
    padding: 40px 0 36px 0;
  }
}
body .lnvm_panzoom_popup button.f-button.is-close-btn {
  display: none;
}
body .lnvm_panzoom_popup .structure_popup_upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-line);
  padding: 0 0 28px 0;
  margin: 0 0 50px 0;
}
@media (max-width: 768px) {
  body .lnvm_panzoom_popup .structure_popup_upper {
    justify-content: center;
    text-align: center;
    padding: 0 40px 32px 40px;
  }
}
body .lnvm_panzoom_popup .structure_popup_upper p {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0;
  color: var(--color-blackAlmost);
}
@media (max-width: 768px) {
  body .lnvm_panzoom_popup .structure_popup_upper p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
body .lnvm_panzoom_popup .structure_popup_upper .structure_popup_close {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
  padding: 4px 2px;
}
body .lnvm_panzoom_popup .structure_popup_upper .structure_popup_close svg {
  display: block;
  width: 15px;
  height: 15px;
}
@media (max-width: 768px) {
  body .lnvm_panzoom_popup .structure_popup_upper .structure_popup_close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0;
  }
}
body .lnvm_panzoom_popup .f-panzoom__toolbar {
  position: absolute;
  bottom: 3px;
  right: 3px;
  display: flex;
  flex-direction: row-reverse;
  gap: 28px;
}
body .lnvm_panzoom_popup .f-panzoom__toolbar button[data-panzoom-action="zoomIn"],
body .lnvm_panzoom_popup .f-panzoom__toolbar button[data-panzoom-action="zoomOut"] {
  background: initial;
  width: 42px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: ease-in-out 0.25s;
  border-radius: 50%;
}
body .lnvm_panzoom_popup .f-panzoom__toolbar button[data-panzoom-action="zoomIn"] svg,
body .lnvm_panzoom_popup .f-panzoom__toolbar button[data-panzoom-action="zoomOut"] svg {
  display: none;
}
body .lnvm_panzoom_popup .f-panzoom__toolbar button[data-panzoom-action="zoomIn"]:not([disabled]):hover,
body .lnvm_panzoom_popup .f-panzoom__toolbar button[data-panzoom-action="zoomOut"]:not([disabled]):hover {
  box-shadow: rgba(6, 24, 44, 0.3) 0 0 0 2px, rgba(6, 24, 44, 0.55) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0 1px 0 inset;
}
body .lnvm_panzoom_popup .f-panzoom__toolbar button[data-panzoom-action="zoomIn"][disabled],
body .lnvm_panzoom_popup .f-panzoom__toolbar button[data-panzoom-action="zoomOut"][disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
body .lnvm_panzoom_popup .f-panzoom__toolbar button[data-panzoom-action="zoomIn"] {
  background-image: url('../../images/icons/circle_plus.svg');
}
body .lnvm_panzoom_popup .f-panzoom__toolbar button[data-panzoom-action="zoomOut"] {
  background-image: url('../../images/icons/circle_minus.svg');
}
body .lnvm_panzoom_popup .f-panzoom .f-panzoom__content {
  max-width: 1300px;
}
@media (max-width: 768px) {
  body .lnvm_panzoom_popup .f-panzoom .f-panzoom__content {
    margin: 0;
  }
}
body .popup_service_apply {
  width: 100%;
  max-width: 544px;
  border-radius: 5px;
  background: var(--color-grayF4);
  padding: 0;
  --fancybox-color: var(--color-black);
}
body .popup_service_apply[aria-hidden="true"] {
  display: none;
}
@media (max-width: 768px) {
  body .popup_service_apply {
    margin: auto auto 0 auto;
    max-height: 100%;
    overflow-y: auto;
    border-radius: 5px 5px 0 0;
  }
}
body .popup_service_apply .f-button.is-close-btn {
  top: 14px;
  right: 14px;
  opacity: initial;
}
.form_service_apply.processing_ajax .pb_form_slide:not(.pb_form_slide) {
  opacity: 0.5;
}
.form_service_apply:not(.processing_ajax) .lds-ellipsis {
  display: none;
}
.form_service_apply .pb_form_slide {
  width: 100%;
  padding: 40px 52px 46px 52px;
  min-height: 400px;
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  .form_service_apply .pb_form_slide {
    padding: 32px 26px 34px 26px;
  }
}
.form_service_apply .pb_form_slide .pb_form_upper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin: 0 0 28px 0;
}
.form_service_apply .pb_form_slide .pb_form_upper .pb_form_step_back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  display: block;
  width: 32px;
  height: 32px;
  background-image: url('../../images/icons/left_arrow.svg');
  background-repeat: no-repeat;
  background-size: 21px 21px;
  background-position: center;
}
.form_service_apply .pb_form_slide .pb_form_upper p {
  font-weight: 600;
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0;
}
.form_service_apply .pb_form_slide .pb_form_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form_service_apply .pb_form_slide .pb_form_content .pb_form_input_row_date {
  display: grid;
  grid-template-columns: calc(65% - 5px) calc(35% - 5px);
  gap: 10px;
}
@media (max-width: 500px) {
  .form_service_apply .pb_form_slide .pb_form_content .pb_form_input_row_date {
    grid-template-columns: 1fr;
  }
}
.form_service_apply .pb_form_slide .pb_form_content .pb_form_input_row_date.without_time {
  display: flex;
  width: 100%;
}
.form_service_apply .pb_form_slide .pb_form_content .pb_form_input_row_date.without_time .pb_input_wrap {
  width: 100%;
}
.form_service_apply .pb_form_slide .pb_form_confirm {
  margin: 18px 0 0 0;
}
.form_service_apply .pb_form_slide .pb_form_confirm button[type="button"] {
  width: 100%;
  background: var(--color-main);
  padding: 20px 4px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2em;
  color: var(--color-white);
}
.form_service_apply .pb_form_slide .pb_form_agree {
  display: flex;
  justify-content: center;
  margin: 25px 0 30px 0;
}
.form_service_apply .pb_form_slide .pb_form_success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  min-height: 314px;
}
.form_service_apply .pb_form_slide .pb_form_success .pb_form_success_text_1 {
  font-weight: 600;
  font-size: 26px;
  font-size: 1.625rem;
  margin: 0 0 16px 0;
}
.form_service_apply .pb_form_slide .pb_form_success .pb_form_success_text_2 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 22px 0;
}
.form_service_apply .pb_form_slide .pb_form_success .btn {
  display: flex;
  align-items: center;
  height: 65px;
  padding-left: 28px;
  padding-right: 28px;
}
.form_service_apply .pb_form_slide.slide_1 .pb_input_wrap textarea {
  height: 223px;
}
.form_wrap .pb_form_input_row_double {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  .form_wrap .pb_form_input_row_double {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .form_wrap.time_popup_open::before,
  .form_wrap.calendar_popup_open::before {
    content: '';
    position: absolute;
    z-index: 15;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
}
.pb_input_wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
.pb_input_wrap input:not([type="checkbox"]),
.pb_input_wrap .nice-select {
  height: 55px;
}
.pb_input_wrap input:not([type="checkbox"]),
.pb_input_wrap textarea,
.pb_input_wrap .nice-select {
  display: flex;
  width: 100%;
  border-radius: 5px;
  background: var(--color-white);
  padding: 16px 25px;
  margin: 0;
  border: initial;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-blackAlmost);
}
.pb_input_wrap input:not([type="checkbox"]):not(:focus-visible).error,
.pb_input_wrap textarea:not(:focus-visible).error,
.pb_input_wrap .nice-select:not(:focus-visible).error {
  outline: 2px solid var(--color-error);
}
@media (max-width: 768px) {
  .pb_input_wrap input:not([type="checkbox"]),
  .pb_input_wrap textarea,
  .pb_input_wrap .nice-select {
    padding: 15px 20px;
  }
}
.pb_input_wrap textarea {
  min-height: 55px;
  max-height: 550px;
  height: 103px;
  resize: vertical;
}
.pb_input_wrap .nice-select {
  width: 100%;
  height: 55px;
  padding-left: 25px;
  max-width: initial;
}
@media (max-width: 768px) {
  .pb_input_wrap .nice-select {
    padding-left: 20px;
  }
}
.pb_input_wrap select.error + .nice-select:not(:focus-visible) {
  outline: 2px solid var(--color-error);
}
.pb_input_wrap input:not([type="checkbox"]).error ~ .input_error_message,
.pb_input_wrap textarea.error ~ .input_error_message,
.pb_input_wrap select.error ~ .input_error_message {
  display: block;
  height: calc(0.875rem * 1.2);
  opacity: 1;
  visibility: visible;
  margin: 7px 0 4px 0;
}
.pb_input_wrap .input_error_message {
  visibility: hidden;
  display: block;
  height: 0;
  opacity: 0;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2em;
  color: var(--color-error);
  margin: 0;
  transition: ease-in-out 0.25s;
}
.pb_input_wrap.disabled {
  cursor: not-allowed;
}
.pb_input_wrap.pb_input_date input:not([type="checkbox"]) {
  padding-right: 46px;
}
.pb_input_wrap.pb_input_date input:not([type="checkbox"]):not([aria-expanded="true"]) ~ .date_filter_popup {
  display: none;
}
.pb_input_wrap.pb_input_date .date_filter_popup {
  width: 360px;
  max-width: 360px;
  position: absolute;
  z-index: 20;
  bottom: -4px;
  left: 0;
  transform: translateY(100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-white);
  box-shadow: 0 10px 22px #7B341D10;
  border-radius: 5px;
}
@media (min-width: 1000px) and (max-width: 1700px) and (max-height: 800px) {
  .pb_input_wrap.pb_input_date .date_filter_popup {
    bottom: initial;
    top: -4px;
    transform: translateY(-100%);
  }
}
@media (max-width: 768px) {
  .pb_input_wrap.pb_input_date .date_filter_popup {
    max-width: calc(100vw - 40px);
    position: fixed;
    z-index: 25;
    bottom: initial;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.pb_input_wrap.pb_input_date::before {
  content: '';
  position: absolute;
  transform: translateY(-50%);
  top: calc(55px / 2);
  right: 25px;
  width: 20px;
  height: 20px;
  background-image: url(../../images/icons/calendar.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pb_input_wrap.pb_input_time input:not([type="checkbox"]) {
  padding-right: 46px;
}
.pb_input_wrap.pb_input_time .time_filter_popup {
  width: 150px;
  max-width: 150px;
  position: absolute;
  z-index: 20;
  bottom: -4px;
  right: 0;
  transform: translateY(100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-white);
  box-shadow: 0px 10px 22px #7B341D10;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .pb_input_wrap.pb_input_time .time_filter_popup {
    position: fixed;
    z-index: 25;
    bottom: initial;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_choice_row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_choice_row .time_hour_decrease,
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_choice_row .time_hour_increase,
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_choice_row .time_minute_decrease,
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_choice_row .time_minute_increase {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url('../../images/icons/chevron_down.svg');
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: center;
}
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_choice_row .time_hour_decrease,
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_choice_row .time_minute_decrease {
  transform: rotate(90deg);
}
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_choice_row .time_hour_increase,
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_choice_row .time_minute_increase {
  transform: rotate(270deg);
}
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_choice_row .time_hour_value,
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_choice_row .time_minute_value {
  position: relative;
  top: -2px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 40px;
}
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_row_separator {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_row_separator > div {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-gray);
}
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_lower {
  margin: 12px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pb_input_wrap.pb_input_time .time_filter_popup .time_filter_content .time_filter_lower button {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-main);
  text-decoration: underline;
  text-align: center;
  padding: 0;
  margin: 0;
}
.pb_input_wrap.pb_input_time::before {
  content: '';
  position: absolute;
  transform: translateY(-50%);
  top: calc(55px / 2);
  right: 25px;
  width: 18px;
  height: 18px;
  background-image: url(../../images/icons/clock.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pb_input_wrap.pb_input_group_size .group_size_box {
  height: 55px;
  display: flex;
  gap: 2px;
  align-items: center;
  width: 100%;
  border-radius: 5px;
  background: var(--color-white);
  padding: 0 25px;
}
.pb_input_wrap.pb_input_group_size .group_size_box label {
  flex-grow: 1;
}
.pb_input_wrap.pb_input_group_size .group_size_box input[type="number"] {
  padding: 0;
  width: 60px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
.pb_input_wrap.pb_input_group_size .group_size_decrease,
.pb_input_wrap.pb_input_group_size .group_size_increase {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background-color: var(--color-grayF4);
  background-repeat: no-repeat;
  background-position: center;
}
.pb_input_wrap.pb_input_group_size .group_size_decrease {
  background-size: 7px 7px;
  background-image: url('../../images/icons/minus.svg');
}
.pb_input_wrap.pb_input_group_size .group_size_increase {
  background-size: 10px 10px;
  background-image: url('../../images/icons/plus.svg');
}
.article_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 0 30px 0;
  padding: 0 0 36px 0;
  border-bottom: 1px solid var(--color-line);
}
.article_box .article_box_upper {
  width: 100%;
  height: 248px;
  border-radius: 5px;
}
.article_box .article_box_upper a,
.article_box .article_box_upper img,
.article_box .article_box_upper .article_box_placeholder {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.article_box .article_box_upper img {
  object-fit: cover;
}
.article_box .article_box_lower {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 12px;
}
.article_box .article_box_lower h3 {
  font-weight: 500;
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0;
}
@media (max-width: 768px) {
  .article_box .article_box_lower h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.article_box .article_box_lower h4 {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  margin: -2px 0 6px 0;
}
@media (max-width: 768px) {
  .article_box .article_box_lower h4 {
    font-size: 16px;
    font-size: 1rem;
  }
}
.article_box .article_box_lower p {
  margin: 0;
}
.article_box .article_box_placeholder {
  background-repeat: no-repeat;
  background-color: var(--color-grayF4);
  background-image: url('../../images/logo_placeholder.svg');
  background-size: 128px 128px;
  background-position: center;
}
@media (min-width: 1001px) {
  .pb_free_text + .pb_accordion {
    margin-top: -30px;
  }
  .pb_free_text + .pb_tab_part {
    margin-top: -10px;
  }
  .pb_free_text + .pb_location {
    border-top: initial;
  }
}
#map_wrap {
  height: 460px;
  width: 100%;
  position: relative;
  margin: 54px 0 0 0;
}
@media (max-width: 768px) {
  #map_wrap {
    height: 550px;
    margin: 320px 0 0 0;
  }
}
#map_wrap #map {
  display: block;
  height: 100%;
}
#map_wrap .container {
  position: relative;
  z-index: 5;
}
#map_wrap .map_content_simple,
#map_wrap .map_content_multiple {
  position: absolute;
  left: 0;
  bottom: 52px;
  transform: translateY(100%);
  width: 21.25rem;
  box-shadow: 0 3px 6px #00000029;
  border-radius: 5px;
  background: var(--color-white);
  padding: 25px 30px 22px 30px;
}
@media (max-width: 768px) {
  #map_wrap .map_content_simple,
  #map_wrap .map_content_multiple {
    bottom: initial;
    top: -270px;
    transform: initial;
  }
}
@media (max-width: 500px) {
  #map_wrap .map_content_simple,
  #map_wrap .map_content_multiple {
    width: 100%;
  }
}
#map_wrap .map_content_simple p,
#map_wrap .map_content_multiple p {
  margin: 0 0 18px 0;
  max-width: 15rem;
}
#map_wrap .map_content_simple .box_title,
#map_wrap .map_content_multiple .box_title {
  margin: 0 0 7px 0;
  font-weight: 600;
}
@media (max-width: 768px) {
  #map_wrap .map_content_simple .box_title,
  #map_wrap .map_content_multiple .box_title {
    text-align: center;
    max-width: 13rem;
    margin: 0 auto 6px auto;
  }
}
#map_wrap .map_content_simple .map_buttons,
#map_wrap .map_content_multiple .map_buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
#map_wrap .map_content_simple .map_buttons a,
#map_wrap .map_content_multiple .map_buttons a {
  display: block;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#map_wrap .map_content_simple .map_buttons .waze,
#map_wrap .map_content_multiple .map_buttons .waze {
  background-image: url('../../images/icons/square_waze.svg');
}
#map_wrap .map_content_simple .map_buttons .google_maps,
#map_wrap .map_content_multiple .map_buttons .google_maps {
  background-image: url('../../images/icons/square_g.svg');
}
#map_wrap .map_content_simple .map_buttons .map_buttons_right_text,
#map_wrap .map_content_multiple .map_buttons .map_buttons_right_text {
  display: flex;
  align-items: center;
  margin: 0 0 0 14px;
}
#map_wrap .map_content_simple .map_buttons .map_buttons_right_text p,
#map_wrap .map_content_multiple .map_buttons .map_buttons_right_text p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  max-width: 8.5rem;
}
#map_wrap .map_content_multiple {
  left: initial;
  right: 0;
  bottom: 24px;
}
@media (min-width: 1500px) {
  #map_wrap .map_content_multiple {
    right: 240px;
  }
}
@media (max-width: 768px) {
  #map_wrap .map_content_multiple {
    bottom: initial;
    top: -270px;
  }
}
#map_wrap .map_content_multiple .accordion_wrap {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
#map_wrap .map_content_multiple .accordion_box {
  width: 100%;
}
#map_wrap .map_content_multiple .accordion_box:not(:last-of-type) {
  border-bottom: 1px solid var(--color-line);
}
#map_wrap .map_content_multiple .accordion_box .accordion_btn {
  width: 100%;
  height: auto;
  padding: 22px 0;
  text-align: left;
  position: relative;
  font-family: inherit;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-blackAlmost);
  line-height: 1.25em;
}
#map_wrap .map_content_multiple .accordion_box .accordion_btn::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url('../../images/icons/chevron_down.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: ease-in-out 0.25s;
}
#map_wrap .map_content_multiple .accordion_box .accordion_btn[aria-expanded="true"] {
  color: var(--color-main);
}
#map_wrap .map_content_multiple .accordion_box .accordion_btn[aria-expanded="true"]::before {
  transform: translateY(-50%) rotate(180deg);
  top: 48%;
}
#map_wrap .map_content_multiple .accordion_box .accordion_content {
  padding: 3px 0 28px 0;
  transition: ease-in-out 0.25s;
  position: relative;
  z-index: 5;
}
#map_wrap .map_content_multiple .accordion_box .accordion_btn:not([aria-expanded="true"]) ~ .accordion_content {
  visibility: hidden;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.post_featured_img_wrap {
  margin: 0 0 24px 0;
  display: flex;
  justify-content: center;
}
.post_featured_img_wrap picture,
.post_featured_img_wrap img {
  display: block;
}
.post_navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 20px 0;
}
.post_navigation .prev_post,
.post_navigation .next_post {
  flex-shrink: 0;
  display: block;
  height: 42px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25em;
  color: var(--color-white);
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  .post_navigation .prev_post,
  .post_navigation .next_post {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.post_navigation .prev_post:hover,
.post_navigation .next_post:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0 0 0 1px;
}
.post_navigation .prev_post.disabled,
.post_navigation .next_post.disabled {
  cursor: not-allowed;
  opacity: 0.75;
}
.post_navigation .prev_post a,
.post_navigation .next_post a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.post_navigation .prev_post {
  width: 42px;
  background-image: url('../../images/icons/page_prev.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.post_navigation .next_post {
  width: auto;
  background: var(--color-secondary);
}
.post_navigation .next_post a {
  padding: 11px 28px;
}
@media (max-width: 768px) {
  .post_navigation .next_post a {
    padding: 7px 17px;
  }
}
@media (max-width: 768px) {
  .post_navigation .next_post {
    height: auto;
  }
}
.post_navigation .page_prev a,
.post_navigation .page_next a {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 42px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25em;
  color: var(--color-white);
  transition: ease-in-out 0.25s;
}
@media (max-width: 768px) {
  .post_navigation .page_prev a,
  .post_navigation .page_next a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.post_navigation .page_prev a:hover,
.post_navigation .page_next a:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0 0 0 1px;
}
.post_navigation .page_prev a.disabled,
.post_navigation .page_next a.disabled {
  cursor: not-allowed;
  opacity: 0.75;
}
.post_navigation .page_prev {
  width: 42px;
  background-image: url('../../images/icons/page_prev.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.post_navigation .page_next {
  transform: rotate(180deg);
  width: 42px;
  background-image: url('../../images/icons/page_prev.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 768px) {
  select[name="service_inquire_language"] + .nice-select .nice-select-dropdown {
    top: initial;
    bottom: calc(100% + 5px);
  }
}
@media (min-width: 1500px) {
  body.page-id-2132 .pb_free_text iframe {
    width: 975px;
    max-width: initial;
  }
}
.grand-notice.grand-notice-backdrop {
  width: 100%;
  height: 100%;
  max-width: initial;
  border-radius: inherit;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0;
  margin: 0;
  transform: initial;
  left: 0;
  background: initial;
}
.mob_nav_sibling_parent {
  position: fixed;
  z-index: 40;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: calc(100% - 210px);
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid #D1D1D1;
  padding: 6px 0 10px 0;
}
.mob_nav_sibling_parent a,
.mob_nav_sibling_parent button {
  text-align: left;
  position: relative;
  z-index: 5;
  width: 100%;
  height: auto;
  padding: 7px 25px;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-blackAlmost);
}
.mob_nav_sibling_parent ul {
  margin: 8px 0 0 0;
  padding: 8px 0 10px 0;
  overflow-y: auto;
  border-top: 1px solid #D1D1D1;
}
.mob_nav_sibling_parent button {
  padding: 11px 25px;
}
.mob_nav_sibling_parent button .btn_chevron_inner {
  width: 42px;
  height: 100%;
  background-image: url('../../images/icons/chevron_down.svg');
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: top 54% center;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: ease-in-out 0.25s;
  position: absolute;
  z-index: 20;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}
.mob_nav_sibling_parent button:not([aria-expanded="true"]) ~ ul {
  display: none;
}
.mob_nav_sibling_parent .active_page {
  color: var(--color-main);
}
.mob_nav_sibling_parent .active_page a {
  color: inherit;
}
html.scrolled .mob_nav_sibling_parent {
  max-height: calc(100% - 160px);
}
#return_button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid var(--color-grayBB);
  border-radius: 21px;
  margin: 60px auto 0 auto;
  transition: ease-in-out 0.25s;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  #return_button {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 40px auto 0 auto;
  }
}
#return_button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transition: inherit;
}
#return_button:hover {
  border-color: var(--color-blackAlmost);
  background: var(--color-blackAlmost);
  color: var(--color-white);
}
#return_button:hover img {
  filter: invert(1);
}
.grecaptcha-badge {
  box-shadow: initial !important;
}
.grecaptcha-badge iframe {
  display: none !important;
}
.h-captcha {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
#ticket_popup,
#shop_popup {
  background: var(--color-grayF4);
  border-radius: 10px;
  width: 100%;
  max-width: 28rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#ticket_popup p,
#shop_popup p {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
}
body .fancybox__container {
  --fancybox-bg: rgba(24, 24, 27, 0.82);
}
#notification_bar_close {
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(../../images/icons/menu_close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: invert(1);
  flex-shrink: 0;
}
footer.footer_wrapper {
  height: 25.25rem;
  background: var(--color-secondary);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 40;
}
@media (max-width: 1200px) {
  footer.footer_wrapper {
    height: auto;
  }
}
footer.footer_wrapper .footer_upper .container {
  padding: 76px 0 10px 0;
  display: flex;
  gap: 170px;
  align-items: flex-start;
}
@media (max-width: 1500px) {
  footer.footer_wrapper .footer_upper .container {
    gap: 70px;
  }
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_upper .container {
    width: 100%;
    flex-direction: column;
    padding: 38px 0 28px 0;
    gap: 32px;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_upper .container {
    gap: 14px;
    padding: 38px 0 14px 0;
  }
}
footer.footer_wrapper .footer_lower {
  height: 5.5rem;
  padding: 0 0 8px 0;
  margin: auto 0 0 0;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_lower {
    height: auto;
    padding: 0;
  }
}
footer.footer_wrapper .footer_lower .container {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_lower .container {
    flex-direction: column;
    width: 100%;
    border: initial;
  }
}
footer.footer_wrapper .footer_lower .container .footer_lower_right {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_lower .container .footer_lower_right {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 36px;
    width: 100%;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_lower .container .footer_lower_right {
    padding: 0 20px 16px 20px;
    gap: 28px;
    justify-content: flex-end;
  }
  footer.footer_wrapper .footer_lower .container .footer_lower_right a,
  footer.footer_wrapper .footer_lower .container .footer_lower_right p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
footer.footer_wrapper .footer_lower .container a,
footer.footer_wrapper .footer_lower .container p {
  color: var(--color-white);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2em;
  padding: 0;
  margin: 0;
}
footer.footer_wrapper a {
  color: var(--color-white);
  outline: 2px solid transparent;
}
footer.footer_wrapper a:focus-visible {
  outline: 2px solid var(--color-white);
}
footer.footer_wrapper .footer_navigation {
  width: 460px;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_navigation {
    order: 2;
    width: 100%;
    max-width: initial;
    padding: 6px 30px 0 30px;
  }
  footer.footer_wrapper .footer_navigation .menu-footer-menu-container {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_navigation {
    padding: 0 20px 0 20px;
  }
}
footer.footer_wrapper .footer_navigation ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_navigation ul {
    gap: 14px 10px;
  }
}
footer.footer_wrapper .footer_navigation ul a {
  font-size: 20px;
  font-size: 1.25rem;
  padding: 2px;
  margin: 0;
  color: var(--color-white);
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_navigation ul a {
    font-weight: 400;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_navigation ul a {
    font-size: 16px;
    font-size: 1rem;
  }
}
footer.footer_wrapper .footer_right {
  max-width: 22rem;
  text-align: right;
  margin: 0 0 0 auto;
}
footer.footer_wrapper .footer_right p {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 18px 0;
  color: var(--color-white);
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_right p {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_right {
    order: 2;
    text-align: left;
    margin: 0;
    width: 100%;
    max-width: 500px;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_right {
    padding: 0 20px;
  }
}
footer.footer_wrapper .footer_social {
  margin: 0 0 0 auto;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_social {
    margin: 0;
  }
}
footer.footer_wrapper .footer_social ul {
  display: flex;
  justify-content: end;
  gap: 10px;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_social ul {
    justify-content: initial;
  }
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_social ul {
    gap: 5px;
  }
}
footer.footer_wrapper .footer_social ul a,
footer.footer_wrapper .footer_social ul img {
  display: block;
}
footer.footer_wrapper .footer_social ul a {
  padding: 2px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
footer.footer_wrapper .footer_social ul a img {
  width: 32px;
  height: 32px;
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_social ul a img {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_lower_navigation {
    padding: 0 30px;
    width: 100%;
    order: 2;
  }
  footer.footer_wrapper .footer_lower_navigation .menu-footer-lower-menu-container {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_lower_navigation {
    padding: 0 20px 10px 20px;
  }
}
footer.footer_wrapper .footer_lower_navigation ul {
  display: flex;
  gap: 56px;
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_lower_navigation ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }
}
@media (max-width: 1200px) {
  footer.footer_wrapper .footer_lower_navigation ul a {
    font-weight: 400;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  footer.footer_wrapper .footer_lower_navigation ul a {
    font-size: 16px;
    font-size: 1rem;
  }
}
form.email_subscribe {
  width: 100%;
  max-width: 480px;
  position: relative;
}
@media (max-width: 1400px) {
  form.email_subscribe {
    max-width: 300px;
  }
}
@media (max-width: 1200px) {
  form.email_subscribe {
    order: 1;
    max-width: 500px;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  form.email_subscribe {
    padding: 0 20px;
  }
}
form.email_subscribe h3 {
  font-weight: 500;
  font-size: 22px;
  font-size: 1.375rem;
  color: var(--color-white);
  margin: 0 0 14px 0;
  max-width: 30rem;
}
@media (max-width: 768px) {
  form.email_subscribe h3 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 6px 0;
  }
}
form.email_subscribe .email_subscribe_input {
  position: relative;
  transition: ease-in-out 0.25s;
  margin: 0 0 16px 0;
}
form.email_subscribe .email_subscribe_input input {
  width: 100%;
  height: auto;
  background: transparent;
  font-family: inherit;
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--color-white);
  padding: 22px 8px;
  margin: 0;
  border: 1px solid var(--color-white);
  border-width: 0 0 1px 0;
}
form.email_subscribe .email_subscribe_input input::placeholder {
  color: var(--color-white);
  opacity: 0.75;
}
form.email_subscribe .email_subscribe_input input::-ms-input-placeholder {
  color: var(--color-white);
  opacity: 0.75;
}
form.email_subscribe .email_subscribe_input input:focus-visible {
  outline-color: var(--color-white);
}
form.email_subscribe .email_subscribe_input input.error {
  border-color: var(--color-error);
  border-width: 0 0 2px 0;
}
form.email_subscribe .email_subscribe_input input.error + .subscribe_email_error {
  display: block;
}
@media (max-width: 768px) {
  form.email_subscribe .email_subscribe_input input {
    font-size: 16px;
    font-size: 1rem;
    padding: 16px 8px;
  }
}
form.email_subscribe .email_subscribe_input .subscribe_email_error {
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
  position: absolute;
  bottom: -6px;
  left: 0;
  transform: translateY(100%);
}
form.email_subscribe .email_subscribe_input button[type="submit"] {
  display: block;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  border: initial;
  outline: 2px solid transparent;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  background: initial;
  background-image: url('../../images/icons/arrow_up_right.svg');
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: center;
}
form.email_subscribe .email_subscribe_input button[type="submit"]:focus-visible {
  outline: 2px solid var(--color-white);
}
@media (max-width: 768px) {
  form.email_subscribe .email_subscribe_input button[type="submit"] {
    background-size: 14px 14px;
  }
}
form.email_subscribe .email_subscribe_input label.sr-only {
  background: var(--color-white);
}
form.email_subscribe.processing_ajax .email_subscribe_input {
  opacity: 0.5;
  pointer-events: none;
}
form.email_subscribe.processing_ajax .lds-ellipsis div {
  background: var(--color-white);
}
form.email_subscribe:not(.processing_ajax) .lds-ellipsis {
  display: none;
}
form.email_subscribe:not(.form_success) .subscription_success_message {
  display: none;
}
form.email_subscribe .subscription_success_message p {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-lightblue2);
  margin: 16px 0 0 0;
}
@media (max-width: 768px) {
  form.email_subscribe .subscription_success_message p {
    font-size: 16px;
    font-size: 1rem;
  }
}
.subscribe_email_error {
  display: none;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Thin_Italic.woff2') format('woff2');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_ExtraLight_Italic.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Light_Italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Normal_Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Medium_Italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_DemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_DemiBold_Italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Bold_Italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_ExtraBold_Italic.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Commons';
  src: url('../fonts/TT_Commons_Pro_Black_Italic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-MediumItalic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-SemiBoldItalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('../fonts/EBGaramond-ExtraBoldItalic.woff2') format('woff2');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1 !important;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-main);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.fancybox__container {
  --fancybox-bg: rgba(24, 24, 27, 0.7);
}
@keyframes bounce {
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.checkbox.bounce input:focus-visible {
  outline: 2px solid var(--color-black);
}
.checkbox {
  --CB_background: var(--color-white);
  --CB_border: transparent;
  --CB_border-hover: var(--color-main);
  --CB_border-active: var(--color-white);
  --CB_tick: var(--color-main);
  --CB_text-size: 0.9rem;
  --CB_text-color: var(--color-black);
  --CB_error-color: var(--color-error);
  position: relative;
  display: flex;
  gap: 16px;
  text-align: left;
  margin: 0;
}
@media (max-width: 768px) {
  .checkbox {
    --CB_text-size: 0.8rem;
  }
}
.checkbox input,
.checkbox svg {
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
}
.checkbox input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  outline: none;
  background: var(--CB_background);
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 5px;
  transition: box-shadow 0.3s;
  box-shadow: inset 0 0 0 var(--CB_s, 1px) var(--CB_b, var(--CB_border));
}
.checkbox input:hover {
  --CB_s: 2px;
  --CB_b: var(--CB_border-hover);
}
.checkbox input:checked {
  --CB_b: var(--CB_border-active);
}
.checkbox input.error {
  --CB_border: var(--CB_error-color);
  --CB_s: 2px;
}
.checkbox svg {
  pointer-events: none;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--CB_stroke, var(--CB_border-active));
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  transform: scale(var(--CB_scale, 1)) translateZ(0);
}
.checkbox.path input:checked {
  --CB_s: 2px;
  transition-delay: 0.3s;
}
.checkbox.path input:checked + svg {
  --CB_a: 16.1 86.12;
  --CB_o: 102.22;
}
.checkbox.path svg {
  stroke-dasharray: var(--CB_a, 86.12);
  stroke-dashoffset: var(--CB_o, 86.12);
  transition: stroke-dasharray 0.3s, stroke-dashoffset 0.3s;
}
.checkbox.bounce {
  --CB_stroke: var(--CB_tick);
}
.checkbox.bounce input:checked {
  --CB_s: 15px;
}
.checkbox.bounce input:checked + svg {
  animation: bounce 0.2s linear forwards 0.2s;
}
.checkbox.bounce svg {
  --CB_scale: 0;
}
.checkbox > p,
.checkbox > a {
  display: inline;
  margin: 0;
  font-size: var(--CB_text-size);
  color: var(--CB_text-color);
  line-height: 30px;
  user-select: none;
}
.checkbox a {
  text-decoration: underline;
  color: var(--color-main);
}
.checkbox a:hover {
  text-decoration: initial;
}
.checkbox.error {
  --CB_border: var(--CB_error-color);
}
.checkbox.error p,
.checkbox.error a {
  color: var(--CB_error-color);
}
.dialog-container {
  z-index: 50000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog-container[aria-hidden="true"] {
  display: none;
}
.dialog-overlay {
  background-color: rgba(43, 46, 56, 0.9);
  animation: fade-in 200ms both;
  z-index: -1;
}
.dialog-container,
.dialog-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
body .vanilla-calendar[data-calendar-theme=light],
body .vanilla-calendar[data-calendar-theme=dark] {
  width: 100%;
  background: transparent;
  border-radius: initial;
  padding: 40px 28px 26px 28px;
  --color-weekend_day: #f43f5e;
}
@media (max-width: 768px) {
  body .vanilla-calendar[data-calendar-theme=light],
  body .vanilla-calendar[data-calendar-theme=dark] {
    padding: 36px 18px 24px 18px;
  }
}
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-header,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-header {
  margin: 0 0 26px 0;
}
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-header .vanilla-calendar-month,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-header .vanilla-calendar-month,
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-header .vanilla-calendar-year,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-header .vanilla-calendar-year {
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--color-blackAlmost);
  padding: 4px;
}
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-wrapper .vanilla-calendar-week,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-wrapper .vanilla-calendar-week {
  margin: 0 0 20px 0;
}
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-wrapper .vanilla-calendar-week__day,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-wrapper .vanilla-calendar-week__day {
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--color-blackAlmost);
  transition: ease-in-out 0.1s;
}
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-wrapper .vanilla-calendar-week__day_weekend,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-wrapper .vanilla-calendar-week__day_weekend {
  color: var(--color-weekend_day);
}
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-wrapper .vanilla-calendar-day__btn_today,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-wrapper .vanilla-calendar-day__btn_today {
  color: var(--color-blackAlmost);
}
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-wrapper .vanilla-calendar-day__btn_hover,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-wrapper .vanilla-calendar-day__btn_hover {
  background-color: var(--color-graymild);
  color: var(--color-blackAlmost);
}
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-wrapper .vanilla-calendar-day__btn_selected,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-wrapper .vanilla-calendar-day__btn_selected {
  background-color: var(--color-main);
  color: var(--color-white);
}
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-years__year,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-years__year,
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-months__month,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-months__month {
  color: var(--color-blackAlmost);
}
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-years__year.vanilla-calendar-years__year_selected,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-years__year.vanilla-calendar-years__year_selected,
body .vanilla-calendar[data-calendar-theme=light] .vanilla-calendar-months__month.vanilla-calendar-months__month_selected,
body .vanilla-calendar[data-calendar-theme=dark] .vanilla-calendar-months__month.vanilla-calendar-months__month_selected {
  background-color: var(--color-main);
  color: var(--color-white);
}
body .vanilla-calendar[data-calendar-theme=light] button:focus-visible,
body .vanilla-calendar[data-calendar-theme=dark] button:focus-visible {
  outline: 2px solid var(--color-blackAlmost);
  outline-offset: -2px;
}
@media print {
  header,
  aside,
  footer {
    display: none !important;
  }
  main {
    padding: 36px 0 0 0 !important;
  }
  main .container {
    grid-template-columns: 1fr;
    max-width: initial !important;
  }
  main::before {
    content: initial !important;
  }
  .pb_gallery {
    display: none !important;
  }
  .single_post_other_posts {
    display: none !important;
  }
  #map_wrap {
    display: none !important;
  }
  .swiper {
    overflow: hidden !important;
  }
  .swiper .swiper-wrapper {
    overflow: hidden !important;
  }
  .swiper .swiper-slide {
    max-width: 1920px !important;
  }
  main.main_page > .container {
    grid-template-columns: 1fr;
  }
  body {
    margin: 0;
    color: #000;
    background-color: #fff;
  }
  .page_ticket_pin {
    display: none !important;
  }
  #return_button {
    display: none !important;
  }
}
.swiper-wrapper .swiper-slide .swiper-slide-caption {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  margin: 12px 0 0 0;
  color: var(--color-gray);
}
html.contrast_white-black {
  --color-main: white;
  --color-mainHover: white;
  --color-secondary: white;
  --color-tertiary: black;
  --color-lightblue: black;
  --color-lightblue2: black;
  --color-white: black;
  --color-black: white;
  --color-blackAlmost: white;
  --color-error: white;
  --color-gray: white;
  --color-grayF4: black;
  --color-grayBB: black;
  --color-grayFB: black;
  --color-line: white;
  --color-graymild: black;
}
html.contrast_white-black body {
  background: black !important;
  color: white !important;
}
html.contrast_white-black .header_logo {
  fill: white;
}
html.contrast_white-black .header_logo path,
html.contrast_white-black .header_logo g {
  fill: white;
}
html.contrast_white-black header.header_wrapper {
  --color-grayBB: white;
}
html.contrast_white-black header.header_wrapper .search_wrap .search_btn {
  background-image: url(../../images/icons/search_white.svg);
}
html.contrast_white-black header.header_wrapper #contrast_change {
  background-image: url(../../images/icons/contrast_white.svg);
}
html.contrast_white-black header.header_wrapper #text_size_change {
  background-image: url(../../images/icons/text_size_white.svg);
}
html.contrast_white-black .header_menu .mobile_header_lower #mobile_contrast_change {
  background-image: url('../../images/icons/contrast_white.svg');
}
html.contrast_white-black .header_menu .mobile_header_lower #mobile_text_size_change {
  background-image: url('../../images/icons/text_size_white.svg');
}
html.contrast_white-black .header_menu .mobile_header_lower #mobile_search {
  background-image: url('../../images/icons/search_white.svg');
}
html.contrast_white-black main p,
html.contrast_white-black main h1,
html.contrast_white-black main h2,
html.contrast_white-black main h3,
html.contrast_white-black main h4,
html.contrast_white-black main h5,
html.contrast_white-black main h6,
html.contrast_white-black main li,
html.contrast_white-black main ol {
  color: white !important;
}
html.contrast_white-black main p span,
html.contrast_white-black main h1 span,
html.contrast_white-black main h2 span,
html.contrast_white-black main h3 span,
html.contrast_white-black main h4 span,
html.contrast_white-black main h5 span,
html.contrast_white-black main h6 span,
html.contrast_white-black main li span,
html.contrast_white-black main ol span {
  color: inherit;
}
html.contrast_white-black label.hb_label span {
  background: white;
}
html.contrast_white-black .header_menu {
  background: black;
  --color-white: white;
}
html.contrast_white-black .acc_popup {
  background: black;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
html.contrast_white-black .acc_popup::before {
  border-right: 30px solid black;
}
html.contrast_white-black .acc_popup .acc_title {
  color: white;
}
html.contrast_white-black .acc_popup .acc_row .acc_box:not([data-contrast]) {
  background: black;
}
html.contrast_white-black .acc_popup .acc_row .active:not([data-contrast]) {
  background-color: white;
  color: black;
}
html.contrast_white-black header.header_wrapper .header_navigation > div > ul > li .js_child_menu_btn {
  background-image: url(../../images/icons/chevron_down_white.svg);
}
html.contrast_white-black .js_mobile_child_menu_btn {
  background-image: url(../../images/icons/chevron_down_white.svg) !important;
}
html.contrast_white-black .nice-select {
  background: black;
  border-color: white;
}
html.contrast_white-black .nice-select .nice-select-dropdown {
  background: black;
}
html.contrast_white-black .nice-select .option:hover,
html.contrast_white-black .nice-select .option.focus,
html.contrast_white-black .nice-select .option.selected.focus {
  background: #0b0b0b;
}
html.contrast_white-black .accessibility_popup .acc_box[data-contrast="default"] svg {
  fill: black;
}
html.contrast_white-black footer.footer_wrapper {
  background: black;
  border-top: 1px solid white;
}
html.contrast_white-black footer.footer_wrapper a,
html.contrast_white-black footer.footer_wrapper p,
html.contrast_white-black footer.footer_wrapper h1,
html.contrast_white-black footer.footer_wrapper h2,
html.contrast_white-black footer.footer_wrapper h3,
html.contrast_white-black footer.footer_wrapper h4,
html.contrast_white-black footer.footer_wrapper h5,
html.contrast_white-black footer.footer_wrapper h6,
html.contrast_white-black footer.footer_wrapper li,
html.contrast_white-black footer.footer_wrapper ol {
  color: white !important;
}
html.contrast_white-black form.email_subscribe .email_subscribe_input input {
  border-color: white;
  color: white;
}
html.contrast_white-black form.email_subscribe .email_subscribe_input input::placeholder {
  color: white;
  opacity: 0.75;
}
html.contrast_white-black form.email_subscribe .email_subscribe_input input::-ms-input-placeholder {
  color: white;
  opacity: 0.75;
}
html.contrast_white-black .pb_input_wrap input:not([type="checkbox"]),
html.contrast_white-black .pb_input_wrap textarea,
html.contrast_white-black .pb_input_wrap .nice-select {
  outline: 1px solid white;
}
html.contrast_white-black .page_ticket_pin span {
  background: initial;
  color: white;
}
html.contrast_white-black aside.side_tools {
  border-color: white;
}
html.contrast_white-black aside.side_tools button {
  border-color: white !important;
}
html.contrast_white-black aside.side_tools button:hover,
html.contrast_white-black aside.side_tools button.active {
  background-color: black;
}
html.contrast_white-black aside.side_tools .btn_tool_printer {
  background-image: url('../../images/icons/printer_white.svg');
}
html.contrast_white-black aside.side_tools .btn_tool_download {
  background-image: url('../../images/icons/file_download_white.svg');
}
html.contrast_white-black aside.side_tools .btn_tool_share {
  background-image: url('../../images/icons/share_white.svg');
}
html.contrast_white-black aside.side_tools .share_popup_socials {
  border: 1px solid white;
  border-radius: 5px;
}
html.contrast_white-black aside.side_tools .share_popup_socials a {
  border-radius: 0;
}
html.contrast_white-black aside.side_tools .share_popup_socials a:not(:last-child) {
  border-bottom: 1px solid white;
}
html.contrast_white-black aside.side_tools .share_popup_socials a:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
html.contrast_white-black aside.side_tools .share_popup_socials a:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
html.contrast_white-black aside.side_tools .share_popup_socials a svg {
  fill: white;
}
html.contrast_white-black .swiper .swiper-counter {
  background: white;
}
html.contrast_white-black .swiper {
  --swiper-pagination-bullet-inactive-color: white;
}
html.contrast_white-black header.header_wrapper .language_switcher_simple .language_btn {
  background-image: url(../../images/icons/globe_white.svg);
}
html.contrast_white-black .pb_wrap .accordion_box .accordion_btn::before {
  background-image: url(../../images/icons/chevron_down_white.svg);
}
html.contrast_white-black aside .sidebar_nav .aside_child_menu_btn {
  background-image: url(../../images/icons/chevron_down_white.svg);
}
html.contrast_white-black .form_service_apply .pb_form_slide .pb_form_upper .pb_form_step_back {
  filter: invert(1);
}
html.contrast_white-black .archive_events .events_archive_filter_row button[type="submit"],
html.contrast_white-black section.search_wrap form.search_page_upper button[type="submit"] {
  background-color: black;
  border: 1px solid white;
}
html.contrast_white-black .vanilla-calendar {
  --color-main: #aaaaaa;
}
html.contrast_white-black section.museum_nav a:not(:hover) svg path {
  fill: white;
}
html.contrast_yellow-black {
  --color-main: black;
  --color-mainHover: black;
  --color-secondary: black;
  --color-tertiary: #f7ef81;
  --color-lightblue: #f7ef81;
  --color-lightblue2: #f7ef81;
  --color-white: #f7ef81;
  --color-black: black;
  --color-blackAlmost: black;
  --color-error: black;
  --color-gray: black;
  --color-grayF4: #f7ef81;
  --color-grayBB: #f7ef81;
  --color-grayFB: #f7ef81;
  --color-line: black;
  --color-graymild: #f7ef81;
}
html.contrast_yellow-black body {
  background: #f7ef81 !important;
  color: black !important;
}
html.contrast_yellow-black .header_logo {
  fill: black;
}
html.contrast_yellow-black .header_logo path,
html.contrast_yellow-black .header_logo g {
  fill: black;
}
html.contrast_yellow-black header.header_wrapper {
  --color-grayBB: black;
}
html.contrast_yellow-black header.header_wrapper .search_wrap .search_btn {
  background-image: url(../../images/icons/search.svg);
}
html.contrast_yellow-black header.header_wrapper #contrast_change {
  background-image: url(../../images/icons/contrast.svg);
}
html.contrast_yellow-black header.header_wrapper #text_size_change {
  background-image: url(../../images/icons/text_size.svg);
}
html.contrast_yellow-black main p,
html.contrast_yellow-black main h1,
html.contrast_yellow-black main h2,
html.contrast_yellow-black main h3,
html.contrast_yellow-black main h4,
html.contrast_yellow-black main h5,
html.contrast_yellow-black main h6,
html.contrast_yellow-black main li,
html.contrast_yellow-black main ol {
  color: black !important;
}
html.contrast_yellow-black main p span,
html.contrast_yellow-black main h1 span,
html.contrast_yellow-black main h2 span,
html.contrast_yellow-black main h3 span,
html.contrast_yellow-black main h4 span,
html.contrast_yellow-black main h5 span,
html.contrast_yellow-black main h6 span,
html.contrast_yellow-black main li span,
html.contrast_yellow-black main ol span {
  color: inherit;
}
html.contrast_yellow-black label.hb_label span {
  background: black;
}
html.contrast_yellow-black .header_menu {
  background: #f7ef81;
  --color-white: black;
}
html.contrast_yellow-black .acc_popup {
  background: #f7ef81;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
html.contrast_yellow-black .acc_popup::before {
  border-right: 3px solid #f7ef81;
}
html.contrast_yellow-black .acc_popup .acc_title {
  color: black;
}
html.contrast_yellow-black .acc_popup .acc_row .acc_box:not([data-contrast]) {
  background: #f7ef81;
}
html.contrast_yellow-black .acc_popup .acc_row .active:not([data-contrast]) {
  background-color: black;
  color: #f7ef81;
}
html.contrast_yellow-black header.header_wrapper .header_navigation > div > ul > li .js_child_menu_btn {
  background-image: url(../../images/icons/chevron_down.svg);
}
html.contrast_yellow-black .nice-select {
  background: #f7ef81;
  border-color: black;
}
html.contrast_yellow-black .nice-select .nice-select-dropdown {
  background: #f7ef81;
}
html.contrast_yellow-black .nice-select .option:hover,
html.contrast_yellow-black .nice-select .option.focus,
html.contrast_yellow-black .nice-select .option.selected.focus {
  background: #0b0b0b;
}
html.contrast_yellow-black .accessibility_popup .acc_box[data-contrast="default"] svg {
  fill: #f7ef81;
}
html.contrast_yellow-black footer.footer_wrapper {
  background: #f7ef81;
  border-top: 1px solid black;
}
html.contrast_yellow-black footer.footer_wrapper a,
html.contrast_yellow-black footer.footer_wrapper p,
html.contrast_yellow-black footer.footer_wrapper h1,
html.contrast_yellow-black footer.footer_wrapper h2,
html.contrast_yellow-black footer.footer_wrapper h3,
html.contrast_yellow-black footer.footer_wrapper h4,
html.contrast_yellow-black footer.footer_wrapper h5,
html.contrast_yellow-black footer.footer_wrapper h6,
html.contrast_yellow-black footer.footer_wrapper li,
html.contrast_yellow-black footer.footer_wrapper ol {
  color: black !important;
}
html.contrast_yellow-black form.email_subscribe .email_subscribe_input input {
  border-color: black;
  color: black;
}
html.contrast_yellow-black form.email_subscribe .email_subscribe_input input::placeholder {
  color: black;
  opacity: 0.75;
}
html.contrast_yellow-black form.email_subscribe .email_subscribe_input input::-ms-input-placeholder {
  color: black;
  opacity: 0.75;
}
html.contrast_yellow-black .pb_input_wrap input:not([type="checkbox"]),
html.contrast_yellow-black .pb_input_wrap textarea,
html.contrast_yellow-black .pb_input_wrap .nice-select {
  outline: 1px solid black;
}
html.contrast_yellow-black .page_ticket_pin span {
  background: initial;
  color: white;
}
html.contrast_yellow-black aside.side_tools {
  border-color: black;
}
html.contrast_yellow-black aside.side_tools button {
  border-color: black !important;
}
html.contrast_yellow-black aside.side_tools button:hover,
html.contrast_yellow-black aside.side_tools button.active {
  background-color: #f7ef81;
}
html.contrast_yellow-black aside.side_tools .btn_tool_printer {
  background-image: url('../../images/icons/printer.svg');
}
html.contrast_yellow-black aside.side_tools .btn_tool_download {
  background-image: url('../../images/icons/file_download.svg');
}
html.contrast_yellow-black aside.side_tools .btn_tool_share {
  background-image: url('../../images/icons/share.svg');
}
html.contrast_yellow-black aside.side_tools .share_popup_socials {
  border: 1px solid black;
  border-radius: 5px;
}
html.contrast_yellow-black aside.side_tools .share_popup_socials a {
  border-radius: 0;
}
html.contrast_yellow-black aside.side_tools .share_popup_socials a:not(:last-child) {
  border-bottom: 1px solid black;
}
html.contrast_yellow-black aside.side_tools .share_popup_socials a:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
html.contrast_yellow-black aside.side_tools .share_popup_socials a:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
html.contrast_yellow-black aside.side_tools .share_popup_socials a svg {
  fill: black;
}
html.contrast_yellow-black .swiper .swiper-counter {
  background: black;
}
html.contrast_yellow-black .swiper {
  --swiper-pagination-bullet-inactive-color: black;
}
html.contrast_yellow-black header.header_wrapper .language_switcher_simple .language_btn {
  background-image: url(../../images/icons/globe.svg);
}
html.contrast_yellow-black .pb_wrap .accordion_box .accordion_btn::before {
  background-image: url(../../images/icons/chevron_down.svg);
}
html.contrast_yellow-black aside .sidebar_nav .aside_child_menu_btn {
  background-image: url(../../images/icons/chevron_down.svg);
}
html.contrast_yellow-black .form_service_apply .pb_form_slide .pb_form_upper .pb_form_step_back {
  filter: invert(1);
}
html.contrast_yellow-black .archive_events .events_archive_filter_row button[type="submit"],
html.contrast_yellow-black section.search_wrap form.search_page_upper button[type="submit"] {
  background-color: #f7ef81;
  border: 1px solid black;
}
html.contrast_yellow-black .vanilla-calendar {
  --color-main: #aaaaaa;
}
html.contrast_yellow-black section.museum_nav a:not(:hover) svg path {
  fill: black;
}
html.contrast_yellow-black footer.footer_wrapper .footer_social ul a img,
html.contrast_yellow-black .scroll_to_top {
  filter: brightness(0) saturate(100%);
}
html.contrast_yellow-black form.email_subscribe .email_subscribe_input button[type="submit"] {
  background-image: url(../../images/icons/arrow_up_right_black.svg);
}
html.contrast_black-yellow {
  --color-main: #f7ef81;
  --color-mainHover: #f7ef81;
  --color-secondary: #f7ef81;
  --color-tertiary: black;
  --color-lightblue: black;
  --color-lightblue2: black;
  --color-white: black;
  --color-black: #f7ef81;
  --color-blackAlmost: #f7ef81;
  --color-error: #f7ef81;
  --color-gray: #f7ef81;
  --color-grayF4: black;
  --color-grayBB: black;
  --color-grayFB: black;
  --color-line: #f7ef81;
  --color-graymild: black;
}
html.contrast_black-yellow body {
  background: black !important;
  color: #f7ef81 !important;
}
html.contrast_black-yellow .header_logo {
  fill: #f7ef81;
}
html.contrast_black-yellow .header_logo path,
html.contrast_black-yellow .header_logo g {
  fill: #f7ef81;
}
html.contrast_black-yellow footer.footer_wrapper .footer_social ul a img,
html.contrast_black-yellow .scroll_to_top {
  filter: brightness(0) saturate(100%) invert(94%) sepia(15%) saturate(1269%) hue-rotate(354deg) brightness(104%) contrast(94%);
}
html.contrast_black-yellow form.email_subscribe .email_subscribe_input button[type="submit"] {
  background-image: url(../../images/icons/arrow_up_right_yellow.svg);
}
html.contrast_black-yellow body {
  background: black !important;
  color: #f7ef81 !important;
}
html.contrast_black-yellow .header_logo {
  fill: #f7ef81;
}
html.contrast_black-yellow .header_logo path,
html.contrast_black-yellow .header_logo g {
  fill: #f7ef81;
}
html.contrast_black-yellow header.header_wrapper {
  --color-grayBB: #f7ef81;
}
html.contrast_black-yellow header.header_wrapper .search_wrap .search_btn {
  background-image: url(../../images/icons/search_yellow.svg);
}
html.contrast_black-yellow header.header_wrapper #contrast_change {
  background-image: url(../../images/icons/contrast_yellow.svg);
}
html.contrast_black-yellow header.header_wrapper #text_size_change {
  background-image: url(../../images/icons/text_size_yellow.svg);
}
html.contrast_black-yellow .header_menu .mobile_header_lower #mobile_contrast_change {
  background-image: url('../../images/icons/contrast_yellow.svg');
}
html.contrast_black-yellow .header_menu .mobile_header_lower #mobile_text_size_change {
  background-image: url('../../images/icons/text_size_yellow.svg');
}
html.contrast_black-yellow .header_menu .mobile_header_lower #mobile_search {
  background-image: url('../../images/icons/search_yellow.svg');
}
html.contrast_black-yellow main p,
html.contrast_black-yellow main h1,
html.contrast_black-yellow main h2,
html.contrast_black-yellow main h3,
html.contrast_black-yellow main h4,
html.contrast_black-yellow main h5,
html.contrast_black-yellow main h6,
html.contrast_black-yellow main li,
html.contrast_black-yellow main ol {
  color: #f7ef81 !important;
}
html.contrast_black-yellow main p span,
html.contrast_black-yellow main h1 span,
html.contrast_black-yellow main h2 span,
html.contrast_black-yellow main h3 span,
html.contrast_black-yellow main h4 span,
html.contrast_black-yellow main h5 span,
html.contrast_black-yellow main h6 span,
html.contrast_black-yellow main li span,
html.contrast_black-yellow main ol span {
  color: inherit;
}
html.contrast_black-yellow label.hb_label span {
  background: #f7ef81;
}
html.contrast_black-yellow .header_menu {
  background: black;
  --color-white: #f7ef81;
}
html.contrast_black-yellow .acc_popup {
  background: black;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
html.contrast_black-yellow .acc_popup::before {
  border-right: 30px solid black;
}
html.contrast_black-yellow .acc_popup .acc_title {
  color: #f7ef81;
}
html.contrast_black-yellow .acc_popup .acc_row .acc_box:not([data-contrast]) {
  background: black;
}
html.contrast_black-yellow .acc_popup .acc_row .active:not([data-contrast]) {
  background-color: #f7ef81;
  color: black;
}
html.contrast_black-yellow header.header_wrapper .header_navigation > div > ul > li .js_child_menu_btn {
  background-image: url(../../images/icons/chevron_down_yellow.svg);
}
html.contrast_black-yellow .js_mobile_child_menu_btn {
  background-image: url(../../images/icons/chevron_down_yellow.svg) !important;
}
html.contrast_black-yellow .nice-select {
  background: black;
  border-color: #f7ef81;
}
html.contrast_black-yellow .nice-select .nice-select-dropdown {
  background: black;
}
html.contrast_black-yellow .nice-select .option:hover,
html.contrast_black-yellow .nice-select .option.focus,
html.contrast_black-yellow .nice-select .option.selected.focus {
  background: #0b0b0b;
}
html.contrast_black-yellow .accessibility_popup .acc_box[data-contrast="default"] svg {
  fill: black;
}
html.contrast_black-yellow footer.footer_wrapper {
  background: black;
  border-top: 1px solid #f7ef81;
}
html.contrast_black-yellow footer.footer_wrapper a,
html.contrast_black-yellow footer.footer_wrapper p,
html.contrast_black-yellow footer.footer_wrapper h1,
html.contrast_black-yellow footer.footer_wrapper h2,
html.contrast_black-yellow footer.footer_wrapper h3,
html.contrast_black-yellow footer.footer_wrapper h4,
html.contrast_black-yellow footer.footer_wrapper h5,
html.contrast_black-yellow footer.footer_wrapper h6,
html.contrast_black-yellow footer.footer_wrapper li,
html.contrast_black-yellow footer.footer_wrapper ol {
  color: #f7ef81 !important;
}
html.contrast_black-yellow form.email_subscribe .email_subscribe_input input {
  border-color: #f7ef81;
  color: #f7ef81;
}
html.contrast_black-yellow form.email_subscribe .email_subscribe_input input::placeholder {
  color: #f7ef81;
  opacity: 0.75;
}
html.contrast_black-yellow form.email_subscribe .email_subscribe_input input::-ms-input-placeholder {
  color: #f7ef81;
  opacity: 0.75;
}
html.contrast_black-yellow .pb_input_wrap input:not([type="checkbox"]),
html.contrast_black-yellow .pb_input_wrap textarea,
html.contrast_black-yellow .pb_input_wrap .nice-select {
  outline: 1px solid #f7ef81;
}
html.contrast_black-yellow .page_ticket_pin span {
  background: initial;
  color: white;
}
html.contrast_black-yellow aside.side_tools {
  border-color: #f7ef81;
}
html.contrast_black-yellow aside.side_tools button {
  border-color: #f7ef81 !important;
}
html.contrast_black-yellow aside.side_tools button:hover,
html.contrast_black-yellow aside.side_tools button.active {
  background-color: black;
}
html.contrast_black-yellow aside.side_tools .btn_tool_printer {
  background-image: url('../../images/icons/printer_yellow.svg');
}
html.contrast_black-yellow aside.side_tools .btn_tool_download {
  background-image: url('../../images/icons/file_download_yellow.svg');
}
html.contrast_black-yellow aside.side_tools .btn_tool_share {
  background-image: url('../../images/icons/share_yellow.svg');
}
html.contrast_black-yellow aside.side_tools .share_popup_socials {
  border: 1px solid #f7ef81;
  border-radius: 5px;
}
html.contrast_black-yellow aside.side_tools .share_popup_socials a {
  border-radius: 0;
}
html.contrast_black-yellow aside.side_tools .share_popup_socials a:not(:last-child) {
  border-bottom: 1px solid #f7ef81;
}
html.contrast_black-yellow aside.side_tools .share_popup_socials a:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
html.contrast_black-yellow aside.side_tools .share_popup_socials a:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
html.contrast_black-yellow aside.side_tools .share_popup_socials a svg {
  fill: #f7ef81;
}
html.contrast_black-yellow .swiper .swiper-counter {
  background: #f7ef81;
}
html.contrast_black-yellow .swiper {
  --swiper-pagination-bullet-inactive-color: #f7ef81;
}
html.contrast_black-yellow header.header_wrapper .language_switcher_simple .language_btn {
  background-image: url(../../images/icons/globe_yellow.svg);
}
html.contrast_black-yellow .pb_wrap .accordion_box .accordion_btn::before {
  background-image: url(../../images/icons/chevron_down_yellow.svg);
}
html.contrast_black-yellow aside .sidebar_nav .aside_child_menu_btn {
  background-image: url(../../images/icons/chevron_down_yellow.svg);
}
html.contrast_black-yellow .form_service_apply .pb_form_slide .pb_form_upper .pb_form_step_back {
  filter: invert(1);
}
html.contrast_black-yellow .archive_events .events_archive_filter_row button[type="submit"],
html.contrast_black-yellow section.search_wrap form.search_page_upper button[type="submit"] {
  background-color: black;
  border: 1px solid #f7ef81;
}
html.contrast_black-yellow .vanilla-calendar {
  --color-main: #aaaaaa;
}
html.contrast_black-yellow section.museum_nav a:not(:hover) svg path {
  fill: #f7ef81;
}
html[class*="contrast"]:not(.contrast_default) main::before {
  content: initial;
}
html[class*="contrast"]:not(.contrast_default) main .breadcrumbs_row {
  opacity: 0.9;
}
