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

:root {
	--main-background: #EAE3DF;
	--main-wrapper: #D8D1CD;
	--main-blue: #1536c4;
	--main-text: #535353;
	--main-title: #383838;
	--main-black: #000000;
	--main-white: #ffffff;
	--main-orange: #EA581D;
	--main-yellow: #ECC458;
}

html {
  scroll-behavior: initial!important;
}

.x1, .x2, .x3, .x4, .x5, .x6, .x7, .x8 {
	opacity: 0;
	transform: translateX(-70px);
}

@media screen and (max-width: 767px) {
	.x1, .x2, .x3, .x4, .x5, .x6, .x7, .x8 {
		opacity: 0;
		transform: translateX(-40px);
	}
}

.x1 {
	transition: all ease .7s .1s;
}
.x2 {
	transition: all ease .7s .4s;
}
.x3 {
	transition: all ease .7s .7s;
}
.x4 {
	transition: all ease .7s 1s;
}
.x5 {
	transition: all ease .7s 1.3s;
}
.x6 {
	transition: all ease .7s 1.6s;
}
.x7 {
	transition: all ease .7s 1.8s;
}
.x8 {
	transition: all ease .7s 2s;
}
.ready .visible.x1, 
.ready .visible.x2, 
.ready .visible.x3, 
.ready .visible.x4, 
.ready .visible.x5, 
.ready .visible.x6,
.ready .visible.x7, 
.ready .visible.x8 {
	opacity: 1;
	transform: translateX(0px);
}

.y1, .y2, .y3, .y4, .y5, .y6, .y7, .y8 {
	opacity: 0;
	transform: translateY(70px);
}

@media screen and (max-width: 767px) {
	.y1, .y2, .y3, .y4, .y5, .y6, .y7, .y8 {
		opacity: 0;
		transform: translateY(40px);
	}
}
.y1 {
	transition: all ease .7s .1s;
}
.y2 {
	transition: all ease .7s .4s;
}
.y3 {
	transition: all ease .7s .7s;
}
.y4 {
	transition: all ease .7s 1s;
}
.y5 {
	transition: all ease .7s 1.3s;
}
.y6 {
	transition: all ease .7s 1.6s;
}
.y7 {
	transition: all ease .7s 1.8s;
}
.y8 {
	transition: all ease .7s 2s;
}
.ready .visible.y1, 
.ready .visible.y2, 
.ready .visible.y3, 
.ready .visible.y4, 
.ready .visible.y5, 
.ready .visible.y6, 
.ready .visible.y7, 
.ready .visible.y8 {
	opacity: 1;
	transform: translateX(0px);
}

body {
  font-family: 'UA Brand', sans-serif;
	background-color: var(--main-background);
	font-size: 16px;
}

.site {
	overflow-x: clip;
}

.container-fluid {
	max-width: 1440px;
	margin: 0px auto;
	padding: 0px 40px;
}

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

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

header {
	padding: 20px 0px;
	background-color: var(--main-background);
	position: sticky;
	top: 0px;
	z-index: 100;
	transition: 0.2s;
}

header .header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--main-wrapper);
	border-radius: 20px;
	padding: 24px 32px;
}

header .header-wrap .header-logo {
	display: flex;
}

header .header-wrap .header-logo .logo-container {
	max-width: 230px;
	min-width: 230px;
	width: 100%;
	display: flex;
	margin-bottom: 12px;
	margin-top: -14px;
}

header .header-wrap .header-logo .logo-container img {
	width: 100%;
	object-fit: contain;
}

header .header-wrap .header-title {
	display: flex;
	align-items: center;
	margin-right: auto;
	margin-left: 40px;
}

header .header-wrap .header-title span {
	font-size: 1.125em;
	color: var(--main-blue);
}

header .header-wrap .header-lang {
	display: flex;
	align-items: center;
	margin-left: 26px;
	position: relative;
	padding: 8px 10px 0px;
	margin-top: -8px;
}

header .header-wrap .header-lang .menu {
	margin: 0px;
	list-style: none;
	padding: 0px;
}

header .header-wrap .header-lang .menu li a {
	font-size: 1.125em;
	color: var(--main-blue);
	font-weight: 400;
	text-decoration: none;
	display: flex;
	align-items: center;
}

header .header-wrap .header-lang .menu > li > a::after {
	content: '';
	display: flex;
	width: 14px;
	min-width: 14px;
	height: 8px;
	margin-left: 8px;
	background-image: url(assets/img/lang-arrow-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	transition: 0.2s;
}

header .header-wrap .header-lang:hover .menu > li > a::after {
	transform: rotate(-180deg);
}

header .header-wrap .header-lang .menu li a:hover {
	text-decoration: underline;
}

header .header-wrap .header-lang .menu li .sub-menu {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0px;
	width: 100%;
	background-color: var(--main-wrapper);
	border-radius: 0px 0px 20px 20px;
	padding: 0px 10px 8px;
	opacity: 0;
	user-select: none;
	pointer-events: none;
	transition: 0.2s;
	list-style: none;
}

header .header-wrap .header-lang:hover .menu li .sub-menu {
	opacity: 1;
	user-select: auto;
	pointer-events: all;
}

header .header-wrap .header-btn {
	display: flex;
	align-items: center;
}

a.button {
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-white);
	background-color: var(--main-orange);
	padding: 20px 32px;
	border-radius: 40px;
	border: none;
	text-decoration: none;
	transition: 0.2s;
}

a.button:hover,
a.button:focus,
a.button:active {
	background-color: var(--main-orange);
	color: var(--main-white);
	box-shadow: inset 100vw 100vh #00000022;
}

span.btn-top {
	position: fixed;
	z-index: 5;
	bottom: 26px;
	left: 40px;
	width: 52px;
	height: 52px;
	transform: rotate(-180deg);
	background-image: url(assets/img/circle-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 101% 101%;
	background-color: var(--main-background);
	border-radius: 100px;
	cursor: pointer;
	transition: 0.2s;
	opacity: 0;
	user-select: none;
	pointer-events: none;
}

span.btn-top:hover {
	box-shadow: inset 100vw 100vh #00000022;
}

span.btn-top.fixed {
	opacity: 1;
	user-select: auto;
	pointer-events: all;
}

section.main {
	padding: 30px 0px 50px;
}

section.main .main-wrap {
	position: relative;
}

section.main .main-wrap .page-title {
	display: flex;
	margin-bottom: 32px;
	padding-left: 30px;
	padding-right: 30px;
}

section.main .main-wrap .page-title .title-wrap {
	padding-right: 30px;
}

section.main .main-wrap .page-title span.uppertitle {
	font-size: 1em;
	color: var(--main-title);
	font-weight: 700;
	margin-bottom: 6px;
	display: flex;
}

section.main .main-wrap .page-title h1 {
	width: 100%;
	font-size: 4.75em;
	color: var(--main-title);
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -1.08px;
	margin-bottom: 0px;
}

section.main .main-wrap .page-title .partner-logo {
	display: flex;
	flex-direction: column;
	min-width: 240px;
}

section.main .main-wrap .page-title .partner-logo span {
	font-size: 1em;
	color: var(--main-title);
	font-weight: 700;
	margin-bottom: 20px;
	width: 75%;
}

section.main .main-wrap .page-title .partner-logo img {
	width: 100%;
	object-fit: contain;
}

section.main .main-wrap .page-thumbnail {
	width: 100%;
	height: 620px;
	border-radius: 40px;
	overflow: hidden;
}

section.main .main-wrap .page-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.main .main-wrap .audio-wrap {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	display: flex;
	max-width: calc(100% - 450px);
	width: 100%;
	padding-left: 30px;
	padding-right: 30px;
}

section.main .main-wrap .audio-wrap.fixed {
	position: fixed;
	z-index: 5;
	max-width: 1440px;
	padding: 0px 60px;
	display: flex;
	justify-content: center;
	pointer-events: none;
}

section.main .main-wrap .audio-wrap .audio-player {
	background-color: #EAE3DFcc;
	border-radius: 20px;
	width: 100%;
	padding: 12px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: all;
}

section.main .main-wrap .audio-wrap.fixed .audio-player {
	max-width: calc(100% - 450px);
	background-color: var(--main-wrapper);
}

section.main .main-wrap .audio-wrap .audio-player span.title {
	color: var(--main-title);
	margin-right: 12px;
	white-space: nowrap;
}

section.main .main-wrap .audio-wrap .audio-player span.time {
	color: var(--main-text);
	width: 42px;
	min-width: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px 12px;
}

section.main .main-wrap .audio-wrap .audio-player span.time#duration {
	margin-right: 0px;
}

section.main .main-wrap .audio-wrap .audio-player output {
	width: 30px;
	min-width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.main .main-wrap .audio-wrap .audio-player button {
	background-color: transparent;
	border: none;
	width: 50px;
	min-width: 50px;
	height: 50px;
}

section.main .main-wrap .audio-wrap .audio-player button svg {
	width: 100%;
	height: 100%;
	display: none;
}

section.main .main-wrap .audio-wrap .audio-player button svg path {
	fill: var(--main-orange);
	stroke: var(--main-orange);
}

section.main .main-wrap .audio-wrap .audio-player button img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

section.main .main-wrap .audio-wrap .audio-player button img.hiden {
	display: none;
}

section.main .main-wrap .audio-wrap .audio-player #volume-output {
	display: none;
}

section.main .main-wrap .audio-wrap .audio-player #volume-slider {
	display: none;
}

section.main .main-wrap .audio-wrap .audio-player #mute-icon {
	display: none;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"] {
	position: relative;
	-webkit-appearance: none;
	width: 100%;
	margin: 0;
	padding: 0;
	height: 13px;
	float: left;
	outline: none;
	border-radius: 8px;
	overflow: hidden;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]::-webkit-slider-runnable-track {
	width: 100%;
	height: 13px;
	cursor: pointer;
	background: #A8A8A8;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]::before {
	position: absolute;
	content: "";
	top: 0px;
	left: 0;
	width: var(--seek-before-width);
	height: 13px;
	background-color: #383838;
	cursor: pointer;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]::-webkit-slider-thumb {
	position: relative;
	-webkit-appearance: none;
	box-sizing: content-box;
	border: none;
	height: 13px;
	width: 13px;
	border-radius: 50%;
	background-color: transparent;
	cursor: pointer;
	box-shadow: none;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]:active::-webkit-slider-thumb {
	background: transparent;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]::-moz-range-track {
	width: 100%;
	height: 13px;
	cursor: pointer;
	background: #A8A8A8;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]::-moz-range-progress {
	background-color: #A8A8A8;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]::-moz-focus-outer {
	border: 0;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]::-moz-range-thumb {
	box-sizing: content-box;
	border: none;
	height: 13px;
	width: 13px;
	border-radius: 50%;
	background-color: transparent;
	cursor: pointer;
	box-shadow: none;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]:active::-moz-range-thumb {
	background: transparent;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]::-ms-track {
	width: 100%;
	height: 13px;
	cursor: pointer;
	background: transparent;
	border: solid transparent;
	color: transparent;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]::-ms-fill-lower {
	background-color: #A8A8A8;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]::-ms-fill-upper {
	background: #A8A8A8;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]::-ms-thumb {
	box-sizing: content-box;
	border: none;
	height: 13px;
	width: 13px;
	border-radius: 50%;
	background-color: transparent;
	cursor: pointer;
	box-shadow: none;
}

section.main .main-wrap .audio-wrap .audio-player input[type="range"]:active::-ms-thumb {
	background: transparent;
}

section.main .main-wrap .share-wrap {
	position: absolute;
	bottom: 26px;
	right: 20px;
}

section.main .main-wrap .share-wrap a {
	font-size: 1em;
	color: var(--main-blue);
	font-weight: 700;
	text-decoration: none;
	padding: 14px 32px 14px;
	border-radius: 40px;
	background-color: var(--main-white);
	display: flex;
	align-items: center;
}

section.main .main-wrap .share-wrap a::before {
	content: '';
	width: 28px;
	min-width: 28px;
	height: 30px;
	background-image: url(assets/img/share-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	margin-right: 12px;
}

section.about {
	padding: 20px 0px;
}

section.about .page-info {
	padding-left: 50px;
}

section.about .page-info h2 {
	color: var(--main-title);
	font-size: 2.5em;
	line-height: 120%;
	font-weight: 700;
	letter-spacing: -0.8px;
	margin-bottom: 24px;
}

section.about .page-info ol {
	display: flex;
	flex-direction: column;
	padding: 0px;
	margin: 0px;
	list-style: none;
	counter-reset: list;
}

section.about .page-info ol li {
	margin: 0px 0px 18px 0px;
	display: flex;
	align-items: flex-start;
}

section.about .page-info ol li a {
	border: 3px solid var(--main-orange);
	border-radius: 46px;
	font-size: 1.875em;
	line-height: 120%;
	font-weight: 400;
	letter-spacing: -0.06px;
	color: var(--main-title);
	text-decoration: none;
	display: flex;
	align-items: center;
	padding-right: 62px;
}

section.about .page-info ol li a::before {
	counter-increment: list;
	content: counter(list);
	border: 3px solid var(--main-orange);
	border-radius: 100%;
	width: 86px;
	min-width: 86px;
	height: 86px;
	margin-left: -3px;
	margin-top: -3px;
	margin-bottom: -3px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 42px;
	font-size: 1.1em;
	color: var(--main-orange);
	transition: 0.2s;
}

section.about .page-info ol li a:hover::before {
	background-color: var(--main-orange);
	color: var(--main-white);
}

section.about.first .about-info {
	padding-right: 50px;
}

section.about .about-info:has(h2) {
	padding-left: 46px;
}

section.about .about-info h2 {
	font-size: 3em;
	color: var(--main-title);
	font-weight: 900;
	line-height: 120%;
	letter-spacing: -0.8px;
	margin-bottom: 16px;
	position: relative;
}

section.about .about-info h2::before {
	position: absolute;
	top: 4px;
	left: -60px;
	content: '';
	width: 46px;
	height: 46px;
	background-image: url(assets/img/title-star.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

section.about .about-info ol {
	padding-left: 0px;
	margin-bottom: 16px;
	list-style-position: inside;
}

section.about .about-info ol li {
	font-size: 1.5em;
	color: var(--main-text);
	line-height: 155%;
	font-weight: 400;
}

section.about .about-info p {
	font-size: 1.25em;
	color: var(--main-text);
	line-height: 155%;
	font-weight: 400;
}

section.about .about-info .show-more span.show-more-btn:nth-child(1n + 1) {
	display: none;
}

section.about .about-info .show-more span.show-more-btn:nth-child(1n + 3) {
	display: flex;
}

section.about .about-info .show-more span.show-more-btn {
	font-size: 1.25em;
	color: var(--main-blue);
	text-align: center;
	display: flex;
	justify-content: flex-start;
	user-select: none;
	pointer-events: none;
}

section.about .about-info .show-more span.show-more-btn .more {
	display: flex;
	flex-direction: column;
	cursor: pointer;
	user-select: auto;
	pointer-events: all;
	justify-content: center;
	align-items: center;
}

section.about .about-info .show-more span.show-more-btn .more::after {
	content: '';
	display: block;
	width: 22px;
	min-width: 22px;
	height: 13px;
	background-image: url(assets/img/lang-arrow-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

section.about .about-info .show-more span.show-more-btn .less {
	display: none;
	flex-direction: column;
	cursor: pointer;
	user-select: auto;
	pointer-events: all;
	justify-content: center;
	align-items: center;
}

section.about .about-info .show-more span.show-more-btn .less::before {
	content: '';
	display: block;
	width: 22px;
	min-width: 22px;
	height: 13px;
	background-image: url(assets/img/lang-arrow-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	transform: rotate(-180deg);
}

section.about .about-info .show-more.show span.show-more-btn .more {
	display: none;
}

section.about .about-info .show-more.show span.show-more-btn .less {
	display: flex;
}

section.about .about-info .show-more p:nth-of-type(1n + 2) {
	height: 0px;
	overflow: hidden;
	margin-bottom: 0px;
}

section.about .about-info .show-more.show p:nth-of-type(1n + 2) {
	height: auto;
	overflow: visible;
	margin-bottom: 16px;
}

section.about .about-info .about-img {
	width: 100%;
	position: relative;
	margin-top: 46px;
	margin-bottom: 46px;
}

section.about .about-info .about-img img {
	width: 100%;
	object-fit: cover;
	border-radius: 40px;
}

section.about .about-info .about-img .popup-ar,
section.about .about-info .about-scene .popup-ar,
section.about .about-info .iframe-wrap .popup-ar {
	position: absolute;
	z-index: 2;
	bottom: 26px;
	right: 40px;
	width: 260px;
	height: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--main-white);
	color: var(--main-blue);
	border-radius: 100%;
	font-size: 1.125em;
	font-weight: 700;
	line-height: 120%;
	text-decoration: none;
	text-align: center;
	padding: 25px;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

section.about .about-info .about-img .popup-ar::before,
section.about .about-info .about-scene .popup-ar::before,
section.about .about-info .iframe-wrap .popup-ar::before {
	content: '';
	width: 70px;
	height: 70px;
	margin-bottom: 16px;
	background-image: url(assets/img/ar-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

section.about .about-info .about-img .popup-ar:hover,
section.about .about-info .about-scene .popup-ar:hover,
section.about .about-info .iframe-wrap .popup-ar:hover {
	box-shadow: inset 100vw 100vh #00000022;
}

section.about .about-info .about-img span.img-title {
	font-size: 1.5em;
	color: var(--main-black);
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -0.48px;
	margin-top: 8px;
	display: flex;
}

section.about .about-info .gallery {
	margin-top: 46px;
	margin-bottom: 46px;
	margin-left: -15px;
	margin-right: -15px;
	position: relative;
}

section.about .about-info .gallery .slick-list {
	overflow: visible;
}

section.about .about-info .gallery .gallery-item {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0px 15px;
}

section.about .about-info .gallery .gallery-item .thumbnail {
	width: 100%;
	height: 330px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

section.about .about-info .gallery.contain .gallery-item .thumbnail {
	background-color: var(--main-wrapper);
	height: 440px;
}

section.about .about-info .gallery.contain .gallery-item .thumbnail .thumbnail-link {
	width: 100%;
	height: 100%;
	display: flex;
	outline: none;
	padding: 20px;
}

section.about .about-info .gallery .gallery-item .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.about .about-info .gallery.contain .gallery-item .thumbnail img {
	object-fit: contain;
}

section.about .about-info .gallery .gallery-item .thumbnail .popup-vr {
	position: absolute;
	top: 25px;
	right: 25px;
	width: 92px;
	height: 92px;
	background-color: var(--main-blue);
	color: var(--main-white);
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 2.25em;
	font-weight: 900;
	line-height: 120%;
	letter-spacing: -0.96px;
	text-decoration: none;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

section.about .about-info .gallery .gallery-item .thumbnail .popup-vr:hover {
	box-shadow: inset 100vw 100vh #00000022;
}

section.about .about-info .gallery .gallery-item .caption {
	padding: 24px 26px 0px;
}

section.about .about-info .gallery .gallery-item .caption h3 {
	font-size: 2.25em;
	font-weight: 900;
	color: var(--main-title);
	line-height: 120%;
	letter-spacing: -0.8px;
}

section.about .about-info .gallery .gallery-item .caption p {
	font-size: 1.125em;
	font-weight: 400;
	color: var(--main-text);
	line-height: 155%;
	margin-bottom: 0px;
}

section.about .about-info .gallery .gallery-item .caption p b {
	font-size: 1.1em;
}

section.about .about-info .gallery .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 165px;
	transform: translateY(-50%);
	background-color: transparent;
	border: none;
	font-size: 0px;
	width: 52px;
	height: 52px;
	background-image: url(assets/img/circle-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-radius: 100px;
	transition: 0.2s;
}

section.about .about-info .gallery .slick-arrow:hover {
	box-shadow: inset 100vw 100vh #00000022;
}

section.about .about-info .gallery.contain .slick-arrow {
	top: 220px;
}

section.about .about-info .gallery .slick-arrow.slick-prev {
	left: 0px;
	transform: translateY(-50%) rotate(90deg);
}

section.about .about-info .gallery .slick-arrow.slick-next {
	right: 0px;
	transform: translateY(-50%) rotate(-90deg);
}

section.about .about-info .slider.ui-slider {
	display: flex;
	position: relative;
	background-color: var(--main-black);
	height: 48px;
	border-top: 21px solid var(--main-background);
	border-bottom: 21px solid var(--main-background);
}

section.about .about-info .slider.ui-slider.stop {
	user-select: none;
	pointer-events: none;
}

section.about .about-info .slider.ui-slider span.ui-slider-handle {
	background-color: var(--main-orange);
	width: 48px;
	height: 48px;
	border-radius: 100%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: 0.4s;
	outline: none;
}

section.about .about-info .about-img-list {
	display: flex;
	padding: 60px 150px 45px 150px;
	background-color: #57524F;
	border-radius: 40px;
	overflow: hidden;
	margin-top: 46px;
	margin-bottom: 46px;
	align-items: center;
}

section.about .about-info .about-img-list .thumbnail {
	width: 45%;
	display: flex;
	flex-direction: column;
}

section.about .about-info .about-img-list .thumbnail img {
	width: 100%;
}

section.about .about-info .about-img-list .thumbnail span.image-title {
	font-size: 1.125em;
	color: var(--main-background);
	font-weight: 400;
	line-height: 120%;
	letter-spacing: -0.36px;
	text-align: center;
	margin-top: 18px;
}

section.about .about-info .about-img-list .list-wrap {
	width: 55%;
	padding-left: 90px;
}

section.about .about-info .about-img-list .list-wrap ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
}

section.about .about-info .about-img-list .list-wrap ul li {
	color: var(--main-background);
	font-size: 1em;
	line-height: 155%;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	margin-bottom: 24px;
	padding-left: 35px;
	position: relative;
	min-height: 40px;
	justify-content: center;
}

section.about .about-info .about-img-list .list-wrap ul li::before {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	content: '';
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	height: 40px;
}

section.about .about-info .about-img-list .list-wrap ul li:nth-child(1)::before {
	background-image: url(assets/img/foundation-list-1.png);
}

section.about .about-info .about-img-list .list-wrap ul li:nth-child(2)::before {
	background-image: url(assets/img/foundation-list-2.png);
}

section.about .about-info .about-img-list .list-wrap ul li:nth-child(3)::before {
	background-image: url(assets/img/foundation-list-3.png);
}

section.about .about-info .about-img-list .list-wrap ul li:nth-child(4)::before {
	background-image: url(assets/img/foundation-list-4.png);
}

section.about .about-info .about-img-list .list-wrap ul li:nth-child(5)::before {
	background-image: url(assets/img/foundation-list-5.png);
}

section.about .about-info .about-img-list .list-wrap ul li:nth-child(6)::before {
	background-image: url(assets/img/foundation-list-6.png);
	width: 55px;
	left: -35px;
}

section.about .about-info .about-img-list .list-wrap ul li:nth-child(7)::before {
	background-image: url(assets/img/foundation-list-7.png);
}

section.about .about-info .about-img-list .list-wrap p {
	color: var(--main-background);
	font-size: 1em;
	line-height: 155%;
	font-weight: 400;
	display: flex;
	flex-direction: column;
}

section.about .about-info .about-scene {
	position: relative;
	width: 100%;
}

section.about .about-info .about-scene .iframe-wrapper {
	width: 100%;
	height: 100vh;
	border: 0;
	position: sticky;
	top: 0;
	z-index: 1;
}

section.about .about-info .about-scene .iframe-wrapper::after {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

section.about .about-info .about-scene .iframe-wrapper iframe {
	width: 100%;
	height: 100vh;
	border: 0;
}

section.about .about-info .about-scene .scene-caption {
	display: none;
}

section.about .about-info .about-scene .scene-scroller {
	width: 100%;
	height: 400vh;
	top: 0;
	z-index: 2;
}

section.banner {
	padding: 50px 0px;
}

section.banner .banner-wrap {
	background-color: var(--main-blue);
	border-radius: 20px;
	padding: 40px 25%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-image: url(assets/img/banner-img.png);
	background-position: center right -1px;
	background-repeat: no-repeat;
	background-size: auto 101%;
}

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

section.banner .banner-wrap .info-wrap h3 {
	color: var(--main-white);
	font-size: 1.5em;
	font-weight: 700;
	line-height: 130%;
	margin-bottom: 30px;
}

section.banner .banner-wrap .info-wrap p {
	color: var(--main-white);
	font-size: 1.5em;
	font-weight: 400;
	line-height: 140%;
	margin-bottom: 0px;
}

a.button.banner {
	background-color: var(--main-white);
	color: var(--main-blue);
	font-weight: 700;
	display: flex;
	align-items: center;
	padding: 0px 42px 0px 0px;
	border-radius: 100px;
	text-transform: uppercase;
	white-space: nowrap;
}

a.button.banner:hover,
a.button.banner:focus,
a.button.banner:active {
	background-color: var(--main-white);
	color: var(--main-blue);
}

a.button.banner::before {
	content: '';
	display: block;
	width: 85px;
	min-width: 85px;
	height: 85px;
	margin: -1px 18px -1px -1px;
	background-image: url(assets/img/telegram-banner.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

a.button.banner.facebook::before {
	border: 2px solid var(--main-blue);
	border-radius: 100%;
	background-image: url(assets/img/facebook-blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 45px 45px;
}

.mfp-iframe-holder .mfp-content {
	max-width: 80vw;
}

.mfp-iframe-holder .mfp-close {
	top: 0px;
	right: 0px;
	width: 60px;
	height: 60px;
	font-size: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
}

.mfp-iframe-scaler iframe {
	border-radius: 20px;
}

.mfp-image-holder .mfp-close {
	top: 40px;
	right: 0px;
	width: 60px;
	height: 60px;
	font-size: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	color: var(--main-black);
}

.mfp-image-holder .mfp-figure:after {
	border-radius: 20px;
	background-color: var(--main-wrapper);
}

.mfp-image-holder .mfp-figure figure {
	padding-top: 40px;
	padding-bottom: 40px;
}

.mfp-image-holder .mfp-figure .mfp-img {
	padding: 0px;
	border-radius: 20px;
	max-height: calc(100vh - 80px)!important;
}

@media screen and (max-width: 767px) {
	.mfp-image-holder .mfp-figure .mfp-img {
		border-radius: 12px;
	}
}

section.faq {
	padding: 20px 0px;
}

section.faq .faq-info {
	padding-left: 46px;
}

section.faq .faq-info h2 {
	font-size: 3em;
	color: var(--main-title);
	font-weight: 900;
	line-height: 120%;
	letter-spacing: -0.8px;
	margin-bottom: 16px;
	position: relative;
}

section.faq .faq-info h2::before {
	position: absolute;
	top: 4px;
	left: -60px;
	content: '';
	width: 46px;
	height: 46px;
	background-image: url(assets/img/title-star.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}

section.faq .faq-info .accordion .accordion-item {
	border: none;
	border-radius: 40px;
	overflow: hidden;
	margin-bottom: 22px;
	background-color: var(--main-wrapper);
}

section.faq .faq-info .accordion .accordion-item h3 {
	font-size: 1em;
}

section.faq .faq-info .accordion .accordion-item h3 button {
	font-size: 1.5em;
	font-weight: 400;
	line-height: normal;
	padding: 15px 18px 15px 46px;
	background-color: var(--main-wrapper);
	border: none;
	box-shadow: none;
	color: var(--main-title);
	border-radius: 100px;
}

section.faq .faq-info .accordion .accordion-item h3 button::after {
	width: 52px;
	min-width: 52px;
	height: 52px;
	background-image: url(assets/img/circle-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

section.faq .faq-info .accordion .accordion-item .accordion-body {
	padding: 30px 100px 56px 46px;
}

section.faq .faq-info .accordion .accordion-item .accordion-body p {
	font-size: 1.25em;
	line-height: 155%;
	font-weight: 400;
	color: var(--main-text);
}

section.faq .faq-info .accordion .accordion-item .accordion-body *:last-child {
	margin-bottom: 0px;
}

section.another-exhibits {
	padding: 40px 0px;
}

section.another-exhibits h2 {
	color: var(--main-title);
	font-size: 2.5em;
	line-height: 120%;
	font-weight: 700;
	letter-spacing: -0.8px;
	margin-bottom: 24px;
}

section.another-exhibits .exhibits-slider {
	display: flex;
	margin: 0px -15px;
}

section.another-exhibits .exhibits-slider .slick-list {
	overflow: visible;
	width: 100%;
}

section.another-exhibits .exhibits-slider .exhibits-item {
	padding: 0px 15px;
	width: 100%;
}

section.another-exhibits .exhibits-slider .exhibits-item .item-link {
	background-color: var(--main-wrapper);
	display: flex;
	padding: 24px 22px 24px 26px;
	border-radius: 40px;
	text-decoration: none;
	transition: 0.2s;
}

section.another-exhibits .exhibits-slider .exhibits-item .item-link:hover {
	box-shadow: inset 100vw 100vh #00000022;
}

section.another-exhibits .exhibits-slider .exhibits-item .item-link .caption {
	width: 50%;
	padding-right: 30px;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
}

section.another-exhibits .exhibits-slider .exhibits-item .item-link .caption h3 {
	font-size: 1.875em;
	color: var(--main-title);
	font-weight: 700;
	margin-bottom: auto;
}

section.another-exhibits .exhibits-slider .exhibits-item .item-link .caption span {
	font-size: 1.125em;
	color: var(--main-title);
	line-height: 155%;
	font-weight: 400;
	width: 75%;
}

section.another-exhibits .exhibits-slider .exhibits-item .item-link .thumbnail {
	width: 50%;
	height: 325px;
	border-radius: 22px;
	overflow: hidden;
}

section.another-exhibits .exhibits-slider .exhibits-item .item-link .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.another-exhibits .exhibits-slider .slick-arrow {
	position: absolute;
	z-index: 2;
	top: 50%;
	transform: translateY(-50%);
	background-color: transparent;
	border: none;
	font-size: 0px;
	width: 52px;
	height: 52px;
	background-image: url(assets/img/circle-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-radius: 100px;
	transition: 0.2s;
}

section.another-exhibits .exhibits-slider .slick-arrow:hover {
	box-shadow: inset 100vw 100vh #00000022;
}

section.another-exhibits .exhibits-slider  .slick-arrow.slick-prev {
	left: 0px;
	transform: translateY(-50%) rotate(90deg);
}

section.another-exhibits .exhibits-slider  .slick-arrow.slick-next {
	right: 0px;
	transform: translateY(-50%) rotate(-90deg);
}

section.another-exhibits .exhibits-btn {
	margin-top: 22px;
	display: flex;
	justify-content: flex-end;
}

section.another-exhibits .exhibits-btn a.button {
	padding: 32px 88px;
}

footer.footer {
	padding: 20px 0px 54px;
}

footer.footer .footer-wrap {
	background-color: var(--main-blue);
	border-radius: 40px;
	padding: 80px 80px 40px 80px;
	background-image: url(assets/img/footer-background.svg);
	background-position: left bottom -1px;
	background-repeat: no-repeat;
	background-size: 72% auto;
}

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

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

footer.footer .footer-wrap .footer-info span a {
	color: var(--main-white);
	text-decoration: none;
}

footer.footer .footer-wrap .footer-info span a:hover {
	text-decoration: underline;
}

footer.footer .footer-wrap .footer-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

footer.footer .footer-wrap .footer-links a {
	font-size: 1em;
	color: var(--main-white);
	font-weight: 700;
	line-height: normal;
	margin-bottom: 18px;
	text-decoration: none;
	word-break: break-word;
}

footer.footer .footer-wrap .footer-links a:hover {
	text-decoration: underline;
}

footer.footer .footer-wrap .row .col-12:nth-child(5),
footer.footer .footer-wrap .row .col-12:nth-child(6) {
	margin-top: 85px;
}

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

footer.footer .footer-wrap .footer-search h2 {
	font-size: 1.5em;
	color: var(--main-white);
	font-weight: 700;
	line-height: normal;
	margin-bottom: 18px;
}

footer.footer .footer-wrap .footer-search form {
	display: flex;
	align-items: center;
}

footer.footer .footer-wrap .footer-search form input {
	border-radius: 32px;
	background-color: var(--main-white);
	border: 1px solid var(--main-white);
	padding: 12px 24px;
	outline: none;
	font-size: 1em;
	color: var(--main-text);
	width: 100%;
}

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 {
  -webkit-appearance:none;
}

footer.footer .footer-wrap .footer-search form input[type="submit"] {
	margin-left: 6px;
	background-color: transparent;
	color: var(--main-white);
	text-transform: uppercase;
	padding: 12px 34px;
	width: auto;
	transition: 0.2s;
}

footer.footer .footer-wrap .footer-search form input[type="submit"]:hover {
	box-shadow: inset 100vw 100vh #00000022;
}

footer.footer .footer-wrap .footer-socials {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	height: 100%;
	margin: 0px -8px;
}

footer.footer .footer-wrap .footer-socials a {
	margin: 0px 8px;
	width: 50px;
	height: 50px;
	border: 1px solid var(--main-yellow);
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0px;
	text-decoration: none;
	transition: 0.2s;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 26px 26px;
}

footer.footer .footer-wrap .footer-socials a.facebook {
	background-image: url(assets/img/facebook-yellow.svg);
}

footer.footer .footer-wrap .footer-socials a.instagram {
	background-image: url(assets/img/instagram-yellow.svg);
}

footer.footer .footer-wrap .footer-socials a.telegram {
	background-image: url(assets/img/telegram-yellow.svg);
	background-position: center right 60%;
}

footer.footer .footer-wrap .footer-socials a:hover {
	box-shadow: inset 100vw 100vh #00000022;
}

footer.footer .footer-wrap .row .col-12:nth-child(7) {
	margin-top: 22px;
}

footer.footer .footer-wrap .footer-logo {
	display: flex;
	justify-content: flex-end;
}

footer.footer .footer-wrap .footer-logo a {
	width: 310px;
	display: flex;
}

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

.desktop-ar-modal {
	position: fixed;
	z-index: 105;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	opacity: 0;
	user-select: none;
	pointer-events: none;
	transition: 0.2s;
}

.desktop-ar-modal.show {
	opacity: 1;
	user-select: auto;
	pointer-events: all;
}

.desktop-ar-modal .modal-wrap {
	position: relative;
	z-index: 2;
	max-width: 650px;
	max-height: 100%;
	margin: 0px auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-y: auto;
	padding: 40px 0px;
}

.desktop-ar-modal .modal-wrap::-webkit-scrollbar {
	width: 0px;
}

.desktop-ar-modal .modal-wrap p {
	text-align: center;
	color: var(--main-background);
}

.desktop-ar-modal .modal-wrap p strong {
	font-size: 1em;
	font-weight: 700;
	color: var(--main-background);
	text-align: center;
}

.desktop-ar-modal .modal-wrap p em {
	font-size: 0.875em;
	color: var(--main-wrapper);
	text-align: center;
}

.desktop-ar-modal .modal-wrap img {
	max-width: 200px;
	width: 100%;
	object-fit: contain;
	margin: 40px auto;
}

.desktop-ar-modal .modal-wrap p:empty {
	font-size: 0.875em;
	font-weight: 400;
	color: var(--main-background);
	text-align: center;
}

.desktop-ar-modal .modal-wrap p a {
	color: var(--main-orange);
	font-size: 0.875em;
	font-weight: 400;
	text-align: center;
}

.desktop-ar-modal .modal-wrap > *:last-child {
	margin-bottom: 0px;
}

.desktop-ar-modal .ar-modal-close {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: #0b0b0b;
	opacity: 0.8;
}

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

	header .header-wrap {
		padding: 16px 20px;
	}

	header .header-wrap .header-logo .logo-container {
		max-width: 200px;
		min-width: 200px;
		margin-top: -10px;
	}

	header .header-wrap .header-title {
		margin-left: 24px;
	}

	header .header-wrap .header-lang {
		margin-left: 22px;
	}

	a.button {
		padding: 18px 28px;
	}

	section.main .main-wrap .page-title h1 {
		font-size: 4em;
	}

	section.main .main-wrap .page-thumbnail {
		height: 540px;
	}

	section.about .page-info ol li a {
		font-size: 1.75em;
		padding-right: 46px;
	}

	section.about .page-info ol li a::before {
		width: 68px;
    min-width: 68px;
    height: 68px;
		margin-right: 26px;
	}

	section.banner .banner-wrap {
		padding: 36px 20%;
	}

	a.button.banner::before {
		width: 68px;
    min-width: 68px;
    height: 68px;
	}

	a.button.banner.facebook::before {
		background-size: 38px 38px;
	}

	section.about .about-info h2 {
		font-size: 2.75em;
	}

	section.about .about-info .about-img .popup-ar,
	section.about .about-info .about-scene .popup-ar,
	section.about .about-info .iframe-wrap .popup-ar {
		right: 30px;
		width: 220px;
    height: 220px;
	}

	section.about .about-info .about-img .popup-ar::before,
	section.about .about-info .about-scene .popup-ar::before,
	section.about .about-info .iframe-wrap .popup-ar::before {
		width: 56px;
    height: 56px;
	}

	section.about .about-info .gallery .gallery-item .thumbnail {
		height: 280px;
	}

	section.about .about-info .gallery .gallery-item .caption h3 {
		font-size: 2em;
	}

	section.about .about-info .gallery .slick-arrow {
		top: 140px;
	}

	section.about .about-info .gallery.contain .gallery-item .thumbnail {
		height: 380px;
	}

	section.about .about-info .gallery.contain .slick-arrow {
		top: 190px;
	}

	section.about .about-info .about-img-list {
		padding: 60px 90px 45px;
	}

	section.faq .faq-info h2 {
		font-size: 2.75em;
	}

	section.faq .faq-info .accordion .accordion-item .accordion-body {
		padding: 20px 100px 42px 46px;
	}
	
	section.another-exhibits .exhibits-slider .exhibits-item .item-link .caption h3 {
		font-size: 1.75em;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link .thumbnail {
		height: 260px;
	}

	section.another-exhibits .exhibits-btn a.button {
		padding: 26px 64px;
	}

	footer.footer {
		padding-bottom: 42px;
	}

	footer.footer .footer-wrap {
		padding: 60px 60px 40px 60px;
	}

	span.btn-top {
		left: 30px;
	}
}

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

	header {
		padding: 12px 0px;
	}

	header .header-wrap .header-logo .logo-container {
		max-width: 180px;
		min-width: 180px;
	}

	header .header-wrap .header-title {
		margin-left: 18px;
	}

	header .header-wrap .header-title span {
		font-size: 1em;
	}

	header .header-wrap .header-lang {
		margin-left: 14px;
	}

	header .header-wrap .header-lang .menu li a {
		font-size: 1em;
	}

	a.button {
		font-size: 1em;
		padding: 16px 22px;
	}

	section.main {
		padding: 20px 0px 35px;
	}

	section.main .main-wrap .page-title {
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 24px;
	}

	section.main .main-wrap .page-title h1 {
		font-size: 3em;
	}

	section.main .main-wrap .page-thumbnail {
		height: 430px;
	}

	section.main .main-wrap .audio-wrap.fixed {
		padding: 0px 40px;
	}

	section.main .main-wrap .audio-wrap.fixed .audio-player {
		max-width: calc(100% - 410px);
	}

	section.main .main-wrap .audio-wrap .audio-player button {
		width: 40px;
    min-width: 40px;
    height: 40px;
	}

	section.main .main-wrap .share-wrap a {
		padding: 14px 26px;
	}

	section.main .main-wrap .share-wrap a::before {
		width: 22px;
    min-width: 22px;
    height: 24px;
	}

	section.about .page-info {
		padding-left: 25px;
	}

	section.about .page-info h2 {
		font-size: 2em;
	}

	section.about .page-info ol li a {
		font-size: 1.5em;
		padding-right: 36px;
	}

	section.about .page-info ol li a::before {
		width: 58px;
		min-width: 58px;
		height: 58px;
		margin-right: 18px;
	}

	section.about.first .about-info {
		padding-right: 25px;
	}

	section.about .about-info:has(h2) {
		padding-left: 36px;
	}

	section.about .about-info h2 {
		font-size: 2.25em;
	}

	section.about .about-info h2::before {
		width: 36px;
		height: 36px;
		left: -50px;
	}

	section.about .about-info p {
		font-size: 1.125em;
	}

	section.banner {
		padding: 35px 0px;
	}

	section.banner .banner-wrap {
		padding: 24px 15%;
	}

	section.banner .banner-wrap .info-wrap p {
		font-size: 1.25em;
	}

	a.button.banner {
		padding-right: 36px;
	}

	a.button.banner::before {
		width: 58px;
		min-width: 58px;
		height: 58px;
	}

	a.button.banner.facebook::before {
		border: 1px solid var(--main-blue);
		background-size: 32px 32px;
	}

	span.btn-top {
		left: 20px;
	}

	section.about .about-info .about-img .popup-ar, 
	section.about .about-info .about-scene .popup-ar,
	section.about .about-info .iframe-wrap .popup-ar {
		right: 20px;
		width: 180px;
		height: 180px;
		font-size: 1em;
		padding: 18px;
	}

	section.about .about-info .about-img .popup-ar::before, 
	section.about .about-info .about-scene .popup-ar::before,
	section.about .about-info .iframe-wrap .popup-ar::before {
		width: 42px;
		height: 42px;
		margin-bottom: 12px;
	}

	span.btn-top {
		width: 44px;
		height: 44px;
	}

	section.about .about-info .gallery {
		margin-top: 36px;
		margin-bottom: 0px;
	}

	section.about .about-info .gallery .gallery-item .thumbnail {
		height: 230px;
	}

	section.about .about-info .gallery .slick-arrow {
		top: 115px;
		width: 44px;
		height: 44px;
	}

	section.about .about-info .gallery .gallery-item .caption {
		padding: 18px 16px 0px;
	}

	section.about .about-info .gallery .gallery-item .caption h3 {
		font-size: 1.75em;
	}

	section.about .about-info .gallery .gallery-item .caption p {
		font-size: 1em;
	}

	section.about .about-info .about-img-list {
		margin-top: 36px;
		margin-bottom: 36px;
	}

	section.about .about-info .about-img-list .thumbnail {
		width: 50%;
	}

	section.about .about-info .about-img-list .list-wrap {
		padding-left: 60px;
		width: 50%;
	}

	section.about .about-info .gallery.contain .gallery-item .thumbnail {
		height: 340px;
	}

	section.about .about-info .gallery.contain .slick-arrow {
		top: 170px;
	}

	section.about .about-info .gallery .gallery-item .thumbnail .popup-vr {
		top: 20px;
		right: 20px;
		width: 76px;
		height: 76px;
		font-size: 1.75em;
	}

	section.faq .faq-info {
		padding-left: 36px;
	}

	section.faq .faq-info h2 {
		font-size: 2.25em;
	}

	section.faq .faq-info h2::before {
		width: 36px;
		height: 36px;
		left: -50px;
	}

	section.faq .faq-info .accordion .accordion-item h3 button {
		font-size: 1.25em;
		padding: 15px 18px 15px 36px;
	}

	section.faq .faq-info .accordion .accordion-item h3 button::after {
		width: 44px;
		min-width: 44px;
		height: 44px;
	}

	section.faq .faq-info .accordion .accordion-item .accordion-body {
		padding: 15px 90px 28px 36px;
	}

	section.faq .faq-info .accordion .accordion-item .accordion-body p {
		font-size: 1.125em;
	}

	section.another-exhibits {
		padding: 30px 0px;
	}

	section.another-exhibits h2 {
		font-size: 2em;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link {
		padding: 20px 18px 20px 22px;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link .caption {
		padding: 0px 20px 20px 0px;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link .caption h3 {
		font-size: 1.5em;
		word-break: break-word;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link .thumbnail {
		height: 220px;
	}

	section.another-exhibits .exhibits-btn a.button {
		padding: 22px 48px;
	}

	footer.footer .footer-wrap {
		padding: 40px 40px 30px 40px;
	}

	footer.footer .footer-wrap .footer-search h2 {
		font-size: 1.25em;
	}

	footer.footer .footer-wrap .row .col-12:nth-child(5), 
	footer.footer .footer-wrap .row .col-12:nth-child(6) {
		margin-top: 35px;
	}

	footer.footer .footer-wrap .footer-search form input[type="submit"] {
		padding: 12px 26px;
	}

	footer.footer .footer-wrap .footer-logo a {
		width: 280px;
	}
}

@media screen and (max-width: 991px) {
	header .header-wrap .header-title {
		display: none;
	}

	header .header-wrap .header-btn {
		margin-left: auto;
	}

	section.main .main-wrap .page-title {
		flex-direction: column;
		padding: 0px;
	}

	section.main .main-wrap .page-title .title-wrap {
		padding: 0px;
	}

	section.main .main-wrap .page-title h1 {
		font-size: 2.75em;
		margin-bottom: 24px;
	}

	section.main .main-wrap .page-title .partner-logo span {
		margin-bottom: 8px;
		width: 100%;
	}

	section.main .main-wrap .page-title .partner-logo img {
		max-width: 240px;
	}

	section.main .main-wrap .page-thumbnail {
		height: 360px;
	}

	section.about .page-info {
		padding: 0px;
	}

	section.about .page-info ol {
		margin-bottom: 24px;
	}

	section.about.first .about-info {
		padding: 0px;
	}
	
	section.banner .banner-wrap {
		padding: 24px 10%;
	}

	section.about .about-info:has(h2) {
		padding-left: 0px;
	}

	section.about .about-info .about-img .popup-ar, 
	section.about .about-info .about-scene .popup-ar,
	section.about .about-info .iframe-wrap .popup-ar {
		width: 80px;
		height: 80px;
		font-size: 0px;
		padding: 10px;
	}

	section.about .about-info .about-img .popup-ar::before, 
	section.about .about-info .about-scene .popup-ar::before,
	section.about .about-info .iframe-wrap .popup-ar::before {
		margin-bottom: 0px;
	}

	section.main .main-wrap .audio-wrap.fixed .audio-player {
		max-width: calc(100% - 180px);
	}

	section.about .about-info .gallery {
		margin: 36px -10px 0px;
	}

	section.about .about-info .gallery .gallery-item {
		padding: 0px 10px;
	}

	section.about .about-info .gallery .gallery-item .caption {
		padding: 12px 0px 0px;
	}

	section.about .about-info .gallery .gallery-item .thumbnail {
		height: 250px;
	}

	section.about .about-info .gallery .slick-arrow {
		top: 125px;
	}

	section.about .about-info .gallery.contain .gallery-item .thumbnail {
		height: 300px;
	}

	section.about .about-info .gallery.contain .slick-arrow {
		top: 150px;
	}

	section.about .about-info .about-img-list {
		padding: 40px 50px;
	}

	.mfp-iframe-holder .mfp-content {
		max-width: calc(100% - 40px);
	}

	section.faq .faq-info {
		padding-left: 0px;
	}

	section.another-exhibits .exhibits-slider {
		margin: 0px -10px;
	}

	section.another-exhibits .exhibits-slider .slick-list {
		overflow: visible;
		width: 100%;
	}

	section.another-exhibits .exhibits-slider .slick-arrow {
		width: 44px;
		height: 44px;
	}

	section.another-exhibits .exhibits-slider .exhibits-item {
		width: 100%;
		display: flex;
		padding: 0px 10px;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link .thumbnail {
		height: 200px;
	}

	footer.footer .footer-wrap .row .col-12:nth-child(3), 
	footer.footer .footer-wrap .row .col-12:nth-child(4) {
		margin-top: 25px;
	}
}

@media screen and (max-width: 767px) {
	.mfp-iframe-holder .mfp-content {
    max-width: none;
		height: calc(100% - 40px);
	}

	.mfp-iframe-holder .mfp-close {
		width: 40px;
		height: 40px;
	}

	.mfp-iframe-scaler iframe {
    border-radius: 12px;
	}

	.mfp-image-holder .mfp-close {
		width: 40px;
		height: 40px;
	}

	.mfp-image-holder .mfp-figure:after {
		border-radius: 12px;
	}

	header .header-wrap {
		border-radius: 12px;
	}

	section.main {
		padding: 20px 0px;
	}

	section.main .main-wrap .page-title h1 {
		font-size: 2.5em;
	}

	section.main .main-wrap .page-thumbnail {
		height: 340px;
		border-radius: 20px;
	}

	section.main .main-wrap .audio-wrap.fixed {
		padding: 0px 30px;
	}

	section.main .main-wrap .audio-wrap.fixed .audio-player {
		border-radius: 6px;
		max-width: calc(100% - 172px);
	}

	section.about .page-info h2 {
		font-size: 1.75em;
		margin-bottom: 18px;
	}

	section.about .page-info ol li {
		margin-bottom: 14px;
	}

	section.about .page-info ol li a {
		font-size: 1.25em;
		border-width: 2px;
	}

	section.about .page-info ol li a::before {
		width: 52px;
		min-width: 52px;
		height: 52px;
		border-width: 2px;
		margin-top: -2px;
		margin-left: -2px;
		margin-bottom: -2px;
	}

	section.about .about-info h2 {
		padding-left: 46px;
		font-size: 2em;
	}

	section.about .about-info h2::before {
		left: 0px;
		top: 2px;
	}

	section.banner .banner-wrap {
		padding: 24px;
		flex-direction: column;
		background-position: right -1px bottom;
		background-size: auto 50%;
		border-radius: 12px;
	}

	section.banner .banner-wrap .info-wrap {
		margin-bottom: 18px;
	}

	a.button.banner::before {
		width: 52px;
		min-width: 52px;
		height: 52px;
	}

	a.button.banner.facebook::before {
		background-size: 28px 28px;
	}

	section.about .about-info .about-img .popup-ar,
	section.about .about-info .about-scene .popup-ar,
	section.about .about-info .iframe-wrap .popup-ar {
		width: 75px;
		height: 75px;
	}

	section.about .about-info .gallery .gallery-item .thumbnail {
		height: 230px;
		border-radius: 12px;
	}

	section.about .about-info .gallery .slick-arrow {
		top: 115px;
	}

	section.about .about-info .gallery.contain .gallery-item .thumbnail {
		height: 260px;
	}

	section.about .about-info .gallery.contain .slick-arrow {
		top: 130px;
	}

	section.about .about-info .gallery .gallery-item .caption h3 {
		font-size: 1.5em;
	}

	section.about .about-info .gallery .gallery-item .thumbnail .popup-vr {
		width: 66px;
		height: 66px;
	}

	section.about .about-info .about-img-list {
		border-radius: 20px;
		flex-direction: column;
	}

	section.about .about-info .about-img-list .thumbnail {
		width: 100%;
		margin-bottom: 22px;
	}

	section.about .about-info .about-img-list .list-wrap {
		width: 100%;
		padding-left: 20px;
	}

	section.about .about-info .about-img-list .list-wrap ul li {
		margin-bottom: 12px;
	}

	section.faq .faq-info h2 {
		padding-left: 46px;
		font-size: 2em;
	}

	section.faq .faq-info h2::before {
		left: 0px;
		top: 2px;
	}

	section.faq .faq-info .accordion .accordion-item {
		margin-bottom: 14px;
	}

	section.another-exhibits {
		padding: 20px 0px;
	}

	section.another-exhibits h2 {
		font-size: 1.75em;
		margin-bottom: 14px;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link {
		border-radius: 20px;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link .thumbnail {
		border-radius: 12px;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link .caption h3 {
		font-size: 1.25em;
	}

	section.another-exhibits .exhibits-btn a.button {
		padding: 20px 36px;
	}

	span.btn-top.fixed {
		bottom: 15px;
	}

	section.main .main-wrap .audio-wrap.fixed {
		bottom: 15px;
	}

	section.about .about-info .about-img .popup-ar, 
	section.about .about-info .about-scene .popup-ar,
	section.about .about-info .iframe-wrap .popup-ar {
		bottom: 15px;
	}

	footer.footer .footer-wrap {
		padding: 30px 30px 40px;
		background-size: 100% auto;
		border-radius: 20px;
	}

	footer.footer .footer-wrap .row .col-12:nth-child(1n+2) {
		margin-top: 18px;
	}

	footer.footer .footer-wrap .footer-socials {
		justify-content: flex-start;
	}

	footer.footer .footer-wrap .footer-logo {
		justify-content: flex-start;
	}
}

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

	header .header-wrap {
		padding: 16px 15px;
	}

	header .header-wrap .header-logo .logo-container {
		max-width: 130px;
		min-width: 130px;
		margin-bottom: 4px;
	}

	header .header-wrap .header-btn {
		display: none;
	}

	header .header-wrap .header-lang .menu li a {
		font-size: 0.875em;
	}

	section.main {
		padding: 10px 0px;
	}

	section.main .main-wrap .page-title h1 {
		font-size: 1.875em;
		margin-bottom: 18px;
	}

	section.main .main-wrap .page-title .partner-logo img {
		max-width: 180px;
	}

	section.main .main-wrap .page-thumbnail {
		height: 260px;
	}

	section.main .main-wrap .share-wrap {
		right: 10px;
		bottom: 12px;
		display: none;
	}

	section.main .main-wrap .share-wrap a {
		font-size: 0.875em;
		padding: 10px 18px;
	}

	section.about .page-info ol li {
		margin-bottom: 6px;
	}

	section.about {
		padding: 10px 0px;
	}

	section.about .page-info h2 {
		font-size: 1.375em;
	}

	section.about .page-info ol li a {
		font-size: 1em;
	}

	section.about .about-info h2 {
		font-size: 1.5em;
		padding-left: 36px;
	}

	section.about .about-info h2::before {
		width: 28px;
		height: 28px;
		top: 0px;
	}

	section.about .about-info p {
		font-size: 1em;
	}

	section.about .about-info .show-more span.show-more-btn {
		font-size: 1.125em;
	}

	section.banner {
		padding: 20px 0px;
	}

	section.banner .banner-wrap .info-wrap p {
		font-size: 1.125em;
	}

	a.button.banner {
		font-size: 0.875em;
	}

	section.main .main-wrap .audio-wrap.fixed .audio-player {
		justify-content: center;
		padding: 8px 16px;
		background-color: var(--main-white);
		max-width: none;
	}

	span.btn-top.fixed {
		display: none;
	}

	section.main .main-wrap .audio-wrap .audio-player button {
		height: 35px;
		width: 35px;
		min-width: 35px;
	}

	section.main .main-wrap .audio-wrap .audio-player span.title {
		font-size: 0.875em;
		margin-right: 8px;
	}

	section.main .main-wrap .audio-wrap .audio-player span.time {
		display: none;
	}

	section.main .main-wrap .audio-wrap .audio-player input[type="range"] {
		margin-left: 8px;
	}

	section.about .about-info .about-img .popup-ar, 
	section.about .about-info .about-scene .popup-ar,
	section.about .about-info .iframe-wrap .popup-ar {
		width: 50px;
		height: 50px;
		padding: 5px;
	}

	section.about .about-info .iframe-wrap .popup-ar {
		bottom: 50px;
	}

	section.about .about-info .about-img .popup-ar::before,
	section.about .about-info .about-scene .popup-ar::before,
	section.about .about-info .iframe-wrap .popup-ar::before {
		width: 28px;
		height: 28px;
	}

	section.about .about-info .gallery .gallery-item .thumbnail {
		height: 220px;
	}

	section.about .about-info .gallery .slick-arrow {
		top: 110px;
		width: 36px;
		height: 36px;
	}

	section.about .about-info .gallery .slick-arrow.slick-prev {
		left: 5px;
	}
	
	section.about .about-info .gallery .slick-arrow.slick-next {
		right: 5px;
	}

	section.another-exhibits .exhibits-slider  .slick-arrow.slick-prev {
		left: 5px;
	}
	
	section.another-exhibits .exhibits-slider  .slick-arrow.slick-next {
		right: 5px;
	}

	section.about .about-info .gallery .gallery-item .caption h3 {
		font-size: 1.375em;
	}

	section.about .about-info .gallery .gallery-item .thumbnail .popup-vr {
		width: 54px;
		height: 54px;
		top: 15px;
		right: 15px;
		font-size: 1.5em;
	}

	section.about .about-info .about-img-list {
		padding: 20px;
	}

	section.about .about-info .about-img-list .thumbnail span.image-title {
		font-size: 1em;
	}

	section.about .about-info .about-img-list .list-wrap {
		padding-left: 0px;
	}

	section.about .about-info .about-img-list .list-wrap ul li {
		font-size: 0.875em;
	}

	section.about .about-info .about-img-list {
		margin-top: 26px;
		margin-bottom: 26px;
		width: calc(100% + 20px);
		margin-left: -10px;
		margin-right: -10px;
		border-radius: 0px;
	}

	section.about .about-info .iframe-wrap {
		padding-top: 70vh;
		position: relative;
	}

	section.about .about-info .iframe-wrap iframe {
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
	}

	section.banner .banner-wrap {
		background-image: none;
	}

	section.faq {
		padding: 20px 0px 10px;
	}

	section.faq .faq-info h2 {
		font-size: 1.5em;
    padding-left: 36px;
	}

	section.faq .faq-info h2::before {
		width: 28px;
    height: 28px;
    top: 0px;
	}

	section.faq .faq-info .accordion .accordion-item {
		border-radius: 20px;
	}

	section.faq .faq-info .accordion .accordion-item h3 button {
		font-size: 1.125em;
		border-radius: 20px;
		padding: 12px 12px 12px 16px;
	}

	section.faq .faq-info .accordion .accordion-item h3 button::after {
		width: 36px;
		min-width: 36px;
		height: 36px;
	}

	section.faq .faq-info .accordion .accordion-item .accordion-body {
		padding: 12px;
	}

	section.faq .faq-info .accordion .accordion-item .accordion-body p {
		font-size: 1em;
	}

	section.another-exhibits {
		padding: 10px 0px;
	}

	section.another-exhibits h2 {
		font-size: 1.375em;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link {
		padding: 12px;
		flex-direction: column-reverse;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link .thumbnail {
		width: 100%;
		height: 160px;
	}

	section.another-exhibits .exhibits-slider .slick-arrow {
		top: 92px;
		width: 36px;
		height: 36px;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link .caption {
		width: 100%;
		padding: 12px 0px 0px;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link .caption h3 {
		font-size: 1.125em;
	}

	section.another-exhibits .exhibits-slider .exhibits-item .item-link .caption span {
		font-size: 1em;
		width: 100%;
		margin-top: 12px;
	}

	section.another-exhibits .exhibits-btn {
		margin-top: 18px;
	}

	section.another-exhibits .exhibits-btn a.button {
		font-size: 0.875em;
		width: 100%;
		padding: 18px 24px;
		text-align: center;
	}

	footer.footer {
		padding-bottom: 0px;
	}

	footer.footer .footer-wrap {
		padding: 20px 20px 40px;
		margin-left: -10px;
		margin-right: -10px;
		width: calc(100% + 20px);
		border-radius: 0px;
	}

	footer.footer .footer-wrap .footer-links a:last-child {
		margin-bottom: 8px;
	}

	footer.footer .footer-wrap .footer-search form {
		flex-direction: column;
	}

	footer.footer .footer-wrap .footer-search form input {
		font-size: 0.875em;
	}

	footer.footer .footer-wrap .footer-search form input[type="submit"] {
		width: 100%;
		margin-left: 0px;
		margin-top: 12px;
	}

	span.btn-top.fixed {
		width: 40px;
		height: 40px;
	}

	footer.footer .footer-wrap .footer-info span {
		margin-bottom: 8px;
	}

	section.about .about-info .show-more p:first-child {
		max-height: 300px;
		overflow: hidden;
		position: relative;
	}

	section.about .about-info .show-more p:first-child::after {
		position: absolute;
		content: '';
		left: 0px;
		bottom: 0px;
		width: 100%;
		height: 30px;
		background: linear-gradient(0deg, rgba(234,227,223,1) 0%, rgba(234,227,223,0.7) 60%, rgba(234,227,223,0) 100%);
	}

	section.about .about-info .show-more.show p:first-child {
		max-height: none;
	}

	section.about .about-info .show-more.show p:first-child::after {
		display: none;
	}

	section.main .main-wrap .audio-wrap.fixed {
		padding: 0px 10px;
	}
}

section.iframe-single {
	position: relative;
	padding-top: 100dvh;
	width: 100%;
}

section.iframe-single iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

section.ar-model-wrap {
	position: relative;
	padding-top: 100dvh;
	width: 100%;
	background-color: var(--main-background);
}

section.ar-model-wrap model-viewer,
section.ar-model-wrap iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	outline: none;
}

section.ar-model-wrap .desktop-ar-modal-single {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 5;
	opacity: 0;
	display: flex;
	align-items: center;
	user-select: none;
	pointer-events: none;
	transition: 0.2s;
}

section.ar-model-wrap .desktop-ar-modal-single.show {
	opacity: 1;
	user-select: auto;
	pointer-events: all;
}

section.ar-model-wrap .desktop-ar-modal-single .modal-wrap {
	position: relative;
	z-index: 2;
	max-width: 450px;
	max-height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-y: auto;
	padding: 40px 0;
	background-color: var(--main-background);
	border-radius: 20px;
	padding: 50px 24px 26px;
}

section.ar-model-wrap .desktop-ar-modal-single .modal-wrap .ar-modal-close {
	position: absolute;
	right: 15px;
	top: 15px;
	width: 25px;
	height: 25px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

section.ar-model-wrap .desktop-ar-modal-single .modal-wrap .ar-modal-close::before, 
section.ar-model-wrap .desktop-ar-modal-single .modal-wrap .ar-modal-close::after {
	content: '';
	position: absolute;
	height: 3px;
	width: 120%;
	background-color: var(--main-text);
}

section.ar-model-wrap .desktop-ar-modal-single .modal-wrap .ar-modal-close::before {
	transform: rotate(-45deg);
}

section.ar-model-wrap .desktop-ar-modal-single .modal-wrap .ar-modal-close::after {
	transform: rotate(45deg);
}

section.ar-model-wrap .desktop-ar-modal-single .modal-wrap p.h3 {
	font-size: 1.25em;
	font-weight: 700;
	position: relative;
	margin-bottom: 16px;
}

section.ar-model-wrap .desktop-ar-modal-single .modal-wrap p {
	font-size: 0.875em;
	text-align: center;
	color: var(--main-text);
}

section.ar-model-wrap .desktop-ar-modal-single .modal-wrap .qrcprowrapper {
	max-width: 180px;
	max-height: 180px;
	width: 100%;
	height: 100%;
	margin: 16px auto;
}

section.ar-model-wrap .desktop-ar-modal-single .modal-wrap .qrcprowrapper .qrc_qrcode {
	width: 100%;
	height: 100%;
}

section.ar-model-wrap .desktop-ar-modal-single .modal-wrap .qrcprowrapper .qrc_qrcode img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	background-color: var(--main-background);
}

section.ar-model-wrap .desktop-ar-modal-single > .ar-modal-close {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--main-black);
	opacity: 0.8;
}

section.ar-model-wrap model-viewer #ar-button {
	display: flex !important;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 15px;
	display: flex;
	align-items: center;
	background-color: var(--main-orange);
	border-radius: 200px;
	border: none;
	box-shadow: none;
	padding: 8px 14px 9px;
	font-size: 0.875em;
	font-weight: 400;
	line-height: 120%;
	text-align: center;
	color: var(--main-white);
	outline: none;
	text-decoration: none;
	white-space: nowrap;
	transition: 0.4s;
	display: none;
}

section.ar-model-wrap model-viewer #ar-button::before {
	content: '';
	width: 20px;
	min-width: 20px;
	height: 20px;
	margin-right: 8px;
	background-image: url(assets/img/ar-icon-white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

section.error-404 {
	padding: 100px 0px;
}

section.error-404 h1 {
	font-size: 4.75em;
	color: var(--main-title);
	font-weight: 700;
	line-height: 120%;
	text-align: center;
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
}

section.error-404 span {
	font-size: 2.5em;
	color: var(--main-text);
	font-weight: 400;
	line-height: 120%;
	display: flex;
	justify-content: center;
}

section.error-404 p {
	font-size: 1.5em;
	color: var(--main-text);
	font-weight: 400;
	line-height: 140%;
	text-align: center;
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

section.error-404 p a {
	color: var(--main-text);
}

@media screen and (max-width: 1399px) {
	section.error-404 {
		padding: 80px 0px;
	}

	section.error-404 h1 {
		font-size: 4em;
	}
}

@media screen and (max-width: 1199px) {
	section.error-404 {
		padding: 60px 0px;
	}

	section.error-404 h1 {
		font-size: 3em;
		margin-bottom: 30px;
	}

	section.error-404 span {
		font-size: 2em;
	}

	section.error-404 p {
		font-size: 1.25em;
		margin-top: 14px;
	}
}

@media screen and (max-width: 991px) {
	section.error-404 {
		padding: 40px 0px;
	}

	section.error-404 h1 {
		font-size: 2.75em;
	}
}

@media screen and (max-width: 767px) {
	section.error-404 {
		padding: 30px 0px;
	}

	section.error-404 h1 {
		font-size: 2.5em;
		margin-bottom: 20px;
	}

	section.error-404 span {
		font-size: 1.75em;
	}
}

@media screen and (max-width: 575px) {
	section.error-404 {
		padding: 20px 0px;
	}

	section.error-404 h1 {
		font-size: 1.875em;
		margin-bottom: 14px;
	}

	section.error-404 span {
		font-size: 1.375em;
	}

	section.error-404 p {
		font-size: 1.125em;
		margin-top: 8px;
	}
}