:root {
  --color-white: #ffffff;
  --color-black: #1b1b1b;
  --color-main: #A3DF34;
  --color-gray-10: #6D6F72;
  --color-gray-0: #B2B2B2;
  --bg-first: #383838;
  --bg-second: #595959;
  --bg-third: #6E6E6E;
  --bg-black: #1B1B1B;
  --bg-black-matte: #232323;
  --bg-gray-100: #28292A;
  --bg-gray-70: #34363A;
  --bg-gray-40: #3E4043;
  --bg-green: #303A2C;
	--speed-fast: 0.2s;
	--speed-slow: 0.4s;
  --bg-gray-light: #E7E7E7;
  --bg-gray-white: #f5f5f5;
}

*,
::after,
::before {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html {
	scroll-behavior: initial;
}

.x1, .x2, .x3, .x4, .x5, .x6, .x7, .x8, .x9 {
	opacity: 0;
	transform: translateX(-120px);
}
.x1 {
	transition: transform ease .7s .1s, opacity ease .7s .1s;
}
.x2 {
	transition: transform ease .7s .2s, opacity ease .7s .2s;
}
.x3 {
	transition: transform ease .7s .3s, opacity ease .7s .3s;
}
.x4 {
	transition: transform ease .7s .4s, opacity ease .7s .4s;
}
.x5 {
	transition: transform ease .7s .5s, opacity ease .7s .5s;
}
.x6 {
	transition: transform ease .7s .6s, opacity ease .7s .6s;
}
.x7 {
	transition: transform ease .7s .7s, opacity ease .7s .7s;
}
.x8 {
	transition: transform ease .7s .8s, opacity ease .7s .8s;
}
.x9 {
	transition: transform ease .7s .9s, opacity ease .7s .9s;
}
.ready .visible.x1,
.ready .visible.x2,
.ready .visible.x3,
.ready .visible.x4,
.ready .visible.x5,
.ready .visible.x6,
.ready .visible.x7,
.ready .visible.x8,
.ready .visible.x9 {
	opacity: 1;
	transform: translateX(0px);
}

.y1, .y2, .y3, .y4, .y5, .y6, .y7, .y8, .y9 {
	opacity: 0;
	transform: translateY(120px);
}
.y1 {
	transition: transform ease .7s .1s, opacity ease .7s .1s;
}
.y2 {
	transition: transform ease .7s .2s, opacity ease .7s .2s;
}
.y3 {
	transition: transform ease .7s .3s, opacity ease .7s .3s;
}
.y4 {
	transition: transform ease .7s .4s, opacity ease .7s .4s;
}
.y5 {
	transition: transform ease .7s .5s, opacity ease .7s .5s;
}
.y6 {
	transition: transform ease .7s .6s, opacity ease .7s .6s;
}
.y7 {
	transition: transform ease .7s .7s, opacity ease .7s .7s;
}
.y8 {
	transition: transform ease .7s .8s, opacity ease .7s .8s;
}
.y9 {
	transition: transform ease .7s .9s, opacity ease .7s .9s;
}
.ready .visible.y1,
.ready .visible.y2,
.ready .visible.y3,
.ready .visible.y4,
.ready .visible.y5,
.ready .visible.y6,
.ready .visible.y7,
.ready .visible.y8,
.ready .visible.y9 {
	opacity: 1;
	transform: translateX(0px);
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

body {
	font-size: 16px;
	font-weight: 400;
	line-height: 120%;
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-family: 'e-Ukraine', 'Inter', sans-serif;
  color: var(--color-white);
  background-color: var(--bg-second);
}

body.overflow {
  overflow: hidden;
  padding-right: 17px;
}

.site#page {
	overflow: clip;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.container-fluid {
  padding: 0px 50px;
  max-width: 1660px;
  max-width: 1905px;
  max-width: 94%;
}

.container-fluid .row {
  margin-left: -15px;
  margin-right: -15px;
}

.container-fluid .row [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

header {
  position: sticky;
  z-index: 100;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: var(--bg-black-matte);
  overflow-x: clip;
  box-shadow: 0px 0px 26px -5px rgba(0, 0, 0, 0.2);
}

.test-line {
  background-color: var(--bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
}

.test-line p {
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-gray-0);
  margin: 0px;
}

header .header-box {
  display: flex;
  background-color: var(--bg-black-matte);
}

header .header-box .header-wrap {
  padding: 16px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header-box .header-wrap .left-side-wrap {
  display: flex;
  align-items: center;
  margin-right: auto;
  width: calc(100% / 3);
}

header .header-box .header-wrap .left-side-wrap .header-menu-btn {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  line-height: 100%;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  height: 44px;
}

header .header-box .header-wrap .left-side-wrap .header-menu-btn::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 20px;
  margin-right: 18px;
  background-image: url(/img/menu-burger-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

header.side-open .header-box .header-wrap .left-side-wrap .header-menu-btn::before {
  background-image: url(/img/filter-cross.svg);
  background-size: 160% 160%;
}

header .header-box .header-wrap .logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header-box .header-wrap .logo-wrap a.logo {
  height: 35px;
  width: 280px;
  display: flex;
}

header .header-box .header-wrap .logo-wrap a.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

header .header-box .header-wrap .logo-wrap a.logo:not(:has(img)) {
  background-image: url(/img/logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

header .header-box .header-wrap .logo-wrap a.logo.logo-en:not(:has(img)) {
  background-image: url(/img/logo_en.svg);
}

body.light-mode header .header-box .header-wrap .logo-wrap a.logo:not(:has(img)) {
  background-image: url(/img/light-mode/logo-black.svg);
}

body.light-mode header .header-box .header-wrap .logo-wrap a.logo.logo-en:not(:has(img)) {
  background-image: url(/img/light-mode/logo_en-black.svg);
}

header .header-box .header-wrap .right-side-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  width: calc(100% / 3);
  gap: 10px;
}

header .header-box .header-wrap .right-side-wrap .theme-menu {
  display: flex;
  align-items: center;
}

header .header-box .header-wrap .right-side-wrap .theme-menu .theme-change-btn {
  display: flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 2px solid transparent;
  border-radius: 100%;
  background-image: url(/img/theme-light-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70% 70%;
  cursor: pointer;
  transition: var(--speed-slow);
  user-select: none;
}

header .header-box .header-wrap .right-side-wrap .theme-menu .theme-change-btn span {
  display: none;
}

@media screen and (min-width: 576px) {
  header .header-box .header-wrap .right-side-wrap .theme-menu .theme-change-btn:hover {
    background-color: var(--bg-gray-40);
    border-color: var(--color-white);
  }
}

header .header-box .header-wrap .right-side-wrap .search-menu {
  display: flex;
  align-items: center;
}

header .header-box .header-wrap .right-side-wrap .search-menu .search-form-btn {
  display: flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 2px solid transparent;
  border-radius: 100%;
  background-image: url(/img/search-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 60% 60%;
  cursor: pointer;
  transition: var(--speed-slow);
}

header .header-box .header-wrap .right-side-wrap .search-menu .search-form-btn span {
  display: none;
}

@media screen and (min-width: 576px) {
  header .header-box .header-wrap .right-side-wrap .search-menu .search-form-btn:hover {
    background-color: var(--bg-gray-40);
    border-color: var(--color-white);
  }
}

header .header-box .header-wrap .right-side-wrap .lang-menu {
  display: flex;
  align-items: center;
}

header .header-box .header-wrap .right-side-wrap .lang-menu .menu-item {
  display: flex;
  align-items: center;
}

header .header-box .header-wrap .right-side-wrap .lang-menu .menu-item a {
  font-size: 1em;
  line-height: 100%;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 2px solid transparent;
  border-radius: 100%;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  header .header-box .header-wrap .right-side-wrap .lang-menu .menu-item a:hover {
    background-color: var(--bg-gray-40);
    border-color: var(--color-white);
  }
}

header .header-box .header-wrap .right-side-wrap .login-menu {
  display: flex;
  align-items: center;
}

header .header-box .header-wrap .right-side-wrap .login-menu a.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-black);
  text-decoration: none;
  border-radius: 100px;
  border: 2px solid transparent;
  background-color: transparent;
  transition: var(--speed-slow);
}

header .header-box .header-wrap .right-side-wrap .login-menu a.login-btn span {
  width: 100%;
  padding: 13px 40px;
  background-color: var(--color-main);
  transition: var(--speed-slow);
  border-radius: 100px;
}

@media screen and (min-width: 576px) {
  header .header-box .header-wrap .right-side-wrap .login-menu a.login-btn:hover {
    border-color: #8DBD29;
    /* background-color: transparent;
    color: var(--color-white); */
  }
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 100%;
  border: 2px solid var(--color-main);
  overflow: hidden;
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--bg-gray-70);
  color: var(--color-main);
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-image:hover .avatar-placeholder {
    background-color: var(--bg-gray-40);
  }
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content {
  position: absolute;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: var(--speed-slow);
  background-color: var(--bg-black);
  right: 0px;
  top: calc(100% + 16px);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0px 0px 26px -5px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap.show .user-profile-content {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 26px;
  margin: 0px;
  display: flex;
  flex-direction: column;
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item {
  display: flex;
  align-items: center;
  flex: 1;
  margin: 0px;
  padding: 22px 0px;
  border-top: 1px solid var(--bg-gray-40);
  border-bottom: 1px solid var(--bg-gray-40);
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item:first-child {
  border-top: none;
  padding-top: 0px;
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: var(--speed-slow);
  white-space: nowrap;
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a span {
  position: relative;
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: none;
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/orders"]::before {
  background-image: url(/img/orders-icon-white.svg);
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/settings"]::before {
  background-image: url(/img/settings-icon-white.svg);
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/logout"]::before {
  background-image: url(/img/logout-icon-white.svg);
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::after {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  transition: var(--speed-slow);
  display: none;
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/orders"]::after {
  background-image: url(/img/orders-icon-main.svg);
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/settings"]::after {
  background-image: url(/img/settings-icon-main.svg);
}

header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/logout"]::after {
  background-image: url(/img/logout-icon-main.svg);
}

@media screen and (min-width: 576px) {
  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a:hover {
    color: var(--color-main);
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a:hover::after {
    opacity: 1;
  }
}

header .header-box .header-wrap .header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  margin: 0px auto;
  list-style: none;
}

header .header-box .header-wrap .header-menu .menu-item {
  margin: 0px 15px;
  display: flex;
}

header .header-box .header-wrap .header-menu .menu-item a {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  display: flex;
  text-decoration: none;
}

header .header-box .header-wrap .header-menu .menu-item a span {
  position: relative;
}

header .header-box .header-wrap .header-menu .menu-item a span::before {
  content: '';
  position: absolute;
  left: 0px;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background-color: var(--color-main);
  opacity: 0;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  header .header-box .header-wrap .header-menu .menu-item a:hover span::before {
    opacity: 1;
  }
}

header .header-box .header-wrap .header-menu .menu-item.active a span::before {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  z-index: 15;
  left: -400px;
  top: 76px;
  max-width: 400px;
  width: 100%;
  height: calc(100% - 76px);
  background-color: var(--bg-black);
  padding: 0px 48px;
  user-select: none;
  pointer-events: none;
  transition: left var(--speed-fast);
  box-shadow: 0px 0px 26px -5px rgba(0, 0, 0, 0.2);
}

.mobile-menu::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.mobile-menu.show {
  left: 0px;
  user-select: auto;
  pointer-events: all;
}

.mobile-menu .mobile-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 32px 0px;
  overflow-y: auto;
}

.mobile-menu .mobile-wrap::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.mobile-menu .mobile-wrap .profile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--bg-gray-40);
  margin-bottom: 26px;
}

.mobile-menu .mobile-wrap .profile-menu a.profile-btn {
  font-size: 1em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: var(--speed-slow);
}

.mobile-menu .mobile-wrap .profile-menu a.profile-btn::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(/img/profile-icon-white.svg);
}

.mobile-menu .mobile-wrap .profile-menu a.profile-btn::after {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(/img/profile-icon-main.svg);
  opacity: 0;
  transition: var(--speed-slow);
}

.mobile-menu .mobile-wrap .profile-menu a.profile-btn img {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 2px solid var(--color-main);
  border-radius: 100%;
  overflow: hidden;
  margin-right: 12px;
}

.mobile-menu .mobile-wrap .profile-menu a.profile-btn .avatar-placeholder {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 2px solid var(--color-main);
  border-radius: 100%;
  overflow: hidden;
  margin-right: 12px;
}

@media screen and (min-width: 576px) {
  .mobile-menu .mobile-wrap .profile-menu a.profile-btn:hover {
    color: var(--color-main);
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn:hover::after {
    opacity: 1;
  }
}

.mobile-menu .mobile-wrap .profile-menu a.profile-btn:has(img)::before,
.mobile-menu .mobile-wrap .profile-menu a.profile-btn:has(img)::after {
  display: none;
}

.mobile-menu .mobile-wrap .profile-menu a.profile-btn:has(.avatar-placeholder)::before,
.mobile-menu .mobile-wrap .profile-menu a.profile-btn:has(.avatar-placeholder)::after {
  display: none;
}

.mobile-menu .mobile-wrap .login-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--bg-gray-40);
  margin-bottom: 26px;
}

.mobile-menu .mobile-wrap .login-menu a.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--color-main);
  background-color: var(--color-main);
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-black);
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 100px;
  text-align: center;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  .mobile-menu .mobile-wrap .login-menu a.login-btn:hover {
    background-color: transparent;
    color: var(--color-white);
  }
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap {
  display: flex;
  flex-direction: column;
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 100%;
  border: 2px solid var(--color-main);
  overflow: hidden;
  display: none;
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content {
  display: flex;
  flex-direction: column;
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  margin: 0px;
  list-style: none;
  gap: 20px;
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item {
  display: flex;
  align-items: center;
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a {
  font-size: 1em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: var(--speed-slow);
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a span {
  position: relative;
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/orders"]::before {
  background-image: url(/img/orders-icon-white.svg);
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/settings"]::before {
  background-image: url(/img/settings-icon-white.svg);
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/logout"]::before {
  background-image: url(/img/logout-icon-white.svg);
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::after {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  transition: var(--speed-slow);
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/orders"]::after {
  background-image: url(/img/orders-icon-main.svg);
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/settings"]::after {
  background-image: url(/img/settings-icon-main.svg);
}

.mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/logout"]::after {
  background-image: url(/img/logout-icon-main.svg);
}

@media screen and (min-width: 576px) {
  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a:hover {
    color: var(--color-main);
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a:hover::after {
    opacity: 1;
  }
}

.mobile-menu .mobile-wrap .addon-menu {
  display: flex;
  flex-direction: column;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--bg-gray-40);
  margin-bottom: 26px;
  gap: 20px;
  width: 100%;
}

.mobile-menu .mobile-wrap .addon-menu .lang-menu {
  display: flex;
  align-items: center;
}

.mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a {
  font-size: 1em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: var(--speed-slow);
  text-transform: uppercase;
}

.mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(/img/globe-icon-white.svg);
}

.mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a::after {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(/img/globe-icon-main.svg);
  opacity: 0;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a:hover {
    color: var(--color-main);
  }

  .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a:hover::after {
    opacity: 1;
  }
}

.mobile-menu .mobile-wrap .addon-menu .theme-menu {
  display: flex;
  align-items: center;
  display: none;
}

.mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn {
  font-size: 1em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: var(--speed-slow);
}

.mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(/img/theme-light-icon-white.svg);
}

.mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn::after {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(/img/theme-light-icon-main.svg);
  opacity: 0;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn:hover {
    color: var(--color-main);
  }

  .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn:hover::after {
    opacity: 1;
  }
}

.mobile-menu .mobile-wrap .addon-menu .search-menu {
  display: flex;
  align-items: center;
  display: none;
}

.mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn {
  font-size: 1em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: var(--speed-slow);
}

.mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(/img/search-icon-white.svg);
}

.mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn::after {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(/img/search-icon-main.svg);
  opacity: 0;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn:hover {
    color: var(--color-main);
  }

  .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn:hover::after {
    opacity: 1;
  }
}

.mobile-menu .mobile-wrap .side-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  margin: 0px;
  list-style: none;
  padding-bottom: 26px;
  border-bottom: 2px solid var(--bg-gray-40);
  margin-bottom: 26px;
  gap: 20px;
  width: 100%;
}

.mobile-menu .mobile-wrap .side-menu .menu-item {
  display: flex;
  align-items: center;
}

.mobile-menu .mobile-wrap .side-menu .menu-item a {
  font-size: 1em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--speed-slow);
}

.mobile-menu .mobile-wrap .side-menu .menu-item a span {
  position: relative;
}

@media screen and (min-width: 576px) {
  .mobile-menu .mobile-wrap .side-menu .menu-item a:hover {
    color: var(--color-main);
  }
}

.mobile-menu .mobile-wrap .side-menu .menu-item.active a {
  color: var(--color-main);
}

.mobile-menu .mobile-wrap .contacts-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0px;
  margin: 0px;
  gap: 20px;
  margin-bottom: auto;
}

.mobile-menu .mobile-wrap .contacts-menu .menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-menu .mobile-wrap .contacts-menu .menu-item span {
  font-size: 1em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 8px;
}

.mobile-menu .mobile-wrap .contacts-menu .menu-item a {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-main);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  .mobile-menu .mobile-wrap .contacts-menu .menu-item a:hover {
    text-decoration: underline;
  }
}

.mobile-menu .mobile-wrap .socials-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  padding: 0px;
  margin: 0px;
  user-select: none;
  padding-top: 26px;
  border-top: 2px solid var(--bg-gray-40);
  margin-top: 26px;
  gap: 15px;
}

.mobile-menu .mobile-wrap .socials-menu .menu-item {
  display: flex;
  align-items: center;
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a {
  display: flex;
  width: 46px;
  min-width: 46px;
  height: 46px;
  background-image: url(/img/facebook-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 100%;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  .mobile-menu .mobile-wrap .socials-menu .menu-item a:hover {
    background-color: var(--bg-gray-40);
  }
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a span {
  display: none;
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="x.com"] {
  background-image: url(/img/x-icon-white.svg);
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="linkedin.com"] {
  background-image: url(/img/linkedin-icon-white.svg);
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="t.me"] {
  background-image: url(/img/telegram-icon-white.svg);
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="youtube.com"] {
  background-image: url(/img/youtube-icon-white.svg);
}

.mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="instagram.com"] {
  background-image: url(/img/instagram-icon-white.svg);
}

footer {
  background-color: var(--bg-black);
  padding: 65px 0px 50px;
}

footer .footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

footer .footer-wrap a.logo {
  height: 40px;
  width: 280px;
  margin-bottom: 20px;
}

footer .footer-wrap a.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

footer .footer-wrap a.logo:not(:has(img)) {
  background-image: url(/img/logo.svg);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: contain;
}

footer .footer-wrap a.logo.logo-en:not(:has(img)) {
  background-image: url(/img/logo_en.svg);
}

body.light-mode footer .footer-wrap a.logo:not(:has(img)) {
  background-image: url(/img/light-mode/logo-black.svg);
}

body.light-mode footer .footer-wrap a.logo.logo-en:not(:has(img)) {
  background-image: url(/img/light-mode/logo_en-black.svg);
}

footer .footer-wrap span.logo-text {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
}

footer .footer-wrap .socials-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px;
  margin: 30px 0px 0px;
  list-style: none;
  gap: 15px;
}

footer .footer-wrap .socials-menu .menu-item {
  display: flex;
  align-items: center;
}

footer .footer-wrap .socials-menu .menu-item a {
  display: flex;
  width: 46px;
  min-width: 46px;
  height: 46px;
  background-image: url(/img/facebook-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 100%;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  footer .footer-wrap .socials-menu .menu-item a:hover {
    background-color: var(--bg-gray-40);
  }
}

footer .footer-wrap .socials-menu .menu-item a span {
  display: none;
}

footer .footer-wrap .socials-menu .menu-item a[href*="x.com"] {
  background-image: url(/img/x-icon-white.svg);
}

footer .footer-wrap .socials-menu .menu-item a[href*="linkedin.com"] {
  background-image: url(/img/linkedin-icon-white.svg);
}

footer .footer-wrap .socials-menu .menu-item a[href*="t.me"] {
  background-image: url(/img/telegram-icon-white.svg);
}

footer .footer-wrap .socials-menu .menu-item a[href*="youtube.com"] {
  background-image: url(/img/youtube-icon-white.svg);
}

footer .footer-wrap .socials-menu .menu-item a[href*="instagram.com"] {
  background-image: url(/img/instagram-icon-white.svg);
}

footer .footer-wrap .contacts-menu {
  display: flex;
  flex-direction: column;
}

footer .footer-wrap .contacts-menu .menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

footer .footer-wrap .contacts-menu .menu-item:not(:last-child) {
  margin-bottom: 30px;
}

footer .footer-wrap .contacts-menu .menu-item span {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 16px;
}

footer .footer-wrap .contacts-menu .menu-item a {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-main);
  margin: 0px;
  text-decoration: none;
}

@media screen and (min-width: 576px) {
  footer .footer-wrap .contacts-menu .menu-item a:hover {
    text-decoration: underline;
  }
}

footer .footer-wrap .footer-menu {
  padding: 0px;
  margin: 0px -15px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

footer .footer-wrap .footer-menu .menu-item {
  width: calc(100% / 2);
  padding: 0px 15px;
}

footer .footer-wrap .footer-menu .menu-item:nth-child(1n + 3) {
  margin-top: 16px;
}

footer .footer-wrap .footer-menu .menu-item a {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
}

@media screen and (min-width: 576px) {
  footer .footer-wrap .footer-menu .menu-item a:hover {
    text-decoration: underline;
  }
}

footer .footer-inner {
  margin-top: 45px;
  border-top: 1px solid var(--color-gray-10);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .footer-inner span.copyright {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
}

footer .footer-inner .inner-menu {
  display: flex;
  padding: 0px;
  margin: 0px;
  list-style: none;
  gap: 30px;
}

footer .footer-inner .inner-menu .menu-item {
  display: flex;
}

footer .footer-inner .inner-menu .menu-item a {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-gray-10);
  text-decoration: none;
}

@media screen and (min-width: 576px) {
  footer .footer-inner .inner-menu .menu-item a:hover {
    text-decoration: underline;
  }
}

body a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-main);
  background-color: transparent;
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  padding: 17px 40px;
  text-decoration: none;
  border-radius: 100px;
  text-align: center;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  body a.btn:hover {
    background-color: var(--color-main);
    color: var(--color-black);
  }
}

body a.btn.main {
  padding: 0px;
  background-color: transparent;
  color: var(--color-black);
  border: 4px solid transparent;
}

body a.btn.main span {
  width: 100%;
  padding: 14px 40px;
  background-color: var(--color-main);
  transition: var(--speed-slow);
  border-radius: 100px;
}

@media screen and (min-width: 576px) {
  body a.btn.main:hover {
    /* background-color: transparent;
    color: var(--color-white); */
    background-color: var(--color-main);
    border-color: #8DBD29;
  }
}

body a.btn.black {
  border-color: var(--color-black);
  background-color: var(--color-black);
  color: var(--color-main);
}

@media screen and (min-width: 576px) {
  body a.btn.black:hover {
    border-color: var(--color-main);
    background-color: transparent;
    color: var(--color-white);
  }
}

body a.btn.white {
  border-color: var(--color-white);
  background-color: transparent;
  color: var(--color-white);
}

@media screen and (min-width: 576px) {
  body a.btn.white:hover {
    border-color: var(--color-white);
    background-color: var(--color-white);
    color: var(--color-black);
  }
}

body a.btn.video {
  border-color: var(--color-white);
  color: var(--color-white);
  padding: 16px 36px;
}

body a.btn.video::before {
  content: '';
  width: 16px;
  min-width: 16px;
  height: 24px;
  background-image: url(/img/play-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 20px;
}

@media screen and (min-width: 576px) {
  body a.btn.video:hover {
    border-color: var(--color-black);
    background-color: var(--color-black);
    color: var(--color-white);
  }
}

body a.btn.white.main {
  border-color: transparent;
  background-color: transparent;
  color: var(--color-black);
}

body a.btn.white.main span {
  background-color: var(--color-white);
}

@media screen and (min-width: 576px) {
  body a.btn.white.main:hover {
    border-color: var(--color-white);
    background-color: var(--color-white);
  }
}

.slick-slider .slick-list {
  overflow: visible;
}

section.main-exhibitions {
  background-color: var(--bg-gray-100);
  padding: 30px 0px 60px;
}

section.main-exhibitions .main-slider {
  position: relative;
  margin: 0px -13px;
}

@media screen and (min-width: 576px) {
  section.main-exhibitions .main-slider .slick-slide {
    opacity: 0.4;
    user-select: none;
    pointer-events: none;
    transition: opacity var(--speed-fast);
  }

  section.main-exhibitions .main-slider .slick-slide.slick-active {
    opacity: 1;
    user-select: auto;
    pointer-events: all;
  }

  section.main-exhibitions .main-slider:has(.slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned)) .slick-slide.slick-cloned:nth-child(2) {
    opacity: 1;
  }

  section.main-exhibitions .main-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned {
    opacity: 1;
  }

  section.main-exhibitions .main-slider .slick-slide .main-item .item-link .caption .circle .text-circle {
    opacity: 0;
  }

  section.main-exhibitions .main-slider .slick-slide.slick-active .main-item .item-link .caption .circle .text-circle {
    opacity: 1;
  }

  section.main-exhibitions .main-slider:has(.slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned)) .slick-slide.slick-cloned:nth-child(2) .main-item .item-link .caption .circle .text-circle {
    opacity: 1;
  }

  section.main-exhibitions .main-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned .main-item .item-link .caption .circle .text-circle {
    opacity: 1;
  }
}

section.main-exhibitions .main-slider .slick-slide > div {
  display: flex;
}

section.main-exhibitions .main-slider .main-item {
  padding: 0px 13px;
}

section.main-exhibitions .main-slider .main-item .item-link {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

section.main-exhibitions .main-slider .main-item .item-link .thumbnail {
  position: relative;
  z-index: 1;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 545px;
}

section.main-exhibitions .main-slider .main-item .item-link .thumbnail .img-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

section.main-exhibitions .main-slider .main-item .item-link .thumbnail .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.main-exhibitions .main-slider .main-item .item-link .caption {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: #00000066;
  display: flex;
  align-items: center;
  padding: 50px 40px 50px 80px;
}

section.main-exhibitions .main-slider .main-item .item-link .caption .text {
  width: calc(100% / 2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

section.main-exhibitions .main-slider .main-item .item-link .caption .text .uppertitle {
  font-size: 1.5em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
}

section.main-exhibitions .main-slider .main-item .item-link .caption .text p.h2 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 3.5em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 30px;
}

section.main-exhibitions .main-slider .main-item .item-link .caption .text a.btn {
  min-width: 250px;
}

section.main-exhibitions .main-slider .main-item .item-link .caption .text a.btn::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

@keyframes circle-effect {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

section.main-exhibitions .main-slider .main-item .item-link .caption .circle {
  width: calc(100% / 2);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle {
  width: 220px;
  min-width: 220px;
  height: 220px;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-main);
  transition: var(--speed-slow);
  user-select: none;
  position: relative;
}

section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 47%;
  height: 27%;
  background-image: url(/img/vr-glasses-icon-primary.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle .rotate {
  width: 220px;
  height: 220px;
  position: relative;
  animation: circle-effect 10s linear infinite;
  border-radius: 100%;
}

section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle .rotate span {
  position: absolute;
  left: 50%;
  transform-origin: 0 110px;
  font-size: 1.25em;
  line-height: 100%;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-main);
}

section.main-exhibitions .main-slider .slick-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

section.main-exhibitions .main-slider .slick-arrow.slick-prev {
  left: -30px;
}

section.main-exhibitions .main-slider .slick-arrow.slick-next {
  right: -30px;
}

section .slick-slider .slick-arrow {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: var(--bg-gray-40);
  border: 1px solid transparent;
  color: transparent;
  font-size: 0em;
  overflow: hidden;
  box-shadow: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 46% 46%;
  transition: var(--speed-slow);
  outline: none;
}

section .slick-slider .slick-arrow.slick-prev {
  background-image: url(/img/slider-arrow-left-white.svg);
}

section .slick-slider .slick-arrow.slick-next {
  background-image: url(/img/slider-arrow-right-white.svg);
}

@media screen and (min-width: 576px) {
  section .slick-slider .slick-arrow:hover {
    background-color: var(--bg-gray-70);
    border-color: var(--color-main);
  }
}

section.main-exhibitions .main-slider .slick-dots {
  position: absolute;
  z-index: 2;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0px;
  margin: 0px;
  width: calc(100% - 26px);
}

section.main-exhibitions .main-slider .slick-dots li {
  width: 100%;
  display: flex;
  align-items: center;
}

section.main-exhibitions .main-slider .slick-dots li button {
  height: 3px;
  width: 100%;
  background-color: var(--bg-gray-40);
  border: none;
  color: transparent;
  font-size: 0em;
  overflow: hidden;
  box-shadow: none;
  outline: none;
  transition: var(--speed-slow);
}

section.main-exhibitions .main-slider .slick-dots li.slick-active button {
  background-color: var(--color-main);
}

@media screen and (min-width: 576px) {
  section.main-exhibitions .main-slider .slick-dots li button:hover {
    background-color: var(--color-main);
  }
}

section.partners {
  padding: 50px 0px;
  background-color: var(--bg-gray-100);
}

section.partners .partners-wrap {
  display: flex;
}

section.partners .partners-wrap h2,
section.partners .partners-wrap p.h2 {
  font-family: 'e-Ukraine', 'Inter', sans-serif;
  font-size: 1.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-gray-10);
  text-align: left;
  margin-bottom: 0px;
  width: calc(100% / 6);
  word-spacing: 100vw;
}

section.partners .partners-wrap .partners-scroll {
  width: calc((100% / 6) * 5);
}

section.partners .partners-wrap .partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

section.partners .partners-wrap .partners-list .list-item {
  display: flex;
  align-items: center;
}

section.partners .partners-wrap .partners-list .list-item .img-wrap {
  width: 100%;
  height: 30px;
  position: relative;
}

section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="namu"]) {
  height: 35px;
}

section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="nmdmu"]) {
  height: 40px;
}

section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="mvduc"]) {
  height: 55px;
}

section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="chornobyl"]) {
  height: 40px;
}

section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="war-museum"]) {
  height: 55px;
}

section.partners .partners-wrap .partners-list .list-item .img-wrap .item-link {
  height: 100%;
  display: flex;
  text-decoration: none;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.partners .partners-wrap .partners-list .list-item .img-wrap .item-link:hover {
    filter: brightness(2);
  }
}

section.partners .partners-wrap .partners-list .list-item .img-wrap .item-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

section.new-exhibitions {
  padding: 50px 0px 60px;
  background-color: var(--bg-black);
}

section.new-exhibitions .exhibitions-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 44px;
}

section h2.section-title,
section p.h2.section-title {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 2.25em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 44px;
}

section.new-exhibitions .exhibitions-title h2,
section.new-exhibitions .exhibitions-title p.h2 {
  margin: 0px;
}

section.new-exhibitions .exhibitions-title p:not(.h2) {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin: 16px 0px 0px;
}

section.new-exhibitions .exhibitions-slider {
  position: relative;
  margin: 0px -15px;
}

section.new-exhibitions .exhibitions-slider .slick-track {
  display: flex;
}

section.new-exhibitions .exhibitions-slider .slick-track .slick-slide {
  height: auto;
}

section.new-exhibitions .exhibitions-slider .slick-track .slick-slide > div {
  height: 100%;
}

section.new-exhibitions .exhibitions-slider .slick-track .slick-slide > div .exhibitions-item {
  height: 100%;
}

section.new-exhibitions .exhibitions-slider .slick-track .slick-slide > div .exhibitions-item .item-link {
  height: 100%;
}

@media screen and (min-width: 576px) {
  section.new-exhibitions .exhibitions-slider .slick-slide {
    opacity: 0.4;
    user-select: none;
    pointer-events: none;
    transition: opacity var(--speed-fast);
  }

  section.new-exhibitions .exhibitions-slider .slick-slide.slick-active {
    opacity: 1;
    user-select: auto;
    pointer-events: all;
  }

  section.new-exhibitions .exhibitions-slider:has(.slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned)) .slick-slide.slick-cloned:nth-child(2) {
    opacity: 1;
  }

  section.new-exhibitions .exhibitions-slider:has(.slick-slide.slick-cloned.slick-active) .slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) {
    opacity: 1;
  }

  section.new-exhibitions .exhibitions-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned {
    opacity: 1;
  }

  section.new-exhibitions .exhibitions-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned + .slick-slide.slick-cloned {
    opacity: 1;
  }
}

/* @media screen and (min-width: 576px) {
  section.new-exhibitions .exhibitions-slider .slick-slide {
    opacity: 0.4;
    user-select: none;
    pointer-events: none;
    transition: opacity var(--speed-fast);
  }

  section.new-exhibitions .exhibitions-slider .slick-slide.slick-active {
    opacity: 1;
    user-select: auto;
    pointer-events: all;
  }

  section.new-exhibitions .exhibitions-slider:has(.slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned)) .slick-slide.slick-cloned:nth-child(2) {
    opacity: 1;
  }

  section.new-exhibitions .exhibitions-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned {
    opacity: 1;
  }
} */

section.new-exhibitions .exhibitions-slider .slick-slide > div {
  display: flex;
}

section.new-exhibitions .exhibitions-slider .exhibitions-item {
  padding: 0px 15px;
}

section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link {
  display: flex;
  padding: 24px;
  border: 2px solid transparent;
  background-color: var(--bg-black-matte);
  border-radius: 30px;
  gap: 30px;
  text-decoration: none;
  transition: var(--speed-fast);
}

@media screen and (min-width: 576px) {
  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link:hover {
    border-color: var(--color-main);
  }
}

section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .thumbnail {
  width: calc(100% / 2);
}

section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .thumbnail .img-wrap {
  position: relative;
  padding-top: 87%;
  height: 100%;
}

section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .thumbnail .img-wrap img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}

section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption {
  width: calc(100% / 2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.uppertitle {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 8px;
  display: none;
}

section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption p.h2 {
  font-size: 2em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 36px;
}

section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.museum-desc {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.museum-desc::before {
  content: '';
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-image: url(/img/museum-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 12px;
}

section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.price-desc {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  display: flex;
  align-items: center;
}

section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.price-desc::before {
  content: '';
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-image: url(/img/price-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 12px;
}

section.new-exhibitions .exhibitions-slider .slick-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

section.new-exhibitions .exhibitions-slider .slick-arrow.slick-prev {
  left: -30px;
}

section.new-exhibitions .exhibitions-slider .slick-arrow.slick-next {
  right: -30px;
}

section.new-exhibitions .buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
}

section.new-exhibitions .buttons-wrap a.btn {
  min-width: 250px;
}

section.main-cards {
  padding: 50px 0px 60px;
  background-color: var(--bg-gray-100);
}

section.main-cards .cards-wrap {
  display: flex;
  flex-direction: column;
}

section.main-cards .cards-wrap .cards-list {
  display: flex;
  margin: 0px -15px;
}

section.main-cards .cards-wrap .cards-list .list-item {
  padding: 0px 15px;
  width: calc(100% / 3);
}

section.main-cards .cards-wrap .cards-list .list-item .item-wrap {
  padding: 38px;
  background-color: var(--bg-gray-70);
  border: 2px solid transparent;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--speed-fast);
  height: 100%;
}

/* @media screen and (min-width: 576px) {
  section.main-cards .cards-wrap .cards-list .list-item .item-wrap:hover {
    background-color: var(--bg-black-matte);
    border-color: var(--color-main);
  }
} */

section.main-cards .cards-wrap .cards-list .list-item .item-wrap .thumbnail {
  width: 120px;
  display: flex;
  flex-direction: column;
  margin-bottom: 45px;
}

section.main-cards .cards-wrap .cards-list .list-item .item-wrap .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}

section.main-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
  font-size: 1.5em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 16px;
}

section.main-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  margin: 0px;
}

section.main-news {
  padding: 50px 0px 60px;
  background-color: var(--bg-black);
}

section.main-news .news-wrap {
  display: flex;
  flex-direction: column;
}

section.main-news .news-wrap .title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

section.main-news .news-wrap .title-wrap h2.section-title,
section.main-news .news-wrap .title-wrap p.h2.section-title {
  margin: 0px;
}

section.main-news .news-wrap .title-wrap .news-arrows {
  display: flex;
  align-items: center;
  gap: 20px;
}

section.main-news .news-wrap .title-wrap .news-arrows .slick-arrow {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: var(--bg-gray-40);
  color: transparent;
  font-size: 0em;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 46% 46%;
  transition: var(--speed-slow);
  outline: none;
}

@media screen and (min-width: 576px) {
  section.main-news .news-wrap .title-wrap .news-arrows .slick-arrow:hover {
    background-color: var(--bg-gray-70);
    border-color: var(--color-main);
  }
}

section.main-news .news-wrap .title-wrap .news-arrows .slick-arrow.slick-prev {
  background-image: url(/img/slider-arrow-left-white.svg);
}

section.main-news .news-wrap .title-wrap .news-arrows .slick-arrow.slick-next {
  background-image: url(/img/slider-arrow-right-white.svg);
}

section.main-news .news-wrap .news-slider {
  margin: 0px -15px;
  position: relative;
}

section.main-news .news-wrap .news-slider .slick-track {
  display: flex;
}

section.main-news .news-wrap .news-slider .slick-track .slick-slide {
  height: auto;
}

section.main-news .news-wrap .news-slider .slick-track .slick-slide > div {
  height: 100%;
}

section.main-news .news-wrap .news-slider .slick-track .slick-slide > div > .exhibitions-item.post-single {
  height: 100%;
}

section.main-news .news-wrap .news-slider .slick-track .slick-slide > div > .exhibitions-item.post-single .item-link {
  height: 100%;
}

@media screen and (min-width: 576px) {
  section.main-news .news-wrap .news-slider .slick-slide {
    opacity: 0.4;
    user-select: none;
    pointer-events: none;
    transition: opacity var(--speed-fast);
  }

  section.main-news .news-wrap .news-slider .slick-slide.slick-active {
    opacity: 1;
    user-select: auto;
    pointer-events: all;
  }

  section.main-news .news-wrap .news-slider:has(.slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned)) .slick-slide.slick-cloned:nth-child(2) {
    opacity: 1;
  }

  section.main-news .news-wrap .news-slider:has(.slick-slide.slick-cloned.slick-active) .slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) {
    opacity: 1;
  }

  section.main-news .news-wrap .news-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned {
    opacity: 1;
  }

  section.main-news .news-wrap .news-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned + .slick-slide.slick-cloned {
    opacity: 1;
  }
}

section.main-news .news-wrap .news-slider .exhibitions-item.post-single {
  padding: 0px 15px;
}

section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link {
  border: 2px solid transparent;
  padding: 12px;
  background-color: var(--bg-black-matte);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: var(--speed-fast);
  text-decoration: none;
  gap: 18px;
}

@media screen and (min-width: 576px) {
  section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link:hover {
    border-color: var(--color-main);
  }
}

section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .thumbnail {
  width: 100%;
}

section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .thumbnail .img-wrap {
  position: relative;
  padding-top: 65%;
  height: 100%;
}

section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .thumbnail .img-wrap img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .caption {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1;
}

section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .caption p.h2 {
  font-size: 1.5em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
}

section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .caption span.date {
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 300;
  color: var(--color-white);
  opacity: 0.8;
  margin-top: auto;
}

section.main-news .news-wrap .buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
}

section.main-news .news-wrap .buttons-wrap a.btn {
  min-width: 250px;
}

section.main-video {
  padding: 50px 0px 60px;
  background-color: var(--bg-black-matte);
}

section.main-video .video-box {
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--bg-gray-100);
  display: flex;
  flex-direction: column;
}

section.main-video .video-box .video-top {
  background-color: var(--bg-gray-100);
  box-shadow: 0px 7px 53.9px 0px #00000040;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  position: relative;
  z-index: 2;
}

section.main-video .video-box .video-top .dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

section.main-video .video-box .video-top .dots .dot {
  width: 10px;
  min-width: 10px;
  height: 10px;
  border-radius: 100%;
}

section.main-video .video-box .video-top .dots .dot.red {
  background-color: #EC6768;
}

section.main-video .video-box .video-top .dots .dot.yellow {
  background-color: #DABD57;
}

section.main-video .video-box .video-top .dots .dot.green {
  background-color: #67CE5B;
}

section.main-video .video-box .video-wrap {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

section.main-video .video-box .video-wrap iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

section.main-video .buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
}

section.main-video .buttons-wrap a.btn {
  min-width: 250px;
}

section.single-subscribe {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.single-subscribe .thumbnail {
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
}

section.single-subscribe .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.single-subscribe .thumbnail::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #00000099;
}

section.single-subscribe .caption {
  position: relative;
  z-index: 2;
  padding: 50px 0px 60px;
}

section.single-subscribe .caption .subscribe-wrap {
  display: flex;
  flex-direction: column;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap {
  display: flex;
  flex-direction: column;
}

section.single-subscribe.change .caption .subscribe-wrap .subscribe-buttons-wrap {
  display: none;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap h2,
section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap p.h2 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 44px;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list {
  display: flex;
  flex-direction: column;
  padding: 0px;
  margin: 0px;
  list-style: none;
  gap: 14px;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item {
  display: flex;
  align-items: center;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid var(--color-white);
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  background-color: transparent;
  padding: 6px 40px;
  width: 100%;
  text-decoration: none;
  transition: var(--speed-slow);
}

/* section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a span:not(.icon) {
  max-width: 150px;
  width: 100%;
} */

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a span.icon {
  display: flex;
  width: 44px;
  min-width: 44px;
  height: 44px;
  margin-right: 16px;
  position: relative;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a span.icon::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 1;
  transition: var(--speed-slow);
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a span.icon::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  transition: var(--speed-slow);
}

/* section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a.writeToUs-btn {
  border-color: var(--color-main);
  background-color: var(--color-main);
  color: var(--color-black);
} */

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a.writeToUs-btn span.icon::before {
  background-image: url(/img/mail-icon-white.svg);
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a[href*="facebook.com"] span.icon::before {
  background-image: url(/img/facebook-sub-icon-white.svg);
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a[href*="instagram.com"] span.icon::before {
  background-image: url(/img/instagram-sub-icon-white.svg);
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a.writeToUs-btn span.icon::after {
  background-image: url(/img/mail-icon-black.svg);
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a[href*="facebook.com"] span.icon::after {
  background-image: url(/img/facebook-sub-icon-black.svg);
}

section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a[href*="instagram.com"] span.icon::after {
  background-image: url(/img/instagram-sub-icon-black.svg);
}

@media screen and (min-width: 576px) {
  /* section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a:hover {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-black);
  } */

  /* section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a.writeToUs-btn:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-main);
  } */

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a:hover {
    border-color: var(--color-main);
    background-color: var(--color-main);
    color: var(--color-black);
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a:hover span.icon::before {
    opacity: 0;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a:hover span.icon::after {
    opacity: 1;
  }
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap {
  display: none;
  flex-direction: column;
}

section.single-subscribe.change .caption .subscribe-wrap .subscribe-form-wrap {
  display: flex;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap h2,
section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap p.h2 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 44px;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap h2 span,
section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap p.h2 span {
  color: var(--color-main);
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form input[type="email"] {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-white);
  background-color: var(--color-white);
  border-radius: 100px;
  color: var(--color-black);
  font-size: 1em;
  line-height: 150%;
  font-weight: 500;
  padding: 13px 36px;
  text-decoration: none;
  transition: var(--speed-slow);
  outline: none;
  width: 100%;
  margin-right: 24px;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form input[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid transparent;
  background-color: var(--color-main);
  border-radius: 100px;
  color: var(--color-black);
  font-size: 1em;
  line-height: 150%;
  font-weight: 500;
  padding: 10px 36px;
  text-decoration: none;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form input[type="submit"]:hover {
    /* background-color: transparent;
    color: var(--color-white); */
    border-color: #8DBD29;
  }
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox {
  display: flex;
  margin: 30px 24px 0px;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 20px;
  width: 20px;
  z-index: 99;
  left: 0;
  /* right: 0; */
  bottom: 0;
  top: 0;
}

.subscribe-checkbox {
  position: relative;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox label {
  display: flex;
  cursor: pointer;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox .checkmark {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 2px solid var(--color-white);
  border-radius: 2px;
  transition: var(--speed-slow);
  background-color: transparent;
  position: relative;
  margin-right: 18px;
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox .checkmark::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: '';
  background-color: transparent;
  transition: var(--speed-slow);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 140% 140%;
}

@media screen and (min-width: 576px) {
  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox:hover .checkmark::after {
    background-color: var(--bg-gray-40);
  }
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox input:checked ~ .checkmark {
  border-color: var(--color-main);
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox input:checked ~ .checkmark::after {
  background-color: var(--color-main);
  background-image: url(/img/filter-check-black.svg);
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox label p {
  margin: 0px;
  text-align: left;
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-gray-0);
}

section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox label p a {
  color: var(--color-white);
  text-decoration: none;
}

@media screen and (min-width: 576px) {
  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox label p a:hover {
    text-decoration: underline;
  }
}

section.faq {
  padding: 50px 0px 60px;
  background-color: var(--bg-gray-100);
}

section.faq.faq-single {
  background-color: var(--bg-black);
}

section.faq .faq-text {
  display: flex;
  flex-direction: column;
  padding-right: 30px;
}

section.faq .faq-text h2,
section.faq .faq-text h1 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: left;
  margin-bottom: 44px;
}

section.faq .faq-text .show-more-wrap .show-more-content {
  -webkit-line-clamp: 12;
	line-clamp: 12;
}

section.faq .faq-text .show-more-wrap .show-more span {
  color: var(--color-white);
}

section.faq .faq-text .show-more-wrap .show-more::after {
  background-image: url(/img/show-more-arrow-white.svg);
}

section.faq .faq-text .show-more-wrap .page-content h2 {
  font-size: 1.75em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 16px;
}

@media screen and (max-width: 1399px) {
  section.faq .faq-text .show-more-wrap .page-content h2 {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 1199px) {
  section.faq .faq-text .show-more-wrap .page-content h2 {
    font-size: 1.375em;
  }
}

@media screen and (max-width: 991px) {
  section.faq .faq-text .show-more-wrap .page-content h2 {
    font-size: 1.25em;
  }
}

@media screen and (max-width: 767px) {
  section.faq .faq-text .show-more-wrap .page-content h2 {
    font-size: 1.125em;
  }
}

@media screen and (max-width: 576px) {
  section.faq .faq-text .show-more-wrap .page-content h2 {
    margin-bottom: 12px;
  }
}

section.faq .faq-wrap {
  display: flex;
  flex-direction: column;
}

section.faq.faq-single .faq-wrap h1 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 44px;
}

section.faq .faq-wrap h2 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: left;
  margin-bottom: 44px;
}

section.faq:not(:has(.faq-text)) .faq-wrap h2 {
  text-align: center;
}

section.faq .faq-container .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--bg-gray-70);
  padding: 0px;
}

section.faq .faq-container .card:not(:last-child) {
  margin-bottom: 14px;
}

section.faq .faq-container .card .card-header {
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

section.faq .faq-container .card .card-header .accordion-button {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  padding: 10px 20px 10px 36px;
  background-color: transparent;
  justify-content: space-between;
  min-height: 70px;
}

section.faq .faq-container .card .card-header .accordion-button::after {
  display: none;
}

section.faq .faq-container .card .card-header .accordion-button span:not(.cross) {
  margin-right: 12px;
}

section.faq .faq-container .card .card-header .accordion-button span.cross {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 36px;
  min-width: 36px;
  height: 36px;
  position: relative;
  transition: var(--speed-fast);
  border: 2px solid var(--color-white);
  border-radius: 100%;
}

section.faq .faq-container .card .card-header .accordion-button span.cross::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 14px;
  height: 2px;
  background-color: var(--color-white);
}

section.faq .faq-container .card .card-header .accordion-button span.cross::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 2px;
  height: 14px;
  background-color: var(--color-white);
  transition: var(--speed-slow);
}

section.faq .faq-container .card .card-header .accordion-button:not(.collapsed) span.cross::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

section.faq .faq-container .card .card-body {
  padding: 0 20px 20px 36px;
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
}

section.faq .faq-container .card .card-body a {
  color: var(--color-white);
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.faq .faq-container .card .card-body a:hover {
    color: var(--color-main);
  }
}

section.faq .faq-container .card .card-body *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
  .container-fluid {
    padding: 0px 45px;
    max-width: 1905px;
  }

  .test-line {
    padding: 7px 9px;
  }

  header .header-box .header-wrap {
    padding: 15px 0px;
  }

  header .header-box .header-wrap .left-side-wrap .header-menu-btn {
    height: 40px;
  }

  header .header-box .header-wrap .left-side-wrap .header-menu-btn::before {
    width: 22px;
    min-width: 22px;
    height: 18px;
    margin-right: 16px;
  }

  header .header-box .header-wrap .logo-wrap a.logo {
    height: 32px;
  }

  header .header-box .header-wrap .right-side-wrap {
    gap: 9px;
  }

  header .header-box .header-wrap .right-side-wrap .theme-menu .theme-change-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  header .header-box .header-wrap .right-side-wrap .search-menu .search-form-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  header .header-box .header-wrap .right-side-wrap .lang-menu .menu-item a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 0.875em;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu a.login-btn span {
    padding: 11px 36px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-image {
    width: 40px;
    height: 40px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content {
    top: calc(100% + 15px);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu {
    padding: 24px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item {
    padding: 20px 0px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::after {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  header .header-box .header-wrap .header-menu .menu-item {
    margin: 0px 13px;
  }

  .mobile-menu {
    left: -370px;
    top: 70px;
    max-width: 370px;
    height: calc(100% - 70px);
    padding: 0px 44px;
  }

  .mobile-menu .mobile-wrap {
    padding: 30px 0px;
  }

  .mobile-menu .mobile-wrap .profile-menu {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn::before {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn::after {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn img {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn .avatar-placeholder {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .login-menu {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .mobile-menu .mobile-wrap .login-menu a.login-btn {
    padding: 13px 30px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-image {
    width: 40px;
    height: 40px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu {
    gap: 18px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::after {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .addon-menu {
    padding-bottom: 24px;
    margin-bottom: 24px;
    gap: 18px;
  }

  .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item {
    gap: 18px;
  }

  .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a::before {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a::after {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn::before {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn::after {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn::before {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn::after {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }

  .mobile-menu .mobile-wrap .side-menu {
    padding-bottom: 24px;
    margin-bottom: 24px;
    gap: 18px;
  }

  .mobile-menu .mobile-wrap .contacts-menu {
    gap: 18px;
  }

  .mobile-menu .mobile-wrap .contacts-menu .menu-item span {
    margin-bottom: 6px;
  }

  .mobile-menu .mobile-wrap .socials-menu {
    padding-top: 24px;
    margin-top: 24px;
    gap: 13px;
  }

  .mobile-menu .mobile-wrap .socials-menu .menu-item a {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  footer {
    padding: 60px 0px 45px;
  }

  footer .footer-wrap a.logo {
    height: 36px;
    margin-bottom: 18px;
  }

  footer .footer-wrap .socials-menu {
    margin: 28px 0px 0px;
    gap: 13px;
  }

  footer .footer-wrap .socials-menu .menu-item a {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  footer .footer-wrap .contacts-menu .menu-item:not(:last-child) {
    margin-bottom: 28px;
  }

  footer .footer-wrap .contacts-menu .menu-item span {
    margin-bottom: 15px;
  }

  footer .footer-wrap .footer-menu .menu-item:nth-child(1n + 3) {
    margin-top: 15px;
  }

  footer .footer-inner {
    margin-top: 40px;
    padding-top: 28px;
  }

  footer .footer-inner .inner-menu {
    gap: 28px;
  }

  body a.btn {
    padding: 16px 30px;
  }

  body a.btn.main span {
    padding: 13px 30px;
  }

  body a.btn.video {
    padding: 12px 30px;
  }

  body a.btn.video::before {
    margin-right: 16px;
  }

  section.main-exhibitions {
    padding: 28px 0px 56px;
  }

  section.main-exhibitions .main-slider .main-item .item-link {
    border-radius: 28px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .thumbnail {
    height: 500px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption {
    padding: 45px 35px 45px 70px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text .uppertitle {
    font-size: 1.375em;
    margin-bottom: 18px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text p.h2 {
    font-size: 3.25em;
    margin-bottom: 28px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text a.btn {
    min-width: 230px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text a.btn::after {
    border-radius: 28px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle {
    width: 200px;
    min-width: 200px;
    height: 200px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle .rotate {
    width: 200px;
    height: 200px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle .rotate span {
    transform-origin: 0 100px;
    font-size: 1.125em;
  }

  section.main-exhibitions .main-slider .slick-arrow.slick-prev {
    left: -28px;
  }

  section.main-exhibitions .main-slider .slick-arrow.slick-next {
    right: -28px;
  }

  section .slick-slider .slick-arrow {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }

  section.main-exhibitions .main-slider .slick-dots {
    bottom: -28px;
    width: calc(100% - 24px);
  }

  section.partners {
    padding: 45px 0px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap {
    height: 28px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="namu"]) {
    height: 33px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="nmdmu"]) {
    height: 36px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="mvduc"]) {
    height: 50px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="chornobyl"]) {
    height: 36px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="war-museum"]) {
    height: 50px;
  }

  section.new-exhibitions {
    padding: 45px 0px 55px;
  }

  section.new-exhibitions .exhibitions-title {
    margin-bottom: 40px;
  }

  section h2.section-title,
  section p.h2.section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link {
    padding: 22px;
    border-radius: 28px;
    gap: 28px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .thumbnail .img-wrap img {
    border-radius: 18px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.75em;
    margin-bottom: 32px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.museum-desc {
    margin-bottom: 7px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.museum-desc::before {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.price-desc::before {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  section.new-exhibitions .exhibitions-slider .slick-arrow.slick-prev {
    left: -28px;
  }

  section.new-exhibitions .exhibitions-slider .slick-arrow.slick-next {
    right: -28px;
  }

  section.new-exhibitions .buttons-wrap {
    margin-top: 40px;
  }

  section.new-exhibitions .buttons-wrap a.btn {
    min-width: 230px;
  }

  section.main-cards {
    padding: 45px 0px 55px;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap {
    padding: 34px;
    border-radius: 28px;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap .thumbnail {
    width: 100px;
    margin-bottom: 40px;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
    font-size: 1.375em;
  }

  section.main-news {
    padding: 45px 0px 55px;
  }

  section.main-news .news-wrap .title-wrap {
    margin-bottom: 40px;
  }

  section.main-news .news-wrap .title-wrap .news-arrows {
    gap: 18px;
  }

  section.main-news .news-wrap .title-wrap .news-arrows .slick-arrow {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }

  section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link {
    padding: 11px;
    border-radius: 18px;
    gap: 16px;
  }

  section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .thumbnail .img-wrap img {
    border-radius: 8px;
  }

  section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1.375em;
  }

  section.main-news .news-wrap .buttons-wrap {
    margin-top: 40px;
  }

  section.main-news .news-wrap .buttons-wrap a.btn {
    min-width: 230px;
  }

  section.main-video {
    padding: 45px 0px 55px;
  }

  section.main-video .video-box {
    border-radius: 18px;
  }

  section.main-video .video-box .video-top {
    padding: 11px 22px;
  }

  section.main-video .video-box .video-top .dots {
    gap: 7px;
  }

  section.main-video .video-box .video-top .dots .dot {
    width: 9px;
    min-width: 9px;
    height: 9px;
  }

  section.main-video .buttons-wrap {
    margin-top: 40px;
  }

  section.main-video .buttons-wrap a.btn {
    min-width: 230px;
  }

  section.single-subscribe .caption {
    padding: 45px 0px 55px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap h2,
  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap p.h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list {
    gap: 13px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a {
    padding: 5px 36px;
  }

  /* section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a span:not(.icon) {
    max-width: 140px;
  } */

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a span.icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-right: 14px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap h2,
  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap p.h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form input[type="email"] {
    padding: 12px 34px;
    margin-right: 22px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form input[type="submit"] {
    padding: 9px 34px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox {
    margin: 28px 22px 0px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox input {
    width: 18px;
    height: 18px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox .checkmark {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 16px;
  }

  section.faq {
    padding: 45px 0px 55px;
  }

  section.faq .faq-text {
    padding-right: 28px;
  }

  section.faq .faq-text h2,
  section.faq .faq-text h1 {
    font-size: 2em;
    margin-bottom: 40px;
  }

  section.faq .faq-text .show-more-wrap .show-more-content {
    -webkit-line-clamp: 11;
    line-clamp: 11;
  }

  section.faq.faq-single .faq-wrap h1 {
    font-size: 2em;
    margin-bottom: 40px;
  }

  section.faq .faq-wrap h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }

  section.faq .faq-container .card {
    border-radius: 18px;
  }

  section.faq .faq-container .card:not(:last-child) {
    margin-bottom: 13px;
  }

  section.faq .faq-container .card .card-header .accordion-button {
    padding: 9px 18px 9px 32px;
    min-height: 65px;
  }

  section.faq .faq-container .card .card-header .accordion-button span.cross {
    width: 32px;
    min-width: 32px;
    height: 32px;
  }

  section.faq .faq-container .card .card-header .accordion-button span.cross::before {
    width: 12px;
  }

  section.faq .faq-container .card .card-header .accordion-button span.cross::after {
    height: 12px;
  }

  section.faq .faq-container .card .card-body {
    padding: 0px 18px 18px 32px;
  }
}

@media screen and (max-width: 1299px) {
  .container-fluid {
    padding: 0px 40px;
  }

  .test-line {
    padding: 6px 8px;
  }

  header .header-box .header-wrap {
    padding: 14px 0px;
  }

  header .header-box .header-wrap .left-side-wrap .header-menu-btn {
    height: 36px;
  }

  header .header-box .header-wrap .left-side-wrap .header-menu-btn::before {
    width: 20px;
    min-width: 20px;
    height: 16px;
    margin-right: 14px;
  }

  header .header-box .header-wrap .logo-wrap a.logo {
    height: 28px;
  }

  header .header-box .header-wrap .right-side-wrap {
    gap: 8px;
  }

  header .header-box .header-wrap .right-side-wrap .theme-menu .theme-change-btn {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  header .header-box .header-wrap .right-side-wrap .search-menu .search-form-btn {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  header .header-box .header-wrap .right-side-wrap .lang-menu .menu-item a {
    width: 36px;
    min-width: 36px;
    height: 36px;
    font-size: 0.875em;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu a.login-btn span {
    padding: 9px 32px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-image {
    width: 36px;
    height: 36px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content {
    top: calc(100% + 14px);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu {
    padding: 22px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item {
    padding: 18px 0px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::after {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  header .header-box .header-wrap .header-menu .menu-item {
    margin: 0px 12px;
  }

  .mobile-menu {
    left: -340px;
    top: 64px;
    max-width: 340px;
    height: calc(100% - 64px);
    padding: 0px 40px;
  }

  .mobile-menu .mobile-wrap {
    padding: 26px 0px;
  }

  .mobile-menu .mobile-wrap .profile-menu {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn::after {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn img {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn .avatar-placeholder {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  .mobile-menu .mobile-wrap .login-menu {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .mobile-menu .mobile-wrap .login-menu a.login-btn {
    padding: 10px 30px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-image {
    width: 36px;
    height: 36px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu {
    gap: 16px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::after {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .mobile-menu .mobile-wrap .addon-menu {
    padding-bottom: 22px;
    margin-bottom: 22px;
    gap: 16px;
  }

  .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item {
    gap: 16px;
  }

  .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a::after {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn::after {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn::after {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .mobile-menu .mobile-wrap .side-menu {
    padding-bottom: 22px;
    margin-bottom: 22px;
    gap: 16px;
  }

  .mobile-menu .mobile-wrap .contacts-menu {
    gap: 16px;
  }

  .mobile-menu .mobile-wrap .socials-menu {
    padding-top: 22px;
    margin-top: 22px;
    gap: 12px;
  }

  .mobile-menu .mobile-wrap .socials-menu .menu-item a {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  footer {
    padding: 50px 0px 40px;
  }

  footer .footer-wrap a.logo {
    height: 32px;
    margin-bottom: 16px;
  }

  footer .footer-wrap .socials-menu {
    margin: 24px 0px 0px;
    gap: 12px;
  }

  footer .footer-wrap .socials-menu .menu-item a {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }

  footer .footer-wrap .contacts-menu .menu-item:not(:last-child) {
    margin-bottom: 26px;
  }

  footer .footer-inner {
    margin-top: 35px;
    padding-top: 24px;
  }

  footer .footer-inner .inner-menu {
    gap: 24px;
  }

  body a.btn {
    padding: 13px 30px;
  }

  body a.btn.main span {
    padding: 10px 30px;
  }

  section.main-exhibitions {
    padding: 24px 0px 48px;
  }

  section.main-exhibitions .main-slider .main-item .item-link {
    border-radius: 24px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .thumbnail {
    height: 425px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption {
    padding: 40px 34px 40px 62px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text .uppertitle {
    font-size: 1.25em;
    margin-bottom: 16px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text p.h2 {
    font-size: 3em;
    margin-bottom: 24px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text a.btn::after {
    border-radius: 24px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle {
    width: 170px;
    min-width: 170px;
    height: 170px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle .rotate {
    width: 170px;
    min-width: 170px;
    height: 170px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle .rotate span {
    transform-origin: 0 85px;
    font-size: 1em;
  }

  section.main-exhibitions .main-slider .slick-arrow.slick-prev {
    left: -23px;
  }

  section.main-exhibitions .main-slider .slick-arrow.slick-next {
    right: -23px;
  }

  section .slick-slider .slick-arrow {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }

  section.main-exhibitions .main-slider .slick-dots {
    bottom: -24px;
  }

  section.partners {
    padding: 40px 0px;
  }

  section.new-exhibitions {
    padding: 40px 0px 46px;
  }

  section.new-exhibitions .exhibitions-title {
    margin-bottom: 34px;
  }

  section h2.section-title,
  section p.h2.section-title {
    font-size: 1.875em;
    margin-bottom: 34px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link {
    padding: 18px;
    border-radius: 24px;
    gap: 24px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .thumbnail .img-wrap img {
    border-radius: 16px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.5em;
    margin-bottom: 28px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.museum-desc::before {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.price-desc::before {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  section.new-exhibitions .exhibitions-slider .slick-arrow.slick-prev {
    left: -23px;
  }

  section.new-exhibitions .exhibitions-slider .slick-arrow.slick-next {
    right: -23px;
  }

  section.new-exhibitions .buttons-wrap {
    margin-top: 34px;
  }

  section.main-cards {
    padding: 40px 0px 46px;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap {
    padding: 30px;
    border-radius: 24px;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap .thumbnail {
    width: 90px;
    margin-bottom: 34px;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
    font-size: 1.25em;
  }

  section.main-news {
    padding: 40px 0px 46px;
  }

  section.main-news .news-wrap .title-wrap {
    margin-bottom: 34px;
  }

  section.main-news .news-wrap .title-wrap .news-arrows {
    gap: 16px;
  }

  section.main-news .news-wrap .title-wrap .news-arrows .slick-arrow {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }

  section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link {
    padding: 10px;
    border-radius: 16px;
    gap: 14px;
  }

  section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .thumbnail .img-wrap img {
    border-radius: 8px;
  }

  section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1.25em;
  }

  section.main-news .news-wrap .buttons-wrap {
    margin-top: 34px;
  }

  section.main-video {
    padding: 40px 0px 46px;
  }

  section.main-video .video-box {
    border-radius: 16px;
  }

  section.main-video .video-box .video-top {
    padding: 10px 20px;
  }

  section.main-video .video-box .video-top .dots {
    gap: 6px;
  }

  section.main-video .video-box .video-top .dots .dot {
    width: 8px;
    min-width: 8px;
    height: 8px;
  }

  section.main-video .buttons-wrap {
    margin-top: 34px;
  }

  section.single-subscribe .caption {
    padding: 40px 0px 46px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap h2,
  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap p.h2 {
    font-size: 1.875em;
    margin-bottom: 34px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list {
    gap: 11px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a {
    padding: 4px 30px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a span.icon {
    width: 34px;
    min-width: 34px;
    height: 34px;
    margin-right: 12px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap h2,
  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap p.h2 {
    font-size: 1.875em;
    margin-bottom: 34px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form input[type="email"] {
    padding: 10px 28px;
    margin-right: 18px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form input[type="submit"] {
    padding: 9px 28px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox {
    margin: 24px 18px 0px;
  }

  section.faq {
    padding: 40px 0px 46px;
  }

  section.faq .faq-text {
    padding-right: 24px;
  }

  section.faq .faq-text h2,
  section.faq .faq-text h1 {
    font-size: 1.875em;
    margin-bottom: 34px;
  }

  section.faq .faq-text .show-more-wrap .show-more-content {
    -webkit-line-clamp: 10;
    line-clamp: 10;
  }

  section.faq.faq-single .faq-wrap h1 {
    font-size: 1.875em;
    margin-bottom: 34px;
  }

  section.faq .faq-wrap h2 {
    font-size: 1.875em;
    margin-bottom: 34px;
  }

  section.faq .faq-container .card {
    border-radius: 16px;
  }

  section.faq .faq-container .card:not(:last-child) {
    margin-bottom: 12px;
  }

  section.faq .faq-container .card .card-header .accordion-button {
    padding: 8px 16px 8px 28px;
    min-height: 55px;
  }

  section.faq .faq-container .card .card-header .accordion-button span.cross {
    width: 28px;
    min-width: 28px;
    height: 28px;
  }

  section.faq .faq-container .card .card-header .accordion-button span.cross::before {
    width: 10px;
  }

  section.faq .faq-container .card .card-header .accordion-button span.cross::after {
    height: 10px;
  }

  section.faq .faq-container .card .card-body {
    padding: 0px 16px 16px 28px;
  }
}

@media screen and (max-width: 1199px) {
  .container-fluid {
    padding: 0px 35px;
  }

  .test-line {
    padding: 5px 7px;
  }

  header .header-box .header-wrap {
    padding: 12px 0px;
  }

  header .header-box .header-wrap .right-side-wrap .theme-menu .theme-change-btn {
    border-width: 1px;
  }

  header .header-box .header-wrap .right-side-wrap .search-menu .search-form-btn {
    border-width: 1px;
  }

  header .header-box .header-wrap .right-side-wrap .lang-menu .menu-item a {
    border-width: 1px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu a.login-btn span {
    padding: 9px 26px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-image {
    border: 1px solid var(--color-main);
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content {
    top: calc(100% + 12px);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu {
    padding: 18px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item {
    padding: 16px 0px;
  }

  header .header-box .header-wrap .header-menu .menu-item {
    margin: 0px 10px;
  }

  header .header-box .header-wrap .header-menu .menu-item a {
    font-size: 0.875em;
  }

  .mobile-menu {
    left: -280px;
    top: 60px;
    max-width: 280px;
    height: calc(100% - 60px);
    padding: 0px 32px;
  }

  .mobile-menu .mobile-wrap {
    padding: 22px 0px;
  }

  .mobile-menu .mobile-wrap .profile-menu {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .mobile-menu .mobile-wrap .login-menu {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-image {
    border-width: 1px;
  }

  .mobile-menu .mobile-wrap .addon-menu {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .mobile-menu .mobile-wrap .side-menu {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .mobile-menu .mobile-wrap .socials-menu {
    padding-top: 20px;
    margin-top: 20px;
    gap: 9px;
  }

  footer {
    padding: 40px 0px 32px;
  }

  footer .footer-wrap a.logo {
    height: 28px;
  }

  footer .footer-wrap span.logo-text {
    font-size: 0.875em;
  }

  footer .footer-wrap .socials-menu {
    margin: 18px 0px 0px;
  }

  footer .footer-wrap .contacts-menu .menu-item:not(:last-child) {
    margin-bottom: 24px;
  }

  footer .footer-wrap .contacts-menu .menu-item span {
    font-size: 0.875em;
    margin-bottom: 14px;
  }

  footer .footer-wrap .contacts-menu .menu-item a {
    font-size: 0.875em;
  }

  footer .footer-wrap .footer-menu .menu-item a {
    font-size: 0.875em;
  }

  footer .footer-wrap .footer-menu .menu-item:nth-child(1n + 3) {
    margin-top: 14px;
  }

  footer .footer-inner {
    margin-top: 28px;
    padding-top: 20px;
  }

  footer .footer-inner span.copyright {
    font-size: 0.875em;
  }

  footer .footer-inner .inner-menu .menu-item a {
    font-size: 0.875em;
  }

  body a.btn.video {
    padding: 11px 25px;
  }

  body a.btn.video::before {
    width: 12px;
    min-width: 12px;
    height: 18px;
    margin-right: 10px;
  }

  section.main-exhibitions {
    padding: 20px 0px 40px;
  }

  section.main-exhibitions .main-slider .main-item .item-link {
    border-radius: 20px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .thumbnail {
    height: 350px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption {
    padding: 32px 28px 32px 50px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text .uppertitle {
    font-size: 1.125em;
    margin-bottom: 14px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text p.h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text a.btn::after {
    border-radius: 20px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle {
    width: 140px;
    min-width: 140px;
    height: 140px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle .rotate {
    width: 140px;
    min-width: 140px;
    height: 140px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .circle .text-circle .rotate span {
    transform-origin: 0 70px;
    font-size: 0.875em;
  }

  section.main-exhibitions .main-slider .slick-arrow.slick-prev {
    left: -20px;
  }

  section.main-exhibitions .main-slider .slick-arrow.slick-next {
    right: -20px;
  }

  section .slick-slider .slick-arrow {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  section.main-exhibitions .main-slider .slick-dots {
    bottom: -20px;
  }

  section.partners {
    padding: 32px 0px;
  }

  section.new-exhibitions {
    padding: 32px 0px 38px;
  }

  section.new-exhibitions .exhibitions-title {
    margin-bottom: 28px;
  }

  section h2.section-title,
  section p.h2.section-title {
    font-size: 1.625em;
    margin-bottom: 28px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link {
    padding: 14px;
    border-radius: 20px;
    gap: 20px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .thumbnail .img-wrap img {
    border-radius: 14px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.25em;
    margin-bottom: 22px;
  }

  section.new-exhibitions .exhibitions-slider .slick-arrow.slick-prev {
    left: -20px;
  }

  section.new-exhibitions .exhibitions-slider .slick-arrow.slick-next {
    right: -20px;
  }

  section.new-exhibitions .buttons-wrap {
    margin-top: 28px;
  }

  section.main-cards {
    padding: 32px 0px 38px;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap {
    padding: 24px;
    border-radius: 20px;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap .thumbnail {
    width: 80px;
    margin-bottom: 28px;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
    font-size: 0.875em;
  }

  section.main-news {
    padding: 32px 0px 38px;
  }

  section.main-news .news-wrap .title-wrap {
    margin-bottom: 28px;
  }

  section.main-news .news-wrap .title-wrap .news-arrows {
    gap: 14px;
  }

  section.main-news .news-wrap .title-wrap .news-arrows .slick-arrow {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  section.main-news .news-wrap .buttons-wrap {
    margin-top: 28px;
  }

  section.main-video {
    padding: 32px 0px 38px;
  }

  section.main-video .video-box {
    border-radius: 14px;
  }

  section.main-video .video-box .video-top {
    padding: 8px 16px;
  }

  section.main-video .video-box .video-top .dots {
    gap: 5px;
  }

  section.main-video .video-box .video-top .dots .dot {
    width: 6px;
    min-width: 6px;
    height: 6px;
  }

  section.main-video .buttons-wrap {
    margin-top: 28px;
  }

  section.single-subscribe .caption {
    padding: 32px 0px 38px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap h2,
  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap p.h2 {
    font-size: 1.625em;
    margin-bottom: 28px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list {
    gap: 10px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a {
    font-size: 0.875em;
    padding: 6px 30px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a span.icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  /* section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a span:not(.icon) {
    max-width: 120px;
  } */

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap h2,
  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap p.h2 {
    font-size: 1.625em;
    margin-bottom: 28px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form input[type="email"] {
    font-size: 0.875em;
    margin-right: 12px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form input[type="submit"] {
    font-size: 0.875em;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox {
    margin: 20px 16px 0px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox label p {
    font-size: 0.875em;
  }

  section.faq {
    padding: 32px 0px 38px;
  }

  section.faq .faq-text {
    padding-right: 20px;
  }

  section.faq .faq-text h2,
  section.faq .faq-text h1 {
    font-size: 1.625em;
    margin-bottom: 28px;
  }

  section.faq .faq-text .show-more-wrap .show-more-content {
    -webkit-line-clamp: 10;
    line-clamp: 10;
  }

  section.faq.faq-single .faq-wrap h1 {
    font-size: 1.625em;
    margin-bottom: 28px;
  }

  section.faq .faq-wrap h2 {
    font-size: 1.625em;
    margin-bottom: 28px;
  }

  section.faq .faq-container .card {
    border-radius: 14px;
  }

  section.faq .faq-container .card .card-header .accordion-button {
    padding: 8px 14px 8px 22px;
    min-height: 45px;
    font-size: 0.875em;
  }

  section.faq .faq-container .card .card-header .accordion-button span.cross {
    border-width: 1px;
  }

  section.faq .faq-container .card .card-header .accordion-button span.cross::before {
    height: 1px;
  }

  section.faq .faq-container .card .card-header .accordion-button span.cross::after {
    width: 1px;
  }

  section.faq .faq-container .card .card-body {
    padding: 0px 14px 14px 22px;
    font-size: 0.875em;
  }
}

@media screen and (max-width: 991px) {
  .container-fluid {
    padding: 0px 25px;
  }

  .test-line p {
    font-size: 0.75em;
  }

  header .header-box .header-wrap .left-side-wrap .header-menu-btn {
    height: 30px;
  }

  header .header-box .header-wrap .left-side-wrap .header-menu-btn::before {
    width: 22px;
    min-width: 22px;
    height: 18px;
    margin-right: 0px;
    background-image: url(/img/menu-burger-white-mobile.svg);
  }

  header .header-box .header-wrap .left-side-wrap .header-menu-btn span {
    display: none;
  }

  header .header-box .header-wrap .logo-wrap a.logo {
    height: 24px;
    width: 230px;
  }

  header .header-box .header-wrap .right-side-wrap .theme-menu {
    display: none;
  }

  header .header-box .header-wrap .right-side-wrap .lang-menu {
    display: none;
  }

  header .header-box .header-wrap .right-side-wrap .search-menu .search-form-btn {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu a.login-btn {
    font-size: 0.75em;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu a.login-btn span {
    padding: 7px 22px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-image {
    width: 30px;
    height: 30px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu {
    padding: 14px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item {
    padding: 12px 0px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a {
    font-size: 0.875em;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::after {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content {
    position: fixed;
    top: 54px;
  }

  .mobile-menu {
    left: -240px;
    top: 54px;
    max-width: 240px;
    height: calc(100% - 54px);
    padding: 0px 24px;
  }

  .mobile-menu .mobile-wrap {
    padding: 16px 0px;
  }

  .mobile-menu .mobile-wrap .profile-menu {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn {
    font-size: 0.875em;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn::before {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn::after {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn img {
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin-right: 8px;
    border-width: 1px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn .avatar-placeholder {
    width: 30px;
    min-width: 30px;
    height: 30px;
    margin-right: 8px;
    border-width: 1px;
  }

  .mobile-menu .mobile-wrap .login-menu {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .mobile-menu .mobile-wrap .login-menu a.login-btn {
    font-size: 0.875em;
    padding: 10px 24px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-image {
    width: 30px;
    height: 30px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu {
    gap: 16px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a {
    font-size: 0.875em;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::after {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .mobile-menu .mobile-wrap .addon-menu {
    padding-bottom: 16px;
    margin-bottom: 16px;
    gap: 16px;
  }

  .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn {
    font-size: 0.875em;
  }

  .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn::before {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn::after {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn {
    font-size: 0.875em;
  }

  .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn::before {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn::after {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a {
    font-size: 0.875em;
  }

  .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a::before {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a::after {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 8px;
  }

  .mobile-menu .mobile-wrap .side-menu {
    padding-bottom: 16px;
    margin-bottom: 16px;
    gap: 16px;
  }

  .mobile-menu .mobile-wrap .side-menu .menu-item a {
    font-size: 0.875em;
  }

  .mobile-menu .mobile-wrap .contacts-menu .menu-item span {
    font-size: 0.875em;
    margin-bottom: 4px;
  }

  .mobile-menu .mobile-wrap .contacts-menu .menu-item a {
    font-size: 0.875em;
  }

  .mobile-menu .mobile-wrap .contacts-menu {
    gap: 16px;
  }

  .mobile-menu .mobile-wrap .socials-menu {
    padding-top: 16px;
    margin-top: 16px;
  }

  footer {
    padding: 30px 0px 25px;
  }

  footer .footer-wrap a.logo {
    height: 24px;
    width: 230px;
  }

  footer .footer-wrap .socials-menu {
    margin: 16px 0px;
  }

  footer .footer-wrap .contacts-menu {
    margin-bottom: 16px;
  }

  footer .footer-wrap .contacts-menu .menu-item:not(:last-child) {
    margin-bottom: 20px;
  }

  footer .footer-wrap .footer-menu {
    width: calc(100% + 20px);
    margin: 0px -10px;
  }

  footer .footer-wrap .footer-menu .menu-item {
    padding: 0px 10px;
  }

  footer .footer-inner {
    margin-top: 24px;
    padding-top: 16px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  footer .footer-inner span.copyright {
    margin-top: 16px;
  }

  footer .footer-inner .inner-menu {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  body a.btn.video {
    padding: 9px 20px;
  }

  section.main-exhibitions .main-slider .main-item .item-link {
    border-radius: 16px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .thumbnail {
    height: 400px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption {
    padding: 30px 22px 30px 38px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text {
    width: calc(100% - 150px);
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text .uppertitle {
    font-size: 1em;
    margin-bottom: 12px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text p.h2 {
    font-size: 2em;
    margin-bottom: 16px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text a.btn::after {
    border-radius: 16px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .circle {
    width: 150px;
  }

  section.partners {
    padding: 24px 0px;
  }

  section.partners .partners-wrap {
    flex-direction: column;
  }

  section.partners .partners-wrap h2,
  section.partners .partners-wrap p.h2 {
    width: 100%;
    margin-bottom: 16px;
    word-spacing: normal;
  }

  section.partners .partners-wrap .partners-scroll {
    width: 100%;
  }

  section.partners .partners-wrap .partners-list {
    width: 100%;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap {
    height: 24px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="namu"]) {
    height: 28px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="nmdmu"]) {
    height: 30px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="mvduc"]) {
    height: 34px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="chornobyl"]) {
    height: 30px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="war-museum"]) {
    height: 34px;
  }

  section.new-exhibitions {
    padding: 30px 0px;
  }

  section.new-exhibitions .exhibitions-title {
    margin-bottom: 24px;
  }

  section h2.section-title,
  section p.h2.section-title {
    font-size: 1.5em;
    margin-bottom: 24px;
  }

  @media screen and (min-width: 576px) {
    section.new-exhibitions .exhibitions-slider:has(.slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned)) .slick-slide.slick-cloned:nth-child(2) {
      opacity: 1;
    }

    section.new-exhibitions .exhibitions-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned {
      opacity: 1;
    }

    section.new-exhibitions .exhibitions-slider:has(.slick-slide.slick-cloned.slick-active) .slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) {
      opacity: 0;
    }

    section.new-exhibitions .exhibitions-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned + .slick-slide.slick-cloned {
      opacity: 0;
    }
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .thumbnail {
    width: 35%;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption {
    width: 65%;
  }

  section.new-exhibitions .buttons-wrap {
    margin-top: 20px;
  }

  section.main-cards {
    padding: 30px 0px;
  }

  section.main-cards .cards-wrap .cards-list {
    flex-direction: column;
  }

  section.main-cards .cards-wrap .cards-list .list-item {
    width: 100%;
  }

  section.main-cards .cards-wrap .cards-list .list-item:not(:first-child) {
    margin-top: 16px;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap {
    border-radius: 16px;
    padding: 20px;
    align-items: center;
    background-color: var(--bg-black-matte);
    border-color: var(--color-gray-10);
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
    text-align: center;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
    text-align: center;
  }

  section.main-cards .cards-wrap .cards-list .slick-track {
    display: flex;
  }

  section.main-cards .cards-wrap .cards-list .slick-track .slick-slide {
    height: auto;
  }

  section.main-cards .cards-wrap .cards-list .slick-track .slick-slide > div {
    height: 100%;
  }

  section.main-cards .cards-wrap .cards-list .slick-track .slick-slide > div > .list-item {
    height: 100%;
  }

  section.main-cards .cards-wrap .cards-list .slick-track .slick-slide > div > .list-item .item-wrap {
    height: 100%;
  }

  section.main-cards .cards-wrap .cards-list .slick-dots {
    padding: 0px;
    margin: 20px auto 0px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 30px);
    position: relative;
    z-index: 2;
  }

  section.main-cards .cards-wrap .cards-list .slick-dots li {
    width: 100%;
    display: flex;
    align-items: center;
  }

  section.main-cards .cards-wrap .cards-list .slick-dots li button {
    width: 100%;
    height: 2px;
    border: none;
    background-color: var(--color-gray-10);
    box-shadow: none;
    outline: none;
    font-size: 0em;
    color: transparent;
    overflow: hidden;
    transition: var(--speed-slow);
  }

  section.main-cards .cards-wrap .cards-list .slick-dots li.slick-active button {
    background-color: var(--color-white);
  }

  section.main-news {
    padding: 30px 0px;
  }

  section.main-news .news-wrap .title-wrap {
    margin-bottom: 24px;
  }

  section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1.125em;
  }

  section.main-news .news-wrap .buttons-wrap {
    margin-top: 24px;
  }

  section.main-video {
    padding: 30px 0px;
  }

  section.main-video .video-title h2.section-title {
    text-align: left;
  }

  section.main-video .buttons-wrap {
    margin-top: 24px;
  }

  section.single-subscribe .caption {
    padding: 30px 0px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap h2,
  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap p.h2 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap h2,
  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap p.h2 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }

  section.faq {
    padding: 30px 0px;
  }

  section.faq .faq-text {
    padding: 0px;
  }

  section.faq .faq-text h2,
  section.faq .faq-text h1 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }

  section.faq .faq-text .show-more-wrap {
    margin-bottom: 24px;
  }

  section.faq .faq-text .show-more-wrap .show-more-content {
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }

  section.faq.faq-single .faq-wrap h1 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }

  section.faq .faq-wrap h2 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767px) {
  .container-fluid {
    padding: 0px 25px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text p.h2 {
    font-size: 1.75em;
  }

  .mobile-menu {
    padding: 0px 18px;
  }

  .mobile-menu .mobile-wrap .login-menu a.login-btn {
    padding: 6px 12px;
  }

  .mobile-menu .mobile-wrap .addon-menu .theme-menu {
    display: flex;
  }

  /* .mobile-menu .mobile-wrap .addon-menu .search-menu {
    display: flex;
  } */

  .mobile-menu .mobile-wrap .socials-menu {
    gap: 6px;
  }

  footer .footer-wrap .contacts-menu .menu-item:not(:last-child) {
    margin-bottom: 18px;
  }

  section.main-exhibitions .main-slider {
    margin: 0px -35px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption {
    padding: 30px 35px;
    align-items: flex-end;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .text {
    width: 100%;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption .circle {
    display: none;
  }

  section.main-exhibitions .main-slider .slick-arrow.slick-prev {
    left: -6px;
  }

  section.main-exhibitions .main-slider .slick-arrow.slick-next {
    right: -6px;
  }

  section.main-exhibitions .main-slider .slick-dots {
    width: calc(100% - 70px);
  }

  section.main-exhibitions .main-slider .slick-dots li button {
    height: 2px;
  }

  section.partners {
    padding: 22px 0px;
  }

  section.new-exhibitions {
    padding: 28px 0px;
  }

  section.new-exhibitions .exhibitions-slider {
    display: flex;
    flex-direction: column;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item:not(:first-child) {
    margin-top: 12px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link {
    padding: 10px;
    border-radius: 16px;
    gap: 12px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .thumbnail {
    width: 50%;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .thumbnail .img-wrap {
    padding-top: 65%;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption {
    width: 50%;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.uppertitle {
    display: flex;
    font-size: 0.875em;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.125em;
    margin: 0px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.museum-desc {
    display: none;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.price-desc {
    display: none;
  }

  section.main-cards {
    padding: 28px 0px;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap {
    padding: 16px;
  }

  section.main-news {
    padding: 28px 0px;
  }

  section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .caption span.date {
    font-size: 0.875em;
    margin-bottom: 8px;
  }

  section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1em;
  }

  section.main-news .news-wrap .news-slider .slick-dots {
    padding: 0px;
    margin: 18px auto 0px;
    display: flex;
    width: calc(100% - 30px);
    align-items: center;
    justify-content: center;
    list-style: none;
  }

  section.main-news .news-wrap .news-slider .slick-dots li {
    width: 100%;
    display: flex;
    align-items: center;
  }

  section.main-news .news-wrap .news-slider .slick-dots li button {
    height: 2px;
    width: 100%;
    background-color: var(--bg-gray-40);
    border: none;
    color: transparent;
    font-size: 0em;
    overflow: hidden;
    box-shadow: none;
    outline: none;
    transition: var(--speed-slow);
  }

  section.main-news .news-wrap .news-slider .slick-dots li.slick-active button {
    background-color: var(--color-white);
  }

  section.main-video {
    padding: 28px 0px;
  }

  section.single-subscribe .caption {
    padding: 28px 0px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap h2,
  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap p.h2 {
    margin-bottom: 20px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap h2,
  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap p.h2 {
    margin-bottom: 20px;
  }

  section.faq {
    padding: 28px 0px;
  }

  section.faq .faq-container .card .card-header .accordion-button {
    padding: 8px 14px 8px 16px;
  }

  section.faq .faq-container .card .card-body {
    padding: 0px 14px 14px 16px;
  }
}

@media screen and (max-width: 575px) {
  .container-fluid {
    padding: 0px 20px;
  }

  header .header-box .header-wrap .left-side-wrap {
    width: 60px;
  }

  header .header-box .header-wrap .left-side-wrap .header-menu-btn {
    height: 26px;
  }

  header .header-box .header-wrap .logo-wrap a.logo {
    height: 20px;
    width: 160px;
  }

  header .header-box .header-wrap .right-side-wrap {
    width: 60px;
  }

  header .header-box .header-wrap .right-side-wrap .search-menu .search-form-btn {
    width: 26px;
    min-width: 26px;
    height: 26px;
    background-size: 80% 80%;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu a.login-btn {
    font-size: 0.625em;
    background-color: var(--color-main);
  }

  header .header-box .header-wrap .right-side-wrap .login-menu a.login-btn span {
    padding: 2px;
    display: flex;
    align-items: center;
    font-size: 0em;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu a.login-btn span::after {
    content: '';
    width: 18px;
    min-width: 18px;
    height: 18px;
    background-image: url(/img/profile-icon-black.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-image {
    width: 26px;
    height: 26px;
  }

  .avatar-placeholder {
    font-size: 0.75em;
    font-weight: 400;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: fixed;
    top: 50px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu {
    padding: 12px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item {
    padding: 10px 0px;
    border: none;
    border-bottom: 1px solid var(--bg-gray-40);
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-right: 6px;
  }

  header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::after {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-right: 6px;
  }

  .mobile-menu {
    padding: 0px 16px;
    top: 50px;
    height: calc(100% - 50px);
  }

  .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-image {
    width: 26px;
    height: 26px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn img {
    width: 26px;
    min-width: 26px;
    height: 26px;
  }

  .mobile-menu .mobile-wrap .profile-menu a.profile-btn .avatar-placeholder {
    width: 26px;
    min-width: 26px;
    height: 26px;
  }

  body a.btn.main {
    background-color: var(--color-main);
  }

  footer .footer-wrap .contacts-menu .menu-item:not(:last-child) {
    margin-bottom: 16px;
  }

  section.main-exhibitions .main-slider {
    margin: 0px -20px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .thumbnail {
    height: auto;
    padding-top: 90%;
    position: relative;
  }

  section.main-exhibitions .main-slider .main-item .item-link .thumbnail .img-wrap {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption {
    padding: 28px 26px;
  }

  section.main-exhibitions .main-slider .slick-dots {
    width: calc(100% - 40px);
  }

  body a.btn {
    width: 100%;
    max-width: none!important;
  }

  section.partners {
    padding: 18px 0px;
  }

  section.partners .partners-wrap h2,
  section.partners .partners-wrap p.h2 {
    font-size: 0.875em;
  }

  section.partners .partners-wrap .partners-scroll {
    overflow-x: auto;
    width: calc(100% + 32px);
    margin: 0px -16px;
    padding: 0px 16px;
  }

  section.partners .partners-wrap .partners-scroll::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

  section.partners .partners-wrap .partners-list {
    gap: 6px;
    flex-wrap: nowrap;
    width: 600px;
  }

  /* section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="namu"]) {
    height: 25px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="nmdmu"]) {
    height: 27px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap {
    height: 23px;
  }

  section.partners .partners-wrap .partners-list .list-item .img-wrap:has(img[src*="mvduc"]) {
    height: 32px;
  } */

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link {
    padding: 6px;
    border-radius: 12px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .thumbnail .img-wrap img {
    border-radius: 6px;
  }

  section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption p.h2 {
    font-size: 1em;
  }

  section.main-cards .cards-wrap .cards-list .list-item .item-wrap .thumbnail {
    margin-bottom: 20px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a {
    padding: 6px 12px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-buttons-wrap .buttons-list .list-item a span.icon {
    margin-right: 6px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form {
    flex-direction: column;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form input[type="email"] {
    margin: 0px 0px 12px;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-form input[type="submit"] {
    width: 100%;
  }

  section.single-subscribe .caption .subscribe-wrap .subscribe-form-wrap .subscribe-checkbox {
    margin: 16px 0px 0px;
  }

  footer .footer-wrap a.logo {
    width: 160px;
  }

  footer .footer-inner .inner-menu .menu-item a {
    font-size: 0.75em;
  }
}

@media screen and (max-width: 449px) {
  .container-fluid {
    padding: 0px 16px;
  }

  section.main-exhibitions .main-slider {
    margin: 0px -16px;
  }

  section.main-exhibitions .main-slider .main-item .item-link .caption {
    padding: 28px 24px;
  }

  section.main-exhibitions .main-slider .slick-dots {
    width: calc(100% - 32px);
  }
}
































section.search-catalog {
  padding: 50px 0px 60px;
  background-color: var(--bg-black);
}

section.search-catalog .catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

section.search-catalog .catalog-header h1 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 2.25em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  margin: 0px;
}

section.search-catalog .catalog-header h1 span {
  color: var(--color-main);
}

section.search-catalog .catalog-header .sorting-btns-wrap {
  display: flex;
}

section.search-catalog .catalog-header .sorting-btns-wrap .btn-filters-open {
  display: none;
}

section.search-catalog .catalog-header .sorting-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0px 10px 0px 0px;
}

section.search-catalog .catalog-header .sorting-wrapper .btn-sorting {
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  padding: 12px 26px;
  border: 1px solid var(--bg-gray-40);
  display: flex;
  align-items: center;
  background-color: transparent;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--speed-slow);
}

section.search-catalog .catalog-header .sorting-wrapper .btn-sorting::after {
  content: '';
  width: 22px;
  min-width: 22px;
  height: 22px;
  background-image: url(/img/filter-arrow-down-sorting.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: rotate(180deg);
  margin-left: 8px;
}

@media screen and (min-width: 576px) {
  section.search-catalog .catalog-header .sorting-wrapper .btn-sorting:hover {
    background-color: var(--bg-gray-40);
  }
}

section.search-catalog .catalog-header .sorting-wrapper:has(.sorting-options.active) .btn-sorting {
  background-color: var(--bg-gray-40);
}

section.search-catalog .catalog-header .sorting-wrapper .sorting-options {
  position: absolute;
  z-index: 2;
  top: 100%;
  display: none;
  list-style: none;
  padding: 0px;
  margin: 0px;
  background-color: var(--bg-black-matte);
  border: none;
  border-radius: 8px;
  box-shadow: 0px 0px 26px -5px rgba(0, 0, 0, 0.2);
}

section.search-catalog .catalog-header .sorting-wrapper .sorting-options.active {
  display: block;
}

section.search-catalog .catalog-header .sorting-wrapper .sorting-options li {
  padding: 5px;
}

section.search-catalog .catalog-header .sorting-wrapper .sorting-options li a {
  text-decoration: none;
  padding: 5px;
  color: var(--color-white);
  display: block;
  border-radius: 3px;
  transition: var(--speed-slow);
  white-space: nowrap;
}

@media screen and (min-width: 576px) {
  section.search-catalog .catalog-header .sorting-wrapper .sorting-options li a:hover {
    background-color: var(--bg-gray-40);
  }
}

section.search-catalog .catalog-header .btn-share {
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  padding: 12px 26px;
  background-color: transparent;
  border: 1px solid var(--bg-gray-40);
  display: flex;
  align-items: center;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--speed-slow);
  margin: 0px 10px;
}

section.search-catalog .catalog-header .btn-share::after {
  content: '';
  width: 22px;
  min-width: 22px;
  height: 22px;
  background-image: url(/img/share-icon-sorting.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-left: 8px;
}

@media screen and (min-width: 576px) {
  section.search-catalog .catalog-header .btn-share:hover {
    background-color: var(--bg-gray-40);
  }
}

section.search-catalog .catalog-header .btn-gridOrList {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 10px;
}

section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 1px;
  height: 1px;
  opacity: 0;
  user-select: none;
  pointer-events: none;
}

section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label {
  display: flex;
  align-items: center;
  padding: 3px;
  border-radius: 50px;
  border: 2px solid var(--bg-gray-40);
  gap: 5px;
}

section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: transparent;
  cursor: pointer;
  padding: 8px;
  transition: var(--speed-slow);
  color: transparent;
  user-select: none;
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
}

section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label span::before {
  content: '';
  width: 22px;
  min-width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label span.checkbox-grid::before {
  background-image: url(/img/grid-view-icon-sorting.svg);
}

section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label span.checkbox-list::before {
  background-image: url(/img/list-view-icon-sorting.svg);
}

section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"]:not(:checked) + label[for=gridOrList] span.checkbox-list,
section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"]:checked + label[for=gridOrList]  span.checkbox-grid {
  background-color: var(--bg-gray-70);
}

.filters-modal-wrap {
  display: none;
}

section.search-catalog .filters-wrap {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  border: 2px solid var(--bg-gray-40);
  border-radius: 20px;
  align-self: flex-start;
}

@media screen and (min-width: 992px) {
  section.search-catalog .filters-wrap {
    position: sticky;
    top: 104px;
  }

  section.search-catalog .filters-wrap::-webkit-scrollbar {
    width: 0px;
  }
}

section.search-catalog .filters-wrap .filters-chips {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--bg-gray-40);
  margin-bottom: 30px;
}

section.search-catalog .filters-wrap .filters-chips .chips-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.search-catalog .filters-wrap .filters-chips .chips-title p.h2 {
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0px;
}

section.search-catalog .filters-wrap .filters-chips .chips-title a.clear {
  text-align: right;
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 300;
  color: var(--color-white);
  margin: 0px;
  text-decoration: none;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.search-catalog .filters-wrap .filters-chips .chips-title a.clear:hover {
    opacity: 0.8;
  }
}

section.search-catalog .filters-wrap .filters-chips .chips-list {
  list-style: none;
  padding: 0px;
  margin: 22px 0px 0px;
  display: flex;
  flex-direction: column;
}

section.search-catalog .filters-wrap .filters-chips .chips-list .chip {
  display: flex;
}

section.search-catalog .filters-wrap .filters-chips .chips-list .chip:not(:first-child) {
  margin-top: 10px;
}

section.search-catalog .filters-wrap .filters-chips .chips-list .chip a {
  width: 100%;
  font-size: 0.875em;
  line-height: 120%;
  font-weight: 300;
  color: var(--color-white);
  text-decoration: none;
  display: flex;
  align-items: center;
}

section.search-catalog .filters-wrap .filters-chips .chips-list .chip a::after {
  content: '';
  width: 22px;
  min-width: 22px;
  height: 22px;
  background-color: transparent;
  border-radius: 100%;
  margin-left: 12px;
  opacity: 1;
  transition: var(--speed-slow);
  background-image: url(/img/filter-cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media screen and (min-width: 576px) {
  section.search-catalog .filters-wrap .filters-chips .chips-list .chip a:hover::after {
    opacity: 0.8;
  }
}

section.search-catalog .filters-wrap .filters-chips .chips-list .chip .chip-name {
  margin-right: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}

section.search-catalog .filters-wrap .filters-list {
  display: flex;
  flex-direction: column;
}

section.search-catalog .filters-wrap .filters-list .filters-item {
  display: flex;
  flex-direction: column;
}

section.search-catalog .filters-wrap .filters-list .filters-item:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 2px solid var(--bg-gray-40);
  margin-bottom: 30px;
}

section.search-catalog .filters-wrap .filters-list .filters-item p.h2 {
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0px;
}

section.search-catalog .filters-wrap .filters-list .filters-item .item-body {
  margin-top: 22px;
}

section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 38px;
  font-size: 1em;
  line-height: 140%;
  font-weight: 300;
  color: var(--color-white);
  min-height: 20px;
  cursor: pointer;
  user-select: none;
  width: 100%;
}

section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap:not(:first-child) {
  margin-top: 20px;
}

section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap .checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--bg-gray-40);
  transition: var(--speed-slow);
  background-color: var(--bg-gray-100);
  border-radius: 2px;
  overflow: hidden;
}

section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap .checkmark::after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: '';
  background-color: transparent;
  transition: var(--speed-slow);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 140% 140%;
}

@media screen and (min-width: 576px) {
  section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap:hover .checkmark::after {
    background-color: var(--bg-gray-70);
  }
}

section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap input:checked ~ .checkmark {
  border-color: var(--color-main);
}

section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap input:checked ~ .checkmark::after {
  background-color: var(--color-main);
  background-image: url(/img/filter-check-black.svg);
}

section.search-catalog .filters-wrap a.btn {
  text-transform: uppercase;
}

section.search-catalog .exhibitions-wrap,
section.profile-page .exhibitions-wrap {
  display: flex;
  flex-direction: column;
}

section.search-catalog .exhibitions-wrap .nothing-found span,
section.profile-page .exhibitions-wrap .nothing-found span {
  color: var(--color-main);
  cursor: pointer;
}

@media screen and (min-width: 576px) {
  section.search-catalog .exhibitions-wrap .nothing-found span:hover,
  section.profile-page .exhibitions-wrap .nothing-found span:hover {
    text-decoration: underline;
  }
}

section.search-catalog .exhibitions-wrap .exhibitions-item,
section.profile-page .exhibitions-wrap .exhibitions-item {
  display: flex;
}

section.search-catalog .exhibitions-wrap .exhibitions-item:nth-child(1n + 2),
section.profile-page .exhibitions-wrap .exhibitions-item:nth-child(1n + 2) {
  margin-top: 24px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link {
  display: flex;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 20px;
  transition: var(--speed-fast);
  background-color: var(--bg-black-matte);
  gap: 32px;
  position: relative;
}

@media screen and (min-width: 576px) {
  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link:hover,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link:hover {
    border-color: var(--color-main);
  }
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .thumbnail,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .thumbnail {
  width: 30%;
  display: flex;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .thumbnail .img-wrap,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .thumbnail .img-wrap {
  display: flex;
  width: 100%;
  padding-top: 100%;
  position: relative;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .thumbnail .img-wrap img,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .thumbnail .img-wrap img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption {
  width: calc(100% - 30%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 20px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption p.h2,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption p.h2 {
  font-size: 2em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-main);
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc::before,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc::before {
  content: '';
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-image: url(/img/museum-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 12px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc::before,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc::before {
  content: '';
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-image: url(/img/price-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 12px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption:has(span.date-desc) span.price-desc,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption:has(span.date-desc) span.price-desc {
  margin-bottom: 8px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap:not(.active-wrap) .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc {
  display: none;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before {
  content: '';
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-image: url(/img/enddate-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 12px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption div.tags,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption div.tags {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption div.tags span,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption div.tags span {
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 300;
  color: var(--color-white);
  border-radius: 20px;
  background-color: var(--bg-gray-70);
  padding: 6px 16px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button {
  width: 32px;
  min-width: 32px;
  height: 32px;
  background-image: url(/img/heart-icon-main.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-mask-image: url(/img/heart-icon-main-full.svg);
  mask-image: url(/img/heart-icon-main-full.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  font-size: 0em;
  color: transparent;
  overflow: hidden;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button:hover,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button:hover {
    background-color: var(--bg-gray-40);
  }
}

section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button.in-wishlist,
section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button.in-wishlist {
  background-color: var(--color-main);
}

section.search-catalog .exhibitions-wrap.sorting-grid,
section.profile-page .exhibitions-wrap.sorting-grid {
  flex-wrap: wrap;
  flex-direction: row;
  margin: 0px -15px;
}

section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item,
section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item {
  width: calc(100% / 2);
  padding: 0px 15px;
}

section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item:nth-child(1n + 2),
section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item:nth-child(1n + 2) {
  margin-top: 0px;
}

section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item:nth-child(1n + 3),
section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item:nth-child(1n + 3) {
  margin-top: 30px;
}

section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item .item-link,
section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item .item-link {
  flex-direction: column;
}

section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .thumbnail,
section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .thumbnail {
  width: 100%;
}

section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .thumbnail .img-wrap,
section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .thumbnail .img-wrap {
  padding-top: 65%;
}

section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .caption,
section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .caption {
  width: 100%;
}

section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button,
section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 0px;
}

.search-inner-form {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  max-width: 420px;
}

.search-inner-form input {
  width: 100%;
  outline: none;
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  padding: 14px;
  background-color: var(--bg-gray-40);
  border-radius: 100px;
  border: 1px solid var(--color-gray-10);
  padding-right: 150px;
}

.search-inner-form button {
  width: 100%;
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-black);
  background-color: var(--color-main);
  border: 4px solid transparent;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  transition: var(--speed-slow);
  position: absolute;
  width: auto;
  right: 0;
}

@media screen and (min-width: 576px) {
  .search-inner-form button:hover {
    border-color: #8DBD29;
  }
}

.result_text {
  font-size: 1em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 16px;
}

.result-lists .item-result a {
  color: var(--color-white);
  display: flex;
  align-items: center;
  font-size: 1.25em;
  text-decoration: none;
  padding: 16px 0px;
  border-bottom: 1px solid var(--color-main);
}

.result-lists .item-result:first-child a {
  border-top: 1px solid var(--color-main);
}

@media screen and (max-width: 992px) {
  section.search-catalog:has(.search-content-wrapper) .catalog-header h1 {
    margin: 0px;
  }

  .result-lists .item-result a {
    font-size: 1em;
    padding: 12px 0px;
  }
}

@media screen and (max-width: 1399px) {
  section.search-catalog {
    padding: 45px 0px 55px;
  }

  section.search-catalog .catalog-header {
    margin-bottom: 26px;
  }

  section.search-catalog .catalog-header h1 {
    font-size: 2em;
  }

  section.search-catalog .catalog-header .sorting-wrapper {
    margin: 0px 8px 0px 0px;
  }

  section.search-catalog .catalog-header .sorting-wrapper .btn-sorting {
    padding: 11px 24px;
  }

  section.search-catalog .catalog-header .btn-share {
    padding: 11px 24px;
    margin: 0px 8px;
  }

  section.search-catalog .catalog-header .btn-gridOrList {
    margin-left: 8px;
  }

  section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label span {
    padding: 7px;
  }

  section.search-catalog .filters-wrap {
    padding: 16px 18px;
    border-radius: 18px;
  }

  @media screen and (min-width: 992px) {
    section.search-catalog .filters-wrap {
      top: 96px;
    }
  }

  section.search-catalog .filters-wrap .filters-chips {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  section.search-catalog .filters-wrap .filters-chips .chips-list {
    margin: 20px 0px 0px;
  }

  section.search-catalog .filters-wrap .filters-chips .chips-list .chip:not(:first-child) {
    margin-top: 8px;
  }

  section.search-catalog .filters-wrap .filters-chips .chips-list .chip a::after {
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-left: 10px;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item:not(:last-child) {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item .item-body {
    margin-top: 20px;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap {
    padding-left: 30px;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap:not(:first-child) {
    margin-top: 18px;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap .checkmark {
    width: 18px;
    height: 18px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item:nth-child(1n + 2),
  section.profile-page .exhibitions-wrap .exhibitions-item:nth-child(1n + 2) {
    margin-top: 22px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link {
    padding: 13px;
    border-radius: 18px;
    gap: 30px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .thumbnail .img-wrap img,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .thumbnail .img-wrap img {
    border-radius: 8px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle {
    margin-bottom: 18px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption p.h2,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.75em;
    margin-bottom: 18px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc {
    margin-bottom: 7px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc::before,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc::before {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc {
    margin-bottom: 18px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc::before,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc::before {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption:has(span.date-desc) span.price-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption:has(span.date-desc) span.price-desc {
    margin-bottom: 7px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc {
    margin-bottom: 18px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption div.tags,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption div.tags {
    gap: 8px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption div.tags span,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption div.tags span {
    border-radius: 18px;
    padding: 5px 14px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button {
    padding: 15px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button,
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button {
    top: 28px;
    right: 28px;
  }

  .search-inner-form {
    margin-bottom: 24px;
  }

  .search-inner-form input {
    padding: 12px;
    padding-right: 150px;
  }

  .search-inner-form button {
    padding: 13px 30px;
  }
}

@media screen and (max-width: 1299px) {
  section.search-catalog {
    padding: 40px 0px 46px;
  }

  section.search-catalog .catalog-header {
    margin-bottom: 24px;
  }

  section.search-catalog .catalog-header h1 {
    font-size: 1.875em;
  }

  section.search-catalog .catalog-header .sorting-wrapper .btn-sorting {
    font-size: 0.875em;
  }

  section.search-catalog .catalog-header .sorting-wrapper .btn-sorting::after {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  section.search-catalog .catalog-header .sorting-wrapper .sorting-options li a {
    font-size: 0.875em;
  }

  section.search-catalog .catalog-header .btn-share {
    font-size: 0.875em;
  }

  section.search-catalog .catalog-header .btn-share::after {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label span {
    padding: 6px;
  }

  section.search-catalog .filters-wrap {
    padding: 14px 16px;
    border-radius: 16px;
  }

  @media screen and (min-width: 992px) {
    section.search-catalog .filters-wrap {
      top: 88px;
    }
  }

  section.search-catalog .filters-wrap .filters-chips {
    padding-bottom: 26px;
    margin-bottom: 26px;
  }

  section.search-catalog .filters-wrap .filters-chips .chips-list {
    margin: 18px 0px 0px;
  }

  section.search-catalog .filters-wrap .filters-chips .chips-list .chip:not(:first-child) {
    margin-top: 6px;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item:not(:last-child) {
    padding-bottom: 26px;
    margin-bottom: 26px;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item .item-body {
    margin-top: 18px;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap {
    padding-left: 28px;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap:not(:first-child) {
    margin-top: 16px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item:nth-child(1n + 2),
  section.profile-page .exhibitions-wrap .exhibitions-item:nth-child(1n + 2) {
    margin-top: 20px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link {
    padding: 12px;
    border-radius: 16px;
    gap: 28px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .thumbnail .img-wrap img,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .thumbnail .img-wrap img {
    border-radius: 6px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle {
    margin-bottom: 16px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption p.h2,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.5em;
    margin-bottom: 16px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc {
    margin-bottom: 6px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc::before,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc::before {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc {
    margin-bottom: 16px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc::before,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc::before {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption:has(span.date-desc) span.price-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption:has(span.date-desc) span.price-desc {
    margin-bottom: 6px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc {
    margin-bottom: 16px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption div.tags span,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption div.tags span {
    border-radius: 16px;
    padding: 5px 12px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button {
    padding: 14px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button {
    width: 28px;
    min-width: 28px;
    height: 28px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button,
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button {
    top: 26px;
    right: 26px;
  }

  .search-inner-form {
    margin-bottom: 22px;
  }

  .search-inner-form input {
    padding: 9px 12px;
    padding-right: 150px;
  }

  .search-inner-form button {
    padding: 10px 30px;
  }
}

@media screen and (max-width: 1199px) {
  section.search-catalog {
    padding: 32px 0px 38px;
  }

  section.search-catalog .catalog-header {
    margin-bottom: 20px;
  }

  section.search-catalog .catalog-header h1 {
    font-size: 1.625em;
  }

  section.search-catalog .filters-wrap {
    padding: 12px 14px;
    border-radius: 14px;
  }

  @media screen and (min-width: 992px) {
    section.search-catalog .filters-wrap {
      top: 80px;
    }
  }

  section.search-catalog .filters-wrap .filters-chips {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  section.search-catalog .filters-wrap .filters-chips .chips-list {
    margin: 16px 0px 0px;
  }

  section.search-catalog .filters-wrap .filters-chips .chips-title p.h2 {
    font-size: 1em;
  }

  section.search-catalog .filters-wrap .filters-chips .chips-title a.clear {
    font-size: 0.75em;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item:not(:last-child) {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item p.h2 {
    font-size: 1em;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item .item-body {
    margin-top: 16px;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap {
    font-size: 0.875em;
  }

  section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap:not(:first-child) {
    margin-top: 14px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link {
    gap: 24px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle {
    margin-bottom: 14px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption p.h2,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.25em;
    margin-bottom: 14px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc {
    margin-bottom: 14px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc {
    margin-bottom: 14px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button {
    width: 24px;
    min-width: 24px;
    height: 24px;
  }
}

@media screen and (max-width: 991px) {
  section.search-catalog .catalog-header {
    flex-direction: column;
  }

  section.search-catalog .catalog-header .sorting-btns-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  section.search-catalog .catalog-header .sorting-btns-wrap .btn-filters-open {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-main);
    background-color: var(--color-main);
    font-size: 1em;
    line-height: 100%;
    font-weight: 500;
    color: var(--color-black);
    padding: 8px 20px;
    text-decoration: none;
    transition: var(--speed-slow);
    border-radius: 100px;
    margin-right: auto;
  }

  section.search-catalog .catalog-header .sorting-btns-wrap .btn-filters-open::before {
    content: '';
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-image: url(/img/filter-icon-black.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-right: 8px;
  }

  section.search-catalog .catalog-header .sorting-wrapper {
    margin: 0px 6px 0px 0px;
  }

  section.search-catalog .catalog-header .sorting-wrapper .btn-sorting {
    padding: 8px 20px;
  }

  section.search-catalog .catalog-header .btn-share {
    padding: 8px 20px;
    margin: 0px 6px;
  }

  section.search-catalog .catalog-header .btn-gridOrList {
    margin-left: 6px;
  }

  section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label span {
    padding: 4px;
  }

  section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label span::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .filters-modal-wrap {
    position: fixed;
    z-index: 115;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--bg-black-matte);
    display: flex;
    flex-direction: column;
    opacity: 0;
    user-select: none;
    pointer-events: none;
    transition: opacity var(--speed-fast);
  }

  .filters-modal-wrap.show {
    opacity: 1;
    user-select: auto;
    pointer-events: all;
  }

  .filters-modal-wrap .filters-modal-top {
    padding: 16px 0px;
    display: flex;
    align-items: center;
    background-color: var(--bg-black-matte);
  }

  .filters-modal-wrap .filters-modal-top .top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title {
    display: flex;
    align-items: center;
    font-size: 1.25em;
    line-height: 100%;
    font-weight: 500;
    color: var(--color-white);
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 4px;
    font-size: 0px;
    color: transparent;
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-close::before {
    content: '';
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(/img/filter-arrow-down-sorting.svg);
    transform: rotate(-90deg);
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-back {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 4px;
    font-size: 0px;
    color: transparent;
    display: none;
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-back::before {
    content: '';
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(/img/filter-arrow-down-sorting.svg);
    transform: rotate(-90deg);
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .clear {
    font-size: 1em;
    line-height: 120%;
    font-weight: 400;
    color: var(--color-white);
    cursor: pointer;
    text-decoration: none;
    transition: var(--speed-slow);
    margin-left: 12px;
  }

  @media screen and (min-width: 576px) {
    .filters-modal-wrap .filters-modal-top .top-wrap .clear:hover {
      color: var(--color-white);
    }
  }

  .filters-modal-wrap .filters-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0px;
    background-color: var(--bg-black-matte);
  }

  .filters-modal-wrap .filters-modal-content .content-wrap {
    display: flex;
    flex-direction: column;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 12px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    padding: 16px;
    border: 1px solid var(--bg-gray-40);
    border-radius: 14px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:nth-child(1n + 2) {
    margin-top: 33px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:nth-child(1n + 2)::before {
    content: '';
    position: absolute;
    left: 0px;
    top: -17px;
    width: 100%;
    height: 1px;
    background-color: var(--bg-gray-40);
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-top {
    padding: 12px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-top .title {
    font-size: 1em;
    line-height: 120%;
    font-weight: 400;
    color: var(--color-white);
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-top .value {
    font-size: 1em;
    line-height: 120%;
    font-weight: 400;
    color: var(--color-white);
    margin-left: 12px;
    display: flex;
    align-items: center;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-top .value::after {
    content: '';
    width: 24px;
    min-width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url(/img/filter-arrow-down-sorting.svg);
    transform: rotate(90deg);
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 26px;
    margin-top: 12px;
    font-size: 0.875em;
    line-height: 130%;
    font-weight: 300;
    color: var(--color-white);
    min-height: 20px;
    cursor: pointer;
    user-select: none;
    width: 100%;
    display: none;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item.open .list-body .checkbox-wrap {
    display: flex;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap .checkmark {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-white);
    border-radius: 2px;
    transition: var(--speed-slow);
    background-color: transparent;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap .checkmark::after {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background-color: transparent;
    transition: var(--speed-slow);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 140% 140%;
  }

  @media screen and (min-width: 576px) {
    .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap:hover .checkmark::after {
      background-color: var(--bg-gray-40);
    }
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap input:checked ~ .checkmark {
    border-color: var(--color-main);
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap input:checked ~ .checkmark::after {
    background-color: var(--color-main);
    background-image: url(/img/filter-check-black.svg);
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap .count {
    font-size: 1em;
    line-height: 120%;
    font-weight: 400;
    color: var(--color-white);
    margin-left: 16px;
    align-self: flex-start;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body:has(.checkbox-wrap input:checked) {
    padding-bottom: 12px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item.open .list-top .value {
    display: none;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:not(.open):has(.list-body .checkbox-wrap input:checked) .list-top .value span {
    display: none;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:not(.open) .list-body .checkbox-wrap:has(input:checked) {
    display: flex;
    padding-left: 0px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:not(.open) .list-body .checkbox-wrap:has(input:checked):first-child {
    margin-top: 0px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:not(.open) .list-body .checkbox-wrap:has(input:checked) .checkmark,
  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:not(.open) .list-body .checkbox-wrap:has(input:checked) .count {
    display: none;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap:has(.filters-list .list-item.open) form,
  .filters-modal-wrap .filters-modal-content .content-wrap:has(.filters-list .list-item.open) .sorting-list,
  .filters-modal-wrap .filters-modal-content .content-wrap:has(.filters-list .list-item.open) .filters-list .list-item:not(.open) {
    display: none;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item.open {
    margin-top: 0px;
  }

  .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item.open::before {
    display: none;
  }

  .filters-modal-wrap:has(.filters-modal-content .content-wrap .filters-list .list-item.open) .filters-modal-top .top-wrap .title .filters-modal-close {
    display: none;
  }

  .filters-modal-wrap:has(.filters-modal-content .content-wrap .filters-list .list-item.open) .filters-modal-top .top-wrap .title .filters-modal-back {
    display: flex;
  }

  .filters-modal-wrap:has(.filters-modal-content .content-wrap .filters-list .list-item.open) .filters-modal-bottom .bottom-wrap .buttons .filters-modal-back {
    display: block;
  }

  .filters-modal-wrap .filters-modal-bottom {
    padding: 16px 0px;
    background-color: var(--bg-black);
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .search-title {
    font-size: 1em;
    line-height: 150%;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 12px;
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .search-title b {
    font-weight: 400;
    color: var(--color-main);
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% + 12px);
    margin: 0px -6px;
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .buttons .filters-modal-back {
    font-size: 1em;
    line-height: 100%;
    font-weight: 400;
    color: var(--color-white);
    background: transparent;
    border: 1px solid var(--color-main);
    padding: 10px 20px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin: 0px 6px;
    border-radius: 100px;
    display: none;
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .buttons .filters-modal-close {
    font-size: 1em;
    line-height: 100%;
    font-weight: 400;
    color: var(--color-black);
    background: var(--color-main);
    padding: 11px 20px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    max-width: 300px;
    border-radius: 100px;
    margin: 0px 6px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid,
  section.profile-page .exhibitions-wrap.sorting-grid {
    margin: 0px -8px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item,
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item {
    padding: 0px 8px;
  }

  section.search-catalog {
    padding: 30px 0px;
  }

  section.search-catalog .catalog-header h1 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link {
    gap: 20px;
    padding: 10px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle {
    margin-bottom: 12px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption p.h2,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.25em;
    margin-bottom: 12px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc {
    margin-bottom: 12px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc {
    margin-bottom: 12px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button {
    padding: 10px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button {
    width: 22px;
    min-width: 22px;
    height: 22px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button,
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button {
    top: 20px;
    right: 20px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item:nth-child(1n + 3),
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item:nth-child(1n + 3) {
    margin-top: 16px;
  }

  .search-inner-form {
    margin: 0px auto 22px;
  }
}

@media screen and (max-width: 767px) {
  section.search-catalog {
    padding: 28px 0px;
  }

  section.search-catalog .catalog-header .sorting-btns-wrap .btn-filters-open {
    font-size: 0.875em;
  }

  section.search-catalog .catalog-header .sorting-wrapper {
    display: none;
  }

  section.search-catalog .catalog-header .btn-share {
    display: none;
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title {
    font-size: 1.125em;
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .clear {
    font-size: 0.875em;
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .buttons .filters-modal-back {
    font-size: 0.875em;
  }

  .filters-modal-wrap .filters-modal-bottom .bottom-wrap .buttons .filters-modal-close {
    font-size: 0.875em;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link {
    gap: 12px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.uppertitle {
    font-size: 0.875em;
    margin-bottom: 8px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption p.h2,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.125em;
    margin-bottom: 0px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc {
    display: none;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc {
    display: none;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc {
    margin-top: 8px;
    margin-bottom: 0px;
    font-size: 0.875em;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 6px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption div.tags,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption div.tags {
    display: none;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button {
    padding: 4px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button,
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button {
    top: 14px;
    right: 14px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item:nth-child(1n + 2),
  section.profile-page .exhibitions-wrap .exhibitions-item:nth-child(1n + 2) {
    margin-top: 16px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item:nth-child(1n + 3),
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item:nth-child(1n + 3) {
    margin-top: 16px;
  }

  .search-inner-form {
    margin-bottom: 20px;
  }

  .search-inner-form input {
    font-size: 0.875em;
    padding-right: 130px;
  }

  .search-inner-form button {
    font-size: 0.875em;
  }
}

@media screen and (max-width: 575px) {
  section.search-catalog .catalog-header .sorting-btns-wrap .btn-filters-open {
    width: calc(50% - 5px);
    padding: 7px 20px;
  }

  section.search-catalog .catalog-header .btn-gridOrList {
    width: calc(50% - 5px);
    margin: 0px;
  }

  section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label {
    width: 100%;
  }

  section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label span {
    padding: 3px;
    width: 100%;
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-close {
    padding: 0px;
  }

  .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-back {
    padding: 0px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid,
  section.profile-page .exhibitions-wrap.sorting-grid {
    margin: 0px -5px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item,
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item {
    padding: 0px 5px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link {
    padding: 6px;
    border-radius: 12px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption p.h2,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption p.h2 {
    font-size: 1em;
    font-weight: 400;
    margin: 0px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 4px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button {
    padding: 6px;
    position: absolute;
    left: calc(50% - 38px);
  }

  section.search-catalog .exhibitions-wrap:not(.sorting-grid) .exhibitions-item .item-link .thumbnail,
  section.profile-page .exhibitions-wrap:not(.sorting-grid) .exhibitions-item .item-link .thumbnail {
    width: 50%;
  }

  section.search-catalog .exhibitions-wrap:not(.sorting-grid) .exhibitions-item .item-link .thumbnail .img-wrap,
  section.profile-page .exhibitions-wrap:not(.sorting-grid) .exhibitions-item .item-link .thumbnail .img-wrap {
    padding-top: 65%;
  }

  section.search-catalog .exhibitions-wrap:not(.sorting-grid) .exhibitions-item .item-link .caption,
  section.profile-page .exhibitions-wrap:not(.sorting-grid) .exhibitions-item .item-link .caption {
    width: 50%;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button,
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item .item-link .event-button {
    top: 12px;
    left: auto;
    right: 12px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button,
  section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item:nth-child(1n + 2),
  section.profile-page .exhibitions-wrap .exhibitions-item:nth-child(1n + 2) {
    margin-top: 10px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item:nth-child(1n + 3),
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item:nth-child(1n + 3) {
    margin-top: 10px;
  }

  .search-inner-form {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
  }

  .search-inner-form input {
    padding: 10px;
    line-height: 100%;
  }

  .search-inner-form button {
    line-height: 100%;
    padding: 7px 20px;
    position: relative;
    margin-top: 12px;
    width: 100%;
  }
}








































section.single-main {
  position: relative;
  background-color: var(--bg-black);
  padding: 30px 0px 60px;
}

section.single-main .single-thumbnail {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  section.single-main .single-thumbnail {
    position: sticky;
    top: 104px;
  }
}

section.single-main .single-thumbnail .gallery-popup {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

section.single-main .single-thumbnail a.thumbnail-img {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

section.single-main .single-thumbnail .img-wrap {
  display: flex;
  padding-top: 100%;
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

section.single-main .single-thumbnail .img-wrap img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.single-main .single-thumbnail .img-wrap::after {
  position: absolute;
  top: 0px;
  left: 0px;
  content: '';
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  transition: var(--speed-slow);
  user-select: none;
  pointer-events: none;
  border-radius: 20px;
}

@media screen and (min-width: 576px) {
  section.single-main .single-thumbnail a.thumbnail-img:hover .img-wrap::after {
    border-color: var(--color-main);
  }
}

section.single-main .single-thumbnail .buttons-wrap {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

section.single-main .single-thumbnail .buttons-wrap .btn-share {
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  padding: 14px 26px;
  background-color: var(--bg-gray-40);
  border: 1px solid var(--bg-gray-40);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--speed-slow);
  width: 100%;
}

section.single-main .single-thumbnail .buttons-wrap .btn-share::after {
  content: '';
  width: 22px;
  min-width: 22px;
  height: 22px;
  background-image: url(/img/share-icon-sorting.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-left: 8px;
}

@media screen and (min-width: 576px) {
  section.single-main .single-thumbnail .buttons-wrap .btn-share:hover {
    border-color: var(--color-white);
  }
}

section.single-main .single-content {
  display: flex;
  flex-direction: column;
  overflow: clip;
}

section.single-main .single-content .content-item {
  background-color: var(--bg-black-matte);
  border-radius: 20px;
  padding: 40px;
}

section.single-main .single-content .content-item:not(:first-child) {
  margin-top: 16px;
}

section.single-main .single-content .caption-wrap {
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .caption-wrap span.uppertitle {
  font-size: 1.375em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 20px;
}

section.single-main .single-content .caption-wrap h1 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 3em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 50px;
}

section.single-main .single-content .caption-wrap span.end_date-info {
  display: flex;
  align-items: center;
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  border: none;
  border-radius: 16px;
  background: var(--bg-green);
  padding: 16px 24px;
  margin-bottom: 40px;
}

section.single-main .single-content .caption-wrap .price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.single-main .single-content .caption-wrap .price-wrap .price-desc {
  display: flex;
  margin-right: auto;
}

section.single-main .single-content .caption-wrap .price-wrap .price-desc span:not(.free) {
  font-size: 3em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  margin: 0px;
}

section.single-main .single-content .caption-wrap .price-wrap .price-desc span.free {
  font-size: 2em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  margin: 0px;
}

section.single-main .single-content .caption-wrap .price-wrap .btn-wrap {
  display: flex;
  margin-left: auto;
  margin-right: 16px;
}

section.single-main .single-content .caption-wrap .price-wrap .btn-wrap a.btn.main span {
  padding: 18px 40px;
}

section.single-main .single-content .caption-wrap .price-wrap .event-button {
  display: flex;
}

section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button {
  padding: 13px 12px 11px;
  border-radius: 100%;
  border: 2px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0em;
  line-height: 100%;
  color: transparent;
  overflow: hidden;
  transition: var(--speed-slow);
  cursor: pointer;
}

section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button::after {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-image: url(/img/heart-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  mask-image: url(/img/heart-icon-white-full.svg);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  transition: var(--speed-slow);
  /* background-color: var(--bg-black-matte); */
}

@media screen and (min-width: 576px) {
  section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button:hover {
    background-color: var(--bg-gray-40);
  }
}

section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button.in-wishlist {
  border-color: var(--color-main);
}

section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button.in-wishlist::after {
  background-color: var(--color-main);
  background-image: url(/img/heart-icon-main.svg);
}

section.single-main .single-content .caption-wrap .stats-list {
  margin-top: 40px;
  border-top: 2px solid var(--bg-gray-40);
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

section.single-main .single-content .caption-wrap .stats-list .list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc((100% - 60px) / 3);
}

section.single-main .single-content .caption-wrap .stats-list .list-item span {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  display: flex;
  align-items: center;
}

section.single-main .single-content .caption-wrap .stats-list .list-item span:first-child {
  color: var(--color-gray-10);
}

section.single-main .single-content .caption-wrap .stats-list .list-item span:not(:first-child) {
  margin-top: 8px;
}

section.single-main .single-content .caption-wrap .stats-list .list-item span[class]::before {
  content: '';
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section.single-main .single-content .caption-wrap .stats-list .list-item span.time::before {
  background-image: url(/img/time-icon-white.svg);
}

section.single-main .single-content .caption-wrap .stats-list .list-item span.audio::before {
  background-image: url(/img/audio-icon-white.svg);
}

section.single-main .single-content .caption-wrap .stats-list .list-item span.subtitles::before {
  background-image: url(/img/subtitles-icon-white.svg);
}

section.single-main .single-content .about-wrap {
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .about-wrap .text-wrap {
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .about-wrap .text-wrap .show-more-wrap .show-more-content {
  -webkit-line-clamp: 8;
  line-clamp: 8;
}

section.single-main .single-content .about-wrap .text-wrap .show-more-wrap .show-more span {
  color: var(--color-white);
}

section.single-main .single-content .about-wrap .text-wrap .show-more-wrap .show-more::after {
  background-image: url(/img/show-more-arrow-white.svg);
}

section.single-main .single-content .about-wrap .group-wrap {
  margin-top: 40px;
  border-top: 2px solid var(--bg-gray-40);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .about-wrap .group-wrap h2 {
  font-size: 2em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
}

section.single-main .single-content .about-wrap .group-wrap  .group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

section.single-main .single-content .about-wrap .group-wrap  .group-list .list-item {
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .about-wrap .group-wrap  .group-list .list-item .position {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-gray-10);
  margin-bottom: 8px;
}

section.single-main .single-content .about-wrap .group-wrap  .group-list .list-item .name {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
}

section.single-main .single-content .about-wrap .history-wrap {
  margin-top: 40px;
  border-top: 2px solid var(--bg-gray-40);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .about-wrap .history-wrap h2 {
  font-size: 2em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
}

section.single-main .single-content .about-wrap .history-wrap p {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 26px;
}

section.single-main .single-content .about-wrap .history-wrap .history-slider {
  position: relative;
}

section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-list {
  margin: 0px -10px;
}

section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-list .slick-slide > div {
  display: flex;
}

section.single-main .single-content .about-wrap .history-wrap .history-slider .history-item {
  padding: 0px 10px;
}

section.single-main .single-content .about-wrap .history-wrap .history-slider .history-item img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 10px;
}

section.single-main .single-content .about-wrap .history-wrap .history-slider:not(:has(.slick-list)) {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

section.single-main .single-content .about-wrap .history-wrap .history-slider:not(:has(.slick-list)) .history-item {
  width: calc((100% - 40px) / 3);
  padding: 0px;
  display: flex;
}

section.single-main .single-content .about-wrap .history-wrap .history-slider:not(:has(.slick-list)) .history-item a {
  display: flex;
  width: 100%;
  position: relative;
}

section.single-main .single-content .about-wrap .history-wrap .history-slider:not(:has(.slick-list)) .history-item a::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.single-main .single-content .about-wrap .history-wrap .history-slider:not(:has(.slick-list)) .history-item a:hover::after {
    border-color: var(--color-main);
  }
}

section.single-main .single-content .about-wrap .history-wrap .history-slider:not(:has(.slick-list)) .history-item img {
  object-fit: cover;
  height: 100%;
}

section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-arrow.slick-prev {
  left: 0px;
}

section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-arrow.slick-next {
  right: 0px;
}

section.single-main .single-content .about-wrap .exhibition-wrap {
  margin-top: 40px;
  border-top: 2px solid var(--bg-gray-40);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .about-wrap .exhibition-wrap h2 {
  font-size: 2em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 36px;
}

section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  counter-reset: exhibition-counter;
}

section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item {
  width: calc((100% - 30px) / 2);
  display: flex;
  align-items: center;
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  counter-increment: exhibition-counter;
  position: relative;
}

section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item::before {
  content: counter(exhibition-counter);
  font-size: 6em;
  line-height: 100%;
  font-weight: 700;
  color: var(--bg-black-matte);
  margin-right: 12px;
  min-width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: -1px -1px 0 var(--color-main), 1px -1px 0 var(--color-main), -1px 1px 0 var(--color-main), 1px 1px 0 var(--color-main);
}

section.single-main .single-content .comments-wrap {
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .comments-wrap h2 {
  font-size: 2em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 28px;
}

section.single-main .single-content .comments-wrap .comments-add {
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .comments-wrap .comments-add .comments-user {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

section.single-main .single-content .comments-wrap .comments-add .comments-user .image-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 18px;
}

section.single-main .single-content .comments-wrap .comments-add .comments-user .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.single-main .single-content .comments-wrap .comments-add .comments-user span.name {
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  margin: 0px;
}

section.single-main .single-content .comments-wrap form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

section.single-main .single-content .comments-wrap form .form-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

section.single-main .single-content .comments-wrap form .form-item:not(:first-child) {
  margin-top: 16px;
}

section.single-main .single-content .comments-wrap form .form-item input,
section.single-main .single-content .comments-wrap form .form-item textarea {
  width: 100%;
  outline: none;
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  padding: 18px 25px;
  background-color: var(--bg-gray-100);
  border-radius: 20px;
  border: none;
  resize: none;
}

section.single-main .single-content .comments-wrap form .form-item input::placeholder,
section.single-main .single-content .comments-wrap form .form-item textarea::placeholder {
  color: var(--color-gray-10);
}

section.single-main .single-content .comments-wrap form .form-item button {
  width: 100%;
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-black);
  background-color: var(--color-main);
  border: 4px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 100px;
  text-align: center;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.single-main .single-content .comments-wrap form .form-item button:hover {
    /* background-color: transparent;
    color: var(--color-white); */
    border-color: #8DBD29;
  }
}

section.single-main .single-content .comments-wrap .comments-sorting {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  align-self: flex-start;
  margin-top: 36px;
  margin-bottom: 28px;
}

section.single-main .single-content .comments-wrap .comments-sorting .sorting-btn {
  display: flex;
  align-items: center;
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
}

section.single-main .single-content .comments-wrap .comments-sorting .sorting-btn::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(/img/sorting-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 8px;
}

section.single-main .single-content .comments-wrap .comments-sorting .sorting-options {
  position: absolute;
  z-index: 2;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: var(--speed-slow);
  background-color: var(--bg-black-matte);
  left: 0px;
  top: calc(100% + 10px);
  border: none;
  list-style: none;
  padding: 0px;
  margin: 0px;
  border-radius: 8px;
  box-shadow: 0px 0px 26px -5px rgba(0, 0, 0, 0.2);
}

section.single-main .single-content .comments-wrap .comments-sorting.show .sorting-options {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
}

section.single-main .single-content .comments-wrap .comments-sorting .sorting-options li {
  display: flex;
  align-items: center;
  padding: 5px;
}

section.single-main .single-content .comments-wrap .comments-sorting .sorting-options li a {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  padding: 5px;
  display: flex;
  border-radius: 3px;
  transition: var(--speed-slow);
  white-space: nowrap;
}

@media screen and (min-width: 576px) {
  section.single-main .single-content .comments-wrap .comments-sorting .sorting-options li a:hover {
    background-color: var(--bg-gray-40);
  }
}

section.single-main .single-content .comments-wrap .comments-sorting .sorting-options li a.active {
  background-color: var(--bg-gray-40);
}

section.single-main .single-content .comments-wrap .comments-list {
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .comments-wrap .comments-list .list-item {
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .comments-wrap .comments-list .list-item:not(:first-child) {
  margin-top: 28px;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap {
  background-color: var(--bg-gray-100);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .user {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 18px;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .user span.name {
  font-size: 1.125em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  margin: 0px;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .caption {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .caption p {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  margin: 0px;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  margin-right: 50px;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn:hover {
    color: var(--color-main);
  }
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .vote {
  display: flex;
  align-items: center;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item {
  display: flex;
  align-items: center;
  margin: 0px 10px;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item a.vote-btn {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item a.vote-btn.like-btn {
  background-image: url(/img/like-icon-white.svg);
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item a.vote-btn.dislike-btn {
  background-image: url(/img/dislike-icon-white.svg);
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item span.count {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  margin-left: 10px;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .date {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  margin-left: auto;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap {
  display: flex;
  flex-direction: column;
  margin: 0px 0px 0px 40px;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 20px;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn {
  display: flex;
  align-items: center;
  font-size: 1.125em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn .hide {
  display: none;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap.open-comments .reply-comments .reply-list-btn .show {
  display: none;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap.open-comments .reply-comments .reply-list-btn .hide {
  display: flex;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn::after {
  content: '';
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-left: 16px;
  position: relative;
  background-image: url(/img/filter-arrow-down-sorting.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* transition: var(--speed-fast); */
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap.open-comments .reply-comments .reply-list-btn::after {
  transform: rotate(-180deg);
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list {
  overflow: hidden;
  height: 100%;
  max-height: 0;
  -webkit-transition: all var(--speed-fast) ease-in-out;
  transition: all var(--speed-fast) ease-in-out;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap.open-comments .reply-comments .reply-list {
  max-height: none;
  width: 100%;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list .list-item {
  margin-top: 20px;
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list .list-item .item-wrap {
  background-color: var(--bg-gray-70);
}

section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap form {
  margin-top: 12px;
  /* display: none; */
}

section.single-main .single-content .comments-wrap .comments-list .list-item.comments-item.open-form .reply-wrap form {
  display: flex;
}

/* section.single-comments .comments-wrap .comments-list .list-item .reply-wrap .reply-comments:not(:has(.reply-list .reply-item)) {
  display: none;
} */

/* .list-item.comments-item.open-form .reply-add-form {
  display: flex !important;
} */

/* section.single-main .single-content .comments-wrap form {
  margin-top: 30px;
} */

section.fixed-price {
  position: fixed;
  z-index: 10;
  left: 0px;
  bottom: -52px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-black-matte);
  box-shadow: 0px 0px 26px -5px rgba(0, 0, 0, 0.2);
  transition: bottom var(--speed-slow);
}

section.fixed-price.active {
  bottom: -1px;
}

section.fixed-price .price-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 8px 40px;
}

section.fixed-price .price-wrap .price-desc {
  display: flex;
  margin-right: 16px;
}

section.fixed-price .price-wrap .price-desc span:not(.free) {
  font-size: 1.5em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  margin: 0px;
}

section.fixed-price .price-wrap .price-desc span.free {
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  margin: 0px;
}

section.fixed-price .price-wrap .btn-wrap {
  display: flex;
  margin-left: 16px;
  margin-right: 16px;
}

section.fixed-price .price-wrap .btn-wrap a.btn {
  font-size: 0.875em;
  border-width: 2px;
}

section.fixed-price .price-wrap .btn-wrap a.btn span {
  padding: 9px 20px;
}

section.fixed-price .price-wrap .event-button {
  display: flex;
}

section.fixed-price .price-wrap .event-button .like-button {
  padding: 6px 5px 4px;
  border-radius: 100%;
  border: 2px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0em;
  line-height: 100%;
  color: transparent;
  overflow: hidden;
  transition: var(--speed-slow);
  cursor: pointer;
}

section.fixed-price .price-wrap .event-button .like-button::after {
  content: '';
  width: 18px;
  min-width: 18px;
  height: 18px;
  background-image: url(/img/heart-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  mask-image: url(/img/heart-icon-white-full.svg);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  transition: var(--speed-slow);
  /* background-color: var(--bg-black-matte); */
}

@media screen and (min-width: 576px) {
  section.fixed-price .price-wrap .event-button .like-button:hover {
    background-color: var(--bg-gray-40);
  }
}

section.fixed-price .price-wrap .event-button .like-button.in-wishlist {
  border-color: var(--color-main);
}

section.fixed-price .price-wrap .event-button .like-button.in-wishlist::after {
  background-color: var(--color-main);
  background-image: url(/img/heart-icon-main.svg);
}

section.single-more {
  padding: 50px 0px 60px;
  background-color: var(--bg-black);
}

section.single-more .title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

section.single-more .title-wrap h2 {
  font-size: 2em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin: 0px;
}

section.single-more .title-wrap .more-arrows,
section.single-more .title-wrap .news-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

section.single-more .title-wrap .more-arrows .slick-arrow,
section.single-more .title-wrap .news-arrows .slick-arrow {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: var(--bg-gray-40);
  color: transparent;
  font-size: 0em;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 46% 46%;
  transition: var(--speed-slow);
  outline: none;
}

@media screen and (min-width: 576px) {
  section.single-more .title-wrap .more-arrows .slick-arrow:hover,
  section.single-more .title-wrap .news-arrows .slick-arrow:hover {
    background-color: var(--bg-gray-70);
    border-color: var(--color-main);
  }
}

section.single-more .title-wrap .more-arrows .slick-arrow.slick-prev,
section.single-more .title-wrap .news-arrows .slick-arrow.slick-prev {
  background-image: url(/img/slider-arrow-left-white.svg);
}

section.single-more .title-wrap .more-arrows .slick-arrow.slick-next,
section.single-more .title-wrap .news-arrows .slick-arrow.slick-next {
  background-image: url(/img/slider-arrow-right-white.svg);
}

section.single-more .more-slider,
section.single-more .news-slider {
  margin: 0px -8px;
}

section.single-more .more-slider .slick-track,
section.single-more .news-slider .slick-track {
  display: flex;
}

section.single-more .more-slider .slick-track .slick-slide,
section.single-more .news-slider .slick-track .slick-slide {
  height: auto;
}

section.single-more .more-slider .slick-track .slick-slide > div,
section.single-more .news-slider .slick-track .slick-slide > div {
  height: 100%;
}

@media screen and (min-width: 576px) {
  section.single-more .more-slider .slick-track .slick-slide,
  section.single-more .news-slider .slick-track .slick-slide {
    opacity: 0.4;
    user-select: none;
    pointer-events: none;
    transition: opacity var(--speed-fast);
  }

  section.single-more .more-slider .slick-track .slick-slide.slick-active,
  section.single-more .news-slider .slick-track .slick-slide.slick-active {
    opacity: 1;
    user-select: auto;
    pointer-events: all;
  }
}

section.single-more .more-slider .exhibitions-item,
section.single-more .news-slider .exhibitions-item {
  display: flex;
  height: 100%;
  padding: 0px 8px;
}

section.single-more .more-slider .exhibitions-item .item-link,
section.single-more .news-slider .exhibitions-item .item-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 14px;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 20px;
  transition: var(--speed-fast);
  background-color: var(--bg-black-matte);
  gap: 32px;
  position: relative;
}

@media screen and (min-width: 576px) {
  section.single-more .more-slider .exhibitions-item .item-link:hover,
  section.single-more .news-slider .exhibitions-item .item-link:hover {
    border-color: var(--color-main);
  }
}

section.single-more .more-slider .exhibitions-item .item-link .thumbnail,
section.single-more .news-slider .exhibitions-item .item-link .thumbnail {
  width: 100%;
  display: flex;
}

section.single-more .more-slider .exhibitions-item .item-link .thumbnail .img-wrap,
section.single-more .news-slider .exhibitions-item .item-link .thumbnail .img-wrap {
  display: flex;
  width: 100%;
  position: relative;
  padding-top: 65%;
}

section.single-more .more-slider .exhibitions-item .item-link .thumbnail .img-wrap img,
section.single-more .news-slider .exhibitions-item .item-link .thumbnail .img-wrap img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

section.single-more .more-slider .exhibitions-item .item-link .caption,
section.single-more .news-slider .exhibitions-item .item-link .caption {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

section.single-more .more-slider .exhibitions-item .item-link .caption span.uppertitle,
section.single-more .news-slider .exhibitions-item .item-link .caption span.uppertitle {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-main);
  margin-bottom: 20px;
  display: none;
}

section.single-more .more-slider .exhibitions-item .item-link .caption p.h2,
section.single-more .news-slider .exhibitions-item .item-link .caption p.h2 {
  font-size: 1.75em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
}

section.single-more .more-slider .exhibitions-item .item-link .caption span.museum-desc,
section.single-more .news-slider .exhibitions-item .item-link .caption span.museum-desc {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-main);
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

section.single-more .more-slider .exhibitions-item .item-link .caption span.museum-desc::before,
section.single-more .news-slider .exhibitions-item .item-link .caption span.museum-desc::before {
  content: '';
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-image: url(/img/museum-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 12px;
}

section.single-more .more-slider .exhibitions-item .item-link .caption span.price-desc,
section.single-more .news-slider .exhibitions-item .item-link .caption span.price-desc {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

section.single-more .more-slider .exhibitions-item .item-link .caption span.price-desc::before,
section.single-more .news-slider .exhibitions-item .item-link .caption span.price-desc::before {
  content: '';
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-image: url(/img/price-icon-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 12px;
}

section.single-more .more-slider .exhibitions-item .item-link .caption div.tags,
section.single-more .news-slider .exhibitions-item .item-link .caption div.tags {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  display: none;
}

section.single-more .more-slider .exhibitions-item .item-link .caption div.tags span,
section.single-more .news-slider .exhibitions-item .item-link .caption div.tags span {
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 300;
  color: var(--color-white);
  border-radius: 20px;
  background-color: var(--bg-gray-70);
  padding: 6px 16px;
}

section.single-more .more-slider .exhibitions-item .item-link .event-button,
section.single-more .news-slider .exhibitions-item .item-link .event-button {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 0px;
}

section.single-more .more-slider .exhibitions-item .item-link .event-button .like-button,
section.single-more .news-slider .exhibitions-item .item-link .event-button .like-button {
  width: 32px;
  min-width: 32px;
  height: 32px;
  background-image: url(/img/heart-icon-main.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-mask-image: url(/img/heart-icon-main-full.svg);
  mask-image: url(/img/heart-icon-main-full.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  font-size: 0em;
  color: transparent;
  overflow: hidden;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.single-more .more-slider .exhibitions-item .item-link .event-button .like-button:hover,
  section.single-more .news-slider .exhibitions-item .item-link .event-button .like-button:hover {
    background-color: var(--bg-gray-40);
  }
}

section.single-more .more-slider .exhibitions-item .item-link .event-button .like-button.in-wishlist,
section.single-more .news-slider .exhibitions-item .item-link .event-button .like-button.in-wishlist {
  background-color: var(--color-main);
}


.modal .modal-dialog {
  opacity: 0;
  transition: none;
}

.modal.fade .modal-dialog {
  transform: none;
  transition: none;
}

.modal.show .modal-dialog {
  opacity: 1;
}

@media (min-width: 776px) {
  .modal-dialog {
    max-width: 600px;
  }
}

.modal-content {
  max-width: 600px;
  vertical-align: middle;
  margin: 0 auto;
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-gray-100);
  border: 1px solid var(--color-gray-10);
  text-align: left;
  border-radius: 16px;
  position: relative;
}

.modal-content .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px;
  border: none;
  margin-bottom: 24px;
}

.modal-content .modal-header a.logo {
  height: 35px;
  width: auto;
  margin-right: auto;
}

.modal-content:has(.modal-body.success) .modal-header a.logo {
  margin-left: auto;
}

.modal-content .modal-header a.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.modal-content .modal-header .btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  text-decoration: none;
  color: transparent;
  font-size: 0em;
  line-height: 100%;
  font-weight: 400;
  background: url(/img/filter-cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: var(--speed-slow);
  padding: 0px;
  margin: 0px;
  opacity: 1;
}

@media screen and (min-width: 576px) {
  .modal-content .modal-header .btn-close:hover {
    opacity: 0.8;
  }
}

.modal-content .modal-body {
  padding: 0px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.modal-content .modal-body.success {
  align-items: center;
}

.modal-content .modal-body.success::before {
  content: '';
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin: 0px auto 20px;
  background-color: var(--color-main);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80% 80%;
  background-image: url(/img/filter-check-black.svg);
}

.modal-content .modal-body.success p.h3 {
  font-size: 1.5em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 6px;
}

.modal-content .modal-body.success p {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 16px;
}

.modal-content .modal-body span.alert.alert-success {
  display: block;
  text-align: left;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
}

.modal-content .modal-body button.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-main);
  background-color: transparent;
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  padding: 15px 40px;
  text-decoration: none;
  transition: var(--speed-slow);
  border-radius: 100px;
  width: 100%;
}

@media screen and (min-width: 576px) {
  .modal-content .modal-body button.btn:hover {
    background-color: var(--color-main);
    color: var(--color-black);
  }
}

.modal-content .modal-body button.btn.main {
  background-color: var(--color-main);
  color: var(--color-black);
  border-width: 4px;
  padding: 14px 40px;
}

@media screen and (min-width: 576px) {
  .modal-content .modal-body button.btn.main:hover {
    border-color: #8DBD29;
  }
}

.modal-backdrop {
  background: #1B1B1B80;
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: none;
}

.modal-backdrop.show {
  opacity: 1;
}

.navigation {
  margin-bottom: 20px;
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  font-size: 0.875em;
}

.navigation::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.navigation a {
  display: flex;
  align-items: center;
  color: var(--color-gray-10);
  text-decoration: none;
  transition: var(--speed-slow);
}

.navigation a span[itemprop="name"] {
  color: var(--color-gray-10);
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  .navigation a:hover span[itemprop="name"] {
    color: var(--color-white);
  }

  body.light-mode .navigation a:hover span[itemprop="name"] {
    color: var(--color-main);
  }
}

span.navigation__link {
  color: var(--color-gray-10);
}

span.mlh.arrow:before {
  content: "/";
  margin: 0px 10px;
}

@media screen and (max-width: 1399px) {
  section.single-main {
    padding: 28px 0px 55px;
  }

  @media screen and (min-width: 992px) {
    section.single-main .single-thumbnail {
      top: 96px;
    }
  }

  section.single-main .single-thumbnail .img-wrap {
    border-radius: 18px;
  }

  section.single-main .single-thumbnail .img-wrap::after {
    border-radius: 18px;
  }

  section.single-main .single-thumbnail .buttons-wrap .btn-share {
    padding: 13px 24px;
  }

  section.single-main .single-content .content-item {
    border-radius: 18px;
    padding: 36px;
  }

  section.single-main .single-content .caption-wrap span.uppertitle {
    font-size: 1.25em;
    margin-bottom: 18px;
  }

  section.single-main .single-content .caption-wrap h1 {
    font-size: 2.75em;
    margin-bottom: 46px;
  }

  section.single-main .single-content .caption-wrap span.end_date-info {
    font-size: 1em;
    border-radius: 14px;
    padding: 14px 22px;
    margin-bottom: 36px;
  }

  section.single-main .single-content .caption-wrap .price-wrap .price-desc span:not(.free) {
    font-size: 2.75em;
  }

  section.single-main .single-content .caption-wrap .price-wrap .price-desc span.free {
    font-size: 1.875em;
  }

  section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button::after {
    width: 22px;
    min-width: 22px;
    height: 22px;
  }

  section.single-main .single-content .caption-wrap .stats-list {
    margin-top: 36px;
    padding-top: 36px;
    gap: 28px;
  }

  section.single-main .single-content .caption-wrap .stats-list .list-item {
    width: calc((100% - 56px) / 3);
  }

  section.single-main .single-content .caption-wrap .stats-list .list-item span:not(:first-child) {
    margin-top: 7px;
  }

  section.single-main .single-content .caption-wrap .stats-list .list-item span[class]::before {
    margin-right: 7px;
  }

  section.single-main .single-content .about-wrap .text-wrap .show-more-wrap .show-more-content {
    -webkit-line-clamp: 7;
    line-clamp: 7;
  }

  section.single-main .single-content .about-wrap .group-wrap {
    margin-top: 36px;
    padding-top: 36px;
  }

  section.single-main .single-content .about-wrap .group-wrap h2 {
    font-size: 1.875em;
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list {
    gap: 28px;
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list .list-item {
    width: calc((100% - 56px) / 3);
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list .list-item .position {
    margin-bottom: 7px;
  }

  section.single-main .single-content .about-wrap .history-wrap {
    margin-top: 36px;
    padding-top: 36px;
  }

  section.single-main .single-content .about-wrap .history-wrap h2 {
    font-size: 1.875em;
  }

  section.single-main .single-content .about-wrap .history-wrap p {
    margin-bottom: 24px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap {
    margin-top: 36px;
    padding-top: 36px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap h2 {
    font-size: 1.875em;
    margin-bottom: 34px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list {
    gap: 28px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item {
    width: calc((100% - 28px) / 2);
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item::before {
    font-size: 5.5em;
    min-width: 70px;
  }

  section.single-main .single-content .comments-wrap h2 {
    font-size: 1.875em;
    margin-bottom: 26px;
  }

  section.single-main .single-content .comments-wrap .comments-add .comments-user {
    margin-bottom: 10px;
  }

  section.single-main .single-content .comments-wrap .comments-add .comments-user .image-wrap {
    width: 56px;
    height: 56px;
    margin-right: 16px;
  }

  section.single-main .single-content .comments-wrap .comments-add .comments-user span.name {
    font-size: 1em;
  }

  section.single-main .single-content .comments-wrap form .form-item input,
  section.single-main .single-content .comments-wrap form .form-item textarea {
    padding: 16px 23px;
    border-radius: 18px;
  }

  section.single-main .single-content .comments-wrap form .form-item button {
    padding: 13px 30px;
  }

  section.single-main .single-content .comments-wrap .comments-sorting {
    margin-top: 34px;
    margin-bottom: 26px;
  }

  section.single-main .single-content .comments-wrap .comments-sorting .sorting-btn {
    font-size: 1em;
  }

  section.single-main .single-content .comments-wrap .comments-sorting .sorting-btn::before {
    margin-right: 7px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item:not(:first-child) {
    margin-top: 26px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap {
    border-radius: 18px;
    padding: 14px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .user {
    margin-bottom: 14px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap {
    width: 56px;
    height: 56px;
    margin-right: 16px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .user span.name {
    font-size: 1em;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
    margin-right: 46px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap {
    margin: 0px 0px 0px 36px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments {
    margin-top: 18px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn {
    font-size: 1em;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list .list-item {
    margin-top: 18px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap form {
    margin-top: 10px;
  }

  section.fixed-price .price-wrap {
    padding: 8px 36px;
  }

  section.single-more {
    padding: 45px 0px 55px;
  }

  section.single-more .title-wrap h2 {
    font-size: 1.875em;
  }

  section.single-more .title-wrap .more-arrows,
  section.single-more .title-wrap .news-arrows {
    gap: 18px;
  }

  section.single-more .title-wrap .more-arrows .slick-arrow,
  section.single-more .title-wrap .news-arrows .slick-arrow {
    width: 56px;
    min-width: 56px;
    height: 56px;
  }

  section.single-more .more-slider .exhibitions-item .item-link,
  section.single-more .news-slider .exhibitions-item .item-link {
    padding: 13px;
    border-radius: 18px;
    gap: 30px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .thumbnail .img-wrap img,
  section.single-more .news-slider .exhibitions-item .item-link .thumbnail .img-wrap img {
    border-radius: 8px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.uppertitle,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.uppertitle {
    margin-bottom: 18px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption p.h2,
  section.single-more .news-slider .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.625em;
    margin-bottom: 18px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.museum-desc,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.museum-desc {
    margin-bottom: 7px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.museum-desc::before,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.museum-desc::before {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.price-desc,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.price-desc {
    margin-bottom: 18px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.price-desc::before,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.price-desc::before {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 10px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption div.tags,
  section.single-more .news-slider .exhibitions-item .item-link .caption div.tags {
    gap: 8px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption div.tags span,
  section.single-more .news-slider .exhibitions-item .item-link .caption div.tags span {
    border-radius: 18px;
    padding: 5px 14px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .event-button,
  section.single-more .news-slider .exhibitions-item .item-link .event-button {
    top: 28px;
    right: 28px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .event-button .like-button,
  section.single-more .news-slider .exhibitions-item .item-link .event-button .like-button {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .modal-content {
    padding: 38px;
  }

  .modal-content .modal-header {
    margin-bottom: 22px;
  }

  .modal-content .modal-header a.logo {
    height: 32px;
  }

  .modal-content .modal-body button.btn {
    padding: 14px 30px;
  }

  .modal-content .modal-body button.btn.main {
    padding: 13px 30px;
  }
}

@media screen and (max-width: 1299px) {
  section.single-main {
    padding: 28px 0px 46px;
  }

  @media screen and (min-width: 992px) {
    section.single-main .single-thumbnail {
      top: 88px;
    }
  }

  section.single-main .single-thumbnail .img-wrap {
    border-radius: 16px;
  }

  section.single-main .single-thumbnail .img-wrap::after {
    border-radius: 16px;
  }

  section.single-main .single-thumbnail .buttons-wrap .btn-share {
    padding: 11px 24px;
  }

  section.single-main .single-thumbnail .buttons-wrap .btn-share::after {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  section.single-main .single-content .content-item {
    border-radius: 16px;
    padding: 32px;
  }

  section.single-main .single-content .caption-wrap span.uppertitle {
    font-size: 1.125em;
    margin-bottom: 16px;
  }

  section.single-main .single-content .caption-wrap h1 {
    font-size: 2.5em;
    margin-bottom: 42px;
  }

  section.single-main .single-content .caption-wrap span.end_date-info {
    font-size: 1em;
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 32px;
  }

  section.single-main .single-content .caption-wrap .price-wrap .price-desc span:not(.free) {
    font-size: 2.5em;
  }

  section.single-main .single-content .caption-wrap .price-wrap .price-desc span.free {
    font-size: 1.75em;
  }

  section.single-main .single-content .caption-wrap .price-wrap .btn-wrap a.btn.main span {
    padding: 14px 30px;
  }

  section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button {
    padding: 10px 9px 8px;
  }

  section.single-main .single-content .caption-wrap .stats-list {
    margin-top: 32px;
    padding-top: 32px;
    gap: 26px;
  }

  section.single-main .single-content .caption-wrap .stats-list .list-item {
    width: calc((100% - 52px) / 3);
  }

  section.single-main .single-content .caption-wrap .stats-list .list-item span:not(:first-child) {
    margin-top: 6px;
  }

  section.single-main .single-content .caption-wrap .stats-list .list-item span[class]::before {
    margin-right: 6px;
  }

  section.single-main .single-content .about-wrap .text-wrap .show-more-wrap .show-more-content {
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }

  section.single-main .single-content .about-wrap .group-wrap {
    margin-top: 32px;
    padding-top: 32px;
  }

  section.single-main .single-content .about-wrap .group-wrap h2 {
    font-size: 1.75em;
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list {
    gap: 26px;
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list .list-item {
    width: calc((100% - 52px) / 3);
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list .list-item .position {
    margin-bottom: 6px;
  }

  section.single-main .single-content .about-wrap .history-wrap {
    margin-top: 32px;
    padding-top: 32px;
  }

  section.single-main .single-content .about-wrap .history-wrap h2 {
    font-size: 1.75em;
  }

  section.single-main .single-content .about-wrap .history-wrap p {
    margin-bottom: 22px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap {
    margin-top: 32px;
    padding-top: 32px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap h2 {
    font-size: 1.75em;
    margin-bottom: 32px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list {
    gap: 26px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item {
    width: calc((100% - 26px) / 2);
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item::before {
    font-size: 5em;
    min-width: 65px;
  }

  section.single-main .single-content .comments-wrap h2 {
    font-size: 1.75em;
    margin-bottom: 24px;
  }

  section.single-main .single-content .comments-wrap .comments-add .comments-user {
    margin-bottom: 8px;
  }

  section.single-main .single-content .comments-wrap .comments-add .comments-user .image-wrap {
    width: 52px;
    height: 52px;
  }

  section.single-main .single-content .comments-wrap form .form-item input,
  section.single-main .single-content .comments-wrap form .form-item textarea {
    padding: 14px 20px;
    border-radius: 16px;
  }

  section.single-main .single-content .comments-wrap form .form-item button {
    padding: 10px 30px;
  }

  section.single-main .single-content .comments-wrap .comments-sorting {
    margin-top: 32px;
    margin-bottom: 24px;
  }

  section.single-main .single-content .comments-wrap .comments-sorting .sorting-btn::before {
    margin-right: 6px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item:not(:first-child) {
    margin-top: 24px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap {
    border-radius: 16px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap {
    width: 52px;
    height: 52px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
    margin-right: 42px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap {
    margin: 0px 0px 0px 32px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap form {
    margin-top: 8px;
  }

  section.fixed-price .price-wrap {
    padding: 8px 32px;
  }

  section.single-more {
    padding: 40px 0px 46px;
  }

  section.single-more .title-wrap h2 {
    font-size: 1.75em;
  }

  section.single-more .title-wrap .more-arrows,
  section.single-more .title-wrap .news-arrows {
    gap: 16px;
  }

  section.single-more .title-wrap .more-arrows .slick-arrow,
  section.single-more .title-wrap .news-arrows .slick-arrow {
    width: 46px;
    min-width: 46px;
    height: 46px;
  }

  section.single-more .more-slider .exhibitions-item .item-link,
  section.single-more .news-slider .exhibitions-item .item-link {
    padding: 12px;
    border-radius: 16px;
    gap: 28px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .thumbnail .img-wrap img,
  section.single-more .news-slider .exhibitions-item .item-link .thumbnail .img-wrap img {
    border-radius: 6px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.uppertitle,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.uppertitle {
    margin-bottom: 16px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption p.h2,
  section.single-more .news-slider .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.5em;
    margin-bottom: 16px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.museum-desc,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.museum-desc {
    margin-bottom: 6px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.museum-desc::before,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.museum-desc::before {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.price-desc,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.price-desc {
    margin-bottom: 16px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.price-desc::before,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.price-desc::before {
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin-right: 8px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption div.tags span,
  section.single-more .news-slider .exhibitions-item .item-link .caption div.tags span {
    border-radius: 16px;
    padding: 5px 12px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .event-button,
  section.single-more .news-slider .exhibitions-item .item-link .event-button {
    top: 26px;
    right: 26px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .event-button .like-button,
  section.single-more .news-slider .exhibitions-item .item-link .event-button .like-button {
    width: 28px;
    min-width: 28px;
    height: 28px;
  }

  .modal-content .modal-header a.logo {
    height: 28px;
  }

  .modal-content .modal-body button.btn {
    padding: 11px 30px;
  }

  .modal-content .modal-body button.btn.main {
    padding: 10px 30px;
  }
}

@media screen and (max-width: 1199px) {
  section.single-main {
    padding: 28px 0px 38px;
  }

  @media screen and (min-width: 992px) {
    section.single-main .single-thumbnail {
      top: 80px;
    }
  }

  section.single-main .single-thumbnail .img-wrap {
    border-radius: 14px;
  }

  section.single-main .single-thumbnail .img-wrap::after {
    border-radius: 14px;
  }

  section.single-main .single-content .content-item {
    border-radius: 14px;
    padding: 26px;
  }

  section.single-main .single-content .caption-wrap span.uppertitle {
    font-size: 1em;
  }

  section.single-main .single-content .caption-wrap h1 {
    font-size: 2em;
    margin-bottom: 34px;
  }

  section.single-main .single-content .caption-wrap span.end_date-info {
    border-radius: 10px;
    padding: 10px 18px;
    margin-bottom: 26px;
  }

  section.single-main .single-content .caption-wrap .price-wrap .price-desc span:not(.free) {
    font-size: 2em;
  }

  section.single-main .single-content .caption-wrap .price-wrap .price-desc span.free {
    font-size: 1.25em;
  }

  section.single-main .single-content .caption-wrap .stats-list {
    margin-top: 26px;
    padding-top: 26px;
    gap: 22px;
  }

  section.single-main .single-content .caption-wrap .stats-list .list-item {
    width: calc((100% - 44px) / 3);
  }

  section.single-main .single-content .about-wrap .text-wrap .show-more-wrap .show-more-content {
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }

  section.single-main .single-content .about-wrap .group-wrap {
    margin-top: 26px;
    padding-top: 26px;
  }

  section.single-main .single-content .about-wrap .group-wrap h2 {
    font-size: 1.5em;
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list {
    gap: 22px;
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list .list-item {
    width: calc((100% - 44px) / 3);
  }

  section.single-main .single-content .about-wrap .history-wrap {
    margin-top: 26px;
    padding-top: 26px;
  }

  section.single-main .single-content .about-wrap .history-wrap h2 {
    font-size: 1.5em;
  }

  section.single-main .single-content .about-wrap .history-wrap p {
    margin-bottom: 20px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap {
    margin-top: 26px;
    padding-top: 26px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap h2 {
    font-size: 1.5em;
    margin-bottom: 26px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list {
    gap: 22px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item {
    width: calc((100% - 22px) / 2);
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item::before {
    font-size: 4em;
    min-width: 50px;
  }

  section.single-main .single-content .comments-wrap h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  section.single-main .single-content .comments-wrap .comments-add .comments-user {
    margin-bottom: 4px;
  }

  section.single-main .single-content .comments-wrap .comments-add .comments-user .image-wrap {
    width: 42px;
    height: 42px;
  }

  section.single-main .single-content .comments-wrap form .form-item input,
  section.single-main .single-content .comments-wrap form .form-item textarea {
    padding: 12px 18px;
    border-radius: 14px;
  }

  section.single-main .single-content .comments-wrap .comments-sorting {
    margin-top: 26px;
    margin-bottom: 20px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item:not(:first-child) {
    margin-top: 20px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap {
    border-radius: 14px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap {
    width: 42px;
    height: 42px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
    margin-right: 34px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap {
    margin: 0px 0px 0px 26px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap form {
    margin-top: 4px;
  }

  section.fixed-price .price-wrap {
    padding: 8px 26px;
  }

  section.single-more {
    padding: 32px 0px 38px;
  }

  section.single-more .title-wrap h2 {
    font-size: 1.5em;
  }

  section.single-more .title-wrap .more-arrows,
  section.single-more .title-wrap .news-arrows {
    gap: 14px;
  }

  section.single-more .title-wrap .more-arrows .slick-arrow,
  section.single-more .title-wrap .news-arrows .slick-arrow {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  section.single-more .more-slider .exhibitions-item .item-link,
  section.single-more .news-slider .exhibitions-item .item-link {
    gap: 24px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.uppertitle,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.uppertitle {
    margin-bottom: 14px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption p.h2,
  section.single-more .news-slider .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.375em;
    margin-bottom: 14px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.price-desc,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.price-desc {
    margin-bottom: 14px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .event-button .like-button,
  section.single-more .news-slider .exhibitions-item .item-link .event-button .like-button {
    width: 24px;
    min-width: 24px;
    height: 24px;
  }

  .modal-content {
    padding: 34px;
  }

  .modal-content .modal-body span.alert.alert-success {
    padding: 12px;
  }
}

@media screen and (max-width: 991px) {
  section.single-main {
    padding: 28px 0px 30px;
  }

  section.single-main .single-thumbnail {
    margin-bottom: 20px;
  }

  section.single-main .single-thumbnail .img-wrap {
    padding-top: 65%;
    border-radius: 10px;
  }

  section.single-main .single-thumbnail .img-wrap::after {
    border-radius: 10px;
  }

  section.single-main .single-content .content-item {
    border-radius: 12px;
    padding: 20px;
  }

  section.single-main .single-content .caption-wrap h1 {
    font-size: 1.5em;
    margin-bottom: 26px;
  }

  section.single-main .single-content .caption-wrap span.end_date-info {
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 20px;
  }

  section.single-main .single-content .caption-wrap .price-wrap .price-desc span:not(.free) {
    font-size: 1.5em;
  }

  section.single-main .single-content .caption-wrap .price-wrap .price-desc span.free {
    font-size: 1.125em;
  }

  section.single-main .single-content .caption-wrap .price-wrap .buttons-wrap {
    display: flex;
    align-items: center;
    margin-right: 16px;
  }

  section.single-main .single-content .caption-wrap .price-wrap .buttons-wrap a.btn-share {
    padding: 9px 10px 9px 8px;
    border: 2px solid var(--color-white);
    background-color: transparent;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0em;
    line-height: 100%;
    color: transparent;
    overflow: hidden;
    transition: var(--speed-slow);
  }

  section.single-main .single-content .caption-wrap .price-wrap .buttons-wrap a.btn-share::after {
    content: '';
    width: 22px;
    min-width: 22px;
    height: 22px;
    background-image: url(/img/share-icon-sorting.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  @media screen and (min-width: 576px) {
    section.single-main .single-content .caption-wrap .price-wrap .buttons-wrap a.btn-share:hover {
     background-color: var(--bg-gray-40);
    }
  }

  section.single-main .single-content .caption-wrap .stats-list {
    margin-top: 20px;
    padding-top: 20px;
    gap: 16px;
  }

  section.single-main .single-content .caption-wrap .stats-list .list-item {
    width: calc((100% - 32px) / 3);
  }

  section.single-main .single-content .about-wrap .group-wrap {
    margin-top: 20px;
    padding-top: 20px;
  }

  section.single-main .single-content .about-wrap .group-wrap h2 {
    font-size: 1.375em;
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list {
    gap: 16px;
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list .list-item {
    width: calc((100% - 32px) / 3);
  }

  section.single-main .single-content .about-wrap .history-wrap {
    margin-top: 20px;
    padding-top: 20px;
  }

  section.single-main .single-content .about-wrap .history-wrap h2 {
    font-size: 1.375em;
  }

  section.single-main .single-content .about-wrap .history-wrap p {
    margin-bottom: 18px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap {
    margin-top: 20px;
    padding-top: 20px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap h2 {
    font-size: 1.375em;
    margin-bottom: 20px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list {
    gap: 16px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item {
    width: calc((100% - 16px) / 2);
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item::before {
    font-size: 3em;
    min-width: 40px;
  }

  section.single-main .single-content .comments-wrap h2 {
    font-size: 1.375em;
  }

  section.single-main .single-content .comments-wrap h2 {
    font-size: 1.375em;
  }

  section.single-main .single-content .comments-wrap .comments-add .comments-user {
    margin-bottom: 4px;
  }

  section.single-main .single-content .comments-wrap form .form-item input,
  section.single-main .single-content .comments-wrap form .form-item textarea {
    padding: 10px 12px;
    border-radius: 10px;
  }

  section.single-main .single-content .comments-wrap .comments-sorting {
    margin-top: 20px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap {
    border-radius: 12px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
    margin-right: 26px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap {
    margin: 0px 0px 0px 20px;
  }

  section.fixed-price .price-wrap {
    padding: 8px 20px;
  }

  section.single-more {
    padding: 30px 0px;
  }

  section.single-more .title-wrap h2 {
    font-size: 1.375em;
  }

  section.single-more .title-wrap .more-arrows,
  section.single-more .title-wrap .news-arrows {
    gap: 12px;
  }

  section.single-more .more-slider .exhibitions-item .item-link,
  section.single-more .news-slider .exhibitions-item .item-link {
    gap: 20px;
    padding: 10px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.uppertitle,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.uppertitle {
    margin-bottom: 12px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption p.h2,
  section.single-more .news-slider .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.25em;
    margin-bottom: 12px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.museum-desc,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.museum-desc {
    display: none;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.price-desc,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.price-desc {
    margin-bottom: 12px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .event-button,
  section.single-more .news-slider .exhibitions-item .item-link .event-button {
    top: 20px;
    right: 20px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .event-button .like-button,
  section.single-more .news-slider .exhibitions-item .item-link .event-button .like-button {
    width: 22px;
    min-width: 22px;
    height: 22px;
  }

  .modal-content {
    padding: 26px;
  }

  .modal-content .modal-header a.logo {
    height: 24px;
  }

  .modal-content .modal-body span.alert.alert-success {
    padding: 10px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 767px) {
  section.single-main {
    padding: 28px 0px;
  }

  section.single-main .single-thumbnail {
    margin-bottom: 16px;
  }

  section.single-main .single-thumbnail .img-wrap {
    border-radius: 8px;
  }

  section.single-main .single-thumbnail .img-wrap::after {
    border-radius: 8px;
  }

  section.single-main .single-content .content-item {
    border-radius: 10px;
    padding: 16px;
  }

  section.single-main .single-content .caption-wrap h1 {
    margin-bottom: 22px;
  }

  section.single-main .single-content .caption-wrap span.end_date-info {
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 16px;
  }

  section.single-main .single-content .caption-wrap .price-wrap .price-desc span.free {
    font-size: 1em;
  }

  section.single-main .single-content .caption-wrap .price-wrap .btn-wrap {
    margin-right: 10px;
  }

  section.single-main .single-content .caption-wrap .price-wrap .buttons-wrap {
    margin-right: 10px;
  }

  section.single-main .single-content .caption-wrap .stats-list {
    margin-top: 16px;
    padding-top: 16px;
    gap: 12px;
  }

  section.single-main .single-content .caption-wrap .stats-list .list-item {
    width: calc((100% - 12px) / 2);
  }

  section.single-main .single-content .about-wrap .group-wrap h2 {
    font-size: 1.25em;
    margin-bottom: 14px;
  }

  section.single-main .single-content .about-wrap .group-wrap {
    margin-top: 16px;
    padding-top: 16px;
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list {
    gap: 12px;
  }

  section.single-main .single-content .about-wrap .group-wrap  .group-list .list-item {
    width: calc((100% - 12px) / 2);
  }

  section.single-main .single-content .about-wrap .history-wrap {
    margin-top: 16px;
    padding-top: 16px;
  }

  section.single-main .single-content .about-wrap .history-wrap h2 {
    font-size: 1.25em;
  }

  section.single-main .single-content .about-wrap .history-wrap p {
    margin-bottom: 16px;
  }

  section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-list {
    margin: 0px -8px;
  }

  section.single-main .single-content .about-wrap .history-wrap .history-slider .history-item {
    padding: 0px 8px;
  }

  section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-dots {
    padding: 0px;
    margin: 16px auto 0px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 14px;
  }

  section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-dots li {
    display: flex;
    align-items: center;
  }

  section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-dots li button {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: var(--color-gray-10);
    border: none;
    color: transparent;
    font-size: 0em;
    overflow: hidden;
    box-shadow: none;
    outline: none;
    transition: var(--speed-slow);
  }

  section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-dots li.slick-active button {
    background-color: var(--color-main);
  }

  section.single-main .single-content .about-wrap .exhibition-wrap {
    margin-top: 16px;
    padding-top: 16px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap h2 {
    font-size: 1.25em;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list {
    gap: 12px;
    height: auto!important;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item {
    width: 100%;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item::before {
    font-size: 2.5em;
    min-width: 30px;
  }

  section.single-main .single-content .comments-wrap h2 {
    font-size: 1.25em;
  }

  section.single-main .single-content .comments-wrap .comments-add .comments-user {
    margin-bottom: 0px;
  }

  section.single-main .single-content .comments-wrap .comments-add .comments-user .image-wrap {
    margin-right: 12px;
  }

  section.single-main .single-content .comments-wrap form .form-item input,
  section.single-main .single-content .comments-wrap form .form-item textarea {
    padding: 10px;
    border-radius: 8px;
  }

  section.single-main .single-content .comments-wrap .comments-sorting {
    margin-top: 18px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap {
    border-radius: 10px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .user .img-wrap {
    margin-right: 12px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
    margin-right: 20px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap {
    margin: 0px 0px 0px 16px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap form {
    margin-top: 2px;
  }

  section.fixed-price .price-wrap {
    padding: 8px 16px;
  }

  section.single-more {
    padding: 28px 0px;
  }

  section.single-more .title-wrap h2 {
    font-size: 1.25em;
  }

  section.single-more .more-slider .exhibitions-item .item-link,
  section.single-more .news-slider .exhibitions-item .item-link {
    gap: 12px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.uppertitle,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.uppertitle {
    font-size: 0.875em;
    margin-bottom: 8px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption p.h2,
  section.single-more .news-slider .exhibitions-item .item-link .caption p.h2 {
    font-size: 1.125em;
    margin-bottom: 0px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.museum-desc,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.museum-desc {
    display: none;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption span.price-desc,
  section.single-more .news-slider .exhibitions-item .item-link .caption span.price-desc {
    display: none;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption div.tags,
  section.single-more .news-slider .exhibitions-item .item-link .caption div.tags {
    display: none;
  }

  section.single-more .more-slider .exhibitions-item .item-link .event-button,
  section.single-more .news-slider .exhibitions-item .item-link .event-button {
    top: 14px;
    right: 14px;
  }

  section.single-more .more-slider .slick-dots,
  section.single-more .news-slider .slick-dots {
    padding: 0px;
    margin: 16px auto 0px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 14px;
  }

  section.single-more .more-slider .slick-dots li,
  section.single-more .news-slider .slick-dots li {
    display: flex;
    align-items: center;
  }

  section.single-more .more-slider .slick-dots li button,
  section.single-more .news-slider .slick-dots li button {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: var(--color-gray-10);
    border: none;
    color: transparent;
    font-size: 0em;
    overflow: hidden;
    box-shadow: none;
    outline: none;
    transition: var(--speed-slow);
  }

  section.single-more .more-slider .slick-dots li.slick-active button,
  section.single-more .news-slider .slick-dots li.slick-active button {
    background-color: var(--color-main);
  }

  .modal-content {
    max-width: 500px;
    padding: 22px;
  }

  .modal-content .modal-header {
    margin-bottom: 20px;
  }

  .modal-content .modal-body span.alert.alert-success {
    font-size: 0.875em;
  }

  .modal-content .modal-body button.btn {
    font-size: 0.875em;
    padding: 10px 30px;
  }

  .modal-content .modal-body button.btn.main {
    padding: 9px 30px;
  }

  .modal-content .modal-body a.btn {
    font-size: 0.875em;
  }

  .navigation {
    font-size: 0.875em;
    margin-bottom: 16px;
  }

  span.mlh.arrow:before {
    content: "/";
    margin: 0px 6px;
  }
}

@media screen and (max-width: 575px) {
  section.single-main {
    padding: 20px 0px 28px;
    background-color: var(--bg-black-matte);
  }

  section.single-main .single-content {
    overflow: visible;
  }

  section.single-main .single-content .content-item {
    border-radius: 0px;
    padding: 0px;
  }

  section.single-main .single-content .caption-wrap span.uppertitle {
    margin-bottom: 14px;
  }

  section.single-main .single-content .caption-wrap h1 {
    margin-bottom: 18px;
  }

  section.single-main .single-content .caption-wrap span.end_date-info {
    font-size: 0.875em;
    margin-bottom: 14px;
  }

  section.single-main .single-content .caption-wrap .price-wrap {
    flex-wrap: wrap;
  }

  section.single-main .single-content .caption-wrap .price-wrap .btn-wrap a.btn.main span {
    padding: 10px 30px;
  }

  section.single-main .single-thumbnail {
    margin-bottom: 14px;
  }

  section.single-main .single-thumbnail .buttons-wrap {
    margin-top: 14px;
  }

  section.single-main .single-content .caption-wrap .price-wrap .btn-wrap {
    margin: 14px 0px 0px;
    order: 2;
    width: 100%;
  }

  section.single-main .single-content .caption-wrap .stats-list .list-item span {
    font-size: 0.875em;
  }

  section.single-main .single-content .content-item:not(:first-child) {
    padding-top: 16px;
    border-top: 2px solid var(--bg-gray-40);
  }

  section.single-main .single-content .about-wrap .group-wrap h2 {
    margin-bottom: 14px;
  }

  section.single-main .single-content .about-wrap .group-wrap .group-list .list-item .position {
    font-size: 0.875em;
  }

  section.single-main .single-content .about-wrap .group-wrap .group-list .list-item .name {
    font-size: 0.875em;
  }

  section.single-main .single-content .about-wrap .history-wrap h2 {
    margin-bottom: 14px;
  }

  section.single-main .single-content .about-wrap .history-wrap p {
    margin-bottom: 14px;
    font-size: 0.875em;
  }

  section.single-main .single-content .about-wrap .history-wrap .history-slider.slick-slider .slick-list {
    overflow: hidden;
    margin: 0px -16px;
    padding: 0px 8px;
  }

  section.single-main .single-content .about-wrap .history-wrap .history-slider .history-item img {
    max-height: none;
    border-radius: 8px;
  }

  section.single-main .single-content .about-wrap .history-wrap .history-slider:not(:has(.slick-list)) {
    gap: 12px;
  }

  section.single-main .single-content .about-wrap .history-wrap .history-slider:not(:has(.slick-list)) .history-item {
    width: calc((100% - 12px) / 2);
  }

  section.single-main .single-content .about-wrap .history-wrap .history-slider:not(:has(.slick-list)) .history-item a::after {
    border-radius: 8px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap h2 {
    margin-bottom: 14px;
  }

  section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item {
    font-size: 0.875em;
  }

  section.single-main .single-content .comments-wrap h2 {
    margin-bottom: 14px;
  }

  section.single-main .single-content .comments-wrap form .form-item:not(:first-child) {
    margin-top: 14px;
  }

  section.single-main .single-content .comments-wrap .comments-sorting {
    margin-top: 16px;
  }

  section.single-main .single-content .comments-wrap .comments-sorting .sorting-options li a {
    font-size: 0.875em;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap {
    padding: 12px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta {
    flex-wrap: wrap;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
    order: 2;
    margin-top: 12px;
    margin-right: 12px;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .vote {
    margin-left: -10px;
    width: 50%;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .date {
    width: 50%;
    text-align: right;
  }

  section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap form {
    margin-top: 0px;
  }

  section.fixed-price .price-wrap {
    padding: 6px 0px;
  }

  section.fixed-price .price-wrap .price-desc {
    margin-right: auto;
    display: none;
  }

  section.fixed-price .price-wrap .btn-wrap {
    margin-left: 0px;
    width: 100%;
    margin-right: 10px;
  }

  section.single-more .title-wrap {
    margin-bottom: 14px;
  }

  section.single-more .more-slider .exhibitions-item .item-link,
  section.single-more .news-slider .exhibitions-item .item-link {
    padding: 6px;
    border-radius: 12px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .caption p.h2,
  section.single-more .news-slider .exhibitions-item .item-link .caption p.h2 {
    font-size: 1em;
    font-weight: 400;
  }

  section.single-more .more-slider .exhibitions-item .item-link .event-button,
  section.single-more .news-slider .exhibitions-item .item-link .event-button {
    top: 12px;
    right: 12px;
  }

  section.single-more .more-slider .exhibitions-item .item-link .event-button .like-button,
  section.single-more .news-slider .exhibitions-item .item-link .event-button .like-button {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .modal-content {
    padding: 16px;
  }

  .modal-content .modal-header {
    margin-bottom: 16px;
  }

  .modal-content .modal-header a.logo {
    height: 22px;
  }

  .modal-content .modal-body.success::before {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .modal-content .modal-body.success p.h3 {
    font-size: 1.25em;
  }

  .modal-content .modal-body.success p {
    font-size: 0.875em;
    margin-bottom: 10px;
  }

  .modal-content .modal-body button.btn {
    padding: 12px 18px;
  }

  .modal-content .modal-body button.btn.main {
    padding: 9px 18px;
  }

  .modal-content .modal-body a.btn {
    width: 100%;
  }

  .navigation {
    font-size: 0.75em;
    margin-bottom: 14px;
  }
}































section.about-info {
  background-color: var(--bg-black);
  padding: 50px 0px 60px;
}

section.about-info .info-title {
  display: flex;
  flex-direction: column;
}

section.about-info .info-title h1 {
  font-size: 4em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
}

section.about-info .info-title h1 span {
  color: var(--color-main);
}

section.about-info .info-title h1 u {
  color: var(--bg-black);
  text-decoration: none;
  text-shadow: -1px -1px 0 var(--color-main), 1px -1px 0 var(--color-main), -1px 1px 0 var(--color-main), 1px 1px 0 var(--color-main);
}

section.about-info .info-title h2 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 60px;
}

section.about-info .thumbnail {
  display: flex;
  width: 100%;
  height: 100%;
}

section.about-info .thumbnail .img-wrap {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 60%;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

section.about-info .thumbnail .img-wrap img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.about-info .caption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

section.about-info .caption a.btn {
  margin-top: 30px;
  min-width: 300px;
}

section.about-reviews {
  padding: 50px 0px 60px;
  background-color: var(--bg-gray-100);
}

section.about-reviews .reviews-wrap {
  display: flex;
  flex-direction: column;
}

section.about-reviews .reviews-wrap h2 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 60px;
}

section.about-reviews .reviews-wrap .reviews-list {
  display: flex;
  flex-direction: column;
}

section.about-reviews .reviews-wrap .reviews-list .list-item {
  display: flex;
}

section.about-reviews .reviews-wrap .reviews-list .list-item:not(:first-child) {
  margin-top: 32px;
}

section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap {
  background-color: var(--bg-black-matte);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
}

section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .thumbnail {
  display: flex;
  width: 140px;
  margin-top: -100px;
  margin-bottom: 20px;
}

section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .thumbnail .img-wrap {
  display: flex;
  width: 100%;
  padding-top: 100%;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}

section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .thumbnail .img-wrap img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption {
  width: 100%;
  display: flex;
  flex-direction: column;
}

section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption .name {
  font-size: 1.5em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 8px;
}

section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption .position {
  font-size: 1.25em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 20px;
}

section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption p {
  font-size: 1.25em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin: 0px;
}

section.about-reviews .reviews-wrap .reviews-slider {
  position: relative;
  padding-top: 70px;
  margin: 0px -15px;
  padding-bottom: 60px;
}

section.about-reviews .reviews-wrap .reviews-slider.slick-slider .slick-list {
  overflow: visible!important;
}

section.about-reviews .reviews-wrap .reviews-slider .slick-slide {
  padding: 0px 15px;
}

section.about-reviews .reviews-wrap .reviews-slider .slick-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

section.about-reviews .reviews-wrap .reviews-slider .slick-arrow.slick-prev {
  left: -30px;
}

section.about-reviews .reviews-wrap .reviews-slider .slick-arrow.slick-next {
  right: -30px;
}

section.about-reviews .reviews-wrap .reviews-slider .slick-dots {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0px;
  margin: 0px;
  list-style: none;
}

section.about-reviews .reviews-wrap .reviews-slider .slick-dots li {
  display: flex;
  align-items: center;
}

section.about-reviews .reviews-wrap .reviews-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  overflow: hidden;
  font-size: 0em;
  line-height: 100%;
  background-color: var(--color-gray-10);
  transition: var(--speed-slow);
  border: none;
  box-shadow: none;
}

section.about-reviews .reviews-wrap .reviews-slider .slick-dots li.slick-active button {
  background-color: var(--color-main);
}

section.about-cards {
  padding: 50px 0px 60px;
  background-color: var(--bg-black);
}

section.about-cards .cards-wrap {
  display: flex;
  flex-direction: column;
}

section.about-cards .cards-wrap h2 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 60px;
}

section.about-cards .cards-wrap .cards-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -15px;
}

section.about-cards .cards-wrap .cards-list .list-item {
  width: calc(100% / 3);
  padding: 0px 15px;
}

section.about-cards .cards-wrap .cards-list .list-item:nth-child(1n + 4) {
  margin-top: 32px;
}

section.about-cards .cards-wrap .cards-list .list-item .item-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--bg-black-matte);
  padding: 40px;
  border: 2px solid var(--color-main);
  border-radius: 20px;
}

section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
  font-size: 2.5em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 24px;
}

section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 span {
  color: var(--color-main);
}

section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 32px;
}

section.about-cards .cards-wrap .cards-list .list-item .item-wrap span.price {
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-main);
  margin-top: auto;
  margin-bottom: 24px;
}

section.about-cards .cards-wrap .cards-list .list-item .item-wrap a.btn {
  width: 100%;
}

section.about-cards .cards-wrap .cards-list .list-item .item-wrap:has(a.btn[href="#"]) span.price {
  color: var(--color-gray-10);
}

section.about-cards .cards-wrap .cards-list .list-item .item-wrap a.btn[href="#"] {
  user-select: none;
  pointer-events: none;
  background-color: var(--color-gray-10);
}

section.about-cards .cards-wrap .cards-list .list-item .item-wrap a.btn[href="#"] span {
  background-color: var(--color-gray-10);
  padding: 10px 20px;
}

@media screen and (max-width: 1399px) {
  section.about-info {
    padding: 45px 0px 55px;
  }

  section.about-info .info-title h1 {
    font-size: 3.5em;
    margin-bottom: 55px;
  }

  section.about-info .info-title h2 {
    font-size: 2em;
    margin-bottom: 55px;
  }

  section.about-info .thumbnail .img-wrap {
    border-radius: 28px;
  }

  section.about-info .caption a.btn {
    margin-top: 28px;
    min-width: 280px;
  }

  section.about-reviews {
    padding: 45px 0px 55px;
  }

  section.about-reviews .reviews-wrap h2 {
    font-size: 2em;
    margin-bottom: 55px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item:not(:first-child) {
    margin-top: 28px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap {
    padding: 28px 18px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .thumbnail {
    width: 130px;
    margin-top: -93px;
    margin-bottom: 18px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption .name {
    font-size: 1.375em;
    margin-bottom: 8px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption .position {
    font-size: 1.125em;
    margin-bottom: 18px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption p {
    font-size: 1.125em;
  }

  section.about-reviews .reviews-wrap .reviews-slider {
    padding-top: 65px;
    padding-bottom: 55px;
  }

  section.about-reviews .reviews-wrap .reviews-slider .slick-arrow.slick-prev {
    left: -28px;
  }

  section.about-reviews .reviews-wrap .reviews-slider .slick-arrow.slick-next {
    right: -28px;
  }

  section.about-cards {
    padding: 45px 0px 55px;
  }

  section.about-cards .cards-wrap h2 {
    font-size: 2em;
    margin-bottom: 55px;
  }

  section.about-cards .cards-wrap .cards-list .list-item:nth-child(1n + 4) {
    margin-top: 28px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap {
    padding: 36px;
    border-radius: 18px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
    font-size: 2.25em;
    margin-bottom: 22px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
    margin-bottom: 30px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap span.price {
    font-size: 2em;
    margin-bottom: 22px;
  }
}

@media screen and (max-width: 1299px) {
  section.about-info {
    padding: 40px 0px 46px;
  }

  section.about-info .info-title h1 {
    font-size: 3.25em;
    margin-bottom: 46px;
  }

  section.about-info .info-title h2 {
    font-size: 1.875em;
    margin-bottom: 46px;
  }

  section.about-info .thumbnail .img-wrap {
    border-radius: 26px;
  }

  section.about-info .caption a.btn {
    margin-top: 26px;
    min-width: 260px;
  }

  section.about-reviews {
    padding: 40px 0px 46px;
  }

  section.about-reviews .reviews-wrap h2 {
    font-size: 1.875em;
    margin-bottom: 46px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item:not(:first-child) {
    margin-top: 26px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap {
    padding: 26px 16px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .thumbnail {
    width: 120px;
    margin-top: -86px;
    margin-bottom: 16px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption .name {
    font-size: 1.25em;
    margin-bottom: 6px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption .position {
    font-size: 1em;
    margin-bottom: 16px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption p {
    font-size: 1em;
  }

  section.about-reviews .reviews-wrap .reviews-slider {
    padding-top: 60px;
    padding-bottom: 46px;
  }

  section.about-reviews .reviews-wrap .reviews-slider .slick-arrow.slick-prev {
    left: -23px;
  }

  section.about-reviews .reviews-wrap .reviews-slider .slick-arrow.slick-next {
    right: -23px;
  }

  section.about-cards {
    padding: 40px 0px 46px;
  }

  section.about-cards .cards-wrap h2 {
    font-size: 1.875em;
    margin-bottom: 46px;
  }

  section.about-cards .cards-wrap .cards-list .list-item:nth-child(1n + 4) {
    margin-top: 26px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap {
    padding: 34px;
    border-radius: 16px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
    font-size: 2em;
    margin-bottom: 20px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
    margin-bottom: 28px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap span.price {
    font-size: 1.875em;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1199px) {
  section.about-info {
    padding: 32px 0px 38px;
  }

  section.about-info .info-title h1 {
    font-size: 2.625em;
    margin-bottom: 38px;
  }

  section.about-info .info-title h2 {
    font-size: 1.625em;
    margin-bottom: 38px;
  }

  section.about-info .thumbnail .img-wrap {
    border-radius: 22px;
  }

  section.about-info .caption a.btn {
    margin-top: 22px;
    min-width: 220px;
  }

  section.about-reviews {
    padding: 32px 0px 38px;
  }

  section.about-reviews .reviews-wrap h2 {
    font-size: 1.625em;
    margin-bottom: 38px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item:not(:first-child) {
    margin-top: 22px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap {
    padding: 22px 16px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .thumbnail {
    width: 100px;
    margin-top: -72px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption .name {
    font-size: 1.125em;
  }

  section.about-reviews .reviews-wrap .reviews-slider {
    padding-top: 50px;
    padding-bottom: 38px;
  }

  section.about-reviews .reviews-wrap .reviews-slider .slick-arrow.slick-prev {
    left: -20px;
  }

  section.about-reviews .reviews-wrap .reviews-slider .slick-arrow.slick-next {
    right: -20px;
  }

  section.about-cards {
    padding: 32px 0px 38px;
  }

  section.about-cards .cards-wrap h2 {
    font-size: 1.625em;
    margin-bottom: 38px;
  }

  section.about-cards .cards-wrap .cards-list .list-item:nth-child(1n + 4) {
    margin-top: 22px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap {
    padding: 28px;
    border-radius: 14px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
    font-size: 1.625em;
    margin-bottom: 18px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
    margin-bottom: 22px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap span.price {
    font-size: 1.5em;
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 991px) {
  section.about-info {
    padding: 30px 0px;
  }

  section.about-info .info-title h1 {
    font-size: 2em;
    margin-bottom: 24px;
  }

  section.about-info .info-title h2 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }

  section.about-info .thumbnail {
    height: auto;
  }

  section.about-info .thumbnail .img-wrap {
    border-radius: 16px;
    margin-top: 24px;
  }

  section.about-info .caption a.btn {
    margin-top: 16px;
    min-width: 160px;
  }

  section.about-reviews {
    padding: 30px 0px;
  }

  section.about-reviews .reviews-wrap h2 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item:not(:first-child) {
    margin-top: 20px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap {
    padding: 20px 16px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .thumbnail {
    width: 76px;
    margin-top: -58px;
  }

  section.about-reviews .reviews-wrap .reviews-slider {
    padding-top: 38px;
    padding-bottom: 30px;
  }

  section.about-cards {
    padding: 30px 0px;
  }

  section.about-cards .cards-wrap h2 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }

  section.about-cards .cards-wrap .cards-list {
    flex-direction: column;
  }

  section.about-cards .cards-wrap .cards-list .list-item {
    width: 100%;
  }

  section.about-cards .cards-wrap .cards-list .list-item:nth-child(1n + 2) {
    margin-top: 20px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap {
    padding: 22px;
    border-radius: 12px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
    font-size: 1.5em;
    margin-bottom: 16px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
    margin-bottom: 20px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap span.price {
    font-size: 1.375em;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  section.about-info {
    padding: 28px 0px;
  }

  section.about-info .info-title h1 {
    font-size: 1.75em;
    margin-bottom: 22px;
  }

  section.about-info .info-title h2 {
    margin-bottom: 22px;
  }

  section.about-info .thumbnail .img-wrap {
    border-radius: 14px;
    margin-top: 22px;
  }

  section.about-reviews {
    padding: 28px 0px;
  }

  section.about-reviews .reviews-wrap h2 {
    margin-bottom: 22px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .thumbnail {
    width: 56px;
    margin-top: -48px;
  }

  section.about-reviews .reviews-wrap .reviews-slider {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  section.about-cards {
    padding: 28px 0px;
  }

  section.about-cards .cards-wrap h2 {
    margin-bottom: 22px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap {
    padding: 16px;
    border-radius: 10px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
    font-size: 1.375em;
    margin-bottom: 14px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
    margin-bottom: 16px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap span.price {
    font-size: 1.25em;
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 575px) {
  section.about-info .info-title h1 {
    font-size: 1.625em;
    margin-bottom: 20px;
  }

  section.about-info .info-title h2 {
    margin-bottom: 20px;
  }

  section.about-info .thumbnail .img-wrap {
    border-radius: 12px;
    margin-top: 20px;
  }

  section.about-reviews .reviews-wrap h2 {
    margin-bottom: 20px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap {
    padding: 16px 12px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .thumbnail {
    width: 50px;
    margin-top: -41px;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption .position {
    font-size: 0.875em;
  }

  section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption p {
    font-size: 0.875em;
  }

  section.about-reviews .reviews-wrap .reviews-slider {
    padding-top: 25px;
    padding-bottom: 28px;
  }

  section.about-cards .cards-wrap h2 {
    margin-bottom: 20px;
  }

  section.about-cards .cards-wrap .cards-list {
    display: block;
  }

  section.about-cards .cards-wrap .cards-list .slick-track {
    display: flex;
  }

  section.about-cards .cards-wrap .cards-list .slick-track .slick-slide {
    height: auto;
  }

  section.about-cards .cards-wrap .cards-list .slick-track .slick-slide > div {
    height: 100%;
  }

  section.about-cards .cards-wrap .cards-list .slick-track .slick-slide > div .list-item {
    height: 100%;
  }

  section.about-cards .cards-wrap .cards-list .slick-track .slick-slide > div .list-item .item-wrap {
    height: 100%;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap {
    padding: 16px;
    border-radius: 8px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
    font-size: 1.25em;
    margin-bottom: 12px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
    font-size: 0.875em;
    margin-bottom: 14px;
  }

  section.about-cards .cards-wrap .cards-list .list-item .item-wrap span.price {
    font-size: 1.125em;
    margin-bottom: 12px;
  }

  section.about-cards .cards-wrap .cards-list.slick-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 16px 0px;
    padding: 0px;
    list-style: none;
    width: calc(100% - 32px);
  }

  section.about-cards .cards-wrap .cards-list.slick-slider .slick-dots li {
    width: 100%;
    display: flex;
    align-items: center;
  }

  section.about-cards .cards-wrap .cards-list.slick-slider .slick-dots li button {
    font-size: 0px;
    background-color: var(--color-gray-10);
    color: transparent;
    border: none;
    width: 100%;
    height: 2px;
    transition: var(--speed-slow);
  }

  section.about-cards .cards-wrap .cards-list.slick-slider .slick-dots li.slick-active button {
    background-color: var(--color-main);
  }
}





































section.museum-main {
  position: relative;
}

section.museum-main .thumbnail {
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
}

section.museum-main .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.museum-main .thumbnail::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #000000A6;
}

section.museum-main .caption {
  position: relative;
  z-index: 2;
  padding: 140px 0px;
}

section.museum-main .caption .main-wrap {
  display: flex;
  flex-direction: column;
}

section.museum-main .caption .main-wrap h1 {
  font-size: 3em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 32px;
}

section.museum-main .caption .main-wrap h1 span {
  color: var(--color-main);
}

section.museum-main .caption .main-wrap h2 {
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 44px;
}

section.museum-main .caption .main-wrap h2 span {
  color: var(--color-main);
}

section.museum-main .caption .main-wrap span.undertitle {
  font-size: 1.5em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 50px;
}

section.museum-main .caption .main-wrap .buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

section.museum-main .caption .main-wrap .buttons-wrap a.btn {
  min-width: 300px;
}

section.museum-main .caption .main-wrap .buttons-wrap a.btn.main span {
  padding: 18px 40px;
}

section.museum-about {
  padding: 40px 0px 20px;
  background-color: var(--bg-black);
}

section.museum-about .content {
  display: flex;
  flex-direction: column;
}

section.museum-about .content p {
  font-size: 1em;
  line-height: 180%;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 16px;
  text-align: center;
}

section.museum-about .content p:last-child {
  margin-bottom: 0px;
}

section.museum-gallery {
  padding: 30px 0px;
  background-color: var(--bg-black);
}

section.museum-gallery .museum-gallery-slider {
  position: relative;
}

@media screen and (min-width: 576px) {
  section.museum-gallery .museum-gallery-slider .slick-slide {
    opacity: 0.4;
    user-select: none;
    pointer-events: none;
    transition: opacity var(--speed-fast);
  }

  section.museum-gallery .museum-gallery-slider .slick-slide.slick-active {
    opacity: 1;
    user-select: auto;
    pointer-events: all;
  }

  section.museum-gallery .museum-gallery-slider:has(.slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned)) .slick-slide.slick-cloned:nth-child(2) {
    opacity: 1;
  }

  section.museum-gallery .museum-gallery-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned {
    opacity: 1;
  }

  section.museum-gallery .museum-gallery-slider .slick-slide .gallery-item .item-wrap .caption {
    opacity: 0;
    transition: var(--speed-fast);
  }

  section.museum-gallery .museum-gallery-slider .slick-slide.slick-active .gallery-item .item-wrap .caption {
    opacity: 1;
  }

  section.museum-gallery .museum-gallery-slider:has(.slick-slide.slick-cloned + .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned)) .slick-slide.slick-cloned:nth-child(2) .gallery-item .item-wrap .caption {
    opacity: 1;
  }

  section.museum-gallery .museum-gallery-slider .slick-slide:not(.slick-current):not(.slick-active):not(.slick-cloned) + .slick-slide.slick-cloned .gallery-item .item-wrap .caption {
    opacity: 1;
  }
}

section.museum-gallery .museum-gallery-slider {
  margin: 0px -15px;
}

section.museum-gallery .museum-gallery-slider .gallery-item {
  padding: 0px 15px;
}

section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 30px;
  overflow: hidden;
}

section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .thumbnail {
  display: flex;
  width: 100%;
}

section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .thumbnail .img-wrap {
  position: relative;
  width: 100%;
  padding-top: 60%;
}

section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .thumbnail .img-wrap img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .thumbnail .img-wrap::after {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #00000066;
  border: 2px solid transparent;
  transition: var(--speed-fast);
  border-radius: 30px;
}

@media screen and (min-width: 576px) {
  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap:hover .thumbnail .img-wrap::after {
    border-color: var(--color-main);
  }
}

section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption {
  position: absolute;
  z-index: 2;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption p.h3 {
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin: 0px;
}

section.museum-gallery .museum-gallery-slider .slick-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

section.museum-gallery .museum-gallery-slider .slick-arrow.slick-prev {
  left: -30px;
}

section.museum-gallery .museum-gallery-slider .slick-arrow.slick-next {
  right: -30px;
}

section.museum-gallery .museum-gallery-slider .slick-dots {
  position: absolute;
  z-index: 2;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0px;
  margin: 0px;
  width: calc(100% - 30px);
}

section.museum-gallery .museum-gallery-slider .slick-dots li {
  width: 100%;
  display: flex;
  align-items: baseline;
}

section.museum-gallery .museum-gallery-slider .slick-dots li button {
  height: 3px;
  width: 100%;
  background-color: var(--bg-gray-40);
  border: none;
  color: transparent;
  font-size: 0em;
  overflow: hidden;
  box-shadow: none;
  outline: none;
  transition: var(--speed-slow);
}

section.museum-gallery .museum-gallery-slider .slick-dots li.slick-active button {
  background-color: var(--color-main);
}

@media screen and (min-width: 576px) {
  section.museum-gallery .museum-gallery-slider .slick-dots li button:hover {
    background-color: var(--color-main);
  }
}

section.museum-benefits {
  padding: 50px 0px 60px;
  background-color: var(--bg-black);
}

section.museum-benefits .benefits-wrap {
  display: flex;
  flex-direction: column;
}

section.museum-benefits .benefits-wrap h2 {
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 20px;
}

section.museum-benefits .benefits-wrap h2 span {
  color: var(--color-main);
}

section.museum-benefits .benefits-wrap span.undertitle {
  font-size: 1.25em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 36px;
  text-align: center;
}

section.museum-benefits .benefits-wrap .benefits-list {
  display: flex;
  flex-direction: column;
  counter-reset: benefits-counter;
  max-width: 600px;
  margin: 0px auto;
  gap: 26px;
}

section.museum-benefits .benefits-wrap .benefits-list .list-item {
  counter-increment: benefits-counter;
  display: flex;
  align-items: center;
}

section.museum-benefits .benefits-wrap .benefits-list .list-item::before {
  content: counter(benefits-counter);
  font-size: 6em;
  line-height: 100%;
  font-weight: 700;
  color: var(--bg-black);
  margin-right: 12px;
  min-width: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: -1px -1px 0 var(--color-main), 1px -1px 0 var(--color-main), -1px 1px 0 var(--color-main), 1px 1px 0 var(--color-main);
}

section.museum-benefits .benefits-wrap .benefits-list .list-item .caption {
  display: flex;
  flex-direction: column;
}

section.museum-benefits .benefits-wrap .benefits-list .list-item .caption p.h2 {
  font-size: 1.5em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 18px;
}

section.museum-benefits .benefits-wrap .benefits-list .list-item .caption p.text {
  font-size: 1em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  margin: 0px;
}

section.museum-benefits .benefits-wrap .buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  gap: 22px;
}

section.museum-benefits .benefits-wrap .buttons-wrap a.btn {
  min-width: 300px;
}

section.museum-benefits .benefits-wrap .buttons-wrap a.btn.main span {
  padding: 18px 40px;
}

section.museum-opportunities {
  position: relative;
}

section.museum-opportunities .thumbnail {
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
}

section.museum-opportunities .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.museum-opportunities .thumbnail::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #0000004D;
}

section.museum-opportunities .caption {
  position: relative;
  z-index: 2;
  padding: 60px 0px;
}

section.museum-opportunities .caption .opportunities-wrap {
  display: flex;
  flex-direction: column;
}

section.museum-opportunities .caption .opportunities-wrap h2 {
  font-size: 3em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 22px;
}

section.museum-opportunities .caption .opportunities-wrap h2 span {
  color: var(--color-main);
}

section.museum-opportunities .caption .opportunities-wrap span.undertitle {
  font-size: 1.25em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 40px;
  text-align: center;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider {
  position: relative;
  counter-reset: opportunities-counter;
  margin: 0px -15px;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-track {
  display: flex;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-slide {
  counter-increment: benefits-counter;
  height: auto;
  transition: var(--speed-slow);
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-slide:not(.slick-current) {
  transform: scale(0.9);
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-slide:not(.slick-current) .opportunities-item .item-wrap {
  opacity: 1;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-slide:not(.slick-current) .opportunities-item .item-wrap::after {
  opacity: 1;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-slide > div {
  height: 100%;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item {
  padding: 0px 5px;
  height: 100%;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap {
  background-color: var(--bg-black-matte);
  padding: 30px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 430px;
  position: relative;
  transition: var(--speed-slow);
  border-radius: 20px;
  overflow: hidden;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap::before {
  content: counter(benefits-counter);
  font-size: 9.25em;
  line-height: 100%;
  font-weight: 700;
  color: var(--bg-black-matte);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: -1px -1px 0 var(--color-main), 1px -1px 0 var(--color-main), -1px 1px 0 var(--color-main), 1px 1px 0 var(--color-main);
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-slide .opportunities-item .item-wrap::after {
  position: absolute;
  content: '';
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  transition: var(--speed-slow);
  opacity: 0;
  user-select: none;
  pointer-events: none;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap p.h2 {
  font-size: 2em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 24px;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap p.text {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin: 0px;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-arrow.slick-prev {
  left: -30px;
}

section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-arrow.slick-next {
  right: -30px;
}

@media screen and (max-width: 1399px) {
  section.museum-main .caption {
    padding: 130px 0px;
  }

  section.museum-main .caption .main-wrap h1 {
    font-size: 2.75em;
    margin-bottom: 30px;
  }

  section.museum-main .caption .main-wrap h2 {
    font-size: 2em;
    margin-bottom: 40px;
  }

  section.museum-main .caption .main-wrap span.undertitle {
    font-size: 1.375em;
    margin-bottom: 46px;
  }

  section.museum-main .caption .main-wrap .buttons-wrap {
    gap: 20px;
  }

  section.museum-main .caption .main-wrap .buttons-wrap a.btn {
    min-width: 280px;
  }

  section.museum-main .caption .main-wrap .buttons-wrap a.btn.main span {
    padding: 17px 30px;
  }

  section.museum-about {
    padding: 36px 0px 18px;
  }

  section.museum-gallery {
    padding: 28px 0px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap {
    border-radius: 28px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .thumbnail .img-wrap::after {
    border-radius: 28px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption {
    padding: 36px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption p.h3 {
    font-size: 2em;
  }

  section.museum-gallery .museum-gallery-slider .slick-arrow.slick-prev {
    left: -28px;
  }

  section.museum-gallery .museum-gallery-slider .slick-arrow.slick-next {
    right: -28px;
  }

  section.museum-gallery .museum-gallery-slider .slick-dots {
    bottom: -28px;
  }

  section.museum-benefits {
    padding: 45px 0px 55px;
  }

  section.museum-benefits .benefits-wrap h2 {
    font-size: 2em;
    margin-bottom: 18px;
  }

  section.museum-benefits .benefits-wrap span.undertitle {
    font-size: 1.125em;
    margin-bottom: 34px;
  }

  section.museum-benefits .benefits-wrap .benefits-list {
    max-width: 550px;
    gap: 24px;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item::before {
    font-size: 5.5em;
    min-width: 88px;
    margin-right: 10px;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item .caption p.h2 {
    font-size: 1.375em;
    margin-bottom: 16px;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap {
    margin-top: 55px;
    gap: 20px;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap a.btn {
    min-width: 280px;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap a.btn.main span {
    padding: 17px 30px;
  }

  section.museum-opportunities .caption {
    padding: 55px 0px;
  }

  section.museum-opportunities .caption .opportunities-wrap h2 {
    font-size: 2.75em;
    margin-bottom: 20px;
  }

  section.museum-opportunities .caption .opportunities-wrap span.undertitle {
    font-size: 1.125em;
    margin-bottom: 38px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap {
    padding: 28px 20px;
    max-width: 400px;
    border-radius: 18px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap::before {
    font-size: 8.5em;
    margin-bottom: 28px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap p.h2 {
    font-size: 1.875em;
    margin-bottom: 22px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-arrow.slick-prev {
    left: -28px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-arrow.slick-next {
    right: -28px;
  }
}

@media screen and (max-width: 1299px) {
  section.museum-main .caption {
    padding: 120px 0px;
  }

  section.museum-main .caption .main-wrap h1 {
    font-size: 2.5em;
    margin-bottom: 28px;
  }

  section.museum-main .caption .main-wrap h2 {
    font-size: 1.875em;
    margin-bottom: 36px;
  }

  section.museum-main .caption .main-wrap span.undertitle {
    font-size: 1.25em;
    margin-bottom: 42px;
  }

  section.museum-main .caption .main-wrap .buttons-wrap {
    gap: 18px;
  }

  section.museum-main .caption .main-wrap .buttons-wrap a.btn {
    min-width: 260px;
  }

  section.museum-main .caption .main-wrap .buttons-wrap a.btn.main span {
    padding: 14px 30px;
  }

  section.museum-about {
    padding: 32px 0px 16px;
  }

  section.museum-gallery {
    padding: 24px 0px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap {
    border-radius: 24px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .thumbnail .img-wrap::after {
    border-radius: 24px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption {
    padding: 34px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption p.h3 {
    font-size: 1.875em;
  }

  section.museum-gallery .museum-gallery-slider .slick-arrow.slick-prev {
    left: -23px;
  }

  section.museum-gallery .museum-gallery-slider .slick-arrow.slick-next {
    right: -23px;
  }

  section.museum-gallery .museum-gallery-slider .slick-dots {
    bottom: -24px;
  }

  section.museum-benefits {
    padding: 40px 0px 46px;
  }

  section.museum-benefits .benefits-wrap h2 {
    font-size: 1.875em;
    margin-bottom: 16px;
  }

  section.museum-benefits .benefits-wrap span.undertitle {
    font-size: 1em;
    margin-bottom: 32px;
  }

  section.museum-benefits .benefits-wrap .benefits-list {
    max-width: 500px;
    gap: 22px;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item::before {
    font-size: 5em;
    min-width: 80px;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item .caption p.h2 {
    font-size: 1.25em;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap {
    margin-top: 46px;
    gap: 18px;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap a.btn {
    min-width: 260px;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap a.btn.main span {
    padding: 14px 30px;
  }

  section.museum-opportunities .caption {
    padding: 46px 0px;
  }

  section.museum-opportunities .caption .opportunities-wrap h2 {
    font-size: 2.5em;
    margin-bottom: 18px;
  }

  section.museum-opportunities .caption .opportunities-wrap span.undertitle {
    font-size: 1em;
    margin-bottom: 34px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap {
    padding: 26px 18px;
    max-width: 370px;
    border-radius: 16px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap::before {
    font-size: 7.75em;
    margin-bottom: 24px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap p.h2 {
    font-size: 1.75em;
    margin-bottom: 20px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-arrow.slick-prev {
    left: -23px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-arrow.slick-next {
    right: -23px;
  }
}

@media screen and (max-width: 1199px) {
  section.museum-main .caption {
    padding: 100px 0px;
  }

  section.museum-main .caption .main-wrap h1 {
    font-size: 2em;
    margin-bottom: 22px;
  }

  section.museum-main .caption .main-wrap h2 {
    font-size: 1.625em;
    margin-bottom: 30px;
  }

  section.museum-main .caption .main-wrap span.undertitle {
    font-size: 1em;
    margin-bottom: 34px;
  }

  section.museum-main .caption .main-wrap .buttons-wrap {
    gap: 16px;
  }

  section.museum-main .caption .main-wrap .buttons-wrap a.btn {
    min-width: 220px;
  }

  section.museum-about {
    padding: 20px 0px 14px;
  }

  section.museum-gallery {
    padding: 20px 0px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap {
    border-radius: 20px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .thumbnail .img-wrap::after {
    border-radius: 20px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption {
    padding: 28px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption p.h3 {
    font-size: 1.625em;
  }

  section.museum-gallery .museum-gallery-slider .slick-arrow.slick-prev {
    left: -20px;
  }

  section.museum-gallery .museum-gallery-slider .slick-arrow.slick-next {
    right: -20px;
  }

  section.museum-gallery .museum-gallery-slider .slick-dots {
    bottom: -20px;
  }

  section.museum-benefits {
    padding: 32px 0px 38px;
  }

  section.museum-benefits .benefits-wrap h2 {
    font-size: 1.625em;
  }

  section.museum-benefits .benefits-wrap span.undertitle {
    margin-bottom: 26px;
  }

  section.museum-benefits .benefits-wrap .benefits-list {
    max-width: 410px;
    gap: 20px;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item::before {
    font-size: 4em;
    min-width: 65px;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item .caption p.h2 {
    font-size: 1.125em;
    margin-bottom: 14px;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap {
    margin-top: 38px;
    gap: 16px;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap a.btn {
    min-width: 220px;
  }

  section.museum-opportunities .caption {
    padding: 38px 0px;
  }

  section.museum-opportunities .caption .opportunities-wrap h2 {
    font-size: 2em;
    margin-bottom: 16px;
  }

  section.museum-opportunities .caption .opportunities-wrap span.undertitle {
    margin-bottom: 30px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap {
    padding: 22px 16px;
    max-width: 300px;
    border-radius: 14px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap::before {
    font-size: 6.25em;
    margin-bottom: 20px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap p.h2 {
    font-size: 1.5em;
    margin-bottom: 18px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-arrow.slick-prev {
    left: -20px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-arrow.slick-next {
    right: -20px;
  }
}

@media screen and (max-width: 991px) {
  section.museum-main .caption {
    padding: 80px 0px;
  }

  section.museum-main .caption .main-wrap h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  section.museum-main .caption .main-wrap h2 {
    font-size: 1.5em;
    margin-bottom: 24px;
  }

  section.museum-main .caption .main-wrap span.undertitle {
    font-size: 1em;
    margin-bottom: 26px;
  }

  section.museum-main .caption .main-wrap .buttons-wrap a.btn {
    min-width: 170px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap {
    border-radius: 16px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .thumbnail .img-wrap::after {
    border-radius: 16px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption {
    padding: 22px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption p.h3 {
    font-size: 1.5em;
  }

  section.museum-benefits {
    padding: 30px 0px;
  }

  section.museum-benefits .benefits-wrap h2 {
    font-size: 1.5em;
  }

  section.museum-benefits .benefits-wrap span.undertitle {
    margin-bottom: 20px;
  }

  section.museum-benefits .benefits-wrap .benefits-list {
    max-width: 500px;
    gap: 18px;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item::before {
    font-size: 3em;
    min-width: 50px;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item .caption p.h2 {
    font-size: 1em;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap {
    margin-top: 30px;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap a.btn {
    min-width: 170px;
  }

  section.museum-opportunities .caption {
    padding: 30px 0px;
  }

  section.museum-opportunities .caption .opportunities-wrap h2 {
    font-size: 1.5em;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-slide:not(.slick-current) {
    transform: scale(0.95);
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap {
    padding: 20px 16px;
    max-width: 300px;
    border-radius: 12px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap::before {
    font-size: 4.75em;
    margin-bottom: 18px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap p.h2 {
    font-size: 1.25em;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  section.museum-main .caption {
    padding: 60px 0px;
  }

  section.museum-main .caption .main-wrap h1 {
    margin-bottom: 18px;
  }

  section.museum-main .caption .main-wrap h2 {
    margin-bottom: 20px;
  }

  section.museum-main .caption .main-wrap span.undertitle {
    margin-bottom: 22px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap {
    border-radius: 14px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .thumbnail .img-wrap::after {
    border-radius: 14px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption {
    padding: 18px;
  }

  section.museum-gallery .museum-gallery-slider .slick-dots li button {
    height: 2px;
  }

  section.museum-benefits {
    padding: 28px 0px;
  }

  section.museum-benefits .benefits-wrap h2 {
    font-size: 1.5em;
  }

  section.museum-benefits .benefits-wrap span.undertitle {
    margin-bottom: 18px;
  }

  section.museum-benefits .benefits-wrap .benefits-list {
    gap: 16px;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item::before {
    font-size: 2.5em;
    min-width: 30px;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item .caption p.h2 {
    margin-bottom: 10px;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap {
    margin-top: 22px;
  }

  section.museum-opportunities .caption {
    padding: 28px 0px;
  }

  section.museum-opportunities .caption .opportunities-wrap h2 {
    font-size: 1.5em;
  }

  section.museum-opportunities .caption .opportunities-wrap span.undertitle {
    margin-bottom: 18px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap {
    padding: 18px 16px;
    border-radius: 10px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap::before {
    font-size: 3.5em;
    margin-bottom: 16px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap p.h2 {
    font-size: 1.125em;
    margin-bottom: 16px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-dots {
    padding: 0px;
    margin: 16px auto 0px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 14px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-dots li {
    display: flex;
    align-items: center;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-dots li button {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: var(--color-gray-10);
    border: none;
    color: transparent;
    font-size: 0em;
    overflow: hidden;
    box-shadow: none;
    outline: none;
    transition: var(--speed-slow);
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-dots li.slick-active button {
    background-color: var(--color-main);
  }
}

@media screen and (max-width: 575px) {
  section.museum-main .caption {
    padding: 30px 0px;
  }

  section.museum-main .caption .main-wrap h1 {
    margin-bottom: 16px;
  }

  section.museum-main .caption .main-wrap h2 {
    margin-bottom: 18px;
  }

  section.museum-main .caption .main-wrap span.undertitle {
    font-size: 0.875em;
    margin-bottom: 18px;
  }

  section.museum-main .caption .main-wrap .buttons-wrap {
    flex-direction: column;
    gap: 14px;
  }

  section.museum-main .caption .main-wrap .buttons-wrap a.btn.main span {
    padding: 10px 30px;
  }

  section.museum-about .content p {
    font-size: 0.875em;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap {
    border-radius: 12px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .thumbnail .img-wrap::after {
    border-radius: 12px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption {
    padding: 16px;
  }

  section.museum-gallery .museum-gallery-slider .gallery-item .item-wrap .caption p.h3 {
    font-size: 1.25em;
  }

  section.museum-benefits .benefits-wrap span.undertitle {
    font-size: 0.875em;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item .caption p.h2 {
    margin-bottom: 6px;
    font-size: 0.875em;
  }

  section.museum-benefits .benefits-wrap .benefits-list .list-item .caption p.text {
    font-size: 0.875em;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap {
    flex-direction: column;
    margin-top: 20px;
  }

  section.museum-benefits .benefits-wrap .buttons-wrap a.btn.main span {
    padding: 10px 30px;
  }

  section.museum-opportunities .caption .opportunities-wrap span.undertitle {
    margin-bottom: 16px;
    font-size: 0.875em;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap {
    max-width: 250px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap p.h2 {
    margin-bottom: 12px;
  }

  section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap p.text {
    font-size: 0.875em;
  }
}































section.profile-page {
  padding: 50px 0px 60px;
  background-color: var(--bg-black);
}

section.profile-page .profile-wrap {
  display: flex;
  flex-direction: column;
}

section.profile-page .profile-wrap .profile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

section.profile-page .profile-wrap h1 {
  font-family: 'e-Ukraine Head', 'e-Ukraine', 'Inter', sans-serif;
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0px;
}

section.profile-page .profile-wrap .tickets-table {
  display: flex;
  flex-direction: column;
}

section.profile-page .profile-wrap .tickets-table .table-wrap {
  display: flex;
  flex-direction: column;
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 30px 0px;
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap:first-child {
  padding-top: 0px;
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap:last-child {
  padding-bottom: 0px;
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap:not(:first-child) {
  border-top: 1px solid var(--color-white);
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2 {
  width: calc((100% - 30px) * (1/4));
  font-size: 1.5em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  margin: 0px;
  display: flex;
  align-items: center;
  word-spacing: 100vw;
  position: sticky;
  top: 104px;
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2::before {
  content: '';
  width: 60px;
  min-width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 18px;
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap.active-wrap h2::before {
  background-image: url(/img/play-icon-main.svg);
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap.liked-wrap h2::before {
background-image: url(/img/liked-icon-main.svg);
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap.viewed-wrap h2::before {
background-image: url(/img/bookmark-icon-main.svg);
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap {
  width: calc((100% - 30px) * (3/4));
  display: flex;
  flex-direction: column;
  align-self: center;
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap .exhibitions-empty {
  display: flex;
  align-items: center;
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap .exhibitions-empty p.h3 {
  font-size: 1.5em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  margin: 0px;
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap .exhibitions-empty p.h3 a {
  color: var(--color-main);
  text-decoration: none;
}

section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap .exhibitions-empty p.h3 a:hover {
  text-decoration: underline;
}

section.profile-page .profile-wrap .tickets-table table {
  margin: 0px;
}

section.profile-page .profile-wrap .tickets-table table thead {
  font-size: 1em;
  line-height: 150%;
  font-weight: 500;
  color: var(--color-white);
  margin: 0px;
  white-space: nowrap;
  background-color: #353535;
}

section.profile-page .profile-wrap .tickets-table table thead tr td {
  padding: 14px 16px;
  border: none;
}

section.profile-page .profile-wrap .tickets-table table tbody {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
}

section.profile-page .profile-wrap .tickets-table table tbody tr {
  border: none;
  border-bottom: 1px solid #787878;
  border-left: 1px solid #787878;
  border-right: 1px solid #787878;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.profile-page .profile-wrap .tickets-table table tbody tr:hover {
    background-color: #474747;
    border-left-color: #474747;
    border-right-color: #474747;
  }
}

section.profile-page .profile-wrap .tickets-table table tbody tr td {
  padding: 14px 16px;
  border: none;
  vertical-align: middle;
}

section.profile-page .profile-wrap .tickets-table table tbody tr td img {
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 100%;
  overflow: hidden;
  object-fit: cover;
  margin-right: 8px;
}


section.profile-page .profile-wrap .tickets-table table tbody tr td a.btn.main {
  background-color: transparent;
  padding: 0px;
  color: var(--color-main);
  border: none;
  display: inline-flex;
}

section.profile-page .profile-wrap .tickets-table table tbody tr td a.btn.main::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-image: url(/img/eye-icon-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 6px;
}

section .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

section .pagination:empty {
  display: none;
}

section .pagination a,
section .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0px;
  width: 48px;
  min-width: 48px;
  height: 48px;
  background-color: transparent;
  border: 1px solid transparent;
  font-size: .875em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  transition: var(--speed-slow);
}

section .pagination a.current,
section .pagination span.current {
  background-color: transparent;
  border-color: transparent;
  border-bottom-color: var(--color-main);
  color: var(--color-white);
}

@media screen and (min-width: 576px) {
  section .pagination a:hover {
    background-color: var(--bg-gray-40);
    border-color: var(--bg-gray-40);
    color: var(--color-white);
  }

  section .pagination a.current:hover,
  section .pagination span.current:hover {
    border-bottom-color: var(--color-main);
  }
}

section .pagination a.direction-page,
section .pagination span.direction-page {
  font-size: 0;
  color: transparent;
  border-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  position: relative;
}

section .pagination a.direction-page.prev-page,
section .pagination span.direction-page.prev-page {
  background-image: url(/img/pagination-arrow-left-white.svg)
}

section .pagination a.direction-page.next-page,
section .pagination span.direction-page.next-page {
  background-image: url(/img/pagination-arrow-right-white.svg)
}

section .pagination a.direction-page.disabled,
section .pagination span.direction-page.disabled {
  opacity: 0.6;
  user-select: none;
  pointer-events: none;
}

section.profile-page .profile-wrap .tickets-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-gray-40);
  padding: 90px;
  border-radius: 30px;
}

section.profile-page .profile-wrap .tickets-empty span.tickets-icon {
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
  color: transparent;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  border: 1px solid var(--color-main);
  background-color: var(--bg-gray-40);
  background-image: url(/img/ticket-icon-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 62.5% 62.5%;
  margin-bottom: 24px;
}

section.profile-page .profile-wrap .tickets-empty h2 {
  font-size: 2em;
  line-height: 100%;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 12px;
}

section.profile-page .profile-wrap .tickets-empty p {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  max-width: 500px;
  text-align: center;
  margin-bottom: 24px;
}

section.profile-page .profile-wrap .tickets-empty a.btn {
  min-width: 340px;
}

section.profile-page .profile-wrap .profile-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 104px;
}

section.profile-page .profile-wrap .profile-tabs .tabs-item {
  display: flex;
  align-items: center;
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: none;
  border-left: 1px solid transparent;
  background-color: var(--bg-black-matte);
  color: var(--color-gray-10);
  text-decoration: none;
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  width: 100%;
  transition: var(--speed-slow);
  border-radius: 10px;
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a::before {
  content: '';
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-right: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media screen and (min-width: 576px) {
  section.profile-page .profile-wrap .profile-tabs .tabs-item a:hover {
    background-color: var(--bg-gray-70);
  }
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a.personal::before {
  background-image: url(/img/personal-icon-grey.svg);
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a.password::before {
  background-image: url(/img/password-icon-grey.svg);
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a.general::before {
  background-image: url(/img/general-icon-grey.svg);
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a.exhibitions::before {
  background-image: url(/img/exhibitions-icon-grey.svg);
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a.seen::before {
  background-image: url(/img/eye-icon-grey.svg);
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a.active {
  color: var(--color-main);
  border-color: var(--color-main);
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a.personal.active::before {
  background-image: url(/img/personal-icon-green.svg);
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a.password.active::before {
  background-image: url(/img/password-icon-green.svg);
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a.general.active::before {
  background-image: url(/img/general-icon-green.svg);
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a.exhibitions.active::before {
  background-image: url(/img/exhibitions-icon-green.svg);
}

section.profile-page .profile-wrap .profile-tabs .tabs-item a.seen.active::before {
  background-image: url(/img/eye-icon-green.svg);
}

section.profile-page .profile-wrap .settings-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section.profile-page .profile-wrap .settings-wrap .settings-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: var(--bg-black-matte);
  padding: 32px;
  border-radius: 10px;
}

section.profile-page .profile-wrap .settings-wrap .settings-item h2 {
  width: 100%;
  font-size: 1.25em;
  line-height: 150%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 24px;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  position: relative;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item:last-child {
  margin: 0px;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item.half-item {
  width: calc(50% - 12px);
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item label {
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 8px;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .pass-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item input {
  width: 100%;
  outline: none;
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  padding: 14px;
  background-color: var(--bg-gray-70);
  border-radius: 10px;
  border: 1px solid var(--color-gray-10);
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item span.hide-password {
  position: absolute;
  width: 24px;
  min-width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  background-image: url(/img/hide-password-icon-open.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: transparent;
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
  cursor: pointer;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item span.hide-password.close {
  background-image: url(/img/hide-password-icon-close.svg);
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .error-text {
  margin-top: 8px;
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item:nth-last-child(2) {
  margin: 0px;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item.half-item:nth-last-child(2) + .form-item:not(.half-item) {
  margin-top: 24px;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .avatar-wrap {
  display: flex;
  align-items: center;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .avatar-wrap .avatar-image {
  width: 48px;
  min-width: 48px;
  height: 48px;
  margin-right: 12px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid var(--color-main);
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .avatar-wrap .avatar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .avatar-wrap .input-image-wrap {
  display: flex;
  align-items: center;
  position: relative;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .avatar-wrap .input-image-wrap label {
  display: flex;
  align-items: center;
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-main);
  margin: 0px;
  cursor: pointer;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .avatar-wrap .input-image-wrap label::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 6px;
  background-image: url(/img/repeat-icon-green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .avatar-wrap .input-image-wrap input {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  cursor: pointer;
  padding: 0px;
}

form .select2-container {
  width: 100%!important;
}

.select2-container .select2-selection {
  height: auto;
  border-radius: 10px;
  padding: 14px;
  background-color: var(--bg-gray-70);
  border: none;
  border: 1px solid var(--color-gray-10);
}

.select2-container .select2-selection .select2-selection__rendered {
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  padding: 0px;
}

.select2-container .select2-selection .select2-selection__arrow {
  width: 24px;
  min-width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  background-image: url(/img/select-arrow-down-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.select2-container .select2-selection .select2-selection__arrow b {
  display: none;
}

.select2-container .select2-dropdown {
  background-color: var(--bg-gray-70);
  border: 1px solid var(--color-gray-10);
  border-top: none;
  z-index: 90;
  border-radius: 0px 0px 10px 10px;
  overflow: hidden;
}

.select2-container .select2-dropdown.select2-dropdown--above {
  border-radius: 10px 10px 0px 0px;
  border-top: 1px solid var(--color-gray-10);
  border-bottom: none;
}

.select2-container .select2-dropdown .select2-search {
  display: none;
}

.select2-container .select2-dropdown .select2-search input {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  background-color: var(--bg-gray-70);
  outline: none;
  border: 1px solid var(--color-gray-10);
  color: var(--color-white);
}

.select2-container .select2-dropdown .select2-results {
  display: flex;
  flex-direction: column;
}

.select2-container .select2-dropdown .select2-results .select2-results__options {
  display: flex;
  flex-direction: column;
}

.select2-container .select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar,
.select2-container .select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar-thumb,
.select2-container .select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar-track {
  display: none;
  width: 0px;
}

.select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option {
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  padding: 12px 14px;
}

.select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option[aria-selected=true],
.select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted {
  background-color: var(--bg-gray-40);
}

.alert {
  padding: 16px;
  font-size: 1em;
  line-height: 120%;
  font-weight: 500;
  margin-bottom: 20px;
}

.alert ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0px;
  list-style: none;
}

@media screen and (max-width: 1399px) {
  section.profile-page {
    padding: 45px 0px 55px;
  }

  section.profile-page .profile-wrap .profile-top {
    margin-bottom: 26px;
  }

  section.profile-page .profile-wrap h1 {
    font-size: 2em;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap {
    gap: 28px;
    padding: 28px 0px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2 {
    width: calc((100% - 28px) * (1/4));
    font-size: 1.375em;
    top: 96px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2::before {
    width: 56px;
    min-width: 56px;
    height: 56px;
    margin-right: 16px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap {
    width: calc((100% - 28px) * (3/4));
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap .exhibitions-empty p.h3 {
    font-size: 1.375em;
  }

  section.profile-page .profile-wrap .tickets-table table thead tr td {
    padding: 12px 14px;
  }

  section.profile-page .profile-wrap .tickets-table table tbody tr td {
    padding: 12px 14px;
  }

  section .pagination a,
  section .pagination span {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  section.profile-page .profile-wrap .tickets-empty {
    padding: 70px;
    border-radius: 28px;
  }

  section.profile-page .profile-wrap .tickets-empty span.tickets-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  section.profile-page .profile-wrap .tickets-empty h2 {
    font-size: 1.5em;
  }

  section.profile-page .profile-wrap .tickets-empty p {
    margin-bottom: 20px;
  }

  section.profile-page .profile-wrap .profile-tabs {
    top: 96px;
  }

  section.profile-page .profile-wrap .profile-tabs .tabs-item a {
    padding: 12px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item {
    padding: 25px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item h2 {
    margin-bottom: 20px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item {
    margin-bottom: 20px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item.half-item {
    width: calc(50% - 10px);
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item input {
    padding: 12px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item.half-item:nth-last-child(2) + .form-item:not(.half-item) {
    margin-top: 20px;
  }

  .select2-container .select2-selection {
    padding: 10px 12px;
  }

  .select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option {
    padding: 12px;
  }
}

@media screen and (max-width: 1299px) {
  section.profile-page {
    padding: 40px 0px 46px;
  }

  section.profile-page .profile-wrap .profile-top {
    margin-bottom: 24px;
  }

  section.profile-page .profile-wrap h1 {
    font-size: 1.875em;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap {
    gap: 26px;
    padding: 26px 0px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2 {
    width: calc((100% - 26px) * (1/4));
    font-size: 1.25em;
    top: 88px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2::before {
    width: 52px;
    min-width: 52px;
    height: 52px;
    margin-right: 14px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap {
    width: calc((100% - 26px) * (3/4));
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap .exhibitions-empty p.h3 {
    font-size: 1.25em;
  }

  section.profile-page .profile-wrap .tickets-empty {
    border-radius: 26px;
  }

  section.profile-page .profile-wrap .profile-tabs {
    top: 88px;
  }
}

@media screen and (max-width: 1199px) {
  section.profile-page {
    padding: 32px 0px 38px;
  }

  section.profile-page .profile-wrap .profile-top {
    margin-bottom: 22px;
  }

  section.profile-page .profile-wrap h1 {
    font-size: 1.625em;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap {
    gap: 22px;
    padding: 22px 0px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2 {
    width: calc((100% - 22px) * (1/4));
    font-size: 1.125em;
    top: 80px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2::before {
    width: 42px;
    min-width: 42px;
    height: 42px;
    margin-right: 12px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap {
    width: calc((100% - 22px) * (3/4));
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap .exhibitions-empty p.h3 {
    font-size: 1.125em;
  }

  section.profile-page .profile-wrap .tickets-table table thead tr td {
    padding: 10px 12px;
  }

  section.profile-page .profile-wrap .tickets-table table tbody tr td {
    padding: 10px 12px;
  }

  section.profile-page .profile-wrap .tickets-table table tbody tr td img {
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 6px;
  }

  section.profile-page .profile-wrap .tickets-table table tbody tr td a.btn.main::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 4px;
  }

  section .pagination a,
  section .pagination span {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  section.profile-page .profile-wrap .tickets-empty {
    padding: 50px;
    border-radius: 22px;
  }

  section.profile-page .profile-wrap .tickets-empty span.tickets-icon {
    width: 56px;
    height: 56px;
  }

  section.profile-page .profile-wrap .tickets-empty h2 {
    font-size: 1.25em;
  }

  section.profile-page .profile-wrap .tickets-empty a.btn {
    min-width: 300px;
  }

  section.profile-page .profile-wrap .profile-tabs {
    top: 80px;
  }

  section.profile-page .profile-wrap .profile-tabs .tabs-item a {
    border-radius: 8px;
  }

  section.profile-page .profile-wrap .settings-wrap {
    gap: 18px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item {
    padding: 20px;
    border-radius: 8px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item h2 {
    font-size: 1.125em;
    margin-bottom: 16px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item input {
    padding: 9px 12px;
  }
}

@media screen and (max-width: 991px) {
  section.profile-page {
    padding: 30px 0px;
  }

  section.profile-page .profile-wrap .profile-top {
    margin-bottom: 20px;
  }

  section.profile-page .profile-wrap h1 {
    font-size: 1.5em;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap {
    margin: 0px -50px;
    padding: 0px 50px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap::-webkit-scrollbar {
    width: 0px;
    display: none;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap::-webkit-scrollbar-track {
    width: 0px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap::-webkit-scrollbar-thumb {
    width: 0px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2 {
    width: 100%;
    top: auto;
    word-spacing: normal;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2::before {
    width: 34px;
    min-width: 34px;
    height: 34px;
    margin-right: 10px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap {
    width: 100%;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap .exhibitions-empty p.h3 {
    font-size: 1em;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap table {
    min-width: 800px;
  }

  section.profile-page .profile-wrap .tickets-table table thead tr td {
    padding: 8px 10px;
  }

  section.profile-page .profile-wrap .tickets-table table tbody tr td {
    padding: 8px 10px;
  }

  section .pagination a,
  section .pagination span {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }

  section.profile-page .profile-wrap .tickets-empty {
    padding: 40px;
    border-radius: 18px;
  }

  section.profile-page .profile-wrap .tickets-empty a.btn {
    min-width: 260px;
  }

  section.profile-page .profile-wrap .tickets-empty span.tickets-icon {
    width: 50px;
    height: 50px;
  }

  section.profile-page .profile-wrap .profile-tabs {
    position: relative;
    top: auto;
  }

  section.profile-page .profile-wrap .profile-tabs {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  section.profile-page {
    padding: 28px 0px;
  }

  section.profile-page .profile-wrap .profile-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap {
    margin: 0px -35px;
    padding: 0px 35px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap {
    gap: 18px;
    padding: 18px 0px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2::before {
    width: 26px;
    min-width: 26px;
    height: 26px;
    margin-right: 8px;
  }

  section.profile-page .profile-wrap .tickets-table table thead tr td {
    padding: 6px 8px;
  }

  section.profile-page .profile-wrap .tickets-table table tbody tr td {
    padding: 6px 8px;
  }

  section.profile-page .profile-wrap .tickets-empty {
    padding: 25px;
    border-radius: 16px;
    border-width: 1px;
  }

  section.profile-page .profile-wrap .tickets-empty span.tickets-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  section.profile-page .profile-wrap .tickets-empty p {
    margin-bottom: 16px;
  }

  section.profile-page .profile-wrap .tickets-empty a.btn {
    min-width: 230px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item {
    padding: 15px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item input {
    font-size: 0.875em;
    line-height: 100%;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .avatar-wrap .input-image-wrap label {
    font-size: 0.875em;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .avatar-wrap .input-image-wrap label::before {
    width: 16px;
    min-width: 16px;
    height: 16px;
  }

  .select2-container .select2-selection .select2-selection__rendered {
    font-size: 0.875em;
  }

  .select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option {
    font-size: 0.875em;
  }

  .alert {
    padding: 14px;
    font-size: 0.875em;
    margin-bottom: 16px;
  }

  .alert ul {
    gap: 12px;
  }
}

@media screen and (max-width: 575px) {
  section.profile-page .profile-wrap h1 {
    font-size: 1.25em;
  }

  section.profile-page .profile-wrap .profile-top {
    margin-bottom: 16px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap {
    margin: 0px -20px;
    padding: 0px 20px;
  }

  section.profile-page .profile-wrap .tickets-table .table-wrap table {
    min-width: 600px;
  }

  section.profile-page .profile-wrap .tickets-table table thead {
    font-size: 0.875em;
  }

  section.profile-page .profile-wrap .tickets-table table tbody {
    font-size: 0.875em;
  }

  section .pagination {
    margin-top: 16px;
  }

  section .pagination a,
  section .pagination span {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  section.profile-page .profile-wrap .tickets-empty {
    padding: 15px;
    border-radius: 12px;
  }

  section.profile-page .profile-wrap .tickets-empty span.tickets-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  section.profile-page .profile-wrap .tickets-empty h2 {
    font-size: 1.125em;
  }

  section.profile-page .profile-wrap .profile-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  section.profile-page .profile-wrap .profile-tabs {
    margin-bottom: 16px;
  }

  section.profile-page .profile-wrap .profile-tabs .tabs-item a {
    padding: 10px;
    font-size: 0.875em;
  }

  section.profile-page .profile-wrap .profile-tabs .tabs-item a::before {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-right: 6px;
  }

  section.profile-page .profile-wrap .settings-wrap {
    gap: 16px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item h2 {
    margin-bottom: 12px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item {
    margin-bottom: 12px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item.half-item {
    width: 100%;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item input {
    padding: 10px;
    border-radius: 8px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item span.hide-password {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item button {
    padding: 10px 20px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item:nth-last-child(2) {
    margin-bottom: 12px;
  }

  section.profile-page .profile-wrap .settings-wrap .settings-item .form-item.half-item:nth-last-child(2) + .form-item:not(.half-item) {
    margin-top: 0px;
  }

  .select2-container .select2-selection {
    padding: 8px 10px;
    border-radius: 8px;
  }

  .select2-container .select2-dropdown {
    border-radius: 0px 0px 8px 8px;
  }

  .select2-container .select2-dropdown.select2-dropdown--above {
    border-radius: 8px 8px 0px 0px;
  }

  .select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option {
    padding: 8px 10px;
  }

  section.profile-page .profile-wrap .profile-top a.btn.main {
    font-size: 0.875em;
    position: fixed;
    z-index: 5;
    bottom: 10px;
    left: 16px;
    width: calc(100% - 32px);
  }

  section.profile-page .profile-wrap .profile-top a.btn.main span {
    padding: 8px 20px;
  }
}

































section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-three-column .exhibitions-item.post-single {
  width: calc(100% / 3);
}

section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-three-column .exhibitions-item.post-single:nth-child(1n + 3) {
  margin-top: 0px;
}

section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-three-column .exhibitions-item.post-single:nth-child(1n + 4) {
  margin-top: 30px;
}

section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-four-column .exhibitions-item.post-single {
  width: calc(100% / 4);
}

section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-four-column .exhibitions-item.post-single:nth-child(1n + 3) {
  margin-top: 0px;
}

section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-four-column .exhibitions-item.post-single:nth-child(1n + 5) {
  margin-top: 30px;
}

section.search-catalog .exhibitions-wrap .exhibitions-item.post-single .item-link .caption,
section.profile-page .exhibitions-wrap .exhibitions-item.post-single .item-link .caption {
  flex: 1;
}

section.search-catalog .exhibitions-wrap .exhibitions-item.post-single .item-link .caption span.date,
section.profile-page .exhibitions-wrap .exhibitions-item.post-single .item-link .caption span.date {
  font-size: 1em;
  color: var(--color-white);
  margin-top: auto;
  opacity: 0.8;
}

section.search-catalog .exhibitions-wrap .exhibitions-item.post-single .item-link .caption p.h2,
section.profile-page .exhibitions-wrap .exhibitions-item.post-single .item-link .caption p.h2 {
  margin: 0px;
  font-size: 1.5em;
  line-height: 120%;
  margin-bottom: 12px;
}

section.search-catalog.single-page-post .catalog-header {
  flex-direction: column;
  align-items: flex-start;
}

section.search-catalog.single-page-post .catalog-header h1 {
  margin-bottom: 20px;
  font-size: 2.25em;
}

section.search-catalog.single-page-post .catalog-header .post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

section.search-catalog.single-page-post .catalog-header .post-meta span.date {
  color: var(--color-gray-10);
}

section.search-catalog.single-page-post .catalog-header .post-meta .post-author {
  color: var(--color-gray-10);
}

section.search-catalog.single-page-post .catalog-header .post-meta .post-author a {
  color: var(--color-main);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

section.search-catalog.single-page-post .catalog-header .post-meta .post-author a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

section.search-catalog.single-page-post .catalog-header .thumbnail {
  display: flex;
  width: 100%;
}

section.search-catalog.single-page-post .catalog-header .thumbnail .img-wrap {
  display: flex;
  width: 100%;
}

section.search-catalog.single-page-post .catalog-header .thumbnail .img-wrap img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.page-content > ul > li > h4:has(a[href*="#"]),
.page-content > ul > li > h5:has(a[href*="#"]) {
  font-size: 1.125em;
}

section.single-more .news-slider .exhibitions-item.post-single .item-link .caption span.date {
  font-size: 1em;
  color: var(--color-white);
  margin-top: auto;
  opacity: 0.8;
}

section.single-more .news-slider .exhibitions-item.post-single .item-link .caption p.h2 {
  margin: 0px;
  font-size: 1.5em;
  line-height: 120%;
  margin-bottom: 12px;
}

@media screen and (max-width: 1399px) {
  section.search-catalog .exhibitions-wrap .exhibitions-item.post-single .item-link .caption p.h2,
  section.profile-page .exhibitions-wrap .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1.375em;
  }

  section.search-catalog.single-page-post .catalog-header h1 {
    font-size: 2em;
  }

  section.single-more .news-slider .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1.375em;
  }
}

@media screen and (max-width: 1199px) {
  section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-four-column .exhibitions-item.post-single {
    width: calc(100% / 3);
  }

  section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-four-column .exhibitions-item.post-single:nth-child(1n + 4) {
    margin-top: 30px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item.post-single .item-link .caption p.h2,
  section.profile-page .exhibitions-wrap .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1.25em;
  }

  section.search-catalog.single-page-post .catalog-header h1 {
    font-size: 1.625em;
  }

  section.single-more .news-slider .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1.25em;
  }
}

@media screen and (max-width: 991px) {
  section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-four-column .exhibitions-item.post-single:nth-child(1n + 4) {
    margin-top: 16px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item.post-single .item-link .caption p.h2,
  section.profile-page .exhibitions-wrap .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1.125em;
  }

  section.search-catalog.single-page-post .catalog-header h1 {
    font-size: 1.5em;
  }

  section.single-more .news-slider .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1.125em;
  }
}

@media screen and (max-width: 767px) {
  section.search-catalog:has(.exhibitions-item.post-single) .catalog-header h1 {
    margin: 0px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-three-column .exhibitions-item.post-single {
    width: calc(100% / 2);
  }

  section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-three-column .exhibitions-item.post-single:nth-child(1n + 3) {
    margin-top: 16px;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-four-column .exhibitions-item.post-single {
    width: calc(100% / 2);
  }

  section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-four-column .exhibitions-item.post-single:nth-child(1n + 3) {
    margin-top: 16px;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item.post-single .item-link .caption span.date,
  section.profile-page .exhibitions-wrap .exhibitions-item.post-single .item-link .caption span.date {
    font-size: 0.875em;
  }

  section.search-catalog .exhibitions-wrap .exhibitions-item.post-single .item-link .caption p.h2,
  section.profile-page .exhibitions-wrap .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1em;
  }

  section.search-catalog.single-page-post .catalog-header h1 {
    font-size: 1.375em;
  }

  section.single-more .news-slider .exhibitions-item.post-single .item-link .caption span.date {
    font-size: 0.875em;
  }

  section.single-more .news-slider .exhibitions-item.post-single .item-link .caption p.h2 {
    font-size: 1em;
  }
}

@media screen and (max-width: 575px) {
  /* section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-three-column .exhibitions-item.post-single {
    width: 100%;
  } */

  section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-three-column .exhibitions-item.post-single:nth-child(1n + 3) {
    margin-top: 10px;
  }

  /* section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-four-column .exhibitions-item.post-single {
    width: 100%;
  } */

  section.search-catalog .exhibitions-wrap.sorting-grid.exhibition-four-column .exhibitions-item.post-single:nth-child(1n + 3) {
    margin-top: 10px;
  }

  /* section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item.post-single .item-link,
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item.post-single .item-link {
    flex-direction: row;
  } */

  /* section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item.post-single .item-link .thumbnail,
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item.post-single .item-link .thumbnail {
    width: 30%;
  }

  section.search-catalog .exhibitions-wrap.sorting-grid .exhibitions-item.post-single .item-link .caption,
  section.profile-page .exhibitions-wrap.sorting-grid .exhibitions-item.post-single .item-link .caption {
    width: calc(100% - 30%);
  } */

  section.search-catalog.single-page-post .catalog-header h1 {
    margin-bottom: 12px;
    font-size: 1.375em;
  }

  section.search-catalog.single-page-post .catalog-header span.date {
    margin-bottom: 12px;
    font-size: 0.875em;
  }

  .page-content > ul > li > h4:has(a[href*="#"]),
  .page-content > ul > li > h5:has(a[href*="#"]) {
    font-size: 1em;
  }
}
































section.search-catalog.contact-main .catalog-header {
  justify-content: center;
}

section.contact-main .contact-wrapper {
  display: flex;
  gap: 30px
}

section.contact-main .contact-wrapper .contact-main-information {
  width: calc((100% - 30px) * (7/12));
}

section.contact-main .contact-wrapper .contact-main-information h2 {
  font-size: 2em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
}

section.contact-main .contact-wrapper .contact-main-information p {
  font-size: 1.5em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 16px;
}

section.contact-main .contact-wrapper .contact-main-information p a {
  text-decoration: underline;
  color: var(--color-white);
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.contact-main .contact-wrapper .contact-main-information p a:hover {
    color: var(--color-main);
  }
}

section.contact-main .contact-wrapper .contact-main-information *:last-child {
  margin-bottom: 0px;
}

section.contact-main .contact-wrapper .contact-main-form {
  width: calc((100% - 30px) * (5/12));
}

section.contact-main .contact-wrapper:not(:has(.contact-main-information)) .contact-main-form {
  width: 100%;
}

section.contact-main .contact-wrapper .contact-main-form h2 {
  font-size: 1.75em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
}

section.contact-main .contact-wrapper .contact-main-form h2 a {
  color: var(--color-white);
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.contact-main .contact-wrapper .contact-main-form h2 a:hover {
    color: var(--color-main);
  }
}

section.contact-main .contact-wrapper .contact-main-form form {
  display: flex;
  flex-direction: column;
}

section.contact-main .contact-wrapper .contact-main-form form .form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  position: relative;
}

section.contact-main .contact-wrapper .contact-main-form form .form-item:last-child {
  margin-bottom: 0px;
}

section.contact-main .contact-wrapper .contact-main-form form .form-item input {
  width: 100%;
  outline: none;
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  padding: 14px;
  background-color: var(--bg-gray-70);
  border-radius: 10px;
  border: 1px solid var(--color-gray-10);
  box-shadow: none;
}

section.contact-main .contact-wrapper .contact-main-form form .form-item textarea {
  width: 100%;
  outline: none;
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  padding: 14px;
  background-color: var(--bg-gray-70);
  border-radius: 10px;
  border: 1px solid var(--color-gray-10);
  resize: none;
  box-shadow: none;
}

section.contact-main .contact-wrapper .contact-main-form form .form-item button.btn.main {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid transparent;
  background-color: var(--color-main);
  color: var(--color-black);
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 100px;
  text-align: center;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  section.contact-main .contact-wrapper .contact-main-form form .form-item button.btn.main:hover {
    /* background-color: transparent;
    color: var(--color-main); */
    border-color: #8DBD29;
  }
}

@media screen and (max-width: 1399px) {
  section.contact-main .contact-wrapper .contact-main-information h2 {
    font-size: 1.875em;
  }

  section.contact-main .contact-wrapper .contact-main-information p {
    font-size: 1.375em;
  }

  section.contact-main .contact-wrapper .contact-main-form h2 {
    font-size: 1.625em;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item {
    margin-bottom: 20px;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item input {
    padding: 12px;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item textarea {
    padding: 12px;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item button.btn.main {
    padding: 13px 30px;
  }
}

@media screen and (max-width: 1299px) {
  section.contact-main .contact-wrapper .contact-main-information h2 {
    font-size: 1.75em;
  }

  section.contact-main .contact-wrapper .contact-main-information p {
    font-size: 1.25em;
  }

  section.contact-main .contact-wrapper .contact-main-form h2 {
    font-size: 1.5em;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item button.btn.main {
    padding: 10px 30px;
  }
}

@media screen and (max-width: 1199px) {
  section.contact-main .contact-wrapper .contact-main-information {
    width: calc((100% - 30px) * (6 / 12));
  }

  section.contact-main .contact-wrapper .contact-main-information h2 {
    font-size: 1.5em;
  }

  section.contact-main .contact-wrapper .contact-main-information p {
    font-size: 1.125em;
  }

  section.contact-main .contact-wrapper .contact-main-form {
    width: calc((100% - 30px) * (6 / 12));
  }

  section.contact-main .contact-wrapper .contact-main-form h2 {
    font-size: 1.375em;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item input {
    padding: 9px 12px;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item textarea {
    padding: 9px 12px;
  }
}

@media screen and (max-width: 992px) {
  section.search-catalog:has(.contact-wrapper) .catalog-header h1 {
    margin-bottom: 0px;
  }

  section.contact-main .contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  section.contact-main .contact-wrapper .contact-main-information {
    width: 100%;
  }

  section.contact-main .contact-wrapper .contact-main-information h2 {
    font-size: 1.375em;
  }

  section.contact-main .contact-wrapper .contact-main-form {
    width: 100%;
  }

  section.contact-main .contact-wrapper .contact-main-form h2 {
    font-size: 1.25em;
  }
}

@media screen and (max-width: 768px) {
  section.contact-main .contact-wrapper .contact-main-information h2 {
    font-size: 1.25em;
    margin-bottom: 14px;
  }

  section.contact-main .contact-wrapper .contact-main-information p {
    font-size: 1em;
    margin-bottom: 12px;
  }

  section.contact-main .contact-wrapper .contact-main-form h2 {
    font-size: 1.125em;
    margin-bottom: 14px;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item {
    margin-bottom: 16px;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item input {
    font-size: 0.875em;
    line-height: 100%;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item textarea {
    font-size: 0.875em;
    line-height: 100%;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item button.btn.main {
    padding: 7px 20px;
  }
}

@media screen and (max-width: 576px) {
  section.contact-main .contact-wrapper .contact-main-form form .form-item {
    margin-bottom: 12px;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item input {
    padding: 10px;
    border-radius: 8px;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item textarea {
    padding: 10px;
    border-radius: 8px;
  }

  section.contact-main .contact-wrapper .contact-main-form form .form-item button.btn.main {
    font-size: 0.875em;
  }
}






























section.error-wrapper {
  padding: 120px 0px;
  background-color: var(--bg-black-matte);
}

section.error-wrapper .error-inside-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section.error-wrapper .error-inside-wrapper > img {
  aspect-ratio: 310/185;
  margin-bottom: 60px;
  max-width: 350px;
  width: 100%;
  height: auto;
}

section.error-wrapper .error-inside-wrapper h1 {
  font-size: 7.5em;
  line-height: 120%;
  font-weight: 700;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 22px;
}

section.error-wrapper .error-inside-wrapper p {
  font-size: 1.25em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 60px;
}

section.error-wrapper .error-inside-wrapper a.btn {
  min-width: 250px;
}

@media screen and (max-width: 1399px) {
  section.error-wrapper {
    padding: 110px 0px;
  }

  section.error-wrapper .error-inside-wrapper > img {
    margin-bottom: 55px;
  }

  section.error-wrapper .error-inside-wrapper h1 {
    font-size: 7em;
    margin-bottom: 20px;
  }

  section.error-wrapper .error-inside-wrapper p {
    font-size: 1.125px;
    margin-bottom: 55px;
  }

  section.error-wrapper .error-inside-wrapper a.btn {
    min-width: 230px;
  }
}

@media screen and (max-width: 1199px) {
  section.error-wrapper {
    padding: 95px 0px;
  }

  section.error-wrapper .error-inside-wrapper > img {
    margin-bottom: 45px;
  }

  section.error-wrapper .error-inside-wrapper h1 {
    font-size: 6em;
    margin-bottom: 18px;
  }

  section.error-wrapper .error-inside-wrapper p {
    font-size: 1em;
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 991px) {
  section.error-wrapper {
    padding: 75px 0px;
  }

  section.error-wrapper .error-inside-wrapper > img {
    margin-bottom: 35px;
    max-width: 40%;
  }

  section.error-wrapper .error-inside-wrapper h1 {
    font-size: 4.75em;
  }

  section.error-wrapper .error-inside-wrapper p {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  section.error-wrapper {
    padding: 55px 0px;
  }

  section.error-wrapper .error-inside-wrapper > img {
    margin-bottom: 25px;
  }

  section.error-wrapper .error-inside-wrapper h1 {
    font-size: 3.5em;
  }

  section.error-wrapper .error-inside-wrapper p {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 575px) {
  section.error-wrapper {
    padding: 30px 0px;
  }

  section.error-wrapper .error-inside-wrapper > img {
    margin-bottom: 16px;
  }

  section.error-wrapper .error-inside-wrapper h1 {
    font-size: 2em;
  }

  section.error-wrapper .error-inside-wrapper p {
    margin-bottom: 16px;
  }
}































.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background-color: var(--bg-gray-100);
  border: 1px solid var(--color-main);
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  z-index: 9999;
}

.cookie-popup p {
  font-size: 0.875em;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 16px;
}

.cookie-popup p a {
  color: var(--color-main);
  text-decoration: underline;
}

.cookie-popup button {
  background-color: var(--color-main);
  color: var(--color-black);
  border: 4px solid transparent;
  padding: 11px 40px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 500;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  .cookie-popup button:hover {
    /* background-color: transparent;
    color: var(--color-white); */
    border-color: #8DBD29;
  }
}

.cookie-popup.hidden {
  display: none;
}

.login-form .error-message {
  display: block;
  color: red;
  margin-top: -10px;
  font-size: 14px;
  margin-bottom: 10px;
}

@media screen and (max-width: 575px) {
  .login-form .error-message {
    font-size: 12px;
  }
}

.login-popup,
.search-popup {
  position: fixed;
  z-index: 115;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: #1B1B1B80;
  backdrop-filter: blur(12px);
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition: opacity var(--speed-fast);
  padding: 20px;
  overflow-y: auto;
  text-align: center;
}

.login-popup.show,
.search-popup.show {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
}

.login-popup.login-page {
  position: relative;
  opacity: 1;
  user-select: auto;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-black);
  min-height: 100vh;
  padding: 20px 0px;
}

.login-popup > .close-login-btn,
.search-popup > .close-search-btn {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: transparent;
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-popup::before,
.search-popup::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.login-popup .popup-box,
.search-popup .popup-box {
  position: relative;
  z-index: 2;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
}

.login-popup .popup-wrap,
.search-popup .popup-wrap {
  max-width: 600px;
  vertical-align: middle;
  margin: 0 auto;
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-gray-100);
  border: 1px solid var(--color-gray-10);
  border-radius: 16px;
  text-align: left;
}

.login-popup .popup-wrap .popup-top,
.search-popup .popup-wrap .popup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}

.login-popup .popup-wrap .popup-top a.logo,
.search-popup .popup-wrap .popup-top a.logo {
  height: 35px;
  width: 280px;
  margin-right: auto;
}

.login-popup .popup-wrap .popup-top a.logo img,
.search-popup .popup-wrap .popup-top a.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.login-popup .popup-wrap .popup-top a.logo:not(:has(img)),
.search-popup .popup-wrap .popup-top a.logo:not(:has(img)) {
  background-image: url(/img/logo.svg);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: contain;
}

.login-popup .popup-wrap .popup-top a.logo.logo-en:not(:has(img)),
.search-popup .popup-wrap .popup-top a.logo.logo-en:not(:has(img)) {
  background-image: url(/img/logo_en.svg);
}

body.light-mode .login-popup  .popup-wrap .popup-top a.logo:not(:has(img)),
body.light-mode .search-popup  .popup-wrap .popup-top a.logo:not(:has(img)) {
  background-image: url(/img/light-mode/logo-black.svg);
}

body.light-mode .login-popup .popup-wrap .popup-top a.logo.logo-en:not(:has(img)),
body.light-mode .search-popup .popup-wrap .popup-top a.logo.logo-en:not(:has(img)) {
  background-image: url(/img/light-mode/logo_en-black.svg);
}

.login-popup .popup-wrap .popup-top a.close-login-btn,
.search-popup .popup-wrap .popup-top a.close-search-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  text-decoration: none;
  color: transparent;
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
  background-image: url(/img/filter-cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  .login-popup .popup-wrap .popup-top a.close-login-btn:hover,
  .search-popup .popup-wrap .popup-top a.close-search-btn:hover {
    opacity: 0.8;
  }
}

.login-popup .popup-wrap .popup-content,
.search-popup .popup-wrap .popup-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.login-popup .popup-wrap .popup-content p.h2,
.search-popup .popup-wrap .popup-content p.h2 {
  font-size: 1.375em;
  line-height: 100%;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.login-popup .popup-wrap .popup-content p.h2 {
  font-size: 1.25em;
  font-weight: 400;
  margin-bottom: 20px;
}

.login-popup .popup-wrap .popup-content .login-with-btns,
.search-popup .popup-wrap .popup-content .login-with-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.login-popup .popup-wrap .popup-content .login-with-btns a,
.search-popup .popup-wrap .popup-content .login-with-btns a {
    font-size: 1em;
    line-height: 100%;
    font-weight: 500;
    color: var(--color-white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid var(--color-gray-10);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    transition: var(--speed-slow);
    margin-bottom: 10px;
}

.login-popup .popup-wrap .popup-content .login-with-btns a:only-child,
.search-popup .popup-wrap .popup-content .login-with-btns a:only-child {
  width: 100%;
}

.login-popup.login-page .popup-wrap .popup-content .login-with-btns a {
  width: 100%;
}

/* .login-popup.login-page .popup-wrap .popup-content .login-with-btns a:nth-child(1n + 2) {
  margin-top: 16px;
} */

.login-popup .popup-wrap .popup-content .login-with-btns a::before,
.search-popup .popup-wrap .popup-content .login-with-btns a::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-image: url(/img/login-google-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 10px;
}

.login-popup .popup-wrap .popup-content .login-with-btns a.facebook::before,
.login-popup .popup-wrap .popup-content .login-with-btns a[href*="facebook"]::before,
.search-popup .popup-wrap .popup-content .login-with-btns a.facebook::before,
.search-popup .popup-wrap .popup-content .login-with-btns a[href*="facebook"]::before {
  background-image: url(/img/login-facebook-icon.svg);
}

.login-popup .popup-wrap .popup-content .login-with-btns a.mail::before {
  background-image: url(/img/mail-icon-white.svg);
}

body.light-mode .login-popup .popup-wrap .popup-content .login-with-btns a.mail::before {
  background-image: url(/img/mail-icon-black.svg);
}

@media screen and (min-width: 576px) {
  .login-popup .popup-wrap .popup-content .login-with-btns a:hover,
  .search-popup .popup-wrap .popup-content .login-with-btns a:hover {
    background-color: var(--bg-gray-40);
  }
}

.login-popup .popup-wrap .popup-content .login-or-lines,
.search-popup .popup-wrap .popup-content .login-or-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px -16px 16px;
}

.login-popup .popup-wrap .popup-content .login-or-lines::before,
.login-popup .popup-wrap .popup-content .login-or-lines::after,
.search-popup .popup-wrap .popup-content .login-or-lines::before,
.search-popup .popup-wrap .popup-content .login-or-lines::after {
  content: '';
  width: 100%;
  height: 1px;
  margin: 0px 16px;
  background-color: var(--color-gray-10);
}

.login-popup .popup-wrap .popup-content .login-or-lines span,
.search-popup .popup-wrap .popup-content .login-or-lines span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-gray-10);
  white-space: nowrap;
}

.login-popup .popup-wrap .popup-content .login-form,
.search-popup .popup-wrap .popup-content .search-form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.login-popup .popup-wrap .popup-content .login-form .form-item,
.search-popup .popup-wrap .popup-content .search-form .form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  position: relative;
}

.login-popup .popup-wrap .popup-content .login-form .form-item:last-child,
.search-popup .popup-wrap .popup-content .search-form .form-item:last-child {
  margin: 0px;
}

.login-popup .popup-wrap .popup-content .login-form .form-item.half-item,
.search-popup .popup-wrap .popup-content .search-form .form-item.half-item {
  width: calc(50% - 8px);
}

.login-popup .popup-wrap .popup-content .login-form .form-item label,
.search-popup .popup-wrap .popup-content .search-form .form-item label {
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 8px;
}

.login-popup .popup-wrap .popup-content .login-form .form-item .pass-wrap,
.search-popup .popup-wrap .popup-content .search-form .form-item .pass-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.login-popup .popup-wrap .popup-content .login-form .form-item input,
.search-popup .popup-wrap .popup-content .search-form .form-item input {
  width: 100%;
  outline: none;
  font-size: 1em;
  line-height: 150%;
  font-weight: 400;
  color: var(--color-white);
  padding: 14px;
  background-color: var(--bg-gray-40);
  border-radius: 100px;
  border: 1px solid var(--color-gray-10);
}

.login-popup .popup-wrap .popup-content .login-form .form-item span.hide-password,
.search-popup .popup-wrap .popup-content .search-form .form-item span.hide-password {
  position: absolute;
  width: 24px;
  min-width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  background-image: url(/img/hide-password-icon-open.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: transparent;
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
  cursor: pointer;
}

.login-popup .popup-wrap .popup-content .login-form .form-item span.hide-password.close,
.search-popup .popup-wrap .popup-content .search-form .form-item span.hide-password.close {
  background-image: url(/img/hide-password-icon-close.svg);
}

.login-popup .popup-wrap .popup-content .login-form .form-item button,
.search-popup .popup-wrap .popup-content .search-form .form-item button {
  width: 100%;
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-black);
  background-color: var(--color-main);
  border: 4px solid transparent;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 50px;
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  .login-popup .popup-wrap .popup-content .login-form .form-item button:hover,
  .search-popup .popup-wrap .popup-content .search-form .form-item button:hover {
    /* background-color: transparent;
    color: var(--color-white); */
    border-color: #8DBD29;
  }
}

.login-popup .popup-wrap .popup-content .under-form,
.search-popup .popup-wrap .popup-content .under-form {
  font-size: 0.875em;
  line-height: 100%;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.login-popup .popup-wrap .popup-content .under-form span,
.search-popup .popup-wrap .popup-content .under-form span {
  color: var(--color-gray-10);
  margin-right: 8px;
}

.login-popup .popup-wrap .popup-content .under-form a,
.search-popup .popup-wrap .popup-content .under-form a {
  color: var(--color-white);
  text-decoration: none;
}

@media screen and (min-width: 576px) {
  .login-popup .popup-wrap .popup-content .under-form a:hover,
  .search-popup .popup-wrap .popup-content .under-form a:hover {
    text-decoration: underline;
  }
}

.agree_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 38px;
  font-size: 0.875em;
  line-height: 120%;
  font-weight: 400;
  color: var(--color-white);
  min-height: 24px;
  cursor: pointer;
  user-select: none;
  width: 100%;
  margin-bottom: 16px;
}

label.agree_link input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.agree_link span.checkmark {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-white);
  border-radius: 2px;
  transition: var(--speed-slow);
  background-color: transparent;
}

.agree_link span.checkmark:after {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  content: '';
  background-color: transparent;
  transition: var(--speed-slow);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 140% 140%;
}

@media screen and (min-width: 576px) {
  .agree_link:hover span.checkmark:after {
    background-color: var(--bg-gray-40);
  }
}

.agree_link input:checked ~ .checkmark {
  border-color: var(--color-main);
}

.agree_link input:checked ~ .checkmark::after {
  background-color: var(--color-main);
  background-image: url(/img/filter-check-black.svg);
}

@media screen and (min-width: 576px) {
  .agree_link:hover input:checked ~ .checkmark::after {
    background-color: var(--color-main);
  }
}

label.agree_link p {
  font-size: 1em;
  color: var(--color-gray-0);
  margin: 0px;
}

label.agree_link p a {
  color: var(--color-white);
  text-decoration: none;
}

.forgot-password {
  font-size: 0.875em;
  color: var(--color-white);
  align-self: flex-start;
  margin: -10px auto 10px;
}

@media screen and (min-width: 576px) {
  label.agree_link p a:hover {
    text-decoration: underline;
  }

  .forgot-password:hover {
    text-decoration: underline;
    cursor: pointer;
  }
}

a.back-to-site {
  text-align: center;
  display: block;
  width: 100%;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1em;
}

a.back-to-site:hover {
  text-decoration: underline;
  cursor: pointer;
}

a.back-to-socials-btn {
  font-size: 1em;
  line-height: 100%;
  font-weight: 500;
  color: var(--color-white);
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid var(--color-gray-10);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  transition: var(--speed-slow);
  margin-bottom: 16px;
  width: 100%;
  display: block;
  text-align: center;
}

a.back-to-socials-btn {
  border: none;
  text-align: left;
  padding: 0px;
  display: flex;
  align-items: center;
}

a.back-to-socials-btn::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-image: url(/img/slider-arrow-left-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 12px;
}

.back-btn-wrap {
  width: 100%;
}

@media screen and (max-width: 1399px) {
  .cookie-popup {
    bottom: 18px;
    left: 18px;
    padding: 18px;
    border-radius: 18px;
    max-width: 360px;
  }

  .cookie-popup button {
    padding: 9px 36px;
  }

  .login-popup .popup-wrap,
  .search-popup .popup-wrap {
    padding: 38px;
  }

  .login-popup .popup-wrap .popup-top,
  .search-popup .popup-wrap .popup-top {
    margin-bottom: 22px;
  }

  .login-popup .popup-wrap .popup-top a.logo,
  .search-popup .popup-wrap .popup-top a.logo {
    height: 32px;
  }

  .login-popup .popup-wrap .popup-content .login-with-btns a,
  .search-popup .popup-wrap .popup-content .login-with-btns a {
    padding: 10px 40px;
  }

  .login-popup .popup-wrap .popup-content .login-form .form-item input,
  .search-popup .popup-wrap .popup-content .search-form .form-item input {
    padding: 12px;
  }

  .login-popup .popup-wrap .popup-content .login-form .form-item button,
  .search-popup .popup-wrap .popup-content .search-form .form-item button {
    padding: 13px 40px;
  }

  .agree_link {
    padding-left: 34px;
  }

  .agree_link span.checkmark {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 1299px) {
  .cookie-popup button {
    padding: 7px 32px;
  }

  .login-popup .popup-wrap .popup-top a.logo,
  .search-popup .popup-wrap .popup-top a.logo {
    height: 28px;
  }

  .login-popup .popup-wrap .popup-content .login-form .form-item input,
  .search-popup .popup-wrap .popup-content .search-form .form-item input {
    padding: 9px 12px;
  }

  .login-popup .popup-wrap .popup-content .login-form .form-item button,
  .search-popup .popup-wrap .popup-content .search-form .form-item button {
    padding: 10px 30px;
  }
}

@media screen and (max-width: 1199px) {
  .login-popup .popup-wrap,
  .search-popup .popup-wrap {
    padding: 34px;
  }
}

@media screen and (max-width: 991px) {
  .login-popup .popup-wrap,
  .search-popup .popup-wrap {
    padding: 26px;
  }

  .login-popup .popup-wrap .popup-top a.logo,
  .search-popup .popup-wrap .popup-top a.logo {
    height: 24px;
    width: 230px;
  }

  .login-popup .popup-wrap .popup-content p.h2,
  .search-popup .popup-wrap .popup-content p.h2 {
    font-size: 1.25em;
  }
}

@media screen and (max-width: 767px) {
  .login-popup .popup-wrap,
  .search-popup .popup-wrap {
    padding: 22px;
    max-width: 500px;
  }

  .login-popup .popup-wrap .popup-top,
  .search-popup .popup-wrap .popup-top {
    margin-bottom: 20px;
  }

  .login-popup .popup-wrap .popup-content p.h2,
  .search-popup .popup-wrap .popup-content p.h2 {
    font-size: 1.125em;
  }

  .login-popup .popup-wrap .popup-content .login-with-btns a,
  .search-popup .popup-wrap .popup-content .login-with-btns a {
    font-size: 0.875em;
  }

  .login-popup .popup-wrap .popup-content .login-with-btns a::before,
  .search-popup .popup-wrap .popup-content .login-with-btns a::before {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .login-popup .popup-wrap .popup-content .login-form .form-item input,
  .search-popup .popup-wrap .popup-content .search-form .form-item input {
    font-size: 0.875em;
    line-height: 100%;
  }

  .login-popup .popup-wrap .popup-content .login-form .form-item button,
  .search-popup .popup-wrap .popup-content .search-form .form-item button {
    font-size: 0.875em;
    line-height: 100%;
  }

  a.back-to-socials-btn {
    padding: 10px 20px;
    font-size: 0.875em;
  }
}

@media screen and (max-width: 575px) {
  .cookie-popup {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .cookie-popup button {
    width: 100%;
  }

  .login-popup,
  .search-popup {
    padding: 16px;
  }

  .login-popup .popup-wrap,
  .search-popup .popup-wrap {
    max-width: 412px;
  }

  .login-popup .popup-wrap .popup-top,
  .search-popup .popup-wrap .popup-top {
    margin-bottom: 16px;
  }

  .login-popup .popup-wrap .popup-top a.logo,
  .search-popup .popup-wrap .popup-top a.logo {
    height: 22px;
    width: 160px;
  }

  .login-popup .popup-wrap .popup-content p.h2,
  .search-popup .popup-wrap .popup-content p.h2 {
    font-size: 1em;
  }

  .login-popup .popup-wrap .popup-content .login-with-btns,
  .search-popup .popup-wrap .popup-content .login-with-btns {
    flex-direction: column;
    margin-bottom: 16px;
  }

  .login-popup .popup-wrap .popup-content .login-with-btns a,
  .search-popup .popup-wrap .popup-content .login-with-btns a {
    width: 100%;
    padding: 10px 22px;
  }

  .login-popup .popup-wrap .popup-content .login-with-btns a:nth-child(1n + 2),
  .search-popup .popup-wrap .popup-content .login-with-btns a:nth-child(1n + 2) {
    margin-top: 12px;
  }

  .login-popup .popup-wrap .popup-content .login-or-lines,
  .search-popup .popup-wrap .popup-content .login-or-lines {
    margin: 0px -16px 16px;
  }

  .login-popup .popup-wrap .popup-content .login-or-lines::before,
  .login-popup .popup-wrap .popup-content .login-or-lines::after,
  .search-popup .popup-wrap .popup-content .login-or-lines::before,
  .search-popup .popup-wrap .popup-content .login-or-lines::after {
    margin: 0px 16px;
  }

  .login-popup .popup-wrap .popup-content .login-or-lines span,
  .search-popup .popup-wrap .popup-content .login-or-lines span {
    font-size: 0.875em;
  }

  .login-popup .popup-wrap .popup-content .login-form .form-item,
  .search-popup .popup-wrap .popup-content .search-form .form-item {
    margin-bottom: 12px;
  }

  .login-popup .popup-wrap .popup-content .login-form .form-item.half-item,
  .search-popup .popup-wrap .popup-content .search-form .form-item.half-item {
    width: 100%;
  }

  .login-popup .popup-wrap .popup-content .login-form .form-item input,
  .search-popup .popup-wrap .popup-content .search-form .form-item input {
    padding: 10px;
  }

  .login-popup .popup-wrap .popup-content .login-form .form-item span.hide-password,
  .search-popup .popup-wrap .popup-content .search-form .form-item span.hide-password {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }

  .login-popup .popup-wrap .popup-content .login-form .form-item button,
  .search-popup .popup-wrap .popup-content .search-form .form-item button {
    padding: 7px 20px;
  }

  .login-popup .popup-wrap .popup-content .under-form,
  .search-popup .popup-wrap .popup-content .under-form {
    font-size: 0.75em;
    margin-top: 12px;
    justify-content: center;
  }

  .agree_link {
    font-size: 0.75em;
  }

  .forgot-password {
    font-size: 0.75em;
    margin: -8px auto 8px;
  }

  a.back-to-site {
    font-size: 0.875em;
  }

  a.back-to-socials-btn {
    margin-bottom: 14px;
    border: none;
    text-align: left;
    padding: 0px;
    display: flex;
    align-items: center;
  }

  a.back-to-socials-btn::before {
    content: '';
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-image: url(/img/slider-arrow-left-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-right: 10px;
  }
}

@media screen and (max-width: 449px) {
  .login-popup .popup-wrap,
  .search-popup .popup-wrap {
    max-width: 362px;
  }
}

@media screen and (max-width: 399px) {
  .login-popup .popup-wrap,
  .search-popup .popup-wrap {
    max-width: 312px;
  }
}

@media screen and (max-width: 349px) {
  .login-popup .popup-wrap,
  .search-popup .popup-wrap {
    max-width: 282px;
  }
}



























.page-content .content ul li,
.page-content .content ol li {
	font-size: 1.125em;
}

.page-content h1 {
  font-size: 2.25em;
  line-height: 120%;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 24px;
}

.page-content h2 {
  font-size: 2em;
	line-height: 120%;
	font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
}

.page-content h2 a {
  color: var(--color-main);
}

.page-content h3 {
  font-size: 1.75em;
	line-height: 120%;
	font-weight: 500;
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-content h3 a {
  color: var(--color-main);
}

.page-content h4 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 400;
	color: var(--color-white);
	margin-bottom: 12px;
}

.page-content blockquote {
	padding: 20px;
	background-color: var(--bg-black-matte);
	display: flex;
	flex-direction: column;
  border-radius: 20px;
	margin-bottom: 16px;
}

.page-content blockquote p {
	font-size: 1.25em;
	font-weight: 500;
}

.page-content > div.block {
	padding: 20px;
	background-color: var(--bg-black-matte);
	display: flex;
	flex-direction: column;
  border-radius: 20px;
	margin-bottom: 16px;
}

.page-content > div.block a {
	color: var(--color-main);
}

.page-content > div.block:last-child {
	margin-bottom: 0px;
}

.page-content ul,
.page-content ol {
	margin-bottom: 16px;
	padding-left: 24px;
}

.page-content ul li,
.page-content ol li {
  font-size: 1em;
  line-height: 150%;
	font-weight: 400;
  margin-bottom: 8px;
  color: var(--color-white);
}

.page-content p {
  font-size: 1em;
  line-height: 150%;
	font-weight: 400;
  color: var(--color-white);
	margin-bottom: 16px;
}

.page-content a {
  color: var(--color-main);
	transition: var(--speed-slow);
}

.page-content p:has(.alignright) {
  clear: both;
  margin-bottom: 0px;
}

.page-content p img,
.page-content > * > img {
	max-width: 100%;
	overflow: hidden;
  width: 100%;
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

.page-content p img.alignright,
.page-content > * > img.alignright {
  float: right;
	max-width: 100%;
  margin-left: 16px;
  margin-bottom: 16px;
}

.page-content .image-caption {
  color: var(--color-white)!important;
  text-align: center;
  font-size: 1em;
  margin-bottom: 16px;
}

.page-content p:has(.alignleft) {
  clear: both;
  margin-bottom: 0px;
}

.page-content p img.alignleft,
.page-content > * > img.alignleft {
  float: left;
	max-width: 100%;
  margin-right: 16px;
  margin-bottom: 16px;
}

.page-content p:has(.aligncenter) {
  clear: both;
}

.page-content p img.aligncenter,
.page-content > * > img.aligncenter {
	max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-content p:has(iframe),
.page-content .sketchfab-embed-wrapper {
  clear: both;
  padding-top: 56.25%;
  position: relative;
}

.page-content p iframe,
.page-content .sketchfab-embed-wrapper iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
	overflow: hidden;
  border-radius: 20px;
}

.page-content *:last-child {
	margin-bottom: 0px;
}

.page-content * + p:has(iframe),
.page-content * + .sketchfab-embed-wrapper {
  margin-top: 16px;
  margin-bottom: 16px;
}

.page-content * + p:has(img.alignright),
.page-content * + p:has(img.alignleft),
.page-content * + p:has(img.alignnone),
.page-content * + p:has(img.aligncenter) {
  margin-top: 16px;
}

.page-content figure {
  width: 100%!important;
  position: relative;
  margin-top: 16px;
  clear: both;
}

.page-content figure img {
	max-width: 100%;
}

.page-content figure figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
	left: 12px;
  font-size: 0.75em;
	line-height: 100%;
  font-weight: 400;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  text-align: end;
  align-items: flex-end;
}

.page-content figure.aligncenter {
	max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-content figure.alignleft {
	max-width: 100%;
  margin-right: 16px;
  float: left;
}

.page-content figure.alignleft + p {
  margin-top: 16px;
}

.page-content figure.alignright {
	max-width: 100%;
  margin-left: 16px;
  float: right;
}

.page-content figure.alignright + p {
  margin-top: 16px;
}

.page-content figure.alignright:first-child,
.page-content figure.alignleft:first-child {
  margin-top: 0px;
}

.page-content figure.alignright:first-child + p,
.page-content figure.alignleft:first-child + p {
  margin-top: 0px;
}

.page-content .gallery {
	margin: 16px -16px;
	overflow-x: clip;
}

.page-content .gallery .slick-slide {
	padding: 0px 16px;
	display: flex;
}

.page-content .gallery .slick-slide > div {
	display: flex;
	width: 100%;
}

.page-content .gallery figure {
	margin: 0px;
	padding: 0px;
	max-width: none;
	position: relative;
}

.page-content .gallery figure .gallery-icon {
	width: 100%;
	padding-top: 75%;
	position: relative;
}

.page-content .gallery figure .gallery-icon img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1399px) {
  .page-content h1 {
    font-size: 2em;
  }

  .page-content h2 {
    font-size: 1.875em;
  }

	.page-content h3 {
		font-size: 1.5em;
	}

  .page-content h4 {
    font-size: 1.375em;
  }

	.page-content blockquote {
		padding: 16px;
    border-radius: 18px;
	}

	.page-content blockquote p {
		font-size: 1.125em;
	}

	.page-content blockquote::after,
	.page-content blockquote::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	.page-content > div.block {
		padding: 16px;
    border-radius: 18px;
	}

  .page-content p img,
  .page-content > * > img {
    border-radius: 18px;
  }

  .page-content p iframe,
  .page-content .sketchfab-embed-wrapper iframe {
    border-radius: 18px;
  }

	.page-content .gallery {
		margin: 16px -12px;
	}

	.page-content .gallery .slick-slide {
		padding: 0px 12px;
	}

  .page-content .slick-slider .slick-dots {
		margin-top: 10px;
	}

	.page-content .slick-slider .slick-dots li {
		margin: 6px;
	}

	.page-content .slick-slider .slick-dots li button {
		width: 16px;
		min-width: 16px;
		height: 16px;
	}
}

@media screen and (max-width: 1299px) {
  .page-content h2 {
    font-size: 1.75em;
  }
}

@media screen and (max-width: 1199px) {
  .page-content h1 {
    font-size: 1.625em;
    margin-bottom: 20px;
  }

  .page-content h2 {
    font-size: 1.5em;
  }

	.page-content h3 {
		font-size: 1.375em;
	}

  .page-content h4 {
    font-size: 1.25em;
  }

  .page-content blockquote {
    border-radius: 16px;
	}

	.page-content > div.block {
    border-radius: 16px;
	}

  .page-content p img,
  .page-content > * > img {
    border-radius: 16px;
  }

  .page-content p iframe,
  .page-content .sketchfab-embed-wrapper iframe {
    border-radius: 16px;
  }

	.page-content .gallery {
		margin: 16px -10px;
	}

	.page-content .gallery .slick-slide {
		padding: 0px 10px;
	}

  .page-content .slick-slider .slick-dots li button {
		width: 14px;
		min-width: 14px;
		height: 14px;
	}
}

@media screen and (max-width: 991px) {
  .page-content h1 {
    font-size: 1.5em;
    margin-bottom: 18px;
  }

  .page-content h2 {
    font-size: 1.375em;
  }

	.page-content h3 {
		font-size: 1.25em;
	}

  .page-content h4 {
    font-size: 1.125em;
  }

	.page-content ul li,
	.page-content ol li {
		margin-bottom: 6px;
	}

  .page-content blockquote {
    border-radius: 14px;
	}

	.page-content > div.block {
    border-radius: 14px;
	}

  .page-content p img,
  .page-content > * > img {
    border-radius: 14px;
  }

  .page-content p iframe,
  .page-content .sketchfab-embed-wrapper iframe {
    border-radius: 14px;
  }

	.page-content .gallery {
		margin: 16px -8px;
	}

	.page-content .gallery .slick-slide {
		padding: 0px 8px;
	}

	.page-content .slick-slider .slick-dots li button {
		width: 12px;
		min-width: 12px;
		height: 12px;
	}
}

@media screen and (max-width: 767px) {
  .page-content h1 {
    font-size: 1.375em;
    margin-bottom: 16px;
  }

	.page-content h2 {
    font-size: 1.25em;
  }

	.page-content h3 {
		font-size: 1.125em;
	}

	.page-content h4 {
		font-size: 1em;
	}

  .page-content blockquote {
    border-radius: 12px;
	}

	.page-content > div.block {
    border-radius: 12px;
	}

  .page-content p img,
  .page-content > * > img {
    border-radius: 12px;
  }

  .page-content p iframe,
  .page-content .sketchfab-embed-wrapper iframe {
    border-radius: 12px;
  }

  .page-content p img,
  .page-content > * > img {
    width: 100%;
  }

  .page-content p img.alignright,
  .page-content > * > img.alignright {
    float: none;
    display: block;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-content p img.alignleft,
  .page-content > * > img.alignleft {
    float: none;
    display: block;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-content .center-column {
    width: 100%;
    max-width: 500px;
  }

  .page-content p img.alignnone,
  .page-content > * > img.alignnone {
    display: block;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-content p img.aligncenter,
  .page-content > * > img.aligncenter {
    width: 100%;
    max-width: 500px;
  }

  .page-content figure {
    margin-top: 20px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-content figure.aligncenter {
    width: 100%!important;
    max-width: 500px;
  }

  .page-content figure.alignleft {
    width: 100%!important;
    margin-right: auto;
    float: none;
  }

  .page-content figure.alignright {
    width: 100%!important;
    margin-left: auto;
    float: none;
  }

  .page-content .image-caption {
    font-size: 0.875em;
  }
}

@media screen and (max-width: 575px) {
  .page-content h1 {
    font-size: 1.375em;
    margin-bottom: 16px;
  }

	.page-content h2 {
		margin-bottom: 14px;
  }

	.page-content h3 {
		margin-bottom: 12px;
	}

	.page-content h4 {
		margin-bottom: 12px;
	}

  .page-content p {
		margin-bottom: 12px;
    font-size: 0.875em;
	}

	.page-content blockquote p {
		font-size: 0.875em;
	}

  .page-content blockquote {
    border-radius: 10px;
	}

	.page-content > div.block {
    border-radius: 10px;
	}

  .page-content p img,
  .page-content > * > img {
    border-radius: 10px;
  }

  .page-content p iframe,
  .page-content .sketchfab-embed-wrapper iframe {
    border-radius: 10px;
  }

	.page-content .content ul li,
	.page-content .content ol li {
		font-size: 1em;
	}

	.page-content figure figcaption {
		font-size: 0.625em;
		right: 10px;
		bottom: 10px;
	}

	.page-content ul,
	.page-content ol {
    font-size: 0.875em;
		padding-left: 18px;
	}

  .page-content .slick-slider .slick-dots li button {
		width: 10px;
		min-width: 10px;
		height: 10px;
	}

  .page-content .image-caption {
    font-size: 0.75em;
    margin-bottom: 12px;
  }
}


























.show-more-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.show-more-wrap .show-more-content {
	-webkit-line-clamp: 15;
	line-clamp: 15;
}

.show-more-wrap.show .show-more-content {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	width: 100%;
}

.show-more-wrap .show-more-content>*:last-child {
  margin-bottom: 0;
}

.show-more-wrap.open .show-more-content {
  display: block;
}

.show-more-wrap .show-more {
  display: none;
}

.show-more-wrap.show .show-more {
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 16px;
	cursor: pointer;
}

.show-more-wrap .show-more span {
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--color-white);
}

.show-more-wrap .show-more span.less {
  display: none;
}

.show-more-wrap.open .show-more span.more {
  display: none;
}

.show-more-wrap.open .show-more span.less {
  display: flex;
}

.show-more-wrap .show-more::after {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin-left: 8px;
	background-image: url(/img/show-more-arrow-white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: var(--speed-slow);
	transform: rotate(90deg);
}

.show-more-wrap.open .show-more::after {
  transform: rotate(-90deg);
}

@media screen and (max-width: 1399px) {
	.show-more-wrap .show-more::after {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-left: 6px;
	}

  .show-more-wrap .show-more-content {
		-webkit-line-clamp: 13;
		line-clamp: 13;
	}

	.show-more-wrap.show .show-more {
		margin-top: 15px;
	}
}

@media screen and (max-width: 1199px) {
	.show-more-wrap .show-more-content {
		-webkit-line-clamp: 10;
		line-clamp: 10;
	}

  .show-more-wrap .show-more span {
		font-size: 1em;
	}
}

@media screen and (max-width: 991px) {
  .show-more-wrap .show-more-content {
		-webkit-line-clamp: 8;
		line-clamp: 8;
	}

	.show-more-wrap .show-more span {
		font-size: 1em
	}
}

@media screen and (max-width: 767px) {
  .show-more-wrap .show-more-content {
		-webkit-line-clamp: 6;
		line-clamp: 6;
	}
}

@media screen and (max-width: 575px) {
	.show-more-wrap .show-more-content {
		-webkit-line-clamp: 5;
		line-clamp: 5;
	}

  .show-more-wrap .show-more span {
		font-size: 0.875em;
	}
}




























.subscribe-message {
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.875em;
}

.subscribe-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.subscribe-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Фон затемнення */
.popup-overlay {
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #1B1B1B80;
  backdrop-filter: blur(12px);
  display: none;
}

/* Попап */
.share-popup {
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  width: 400px;
  max-width: calc(100% - 32px);
  text-align: center;
  display: none;
  background-color: var(--bg-gray-100);
  border: 1px solid var(--color-gray-10);
  border-radius: 16px;
  text-align: left;
}

.share-popup p.h2 {
  font-size: 1.375em;
  line-height: 100%;
  font-weight: 700;
  color: var(--color-white);
  margin: 0px;
}

/* Кнопки всередині попапа */
.share-popup button,
.share-popup a {
  border: none;
  background: transparent;
  color: var(--color-white);
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  font-size: 1em;
  line-height: 100%;
  font-weight: 400;
  transition: var(--speed-slow);
  padding: 13px 30px;
  border: 1px solid var(--color-white);
  border-radius: 100px;
}

@media screen and (min-width: 576px) {
  .share-popup button:hover,
  .share-popup a:hover {
    color: var(--color-main);
    border-color: var(--color-main);
  }
}

.share-popup button img,
.share-popup a img {
  width: 24px;
  margin-right: 14px;
  height: auto;
  display: none;
}

.share-popup button::before,
.share-popup a::before {
  content: '';
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-right: 14px;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: var(--color-white);
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  .share-popup button:hover::before,
  .share-popup a:hover::before {
    background-color: var(--color-main);
  }
}

.share-popup button.copy-link::before {
  mask-image: url(/files/social/link.png);
}

.share-popup a.share-facebook::before {
  mask-image: url(/files/social/facebook.png);
}

.share-popup a.share-twitter::before {
  mask-image: url(/files/social/twitter.png);
}

.share-popup > *:not(:first-child) {
  margin-top: 30px;
}

.share-popup .close-share-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  text-decoration: none;
  color: transparent;
  font-size: 0px;
  line-height: 100%;
  font-weight: 400;
  background-image: url(/img/filter-cross.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: var(--speed-slow);
  margin: 0px!important;
  cursor: pointer;
}

@media screen and (min-width: 576px) {
  .share-popup .close-share-btn:hover {
    opacity: 0.8;
  }
}

/* Кнопка закриття */
.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

@media screen and (max-width: 1399px) {
  .share-popup {
    padding: 38px;
  }

  .share-popup > *:not(:first-child) {
    margin-top: 28px;
  }
}

@media screen and (max-width: 1199px) {
  .share-popup {
    padding: 34px;
  }

  .share-popup button img,
  .share-popup a img {
    margin-right: 12px;
  }

  .share-popup button::before,
  .share-popup a::before {
    margin-right: 12px;
  }

  .share-popup > *:not(:first-child) {
    margin-top: 26px;
  }
}

@media screen and (max-width: 991px) {
  .share-popup {
    padding: 26px;
  }

  .share-popup p.h2 {
    font-size: 1.25em;
  }

  .share-popup button, 
  .share-popup a {
    padding: 10px 20px;
    font-size: 0.875em;
  }

  .share-popup > *:not(:first-child) {
    margin-top: 22px;
  }
}

@media screen and (max-width: 767px) {
  .share-popup {
    padding: 22px;
  }

  .share-popup p.h2 {
    font-size: 1.125em;
  }

  .share-popup > *:not(:first-child) {
    margin-top: 16px;
  }
}

@media screen and (max-width: 575px) {
  .subscribe-message {
    padding: 6px 10px;
  }

  .share-popup {
    padding: 16px;
  }

  .share-popup p.h2 {
    font-size: 1em;
  }

  .share-popup button img,
  .share-popup a img {
    width: 22px;
    margin-right: 10px;
  }

  .share-popup button::before,
  .share-popup a::before {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-right: 10px;
  }
}

















/* Промокод стилі */

.price-section {
  margin-bottom: 20px;
}

.price-section .original-price {
  font-size: 1em;
  margin-bottom: 0px;
  color: var(--color-white);
}

.price-section .discount-info {
  color: #28a745;
  font-size: 1em;
  margin-top: 6px;
}

.price-section .final-price {
  font-size: 1.125em;
  font-weight: 700;
  margin-top: 6px;
  color: var(--color-white);
}

.modal-body:has(.price-section .discount-info .text-success) .promocode-section .promocode-result .alert {
  display: none;
}

.promocode-section {
  margin-bottom: 20px;
}

.promocode-form .input-group {
  margin-bottom: 0px;
}

.promocode-form .promocode-result .alert {
  margin-bottom: 0;
  font-size: 0.875em;
  padding: 10px;
  margin-top: 14px;
}

.promocode-form .input-group {
  flex-wrap: nowrap;
}

.promocode-form .input-group input {
  width: 100%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px !important;
  background: transparent;
  color: var(--color-white);
  padding: 15px 20px;
}

.promocode-form .input-group button {
  width: 100% !important;
}

.promocode-form .input-group input:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--color-white);
}

@media screen and (max-width: 1399px) {
  .promocode-form .input-group input {
    padding: 14px 30px;
  }
}

@media screen and (max-width: 1299px) {
  .promocode-form .input-group input {
    padding: 11px 30px;
  }
}

@media screen and (max-width: 767px) {
  .price-section {
    margin-bottom: 16px;
  }

  .promocode-section {
    margin-bottom: 16px;
  }

  .promocode-form .promocode-result .alert {
    margin-top: 12px;
  }

  .promocode-form .input-group input {
    padding: 10px 30px;
    font-size: 0.875em;
  }
}

@media screen and (max-width: 575px) {
  .promocode-form .input-group input {
    padding: 7px 18px;
  }
}


















.light-mode-only {
  display: none;
}

body.light-mode .dark-mode-only {
  display: none;
}

body.light-mode .light-mode-only {
  display: block;
}

body.light-mode {
  color: var(--bg-black);
  background-color: var(--color-white);
}

body.light-mode .test-line {
  background-color: #B5BFB1;
}

body.light-mode .test-line p {
  color: var(--color-black);
}

body.light-mode header {
  background-color: var(--color-white);
}

body.light-mode header .header-box {
  background-color: var(--color-white);
}

body.light-mode header .header-box .header-wrap .left-side-wrap .header-menu-btn {
  color: var(--bg-black);
}

body.light-mode header .header-box .header-wrap .left-side-wrap .header-menu-btn::before {
  background-image: url(/img/light-mode/menu-burger-black.svg);
}

body.light-mode header.side-open .header-box .header-wrap .left-side-wrap .header-menu-btn::before {
  background-image: url(/img/light-mode/filter-cross.svg);
}

body.light-mode header .header-box .header-wrap .right-side-wrap .theme-menu .theme-change-btn {
  background-image: url(/img/light-mode/theme-dark-icon-black.svg);
}

@media screen and (min-width: 576px) {
  body.light-mode header .header-box .header-wrap .right-side-wrap .theme-menu .theme-change-btn:hover {
    background-color: var(--color-white);
    border-color: var(--bg-black);
  }
}

body.light-mode header .header-box .header-wrap .right-side-wrap .search-menu .search-form-btn {
  background-image: url(/img/light-mode/search-icon-black.svg);
}

@media screen and (min-width: 576px) {
  body.light-mode header .header-box .header-wrap .right-side-wrap .search-menu .search-form-btn:hover {
    background-color: var(--color-white);
    border-color: var(--bg-black);
  }
}

body.light-mode header .header-box .header-wrap .right-side-wrap .lang-menu .menu-item a {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode header .header-box .header-wrap .right-side-wrap .lang-menu .menu-item a:hover {
    background-color: var(--color-white);
    border-color: var(--bg-black);
  }
}

body.light-mode .avatar-placeholder {
  background-color: var(--color-white);
}

@media screen and (min-width: 576px) {
  body.light-mode header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-image:hover .avatar-placeholder {
    background-color: var(--color-white);
  }
}

body.light-mode header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content {
  background-color: var(--color-white);
}

body.light-mode header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item {
  border-top-color: var(--bg-gray-light);
  border-bottom-color: var(--bg-gray-light);
}

body.light-mode header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a:not(:hover) {
  color: var(--bg-black);
}

body.light-mode header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
  transition: var(--speed-slow);
}

body.light-mode header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/orders"]::before {
  background-image: url(/img/light-mode/orders-icon-black.svg);
}

body.light-mode header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/settings"]::before {
  background-image: url(/img/light-mode/settings-icon-black.svg);
}

body.light-mode header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/logout"]::before {
  background-image: url(/img/light-mode/logout-icon-black.svg);
}

body.light-mode header .header-box .header-wrap .right-side-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a:hover::before {
  opacity: 0;
}

body.light-mode .mobile-menu {
  background-color: var(--color-white);
}

body.light-mode .mobile-menu .mobile-wrap .profile-menu {
  border-bottom-color: var(--bg-gray-light);
}

body.light-mode .mobile-menu .mobile-wrap .profile-menu a.profile-btn {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .profile-menu a.profile-btn:hover {
    color: var(--color-main);
  }
}

body.light-mode .mobile-menu .mobile-wrap .profile-menu a.profile-btn::before {
  transition: var(--speed-slow);
  background-image: url(/img/light-mode/profile-icon-black.svg);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .profile-menu a.profile-btn:hover::before {
    opacity: 0;
  }
}

body.light-mode .mobile-menu .mobile-wrap .login-menu {
  border-bottom-color: var(--bg-gray-light);
}

body.light-mode .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a:hover {
    color: var(--color-main);
  }
}

body.light-mode .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a::before {
  transition: var(--speed-slow);
}

body.light-mode .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/orders"]::before {
  background-image: url(/img/light-mode/orders-icon-black.svg);
}

body.light-mode .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/settings"]::before {
  background-image: url(/img/light-mode/settings-icon-black.svg);
}

body.light-mode .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a[href*="/logout"]::before {
  background-image: url(/img/light-mode/logout-icon-black.svg);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .login-menu .user-profile-wrap .user-profile-content .profile-menu .menu-item a:hover::before {
    opacity: 0;
  }
}

body.light-mode .mobile-menu .mobile-wrap .addon-menu {
  border-bottom-color: var(--bg-gray-light);
}

body.light-mode .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a:hover {
    color: var(--color-main);
  }
}

body.light-mode .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a::before {
  background-image: url(/img/light-mode/globe-icon-black.svg);
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .addon-menu .lang-menu .menu-item a:hover::before {
    opacity: 0;
  }
}

body.light-mode .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn:hover {
    color: var(--color-main);
  }
}

body.light-mode .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn::before {
  background-image: url(/img/light-mode/theme-dark-icon-black.svg);
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn:hover::before {
    opacity: 1;
  }
}

body.light-mode .mobile-menu .mobile-wrap .addon-menu .theme-menu .theme-change-btn::after {
  background-image: url(/img/light-mode/theme-dark-icon-main.svg);
}

body.light-mode .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn:hover {
    color: var(--color-main);
  }
}

body.light-mode .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn::before {
  background-image: url(/img/light-mode/search-icon-black.svg);
  transition: var(--speed-slow);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .addon-menu .search-menu .search-form-btn:hover::before {
    opacity: 0;
  }
}

body.light-mode .mobile-menu .mobile-wrap .side-menu {
  border-bottom-color: var(--bg-gray-light);
}

body.light-mode .mobile-menu .mobile-wrap .side-menu .menu-item a {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .side-menu .menu-item a:hover {
    color: var(--color-black);
  }
}

body.light-mode .mobile-menu .mobile-wrap .side-menu .menu-item.active a {
  color: var(--color-main);
}

body.light-mode .mobile-menu .mobile-wrap .contacts-menu .menu-item span {
  color: var(--color-black);
}

body.light-mode .mobile-menu .mobile-wrap .socials-menu {
  border-top-color: var(--bg-gray-light);
}

body.light-mode .mobile-menu .mobile-wrap .socials-menu .menu-item a {
  background-image: url(/img/light-mode/facebook-icon-black.svg);
}

@media screen and (min-width: 576px) {
  body.light-mode .mobile-menu .mobile-wrap .socials-menu .menu-item a:hover {
    background-color: var(--bg-gray-light);
  }
}

body.light-mode .mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="x.com"] {
  background-image: url(/img/light-mode/x-icon-black.svg);
}

body.light-mode .mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="linkedin.com"] {
  background-image: url(/img/light-mode/linkedin-icon-black.svg);
}

body.light-mode .mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="t.me"] {
  background-image: url(/img/light-mode/telegram-icon-black.svg);
}

body.light-mode .mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="youtube.com"] {
  background-image: url(/img/light-mode/youtube-icon-black.svg);
}

body.light-mode .mobile-menu .mobile-wrap .socials-menu .menu-item a[href*="instagram.com"] {
  background-image: url(/img/light-mode/instagram-icon-black.svg);
}

body.light-mode footer {
  background-color: var(--color-white);
}

body.light-mode footer .footer-wrap span.logo-text {
  color: var(--color-black);
}

body.light-mode footer .footer-wrap .socials-menu .menu-item a {
  background-image: url(/img/light-mode/facebook-icon-black.svg);
}

@media screen and (min-width: 576px) {
  body.light-mode footer .footer-wrap .socials-menu .menu-item a:hover {
    background-color: var(--color-white);
  }
}

body.light-mode footer .footer-wrap .socials-menu .menu-item a[href*="x.com"] {
  background-image: url(/img/light-mode/x-icon-black.svg);
}

body.light-mode footer .footer-wrap .socials-menu .menu-item a[href*="linkedin.com"] {
  background-image: url(/img/light-mode/linkedin-icon-black.svg);
}

body.light-mode footer .footer-wrap .socials-menu .menu-item a[href*="t.me"] {
  background-image: url(/img/light-mode/telegram-icon-black.svg);
}

body.light-mode footer .footer-wrap .socials-menu .menu-item a[href*="youtube.com"] {
  background-image: url(/img/light-mode/youtube-icon-black.svg);
}

body.light-mode footer .footer-wrap .socials-menu .menu-item a[href*="instagram.com"] {
  background-image: url(/img/light-mode/instagram-icon-black.svg);
}

body.light-mode footer .footer-wrap .contacts-menu .menu-item span {
  color: var(--color-black);
}

body.light-mode footer .footer-wrap .footer-menu .menu-item a {
  color: var(--color-black);
}

body.light-mode footer .footer-inner span.copyright {
  color: var(--color-black);
}

body.light-mode a.btn.white {
  border-color: var(--color-black);
  background-color: transparent;
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode a.btn.white:hover {
    border-color: var(--color-black);
    background-color: var(--color-black);
    color: var(--color-white);
  }
}

body.light-mode a.btn.white.main {
  border-color: transparent;
  background-color: transparent;
  color: var(--color-black);
}

body.light-mode a.btn.white.main span {
  background-color: var(--color-white);
}

@media screen and (min-width: 576px) {
  body.light-mode a.btn.white.main:hover {
    border-color: var(--color-white);
    background-color: var(--color-white);
  }
}

body.light-mode section.main-exhibitions {
  background-color: var(--bg-gray-light);
}

body.light-mode section .slick-slider .slick-arrow {
  background-color: #e7e7e780;
}

body.light-mode section .slick-slider .slick-arrow.slick-prev {
  background-image: url(/img/light-mode/slider-arrow-left-black.svg);
}

body.light-mode section .slick-slider .slick-arrow.slick-next {
  background-image: url(/img/light-mode/slider-arrow-right-black.svg);
}

body.light-mode section.main-exhibitions .main-slider .slick-dots li button {
  background-color: var(--color-white);
}

@media screen and (min-width: 576px) {
  body.light-mode section.main-exhibitions .main-slider .slick-dots li button:hover {
    background-color: var(--color-main);
  }
}

body.light-mode section.main-exhibitions .main-slider .slick-dots li.slick-active button {
  background-color: var(--color-main);
}

body.light-mode section.partners {
  background-color: var(--bg-gray-light);
}

body.light-mode section.partners .partners-wrap h2,
body.light-mode section.partners .partners-wrap p.h2 {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode section.partners .partners-wrap .partners-list .list-item .img-wrap .item-link:hover {
    filter: brightness(1.5);
  }
}

body.light-mode section.new-exhibitions {
  background-color: var(--bg-gray-white);
}

body.light-mode section h2.section-title,
body.light-mode section p.h2.section-title {
  color: var(--color-black);
}

body.light-mode section.new-exhibitions .exhibitions-title p:not(.h2) {
  color: var(--color-black);
}

body.light-mode section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link {
  background-color: var(--color-white);
}

body.light-mode section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption p.h2 {
  color: var(--color-black);
}

body.light-mode section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.museum-desc {
  color: var(--color-black);
}

body.light-mode section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.museum-desc::before {
  background-image: url(/img/light-mode/museum-icon-black.svg);
}

body.light-mode section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.price-desc {
  color: var(--color-black);
}

body.light-mode section.new-exhibitions .exhibitions-slider .exhibitions-item .item-link .caption span.price-desc::before {
  background-image: url(/img/light-mode/price-icon-black.svg);
}

body.light-mode section.main-cards {
  background-color: var(--bg-gray-light);
}

body.light-mode section.main-cards .cards-wrap .cards-list .list-item .item-wrap {
  background-color: var(--color-white);
}

body.light-mode section.main-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
  color: var(--color-black);
}

body.light-mode section.main-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
  color: var(--color-black);
}

body.light-mode section.main-news {
  background-color: var(--bg-gray-white);
}

body.light-mode section.main-news .news-wrap .title-wrap .news-arrows .slick-arrow {
  background-color: #e7e7e780;
}

body.light-mode section.main-news .news-wrap .title-wrap .news-arrows .slick-arrow.slick-prev {
  background-image: url(/img/light-mode/slider-arrow-left-black.svg);
}

body.light-mode section.main-news .news-wrap .title-wrap .news-arrows .slick-arrow.slick-next {
  background-image: url(/img/light-mode/slider-arrow-right-black.svg);
}

body.light-mode section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link {
  background-color: var(--color-white);
}

body.light-mode section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .caption p.h2 {
  color: var(--color-black);
}

body.light-mode section.main-news .news-wrap .news-slider .exhibitions-item.post-single .item-link .caption span.date {
  color: var(--color-black);
}

body.light-mode section.main-video {
  background-color: var(--bg-gray-light);
}

body.light-mode section.single-subscribe .thumbnail::after {
  background: #00000066;
}

body.light-mode section.faq {
  background-color: var(--bg-gray-white);
}

body.light-mode section.faq.faq-single {
  background-color: var(--bg-gray-white);
}

body.light-mode section.faq .faq-text h2,
body.light-mode section.faq .faq-text h1 {
  color: var(--color-black);
}

body.light-mode section.faq .faq-text .show-more-wrap .show-more span {
  color: var(--color-black);
}

body.light-mode section.faq .faq-text .show-more-wrap .show-more::after {
  background-image: url(/img/light-mode/show-more-arrow-black.svg);
}

body.light-mode section.faq .faq-text .show-more-wrap .page-content h2 {
  color: var(--color-black);
}

body.light-mode section.faq.faq-single .faq-wrap h1 {
  color: var(--color-black);
}

body.light-mode section.faq .faq-wrap h2 {
  color: var(--color-black);
}

body.light-mode section.faq .faq-container .card {
  background-color: var(--color-white);
}

body.light-mode section.faq .faq-container .card .card-header .accordion-button {
  color: var(--color-black);
}

body.light-mode section.faq .faq-container .card .card-header .accordion-button span.cross {
  border-color: var(--bg-black);
}

body.light-mode section.faq .faq-container .card .card-header .accordion-button span.cross::before {
  background-color: var(--bg-black);
}

body.light-mode section.faq .faq-container .card .card-header .accordion-button span.cross::after {
  background-color: var(--bg-black);
}

body.light-mode section.faq .faq-container .card .card-body {
  color: var(--color-black);
}

body.light-mode section.faq .faq-container .card .card-body a {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode section.faq .faq-container .card .card-body a:hover {
    color: var(--color-black);
  }
}

@media screen and (max-width: 991px) {
  body.light-mode header .header-box .header-wrap .left-side-wrap .header-menu-btn::before {
    background-image: url(/img/light-mode/menu-burger-black-mobile.svg);
  }

  body.light-mode section.main-cards .cards-wrap .cards-list .list-item .item-wrap {
    border-color: var(--color-white);
  }
}

@media screen and (max-width: 767px) {
  body.light-mode section.main-news .news-wrap .news-slider .slick-dots li button {
    background-color: var(--color-white);
  }

  body.light-mode section.main-news .news-wrap .news-slider .slick-dots li.slick-active button {
    background-color: var(--color-black);
  }
}

@media screen and (max-width: 991px) {
  body.light-mode section.main-cards .cards-wrap .cards-list .slick-dots li button {
    background-color: var(--color-white);
  }

  body.light-mode section.main-cards .cards-wrap .cards-list .slick-dots li.slick-active button {
    background-color: var(--color-black);
  }
}

body.light-mode .page-content h1 {
  color: var(--color-black);
}

body.light-mode .page-content h2 {
  color: var(--color-black);
}

body.light-mode .page-content h3 {
  color: var(--color-black);
}

body.light-mode .page-content h4 {
  color: var(--color-black);
}

body.light-mode .page-content blockquote {
  background-color: var(--bg-gray-light);
}

body.light-mode .page-content > div.block {
  background-color: var(--bg-gray-light);
}

body.light-mode .page-content ul li,
body.light-mode .page-content ol li {
  color: var(--color-black);
}

body.light-mode .page-content p {
  color: var(--color-black);
}

body.light-mode .page-content .image-caption {
  color: var(--color-black)!important;
}

body.light-mode .page-content figure figcaption {
  color: var(--color-black);
}

body.light-mode .show-more-wrap .show-more span {
  color: var(--color-black);
}

body.light-mode .show-more-wrap .show-more::after {
  background-image: url(/img/light-mode/show-more-arrow-black.svg);
}

body.light-mode .cookie-popup {
  background-color: var(--color-white);
}

body.light-mode .login-popup.login-page {
  background-color: var(--bg-gray-white);
}

body.light-mode .login-popup .popup-wrap,
body.light-mode .search-popup .popup-wrap {
  background-color: var(--color-white);
  border-color: var(--bg-gray-light);
}

body.light-mode .login-popup .popup-wrap .popup-top a.close-login-btn,
body.light-mode .search-popup .popup-wrap .popup-top a.close-search-btn {
  background-image: url(/img/light-mode/filter-cross.svg);
}

body.light-mode .login-popup .popup-wrap .popup-content p.h2,
body.light-mode .search-popup .popup-wrap .popup-content p.h2 {
  color: var(--color-black);
}

body.light-mode .login-popup .popup-wrap .popup-content .login-with-btns a,
body.light-mode .search-popup .popup-wrap .popup-content .login-with-btns a {
  color: var(--color-black);
  border-color: var(--bg-gray-light);
}

@media screen and (min-width: 576px) {
  body.light-mode .login-popup .popup-wrap .popup-content .login-with-btns a:hover,
  body.light-mode .search-popup .popup-wrap .popup-content .login-with-btns a:hover {
    background-color: var(--bg-gray-white);
  }
}

body.light-mode .login-popup .popup-wrap .popup-content .login-or-lines::before,
body.light-mode .login-popup .popup-wrap .popup-content .login-or-lines::after,
body.light-mode .search-popup .popup-wrap .popup-content .login-or-lines::before,
body.light-mode .search-popup .popup-wrap .popup-content .login-or-lines::after {
  background-color: var(--bg-gray-light);
}

body.light-mode .login-popup .popup-wrap .popup-content .login-or-lines span,
body.light-mode .search-popup .popup-wrap .popup-content .login-or-lines span {
  color: var(--color-gray-10);
}

body.light-mode .login-popup .popup-wrap .popup-content .login-form .form-item label,
body.light-mode .search-popup .popup-wrap .popup-content .search-form .form-item label {
  color: var(--color-black);
}

body.light-mode .login-popup .popup-wrap .popup-content .login-form .form-item input,
body.light-mode .search-popup .popup-wrap .popup-content .search-form .form-item input {
  color: var(--color-black);
  background-color: var(--bg-gray-white);
  border-color: var(--bg-gray-light);
}

body.light-mode .login-popup .popup-wrap .popup-content .login-form .form-item span.hide-password,
body.light-mode .search-popup .popup-wrap .popup-content .search-form .form-item span.hide-password {
  background-image: url(/img/light-mode/hide-password-icon-open.svg);
}

body.light-mode .login-popup .popup-wrap .popup-content .login-form .form-item span.hide-password.close,
body.light-mode .search-popup .popup-wrap .popup-content .search-form .form-item span.hide-password.close {
  background-image: url(/img/light-mode/hide-password-icon-close.svg);
}

body.light-mode .login-popup .popup-wrap .popup-content .under-form span,
body.light-mode .search-popup .popup-wrap .popup-content .under-form span {
  color: var(--color-gray-10);
}

body.light-mode .login-popup .popup-wrap .popup-content .under-form a,
body.light-mode .search-popup .popup-wrap .popup-content .under-form a {
  color: var(--color-black);
}

body.light-mode .agree_link {
  color: var(--color-black);
}

body.light-mode .agree_link span.checkmark {
  border-color: var(--bg-gray-light);
}

@media screen and (min-width: 576px) {
  body.light-mode .agree_link:hover span.checkmark:after {
    background-color: var(--bg-gray-light);
  }
}

body.light-mode .agree_link input:checked ~ .checkmark {
  border-color: var(--color-main);
}

@media screen and (min-width: 576px) {
  body.light-mode .agree_link:hover input:checked ~ .checkmark::after {
    background-color: var(--color-main);
  }
}

body.light-mode label.agree_link p {
  font-size: 1em;
  color: var(--color-gray-10);
  margin: 0px;
}

body.light-mode label.agree_link p a {
  color: var(--color-black);
}

body.light-mode .forgot-password {
  color: var(--color-black);
}

body.light-mode a.back-to-site {
  color: var(--color-black);
}

body.light-mode section.search-catalog {
  background-color: var(--bg-gray-white);
}

body.light-mode section.search-catalog .catalog-header h1 {
  color: var(--color-black);
}

body.light-mode section.search-catalog .catalog-header .sorting-wrapper .btn-sorting {
  color: var(--color-black);
  border-color: var(--bg-black);
}

body.light-mode section.search-catalog .catalog-header .sorting-wrapper .btn-sorting::after {
  background-image: url(/img/light-mode/filter-arrow-down-sorting.svg);
}

@media screen and (min-width: 576px) {
  body.light-mode section.search-catalog .catalog-header .sorting-wrapper .btn-sorting:hover {
    background-color: var(--bg-gray-light);
  }
}

body.light-mode section.search-catalog .catalog-header .sorting-wrapper:has(.sorting-options.active) .btn-sorting {
  background-color: var(--bg-gray-light);
}

body.light-mode section.search-catalog .catalog-header .sorting-wrapper .sorting-options {
  background-color: var(--color-white);
}

body.light-mode section.search-catalog .catalog-header .sorting-wrapper .sorting-options li a {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode section.search-catalog .catalog-header .sorting-wrapper .sorting-options li a:hover {
    background-color: var(--bg-gray-light);
  }
}

body.light-mode section.search-catalog .catalog-header .btn-share {
  color: var(--color-black);
  background-color: transparent;
  border-color: var(--bg-black);
}

body.light-mode section.search-catalog .catalog-header .btn-share::after {
  background-image: url(/img/light-mode/share-icon-sorting.svg);
}

@media screen and (min-width: 576px) {
  body.light-mode section.search-catalog .catalog-header .btn-share:hover {
    background-color: var(--bg-gray-light);
  }
}

body.light-mode section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"] + label {
  border-color: var(--bg-gray-light);
  background-color: var(--color-white);
}

body.light-mode section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"]:not(:checked) + label[for=gridOrList] span.checkbox-list,
body.light-mode section.search-catalog .catalog-header .btn-gridOrList input[type="checkbox"]:checked + label[for=gridOrList]  span.checkbox-grid {
  background-color: var(--color-black);
}

body.light-mode section.search-catalog .filters-wrap {
  border-color: var(--bg-gray-light);
  background-color: var(--color-white);
}

body.light-mode section.search-catalog .filters-wrap .filters-chips {
  border-bottom-color: var(--bg-gray-light);
}

body.light-mode section.search-catalog .filters-wrap .filters-chips .chips-title p.h2 {
  color: var(--color-black);
}

body.light-mode section.search-catalog .filters-wrap .filters-chips .chips-title a.clear {
  color: var(--color-black);
}

body.light-mode section.search-catalog .filters-wrap .filters-chips .chips-list .chip a {
  color: var(--color-black);
}

body.light-mode section.search-catalog .filters-wrap .filters-chips .chips-list .chip a::after {
  background-image: url(/img/light-mode/filter-cross.svg);
}

body.light-mode section.search-catalog .filters-wrap .filters-list .filters-item:not(:last-child) {
  border-bottom-color: var(--bg-gray-light);
}

body.light-mode section.search-catalog .filters-wrap .filters-list .filters-item p.h2 {
  color: var(--color-black);
}

body.light-mode section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap {
  color: var(--color-black);
}

body.light-mode section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap .checkmark {
  border-color: var(--bg-gray-light);
  background-color: var(--color-white);
}

@media screen and (min-width: 576px) {
  body.light-mode section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap:hover .checkmark::after {
    background-color: var(--bg-gray-white);
  }
}

body.light-mode section.search-catalog .filters-wrap .filters-list .filters-item .item-body .checkbox-wrap input:checked ~ .checkmark {
  border-color: var(--color-main);
}

body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item .item-link,
body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item .item-link {
  background-color: var(--color-white);
}

body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption p.h2,
body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption p.h2 {
  color: var(--color-black);
}

body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc,
body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc {
  color: var(--color-main);
}

body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc::before,
body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.museum-desc::before {
  background-image: url(/img/light-mode/museum-icon-black.svg);
}

body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc,
body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc {
  color: var(--color-black);
}

body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc::before,
body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.price-desc::before {
  background-image: url(/img/light-mode/price-icon-black.svg);
}

body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc,
body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc {
  color: var(--color-black);
}

body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before,
body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption span.date-desc::before {
  background-image: url(/img/light-mode/enddate-icon-black.svg);
}

body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .caption div.tags span,
body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item .item-link .caption div.tags span {
  color: var(--color-black);
  background-color: var(--bg-gray-white);
}

@media screen and (min-width: 576px) {
  body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button:hover,
  body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button:hover {
    background-color: var(--bg-gray-white);
  }
}

body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button.in-wishlist,
body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item .item-link .event-button .like-button.in-wishlist {
  background-color: var(--color-main);
}

.search-inner-form input {
  color: var(--color-black);
  background-color: var(--color-white);
  border: 1px solid var(--bg-gray-light);
}

body.light-mode .result_text {
  color: var(--color-black);
}

body.light-mode .result-lists .item-result a {
  color: var(--color-black);
}

@media screen and (max-width: 991px) {
  body.light-mode .filters-modal-wrap {
    background-color: var(--bg-gray-white);
  }

  body.light-mode .filters-modal-wrap .filters-modal-top {
    background-color: var(--bg-gray-white);
  }

  body.light-mode .filters-modal-wrap .filters-modal-top .top-wrap .title {
    color: var(--color-black);
  }

  body.light-mode .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-close::before {
    background-image: url(/img/light-mode/filter-arrow-down-sorting.svg);
  }

  body.light-mode .filters-modal-wrap .filters-modal-top .top-wrap .title .filters-modal-back::before {
    background-image: url(/img/light-mode/filter-arrow-down-sorting.svg);
  }

  body.light-mode .filters-modal-wrap .filters-modal-top .top-wrap .clear {
    color: var(--color-black);
  }

  body.light-mode .filters-modal-wrap .filters-modal-content {
    background-color: var(--bg-gray-white);
  }

  body.light-mode .filters-modal-wrap .filters-modal-content .content-wrap .filters-list {
    border-color: var(--bg-gray-light);
    background-color: var(--color-white);
  }

  body.light-mode .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item:nth-child(1n + 2)::before {
    background-color: var(--bg-gray-light);
  }

  body.light-mode .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-top .title {
    color: var(--color-black);
  }

  body.light-mode .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-top .value {
    color: var(--color-black);
  }

  body.light-mode .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-top .value::after {
    background-image: url(/img/light-mode/filter-arrow-down-sorting.svg);
  }

  body.light-mode .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap {
    color: var(--color-black);
  }

  body.light-mode .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap .checkmark {
    border-color: var(--bg-gray-light);
  }

  @media screen and (min-width: 576px) {
    body.light-mode .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap:hover .checkmark::after {
      background-color: var(--bg-gray-white);
    }
  }

  body.light-mode .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap input:checked ~ .checkmark {
    border-color: var(--color-main);
  }

  body.light-mode .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap input:checked ~ .checkmark::after {
    background-color: var(--color-main);
  }

  body.light-mode .filters-modal-wrap .filters-modal-content .content-wrap .filters-list .list-item .list-body .checkbox-wrap .count {
    color: var(--color-black);
  }

  body.light-mode .filters-modal-wrap .filters-modal-bottom {
    background-color: var(--bg-gray-light);
  }

  body.light-mode .filters-modal-wrap .filters-modal-bottom .bottom-wrap .search-title {
    color: var(--color-black);
  }

  body.light-mode .filters-modal-wrap .filters-modal-bottom .bottom-wrap .search-title b {
    color: var(--color-black);
  }

  body.light-mode .filters-modal-wrap .filters-modal-bottom .bottom-wrap .buttons .filters-modal-back {
    color: var(--color-black);
  }
}

body.light-mode section.single-main {
  background-color: var(--bg-gray-white);
}

body.light-mode section.single-main .single-thumbnail .buttons-wrap .btn-share {
  color: var(--color-black);
  background-color: var(--bg-gray-light);
  border-color: var(--bg-gray-light);
}

body.light-mode section.single-main .single-thumbnail .buttons-wrap .btn-share::after {
  background-image: url(/img/light-mode/share-icon-sorting.svg);
}

@media screen and (min-width: 576px) {
  body.light-mode section.single-main .single-thumbnail .buttons-wrap .btn-share:hover {
    border-color: var(--color-black);
  }
}

body.light-mode section.single-main .single-content .content-item {
  background-color: var(--color-white);
}

body.light-mode section.single-main .single-content .caption-wrap span.uppertitle {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .caption-wrap h1 {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .caption-wrap span.end_date-info {
  color: var(--color-black);
  background: #B5BFB1;
}

body.light-mode section.single-main .single-content .caption-wrap .price-wrap .price-desc span:not(.free) {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .caption-wrap .price-wrap .price-desc span.free {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button {
  border-color: var(--bg-black);
}

body.light-mode section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button::after {
  background-image: url(/img/light-mode/heart-icon-black.svg);
}

@media screen and (min-width: 576px) {
  body.light-mode section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button:hover {
    background-color: var(--bg-gray-white);
  }
}

body.light-mode section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button.in-wishlist {
  border-color: var(--color-main);
}

body.light-mode section.single-main .single-content .caption-wrap .price-wrap .event-button .like-button.in-wishlist::after {
  background-color: var(--color-main);
  background-image: url(/img/heart-icon-main.svg);
}

body.light-mode section.single-main .single-content .caption-wrap .stats-list {
  border-top-color: var(--bg-gray-light);
}

body.light-mode section.single-main .single-content .caption-wrap .stats-list .list-item span {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .caption-wrap .stats-list .list-item span:first-child {
  color: var(--color-gray-10);
}

body.light-mode section.single-main .single-content .caption-wrap .stats-list .list-item span.time::before {
  background-image: url(/img/light-mode/time-icon-black.svg);
}

body.light-mode section.single-main .single-content .caption-wrap .stats-list .list-item span.audio::before {
  background-image: url(/img/light-mode/audio-icon-black.svg);
}

body.light-mode section.single-main .single-content .caption-wrap .stats-list .list-item span.subtitles::before {
  background-image: url(/img/light-mode/subtitles-icon-black.svg);
}

body.light-mode section.single-main .single-content .about-wrap .text-wrap .show-more-wrap .show-more span {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .about-wrap .text-wrap .show-more-wrap .show-more::after {
  background-image: url(/img/light-mode/show-more-arrow-black.svg);
}

body.light-mode section.single-main .single-content .about-wrap .group-wrap {
  border-top-color: var(--bg-gray-light);
}

body.light-mode section.single-main .single-content .about-wrap .group-wrap h2 {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .about-wrap .group-wrap  .group-list .list-item .name {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .about-wrap .history-wrap {
  border-top-color: var(--bg-gray-light);
}

body.light-mode section.single-main .single-content .about-wrap .history-wrap h2 {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .about-wrap .history-wrap p {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .about-wrap .exhibition-wrap {
  border-top-color: var(--bg-gray-light);
}

body.light-mode section.single-main .single-content .about-wrap .exhibition-wrap h2 {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .about-wrap .exhibition-wrap .exhibition-list .list-item::before {
  color: var(--color-white);
}

body.light-mode section.single-main .single-content .comments-wrap h2 {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-add .comments-user span.name {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .comments-wrap form .form-item input,
body.light-mode section.single-main .single-content .comments-wrap form .form-item textarea {
  color: var(--color-black);
  background-color: var(--bg-gray-white);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-sorting .sorting-btn {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-sorting .sorting-btn::before {
  background-image: url(/img/light-mode/sorting-icon-black.svg);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-sorting .sorting-options {
  background-color: var(--color-white);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-sorting .sorting-options li a {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode section.single-main .single-content .comments-wrap .comments-sorting .sorting-options li a:hover {
    background-color: var(--bg-gray-light);
  }
}

body.light-mode section.single-main .single-content .comments-wrap .comments-sorting .sorting-options li a.active {
  background-color: var(--bg-gray-light);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap {
  background-color: var(--bg-gray-white);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .user span.name {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .caption p {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .reply-btn:hover {
    color: var(--color-main);
  }
}

body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item a.vote-btn.like-btn {
  background-image: url(/img/light-mode/like-icon-black.svg);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item a.vote-btn.dislike-btn {
  background-image: url(/img/light-mode/dislike-icon-black.svg);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .vote .vote-item span.count {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .item-wrap .meta .date {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn {
  color: var(--color-black);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list-btn::after {
  background-image: url(/img/light-mode/filter-arrow-down-sorting.svg);
}

body.light-mode section.single-main .single-content .comments-wrap .comments-list .list-item .reply-wrap .reply-comments .reply-list .list-item .item-wrap {
  background-color: var(--bg-gray-light);
}

body.light-mode section.fixed-price {
  background-color: var(--color-white);
}

body.light-mode section.fixed-price .price-wrap .price-desc span:not(.free) {
  color: var(--color-black);
}

body.light-mode section.fixed-price .price-wrap .price-desc span.free {
  color: var(--color-black);
}

body.light-mode section.fixed-price .price-wrap .event-button .like-button {
  border-color: var(--bg-black);
}

body.light-mode section.fixed-price .price-wrap .event-button .like-button::after {
  background-image: url(/img/light-mode/heart-icon-black.svg);
}

@media screen and (min-width: 576px) {
  body.light-mode section.fixed-price .price-wrap .event-button .like-button:hover {
    background-color: var(--bg-gray-white);
  }
}

body.light-mode section.fixed-price .price-wrap .event-button .like-button.in-wishlist {
  border-color: var(--color-main);
}

body.light-mode section.fixed-price .price-wrap .event-button .like-button.in-wishlist::after {
  background-color: var(--color-main);
  background-image: url(/img/heart-icon-main.svg);
}

body.light-mode section.single-more {
  background-color: var(--bg-gray-white);
}

body.light-mode section.single-more .title-wrap h2 {
  color: var(--color-black);
}

body.light-mode section.single-more .title-wrap .more-arrows .slick-arrow,
body.light-mode section.single-more .title-wrap .news-arrows .slick-arrow {
  background-color: #e7e7e780;
}

@media screen and (min-width: 576px) {
  body.light-mode section.single-more .title-wrap .more-arrows .slick-arrow:hover,
  body.light-mode section.single-more .title-wrap .news-arrows .slick-arrow:hover {
    background-color: #e7e7e780;
    border-color: var(--color-main);
  }
}

body.light-mode section.single-more .title-wrap .more-arrows .slick-arrow.slick-prev,
body.light-mode section.single-more .title-wrap .news-arrows .slick-arrow.slick-prev {
  background-image: url(/img/light-mode/slider-arrow-left-black.svg);
}

body.light-mode section.single-more .title-wrap .more-arrows .slick-arrow.slick-next,
body.light-mode section.single-more .title-wrap .news-arrows .slick-arrow.slick-next {
  background-image: url(/img/light-mode/slider-arrow-right-black.svg);
}

body.light-mode section.single-more .more-slider .exhibitions-item .item-link,
body.light-mode section.single-more .news-slider .exhibitions-item .item-link {
  background-color: var(--color-white);
}

body.light-mode section.single-more .more-slider .exhibitions-item .item-link .caption p.h2,
body.light-mode section.single-more .news-slider .exhibitions-item .item-link .caption p.h2 {
  color: var(--color-black);
}

body.light-mode section.single-more .more-slider .exhibitions-item .item-link .caption span.museum-desc::before,
body.light-mode section.single-more .news-slider .exhibitions-item .item-link .caption span.museum-desc::before {
  background-image: url(/img/light-mode/museum-icon-black.svg);
}

body.light-mode section.single-more .more-slider .exhibitions-item .item-link .caption span.price-desc,
body.light-mode section.single-more .news-slider .exhibitions-item .item-link .caption span.price-desc {
  color: var(--color-black);
}

body.light-mode section.single-more .more-slider .exhibitions-item .item-link .caption span.price-desc::before,
body.light-mode section.single-more .news-slider .exhibitions-item .item-link .caption span.price-desc::before {
  background-image: url(/img/light-mode/price-icon-black.svg);
}

body.light-mode section.single-more .more-slider .exhibitions-item .item-link .caption div.tags span,
body.light-mode section.single-more .news-slider .exhibitions-item .item-link .caption div.tags span {
  color: var(--color-black);
  background-color: var(--bg-gray-white);
}

@media screen and (min-width: 576px) {
  body.light-mode section.single-more .more-slider .exhibitions-item .item-link .event-button .like-button:hover,
  body.light-mode section.single-more .news-slider .exhibitions-item .item-link .event-button .like-button:hover {
    background-color: var(--bg-gray-white);
  }
}

body.light-mode section.single-more .more-slider .exhibitions-item .item-link .event-button .like-button.in-wishlist,
body.light-mode section.single-more .news-slider .exhibitions-item .item-link .event-button .like-button.in-wishlist {
  background-color: var(--color-main);
}

body.light-mode .modal-content {
  background-color: var(--color-white);
  border: var(--bg-gray-light);
}

body.light-mode .modal-content .modal-header .btn-close {
  background: url(/img/light-mode/filter-cross.svg);
}

body.light-mode .modal-content .modal-body.success p.h3 {
  color: var(--color-black);
}

body.light-mode .modal-content .modal-body.success p {
  color: var(--color-black);
}

@media screen and (max-width: 991px) {
  body.light-mode section.single-main .single-content .caption-wrap .price-wrap .buttons-wrap a.btn-share {
    border-color: var(--color-black);
  }

  body.light-mode section.single-main .single-content .caption-wrap .price-wrap .buttons-wrap a.btn-share::after {
    background-image: url(/img/light-mode/share-icon-sorting.svg);
  }

  @media screen and (min-width: 576px) {
    body.light-mode section.single-main .single-content .caption-wrap .price-wrap .buttons-wrap a.btn-share:hover {
     background-color: var(--bg-gray-white);
    }
  }
}

@media screen and (max-width: 767px) {
  body.light-mode section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-dots li button {
    background-color: var(--bg-gray-light);
  }

  body.light-mode section.single-main .single-content .about-wrap .history-wrap .history-slider .slick-dots li.slick-active button {
    background-color: var(--color-main);
  }

  body.light-mode section.single-more .more-slider .slick-dots li button,
  body.light-mode section.single-more .news-slider .slick-dots li button {
    background-color: var(--bg-gray-light);
  }

  body.light-mode section.single-more .more-slider .slick-dots li.slick-active button,
  body.light-mode section.single-more .news-slider .slick-dots li.slick-active button {
    background-color: var(--color-main);
  }
}

@media screen and (max-width: 575px) {
  body.light-mode section.single-main {
    background-color: var(--color-white);
  }

  body.light-mode section.single-main .single-content .content-item:not(:first-child) {
    border-top-color: var(--bg-gray-light);
  }
}

body.light-mode section.search-catalog .exhibitions-wrap .exhibitions-item.post-single .item-link .caption span.date,
body.light-mode section.profile-page .exhibitions-wrap .exhibitions-item.post-single .item-link .caption span.date {
  color: var(--color-black);
}

body.light-mode section.search-catalog.single-page-post .catalog-header span.date {
  color: var(--color-gray-10);
}

body.light-mode section.single-more .news-slider .exhibitions-item.post-single .item-link .caption span.date {
  color: var(--color-black);
}

body.light-mode section.about-info {
  background-color: var(--bg-gray-white);
}

body.light-mode section.about-info .info-title h1 {
  color: var(--color-black);
}

body.light-mode section.about-info .info-title h1 u {
  color: var(--bg-gray-white);
}

body.light-mode section.about-info .info-title h2 {
  color: var(--color-black);
}

body.light-mode section.about-reviews {
  background-color: var(--bg-gray-light);
}

body.light-mode section.about-reviews .reviews-wrap h2 {
  color: var(--color-black);
}

body.light-mode section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap {
  background-color: var(--color-white);
}

body.light-mode section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption .name {
  color: var(--color-black);
}

body.light-mode section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption .position {
  color: var(--color-black);
}

body.light-mode section.about-reviews .reviews-wrap .reviews-list .list-item .item-wrap .caption p {
  color: var(--color-black);
}

body.light-mode section.about-reviews .reviews-wrap .reviews-slider .slick-dots li button {
  background-color: var(--color-white);
}

body.light-mode section.about-reviews .reviews-wrap .reviews-slider .slick-dots li.slick-active button {
  background-color: var(--color-main);
}

body.light-mode section.about-cards {
  background-color: var(--bg-gray-white);
}

body.light-mode section.about-cards .cards-wrap h2 {
  color: var(--color-black);
}

body.light-mode section.about-cards .cards-wrap .cards-list .list-item .item-wrap {
  background-color: var(--color-white);
}

body.light-mode section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.h3 {
  color: var(--color-black);
}

body.light-mode section.about-cards .cards-wrap .cards-list .list-item .item-wrap p.text {
  color: var(--color-black);
}

body.light-mode section.about-info + section.faq {
  background-color: var(--bg-gray-light);
}

@media screen and (max-width: 575px) {
  body.light-mode section.about-cards .cards-wrap .cards-list.slick-slider .slick-dots li button {
    background-color: var(--bg-gray-light);
  }

  body.light-mode section.about-cards .cards-wrap .cards-list.slick-slider .slick-dots li.slick-active button {
    background-color: var(--color-main);
  }
}

body.light-mode section.museum-main .thumbnail::after {
  background-color: #00000066;
}

body.light-mode section.museum-main .caption .main-wrap .buttons-wrap a.btn.white {
  border-color: var(--color-white);
  color: var(--color-white);
}

@media screen and (min-width: 576px) {
  body.light-mode section.museum-main .caption .main-wrap .buttons-wrap a.btn.white:hover {
    border-color: var(--color-white);
    background-color: var(--color-white);
    color: var(--color-black);
  }
}

body.light-mode section.museum-about {
  background-color: var(--bg-gray-white);
}

body.light-mode section.museum-about .content p {
  color: var(--color-black);
}

body.light-mode section.museum-gallery {
  background-color: var(--bg-gray-white);
}

body.light-mode section.museum-gallery .museum-gallery-slider .slick-dots li button {
  background-color: var(--bg-gray-light);
}

body.light-mode section.museum-gallery .museum-gallery-slider .slick-dots li.slick-active button {
  background-color: var(--color-main);
}

@media screen and (min-width: 576px) {
  body.light-mode section.museum-gallery .museum-gallery-slider .slick-dots li button:hover {
    background-color: var(--color-main);
  }
}

body.light-mode section.museum-benefits {
  background-color: var(--bg-gray-white);
}

body.light-mode section.museum-benefits .benefits-wrap h2 {
  color: var(--color-black);
}

body.light-mode section.museum-benefits .benefits-wrap span.undertitle {
  color: var(--color-black);
}

body.light-mode section.museum-benefits .benefits-wrap .benefits-list .list-item::before {
  color: var(--bg-gray-white);
}

body.light-mode section.museum-benefits .benefits-wrap .benefits-list .list-item .caption p.text {
  color: var(--color-black);
}

body.light-mode section.museum-opportunities .thumbnail::after {
  background-color: #00000066;
}

body.light-mode section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap {
  background-color: var(--color-white);
}

body.light-mode section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap::before {
  color: var(--color-white);
}

body.light-mode section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .opportunities-item .item-wrap p.text {
  color: var(--color-black);
}

@media screen and (max-width: 767px) {
  body.light-mode section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-dots li button {
    background-color: var(--color-white);
  }

  body.light-mode section.museum-opportunities .caption .opportunities-wrap .opportunities-slider .slick-dots li.slick-active button {
    background-color: var(--color-main);
  }
}

body.light-mode section.profile-page {
  background-color: var(--bg-gray-white);
}

body.light-mode section.profile-page .profile-wrap h1 {
  color: var(--color-black);
}

body.light-mode section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap:not(:first-child) {
  border-top-color: var(--color-black);
}

body.light-mode section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap h2 {
  color: var(--color-black);
  font-weight: 400;
}

body.light-mode section.profile-page .profile-wrap .tickets-table .table-wrap .category-wrap .exhibitions-wrap .exhibitions-empty p.h3 {
  color: var(--color-black);
  font-weight: 400;
}

body.light-mode section.profile-page .profile-wrap .tickets-table table thead {
  color: var(--color-black);
  background-color: var(--color-white);
}

body.light-mode section.profile-page .profile-wrap .tickets-table table tbody {
  color: var(--color-black);
}

body.light-mode section.profile-page .profile-wrap .tickets-table table tbody tr {
  border-color: var(--bg-gray-light);
}

@media screen and (min-width: 576px) {
  body.light-mode section.profile-page .profile-wrap .tickets-table table tbody tr:hover {
    background-color: var(--bg-gray-light);
  }
}

body.light-mode section .pagination a,
body.light-mode section .pagination span {
  color: var(--color-black);
}

body.light-mode section .pagination a.current,
body.light-mode section .pagination span.current {
  border-bottom-color: var(--color-main);
  color: var(--color-white);
}

@media screen and (min-width: 576px) {
  body.light-mode section .pagination a:hover {
    background-color: var(--bg-gray-light);
    border-color: var(--bg-gray-light);
    color: var(--color-black);
  }

  body.light-mode section .pagination a.current:hover,
  body.light-mode section .pagination span.current:hover {
    border-bottom-color: var(--color-main);
  }
}

body.light-mode section .pagination a.direction-page.prev-page,
body.light-mode section .pagination span.direction-page.prev-page {
  background-image: url(/img/light-mode/pagination-arrow-left-black.svg)
}

body.light-mode section .pagination a.direction-page.next-page,
body.light-mode section .pagination span.direction-page.next-page {
  background-image: url(/img/light-mode/pagination-arrow-right-black.svg)
}

body.light-mode section.profile-page .profile-wrap .tickets-empty {
  border-color: var(--bg-gray-light);
  background-color: var(--color-white);
}

body.light-mode section.profile-page .profile-wrap .tickets-empty span.tickets-icon {
  background-color: var(--bg-gray-white);
}

body.light-mode section.profile-page .profile-wrap .tickets-empty h2 {
  color: var(--color-black);
}

body.light-mode section.profile-page .profile-wrap .tickets-empty p {
  color: var(--color-black);
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a {
  background-color: var(--color-white);
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a:hover {
    background-color: var(--bg-gray-light);
  }
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a.personal::before {
  background-image: url(/img/light-mode/personal-icon-black.svg);
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a.password::before {
  background-image: url(/img/light-mode/password-icon-black.svg);
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a.general::before {
  background-image: url(/img/light-mode/general-icon-black.svg);
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a.exhibitions::before {
  background-image: url(/img/light-mode/exhibitions-icon-black.svg);
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a.seen::before {
  background-image: url(/img/light-mode/eye-icon-black.svg);
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a.active {
  color: var(--color-main);
  border-color: var(--color-main);
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a.personal.active::before {
  background-image: url(/img/personal-icon-green.svg);
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a.password.active::before {
  background-image: url(/img/password-icon-green.svg);
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a.general.active::before {
  background-image: url(/img/general-icon-green.svg);
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a.exhibitions.active::before {
  background-image: url(/img/exhibitions-icon-green.svg);
}

body.light-mode section.profile-page .profile-wrap .profile-tabs .tabs-item a.seen.active::before {
  background-image: url(/img/eye-icon-green.svg);
}

body.light-mode section.profile-page .profile-wrap .settings-wrap .settings-item {
  background-color: var(--color-white);
}

body.light-mode section.profile-page .profile-wrap .settings-wrap .settings-item h2 {
  color: var(--color-black);
}

body.light-mode section.profile-page .profile-wrap .settings-wrap .settings-item .form-item label {
  color: var(--color-black);
}

body.light-mode section.profile-page .profile-wrap .settings-wrap .settings-item .form-item input {
  color: var(--color-black);
  background-color: var(--bg-gray-white);
  border-color: var(--bg-gray-light);
}

body.light-mode section.profile-page .profile-wrap .settings-wrap .settings-item .form-item span.hide-password {
  background-image: url(/img/light-mode/hide-password-icon-open.svg);
}

body.light-mode section.profile-page .profile-wrap .settings-wrap .settings-item .form-item span.hide-password.close {
  background-image: url(/img/light-mode/hide-password-icon-close.svg);
}

body.light-mode section.profile-page .profile-wrap .settings-wrap .settings-item .form-item .error-text {
  color: var(--color-black);
}

body.light-mode .select2-container .select2-selection {
  background-color: var(--bg-gray-white);
  border-color: var(--bg-gray-light);
}

body.light-mode .select2-container .select2-selection .select2-selection__rendered {
  color: var(--color-black);
}

body.light-mode .select2-container .select2-selection .select2-selection__arrow {
  background-image: url(/img/light-mode/select-arrow-down-black.svg);
}

body.light-mode .select2-container .select2-dropdown {
  background-color: var(--bg-gray-white);
  border-color: var(--bg-gray-light);
}

body.light-mode .select2-container .select2-dropdown.select2-dropdown--above {
  border-top-color: var(--bg-gray-light);
}

body.light-mode .select2-container .select2-dropdown .select2-search input {
  background-color: var(--bg-gray-white);
  border-color: var(--bg-gray-light);
  color: var(--color-black);
}

body.light-mode .select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option {
  color: var(--color-black);
}

body.light-mode .select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option[aria-selected=true],
body.light-mode .select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--selected,
body.light-mode .select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted {
  background-color: var(--bg-gray-light);
}

body.light-mode section.contact-main .contact-wrapper .contact-main-information h2 {
  color: var(--color-black);
}

body.light-mode section.contact-main .contact-wrapper .contact-main-information p {
  color: var(--color-black);
}

body.light-mode section.contact-main .contact-wrapper .contact-main-information p a {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode section.contact-main .contact-wrapper .contact-main-information p a:hover {
    color: var(--color-main);
  }
}

body.light-mode section.contact-main .contact-wrapper .contact-main-form h2 {
  color: var(--color-black);
}

body.light-mode section.contact-main .contact-wrapper .contact-main-form h2 a {
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode section.contact-main .contact-wrapper .contact-main-form h2 a:hover {
    color: var(--color-main);
  }
}

body.light-mode section.contact-main .contact-wrapper .contact-main-form form .form-item input {
  color: var(--color-black);
  background-color: var(--color-white);
  border-color: var(--bg-gray-light);
}

body.light-mode section.contact-main .contact-wrapper .contact-main-form form .form-item textarea {
  color: var(--color-black);
  background-color: var(--color-white);
  border-color: var(--bg-gray-light);
}

body.light-mode section.error-wrapper {
  background-color: var(--color-white);
}

body.light-mode section.error-wrapper .error-inside-wrapper h1 {
  color: var(--color-main);
}

body.light-mode section.error-wrapper .error-inside-wrapper p {
  color: var(--color-black);
}

body.light-mode .share-popup {
  background-color: var(--color-white);
  border-color: var(--bg-gray-light);
}

body.light-mode .share-popup .close-share-btn {
  filter: invert(1);
}

body.light-mode .share-popup p.h2 {
  color: var(--color-black);
}

body.light-mode .share-popup button,
body.light-mode .share-popup a {
  color: var(--color-black);
  border-color: var(--bg-black);
}

@media screen and (min-width: 576px) {
  body.light-mode .share-popup button:hover,
  body.light-mode .share-popup a:hover {
    color: var(--color-main);
    border-color: var(--color-main);
  }
}

body.light-mode .share-popup button::before,
body.light-mode .share-popup a::before {
  background-color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode .share-popup button:hover::before,
  body.light-mode .share-popup a:hover::before {
    background-color: var(--color-main);
  }
}

body.light-mode a.back-to-socials-btn {
  color: var(--color-black);
  border-color: var(--bg-gray-light);
}

body.light-mode .modal-content .modal-body button.btn {
  border: 1px solid var(--color-main);
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode .modal-content .modal-body button.btn:hover {
    background-color: var(--color-main);
    color: var(--color-black);
  }
}

body.light-mode .modal-content .modal-body button.btn.main {
  border-width: 4px;
  background-color: var(--color-main);
  color: var(--color-black);
}

@media screen and (min-width: 576px) {
  body.light-mode .modal-content .modal-body button.btn.main:hover {
    border-color: #8DBD29;
  }
}

/* Світла тема для промокодів */
body.light-mode .price-section .original-price {
  color: var(--color-black);
}

body.light-mode .price-section .final-price {
  color: var(--color-black)  ;
}

body.light-mode .promocode-form .input-group input {
  background-color: var(--color-white);
  border-color: #ced4da;
  color: var(--color-black);
}

body.light-mode .promocode-form .input-group input::placeholder {
  color: var(--color-black);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.control-icon:hover {
  background: rgba(255,255,255,0.3) !important;
}

.model3d-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  outline: none !important;
}


section.search-catalog .tags-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

section.search-catalog .tags-filter .tag-item {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--bg-second);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

section.search-catalog .tags-filter .tag-item:hover {
  background-color: var(--color-main);
  color: #000;
}

section.search-catalog .tags-filter .tag-item.active {
  background-color: var(--color-main);
  color: #000;
}
