@charset 'utf-8';

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,main,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,hr,button,input,select,textarea{-webkit-tap-highlight-color:transparent;margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;outline:none;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;line-height:inherit;color:inherit;}main,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,video{display:block}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}blockquote::before,blockquote::after,q::before,q::after{content:'';content:none}blockquote,q{quotes:none}button,input,select,textarea{border-radius:0;font-family:inherit;font-size:100%;text-transform:none}input[type="search"]{-webkit-appearance:textfield;}input[type="search"]:-webkit-search-cancel-button,input[type="search"]:-webkit-search-decoration{-webkit-appearance:none}svg:not(:root){overflow:hidden}

html {
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	-webkit-overflow-scrolling:touch;
	overflow-scrolling:touch;
}

@media (max-width: 1023px) {
	[outview] {
		opacity: 0;
		transform: translateY(50px);
	}
}

@media (min-width: 1024px) {
	[outview]:not(.outview_no_pc) {
		opacity: 0;
		transform: translateY(50px);
	}
}

/*
*******************************************************************************/

.box {}
.inner {
	padding: 0 10px;
}
.content {
	max-width: 1080px;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.inner {
		padding: 0 20px;
	}
}

/*
*******************************************************************************/

a,
button {
	transition: all 300ms linear;
}

/*
*******************************************************************************/

body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #fff;
	background: #101010;
	line-height: 1.08;
	letter-spacing: -0.055em;
}

p {
	line-height: 1.5;
	margin: 1em 0 0;
}
p:first-child {
	margin: 0;
}

a,
a:hover {
	color: inherit;
	text-decoration: none;
}
p a {
	text-decoration: underline;
}
p a:hover {
	text-decoration: none;
}

b {
	font-weight: 600;
}
b b,
strong {
	font-weight: 700;
}

i {
	font-style: italic;
}

ul,
ol {
	margin: 0 0 10px;
	line-height: 1.5;
}
ul {}
ol {
	list-style: decimal;
}
ol, ul {
	padding-left: 30px;
}
li {
	margin: 1em 0 0;
}

small {
	font-size: 80%;
}
big {
	font-size: 120%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -.5em;
}
sub {
	bottom: -.25em;
}

/*
*******************************************************************************/

fieldset {
	border: 1px solid silver;
}

label {
	cursor: pointer;
	display: block;
	margin: 20px 0 0;
}

input,
textarea,
select {
	width: 100%;
	height: 36px;
	padding: 0 20px;
	background: none;
	line-height: 43px;
	border: 1px solid #525252;
}
textarea {
	overflow: auto;
	min-height: 125px;
	line-height: 1.1;
	resize: vertical;
	vertical-align: top;
}
input:focus,
textarea:focus,
select:focus {
	outline: 0;
}
input[type="radio"],
input[type="checkbox"] {
	display: inline-block;
	width: auto;
	height: auto;
	padding: 0;
	line-height: 1;
}

input:disabled,
button:disabled {
	cursor: default;
}

button,
input[type="file"] {
	cursor: pointer;
}

input[type="tel"] {
	padding-left: 50px;
	background-image: url(/_/media/flag.svg);
	background-repeat: no-repeat;
	background-position: left 20px center;
}

[placeholder]:focus::-webkit-input-placeholder { color: transparent; }
[placeholder]:focus:-ms-input-placeholder      { color: transparent; }
[placeholder]:focus::-moz-placeholder          { color: transparent; }

.label_title {
	margin-bottom: 10px;
	opacity: 0.5;
	font-size: 14px;
}

.label_desc {
	margin-top: 5px;
	opacity: 0.5;
	font-size: 13px;
}

.agree {
	margin-top: 10px;
	opacity: 0.5;
	font-size: 13px;
}
.agree a {
	text-decoration: underline;
}
.agree a:hover {
	text-decoration: none;
}

.h1 {
	margin-bottom: 20px;
	font-size: 40px;
	font-weight: 400;
}
.h2 {
	margin-bottom: 20px;
	font-size: 20px;
}

.text_p_title {
	display: inline-block;
	padding-right: 60px;
	color: #878787;
}

@media (min-width: 1024px) {
	.h1 {
		margin-bottom: 25px;
		font-size: 50px;
	}
	.h2 {
		font-size: 30px;
	}
}

/*
*******************************************************************************/

form {
	position: relative;
}
form::after {
	content: '';
	display: block;
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	position: absolute;
	top: -10px;
	left: -10px;
	background: rgba(0, 0, 0, .2);
	transition: all 200ms linear;
	border-radius: 5px;
	opacity: 0;
	visibility: hidden;
	cursor: wait;
}
form.sending::after {
	opacity: 1;
	visibility: visible;
}
.wrong input,
.wrong textarea,
.wrong .jq-selectbox__select {
	border-color: #c34343;
}
.error {
	padding: 5px 0;
	font-size: 14px;
	color: #c34343;
	transition: all 200ms linear;
	transform: translateY(-50%);
	opacity: 0;
}
.error.shown {
	opacity: 1;
	transform: translateY(0);
}

.ajax_loader {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.ajax_loader_svg {
	width: 100%;
	height: 100%;
}
.ajax_loader_circle {
	stroke: #00A499;
	transition: 300ms stroke-dashoffset;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.ajax_loader_digit {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	text-align: center;
}

/*
*******************************************************************************/

.btn {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
	height: 45px;
	width: 100%;
	padding: 0 20px;
	font-size: 20px;
	text-decoration: none;
	color: #000;
	background: #D9D9D9;
}
.btn._empty {
	color: #D9D9D9;
	background: none;
	border: 1px solid #D9D9D9;
}
.btn:not(._empty):hover {
	color: #000;
}

/* Other
*******************************************************************************/

img,
svg {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	vertical-align: top;
}

/*
*******************************************************************************/

body {
	padding-top: 98px;
}

.head {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: all 300ms linear;
}
.scrolled .head,
.head.menu_shown {
	background-color: #101010;
}
.head .content {
	position: relative;
}
.head_row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
	height: 98px;
}
.head_logo {
	height: 27px;
}
.head_cart {
	position: relative;
	margin: 0 34px 0 auto;
}
.head_cart_count {
	position: absolute;
	right: -5px;
	top: -4px;
	padding: 0 5px 0 4px;
	line-height: 14px;
	color: #000;
	font-size: 10px;
	font-weight: 400;
	background: #fff;
	border-radius: 7px;
}
.head_lang {
	position: relative;
	margin: 0 34px 0 auto;
}
.head_cart + .head_lang {
	margin: 0 34px 0 0;
}
.head_lang_trig {
	cursor: default;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 10px 0;
}
.head_lang_targ {
	position: absolute;
	top: 100%;
	left: -10px;
	color: #000;
	background: #fff;
	transition: all 300ms linear;
	opacity: 0;
	visibility: hidden;
}
.head_lang:hover .head_lang_targ {
	opacity: 1;
	visibility: visible;
}
.head_lang_targ a {
	display: block;
	padding: 5px 10px;
}
.head_lang_targ a:first-child {
	padding-top: 10px;
}
.head_lang_targ a:last-child {
	padding-bottom: 10px;
}
.head_menu_button {
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
}
.head_menu_text {
	text-transform: uppercase;
}
.head_menu_burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 30px;
	height: 37px;
	padding: 0;
}
.head_menu_burger::before,
.head_menu_burger::after {
	content: '';
	display: block;
	height: 2px;
	background: #fff;
	transition: all 300ms linear;
	align-self: flex-end;
}
.head_menu_burger::before {
	width: 100%;
}
.head_menu_burger::after {
	width: 20px;
}
.head_menu_burger.active {
	gap: 0;
}
.head_menu_burger.active::before {
	width: 100%;
	rotate: 45deg;
	transform: translateY(1px);
}
.head_menu_burger.active::after {
	width: 100%;
	rotate: -45deg;
	transform: translateY(-1px);
}
.head_menu_button:not(.active):hover .head_menu_burger::before {
	width: 20px;
}
.head_menu_button:not(.active):hover .head_menu_burger::after {
	width: 100%;
}
.head_buttns_item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 29px;
	border: 1px solid #fff;
	border-radius: 200px;
	text-transform: uppercase;
}
.head_buttns_item._fill {
	color: #000;
	background: #fff;
}
.head_buttns_item._empty:hover {
	color: #000;
	background: #fff;
}
.head_buttns_item._fill:hover {
	color: #fff;
	background: none;
}

@media (max-width: 1023px) {
	.head_buttns {
		display: none;
	}
}

@media (min-width: 1024px) {
	.head {}
	.head_row {
		position: relative;
	}
	.head_logo {
		order: 1;
	}
	.head_cart {
		order: 3;
		margin: 0 36px 0 auto;
	}
	.head_lang {
		order: 4;
		margin: 0 36px 0 auto;
	}
	.head_cart + .head_lang {
		margin: 0 36px 0 0;
	}
	.head_menu {
		order: 2;
		position: absolute;
		left: 50%;
		width: 84px;
		margin-left: -42px;
	}
	.head_buttns {
		position: relative;
		order: 5;
		display: flex;
		align-items: center;
		gap: 10px;
	}
	.head_buttns_item {
		position: relative;
		z-index: 1;
	}
	.head_buttns_tels {
		position: absolute;
		top: 100%;
		right: 0;
		width: 190px;
		display: grid;
		grid-gap: 10px;
		margin-top: 2px;
		padding: 16px;
		border-radius: 5px 0 5px 5px;
		box-sizing: border-box;
		transition: all 300ms linear;
		opacity: 0;
		visibility: hidden;
		background: radial-gradient(circle at 100% 100%, #1b1b1b 0, #1b1b1b 3px, transparent 3px) 0% 0%/5px 5px no-repeat,
            radial-gradient(circle at 0 100%, #1b1b1b 0, #1b1b1b 3px, transparent 3px) 100% 0%/5px 5px no-repeat,
            radial-gradient(circle at 100% 0, #1b1b1b 0, #1b1b1b 3px, transparent 3px) 0% 100%/5px 5px no-repeat,
            radial-gradient(circle at 0 0, #1b1b1b 0, #1b1b1b 3px, transparent 3px) 100% 100%/5px 5px no-repeat,
            linear-gradient(#1b1b1b, #1b1b1b) 50% 50%/calc(100% - 4px) calc(100% - 10px) no-repeat,
            linear-gradient(#1b1b1b, #1b1b1b) 50% 50%/calc(100% - 10px) calc(100% - 4px) no-repeat,
            linear-gradient(150deg, #1b1b1b 55%, #ffffff 100%);
  }
  .head_buttns_tels:hover,
  .head_buttns_item:hover + .head_buttns_tels {
  	opacity: 1;
  	visibility: visible;
  }
  .head_buttns_tels::before {
  	content: '';
  	display: block;
  	width: 100px;
  	height: 32px;
  	position: absolute;
  	bottom: 100%;
  	right: 0;
  	background: #1b1b1b;
  	border-radius: 5px 5px 0 0;
  }
  .head_buttns_tels .menu_tels_item {
  	display: grid;
  	grid-auto-flow: column;
  	justify-content: end;
  	justify-items: end;
  	text-align: right;
  	font-size: 16px;
  	font-weight: 400;
  }
}

/*
*******************************************************************************/

.menu {
	position: fixed;
	top: 97px;
	left: 0;
	right: 0;
	background-color: #101010;
	transition: all 300ms linear;
	opacity: 0;
	visibility: hidden;
	z-index: 100000;
}
.menu.shown {
	opacity: 1;
	visibility: visible;
}
.menu_row {
	height: calc(100dvh - 97px);
	min-height: 660px;
	display: grid;
	align-content: space-around;
	align-items: end;
	grid-template-columns: repeat(2, 1fr);
}
.menu_list {
	display: grid;
	grid-gap: 15px;
}
.menu_item {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 40px;
	text-transform: uppercase;
}
.menu_item_text {
	transition: all 300ms linear;
	border-bottom: 1px solid transparent;
}
.menu_item:hover .menu_item_text {
	border-bottom-color: #fff;
}
.menu_item svg {
	height: 28px;
}
.menu_soc {
	display: grid;
	grid-gap: 14px;
	justify-items: start;
}
.menu_soc_item {
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: -0.055em;
	transition: all 300ms linear;
	border-bottom: 1px solid transparent;
}
.menu_soc_item:hover {
	border-bottom-color: #fff;
}
.menu_tels {
	display: grid;
	grid-gap: 14px;
	justify-items: end;
}
.menu_tels_item {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	font-size: 20px;
	letter-spacing: -0.055em;
}
.menu_tels_item_text {
	transition: all 300ms linear;
	border-bottom: 1px solid transparent;
}
.menu_tels_item:hover .menu_tels_item_text {
	border-bottom-color: #fff;
}

@media (max-width: 413px) {
	.menu_tels {
		margin-left: -20px;
	}
}

@media (max-width: 1023px) {
	.menu_list {
		grid-column: 1 / -1;
	}
	.menu_buttns {
		grid-column: 1 / -1;
		display: grid;
		grid-gap: 10px;
	}
	.head_buttns_item {
		width: 100%;
		height: 46px;
	}
}

@media (min-width: 1024px) {
	.menu {
		top: 96px;
	}
	.menu_row {
		height: calc(100dvh - 96px);
		grid-template-columns: repeat(3, auto);
	}
	.menu_list {
		grid-gap: 21px;
	}
	.menu_item {
		font-size: 50px;
	}
	.menu_item svg {
		height: 48px;
	}
	.menu_soc {
		justify-self: end;
	}
	.menu_buttns {
		display: none;
	}
}
@media (min-width: 1450px) {
	.menu_item {
		font-size: 60px;
	}
}
/*
*******************************************************************************/

.foot {
	padding: 60px 0 20px;
}
.foot_row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px 0;
}
.foot_logo {}
.foot_col {
	display: flex;
	flex-direction: column;
}
.foot_title {
	margin-bottom: 20px;
	text-transform: uppercase;
	opacity: .5;
}
.foot_menu,
.foot_contacts {
	display: grid;
	grid-gap: 10px;
}
.foot_menu {
	justify-items: start;
}
.foot_menu a {
	border-bottom: 1px solid transparent;
}
.foot_menu a:hover {
	border-bottom-color: #fff;
}
.foot_menu_item {
	text-transform: uppercase;
}
.foot_contacts_item {
	display: flex;
	align-items: center;
	gap: 4px;
}
.foot_contacts_item_text {
	transition: all 300ms linear;
	border-bottom: 1px solid transparent;
}
.foot_contacts_item:hover .foot_contacts_item_text {
	border-color: #fff;
}
.foot_soc {
	display: grid;
	grid-template-columns: repeat(3, 28px);
	justify-items: center;
	grid-gap: 10px;
	margin: 0 0 auto;
}
.foot_lang {
	position: relative;
	margin: 0 auto -10px 0;
}
.foot_lang_trig {
	cursor: default;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 10px 0;
}
.foot_lang_targ {
	position: absolute;
	top: 100%;
	left: -10px;
	color: #000;
	background: #fff;
	text-align: center;
	transition: all 300ms linear;
	opacity: 0;
	visibility: hidden;
}
.foot_lang:hover .foot_lang_targ {
	opacity: 1;
	visibility: visible;
}
.foot_lang_targ a {
	display: block;
	padding: 5px 10px;
}
.foot_lang_targ a:first-child {
	padding-top: 10px;
}
.foot_lang_targ a:last-child {
	padding-bottom: 10px;
}
.foot_bottom {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
	justify-items: start;
	margin-top: 68px;
	color: #525252;
}
.foot_bottom a {
	transition: all 300ms linear;
	border-bottom: 1px solid transparent;
}
.foot_bottom a:hover {
	border-bottom-color: #525252;
}

@media (max-width: 1023px) {
	.foot_logo {
		order: 1;
	}
	.foot_col:nth-child(2) {
		order: 3;
	}
	.foot_col:nth-child(3) {
		order: 2;
	}
	.foot_col:nth-child(4) {
		order: 4;
	}
	.foot_bottom_item {
		text-transform: uppercase;
	}
	.foot_bottom_copy {
		grid-column: 1 / -1;
		margin-top: 20px;
	}
}

@media (min-width: 1024px) {
	.foot {}
	.foot_row {
		grid-template-columns: repeat(3, 1fr);
	}
	.foot_logo {
		display: none;
	}
	.foot_col:nth-child(3) {
		justify-self: center;
		text-align: center;
	}
	.foot_col:nth-child(4) {
		justify-self: end;
		text-align: right;
		align-items: flex-end;
	}
	.foot_contacts {
		justify-items: center;
	}
	.foot_lang {
		margin: 0 0 -10px auto;
	}
	.foot_lang_targ {
		top: auto;
		bottom: 100%;
	}
	.foot_bottom {
		grid-template-columns: auto;
		grid-auto-flow: column;
		justify-content: space-between;
	}
}

/*
*******************************************************************************/

.box_more {
	border-bottom: 1px solid #fff;
}
.box_more:hover {
	border-color: transparent;
}

@media (max-width: 1023px) {
	.box_more {
		display: none;
	}
}

@media (min-width: 1024px) {
	.box_head {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
}

/*
*******************************************************************************/

.slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	list-style: none;
	padding: 0;
	margin: 15px 0 0;
}
.slick-dots button {
	display: none;
}
.slick-dots li {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	margin: 0;
	border: 1px solid #fff;
	transition: all 300ms linear;
}
.slick-dots .slick-active {
	background: #fff;
}

@media (min-width: 1024px) {
	.slick-dots {
		margin-top: 30px;
	}
}

/*
*******************************************************************************/

.homeIntro {
	overflow: hidden;
	position: relative;
	margin-top: -98px;
	padding-top: 98px;
}
.homeIntro_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 103%;
	height: 100%;
	background: url(/_/media/home/intro_bg.png) left 40% top 0 no-repeat;
	background-size: cover;
}
.homeIntro .inner {
	position: relative;
	z-index: 1;
}
.homeIntro_row {
	display: grid;
	align-content: space-around;
	min-height: 725px;
}
.homeIntro_text {
	font-size: 30px;
	text-transform: uppercase;
}

@media (max-width: 1023px) {
	.homeIntro_line {
		display: none;
	}
}

@media (min-width: 1024px) {
	.homeIntro_bg {
		background-position: right top;
		background-size: contain;
	}
	.homeIntro_row {
		min-height: 760px;
		align-items: center;
		grid-template-columns: 375px auto 310px;
	}
	.homeIntro_logo svg {
		transition: all 500ms linear;
	}
	.homeIntro_line {
		margin: 0 15px 0 auto;
		width: 66%;
		height: 1px;
		background: #fff;
		transition: all 500ms linear;
	}
	.homeIntro_text {
		text-align: right;
		transition: all 500ms linear;
	}
	.scrolled .homeIntro_logo svg {
		max-width: 240px;
	}
	.scrolled .homeIntro_line {
		opacity: 0;
	}
	.scrolled .homeIntro_text {
		font-size: 26px;
	}
}

/*
*******************************************************************************/

.homeDesc {
	padding: 100px 0;
}
.homeDesc_title {
	font-size: 36px;
	line-height: 0.97;
}
.homeDesc_title .accent {
	color: #A90033;
}
.homeDesc_text {
	margin-top: 20px;
	line-height: 1.14;
	font-size: 20px;
}

@media (min-width: 768px) {
	.homeDesc_title {
		font-size: 40px;
	}
}

@media (min-width: 1024px) {
	.homeDesc {
		padding: 170px 0;
	}
	.homeDesc_title {
		max-width: 900px;
		font-size: 50px;
	}
	.homeDesc_text {
		max-width: 530px;
		margin: 0 auto;
		font-size: 20px;
	}
}

/*
*******************************************************************************/

.services_row {
	border-bottom: 1px solid #525252;
}
.services_item {
	display: grid;
	grid-gap: 12px;
	padding: 16px 0;
	border-top: 1px solid #525252;
}
.services_item_numb {
	font-size: 20px;
}
.services_item_pic {
	height: 289px;
}
.services_item_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.services_item_cap {
	display: grid;
	grid-gap: 12px;
}
.services_item_title {
	font-size: 34px;
	text-transform: uppercase;
}
.services_item_text {
	width: 76%;
	opacity: .5;
	font-size: 16px;
}
.services_item_more {
	margin-top: 12px;
}
.services_item_more a {
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	font-size: 20px;
	text-transform: uppercase;
}
.services_item_more_text {
	transition: all 300ms linear;
	border-bottom: 1px solid transparent;
}
.services_item_more a:hover .services_item_more_text {
	border-bottom-color: #fff;
}
.services_item_more svg {
	height: 18px;
}

@media (min-width: 1024px) {
	.services_row {
		overflow: hidden;
	}
	.services_item {
		align-items: start;
		width: 100%;
		grid-gap: 16px;
		grid-template-columns: 15% 530px calc(100% - 15% - 16px - 530px - 16px);
		padding: 38px 0 36px;
		transition: all 300ms linear;
	}
	.services_item.current {
		grid-template-columns: 10% 530px calc(100% - 10% - 16px - 530px - 16px);
	}
	.services_item_numb {
		margin-top: -21px;
		width: 90px;
		font-size: 40px;
	}
	.services_item_pic {
		width: 530px;
	}
	.services_item_hidden {
		transition: all 300ms linear;
		opacity: 0;
		visibility: hidden;
	}
	.services_item_hidden .services_item_text {
		font-size: 0;
	}
	.services_item.current .services_item_hidden {
		opacity: 1;
		visibility: visible;
	}
	.services_item.current .services_item_hidden .services_item_text {
		font-size: 16px;
	}
}

@media (min-width: 1280px) {
	.services_item {
		grid-template-columns: 25% 530px calc(100% - 25% - 16px - 530px - 16px);
	}
}

/*
*******************************************************************************/

.upcomingEvents {
	padding: 100px 0 0;
}
.upcomingEvents_title {
	font-size: 40px;
}
.upcomingEvents_row {
	display: grid;
	grid-gap: 20px;
	margin-top: 25px;
}
.upcomingEvents_item {
	background: linear-gradient(#101010, #101010) 50% 50%/calc(100% - 2px) calc(100% - 2px) no-repeat,
            	linear-gradient(136deg, transparent 20%, #ffffff 100%);
	padding: 21px;
}
.upcomingEvents_item_tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.upcomingEvents_item_tag {
	font-size: 16px;
	font-weight: 400;
	padding: 5px 20px;
	border-radius: 200px;
	border: 1px solid #fff;
}
.upcomingEvents_item_title {
	margin-top: 15px;
	font-size: 24px;
}
.upcomingEvents_item_text {
	margin-top: 30px;
	opacity: .5;
}

@media (min-width: 1024px) {
	.upcomingEvents {}
	.upcomingEvents_title {
		font-size: 30px;
	}
	.upcomingEvents_row {
		grid-template-columns: repeat(2, 1fr);
	}
	.upcomingEvents_cell {
		position: relative;
	}
	.upcomingEvents_item {
		width: 100%;
	}
	.upcomingEvents_item_text {
		font-size: 20px;
	}
}

@media (min-width: 1280px) {
	.upcomingEvents_row {}
}

/*
*******************************************************************************/

.contactForm {
	padding: 100px 0 50px;
}
.contactForm_title {
	font-size: 40px;
	line-height: 0.97;
}

@media (max-width: 1023px) {
	.contactForm_main {
		margin-top: 20px;
	}
	.contactForm_main button {
		margin-top: 10px;
	}
}

@media (min-width: 1024px) {
	.contactForm_row {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.contactForm_title {
		font-size: 50px;
	}
	.contactForm_main button {
		margin-top: 20px;
	}
}

/*
*******************************************************************************/

.zones_map {
	overflow: hidden;
}
.zones_map iframe {
	margin-top: -70px;
	width: 100%;
}
.zones_map_legend {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	width: 100%;
	margin-top: 18px;
}
.zones_map_legend_item {
	display: flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
}
.zones_map_legend_item::before {
	content: '';
	display: block;
	flex: 0 0 12px;
	height: 12px;
	border-radius: 50%;
}
.zones_map_legend_item:nth-child(1)::before {
	background: #72B4F3;
}
.zones_map_legend_item:nth-child(2)::before {
	background: #F44141;
}
.zones_map_legend_item:nth-child(3)::before {
	background: #fff;
}

@media (min-width: 1024px) {
	.zones_map iframe {
		margin-top: -70px;
	}
}

/*
*******************************************************************************/

.price {
	padding: 70px 0 40px;
}
.price_intro {}
.price_intro_side {}
.price_intro_title {
	font-size: 40px;
	line-height: 0.97;
}
.price_intro_main {}
.price_intro_text {
	margin-top: 20px;
	font-size: 20px;
	line-height: 1.14;
}
.price_intro_more {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	margin-top: 24px;
	font-size: 20px;
	line-height: 1.14;
}

@media (min-width: 1024px) {
	.price {}
	.price_intro {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.price_intro_side {}
	.price_intro_title {}
	.price_intro_main {}
	.price_intro_text {
		margin: 0;
	}
	.price_intro_more {
		margin-top: 42px;
	}
}

/*
*******************************************************************************/

.price_services {
	padding: 76px 0;
	display: grid;
	grid-gap: 80px;
}
.price_service_title {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	font-size: 30px;
}
.price_service table {
	margin-top: 25px;
}
.price_service thead {
	color: #808080;
	border-top: 1px solid #3E3E3E;
}
.price_service th,
.price_service td {
	padding: 20px 0;
	vertical-align: middle;
}
.price_service th {
	text-align: left;
	font-weight: 400;
}
.price_service tbody tr {
	border-top: 1px solid #3E3E3E;
}
.price_service thead td + td,
.price_service tbody td {
	text-align: center;
}
.price_service_act .btn {
	height: 62px;
}

@media (min-width: 1024px) {
	.price_services {
		grid-gap: 150px;
		padding: 60px 0 100px;
	}
	.price_service th,
	.price_service td {
		text-align: center;
	}
}

/*
*******************************************************************************/

.textPage_title {
	margin-bottom: 40px;
	font-size: 40px;
}
.textPage_blank {
	padding: 60px 0;
	color: #000;
	background: #fff;
}

@media (min-width: 1024px) {
	.textPage_title {
		margin-bottom: 50px;
		font-size: 50px;
	}
	.textPage_blank {
		padding: 70px 0;
	}
}

/*
*******************************************************************************/

.fancybox-is-open .fancybox-bg {
	background: #000;
	opacity: 0.7;
}

.modal {
	display: none;
	margin: 0;
	padding: 20px;
	background: #1B1B1B;
}
.fancybox-slide--html {
	padding: 0;
}
.modal_close {
	cursor: pointer;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
}
.modal_side .modal_close {
	width: auto;
}
.modal_title {
	margin-bottom: 20px;
	font-size: 30px;
}
.modal_text {
	margin-bottom: 20px;
	font-size: 20px;
}

@media (max-width: 767px) {
	.modal {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100dvh;
		overflow: auto;
	}
	.modal_row {
		display: grid;
		align-content: center;
		overflow: auto;
		min-height: 100%;
	}
}

@media (min-width: 768px) {
	.modal {
		width: 760px;
		padding: 64px 50px 58px;
	}
	.modal_title {
		margin-bottom: 30px;
		text-align: center;
	}
}

/*
*******************************************************************************/

.modal_side {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 58px 10px 20px;
	background: #1B1B1B;
	z-index: 10;
	overflow: auto;
}
.modal_side .modal_row {
	display: block;
	min-height: unset;
	overflow: unset;
}
.modal_side .modal_close {
	text-transform: uppercase;
	text-decoration: underline;
}
.modal_side .modal_close:hover {
	text-decoration: none;
}
.modal_side_act {
	display: grid;
	grid-gap: 8px;
	margin-top: 40px;
}
.agree + .modal_side_act {
	margin-top: 20px;
}
.modal_side .btn._empty {
	border: none;
	font-size: 16px;
	font-weight: 400;
}
.modal_book_price,
.modal_side_price {
	margin-top: 12px;
	font-size: 14px;
	text-align: center;
}
.modal_book_price_desc,
.modal_side_price_desc {
	margin-top: 6px;
	opacity: 0.5;
}

@media (min-width: 1024px) {
	.fancybox-container._side {
		top: 98px;
		height: calc(100% - 98px);
	}
	.modal_side {
		left: 50%;
		padding: 60px;
	}
}

/*
*******************************************************************************/

.modal_book .zones_map {
	margin-top: 30px;
}

.modal_book_meta {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 40px;
	font-size: 14px;
}

.modal_side_count_down {
	margin-top: 10px;
	opacity: 0.5;
	font-size: 14px;
}

.modal_book_step {
	display: none;
}
.modal_book_step.current {
	display: block;
}
.modal_book_meta_price {
	grid-column-start: 2;
}
.modal_book_meta_price_desc {
	font-size: 13px;
	opacity: .5;
}
#modal_book_step_4 .modal_book_meta {
	font-size: 16px;
}

@media (min-width: 1024px) {
	#modal_book_step_5 .modal_text {
		text-align: center;
	}
}

/*
*******************************************************************************/

.book_event_date {
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/*
*******************************************************************************/

.modal_title + .zones_map {
	margin-top: 52px;
}

/*
*******************************************************************************/

.contacts {
	padding: 60px 0;
}
.contacts_h1 {
	margin-bottom: 40px;
	font-size: 40px;
}
.contacts_main {
	display: grid;
	grid-gap: 100px;
}
.contacts_main a {
	font-size: 20px;
}
.contacts_h2 {
	margin-bottom: 15px;
	opacity: .5;
	text-transform: uppercase;
}
.contacts_desc {
	margin-top: 10px;
	font-size: 16px;
}
.contacts_soc_list {
	display: grid;
	grid-gap: 10px;
}
.contacts_tel a {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 10px;
}

@media (min-width: 1024px) {
	.contacts {
		padding: 70px 0;
	}
	.contacts_row {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.contacts_h1 {
		font-size: 50px;
	}
	.contacts_main a {
		font-size: 30px;
	}
}

/*
*******************************************************************************/

.box404 {}
.box404_row {
	display: grid;
	grid-gap: 40px;
	align-content: center;
	height: calc(100dvh - 98px - 98px);
}
.box404_main {
	display: grid;
	grid-gap: 50px;
}
.box404_title {
	font-size: 50px;
}
.box404_home {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
}
.box404_desc {
	font-size: 18px;
}
.box404_desc span {
	display: inline-block;
	width: 32px;
	height: 1px;
	background: #fff;
	margin: 0 .4em .2em;
}

@media (min-width: 1024px) {
	.box404 {}
	.box404_row {
		grid-template-columns: repeat(2, 1fr);
		align-items: end;
		align-content: normal;
		height: calc(50vh - 98px);
	}
	.box404_main {}
	.box404_title {
		font-size: 60px;
	}
	.box404_home {
		margin-top: 100px;
	}
	.box404_side {
		text-align: right;
	}
	.box404_desc {
		font-size: 20px;
	}
}

/*
*******************************************************************************/

.about {}
.about_pic {
	height: 164px;
}
.about_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.about_row {
	margin: 35px 0 100px;
}
.about_main {
	font-size: 20px;
}
.about_main p {
	line-height: 21px;
}
.about_numbers {
	display: grid;
	grid-gap: 30px;
	margin-top: 35px;
}
.about_numbers_item {
	display: grid;
	grid-gap: 11px;
}
.about_numbers_numb {
	line-height: 97px;
	font-size: 100px;
}
.about_numbers_text {
	font-size: 20px;
	color: #878787;
}
.about_main .more {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 25px;
	text-decoration: none;
}
.about_main figure {
	margin-bottom: 40px;
}
.about_main figcaption {
	margin-top: 10px;
	font-size: 20px;
}
.about_main figcaption span {
	color: #878787;
}

@media (max-width: 1023px) {
	.about_numbers {
		padding-left: 50%;
	}
}

@media (min-width: 1024px) {
	.about_pic img {
		object-position: left 50% top 32%;
	}
	.about_row {
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
		margin: 80px 0 170px;
	}
	.about_numbers {
		margin-top: 45px;
	}
}

/*
*******************************************************************************/

.mediaAbout {}
.mediaAbout_row {
	display: grid;
	grid-gap: 10px;
}
.mediaAbout_item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 298px;
	padding: 20px;
	overflow: hidden;
	background: #262626;
	line-height: .97;
}
.mediaAbout_item_logo {
	height: 25px;
}
.mediaAbout_item_title {
	font-size: 25px;
	margin: 10px 0 20px;
}
.mediaAbout_item_text {
	color: #878787;
	font-size: 20px;
	margin: auto 0 0;
}
.mediaAbout_more {
	font-size: 20px;
}
.mediaAbout_more a {
	display: inline-block;
	border-bottom: 1px solid #fff;
}
.mediaAbout_more a:hover {
	border-bottom-color: transparent;
}

@media (max-width: 1023px) {
	.mediaAbout_more {
		margin-top: 20px;
		text-align: center;
	}
}

@media (min-width: 1024px) {
	.mediaAbout {
		overflow: hidden;
	}
	.mediaAbout,
	.mediaAbout .content {
		position: relative;
	}
	.mediaAbout_more {
		position: absolute;
		top: 30px;
		right: 0;
		z-index: 1;
	}
	.mediaAbout_row {
		grid-auto-flow: column;
		-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	}
	.mediaAbout::after {
		content: '';
		display: block;
		width: 160px;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		background: rgb(255,255,255);
		background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(16,16,16,1) 100%);
		background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(16,16,16,1) 100%);
		background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(16,16,16,1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#101010",GradientType=1);
	}
	.mediaAbout_item {
		width: 418px;
	}
}

/*
*******************************************************************************/

.events {
	font-size: 20px;
}
.events_intro {}
.events_intro_side {}
.events_intro_main {}
.events_sort {
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.events_sort_title {}
.events_sort_list {
	display: flex;
	align-items: center;
	gap: 38px;
}
.events_sort_item {
	display: flex;
	align-items: center;
	gap: 5px;
	opacity: .5;
}
.events_sort_item.current {
}
.events_sort_item.desc svg {
	margin-bottom: -2px;
	rotate: 180deg;
}
.events_row {
	display: grid;
	grid-gap: 20px;
	margin-top: 25px;
}
.events_item {
	display: grid;
	grid-gap: 18px;
	background: linear-gradient(#101010, #101010) 50% 50%/calc(100% - 2px) calc(100% - 2px) no-repeat,
            	linear-gradient(136deg, transparent 30%, #ffffff 100%);
	padding: 21px;
}
.events_item_tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.events_item_tag {
	font-size: 16px;
	font-weight: 400;
	padding: 5px 20px;
	border-radius: 200px;
	border: 1px solid #fff;
}
.events_item_pic {}
.events_item_meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.events_item_title {}
.events_item_date {
	opacity: .5;
	font-size: 18px;
}

@media (min-width: 768px) {
	.events_row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.events {
		margin: 100px 0 50px;
	}
	.events_intro {
		display: grid;
		grid-gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}
	.events_sort {
		padding-left: calc(50% + 20px);
		margin-top: 100px;
	}
	.events_item_title {
		font-size: 30px;
	}
	.events_item_date {
		font-size: 20px;
	}
}

/*
*******************************************************************************/

.event {}
.event_row {
	display: grid;
	grid-gap: 20px;
	margin-top: 50px;
}
.event ol li {
	margin: 0;
}
.event_act {
	margin-top: 50px;
	text-align: center;
}
.event_act a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 30px;
	text-transform: uppercase;
}
.event_act svg {
	height: 30px;
}

@media (min-width: 1024px) {
	.event_row {
		margin-top: 100px;
		grid-template-columns: repeat(2, 1fr);
	}
	.event_act {
		margin: 100px 0;
	}
}

/*
*******************************************************************************/

.careers {
	padding: 50px 0;
}
.careers p {
	font-size: 18px;
}
.careers .h2 {
	margin-top: 30px;
}
.careers_title {
	font-size: 40px;
	line-height: 0.97;
}

@media (max-width: 1023px) {
	.careers_main {
		margin-top: 20px;
	}
	.careers_main button {
		margin-top: 10px;
	}
}

@media (min-width: 1024px) {
	.careers {
		padding: 100px 0;
	}
	.careers p {
		font-size: 20px;
	}
	.careers .h2 {
		margin-top: 60px;
	}
	.careers_row {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.careers_title {
		font-size: 50px;
	}
	.careers_main button {
		margin-top: 20px;
	}
}

/*
*******************************************************************************/

.media {
	padding: 40px 0;
}
.media_row {}
.media_side {}
.media_main {}
.media_main p {
	line-height: 1.15;
}
.media_grid {
	display: grid;
	gap: 15px;
	margin-top: 25px;
}
.media_item {
	padding: 20px;
	background:
		linear-gradient(#101010, #101010) 50% 50%/calc(100% - 2px) calc(100% - 2px) no-repeat,
		linear-gradient(136deg, transparent 30%, #aaa 100%);
}
.media_item_journal {
	padding: 5px 0;
}
.media_item_pic {
	margin-top: 15px;
}
.media_item_title {
	margin-top: 15px;
	font-size: 20px;
}
.media_item_date {
	margin-top: 10px;
	opacity: .5;
}

@media (min-width: 768px) {
	.media_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
}

@media (min-width: 1024px) {
	.media {
		padding: 80px 0;
	}
	.media_row {
		display: grid;
  	grid-gap: 20px;
  	grid-template-columns: repeat(2, 1fr);
	}
	.media_grid {
		margin-top: 58px;
		grid-template-columns: repeat(3, 1fr);
	}
}

/*
*******************************************************************************/

.heroLink {
	margin-top: 48px;
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 30px;
	text-transform: uppercase;
}
.heroLink svg {
	width: 30px;
}

@media (min-width: 1024px) {
	.heroLink {
		margin-top: 58px;
		justify-content: center;
	}
}

/*
*******************************************************************************/

.mediaSingle {
	padding-bottom: 80px;
}
.mediaSingle_journal {
	display: flex;
	align-items: center;
	gap: 10px;
}
.mediaSingle_journal span {
	opacity: .5;
}
.mediaSingle_title {
	margin-top: 10px;
	font-size: 40px;
}
.mediaSingle_date {
	margin-top: 15px;
	opacity: .5;
}
.mediaSingle_pic {
	margin-top: 20px;
}
.mediaSingle_text {
	margin-top: 20px;
}

@media (min-width: 1024px) {
	.mediaSingle {
		padding: 40px 0 120px;
	}
	.mediaSingle_journal {
		justify-content: center;
	}
	.mediaSingle_title {
		margin: 28px 80px 0;
		text-align: center;
		font-size: 60px;
		line-height: 1;
	}
	.mediaSingle_date {
		text-align: center;
		margin-top: 20px;
	}
	.mediaSingle_pic {
		height: 426px;
		margin-top: 30px;
	}
	.mediaSingle_pic img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
	.mediaSingle_text {
		margin: 30px auto 0;
		width: 698px;
		font-size: 20px;
	}
}

/*
*******************************************************************************/

.serviceIntro {}
.serviceIntro_title {
	font-size: 48px;
	line-height: 1;
}
.serviceIntro_text {
	margin-top: 20px;
	font-size: 20px;
}

@media (min-width: 1024px) {
	.serviceIntro {}
	.serviceIntro_title {
		font-size: 176px;
	}
	.serviceIntro_text {
		width: 462px;
	}
}

/*
*******************************************************************************/

.faqImg {
	margin-top: 100px;
}
.faqImg_title {
	font-size: 40px;
	line-height: 1;
}
.faqImg_item {
	position: relative;
	padding: 20px 10px;
	transition: all 300ms linear;
}
.faqImg_item_head {
	cursor: pointer;
	font-size: 30px;
}
.faqImg_item_body {
	padding-top: 20px;
	color: rgba(0, 0, 0, .5);
}
.faqImg_item_body p {
	line-height: 1.15;
	font-size: 20px;
}
.faqImg_item_pic {
	margin-top: 20px;
}

.faqImg_item.current {
	color: #000;
	background: #fff;
}
.faqImg_item:not(.current)::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: calc(100% - 10px);
	height: 1px;
	background: #525252;
}

@media (max-width: 1023px) {
	.faqImg_title {
		margin-bottom: 20px;
		padding: 0 10px;
	}
	.faqImg_list {
		margin: 0 -10px;
	}
	.faqImg_big {
		display: none;
	}
}

@media (min-width: 1024px) {
	.faqImg {
		overflow: hidden;
		margin-top: 160px;
	}
	.faqImg_title {
		margin-bottom: 50px;
	}
	.faqImg_row {
		display: grid;
		gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}
	.faqImg_item::before {
		content: '';
		display: block;
		width: 50vw;
		height: 100%;
		position: absolute;
		top: 0;
		right: 100%;
		background: #fff;
		transition: all 300ms linear;
		opacity: 0;
	}
	.faqImg_item.current::before {
		opacity: 1;
	}
	.faqImg_item_pic {
		display: none;
	}
	.faqImg_big img {
		object-fit: cover;
		object-position: center;
		width: 100%;
		height: 100%;
	}
}

/*
*******************************************************************************/

.entries {
	margin-top: 100px;
	overflow: hidden;
}
.entries .box_title {
	font-size: 40px;
}
.entries_row {
	margin-top: 20px;
	margin-left: -20px;
}
.entries .slick-list {
	overflow: visible;
}
.entries_slide {
	width: 340px;
	padding-left: 5px;
}
.entries_item {
	padding: 20px 20px 35px;
	background: #262626;
}
.entries_item_title {
	margin-top: 15px;
	font-size: 24px;
	text-transform: uppercase;
}
.entries_item_text {
	margin-top: 15px;
	font-size: 20px;
	color: rgba(255, 255, 255, .5);
}
.entries_item_text p {
	line-height: 1;
}
.entries_item_book {
	margin-top: 56px;
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 22px;
	text-transform: uppercase;
}
.entries_item_book svg {
	flex: 0 0 20px;
	margin-bottom: 2px;
}

@media (min-width: 414px) {
	.entries_slide {
		width: 390px;
	}
}

@media (min-width: 560px) {
	.entries_slide {
		padding-left: 10px;
	}
}

@media (min-width: 1024px) {
	.entries {
		margin-top: 160px;
	}
	.entries .box_title {
		font-size: 30px;
	}
	.entries_slide {
		padding-left: 20px;
		width: 530px;
	}
	.entries_item_pic {
		height: 230px;
	}
	.entries_item_pic img {
		object-fit: cover;
		object-position: center;
		width: 100%;
		height: 100%;
	}
	.entries .slick-arrow {
		position: absolute;
		top: 0;
		width: 50%;
		height: 100%;
		background: none;
		z-index: 1;
	}
	.entries .slick-prev {
		left: 0;
	}
	.entries .slick-next {
		right: 0;
	}
	.entries .slick-dots {
		display: none !important;
	}
}

/*
*******************************************************************************/

.faq {
	margin-top: 70px;
}
.faq_list {}
.faq_item {
	padding: 0 0 10px;
	border-bottom: 1px solid #525252;
}
.faq_item:first-child {
	border-top: 1px solid #525252;
}
.faq_item_head {
	cursor: pointer;
	position: relative;
	padding: 20px 0 10px;
	font-size: 30px;
	line-height: 1.15;
}
.faq_item_head::before,
.faq_item_head::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	background: #fff;
	transition: all 300ms linear;
}
.faq_item_head::before {
	margin-top: -1px;
	right: 5px;
	width: 22px;
	height: 2px;
}
.faq_item_head::after {
	right: 15px;
	margin-top: -10px;
	width: 2px;
	height: 22px;
}
.faq_item.current .faq_item_head::after {
	opacity: 0;
}
.faq_item_body {
	display: none;
	font-size: 20px;
	line-height: 1.15;
}

@media (min-width: 1024px) {
	.faq {
		margin-top: 120px;
	}
}

/*
*******************************************************************************/

.eventsSlider {
	margin-top: 70px;
}

@media (min-width: 768px) {
	.eventsSlider_row {
		margin: 0 -10px;
	}
	.eventsSlider_slide {
		padding: 10px;
	}
	.eventsSlider .heroLink {
		margin: 160px 0;
	}
}

/*
*******************************************************************************/

.cursors {
	display: none;
	height: 0;
}
.cursors svg {
	border-radius: 50%;
	/*backdrop-filter: blur(6px);*/
}
.cursor_white_prev,
.cursor_white_next {
	position: absolute;
	top: 0;
	margin-top: -27px;
	margin-left: -40px;
	opacity: 0;
}

@media (hover: hover) {
	.cursors {
		display: block;
	}
}

/*
*******************************************************************************/
