

/* Start:/local/templates/toyama/components/bitrix/main.userconsent.request/cookie/style.css?17882681791174*/
.cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1100;
	background: #0a0b0d;
	color: #fff;
	box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.28);
}

.cookie-consent[hidden] {
	display: none !important;
}

.cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.cookie-consent__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
}

.cookie-consent__text a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.cookie-consent__text a:hover {
	color: var(--red, #df0024);
}

.cookie-consent__btn {
	flex: 0 0 auto;
	height: 40px;
	padding: 0 1.75rem;
	border: 0;
	border-radius: 20px;
	background: var(--red, #df0024);
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.15s ease;
}

.cookie-consent__btn:hover {
	background: var(--red-focus, #ff0024);
}

@media (max-width: 768px) {
	.cookie-consent__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.cookie-consent__btn {
		width: 100%;
	}
}

/* End */


/* Start:/local/templates/toyama/styles.css?17878167709704*/
/* === base.css === */
:root {
	font-family: 'Ubuntu', sans-serif;
	--font-family-1: 'Ubuntu', sans-serif;
	--font-family-2: 'Nunito Sans', sans-serif;
	--transparent-gray: #000000A0;
	--gold: gold;
	--red: #df0024;
	--red-focus: #ff0024;
	--header-footer: #0A0B0D;
}

* {
	box-sizing: border-box;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

html,
body {
	min-height: 100vh;
}

body {
	display: flex;
	flex-direction: column;
	margin: 0;
	font-size: 15px;
	font-family: var(--font-family-1);
	background: #FFFFFF;
	font-variant-ligatures: none;
}

body::before {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	content: "";
	background-size: 100%;
	opacity: 0.03;
	pointer-events: none;
}

img {
	max-width: 100%;
}

.site-main {
	flex: 1 0 auto;
}

.page-content {
	padding-top: 2rem;
	padding-bottom: 3rem;
}

.page-content h1 {
	margin: 0 0 1rem;
	font-size: 2rem;
	font-weight: 500;
}

.page-content p {
	margin: 0;
	line-height: 1.6;
}

#panel {
	position: relative;
	z-index: 10000;
}

.tactic-font {
	font-family: "Science Gothic", sans-serif;
}

.modal-holder {
	display: none;
}

.d-flex {
	display: flex;
}

.align-items-center {
	align-items: center;
}

.ml-3 {
	margin-left: 1rem;
}

.list-unstyled {
	list-style: none;
	padding: 0;
	margin: 0;
}

.text-white {
	color: #ffffff;
}

.container,
.container-new,
footer .container {
	width: 100%;
	padding: 1.5rem;
	margin: 0 auto;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1100px;
	}
}

@media (min-width: 1500px) {
	.container {
		max-width: 1400px;
	}
}

@media (min-width: 1660px) {
	.container,
	.container-new,
	footer .container {
		padding: 0;
		max-width: 1620px;
	}
}

@media (min-width: 2000px) {
	.container {
		max-width: 1620px;
	}
}

@media (min-width: 3500px) {
	.container {
		max-width: 2000px;
	}
}


/* === header.css === */
.header-new {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 200;
	background: #FFFFFF;
	padding: 0;
}

.header-new img.logo {
	display: block;
	width: 182px;
	height: 45px;
	object-fit: contain;
}

.header-new .container-new {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 15px 1.5rem;
	border-bottom: 1px solid #D8DEDF;
}

.header-new .header-content {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.header-new .header-content nav {
	display: none;
}

.header-new .header-content nav ul {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-new .header-content nav a {
	position: relative;
	font-size: 20px;
	color: #000000;
	text-decoration: none;
	display: block;
	padding: 12px 15px;
	border-radius: 10px;
	border: 2px solid transparent;
	transition: border 0.2s;
}

.header-new .header-content nav a:hover {
	border: 2px solid #000000;
}

.header-new .header-content .wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
}

#searchbar {
	position: relative;
	display: inline-flex;
	align-items: stretch;
	height: 44px;
	flex-shrink: 0;
}

#searchbar #search-input {
	position: absolute;
	right: 100%;
	top: 0;
	bottom: 0;
	width: 200px;
	max-width: 200px;
	height: 100%;
	margin: 0;
	padding: 0 1.25rem;
	border: 2px solid #000000;
	border-right-width: 1px;
	border-radius: 10px 0 0 10px;
	background: #ffffff;
	font: inherit;
	font-size: 16px;
	line-height: 1.2;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s;
}

#search-input:focus {
	outline: none;
}

#search-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin: 0;
	padding: 0 1rem;
	background: none;
	border: 2px solid transparent;
	border-left-width: 1px;
	border-radius: 0 10px 10px 0;
	cursor: pointer;
	transition: border-color 0.2s;
}

#search-btn img {
	display: block;
	width: 24px;
	height: 24px;
}

#searchbar:hover #search-input,
#searchbar.active #search-input {
	opacity: 1;
	pointer-events: auto;
}

#searchbar:hover #search-btn,
#searchbar.active #search-btn {
	border-color: #000000;
}

.header-new #desktop-menu-toggle {
	background: none;
	padding: 0.5rem 0.5rem 10px;
	border-radius: 10px;
	border: 2px solid transparent;
	transition: border 0.2s;
	cursor: pointer;
}

.header-new #desktop-menu-toggle:hover {
	border: 2px solid #000000;
}

.menu .menu__burger::before,
.menu .menu__burger::after {
	display: none;
}

.menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.menu .menu__burger {
	position: relative;
	width: 30px;
	height: 21px;
	cursor: pointer;
	transition: opacity 0.3s;
	z-index: 1000;
}

.menu .menu__burger:hover {
	opacity: 70%;
}

.menu .menu__burger img {
	display: block;
	width: 30px;
	height: 21px;
}

.menu .menu__burger > div {
	position: absolute;
	top: 9px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: white;
	transition: all 0.3s ease;
	border-radius: 7px;
}

.menu .menu__burger.cross > div {
	transform: scale(0);
}

.menu .menu__dropdown {
	position: fixed;
	display: flex;
	align-items: center;
	top: 0;
	right: -100vw;
	background-color: var(--transparent-gray);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	transition: right 0.5s ease-in-out;
	z-index: 1001;
}

.menu .menu__dropdown.open {
	right: 0;
}

.menu__dropdown {
	position: relative;
}

.menu__dropdown .menu-close {
	position: absolute;
	top: 3.3rem;
	right: 3rem;
	border: none;
	background: none;
	cursor: pointer;
}

.main-menu {
	width: 100%;
}

.menu .menu__dropdown ul {
	list-style-type: none;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.menu .menu__dropdown ul li {
	display: block;
	width: 100%;
}

.menu .menu__dropdown ul li a {
	display: block;
	width: 100%;
	height: 100%;
	color: white;
	padding: 0.75em 0.75em 0.75em 0;
	font-family: var(--font-family-1);
	font-weight: 500;
	font-size: 22px;
	letter-spacing: 3px;
	line-height: 1.3;
	text-align: center;
	transition: background-color 0.2s;
	text-decoration: none;
}

.menu .menu__dropdown ul li a:hover {
	background-color: #0a0b0d88;
}

.menu a {
	text-decoration: none;
}

@media (max-width: 532px) {
	.menu .menu__dropdown {
		top: 48px;
	}
}

@media (min-width: 640px) {
	#searchbar #search-input {
		width: auto;
		min-width: 160px;
		max-width: max-content;
	}
}

@media (min-width: 992px) {
	.menu .menu__dropdown {
		right: -450px;
		width: 450px;
	}

	.menu .menu__dropdown ul li a {
		padding-left: 3em;
		text-align: left;
	}
}

@media (min-width: 1280px) {
	.header-new .header-content nav {
		display: block;
	}
}


/* === footer.css === */
footer {
	background-color: #0A0B0D;
	max-width: 100vw;
	padding-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	margin-top: auto;
}

footer * {
	color: #FFFFFF;
}

footer a:hover {
	text-decoration: none;
}

footer > .container:not(.powered) {
	display: grid;
}

footer .column {
	width: 100%;
	margin-bottom: 25px;
}

footer ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

footer .title {
	font-weight: 400;
	font-size: 20px;
	color: #FFFFFF;
	letter-spacing: 0.07em;
	line-height: 50px;
}

footer .title img {
	height: 70px;
	width: auto;
	object-fit: contain;
}

footer .link {
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 40px;
	transition: color 0.3s;
	text-decoration: none;
}

footer .link:hover {
	color: var(--red);
}

footer .link.info:hover {
	color: #ffffff;
}

footer .link.info span,
footer .link.info a {
	opacity: 50%;
}

footer .info a:hover {
	opacity: 100%;
	color: var(--red);
}

footer .powered {
	padding-top: 20px;
	padding-bottom: 30px;
	border-top: #ffffff1A 1px solid;
	width: 100%;
}

footer .powered-social span {
	opacity: 50%;
}

footer .powered-social-link {
	font-size: 30px;
	opacity: 1;
}

footer .powered-social-link:hover {
	opacity: 100%;
}

footer .powered-email {
	opacity: 50%;
	line-height: 40px;
}

footer .powered-email:hover {
	opacity: 100%;
}

footer .container.powered {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
}

footer .powered .link,
footer .powered-email {
	opacity: 50%;
}

footer .powered a:hover,
footer .powered-email:hover {
	opacity: 100%;
}

footer .powered-left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

@media (min-width: 576px) {
	footer > .container:not(.powered) {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) {
	footer > .container:not(.powered) {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (min-width: 1500px) {
	footer > .container:not(.powered) {
		grid-template-columns: 2fr 1fr 1fr;
	}
}



/* End */


/* Start:/local/templates/toyama/template_styles.css?1785789048511*/
.page-content {
	padding-top: 2rem;
	padding-bottom: 3rem;
}

.page-content h1,
.page-content h2,
.page-content h3 {
	margin: 0 0 1rem;
	font-weight: 500;
}

.page-content p {
	margin: 0 0 1rem;
	line-height: 1.6;
}

.page-content ul,
.page-content ol {
	margin: 0 0 1rem 1.25rem;
}

.page-content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1rem;
}

.page-content table td,
.page-content table th {
	border: 1px solid #D8DEDF;
	padding: 0.5rem 0.75rem;
}

/* End */
/* /local/templates/toyama/components/bitrix/main.userconsent.request/cookie/style.css?17882681791174 */
/* /local/templates/toyama/styles.css?17878167709704 */
/* /local/templates/toyama/template_styles.css?1785789048511 */
