*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* anim */
@-webkit-keyframes burger-span-1 {
	0% {
		-webkit-transform: none;
		transform: none
	}
	50% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px)
	}
	to {
		-webkit-transform: translateY(6px) rotate(45deg);
		transform: translateY(6px) rotate(45deg)
	}
}
@keyframes burger-span-1 {
	0% {
		-webkit-transform: none;
		transform: none
	}
	50% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px)
	}
	to {
		-webkit-transform: translateY(6px) rotate(45deg);
		transform: translateY(6px) rotate(45deg)
	}
}
@-webkit-keyframes burger-span-1-reverse {
	to {
		-webkit-transform: none;
		transform: none
	}
	50% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px)
	}
	0% {
		-webkit-transform: translateY(6px) rotate(45deg);
		transform: translateY(6px) rotate(45deg)
	}
}
@keyframes burger-span-1-reverse {
	to {
		-webkit-transform: none;
		transform: none
	}
	50% {
		-webkit-transform: translateY(6px);
		transform: translateY(6px)
	}
	0% {
		-webkit-transform: translateY(6px) rotate(45deg);
		transform: translateY(6px) rotate(45deg)
	}
}
@-webkit-keyframes burger-span-2 {
	0%,
	50% {
		opacity: 1
	}
	51%,
	to {
		opacity: 0
	}
}
@keyframes burger-span-2 {
	0%,
	50% {
		opacity: 1
	}
	51%,
	to {
		opacity: 0
	}
}
@-webkit-keyframes burger-span-2-reverse {
	51%,
	to {
		opacity: 1
	}
	0%,
	50% {
		opacity: 0
	}
}
@keyframes burger-span-2-reverse {
	51%,
	to {
		opacity: 1
	}
	0%,
	50% {
		opacity: 0
	}
}
@-webkit-keyframes burger-span-3 {
	0% {
		-webkit-transform: none;
		transform: none
	}
	50% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px)
	}
	to {
		-webkit-transform: translateY(-6px) rotate(-45deg);
		transform: translateY(-6px) rotate(-45deg)
	}
}
@keyframes burger-span-3 {
	0% {
		-webkit-transform: none;
		transform: none
	}
	50% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px)
	}
	to {
		-webkit-transform: translateY(-6px) rotate(-45deg);
		transform: translateY(-6px) rotate(-45deg)
	}
}
@-webkit-keyframes burger-span-3-reverse {
	to {
		-webkit-transform: none;
		transform: none
	}
	50% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px)
	}
	0% {
		-webkit-transform: translateY(-6px) rotate(-45deg);
		transform: translateY(-6px) rotate(-45deg)
	}
}
@keyframes burger-span-3-reverse {
	to {
		-webkit-transform: none;
		transform: none
	}
	50% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-6px)
	}
	0% {
		-webkit-transform: translateY(-6px) rotate(-45deg);
		transform: translateY(-6px) rotate(-45deg)
	}
}
/* Общие стили для скроллбара */
html {
    scrollbar-width: thin;
    scrollbar-color: #d0043c #fff;
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track {
    background: #fff;
}

html::-webkit-scrollbar-thumb {
    background-color: #d0043c;
    border-radius: 20px;
    border: 3px solid #fff;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: #c0043c; /* немного измененный цвет для ховера */
}

html::-webkit-scrollbar-corner {
    background: #d0043c;
}

/* Стили для изменения цвета скроллбара на серый, когда класс scroll-active добавлен */
html.scroll-active {
    scrollbar-color: #808080 #fff; /* для Firefox */
}

html.scroll-active::-webkit-scrollbar-thumb {
    background-color: #808080; /* серый цвет */
}

html.scroll-active::-webkit-scrollbar-thumb:hover {
    background-color: #6e6e6e; /* чуть темнее при ховере */
}

html.scroll-active::-webkit-scrollbar-corner {
    background: #808080; /* уголок скроллбара */
}


html {
	box-sizing: border-box;
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-weight: 400;
	line-height: 1.15;
	color: #101010;
	text-align: left;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(16, 16, 16, 0);
}

html,
body {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	scroll-behavior: smooth;
	-webkit-tap-highlight-color: transparent;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
/* для ленивой загрузки */
img:not([src]):not([srcset]) {
	visibility: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
a:focus {
	outline: none;
}
a[href=""]::before,
a:not([href])::before {
	content: attr(href);
}
a,
a:hover {
	text-decoration: none
}
a:hover {
	color: #d0043c
}
.hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}
dl,
ol,
ul {
	margin-top: 0
}
ol ol,
ol ul,
ul ol,
ul ul {
	margin-bottom: 0
}
/* --base */
/* basic styles */
html {
	font-size: 16px
}
@media (min-width:320px) {
	html {
		font-size: 12px
	}
}
@media (min-width:360px) {
	html {
		font-size: 16px
	}
}
@media (min-width:420px) {
	html {
		font-size: 18px
	}
}
@media (min-width:470px) {
	html {
		font-size: 20px
	}
}
@media (min-width:640px) {
	html {
		font-size: 14px
	}
}
@media (min-width:768px) {
	html {
		font-size: 16px
	}
}
@media (min-width:840px) {
	html {
		font-size: 18px
	}
}
@media (min-width:940px) {
	html {
		font-size: 20px
	}
}
@media (min-width:990px) {
	html {
		font-size: 14px
	}
}
@media (min-width:1400px) {
	html {
		font-size: 16px
	}
}
@media (min-width:1600px) {
	html {
		font-size: 18px
	}
}
@media (min-width:1800px) {
	html {
		font-size: 21px
	}
}
.container {
	padding-left: 1.5rem;
	padding-right: 1.5rem
}
.container,
.wrapper {
	width: 100%;
	margin-right: auto;
	margin-left: auto
}
.wrapper {
	max-width: 100rem
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0
}
.h1,
h1 {
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 3.5rem;
	line-height: 1.15;
	font-weight: 500
}
@media (max-width:639.98px) {
	.h1,
	h1 {
		font-size: 1.5rem
	}
}
.h2,
h2 {
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 2.5rem;
	line-height: 1.34;
	font-weight: 500
}
@media (max-width:639.98px) {
	.h2,
	h2 {
		font-size: 1.475rem
	}
}
.h3,
h3 {
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 2rem;
	line-height: 1.25;
	font-weight: 500
}
@media (max-width:639.98px) {
	.h3,
	h3 {
		font-size: 1.25rem
	}
}
.h4,
h4 {
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 1.5rem;
	line-height: 1.35;
	font-weight: 500
}
@media (max-width:639.98px) {
	.h4,
	h4 {
		font-size: 1.125rem
	}
}
.h5,
h5 {
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 1.125rem;
	line-height: 1.4;
	font-weight: 500
}
@media (max-width:639.98px) {
	.h5,
	h5 {
		font-size: 1rem
	}
}
p {
	margin-top: 0;
	margin-bottom: 0;
}
.d-none,
[hidden] {
	display: none !important
}
.d-inline {
	display: inline !important
}
.d-inline-block {
	display: inline-block !important
}
.d-block {
	display: block !important
}
.d-flex {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important
}
.d-inline-flex {
	display: -webkit-inline-box !important;
	display: -ms-inline-flexbox !important;
	display: inline-flex !important
}
@media (min-width:640px) {
	.d-md-none {
		display: none !important
	}
	.d-md-inline {
		display: inline !important
	}
	.d-md-inline-block {
		display: inline-block !important
	}
	.d-md-block {
		display: block !important
	}
	.d-md-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}
	.d-md-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}
}
@media (min-width:990px) {
	.d-lg-none {
		display: none !important
	}
	.d-lg-inline {
		display: inline !important
	}
	.d-lg-inline-block {
		display: inline-block !important
	}
	.d-lg-block {
		display: block !important
	}
	.d-lg-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}
	.d-lg-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}
}
@media (max-width:639.98px) {
	.d-sm-none {
		display: none !important
	}
}
.align-items-start {
	align-items: flex-start !important;
}
.align-items-end {
	align-items: flex-end !important;
}
.align-items-center {
	align-items: center !important;
}
.align-items-baseline {
	align-items: baseline !important;
}
.align-items-stretch {
	align-items: stretch !important;
}
.gap-0 {
	gap: 0 !important;
}
.gap-1 {
	gap: 0.25rem !important;
}
.gap-2 {
	gap: 0.5rem !important;
}
.gap-3 {
	gap: 1rem !important;
}
.gap-4 {
	gap: 1.5rem !important;
}
.gap-5 {
	gap: 3rem !important;
}
.mt-0,
.my-0 {
	margin-top: 0 !important
}
.mr-0,
.mx-0 {
	margin-right: 0 !important
}
.mb-0,
.my-0 {
	margin-bottom: 0 !important
}
.ml-0,
.mx-0 {
	margin-left: 0 !important
}
.mt-8,
.my-8 {
	margin-top: .5rem !important
}
.mr-8,
.mx-8 {
	margin-right: .5rem !important
}
.mb-8,
.my-8 {
	margin-bottom: .5rem !important
}
.ml-8,
.mx-8 {
	margin-left: .5rem !important
}
.mt-16,
.my-16 {
	margin-top: 1rem !important
}
.mr-16,
.mx-16 {
	margin-right: 1rem !important
}
.mb-16,
.my-16 {
	margin-bottom: 1rem !important
}
.ml-16,
.mx-16 {
	margin-left: 1rem !important
}
.mt-24,
.my-24 {
	margin-top: 1.5rem !important
}
.mr-24,
.mx-24 {
	margin-right: 1.5rem !important
}
.mb-24,
.my-24 {
	margin-bottom: 1.5rem !important
}
.ml-24,
.mx-24 {
	margin-left: 1.5rem !important
}
.mt-32,
.my-32 {
	margin-top: 2rem !important
}
.mr-32,
.mx-32 {
	margin-right: 2rem !important
}
.mb-32,
.my-32 {
	margin-bottom: 2rem !important
}
.ml-32,
.mx-32 {
	margin-left: 2rem !important
}
.mt-40,
.my-40 {
	margin-top: 2.5rem !important
}
.mr-40,
.mx-40 {
	margin-right: 2.5rem !important
}
.mb-40,
.my-40 {
	margin-bottom: 2.5rem !important
}
.ml-40,
.mx-40 {
	margin-left: 2.5rem !important
}
.mt-48,
.my-48 {
	margin-top: 3rem !important
}
.mr-48,
.mx-48 {
	margin-right: 3rem !important
}
.mb-48,
.my-48 {
	margin-bottom: 3rem !important
}
.ml-48,
.mx-48 {
	margin-left: 3rem !important
}
.mt-56,
.my-56 {
	margin-top: 3.5rem !important
}
.mr-56,
.mx-56 {
	margin-right: 3.5rem !important
}
.mb-56,
.my-56 {
	margin-bottom: 3.5rem !important
}
.ml-56,
.mx-56 {
	margin-left: 3.5rem !important
}
.mt-64,
.my-64 {
	margin-top: 4rem !important
}
.mr-64,
.mx-64 {
	margin-right: 4rem !important
}
.mb-64,
.my-64 {
	margin-bottom: 4rem !important
}
.ml-64,
.mx-64 {
	margin-left: 4rem !important
}
.mt-72,
.my-72 {
	margin-top: 4.5rem !important
}
.mr-72,
.mx-72 {
	margin-right: 4.5rem !important
}
.mb-72,
.my-72 {
	margin-bottom: 4.5rem !important
}
.ml-72,
.mx-72 {
	margin-left: 4.5rem !important
}
.mt-80,
.my-80 {
	margin-top: 5rem !important
}
.mr-80,
.mx-80 {
	margin-right: 5rem !important
}
.mb-80,
.my-80 {
	margin-bottom: 5rem !important
}
.ml-80,
.mx-80 {
	margin-left: 5rem !important
}
.mt-96,
.my-96 {
	margin-top: 6rem !important
}
.mr-96,
.mx-96 {
	margin-right: 6rem !important
}
.mb-96,
.my-96 {
	margin-bottom: 6rem !important
}
.ml-96,
.mx-96 {
	margin-left: 6rem !important
}
.mt-112,
.my-112 {
	margin-top: 7rem !important
}
.mr-112,
.mx-112 {
	margin-right: 7rem !important
}
.mb-112,
.my-112 {
	margin-bottom: 7rem !important
}
.ml-112,
.mx-112 {
	margin-left: 7rem !important
}
.mt-128,
.my-128 {
	margin-top: 8rem !important
}
.mr-128,
.mx-128 {
	margin-right: 8rem !important
}
.mb-128,
.my-128 {
	margin-bottom: 8rem !important
}
.ml-128,
.mx-128 {
	margin-left: 8rem !important
}
.mt-140,
.my-140 {
	margin-top: 8.75rem !important
}
.mr-140,
.mx-140 {
	margin-right: 8.75rem !important
}
.mb-140,
.my-140 {
	margin-bottom: 8.75rem !important
}
.ml-140,
.mx-140 {
	margin-left: 8.75rem !important
}
.mt-144,
.my-144 {
	margin-top: 9rem !important
}
.mr-144,
.mx-144 {
	margin-right: 9rem !important
}
.mb-144,
.my-144 {
	margin-bottom: 9rem !important
}
.ml-144,
.mx-144 {
	margin-left: 9rem !important
}
.mt-152,
.my-152 {
	margin-top: 9.5rem !important
}
.mr-152,
.mx-152 {
	margin-right: 9.5rem !important
}
.mb-152,
.my-152 {
	margin-bottom: 9.5rem !important
}
.ml-152,
.mx-152 {
	margin-left: 9.5rem !important
}
.mt-160,
.my-160 {
	margin-top: 10rem !important
}
.mr-160,
.mx-160 {
	margin-right: 10rem !important
}
.mb-160,
.my-160 {
	margin-bottom: 10rem !important
}
.ml-160,
.mx-160 {
	margin-left: 10rem !important
}
.mt-200,
.my-200 {
	margin-top: 12.5rem !important
}
.mr-200,
.mx-200 {
	margin-right: 12.5rem !important
}
.mb-200,
.my-200 {
	margin-bottom: 12.5rem !important
}
.ml-200,
.mx-200 {
	margin-left: 12.5rem !important
}
.pt-0,
.py-0 {
	padding-top: 0 !important
}
.pr-0,
.px-0 {
	padding-right: 0 !important
}
.pb-0,
.py-0 {
	padding-bottom: 0 !important
}
.pl-0,
.px-0 {
	padding-left: 0 !important
}
.pt-8,
.py-8 {
	padding-top: .5rem !important
}
.pr-8,
.px-8 {
	padding-right: .5rem !important
}
.pb-8,
.py-8 {
	padding-bottom: .5rem !important
}
.pl-8,
.px-8 {
	padding-left: .5rem !important
}
.pt-16,
.py-16 {
	padding-top: 1rem !important
}
.pr-16,
.px-16 {
	padding-right: 1rem !important
}
.pb-16,
.py-16 {
	padding-bottom: 1rem !important
}
.pl-16,
.px-16 {
	padding-left: 1rem !important
}
.pt-24,
.py-24 {
	padding-top: 1.5rem !important
}
.pr-24,
.px-24 {
	padding-right: 1.5rem !important
}
.pb-24,
.py-24 {
	padding-bottom: 1.5rem !important
}
.pl-24,
.px-24 {
	padding-left: 1.5rem !important
}
.pt-32,
.py-32 {
	padding-top: 2rem !important
}
.pr-32,
.px-32 {
	padding-right: 2rem !important
}
.pb-32,
.py-32 {
	padding-bottom: 2rem !important
}
.pl-32,
.px-32 {
	padding-left: 2rem !important
}
.pt-40,
.py-40 {
	padding-top: 2.5rem !important
}
.pr-40,
.px-40 {
	padding-right: 2.5rem !important
}
.pb-40,
.py-40 {
	padding-bottom: 2.5rem !important
}
.pl-40,
.px-40 {
	padding-left: 2.5rem !important
}
.pt-48,
.py-48 {
	padding-top: 3rem !important
}
.pr-48,
.px-48 {
	padding-right: 3rem !important
}
.pb-48,
.py-48 {
	padding-bottom: 3rem !important
}
.pl-48,
.px-48 {
	padding-left: 3rem !important
}
.pt-56,
.py-56 {
	padding-top: 3.5rem !important
}
.pr-56,
.px-56 {
	padding-right: 3.5rem !important
}
.pb-56,
.py-56 {
	padding-bottom: 3.5rem !important
}
.pl-56,
.px-56 {
	padding-left: 3.5rem !important
}
.pt-64,
.py-64 {
	padding-top: 4rem !important
}
.pr-64,
.px-64 {
	padding-right: 4rem !important
}
.pb-64,
.py-64 {
	padding-bottom: 4rem !important
}
.pl-64,
.px-64 {
	padding-left: 4rem !important
}
.pt-72,
.py-72 {
	padding-top: 4.5rem !important
}
.pr-72,
.px-72 {
	padding-right: 4.5rem !important
}
.pb-72,
.py-72 {
	padding-bottom: 4.5rem !important
}
.pl-72,
.px-72 {
	padding-left: 4.5rem !important
}
.pt-80,
.py-80 {
	padding-top: 5rem !important
}
.pr-80,
.px-80 {
	padding-right: 5rem !important
}
.pb-80,
.py-80 {
	padding-bottom: 5rem !important
}
.pl-80,
.px-80 {
	padding-left: 5rem !important
}
.pt-96,
.py-96 {
	padding-top: 6rem !important
}
.pr-96,
.px-96 {
	padding-right: 6rem !important
}
.pb-96,
.py-96 {
	padding-bottom: 6rem !important
}
.pl-96,
.px-96 {
	padding-left: 6rem !important
}
.pt-112,
.py-112 {
	padding-top: 7rem !important
}
.pr-112,
.px-112 {
	padding-right: 7rem !important
}
.pb-112,
.py-112 {
	padding-bottom: 7rem !important
}
.pl-112,
.px-112 {
	padding-left: 7rem !important
}
.pt-128,
.py-128 {
	padding-top: 8rem !important
}
.pr-128,
.px-128 {
	padding-right: 8rem !important
}
.pb-128,
.py-128 {
	padding-bottom: 8rem !important
}
.pl-128,
.px-128 {
	padding-left: 8rem !important
}
.pt-140,
.py-140 {
	padding-top: 8.75rem !important
}
.pr-140,
.px-140 {
	padding-right: 8.75rem !important
}
.pb-140,
.py-140 {
	padding-bottom: 8.75rem !important
}
.pl-140,
.px-140 {
	padding-left: 8.75rem !important
}
.pt-144,
.py-144 {
	padding-top: 9rem !important
}
.pr-144,
.px-144 {
	padding-right: 9rem !important
}
.pb-144,
.py-144 {
	padding-bottom: 9rem !important
}
.pl-144,
.px-144 {
	padding-left: 9rem !important
}
.pt-152,
.py-152 {
	padding-top: 9.5rem !important
}
.pr-152,
.px-152 {
	padding-right: 9.5rem !important
}
.pb-152,
.py-152 {
	padding-bottom: 9.5rem !important
}
.pl-152,
.px-152 {
	padding-left: 9.5rem !important
}
.pt-160,
.py-160 {
	padding-top: 10rem !important
}
.pr-160,
.px-160 {
	padding-right: 10rem !important
}
.pb-160,
.py-160 {
	padding-bottom: 10rem !important
}
.pl-160,
.px-160 {
	padding-left: 10rem !important
}
.pt-200,
.py-200 {
	padding-top: 12.5rem !important
}
.pr-200,
.px-200 {
	padding-right: 12.5rem !important
}
.pb-200,
.py-200 {
	padding-bottom: 12.5rem !important
}
.pl-200,
.px-200 {
	padding-left: 12.5rem !important
}
.m-auto {
	margin: auto !important
}
.mt-auto,
.my-auto {
	margin-top: auto !important
}
.mr-auto,
.mx-auto {
	margin-right: auto !important
}
.mb-auto,
.my-auto {
	margin-bottom: auto !important
}
.ml-auto,
.mx-auto {
	margin-left: auto !important
}
.mt-0-negative {
	margin-top: 0 !important
}
.mt-8-negative {
	margin-top: -.5rem !important
}
.mt-16-negative {
	margin-top: -1rem !important
}
.mt-24-negative {
	margin-top: -1.5rem !important
}
.mt-32-negative {
	margin-top: -2rem !important
}
.mt-40-negative {
	margin-top: -2.5rem !important
}
.mt-48-negative {
	margin-top: -3rem !important
}
.mt-56-negative {
	margin-top: -3.5rem !important
}
.mt-64-negative {
	margin-top: -4rem !important
}
.mt-72-negative {
	margin-top: -4.5rem !important
}
.mt-80-negative {
	margin-top: -5rem !important
}
.mt-96-negative {
	margin-top: -6rem !important
}
.mt-112-negative {
	margin-top: -7rem !important
}
.mt-128-negative {
	margin-top: -8rem !important
}
.mt-140-negative {
	margin-top: -8.75rem !important
}
.mt-144-negative {
	margin-top: -9rem !important
}
.mt-152-negative {
	margin-top: -9.5rem !important
}
.mt-160-negative {
	margin-top: -10rem !important
}
.mt-200-negative {
	margin-top: -12.5rem !important
}
@media (min-width:640px) {
	.mt-md-0,
	.my-md-0 {
		margin-top: 0 !important
	}
	.mr-md-0,
	.mx-md-0 {
		margin-right: 0 !important
	}
	.mb-md-0,
	.my-md-0 {
		margin-bottom: 0 !important
	}
	.ml-md-0,
	.mx-md-0 {
		margin-left: 0 !important
	}
	.mt-md-8,
	.my-md-8 {
		margin-top: .5rem !important
	}
	.mr-md-8,
	.mx-md-8 {
		margin-right: .5rem !important
	}
	.mb-md-8,
	.my-md-8 {
		margin-bottom: .5rem !important
	}
	.ml-md-8,
	.mx-md-8 {
		margin-left: .5rem !important
	}
	.mt-md-16,
	.my-md-16 {
		margin-top: 1rem !important
	}
	.mr-md-16,
	.mx-md-16 {
		margin-right: 1rem !important
	}
	.mb-md-16,
	.my-md-16 {
		margin-bottom: 1rem !important
	}
	.ml-md-16,
	.mx-md-16 {
		margin-left: 1rem !important
	}
	.mt-md-24,
	.my-md-24 {
		margin-top: 1.5rem !important
	}
	.mr-md-24,
	.mx-md-24 {
		margin-right: 1.5rem !important
	}
	.mb-md-24,
	.my-md-24 {
		margin-bottom: 1.5rem !important
	}
	.ml-md-24,
	.mx-md-24 {
		margin-left: 1.5rem !important
	}
	.mt-md-32,
	.my-md-32 {
		margin-top: 2rem !important
	}
	.mr-md-32,
	.mx-md-32 {
		margin-right: 2rem !important
	}
	.mb-md-32,
	.my-md-32 {
		margin-bottom: 2rem !important
	}
	.ml-md-32,
	.mx-md-32 {
		margin-left: 2rem !important
	}
	.mt-md-40,
	.my-md-40 {
		margin-top: 2.5rem !important
	}
	.mr-md-40,
	.mx-md-40 {
		margin-right: 2.5rem !important
	}
	.mb-md-40,
	.my-md-40 {
		margin-bottom: 2.5rem !important
	}
	.ml-md-40,
	.mx-md-40 {
		margin-left: 2.5rem !important
	}
	.mt-md-48,
	.my-md-48 {
		margin-top: 3rem !important
	}
	.mr-md-48,
	.mx-md-48 {
		margin-right: 3rem !important
	}
	.mb-md-48,
	.my-md-48 {
		margin-bottom: 3rem !important
	}
	.ml-md-48,
	.mx-md-48 {
		margin-left: 3rem !important
	}
	.mt-md-56,
	.my-md-56 {
		margin-top: 3.5rem !important
	}
	.mr-md-56,
	.mx-md-56 {
		margin-right: 3.5rem !important
	}
	.mb-md-56,
	.my-md-56 {
		margin-bottom: 3.5rem !important
	}
	.ml-md-56,
	.mx-md-56 {
		margin-left: 3.5rem !important
	}
	.mt-md-64,
	.my-md-64 {
		margin-top: 4rem !important
	}
	.mr-md-64,
	.mx-md-64 {
		margin-right: 4rem !important
	}
	.mb-md-64,
	.my-md-64 {
		margin-bottom: 4rem !important
	}
	.ml-md-64,
	.mx-md-64 {
		margin-left: 4rem !important
	}
	.mt-md-72,
	.my-md-72 {
		margin-top: 4.5rem !important
	}
	.mr-md-72,
	.mx-md-72 {
		margin-right: 4.5rem !important
	}
	.mb-md-72,
	.my-md-72 {
		margin-bottom: 4.5rem !important
	}
	.ml-md-72,
	.mx-md-72 {
		margin-left: 4.5rem !important
	}
	.mt-md-80,
	.my-md-80 {
		margin-top: 5rem !important
	}
	.mr-md-80,
	.mx-md-80 {
		margin-right: 5rem !important
	}
	.mb-md-80,
	.my-md-80 {
		margin-bottom: 5rem !important
	}
	.ml-md-80,
	.mx-md-80 {
		margin-left: 5rem !important
	}
	.mt-md-96,
	.my-md-96 {
		margin-top: 6rem !important
	}
	.mr-md-96,
	.mx-md-96 {
		margin-right: 6rem !important
	}
	.mb-md-96,
	.my-md-96 {
		margin-bottom: 6rem !important
	}
	.ml-md-96,
	.mx-md-96 {
		margin-left: 6rem !important
	}
	.mt-md-112,
	.my-md-112 {
		margin-top: 7rem !important
	}
	.mr-md-112,
	.mx-md-112 {
		margin-right: 7rem !important
	}
	.mb-md-112,
	.my-md-112 {
		margin-bottom: 7rem !important
	}
	.ml-md-112,
	.mx-md-112 {
		margin-left: 7rem !important
	}
	.mt-md-128,
	.my-md-128 {
		margin-top: 8rem !important
	}
	.mr-md-128,
	.mx-md-128 {
		margin-right: 8rem !important
	}
	.mb-md-128,
	.my-md-128 {
		margin-bottom: 8rem !important
	}
	.ml-md-128,
	.mx-md-128 {
		margin-left: 8rem !important
	}
	.mt-md-140,
	.my-md-140 {
		margin-top: 8.75rem !important
	}
	.mr-md-140,
	.mx-md-140 {
		margin-right: 8.75rem !important
	}
	.mb-md-140,
	.my-md-140 {
		margin-bottom: 8.75rem !important
	}
	.ml-md-140,
	.mx-md-140 {
		margin-left: 8.75rem !important
	}
	.mt-md-144,
	.my-md-144 {
		margin-top: 9rem !important
	}
	.mr-md-144,
	.mx-md-144 {
		margin-right: 9rem !important
	}
	.mb-md-144,
	.my-md-144 {
		margin-bottom: 9rem !important
	}
	.ml-md-144,
	.mx-md-144 {
		margin-left: 9rem !important
	}
	.mt-md-152,
	.my-md-152 {
		margin-top: 9.5rem !important
	}
	.mr-md-152,
	.mx-md-152 {
		margin-right: 9.5rem !important
	}
	.mb-md-152,
	.my-md-152 {
		margin-bottom: 9.5rem !important
	}
	.ml-md-152,
	.mx-md-152 {
		margin-left: 9.5rem !important
	}
	.mt-md-160,
	.my-md-160 {
		margin-top: 10rem !important
	}
	.mr-md-160,
	.mx-md-160 {
		margin-right: 10rem !important
	}
	.mb-md-160,
	.my-md-160 {
		margin-bottom: 10rem !important
	}
	.ml-md-160,
	.mx-md-160 {
		margin-left: 10rem !important
	}
	.mt-md-200,
	.my-md-200 {
		margin-top: 12.5rem !important
	}
	.mr-md-200,
	.mx-md-200 {
		margin-right: 12.5rem !important
	}
	.mb-md-200,
	.my-md-200 {
		margin-bottom: 12.5rem !important
	}
	.ml-md-200,
	.mx-md-200 {
		margin-left: 12.5rem !important
	}
	.pt-md-0,
	.py-md-0 {
		padding-top: 0 !important
	}
	.pr-md-0,
	.px-md-0 {
		padding-right: 0 !important
	}
	.pb-md-0,
	.py-md-0 {
		padding-bottom: 0 !important
	}
	.pl-md-0,
	.px-md-0 {
		padding-left: 0 !important
	}
	.pt-md-8,
	.py-md-8 {
		padding-top: .5rem !important
	}
	.pr-md-8,
	.px-md-8 {
		padding-right: .5rem !important
	}
	.pb-md-8,
	.py-md-8 {
		padding-bottom: .5rem !important
	}
	.pl-md-8,
	.px-md-8 {
		padding-left: .5rem !important
	}
	.pt-md-16,
	.py-md-16 {
		padding-top: 1rem !important
	}
	.pr-md-16,
	.px-md-16 {
		padding-right: 1rem !important
	}
	.pb-md-16,
	.py-md-16 {
		padding-bottom: 1rem !important
	}
	.pl-md-16,
	.px-md-16 {
		padding-left: 1rem !important
	}
	.pt-md-24,
	.py-md-24 {
		padding-top: 1.5rem !important
	}
	.pr-md-24,
	.px-md-24 {
		padding-right: 1.5rem !important
	}
	.pb-md-24,
	.py-md-24 {
		padding-bottom: 1.5rem !important
	}
	.pl-md-24,
	.px-md-24 {
		padding-left: 1.5rem !important
	}
	.pt-md-32,
	.py-md-32 {
		padding-top: 2rem !important
	}
	.pr-md-32,
	.px-md-32 {
		padding-right: 2rem !important
	}
	.pb-md-32,
	.py-md-32 {
		padding-bottom: 2rem !important
	}
	.pl-md-32,
	.px-md-32 {
		padding-left: 2rem !important
	}
	.pt-md-40,
	.py-md-40 {
		padding-top: 2.5rem !important
	}
	.pr-md-40,
	.px-md-40 {
		padding-right: 2.5rem !important
	}
	.pb-md-40,
	.py-md-40 {
		padding-bottom: 2.5rem !important
	}
	.pl-md-40,
	.px-md-40 {
		padding-left: 2.5rem !important
	}
	.pt-md-48,
	.py-md-48 {
		padding-top: 3rem !important
	}
	.pr-md-48,
	.px-md-48 {
		padding-right: 3rem !important
	}
	.pb-md-48,
	.py-md-48 {
		padding-bottom: 3rem !important
	}
	.pl-md-48,
	.px-md-48 {
		padding-left: 3rem !important
	}
	.pt-md-56,
	.py-md-56 {
		padding-top: 3.5rem !important
	}
	.pr-md-56,
	.px-md-56 {
		padding-right: 3.5rem !important
	}
	.pb-md-56,
	.py-md-56 {
		padding-bottom: 3.5rem !important
	}
	.pl-md-56,
	.px-md-56 {
		padding-left: 3.5rem !important
	}
	.pt-md-64,
	.py-md-64 {
		padding-top: 4rem !important
	}
	.pr-md-64,
	.px-md-64 {
		padding-right: 4rem !important
	}
	.pb-md-64,
	.py-md-64 {
		padding-bottom: 4rem !important
	}
	.pl-md-64,
	.px-md-64 {
		padding-left: 4rem !important
	}
	.pt-md-72,
	.py-md-72 {
		padding-top: 4.5rem !important
	}
	.pr-md-72,
	.px-md-72 {
		padding-right: 4.5rem !important
	}
	.pb-md-72,
	.py-md-72 {
		padding-bottom: 4.5rem !important
	}
	.pl-md-72,
	.px-md-72 {
		padding-left: 4.5rem !important
	}
	.pt-md-80,
	.py-md-80 {
		padding-top: 5rem !important
	}
	.pr-md-80,
	.px-md-80 {
		padding-right: 5rem !important
	}
	.pb-md-80,
	.py-md-80 {
		padding-bottom: 5rem !important
	}
	.pl-md-80,
	.px-md-80 {
		padding-left: 5rem !important
	}
	.pt-md-96,
	.py-md-96 {
		padding-top: 6rem !important
	}
	.pr-md-96,
	.px-md-96 {
		padding-right: 6rem !important
	}
	.pb-md-96,
	.py-md-96 {
		padding-bottom: 6rem !important
	}
	.pl-md-96,
	.px-md-96 {
		padding-left: 6rem !important
	}
	.pt-md-112,
	.py-md-112 {
		padding-top: 7rem !important
	}
	.pr-md-112,
	.px-md-112 {
		padding-right: 7rem !important
	}
	.pb-md-112,
	.py-md-112 {
		padding-bottom: 7rem !important
	}
	.pl-md-112,
	.px-md-112 {
		padding-left: 7rem !important
	}
	.pt-md-128,
	.py-md-128 {
		padding-top: 8rem !important
	}
	.pr-md-128,
	.px-md-128 {
		padding-right: 8rem !important
	}
	.pb-md-128,
	.py-md-128 {
		padding-bottom: 8rem !important
	}
	.pl-md-128,
	.px-md-128 {
		padding-left: 8rem !important
	}
	.pt-md-140,
	.py-md-140 {
		padding-top: 8.75rem !important
	}
	.pr-md-140,
	.px-md-140 {
		padding-right: 8.75rem !important
	}
	.pb-md-140,
	.py-md-140 {
		padding-bottom: 8.75rem !important
	}
	.pl-md-140,
	.px-md-140 {
		padding-left: 8.75rem !important
	}
	.pt-md-144,
	.py-md-144 {
		padding-top: 9rem !important
	}
	.pr-md-144,
	.px-md-144 {
		padding-right: 9rem !important
	}
	.pb-md-144,
	.py-md-144 {
		padding-bottom: 9rem !important
	}
	.pl-md-144,
	.px-md-144 {
		padding-left: 9rem !important
	}
	.pt-md-152,
	.py-md-152 {
		padding-top: 9.5rem !important
	}
	.pr-md-152,
	.px-md-152 {
		padding-right: 9.5rem !important
	}
	.pb-md-152,
	.py-md-152 {
		padding-bottom: 9.5rem !important
	}
	.pl-md-152,
	.px-md-152 {
		padding-left: 9.5rem !important
	}
	.pt-md-160,
	.py-md-160 {
		padding-top: 10rem !important
	}
	.pr-md-160,
	.px-md-160 {
		padding-right: 10rem !important
	}
	.pb-md-160,
	.py-md-160 {
		padding-bottom: 10rem !important
	}
	.pl-md-160,
	.px-md-160 {
		padding-left: 10rem !important
	}
	.pt-md-200,
	.py-md-200 {
		padding-top: 12.5rem !important
	}
	.pr-md-200,
	.px-md-200 {
		padding-right: 12.5rem !important
	}
	.pb-md-200,
	.py-md-200 {
		padding-bottom: 12.5rem !important
	}
	.pl-md-200,
	.px-md-200 {
		padding-left: 12.5rem !important
	}
	.m-md-auto {
		margin: auto !important
	}
	.mt-md-auto,
	.my-md-auto {
		margin-top: auto !important
	}
	.mr-md-auto,
	.mx-md-auto {
		margin-right: auto !important
	}
	.mb-md-auto,
	.my-md-auto {
		margin-bottom: auto !important
	}
	.ml-md-auto,
	.mx-md-auto {
		margin-left: auto !important
	}
	.mt-md-0-negative {
		margin-top: 0 !important
	}
	.mt-md-8-negative {
		margin-top: -.5rem !important
	}
	.mt-md-16-negative {
		margin-top: -1rem !important
	}
	.mt-md-24-negative {
		margin-top: -1.5rem !important
	}
	.mt-md-32-negative {
		margin-top: -2rem !important
	}
	.mt-md-40-negative {
		margin-top: -2.5rem !important
	}
	.mt-md-48-negative {
		margin-top: -3rem !important
	}
	.mt-md-56-negative {
		margin-top: -3.5rem !important
	}
	.mt-md-64-negative {
		margin-top: -4rem !important
	}
	.mt-md-72-negative {
		margin-top: -4.5rem !important
	}
	.mt-md-80-negative {
		margin-top: -5rem !important
	}
	.mt-md-96-negative {
		margin-top: -6rem !important
	}
	.mt-md-112-negative {
		margin-top: -7rem !important
	}
	.mt-md-128-negative {
		margin-top: -8rem !important
	}
	.mt-md-140-negative {
		margin-top: -8.75rem !important
	}
	.mt-md-144-negative {
		margin-top: -9rem !important
	}
	.mt-md-152-negative {
		margin-top: -9.5rem !important
	}
	.mt-md-160-negative {
		margin-top: -10rem !important
	}
	.mt-md-200-negative {
		margin-top: -12.5rem !important
	}
}
@media (min-width:990px) {
	.mt-lg-0,
	.my-lg-0 {
		margin-top: 0 !important
	}
	.mr-lg-0,
	.mx-lg-0 {
		margin-right: 0 !important
	}
	.mb-lg-0,
	.my-lg-0 {
		margin-bottom: 0 !important
	}
	.ml-lg-0,
	.mx-lg-0 {
		margin-left: 0 !important
	}
	.mt-lg-8,
	.my-lg-8 {
		margin-top: .5rem !important
	}
	.mr-lg-8,
	.mx-lg-8 {
		margin-right: .5rem !important
	}
	.mb-lg-8,
	.my-lg-8 {
		margin-bottom: .5rem !important
	}
	.ml-lg-8,
	.mx-lg-8 {
		margin-left: .5rem !important
	}
	.mt-lg-16,
	.my-lg-16 {
		margin-top: 1rem !important
	}
	.mr-lg-16,
	.mx-lg-16 {
		margin-right: 1rem !important
	}
	.mb-lg-16,
	.my-lg-16 {
		margin-bottom: 1rem !important
	}
	.ml-lg-16,
	.mx-lg-16 {
		margin-left: 1rem !important
	}
	.mt-lg-24,
	.my-lg-24 {
		margin-top: 1.5rem !important
	}
	.mr-lg-24,
	.mx-lg-24 {
		margin-right: 1.5rem !important
	}
	.mb-lg-24,
	.my-lg-24 {
		margin-bottom: 1.5rem !important
	}
	.ml-lg-24,
	.mx-lg-24 {
		margin-left: 1.5rem !important
	}
	.mt-lg-32,
	.my-lg-32 {
		margin-top: 2rem !important
	}
	.mr-lg-32,
	.mx-lg-32 {
		margin-right: 2rem !important
	}
	.mb-lg-32,
	.my-lg-32 {
		margin-bottom: 2rem !important
	}
	.ml-lg-32,
	.mx-lg-32 {
		margin-left: 2rem !important
	}
	.mt-lg-40,
	.my-lg-40 {
		margin-top: 2.5rem !important
	}
	.mr-lg-40,
	.mx-lg-40 {
		margin-right: 2.5rem !important
	}
	.mb-lg-40,
	.my-lg-40 {
		margin-bottom: 2.5rem !important
	}
	.ml-lg-40,
	.mx-lg-40 {
		margin-left: 2.5rem !important
	}
	.mt-lg-48,
	.my-lg-48 {
		margin-top: 3rem !important
	}
	.mr-lg-48,
	.mx-lg-48 {
		margin-right: 3rem !important
	}
	.mb-lg-48,
	.my-lg-48 {
		margin-bottom: 3rem !important
	}
	.ml-lg-48,
	.mx-lg-48 {
		margin-left: 3rem !important
	}
	.mt-lg-56,
	.my-lg-56 {
		margin-top: 3.5rem !important
	}
	.mr-lg-56,
	.mx-lg-56 {
		margin-right: 3.5rem !important
	}
	.mb-lg-56,
	.my-lg-56 {
		margin-bottom: 3.5rem !important
	}
	.ml-lg-56,
	.mx-lg-56 {
		margin-left: 3.5rem !important
	}
	.mt-lg-64,
	.my-lg-64 {
		margin-top: 4rem !important
	}
	.mr-lg-64,
	.mx-lg-64 {
		margin-right: 4rem !important
	}
	.mb-lg-64,
	.my-lg-64 {
		margin-bottom: 4rem !important
	}
	.ml-lg-64,
	.mx-lg-64 {
		margin-left: 4rem !important
	}
	.mt-lg-72,
	.my-lg-72 {
		margin-top: 4.5rem !important
	}
	.mr-lg-72,
	.mx-lg-72 {
		margin-right: 4.5rem !important
	}
	.mb-lg-72,
	.my-lg-72 {
		margin-bottom: 4.5rem !important
	}
	.ml-lg-72,
	.mx-lg-72 {
		margin-left: 4.5rem !important
	}
	.mt-lg-80,
	.my-lg-80 {
		margin-top: 5rem !important
	}
	.mr-lg-80,
	.mx-lg-80 {
		margin-right: 5rem !important
	}
	.mb-lg-80,
	.my-lg-80 {
		margin-bottom: 5rem !important
	}
	.ml-lg-80,
	.mx-lg-80 {
		margin-left: 5rem !important
	}
	.mt-lg-96,
	.my-lg-96 {
		margin-top: 6rem !important
	}
	.mr-lg-96,
	.mx-lg-96 {
		margin-right: 6rem !important
	}
	.mb-lg-96,
	.my-lg-96 {
		margin-bottom: 6rem !important
	}
	.ml-lg-96,
	.mx-lg-96 {
		margin-left: 6rem !important
	}
	.mt-lg-112,
	.my-lg-112 {
		margin-top: 7rem !important
	}
	.mr-lg-112,
	.mx-lg-112 {
		margin-right: 7rem !important
	}
	.mb-lg-112,
	.my-lg-112 {
		margin-bottom: 7rem !important
	}
	.ml-lg-112,
	.mx-lg-112 {
		margin-left: 7rem !important
	}
	.mt-lg-128,
	.my-lg-128 {
		margin-top: 8rem !important
	}
	.mr-lg-128,
	.mx-lg-128 {
		margin-right: 8rem !important
	}
	.mb-lg-128,
	.my-lg-128 {
		margin-bottom: 8rem !important
	}
	.ml-lg-128,
	.mx-lg-128 {
		margin-left: 8rem !important
	}
	.mt-lg-140,
	.my-lg-140 {
		margin-top: 8.75rem !important
	}
	.mr-lg-140,
	.mx-lg-140 {
		margin-right: 8.75rem !important
	}
	.mb-lg-140,
	.my-lg-140 {
		margin-bottom: 8.75rem !important
	}
	.ml-lg-140,
	.mx-lg-140 {
		margin-left: 8.75rem !important
	}
	.mt-lg-144,
	.my-lg-144 {
		margin-top: 9rem !important
	}
	.mr-lg-144,
	.mx-lg-144 {
		margin-right: 9rem !important
	}
	.mb-lg-144,
	.my-lg-144 {
		margin-bottom: 9rem !important
	}
	.ml-lg-144,
	.mx-lg-144 {
		margin-left: 9rem !important
	}
	.mt-lg-152,
	.my-lg-152 {
		margin-top: 9.5rem !important
	}
	.mr-lg-152,
	.mx-lg-152 {
		margin-right: 9.5rem !important
	}
	.mb-lg-152,
	.my-lg-152 {
		margin-bottom: 9.5rem !important
	}
	.ml-lg-152,
	.mx-lg-152 {
		margin-left: 9.5rem !important
	}
	.mt-lg-160,
	.my-lg-160 {
		margin-top: 10rem !important
	}
	.mr-lg-160,
	.mx-lg-160 {
		margin-right: 10rem !important
	}
	.mb-lg-160,
	.my-lg-160 {
		margin-bottom: 10rem !important
	}
	.ml-lg-160,
	.mx-lg-160 {
		margin-left: 10rem !important
	}
	.mt-lg-200,
	.my-lg-200 {
		margin-top: 12.5rem !important
	}
	.mr-lg-200,
	.mx-lg-200 {
		margin-right: 12.5rem !important
	}
	.mb-lg-200,
	.my-lg-200 {
		margin-bottom: 12.5rem !important
	}
	.ml-lg-200,
	.mx-lg-200 {
		margin-left: 12.5rem !important
	}
	.pt-lg-0,
	.py-lg-0 {
		padding-top: 0 !important
	}
	.pr-lg-0,
	.px-lg-0 {
		padding-right: 0 !important
	}
	.pb-lg-0,
	.py-lg-0 {
		padding-bottom: 0 !important
	}
	.pl-lg-0,
	.px-lg-0 {
		padding-left: 0 !important
	}
	.pt-lg-8,
	.py-lg-8 {
		padding-top: .5rem !important
	}
	.pr-lg-8,
	.px-lg-8 {
		padding-right: .5rem !important
	}
	.pb-lg-8,
	.py-lg-8 {
		padding-bottom: .5rem !important
	}
	.pl-lg-8,
	.px-lg-8 {
		padding-left: .5rem !important
	}
	.pt-lg-16,
	.py-lg-16 {
		padding-top: 1rem !important
	}
	.pr-lg-16,
	.px-lg-16 {
		padding-right: 1rem !important
	}
	.pb-lg-16,
	.py-lg-16 {
		padding-bottom: 1rem !important
	}
	.pl-lg-16,
	.px-lg-16 {
		padding-left: 1rem !important
	}
	.pt-lg-24,
	.py-lg-24 {
		padding-top: 1.5rem !important
	}
	.pr-lg-24,
	.px-lg-24 {
		padding-right: 1.5rem !important
	}
	.pb-lg-24,
	.py-lg-24 {
		padding-bottom: 1.5rem !important
	}
	.pl-lg-24,
	.px-lg-24 {
		padding-left: 1.5rem !important
	}
	.pt-lg-32,
	.py-lg-32 {
		padding-top: 2rem !important
	}
	.pr-lg-32,
	.px-lg-32 {
		padding-right: 2rem !important
	}
	.pb-lg-32,
	.py-lg-32 {
		padding-bottom: 2rem !important
	}
	.pl-lg-32,
	.px-lg-32 {
		padding-left: 2rem !important
	}
	.pt-lg-40,
	.py-lg-40 {
		padding-top: 2.5rem !important
	}
	.pr-lg-40,
	.px-lg-40 {
		padding-right: 2.5rem !important
	}
	.pb-lg-40,
	.py-lg-40 {
		padding-bottom: 2.5rem !important
	}
	.pl-lg-40,
	.px-lg-40 {
		padding-left: 2.5rem !important
	}
	.pt-lg-48,
	.py-lg-48 {
		padding-top: 3rem !important
	}
	.pr-lg-48,
	.px-lg-48 {
		padding-right: 3rem !important
	}
	.pb-lg-48,
	.py-lg-48 {
		padding-bottom: 3rem !important
	}
	.pl-lg-48,
	.px-lg-48 {
		padding-left: 3rem !important
	}
	.pt-lg-56,
	.py-lg-56 {
		padding-top: 3.5rem !important
	}
	.pr-lg-56,
	.px-lg-56 {
		padding-right: 3.5rem !important
	}
	.pb-lg-56,
	.py-lg-56 {
		padding-bottom: 3.5rem !important
	}
	.pl-lg-56,
	.px-lg-56 {
		padding-left: 3.5rem !important
	}
	.pt-lg-64,
	.py-lg-64 {
		padding-top: 4rem !important
	}
	.pr-lg-64,
	.px-lg-64 {
		padding-right: 4rem !important
	}
	.pb-lg-64,
	.py-lg-64 {
		padding-bottom: 4rem !important
	}
	.pl-lg-64,
	.px-lg-64 {
		padding-left: 4rem !important
	}
	.pt-lg-72,
	.py-lg-72 {
		padding-top: 4.5rem !important
	}
	.pr-lg-72,
	.px-lg-72 {
		padding-right: 4.5rem !important
	}
	.pb-lg-72,
	.py-lg-72 {
		padding-bottom: 4.5rem !important
	}
	.pl-lg-72,
	.px-lg-72 {
		padding-left: 4.5rem !important
	}
	.pt-lg-80,
	.py-lg-80 {
		padding-top: 5rem !important
	}
	.pr-lg-80,
	.px-lg-80 {
		padding-right: 5rem !important
	}
	.pb-lg-80,
	.py-lg-80 {
		padding-bottom: 5rem !important
	}
	.pl-lg-80,
	.px-lg-80 {
		padding-left: 5rem !important
	}
	.pt-lg-96,
	.py-lg-96 {
		padding-top: 6rem !important
	}
	.pr-lg-96,
	.px-lg-96 {
		padding-right: 6rem !important
	}
	.pb-lg-96,
	.py-lg-96 {
		padding-bottom: 6rem !important
	}
	.pl-lg-96,
	.px-lg-96 {
		padding-left: 6rem !important
	}
	.pt-lg-112,
	.py-lg-112 {
		padding-top: 7rem !important
	}
	.pr-lg-112,
	.px-lg-112 {
		padding-right: 7rem !important
	}
	.pb-lg-112,
	.py-lg-112 {
		padding-bottom: 7rem !important
	}
	.pl-lg-112,
	.px-lg-112 {
		padding-left: 7rem !important
	}
	.pt-lg-128,
	.py-lg-128 {
		padding-top: 8rem !important
	}
	.pr-lg-128,
	.px-lg-128 {
		padding-right: 8rem !important
	}
	.pb-lg-128,
	.py-lg-128 {
		padding-bottom: 8rem !important
	}
	.pl-lg-128,
	.px-lg-128 {
		padding-left: 8rem !important
	}
	.pt-lg-140,
	.py-lg-140 {
		padding-top: 8.75rem !important
	}
	.pr-lg-140,
	.px-lg-140 {
		padding-right: 8.75rem !important
	}
	.pb-lg-140,
	.py-lg-140 {
		padding-bottom: 8.75rem !important
	}
	.pl-lg-140,
	.px-lg-140 {
		padding-left: 8.75rem !important
	}
	.pt-lg-144,
	.py-lg-144 {
		padding-top: 9rem !important
	}
	.pr-lg-144,
	.px-lg-144 {
		padding-right: 9rem !important
	}
	.pb-lg-144,
	.py-lg-144 {
		padding-bottom: 9rem !important
	}
	.pl-lg-144,
	.px-lg-144 {
		padding-left: 9rem !important
	}
	.pt-lg-152,
	.py-lg-152 {
		padding-top: 9.5rem !important
	}
	.pr-lg-152,
	.px-lg-152 {
		padding-right: 9.5rem !important
	}
	.pb-lg-152,
	.py-lg-152 {
		padding-bottom: 9.5rem !important
	}
	.pl-lg-152,
	.px-lg-152 {
		padding-left: 9.5rem !important
	}
	.pt-lg-160,
	.py-lg-160 {
		padding-top: 10rem !important
	}
	.pr-lg-160,
	.px-lg-160 {
		padding-right: 10rem !important
	}
	.pb-lg-160,
	.py-lg-160 {
		padding-bottom: 10rem !important
	}
	.pl-lg-160,
	.px-lg-160 {
		padding-left: 10rem !important
	}
	.pt-lg-200,
	.py-lg-200 {
		padding-top: 12.5rem !important
	}
	.pr-lg-200,
	.px-lg-200 {
		padding-right: 12.5rem !important
	}
	.pb-lg-200,
	.py-lg-200 {
		padding-bottom: 12.5rem !important
	}
	.pl-lg-200,
	.px-lg-200 {
		padding-left: 12.5rem !important
	}
	.m-lg-auto {
		margin: auto !important
	}
	.mt-lg-auto,
	.my-lg-auto {
		margin-top: auto !important
	}
	.mr-lg-auto,
	.mx-lg-auto {
		margin-right: auto !important
	}
	.mb-lg-auto,
	.my-lg-auto {
		margin-bottom: auto !important
	}
	.ml-lg-auto,
	.mx-lg-auto {
		margin-left: auto !important
	}
	.mt-lg-0-negative {
		margin-top: 0 !important
	}
	.mt-lg-8-negative {
		margin-top: -.5rem !important
	}
	.mt-lg-16-negative {
		margin-top: -1rem !important
	}
	.mt-lg-24-negative {
		margin-top: -1.5rem !important
	}
	.mt-lg-32-negative {
		margin-top: -2rem !important
	}
	.mt-lg-40-negative {
		margin-top: -2.5rem !important
	}
	.mt-lg-48-negative {
		margin-top: -3rem !important
	}
	.mt-lg-56-negative {
		margin-top: -3.5rem !important
	}
	.mt-lg-64-negative {
		margin-top: -4rem !important
	}
	.mt-lg-72-negative {
		margin-top: -4.5rem !important
	}
	.mt-lg-80-negative {
		margin-top: -5rem !important
	}
	.mt-lg-96-negative {
		margin-top: -6rem !important
	}
	.mt-lg-112-negative {
		margin-top: -7rem !important
	}
	.mt-lg-128-negative {
		margin-top: -8rem !important
	}
	.mt-lg-140-negative {
		margin-top: -8.75rem !important
	}
	.mt-lg-144-negative {
		margin-top: -9rem !important
	}
	.mt-lg-152-negative {
		margin-top: -9.5rem !important
	}
	.mt-lg-160-negative {
		margin-top: -10rem !important
	}
	.mt-lg-200-negative {
		margin-top: -12.5rem !important
	}
}
@media (max-width:639.98px) {
	.wrap-pl-1 {
		padding-left: 1rem
	}
}
@media (min-width:640px) and (max-width:989.98px) {
	.wrap-pl-1 {
		padding-left: 2rem
	}
}
@media (min-width:990px) {
	.wrap-pl-1 {
		padding-left: 3rem
	}
}
@media (max-width:639.98px) {
	.wrap-pl-2 {
		padding-left: 0
	}
}
@media (min-width:640px) and (max-width:989.98px) {
	.wrap-pl-2 {
		padding-left: 2rem
	}
}
@media (min-width:990px) {
	.wrap-pl-2 {
		padding-left: 3rem
	}
}
@media (max-width:639.98px) {
	.wrap-pr-1 {
		padding-right: 1rem
	}
}
@media (min-width:640px) and (max-width:989.98px) {
	.wrap-pr-1 {
		padding-right: 2rem
	}
}
@media (min-width:990px) {
	.wrap-pr-1 {
		padding-right: 3rem
	}
}
@media (max-width:639.98px) {
	.wrap-pr-2 {
		padding-right: 0
	}
}
@media (min-width:640px) and (max-width:989.98px) {
	.wrap-pr-2 {
		padding-right: 2rem
	}
}
@media (min-width:990px) {
	.wrap-pr-2 {
		padding-right: 3rem
	}
}
.bg-white {
	background-color: #fff
}
.color-white {
	color: #fff
}
.bg-light {
	background-color: #efeff2
}
.color-light {
	color: #efeff2
}
.bg-gray {
	background-color: #efefef
}
.color-gray {
	color: #efefef
}
.bg-black {
	background-color: #101010
}
.color-black {
	color: #101010
}
.bg-red {
	background-color: #d0043c
}
.color-red {
	color: #d0043c
}
.bg-primary {
	background-color: #d0043c
}
.color-primary {
	color: #d0043c
}
.bg-green {
	background-color: #57a536
}
.color-green {
	color: #57a536
}
.is-relative {
	position: relative
}
.is-static {
	position: static
}
.is-absolute {
	position: absolute
}
/* --basic styles */
/* other styles */
/**/
table {
	border-collapse: collapse
}
.table {
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.table {
		font-size: .75rem
	}
}
.table,
.user-text table {
	width: 100%
}
.table td,
.table th,
.user-text table td,
.user-text table th {
	padding: 1rem
}
.table td:first-child,
.table th:first-child,
.user-text table td:first-child,
.user-text table th:first-child {
	padding-left: 1rem
}
@media (min-width: 640px) {
	.table td:first-child,
	.table th:first-child,
	.user-text table td:first-child,
	.user-text table th:first-child {
		padding-left: 2rem
	}
}
@media (min-width: 990px) {
	.table td:first-child,
	.table th:first-child,
	.user-text table td:first-child,
	.user-text table th:first-child {
		padding-left: 4rem
	}
}
.table td:last-child,
.table th:last-child,
.user-text table td:last-child,
.user-text table th:last-child {
	padding-right: 1rem
}
@media (min-width: 640px) {
	.table td:last-child,
	.table th:last-child,
	.user-text table td:last-child,
	.user-text table th:last-child {
		padding-right: 2rem
	}
}
@media (min-width: 990px) {
	.table td:last-child,
	.table th:last-child,
	.user-text table td:last-child,
	.user-text table th:last-child {
		padding-right: 4rem
	}
}
.table thead tr,
.user-text table thead tr {
	background-color: #d0043c;
	color: #fff
}
.table thead th,
.user-text table thead th {
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 1.125rem;
	line-height: 1.4;
	font-weight: 500;
	height: 5rem
}
@media (max-width: 639.98px) {
	.table thead th,
	.user-text table thead th {
		font-size: 1rem
	}
}
@media (min-width: 640px) {
	.table thead th,
	.user-text table thead th {
		height: 5.625rem
	}
}
.table tbody tr:nth-child(odd),
.user-text table tbody tr:nth-child(odd) {
	background-color: #efefef
}
.table tbody td,
.user-text table tbody td {
	height: 4.5rem
}
.table-second-wrap {
	overflow-x: auto;
}
table.table-second {
	--bs-table-bg: transparent;
	--bs-table-striped-color: #212529;
	--bs-table-striped-bg: rgba(0, 0, 0, 0.05);
	--bs-table-active-color: #212529;
	--bs-table-active-bg: rgba(0, 0, 0, 0.1);
	--bs-table-hover-color: #212529;
	--bs-table-hover-bg: rgba(0, 0, 0, 0.075);
	width: auto;
	margin-bottom: 1rem;
	color: #212529;
	vertical-align: top;
	border-color: #dee2e6;
	margin-left: 2px;
}
table.table-second th {
	text-align: left;
}
table.table-second caption {
	font-weight: 700;
	font-size: 24px;
	line-height: 126.4%;
	text-align: left;
	margin-bottom: 26px;
}
table.table-second > tbody {
	vertical-align: inherit;
}
table.table-second > thead {
	vertical-align: bottom;
}
table.table-second > :not(:last-child) > :last-child > * {
	border-bottom-color: var(--color-main);
}
table.table-second > :not(caption) > * {
	border-width: 1px;
}
table.table-second > :not(caption) > * > * {
	border-width: 1px;
}
table.table-second th {}
table.table-second td {
	border: 1px solid #E1E3E9;
}
.table.table-second td:first-child,
.table.table-second th:first-child,
.user-text table.table-second td:first-child,
.user-text table.table-second th:first-child {
	padding-left: 1rem;
}
.table.table-second tbody tr:nth-child(2n+1),
.user-text table.table-second tbody tr:nth-child(2n+1) {
	background-color: #fff;
}
.table.table-second tbody td,
.user-text table.table-second tbody td {
	height: 1.5rem;
	font-size: 0.8rem;
	vertical-align: middle;
}
.table.table-second td,
.table.table-second th,
.user-text table.table-second td,
.user-text table.table-second th {
	padding: 0.5rem;
}
.table.table-second thead th,
.user-text table.table-second thead th {
	height: 2.25rem;
	font-size: 0.8rem;
}
/* interactive */
.checkbox {
	position: relative;
	display: inline-block;
	min-height: 1.5rem;
	min-width: 1.5rem;
	cursor: pointer;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s
}
.checkbox--radio {
	padding: 1rem 1.5rem
}
.checkbox--radio .checkbox__box {
	top: 1rem;
	left: 1.5rem
}
.checkbox__outer {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s
}
.checkbox--white.checkbox--radio .checkbox__outer {
	background-color: #fff
}
.checkbox--white.checkbox--radio:hover .checkbox__outer {
	background-color: #101010
}
.checkbox--white.checkbox--radio:hover .checkbox__text {
	color: #fff
}
.checkbox--white.checkbox--radio:hover .checkbox__box:before {
	background-color: #fff
}
.checkbox--white.checkbox--radio .checkbox__text {
	color: #101010
}
.checkbox--primary.checkbox--radio {
	background-color: #efefef
}
.checkbox--primary.checkbox--radio:hover {
	background-color: #101010
}
.checkbox--primary.checkbox--radio:hover .checkbox__text {
	color: #fff
}
.checkbox--primary.checkbox--radio .checkbox__text {
	color: #101010
}
.checkbox--red {
	padding-right: 0;
	padding-left: 0
}
.checkbox--red.checkbox--radio {
	background-color: #efefef
}
.checkbox--red.checkbox--radio .checkbox__box {
	background-color: #fff;
	left: 0
}
.checkbox--red.checkbox--radio .checkbox__box:before {
	background-color: #fff
}
.checkbox__box {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 1.5rem;
	width: 1.5rem;
	background-color: rgba(0, 0, 0, 0)
}
.checkbox__inner {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0
}
.checkbox__inner,
.checkbox__text {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s
}
.checkbox__text {
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: block;
	padding-left: 2.5rem;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
	z-index: 1;
	padding-top: .25rem
}
@media (max-width: 639.98px) {
	.checkbox__text {
		font-size: .75rem;
		padding-left: 2rem
	}
}
.checkbox__text sup {
	color: #efefef
}
.checkbox__input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0)
}
.checkbox__input[type=checkbox] ~ .checkbox__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}
.checkbox__input[type=checkbox] ~ .checkbox__box:before {
	content: "";
	display: block;
	border-radius: inherit;
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: width, height, opacity, background;
	-o-transition-property: width, height, opacity, background;
	transition-property: width, height, opacity, background;
	color: inherit;
	background-color: rgba(0, 0, 0, 0)
}
.checkbox--white .checkbox__input[type=checkbox] ~ .checkbox__box:before {
	background-color: #fff
}
.checkbox--primary .checkbox__input[type=checkbox] ~ .checkbox__box:before {
	background-color: #efefef
}
.checkbox__input[type=checkbox]:checked ~ .checkbox__inner {
	opacity: 1
}
.checkbox__input[type=radio] ~ .checkbox__box {
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 2
}
.checkbox__input[type=radio] ~ .checkbox__box:before {
	content: "";
	display: block;
	border-radius: inherit;
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: width, height, opacity, border-width;
	-o-transition-property: width, height, opacity, border-width;
	transition-property: width, height, opacity, border-width;
	color: inherit;
	background-color: rgba(0, 0, 0, 0)
}
.checkbox--white .checkbox__input[type=radio] ~ .checkbox__box:before {
	background-color: #efefef
}
.checkbox--primary .checkbox__input[type=radio] ~ .checkbox__box:before {
	background-color: #fff
}
.checkbox__input[type=radio] ~ .checkbox__box:after {
	content: "";
	position: absolute;
	display: block;
	width: .75rem;
	height: .75rem;
	background-color: #101010;
	border-radius: .75rem;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s
}
.checkbox__input[type=radio]:checked ~ .checkbox__box:before {
	background-color: #fff
}
.checkbox--red.checkbox--radio .checkbox__input[type=radio]:checked ~ .checkbox__box:before {
	background-color: #d0043c
}
.checkbox__input[type=radio]:checked ~ .checkbox__box:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}
.checkbox--red.checkbox--radio .checkbox__input[type=radio]:checked ~ .checkbox__box:after {
	background-color: #fff
}
.checkbox__input[type=radio]:checked ~ .checkbox__outer {
	background-color: #101010;
	z-index: 1
}
.checkbox--red.checkbox--radio .checkbox__input[type=radio]:checked ~ .checkbox__outer {
	background-color: rgba(0, 0, 0, 0)
}
.checkbox__input[type=radio]:checked ~ .checkbox__text {
	color: #fff
}
.checkbox--red.checkbox--radio .checkbox__input[type=radio]:checked ~ .checkbox__text {
	color: #101010
}
.checkbox__input:checked ~ .checkbox__box,
.checkbox__input:focus[type=checkbox]:checked ~ .checkbox__box,
.checkbox__input:focus ~ .checkbox__box {
	background-color: rgba(0, 0, 0, 0)
}
.checkbox__input:disabled ~ .checkbox__box,
.checkbox__input:disabled ~ .checkbox__text {
	opacity: .5;
	cursor: not-allowed
}
.checkbox:hover .checkbox__input[type=checkbox]:checked:not(:disabled) ~ .checkbox__box:before,
.checkbox:hover .checkbox__input[type=checkbox]:not(:disabled) ~ .checkbox__box:before {
	background-color: #101010
}
.checkbox:hover .checkbox__input[type=radio]:checked:not(:disabled) ~ .checkbox__box {
	background-color: rgba(0, 0, 0, 0)
}
.checkbox:hover .checkbox__input[type=radio]:checked:not(:disabled) ~ .checkbox__box:before {
	border-width: 8px
}
.input-shell {
	position: relative
}
.input-shell .icon:not(.link-action__icon) {
	position: absolute;
	top: 1rem;
	left: 0
}
.input,
.textarea {
	display: block;
	width: 100%;
	border: none;
	border-bottom: 2px solid #101010;
	border-radius: 0;
	background-color: rgba(0, 0, 0, 0);
	color: #101010;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color, border;
	-o-transition-property: color, border;
	transition-property: color, border
}
@media (max-width: 639.98px) {
	.input,
	.textarea {
		font-size: .75rem
	}
}
.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	transition-property: opacity
}
.input::-moz-placeholder,
.textarea::-moz-placeholder {
	transition-timing-function: ease;
	transition-duration: .3s;
	-moz-transition-property: opacity;
	transition-property: opacity
}
.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
	transition-timing-function: ease;
	transition-duration: .3s;
	-ms-transition-property: opacity;
	transition-property: opacity
}
.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
	transition-timing-function: ease;
	transition-duration: .3s;
	-ms-transition-property: opacity;
	transition-property: opacity
}
.input::placeholder,
.textarea::placeholder {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}
.input--default,
.textarea--default {
	padding: 1.1875rem 0 .75rem
}
@media (max-width: 639.98px) {
	.input--default,
	.textarea--default {
		padding-right: 2.5rem
	}
}
.input:focus,
.input:hover,
.textarea:focus,
.textarea:hover {
	border-bottom-color: #101010
}
.input:focus::-webkit-input-placeholder,
.input:hover::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder,
.textarea:hover::-webkit-input-placeholder {
	opacity: 1
}
.input:focus::-moz-placeholder,
.input:hover::-moz-placeholder,
.textarea:focus::-moz-placeholder,
.textarea:hover::-moz-placeholder {
	opacity: 1
}
.input:focus:-ms-input-placeholder,
.input:hover:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder,
.textarea:hover:-ms-input-placeholder {
	opacity: 1
}
.input:focus::-ms-input-placeholder,
.input:hover::-ms-input-placeholder,
.textarea:focus::-ms-input-placeholder,
.textarea:hover::-ms-input-placeholder {
	opacity: 1
}
.input:focus::placeholder,
.input:hover::placeholder,
.textarea:focus::placeholder,
.textarea:hover::placeholder {
	opacity: 1
}
.input--small,
.textarea--small {
	padding: .625rem 3rem .625rem 1.375rem
}
@media (max-width: 639.98px) {
	.input--small,
	.textarea--small {
		padding-right: 2rem
	}
}
.input.parsley-error,
.textarea.parsley-error {
	border-color: #d0043c;
	color: #d0043c
}
.input.parsley-error:-ms-input-placeholder,
.textarea.parsley-error:-ms-input-placeholder {
	color: #d0043c
}
.input.parsley-error::-ms-input-placeholder,
.textarea.parsley-error::-ms-input-placeholder {
	color: #d0043c
}
.input.parsley-error:-ms-input-placeholder,
.input.parsley-error::-ms-input-placeholder,
.input.parsley-error::-webkit-input-placeholder,
.input.parsley-error::placeholder,
.textarea.parsley-error:-ms-input-placeholder,
.textarea.parsley-error::-ms-input-placeholder,
.textarea.parsley-error::-webkit-input-placeholder,
.textarea.parsley-error::placeholder {
	color: #d0043c
}
.input.parsley-error:focus,
.input.parsley-error:hover,
.textarea.parsley-error:focus,
.textarea.parsley-error:hover {
	border-bottom-color: #d0043c
}
.input--white,
.textarea--white {
	color: #fff;
	border-bottom: 2px solid #fff
}
.input--white:focus,
.input--white:hover,
.textarea--white:focus,
.textarea--white:hover {
	border-bottom-color: #fff
}
.input--white:focus::-webkit-input-placeholder,
.input--white:hover::-webkit-input-placeholder,
.textarea--white:focus::-webkit-input-placeholder,
.textarea--white:hover::-webkit-input-placeholder {
	opacity: 1
}
.input--white:focus::-moz-placeholder,
.input--white:hover::-moz-placeholder,
.textarea--white:focus::-moz-placeholder,
.textarea--white:hover::-moz-placeholder {
	opacity: 1
}
.input--white:focus:-ms-input-placeholder,
.input--white:hover:-ms-input-placeholder,
.textarea--white:focus:-ms-input-placeholder,
.textarea--white:hover:-ms-input-placeholder {
	opacity: 1
}
.input--white:focus::-ms-input-placeholder,
.input--white:hover::-ms-input-placeholder,
.textarea--white:focus::-ms-input-placeholder,
.textarea--white:hover::-ms-input-placeholder {
	opacity: 1
}
.input--white:focus::placeholder,
.input--white:hover::placeholder,
.textarea--white:focus::placeholder,
.textarea--white:hover::placeholder {
	opacity: 1
}
.input--white:disabled,
.textarea--white:disabled {
	border-bottom: 2px solid hsla(0, 0%, 100%, .8)
}
.input--white.parsley-error,
.textarea--white.parsley-error {
	border-color: #fff;
	color: #fff
}
.input--white.parsley-error:-ms-input-placeholder,
.textarea--white.parsley-error:-ms-input-placeholder {
	color: #fff
}
.input--white.parsley-error::-ms-input-placeholder,
.textarea--white.parsley-error::-ms-input-placeholder {
	color: #fff
}
.input--white.parsley-error:-ms-input-placeholder,
.input--white.parsley-error::-ms-input-placeholder,
.input--white.parsley-error::-webkit-input-placeholder,
.input--white.parsley-error::placeholder,
.textarea--white.parsley-error:-ms-input-placeholder,
.textarea--white.parsley-error::-ms-input-placeholder,
.textarea--white.parsley-error::-webkit-input-placeholder,
.textarea--white.parsley-error::placeholder {
	color: #fff
}
.input--white.parsley-error:focus,
.input--white.parsley-error:hover,
.textarea--white.parsley-error:focus,
.textarea--white.parsley-error:hover {
	border-bottom-color: #fff
}
.input:focus,
.textarea:focus {
	outline: none
}
.input:disabled,
.textarea:disabled {
	cursor: not-allowed
}
.input:disabled ~ .input-status,
.textarea:disabled ~ .input-status {
	opacity: 0;
	visibility: hidden
}
.input::-ms-clear,
.textarea::-ms-clear {
	display: none
}
.icon ~ .input {
	padding-left: 3rem
}
.input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}
.input--datepicker {
	padding-right: 2rem
}
.input__search-results {
	position: absolute;
	z-index: 100;
	width: 100%;
	background-color: #fff;
	-webkit-box-shadow: 0 1.875rem 2.75rem rgba(36, 44, 50, .07);
	box-shadow: 0 1.875rem 2.75rem rgba(36, 44, 50, .07)
}
input[type=number] {
	-moz-appearance: textfield
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
	-webkit-appearance: none
}
[data-password-hide],
[data-password-shown] {
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	outline: none
}
[data-password-show] {
	display: block
}
.password-shown [data-password-show],
[data-password-hide] {
	display: none
}
.password-shown [data-password-hide] {
	display: block
}
[data-input-clear] {
	position: absolute;
	right: 0;
	top: 1.25rem;
	width: 1.5rem;
	height: 1.5rem;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}
[data-input-clear]:hover {
	opacity: .4
}
.label {
	color: rgba(16, 16, 16, .4);
	margin-bottom: .5rem
}
.input:hover ~ .label {
	color: #101010
}
.input--white:hover ~ .label {
	color: #fff
}
.input--white ~ .label {
	color: hsla(0, 0%, 100%, .4)
}
select {
	display: block;
	width: 100%;
	border: none;
	border-bottom: 2px solid rgba(16, 16, 16, .2);
	border-radius: 0;
	color: #101010;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	opacity: 0
}
@media (max-width: 639.98px) {
	select {
		font-size: .75rem
	}
}
select[data-select-size=default] {
	padding: .75rem 1.5rem .75rem 0
}
@media (max-width: 639.98px) {
	select[data-select-size=default] {
		padding-right: 2.5rem
	}
}
select[data-select-theme=white]:disabled {
	background-color: hsla(0, 0%, 100%, .8)
}
select[data-select-theme=light]:disabled {
	background-color: rgba(239, 239, 242, .8)
}
select:focus {
	outline: none
}
.has-error select,
select:focus,
select:hover {
	border-color: #d0043c
}
.has-error select {
	color: #d0043c
}
.field {
	position: relative
}
.field--hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0
}
.field.theme-white {
	color: #fff
}
.field__group-label {
	opacity: .4;
	margin-bottom: .625rem;
	margin-top: .625rem
}
@media (min-width: 640px) {
	.field__group {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding-top: .5rem;
		margin-bottom: -1.5rem
	}
	.field__group .control {
		margin-bottom: 1.5rem
	}
	.field__group .control:not(:last-child) {
		margin-right: 2.5rem
	}
	.field__group .control:nth-child(odd) {
		width: 12.5rem
	}
	.field__group .control:nth-child(2n) {
		max-width: 20.75rem
	}
}
@media (max-width: 639.98px) {
	.field__group {
		padding-top: .5rem
	}
	.field__group > :not(:last-child) {
		margin-bottom: 1rem
	}
}
.field__group--vertical {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.text-help {
	font-size: .75rem;
	line-height: 1.3;
	font-weight: 400;
	color: #d0043c
}
@media (max-width: 639.98px) {
	.text-help {
		font-size: .625rem;
		margin-top: .5rem
	}
}
@media (min-width: 640px) {
	.text-help {
		position: absolute;
		top: calc(100% + .5rem);
		left: 0
	}
}
.has-error .input,
.has-error .textarea {
	border-color: #d0043c !important
}
.input ~ .label,
.textarea ~ .label {
	max-width: 100%;
	overflow: hidden;
	margin: 0;
	position: absolute;
	bottom: 1rem;
	pointer-events: none;
	left: 0;
	right: 2.5rem;
	will-change: transform;
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color, -webkit-transform;
	transition-property: color, -webkit-transform;
	-o-transition-property: transform, color;
	transition-property: transform, color;
	transition-property: transform, color, -webkit-transform;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.input ~ .label,
	.textarea ~ .label {
		font-size: .75rem
	}
}
.input ~ .input-icon,
.textarea ~ .input-icon {
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 1.125rem
}
.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
	color: rgba(16, 16, 16, 0)
}
.input[data-search-box-field]::-moz-placeholder,
.textarea[data-search-box-field]::-moz-placeholder {
	opacity: 1
}
.input[data-search-box-field]:-ms-input-placeholder,
.textarea[data-search-box-field]:-ms-input-placeholder {
	color: #101010
}
.input.input--white[data-search-box-field]::-webkit-input-placeholder,
.textarea.input--white[data-search-box-field]::-webkit-input-placeholder {
	opacity: 1
}
.input.input--white[data-search-box-field]:-moz-placeholder,
.input.input--white[data-search-box-field]::-moz-placeholder,
.input.input--white[data-search-box-field]::-ms-input-placeholder,
.input.input--white[data-search-box-field]::-webkit-input-placeholder,
.input.input--white[data-search-box-field]::placeholder,
.textarea.input--white[data-search-box-field]:-moz-placeholder,
.textarea.input--white[data-search-box-field]::-moz-placeholder,
.textarea.input--white[data-search-box-field]::-ms-input-placeholder,
.textarea.input--white[data-search-box-field]::-webkit-input-placeholder,
.textarea.input--white[data-search-box-field]::placeholder {
	opacity: 1
}
.input.input--white[data-search-box-field]::-moz-placeholder,
.textarea.input--white[data-search-box-field]::-moz-placeholder {
	opacity: 1
}
.input.input--white[data-search-box-field]:-ms-input-placeholder,
.textarea.input--white[data-search-box-field]:-ms-input-placeholder {
	color: #fff
}
.input.not-empty ~ .label,
.input:focus ~ .label,
.textarea.not-empty ~ .label,
.textarea:focus ~ .label {
	color: #101010;
	-webkit-transform: translateY(-100%) scale(.8);
	-ms-transform: translateY(-100%) scale(.8);
	transform: translateY(-100%) scale(.8)
}
.input.not-empty ~ .label .label__text,
.input:focus ~ .label .label__text,
.textarea.not-empty ~ .label .label__text,
.textarea:focus ~ .label .label__text {
	white-space: normal
}
.input.not-empty::-webkit-input-placeholder,
.input:focus::-webkit-input-placeholder,
.textarea.not-empty::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
	opacity: .5
}
.input.not-empty:-moz-placeholder,
.input.not-empty::-moz-placeholder,
.input.not-empty::-ms-input-placeholder,
.input.not-empty::-webkit-input-placeholder,
.input.not-empty::placeholder,
.input:focus:-moz-placeholder,
.input:focus::-moz-placeholder,
.input:focus::-ms-input-placeholder,
.input:focus::-webkit-input-placeholder,
.input:focus::placeholder,
.textarea.not-empty:-moz-placeholder,
.textarea.not-empty::-moz-placeholder,
.textarea.not-empty::-ms-input-placeholder,
.textarea.not-empty::-webkit-input-placeholder,
.textarea.not-empty::placeholder,
.textarea:focus:-moz-placeholder,
.textarea:focus::-moz-placeholder,
.textarea:focus::-ms-input-placeholder,
.textarea:focus::-webkit-input-placeholder,
.textarea:focus::placeholder {
	opacity: .5
}
.input.not-empty::-moz-placeholder,
.input:focus::-moz-placeholder,
.textarea.not-empty::-moz-placeholder,
.textarea:focus::-moz-placeholder {
	opacity: .5
}
.input--white.not-empty ~ .label,
.input--white:focus ~ .label,
.textarea--white.not-empty ~ .label,
.textarea--white:focus ~ .label {
	color: #fff
}
.textarea {
	min-height: 3.375rem
}
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
	cursor: pointer
}
.control-hint {
	width: 100%;
	margin-top: 4px;
	font-size: 12px;
}
.text-link {
	position: relative;
	color: #101010;
	padding: 0;
	border: 0;
	background-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
.text-link--primary,
.text-link:focus,
.text-link:hover {
	color: #d0043c
}
.text-link--underline:not(.text-link--white) {
	background-size: 100% 1px;
	background-position: 0 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#b3b9bd), to(#b3b9bd));
	background-image: -o-linear-gradient(#b3b9bd, #b3b9bd);
	background-image: linear-gradient(#b3b9bd, #b3b9bd);
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.text-link--underline:not(.text-link--white).focus-visible,
.text-link--underline:not(.text-link--white):hover {
	background-position: 100% 100%;
	background-size: 0 1px
}
.text-link--hover-underline:not(.text-link--underline) {
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(208, 4, 60, .5)), to(rgba(208, 4, 60, .5)));
	background-image: -o-linear-gradient(rgba(208, 4, 60, .5), rgba(208, 4, 60, .5));
	background-image: linear-gradient(rgba(208, 4, 60, .5), rgba(208, 4, 60, .5));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.text-link--hover-underline:not(.text-link--underline).focus-visible,
.text-link--hover-underline:not(.text-link--underline):hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
.text-link--white {
	color: #fff
}
.text-link--white:not(.text-link--underline) {
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, .5)), to(hsla(0, 0%, 100%, .5)));
	background-image: -o-linear-gradient(hsla(0, 0%, 100%, .5), hsla(0, 0%, 100%, .5));
	background-image: linear-gradient(hsla(0, 0%, 100%, .5), hsla(0, 0%, 100%, .5));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.text-link--white.text-link--underline,
.text-link--white:not(.text-link--underline).focus-visible,
.text-link--white:not(.text-link--underline):hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
.text-link--white.text-link--underline {
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, .5)), to(hsla(0, 0%, 100%, .5)));
	background-image: -o-linear-gradient(hsla(0, 0%, 100%, .5), hsla(0, 0%, 100%, .5));
	background-image: linear-gradient(hsla(0, 0%, 100%, .5), hsla(0, 0%, 100%, .5));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.text-link--white.text-link--underline.focus-visible,
.text-link--white.text-link--underline:hover {
	background-position: 100% 100%;
	background-size: 0 1px
}
.text-link--white:focus,
.text-link--white:hover {
	color: #fff
}
.text-link--white.text-link.text-link.text-link--disabled,
.text-link--white.text-link.text-link:disabled {
	color: hsla(0, 0%, 100%, .5)
}
.text-link--mute {
	color: rgba(16, 16, 16, .5)
}
.text-link--mute:focus,
.text-link--mute:hover {
	color: #d0043c
}
.text-link--disabled,
.text-link:disabled {
	color: rgba(16, 16, 16, .5);
	pointer-events: none
}
.btn {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: none;
	border-radius: 0;
	padding: .8125rem 1.5rem;
	min-width: 8.125rem;
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	-webkit-transition-property: color, width, background-color, border, opacity;
	-o-transition-property: color, width, background-color, border, opacity;
	transition-property: color, width, background-color, border, opacity;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease
}
@media (max-width: 639.98px) {
	.btn {
		width: 100%
	}
}
.btn:hover {
	-webkit-transition-delay: 0s, 0s, .2s, 0s, 0s;
	-o-transition-delay: 0s, 0s, .2s, 0s, 0s;
	transition-delay: 0s, 0s, .2s, 0s, 0s
}
.btn:after {
	position: absolute;
	content: "";
	display: block;
	height: 100%;
	width: 0;
	left: 0;
	top: 0;
	-webkit-transition-property: width;
	-o-transition-property: width;
	transition-property: width;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease
}
.btn__icon {
	position: relative;
	z-index: 1;
	display: inline-block;
	pointer-events: none
}
.btn.has-icon .btn__icon {
	margin-right: .75rem
}
.btn.has-icon .btn__icon--right {
	margin-right: 0;
	margin-left: .75rem;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1
}
.btn__text {
	position: relative;
	display: inline-block;
	z-index: 1;
	pointer-events: none;
	font-size: .875rem;
	line-height: 1.3125rem
}
@media (max-width: 639.98px) {
	.btn__text--small {
		font-size: .75rem
	}
}
.btn:focus {
	outline: none
}
.btn.focus-visible,
.btn:hover {
	text-decoration: none
}
.btn.focus-visible:after,
.btn:hover:after {
	width: 100%
}
.btn--narrow {
	padding-left: 1.5rem;
	padding-right: 1.5rem
}
.btn--white {
	color: #101010;
	background-color: #fff;
	border-color: #fff
}
.btn--white:not(:disabled):not(.disabled).focus-visible,
.btn--white:not(:disabled):not(.disabled):hover {
	color: #fff
}
.btn--gray,
.btn--grey {
	background-color: #efefef;
	color: #101010
}
.btn--gray:not(:disabled):not(.disabled):after,
.btn--grey:not(:disabled):not(.disabled):after {
	background-color: #d0043c
}
.btn--gray:not(:disabled):not(.disabled).focus-visible,
.btn--gray:not(:disabled):not(.disabled):hover,
.btn--grey:not(:disabled):not(.disabled).focus-visible,
.btn--grey:not(:disabled):not(.disabled):hover {
	color: #fff
}
.btn--primary {
	color: #fff;
	background-color: #d0043c
}
.btn--primary:not(:disabled):not(.disabled).focus-visible,
.btn--primary:not(:disabled):not(.disabled):hover {
	color: #101010
}
.btn--empty {
	color: #fff;
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid hsla(0, 0%, 100%, .4)
}
.btn--empty:not(:disabled):not(.disabled).focus-visible,
.btn--empty:not(:disabled):not(.disabled):hover {
	color: #101010;
	border-color: #fff
}
.btn--empty-black {
	color: #101010;
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid rgba(6, 16, 27, .4)
}
.btn--empty-black:not(:disabled):not(.disabled).focus-visible,
.btn--empty-black:not(:disabled):not(.disabled):hover {
	color: #fff
}
.btn--empty-gray {
	color: #101010;
	background-color: rgba(0, 0, 0, 0);
	border: 2px solid rgba(179, 185, 189, .4)
}
.btn--empty-gray:not(:disabled):not(.disabled).focus-visible,
.btn--empty-gray:not(:disabled):not(.disabled):hover {
	color: #fff
}
.btn--hover-white:not(:disabled):not(.disabled).focus-visible,
.btn--hover-white:not(:disabled):not(.disabled):hover {
	color: #101010;
	background-color: rgba(0, 0, 0, 0)
}
.btn--hover-white:not(:disabled):not(.disabled):after {
	background-color: #fff
}
.btn--hover-primary:not(:disabled):not(.disabled):after {
	background-color: #d0043c
}
.btn--hover-primary:not(:disabled):not(.disabled).focus-visible,
.btn--hover-primary:not(:disabled):not(.disabled):hover {
	border-color: #d0043c;
	color: #fff;
	background-color: rgba(0, 0, 0, 0)
}
.btn--hover-gray:not(:disabled):not(.disabled).focus-visible,
.btn--hover-gray:not(:disabled):not(.disabled):hover,
.btn--hover-grey:not(:disabled):not(.disabled).focus-visible,
.btn--hover-grey:not(:disabled):not(.disabled):hover {
	color: #101010;
	background-color: rgba(0, 0, 0, 0)
}
.btn--hover-gray:not(:disabled):not(.disabled):after,
.btn--hover-grey:not(:disabled):not(.disabled):after {
	background-color: #efefef
}
.btn:disabled {
	opacity: .2;
	cursor: not-allowed
}
.btn.has-icon {
	padding-left: 1.5rem;
	padding-right: 1.5rem
}
.btn--large {
	padding-left: 3.375rem;
	padding-right: 3.375rem
}
@media (max-width: 639.98px) {
	.btn--large {
		padding-left: 2.375rem;
		padding-right: 2.375rem
	}
}
.icon {
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem
}
.icon svg {
	width: 100%;
	height: 100%;
	display: block
}
.image {
	max-width: 100%;
	background-position: 50%;
	background-repeat: no-repeat
}
.image.is-cover {
	background-size: cover
}
@supports ((-o-object-fit:cover) or (object-fit:cover)) {
	.image.is-cover {
		-o-object-fit: cover;
		object-fit: cover
	}
}
.image.is-contain {
	background-size: contain
}
@supports ((-o-object-fit:contain) or (object-fit:contain)) {
	.image.is-contain {
		-o-object-fit: contain;
		object-fit: contain
	}
}
.image.is-lazy {
	opacity: 0;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}
.image.is-loaded {
	opacity: 1
}
.label-link {
	display: block;
	background-color: #efeff2;
	height: 1.5625rem;
	font-size: 0;
	line-height: 1.5625rem;
	padding: 0 .75rem
}
@media (min-width: 640px) {
	.label-link {
		height: 1.75rem;
		line-height: 1.75rem
	}
}
.label-link[href] {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: background-color;
	-o-transition-property: background-color;
	transition-property: background-color
}
.label-link[href]:hover {
	background-color: #d0043c
}
.label-link__text {
	display: inline-block;
	vertical-align: middle;
	color: #101010
}
.label-link[href] .label-link__text {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
.label-link[href]:hover .label-link__text {
	color: #fff
}
.link-action {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 100%;
	padding: 0;
	border: 0;
	border-radius: 0;
	text-decoration: none !important;
	background-color: rgba(0, 0, 0, 0);
	color: #101010
}
.link-action:hover .link-action__text {
	color: #d0043c
}
.link-action__icon {
	width: 1.5rem;
	height: 1.5rem;
	pointer-events: none;
	color: currentColor;
	margin-top: -.25rem;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
.link-action__icon svg {
	width: 100%;
	height: 100%
}
.link-action__icon:not(:last-child) {
	margin-right: 1rem
}
@media (max-width: 989.98px) {
	.link-action__icon:not(:last-child) {
		margin-right: .5rem
	}
}
.link-action__icon--right {
	margin-left: .5rem
}
.link-action__text {
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
	color: currentColor;
	text-decoration: none !important
}
@media (max-width: 639.98px) {
	.link-action__text {
		font-size: .75rem
	}
}
.link-action--line-animate-in .link-action__text {
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 16, 16, .4)), to(rgba(16, 16, 16, .4)));
	background-image: -o-linear-gradient(rgba(16, 16, 16, .4), rgba(16, 16, 16, .4));
	background-image: linear-gradient(rgba(16, 16, 16, .4), rgba(16, 16, 16, .4));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
/*
.link-action--line-animate-in .link-action__text.focus-visible,
.link-action--line-animate-in .link-action__text:hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
	*/
.link-action--line-animate-out .link-action__text {
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 16, 16, .4)), to(rgba(16, 16, 16, .4)));
	background-image: -o-linear-gradient(rgba(16, 16, 16, .4), rgba(16, 16, 16, .4));
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	background-image: linear-gradient(rgba(16, 16, 16, .4), rgba(16, 16, 16, .4));
	background-repeat: no-repeat;
	text-decoration: none !important;
	transition-property: background-size, color;
	transition-duration: .3s;
	transition-timing-function: ease;
	will-change: background-size
}
.link-action--line-animate-out .link-action__text,
.link-action--line-animate-out .link-action__text.focus-visible,
.link-action--line-animate-out .link-action__text:hover {
	background-size: 100% 1px;
	background-position: 0 100%
}
.link-action--line-animate-out .link-action__text.focus-visible,
.link-action--line-animate-out .link-action__text:hover {
	background-position: 100% 100%;
	background-size: 0 1px
}
.link-action--primary .link-action__icon {
	color: #d0043c;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
.link-action--white {
	color: #fff
}
.link-action--white .link-action__text {
	color: currentColor;
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, .4)), to(hsla(0, 0%, 100%, .4)));
	background-image: -o-linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-image: linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.link-action--white .link-action__text.focus-visible,
.link-action--white .link-action__text:hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
.link-action--white .link-action__icon {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
.link-action__file-size {
	margin-left: 1.5rem
}
/**/
.block-text__wrapper {
	padding-top: 3rem;
	padding-bottom: 3rem
}
@media (min-width: 640px) {
	.block-text__wrapper {
		padding-top: 5rem;
		padding-bottom: 5rem
	}
}
@media (min-width: 990px) {
	.block-text__wrapper {
		padding-bottom: 6rem
	}
}
@media (min-width: 640px) {
	.block-text__inner {
		width: 83.33333%
	}
}
@media (min-width: 990px) {
	.block-text__inner {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
}
.block-text__left {
	padding-right: 2.5rem
}
@media (min-width: 990px) {
	.block-text__left {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
		padding-right: 7rem
	}
}
.block-text__right {
	margin-top: 1.5rem
}
@media (min-width: 990px) {
	.block-text__right {
		margin-top: 0;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%;
		padding-right: 14.375rem
	}
}
@media (max-width: 989.98px) {
	.block-text__actions--desktop {
		display: none
	}
}
@media (min-width: 990px) {
	.block-text__actions--adaptive {
		display: none
	}
}
/*
@media (min-width: 990px) {
	.block-text .user-text ul {
		margin-left: -1.375rem
	}
}
*/
@media (min-width: 990px) {
	.block-text--has-title .block-text__right {
		padding-top: 1.5rem
	}
}
/* --- */
.header {
	pointer-events: none;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	color: #101010;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .2s;
	-o-transition-duration: .2s;
	transition-duration: .2s;
	-webkit-transition-property: top, color, background-color, opacity, -webkit-transform;
	transition-property: top, color, background-color, opacity, -webkit-transform;
	-o-transition-property: top, transform, color, background-color, opacity;
	transition-property: top, transform, color, background-color, opacity;
	transition-property: top, transform, color, background-color, opacity, -webkit-transform
}
.header.is-white:not(.is-fixed) {
	color: #fff;
}
.header__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	top: 0;
	-webkit-transform: translateY(-5.625rem);
	-ms-transform: translateY(-5.625rem);
	transform: translateY(-5.625rem);
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	background-color: #fff;
	z-index: 99;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform
}
@media (min-width: 990px) {
	.header-is-transformed .header__bottom {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}
@media (max-width: 639.98px) {
	.header__bottom {
		display: none
	}
}
.header__bottom-list-select {
	padding: 0 !important;
	background-color: rgba(0, 0, 0, 0) !important
}
.header__bottom-list-select:after,
.header__bottom-list-select:before {
	display: none
}
@media (max-width: 989.98px) {
	.header__bottom-list-select {
		max-width: 18.25rem;
		margin-right: 3.75rem
	}
}
.header__bottom .btn {
	margin-left: auto;
	color: #fff
}
.header-bottom-fixed {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 99;
	background-color: hsla(0, 0%, 100%, .9);
	opacity: 0;
	pointer-events: none;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}
.header-bottom-fixed.is-visible {
	opacity: 1;
	pointer-events: auto
}
.header-bottom-fixed .btn {
	margin-left: auto
}
@media (max-width: 639.98px) {
	.header-bottom-fixed .btn {
		width: 100%;
		margin-left: 0
	}
}
@media (min-width: 990px) {
	.header-bottom-fixed {
		display: none
	}
}
.header-search {
	position: relative
}
.header-search__results {
	position: absolute;
	background-color: #fff;
	width: 100%
}
.header-overlay {
	display: none;
	background-color: rgba(0, 0, 0, 0);
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw
}
.header-nav-open .header-overlay {
	display: block
}
.header-wrapper {
	pointer-events: none
}
.header-wrapper > * {
	pointer-events: auto
}
.header-burger {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0;
	background-color: rgba(0, 0, 0, 0);
	border: none;
	color: currentColor
}
.header-burger:after {
	content: "";
	display: block;
	position: absolute;
	top: -.5rem;
	left: -.5rem;
	bottom: -.5rem;
	right: -.5rem
}
.header-burger span {
	-webkit-animation-duration: 1.4s;
	animation-duration: 1.4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	display: block;
	height: 2px;
	width: 1.125rem;
	margin-bottom: 4px;
	background-color: currentColor;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: background-color;
	-o-transition-property: background-color;
	transition-property: background-color
}
.header-burger span:first-child {
	-webkit-animation-name: burger-span-1-reverse;
	animation-name: burger-span-1-reverse
}
.header-burger span:nth-child(2) {
	-webkit-animation-name: burger-span-2-reverse;
	animation-name: burger-span-2-reverse
}
.header-burger span:nth-child(3) {
	-webkit-animation-name: burger-span-3-reverse;
	animation-name: burger-span-3-reverse
}
.header-burger span:last-child {
	margin-bottom: 0
}
.header-burger.is-active span:first-child {
	-webkit-animation-name: burger-span-1;
	animation-name: burger-span-1
}
.header-burger.is-active span:nth-child(2) {
	-webkit-animation-name: burger-span-2;
	animation-name: burger-span-2
}
.header-burger.is-active span:nth-child(3) {
	-webkit-animation-name: burger-span-3;
	animation-name: burger-span-3
}
.header {
	pointer-events: none;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 100;
	color: #101010;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: top, color, background-color, opacity, -webkit-transform;
	transition-property: top, color, background-color, opacity, -webkit-transform;
	-o-transition-property: top, transform, color, background-color, opacity;
	transition-property: top, transform, color, background-color, opacity;
	transition-property: top, transform, color, background-color, opacity, -webkit-transform
}
.header.is-fixed {
	background-color: hsla(0, 0%, 100%, .95);
	position: fixed
}
@media (min-width: 640px) {
	.header.is-fixed {
		-webkit-transform: translate3d(0, -2.5rem, 0);
		transform: translate3d(0, -2.5rem, 0)
	}
}
@media (min-width: 990px) {
	.header--has-bottom.is-fixed {
		-webkit-transform: translate3d(0, -8rem, 0);
		transform: translate3d(0, -8rem, 0)
	}
}
.header.is-menu-open {
	background-color: #fff;
	position: fixed;
	-webkit-transform: translateZ(0);
	transform: translateZ(0)
}
.header.is-menu-open .header-nav__menu {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	opacity: 0;
	pointer-events: none
}
.header.is-menu-open .header__wrap {
	border-bottom-color: rgba(16, 16, 16, .4)
}
.header .header-nav__link,
.header .header-nav__search-link,
.header .header__logo,
.header a {
	color: currentColor
}
.header-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: .75rem;
	border-bottom: 1px solid rgba(16, 16, 16, .4);
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.is-white .header-top {
	border-color: #fff
}
.is-menu-open .header-top {
	border-color: rgba(16, 16, 16, .4)
}
@media (max-width: 639.98px) {
	.header-top {
		display: none
	}
}
.header-top__item {
	font-size: .75rem
}
.header-top .link-action {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
.header-top .link-action__text {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
	font-size: .75rem
}
.header-top .link-action__icon {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	-webkit-transform: translateY(.125rem);
	-ms-transform: translateY(.125rem);
	transform: translateY(.125rem)
}
.header:not(.is-menu-open) .header-top .link-action {
	color: rgba(16, 16, 16, .6)
}
.header:not(.is-menu-open) .header-top .link-action:focus,
.header:not(.is-menu-open) .header-top .link-action:hover {
	color: #101010
}
.header:not(.is-menu-open) .header-top .link-action:focus .link-action__text,
.header:not(.is-menu-open) .header-top .link-action:hover .link-action__text {
	color: currentColor;
	opacity: 1
}
.header:not(.is-menu-open).is-white .header-top .link-action {
	color: #fff;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color;
	-webkit-transition-delay: .2s;
	-o-transition-delay: .2s;
	transition-delay: .2s
}
.header:not(.is-menu-open).is-white .header-top__left.hover .link-action,
.header:not(.is-menu-open).is-white .header-top__right.hover .link-action {
	color: hsla(0, 0%, 100%, .5)
}
.header:not(.is-menu-open).is-white .header-top__left.hover .link-action.open,
.header:not(.is-menu-open).is-white .header-top__left.hover .link-action:hover,
.header:not(.is-menu-open).is-white .header-top__right.hover .link-action.open,
.header:not(.is-menu-open).is-white .header-top__right.hover .link-action:hover {
	color: #fff
}
.header:not(.is-menu-open).light-slide .header-top,
.header:not(.is-menu-open):not(.is-white) .header-top {
	border-color: rgba(16, 16, 16, .4)
}
.header:not(.is-menu-open).light-slide .header-top .link-action {
	color: rgba(16, 16, 16, .4)
}
.header.is-menu-open .header-top .link-action:focus,
.header.is-menu-open .header-top .link-action:hover,
.header:not(.is-menu-open).light-slide .header-top .link-action:focus,
.header:not(.is-menu-open).light-slide .header-top .link-action:hover {
	color: #d0043c
}
.header.is-menu-open .header-top .link-action:focus .link-action__text,
.header.is-menu-open .header-top .link-action:hover .link-action__text {
	opacity: 1
}
.header-top__left {
	position: relative;
	height: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: auto;
	margin-bottom: .625rem;
	z-index: 2
}
@media (max-width: 639.98px) {
	.header-top__left {
		margin-bottom: 1rem
	}
}
.header-top__right {
	position: relative;
	height: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: .625rem;
	z-index: 2
}
.header-top__item {
	opacity: .99;
	margin-right: 2rem
}
@media (max-width: 639.98px) {
	.header-top__item {
		margin-right: 2.5rem
	}
}
.header-top__item:last-child {
	margin-right: 0
}
.header-top__item .link-action,
.header-top__item .link-action__text {
	line-height: inherit
}
.header-top__item .link-action__icon {
	margin-right: .5rem
}
.header-top .icon {
	width: 1rem;
	height: 1rem
}
.header__wrap {
	position: relative;
	padding-top: 1.125rem;
	padding-bottom: 1.125rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: .875rem
}
.header--has-bottom.is-fixed .header__wrap {
	border-bottom: 1px solid #101010
}
@media (max-width: 989.98px) {
	.header__wrap {
		padding-top: 1.375rem;
		padding-bottom: 1rem
	}
}
@media (max-width: 639.98px) {
	.header__wrap {
		padding-top: 1rem;
		padding-bottom: 1rem;
		-webkit-transition-timing-function: ease;
		-o-transition-timing-function: ease;
		transition-timing-function: ease;
		-webkit-transition-duration: .3s;
		-o-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transition-property: border-color;
		-o-transition-property: border-color;
		transition-property: border-color;
		border-bottom: 1px solid rgba(16, 16, 16, .4)
	}
	.is-white:not(.is-fixed) .header__wrap {
		border-bottom: 1px solid #fff
	}
	.header:not(.header--has-bottom).is-fixed .header__wrap {
		border-bottom: 1px solid #101010
	}
	.header.is-menu-open .header__wrap {
		border-bottom: 1px solid rgba(16, 16, 16, .4)
	}
}
.header__logo {
	margin-right: 1rem;
}
.header__logo svg {
	max-height: 1.3125rem;
	width: 17.3125rem;
	color: #d0043c
}
@media (max-width: 639.98px) {
	.header__logo svg {
		width: 10.1875rem
	}
}
@media (max-width: 639.98px) {
	.header__logo {
		margin-right: auto
	}
}
.header-nav {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1
}
.header-nav,
.header-nav__toggles {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.header-nav__toggles {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	padding-left: 0;
	list-style: none
}
@media (max-width: 1099.98px) {
	.header-nav__toggles {
		margin-left: auto;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse
	}
}
@media (min-width: 990px) {
	.header-nav__toggles {
		margin-right: 1rem
	}
}
@media (min-width: 1100px) {
	.header-nav__burger {
		margin-right: 2.5rem
	}
}
@media (max-width: 1099.98px) {
	.header-nav__burger {
		margin-left: 2.5rem
	}
}
.header-nav__menu {
	display: none
}
@media (min-width: 1100px) {
	.header-nav__menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-left: auto;
		margin-bottom: 0;
		padding-left: 0;
		list-style: none
	}
	.header-nav__menu--bottom {
		margin-left: 0
	}
}
.header-nav__item {
	opacity: .99;
	margin-right: 1.5rem
}
@media (min-width: 1200px) {
	.header-nav__item {
		margin-right: 2rem
	}
}
.header-nav__item:last-child {
	margin-right: 0
}
.header-nav__search {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.header-nav__search-link {
	width: 1.5rem;
	height: 1.5rem;
	display: block
}
.header-nav__search-link svg {
	width: 100%;
	height: 100%
}
.header-nav__search-box {
	width: 0;
	color: #101010;
	margin-left: -2.5rem;
	padding-left: 2.5rem
}
.header-nav__search-box:not(.open-search){
	width: 0%!important;
}
.header-nav__search-box.open-search {
	border-bottom: 2px solid;
	margin-bottom: -2px
}
.is-white:not(.is-menu-open):not(.is-fixed) .header-nav__search-box {
	color: #fff
}
@media (max-width: 989.98px) {
	.header-nav__search-box {
		display: none
	}
}
.header-nav__search-box form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.header-nav__search-box form .field {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1
}
.header-nav__search-box form .field .input {
	color: currentColor;
	border-bottom: none;
	border-color: currentcolor
}
.header-nav__search-box [data-search-box-clear] {
	color: currentColor
}
.header-nav__search-box [data-search-box-clear]:hover {
	color: #d0043c
}
.is-white:not(.is-menu-open) .header-nav__search-box [data-search-box-clear]:hover {
	color: hsla(0, 0%, 100%, .5)
}
.header-nav__link {
	vertical-align: top;
	display: inline-block;
	white-space: nowrap;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color;
	-webkit-transition-delay: .2s;
	-o-transition-delay: .2s;
	transition-delay: .2s
}
.header-nav__link:focus,
.header-nav__link:hover {
	color: #d0043c
}
.header-nav-open .is-white:not(.is-fixed) .header-nav__link,
.is-white:not(.is-fixed) .hover .header-nav__link {
	color: hsla(0, 0%, 100%, .5)
}
.header:not(.is-fixed).is-white .header-nav__link:focus,
.header:not(.is-fixed).is-white .header-nav__link:hover {
	color: #fff
}
.header:not(.is-fixed).light-slide .header-nav__link:focus,
.header:not(.is-fixed).light-slide .header-nav__link:hover {
	color: #d0043c
}
.header-nav__link-arrow {
	pointer-events: none;
	margin-left: .5rem;
	vertical-align: top
}
.header-nav__link-arrow svg {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform
}
.header-nav__link.is-open {
	color: #d0043c
}
.header-nav__link.is-open .header-nav__link-arrow svg {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg)
}
.header.light-slide:not(.is-fixed) .header-nav__link.is-open {
	color: #d0043c !important
}
.header-nav-open .header.is-white:not(.light-slide):not(.is-fixed) .header-nav__link.is-open {
	color: #fff
}
.header-nav__dropdown {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding: 0 7.125rem;
	color: #101010;
	background-color: #fff;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: height, padding, -webkit-box-shadow;
	transition-property: height, padding, -webkit-box-shadow;
	-o-transition-property: height, padding, box-shadow;
	transition-property: height, padding, box-shadow;
	transition-property: height, padding, box-shadow, -webkit-box-shadow
}
.header-nav__dropdown a:hover {
	text-decoration: none;
	color: #d0043c
}
.header-nav__dropdown.is-open {
	height: 31.25rem;
	padding-top: 4.4375rem;
	padding-bottom: 4.4375rem;
	-webkit-box-shadow: 0 1.875rem 2.75rem rgba(36, 44, 50, .07);
	box-shadow: 0 1.875rem 2.75rem rgba(36, 44, 50, .07)
}
.header-nav__submenu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 0;
	padding-left: 0;
	list-style: none
}
.header-nav__submenu--level-1 {
	display: none;
	border-bottom: 2px solid #efefef;
	padding-bottom: 1.5rem
}
.header-nav__submenu--level-1.is-open {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.header-nav__submenu--level-2 {
	margin-top: auto;
	display: none;
	padding-top: 3rem
}
.header-nav__submenu--level-2.is-open {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.header-nav__submenu-item {
	margin-bottom: 1.5rem
}
.header-nav__submenu-item--level-1 {
	width: 40%
}
.header-nav__submenu-item--level-1:nth-child(2n) {
	width: 60%
}
.header-nav__submenu-item--level-2 {
	width: 20%
}
.header-nav__submenu-item--default {
	width: 40%
}
.header-nav__submenu-item--default:nth-child(2n) {
	width: 60%
}
.header-nav__submenu-item--default .text-mute {
	font-size: .875rem
}
.header-nav__submenu-item--default .text-mute:not(:first-child) {
	margin-top: .5rem
}
.header-nav__submenu-item--default .header-nav__submenu-link {
	font-weight: 500
}
.header-nav__submenu-link--level-1.is-active {
	color: #d0043c
}
.header-nav--level-2 {
	position: absolute
}
.header__search-box-results {
	position: absolute;
	margin-left: -2.5rem;
	margin-top: 2px;
	display: none;
	-webkit-box-shadow: 0 1.875rem 2.75rem rgba(36, 44, 50, .07);
	box-shadow: 0 1.875rem 2.75rem rgba(36, 44, 50, .07)
}
.header.is-white:not(.is-fixed) {
	color: #fff
}
.header.is-white:not(.is-fixed) .header-nav__link.is-open,
.header.is-white:not(.is-fixed) .header__logo svg {
	color: currentColor
}
.header.is-white:not(.is-fixed).is-menu-open .header-nav__toggles,
.header.is-white:not(.is-fixed).is-menu-open .header__top {
	color: #101010
}
.header.is-white:not(.is-fixed).is-menu-open .header__logo svg {
	color: #d0043c
}
.header.is-white:not(.is-fixed):not(.is-menu-open) .header-nav__burger,
.header.is-white:not(.is-fixed):not(.is-menu-open) .header-nav__search {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
	color: currentColor
}
.header.is-white:not(.is-fixed):not(.is-menu-open) .header-nav__burger span,
.header.is-white:not(.is-fixed):not(.is-menu-open) .header-nav__search span {
	background-color: currentColor
}
@media (min-width: 640px) {
	.header.is-white:not(.is-fixed):not(.is-menu-open) .header-nav__burger:hover,
	.header.is-white:not(.is-fixed):not(.is-menu-open) .header-nav__search:hover {
		opacity: .4
	}
}
@media (min-width: 640px) {
	.header .header-nav__burger:hover,
	.header .header-nav__search:hover {
		color: #d0043c
	}
}
.header.is-white:not(.is-fixed):not(.is-menu-open).light-slide {
	color: #101010
}
.header.is-white:not(.is-fixed):not(.is-menu-open).light-slide .header-burger span {
	background-color: #101010
}
.header.is-white:not(.is-fixed):not(.is-menu-open).light-slide .header-burger:focus,
.header.is-white:not(.is-fixed):not(.is-menu-open).light-slide .header-burger:hover {
	opacity: 1
}
.header.is-white:not(.is-fixed):not(.is-menu-open).light-slide .header-burger:focus span,
.header.is-white:not(.is-fixed):not(.is-menu-open).light-slide .header-burger:hover span {
	background-color: #d0043c
}
body:not(.header-nav-open) .header:not(.is-menu-open):not(.is-fixed).transition-opacity {
	opacity: 0;
	pointer-events: none
}
.header__role-list {
	position: absolute;
	display: none;
	z-index: 1;
	top: calc(100% + .625rem);
	left: 0;
	padding: 2rem;
	width: 21.0625rem;
	background-color: #fff;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform
}
@media (min-width: 640px) {
	.header__role-list.active {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}
@media (min-width: 640px) {
	.header.is-fixed .header__role-list {
		display: none
	}
}
.client-role {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.client-role__label {
	margin-right: .5rem
}
.header:not(.is-menu-open) .client-role__label {
	color: rgba(16, 16, 16, .4)
}
.header:not(.is-menu-open).is-white .client-role__label {
	color: #fff
}
.header:not(.is-menu-open).light-slide .client-role__label {
	color: rgba(16, 16, 16, .4)
}
@media (max-width: 989.98px) {
	.header__wrap {
		padding-top: 1.375rem;
		padding-bottom: 1rem
	}
}
@media (max-width: 639.98px) {
	.header__wrap {
		padding-top: 0.8rem;
		padding-bottom: 0.6rem;
		-webkit-transition-timing-function: ease;
		-o-transition-timing-function: ease;
		transition-timing-function: ease;
		-webkit-transition-duration: .3s;
		-o-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transition-property: border-color;
		-o-transition-property: border-color;
		transition-property: border-color;
		border-bottom: 1px solid rgba(16, 16, 16, .4)
	}
	.is-white:not(.is-fixed) .header__wrap {
		border-bottom: 1px solid #fff
	}
	.header:not(.header--has-bottom).is-fixed .header__wrap {
		border-bottom: 1px solid #101010
	}
	.header.is-menu-open .header__wrap {
		border-bottom: 1px solid rgba(16, 16, 16, .4)
	}
}
.menu {
	display: none;
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	color: #101010;
	overflow: hidden;
	padding-top: calc(42px + 2rem);
}
@media (min-width: 640px) {
	.menu {
		padding-top: 6.25rem
	}
}
@media (min-width: 990px) {
	.menu {
		padding-top: 7.875rem
	}
}
.menu.is-active {
	display: block
}
.menu__scrollable {
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	overflow: hidden auto
}
.menu__scrollable .ps__rail-y,
.menu__scrollable .ps__thumb-y {
	width: .25rem
}
.menu__scrollable .ps__rail-y:before,
.menu__scrollable .ps__thumb-y:before {
	bottom: 1.5rem
}
.menu__scrollable .ps__rail-y {
	margin-right: .5rem;
	width: .25rem
}
.menu__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-top: 1.5rem
}
@media (min-width: 640px) {
	.menu__wrapper {
		padding-top: 2.5rem
	}
}
@media (min-width: 990px) {
	.menu__wrapper {
		padding-top: 1.5rem
	}
}
.menu__scrollable,
.menu__scrollable > .wrapper,
.menu__wrapper {
	height: 100%
}
.menu__top {
	display: none
}
@media (max-width: 639.98px) {
	.menu__top {
		display: block;
		margin-top: -2.5rem;
		margin-bottom: 2.5rem;
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
		border-bottom: 1px solid rgba(16, 16, 16, .4)
	}
	.menu__top .header-top__right {
		margin-bottom: 0
	}
	.menu__top .header-top__item,
	.menu__top .header-top__item .link-action__text {
		color: rgba(16, 16, 16, .4)
	}
	.menu__top .header-top__item .link-action .icon {
		opacity: .4
	}
	.is-submenu-open .menu__top {
		display: none
	}
}
.menu__main {
	position: relative;
	padding-bottom: 1.5rem
}
@media (min-width: 990px) {
	.menu__main {
		padding-top: 0;
		padding-bottom: 1rem
	}
}
.menu__heading {
	display: none
}
@media (min-width: 640px) {
	.menu__heading {
		position: absolute;
		display: block;
		left: 50%;
		top: 0;
		padding-top: .5rem;
		width: 19.375rem
	}
}
@media (min-width: 990px) {
	.menu__heading {
		padding-top: 0;
		left: 66.6666%
	}
}
.menu__heading.is-hidden {
	display: none
}
.menu__bottom {
	position: relative;
	margin-top: auto
}
@media (max-width: 639.98px) {
	.menu__bottom {
		padding: 2rem 1rem 1.5rem;
		margin-left: -1rem;
		margin-right: -1rem
	}
}
@media (max-width: 639.98px) {
	.is-submenu-open .menu__bottom {
		display: none
	}
}
@media (min-width: 640px) {
	.menu__bottom {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 4rem 0
	}
	.menu__bottom:after,
	.menu__bottom:before {
		content: "";
		pointer-events: none;
		position: absolute;
		top: 0;
		left: 1px;
		right: 1px;
		bottom: 0;
		background-color: inherit
	}
	.menu__bottom:before {
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%)
	}
	.menu__bottom:after {
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%)
	}
}
@media (min-width: 990px) {
	.menu__bottom {
		height: auto;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		width: 75%;
		padding: 3rem calc(8.33333vw - .5rem) 2rem
	}
	.menu__bottom:after {
		display: none
	}
}
.menu__bottom-items {
	list-style: none;
	padding: 0;
	margin: 0
}
@media (max-width: 639.98px) {
	.menu__bottom-items {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}
@media (min-width: 640px) {
	.menu__bottom-items {
		-webkit-columns: 2;
		-moz-columns: 2;
		column-count: 2;
		grid-column-gap: 0;
		-webkit-column-gap: 0;
		-moz-column-gap: 0;
		column-gap: 0;
		page-break-inside: avoid;
		-webkit-column-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%
	}
}
@media (min-width: 990px) {
	.menu__bottom-items {
		width: 57.14286%
	}
}
.menu__bottom-contacts {
	list-style: none;
	padding: 0;
	margin: 0
}
@media (max-width: 639.98px) {
	.menu__bottom-contacts {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
	.menu__bottom-contacts .menu__bottom-item {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 50%
	}
}
@media (min-width: 640px) {
	.menu__bottom-contacts {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto
	}
}
.menu__bottom-item {
	display: block;
	width: 100%;
	margin-bottom: 1rem;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0)
}
.menu__bottom-item a {
	display: inline-block
}
@media (max-width: 639.98px) {
	.menu__bottom-item {
		width: 50%
	}
}
@media (min-width: 990px) {
	.menu__bottom-item {
		max-height: 1.5rem
	}
}
.menu__bottom-link {
	color: currentColor;
	text-decoration: none;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
.menu__bottom-link:hover {
	color: #d0043c;
	text-decoration: none
}
.menu__bottom-link--email {
	color: #d0043c
}
.menu__bottom-link--email:hover {
	color: currentColor
}
@media (max-width: 639.98px) {
	.menu__bottom-link--email {
		font-size: .75rem
	}
}
.menu__items {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none
}
@media (min-width: 990px) {
	.menu__items--level-0 {
		width: 41.66667%;
		padding-left: calc(8.33333vw - .5rem)
	}
}
.menu__items--level-1 {
	display: none;
	position: absolute;
	top: 0;
	left: 0
}
@media (max-width: 639.98px) {
	.menu__items--level-1 {
		padding: 0 calc(8.33333vw - .16667rem);
		width: 100%
	}
}
@media (min-width: 990px) {
	.menu__items--level-1 {
		left: calc(42% - 3px)
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.menu__items--level-1 {
		left: calc(50% - 3px)
	}
}
@media (min-width: 640px) {
	.menu__items--level-1 {
		width: 50%;
		padding-top: .5rem
	}
}
@media (min-width: 990px) {
	.menu__items--level-1 {
		padding-top: .5rem;
		-webkit-columns: 2;
		-moz-columns: 2;
		column-count: 2;
		grid-column-gap: 0;
		-webkit-column-gap: 0;
		-moz-column-gap: 0;
		column-gap: 0;
		page-break-inside: avoid;
		-webkit-column-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid
	}
}
.menu__items--level-1.is-active {
	display: block;
	pointer-events: auto
}
.menu__item {
	width: 100%
}
.menu__item--level-0:not(:last-child) {
	margin-bottom: 1.5rem
}
@media (max-width: 639.98px) {
	.menu__item--level-0 {
		margin-bottom: 1.5rem
	}
}
@media (max-width: 989.98px) {
	.is-submenu-open .menu__item--level-0 {
		pointer-events: none
	}
}
@media (min-width: 990px) {
	.menu__item--level-0 {
		max-height: 2rem
	}
}
.menu__item--level-1 {
	width: 100%;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	margin-bottom: 1.5rem
}
@media (min-width: 990px) {
	.menu__item--level-1 {
		max-height: 1.3125rem;
		display: inline-block
	}
}
.menu__item--heading {
	display: none
}
@media (max-width: 639.98px) {
	.menu__item--heading {
		margin-left: -2rem;
		margin-bottom: 2.5rem;
		width: auto
	}
}
@media (min-width: 640px) {
	.menu__item--heading {
		position: absolute;
		top: 0;
		left: 0;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%)
	}
}
@media (max-width: 989.98px) {
	.menu__item--heading {
		display: block
	}
}
.menu__item-arrow {
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 1.5rem;
	line-height: 1.35;
	font-weight: 500;
	position: relative;
	top: .125rem;
	width: 1rem;
	height: 1.35em;
	padding: 0;
	border: none;
	background-color: rgba(0, 0, 0, 0);
	vertical-align: top;
	border-radius: 0
}
@media (max-width: 639.98px) {
	.menu__item-arrow {
		font-size: 1.125rem
	}
}
.menu__item-arrow:before {
	content: "";
	display: inline-block;
	width: 1rem;
	height: 1rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 3.333L10.667 8 6 12.667' stroke='%23101010' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-size: 1rem 1rem;
	background-position: 50%;
	background-repeat: no-repeat
}
.menu__item-arrow:after {
	content: "";
	position: absolute;
	top: -.625rem;
	left: -.625rem;
	right: -.625rem;
	bottom: -.625rem
}
@media (min-width: 1100px) {
	.menu__item-arrow {
		display: none
	}
}
.menu__item-arrow--forwards {
	margin-left: .5rem
}
@media (max-width: 989.98px) {
	.is-submenu-open .menu__item-arrow--forwards {
		opacity: 0;
		pointer-events: none
	}
}
.menu__item-arrow--backwards {
	margin-right: .625rem
}
.menu__item-arrow--backwards:before {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg)
}
.menu__link {
	display: inline-block;
	color: currentColor;
	text-decoration: none;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
@media (min-width: 640px) {
	.menu__link.is-active,
	.menu__link:hover {
		color: #d0043c;
		text-decoration: none
	}
}
.menu__link--level-0 {
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 1.5rem;
	line-height: 1.35;
	font-weight: 500
}
@media (max-width: 639.98px) {
	.menu__link--level-0 {
		font-size: 1.125rem
	}
}
@media (max-width: 989.98px) {
	.is-submenu-open .menu__link--level-0 {
		opacity: 0;
		pointer-events: none
	}
}
.menu__link--external:after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-left: .3125rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.668 17.519L17.094 6.093m0 0H4.906m12.188 0v12.188' stroke='currentColor' stroke-width='2'/%3E%3C/svg%3E");
	background-size: 1em;
	background-position: 50%;
	background-repeat: no-repeat;
	margin-top: .15em;
	vertical-align: top
}
.menu__role-list {
	display: none
}
@media (max-width: 639.98px) {
	.menu__role-list.active {
		display: block
	}
}
@media (max-width: 639.98px) {
	.menu__role-list {
		position: absolute;
		z-index: 1;
		left: 0;
		top: calc(100% + .5rem);
		padding-bottom: 1.5rem;
		width: 100%;
		background-color: #fff
	}
}
.header.is-white .w-logo,
.header:not(.is-white) .r-logo {
	display: block;
}
.header.is-white .r-logo,
.header:not(.is-white) .w-logo {
	display: none;
}
.is-menu-open .r-logo {
	display: block !important;
}
.is-menu-open .w-logo {
	display: none!important;
}
.header .logo-white {
	display: none !important;
}
.header .logo-red {
	display: inline-flex !important;
	align-items: center;
}
.header.is-white .logo-white {
	display: inline-flex !important;
	align-items: center;
	/*justify-content: center;*/
}
.header.is-white .logo-red {
	display: none !important;
}
.header.is-menu-open .logo-white,
.header.is-fixed .logo-white {
	display: none !important;
}
.header.is-menu-open .logo-red,
.header.is-fixed .logo-red {
	display: inline-flex !important;
	align-items: center;
	/*justify-content: center;*/
}
.header__logo svg {
	max-height: 2.3125rem;
	transform: translateY(-17%);
}
@media (max-width: 639.98px) {
	.header__logo svg {
		transform: none;
	}
}
.header .logo-white > div > img:first-child,
.header .logo-red > div > img:first-child {
	max-height: 42px;
}
.header .logo-white > div > img:last-child,
.header .logo-red > div > img:last-child {
	max-height: 30px;
}
@media (min-width:992px) {
	.header .logo-white > div > img:first-child,
	.header .logo-red > div > img:first-child {
		max-height: 64px;
	}
}
/* --- */
.search-box-result-list {
	background-color: #fff
}
.search-box-result-list__inner {
	padding: 3.5rem 7rem 3.5rem 3rem;
	color: #101010
}
.search-box-result-list__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.search-box-result-list__left,
.search-box-result-list__right {
	width: 50%
}
.search-box-result-list__left {
	padding-right: 3.5rem
}
.search-box-result-list__right {
	padding-left: 3.5rem
}
.search-box-result-list__item {
	margin-bottom: 2rem
}
.search-form {
	padding-top: 1.5rem
}
.search-form__field.input {
	margin-bottom: 1.5rem;
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 2.5rem;
	line-height: 1.34;
	font-weight: 500
}
@media (min-width: 640px) {
	.search-form__field.input {
		padding-bottom: 1.5rem
	}
}
@media (max-width: 639.98px) {
	.search-form__field.input {
		font-size: 1.375rem
	}
}
@media (max-width: 639.98px) {
	.search-form__field.input ~ button {
		margin-top: .25rem
	}
}
@media (min-width: 640px) {
	.search-form__field.input ~ button {
		margin-top: .25rem;
		width: 2.5rem;
		height: 2.5rem
	}
	.search-form__field.input ~ button svg {
		width: 2.5rem;
		height: 2.5rem
	}
}
.search-form__form-bottom,
.search-form__form-bottom--left,
.search-form__form-bottom--right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.search-form__form-bottom--left,
.search-form__form-bottom--right {
	width: 50%
}
@media (max-width: 989.98px) {
	.search-form__form-bottom--left,
	.search-form__form-bottom--right {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 100%
	}
}
@media (max-width: 989.98px) {
	.search-form__form-bottom {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}
.search-form__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1
}
@media (min-width: 990px) {
	.search-form__button {
		display: none
	}
}
@media (max-width: 639.98px) {
	.search-form__button {
		margin-bottom: 1.5rem;
		width: 100%;
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}
}
.search-form__count {
	margin-right: auto;
	padding-right: 2rem
}
@media (max-width: 639.98px) {
	.search-form__count {
		margin-bottom: 1rem
	}
}
.search-form__sort {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
@media (min-width: 990px) {
	.search-form__sort {
		margin-left: auto
	}
}
.search-form__sort .field {
	margin-right: 2.5rem
}
.search-form__sort .field:last-child {
	margin-right: 0
}
@media (max-width: 989.98px) {
	.search-form__sort .field {
		margin-top: 1.5rem
	}
}
@media (max-width: 639.98px) {
	.search-form__sort .field {
		margin-right: 2rem
	}
}
@media (max-width: 989.98px) {
	.search-form__sort .checkbox__text {
		white-space: nowrap
	}
}
.search-form__filter {
	-ms-flex-preferred-size: 20.875rem;
	flex-basis: 20.875rem
}
@media (max-width: 989.98px) {
	.search-form__filter {
		-ms-flex-preferred-size: 12.5rem;
		flex-basis: 12.5rem;
		margin-left: auto;
		margin-top: 1.5rem
	}
}
@media (max-width: 639.98px) {
	.search-form__filter {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%
	}
}
@media (min-width: 990px) {
	.search-form__filter {
		margin-left: 1.5rem
	}
}
.search-results {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse
}
.search-results__sidebar {
	width: 25%
}
@media (max-width: 989.98px) {
	.search-results__sidebar {
		display: none
	}
}
.search-results__sidebar-title {
	margin-bottom: 3rem
}
.search-results__sidebar-list {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none
}
.search-results__sidebar-list li {
	margin-bottom: 1.5rem
}
.search-results__content {
	width: 75%;
	padding-right: 7rem
}
@media (max-width: 989.98px) {
	.search-results__content {
		width: 100%;
		padding-right: 0
	}
}
.search-results__list {
	margin-bottom: 4rem
}
@media (max-width: 639.98px) {
	.search-results__list {
		margin-bottom: 2.5rem
	}
}
.search-results .card-search {
	margin-bottom: 2px
}
.search-location-results {
	padding: 2rem .5rem 2rem 2.5rem;
	overflow: hidden
}
.search-location-results__items {
	position: relative;
	max-height: 15rem
}
.search-location-results__item:not(:first-child) {
	margin-top: 1.5rem
}
.search-location-results__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.search-location-results__item-img {
	margin-right: 1rem;
	width: 1.875rem;
	height: 1.25rem
}
/* --- */
.footer {
	font-size: 0
}
.footer__contacts {
	background-color: #d0043c;
	color: #fff
}
.footer__contacts-wrapper {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem
}
@media (min-width: 640px) {
	.footer__contacts-wrapper {
		padding-top: 5rem;
		padding-bottom: 5rem
	}
}
@media (min-width: 990px) {
	.footer__contacts-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding-top: 5.5rem;
		padding-bottom: 6.6875rem
	}
}
.footer__contacts-list {
	margin: 0;
	padding: 0;
	list-style: none
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.footer__contacts-list {
		margin-bottom: 3.5rem
	}
}
@media (min-width: 990px) {
	.footer__contacts-list {
		width: 50%
	}
}
@media (max-width: 639.98px) {
	.footer__contacts-list {
		margin-bottom: 3rem
	}
}
.footer__contacts-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-bottom: 1rem
}
@media (min-width: 640px) {
	.footer__contacts-item {
		margin-bottom: 1.5rem
	}
}
.footer__contacts-item-label {
	opacity: .4;
	margin-bottom: .5rem
}
.footer__contacts-item-link {
	color: currentColor;
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 2.5rem;
	line-height: 1.34;
	font-weight: 500;
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, .4)), to(hsla(0, 0%, 100%, .4)));
	background-image: -o-linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-image: linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
@media (max-width: 639.98px) {
	.footer__contacts-item-link {
		font-size: 1.375rem
	}
}
.footer__contacts-item-link.focus-visible,
.footer__contacts-item-link:hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
.footer__contacts-item-link:hover {
	color: #fff
}
@media (min-width: 990px) {
	.footer__contacts-social {
		width: 50%
	}
}
@media (max-width: 639.98px) {
	.footer__follow {
		padding-top: .5rem;
		padding-bottom: .5rem
	}
}
.footer__social-list {
	padding: 0;
	list-style: none;
	margin-bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
@media (min-width: 990px) {
	.footer__social-list {
		padding: 2rem 0 0
	}
}
.footer__social-item {
	margin-bottom: 1.125rem;
	width: 50%
}
@media (min-width: 640px) {
	.footer__social-item {
		margin-bottom: 1.5rem
	}
}
.footer__social-item:nth-child(odd):nth-last-child(-n+2),
.footer__social-item:nth-child(odd):nth-last-child(-n+2) ~ .footer__social-item {
	margin-bottom: 0
}
.footer__social-link {
	color: #efeff2;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.footer__social-link:hover {
	color: #efeff2;
	text-decoration: none
}
.footer__social-text {
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
	margin-left: 1.5rem;
	line-height: 1.5rem;
	pointer-events: none;
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, .4)), to(hsla(0, 0%, 100%, .4)));
	background-image: -o-linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-image: linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
@media (max-width: 639.98px) {
	.footer__social-text {
		font-size: .75rem
	}
}
.footer__social-text.focus-visible,
.footer__social-text:hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
@media (min-width: 640px) {
	.footer__social-text {
		margin-left: 2rem
	}
}
.footer__social-link:focus .footer__social-text,
.footer__social-link:hover .footer__social-text {
	background-position: 0 100%;
	background-size: 100% 1px
}
.footer__main {
	background-color: #101010;
	color: #fff;
	padding-top: 2rem;
	padding-bottom: 1.5rem
}
@media (min-width: 640px) {
	.footer__main {
		padding-top: 4rem;
		padding-bottom: 2.5rem
	}
}
.footer__main-grid {
	position: relative;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 50% 50%;
	grid-template-columns: 50% 50%;
	-ms-grid-rows: auto auto auto auto auto auto;
	grid-template-rows: auto auto auto auto auto auto;
	grid-template-areas: "logo logo""actions actions""nav nav""address address""switcher switcher""copyrights policy"
}
@media (min-width: 640px) {
	.footer__main-grid {
		-ms-grid-columns: 1fr 1fr 1fr 1fr;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		-ms-grid-rows: auto auto auto auto auto auto;
		grid-template-rows: auto auto auto auto auto auto;
		grid-template-areas: "logo logo logo logo""actions actions actions actions""nav nav nav nav""address address address address""switcher switcher switcher switcher""copyrights copyrights policy policy"
	}
}
@media (min-width: 990px) {
	.footer__main-grid {
		-ms-grid-columns: 1fr 1fr 1fr 1fr;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		-ms-grid-rows: auto auto auto auto;
		grid-template-rows: auto auto auto auto;
		grid-template-areas: "logo logo logo logo""actions nav nav nav""subsidiaries address address address"". copyrights policy policy"
	}
}
.footer__main .link-action {
	color: currentColor;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.footer__main .link-action {
		font-size: .75rem
	}
}
.footer__logo {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-area: logo;
	margin-bottom: 2.5rem
}
@media (min-width: 640px) {
	.footer__logo {
		margin-bottom: 3.5rem
	}
}
@media (min-width: 990px) {
	.footer__logo {
		margin-bottom: 5.5rem
	}
}
.footer__logo-wrapper {
	display: inline-flex;
	width: 10rem;
	color: currentColor;
	/*justify-content: center;*/
}
@media (min-width: 640px) {
	.footer__logo-wrapper {
		width: 17.5rem
	}
}
.footer__actions {
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-area: actions
}
.footer__action-list {
	padding: 0;
	list-style: none;
	margin-bottom: 0;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2
}
.footer__action-list > :last-child {
	margin-bottom: 0
}
@media (min-width: 640px) {
	.footer__action-list {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.footer__action-list {
		margin-bottom: 3rem
	}
}
@media (max-width: 639.98px) {
	.footer__action-list {
		margin-bottom: 2rem
	}
}
.footer__action {
	margin-bottom: .5rem
}
.footer__action .text-link {
	color: #fff;
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, .4)), to(hsla(0, 0%, 100%, .4)));
	background-image: -o-linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-image: linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.footer__action .text-link.focus-visible,
.footer__action .text-link:hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
.footer__action .text-link:hover {
	color: #fff
}
.footer__nav {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-area: nav;
	margin-bottom: 3rem
}
@media (min-width: 990px) {
	.footer__nav {
		margin-bottom: 4rem
	}
}
.footer__nav-list {
	padding: 0;
	list-style: none;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	margin-bottom: 0;
	grid-column-gap: 0;
	-webkit-column-gap: 0;
	-moz-column-gap: 0;
	column-gap: 0
}
@media (min-width: 990px) {
	.footer__nav-list {
		-webkit-column-count: 3;
		-moz-column-count: 3;
		column-count: 3
	}
}
.footer__nav-item {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 1rem
}
@media (min-width: 640px) {
	.footer__nav-item {
		margin-bottom: 1.5rem;
		padding-right: 3rem
	}
}
.footer__nav-item-link {
	font-size: .875rem;
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	line-height: 1.5;
	font-weight: 500;
	color: currentColor;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color;
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, .4)), to(hsla(0, 0%, 100%, .4)));
	background-image: -o-linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-image: linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	transition-duration: .3s;
	transition-timing-function: ease;
	will-change: background-size;
	padding-bottom: 1px
}
@media (min-width: 640px) {
	.footer__nav-item-link {
		font-size: 1rem
	}
}
.footer__nav-item-link p {
	margin-bottom: 1rem
}
@media (min-width: 640px) {
	.footer__nav-item-link p {
		margin-bottom: 1.5rem
	}
}
.footer__nav-item-link.focus-visible,
.footer__nav-item-link:hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
.footer__nav-item-link:hover {
	color: #fff
}
@media (min-width: 640px) {
	.footer__nav-item-link {
		font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
		font-size: 1.125rem;
		line-height: 1.4;
		font-weight: 500
	}
}
@media (min-width: 640px) and (max-width: 639.98px) {
	.footer__nav-item-link {
		font-size: 1rem
	}
}
.footer__subsidiaries {
	-ms-grid-row: 4;
	-ms-grid-column: 1;
	grid-area: subsidiaries
}
.footer__subsidiaries-head {
	font-size: .625rem;
	line-height: 1.3;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	opacity: .4;
	margin-bottom: 1rem
}
@media (max-width: 639.98px) {
	.footer__subsidiaries-head {
		font-size: .5rem;
		letter-spacing: 1px
	}
}
@media (min-width: 640px) {
	.footer__subsidiaries-head {
		margin-bottom: .75rem
	}
}
.footer__subsidiaries-list {
	padding: 0;
	list-style: none;
	margin-bottom: 0
}
@media (max-width: 639.98px) {
	.footer__subsidiaries-list {
		padding-right: 1rem
	}
}
.footer__subsidiaries-list > :last-child {
	margin-bottom: 0
}
.footer__subsidiaries-item {
	margin-bottom: .5rem
}
@media (max-width: 639.98px) {
	.footer__subsidiaries-item {
		margin-bottom: 1rem
	}
}
.footer__subsidiaries-item-link {
	color: currentColor;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, .4)), to(hsla(0, 0%, 100%, .4)));
	background-image: -o-linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-image: linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	transition-duration: .3s;
	transition-timing-function: ease;
	will-change: background-size
}
@media (max-width: 639.98px) {
	.footer__subsidiaries-item-link {
		font-size: .75rem
	}
}
.footer__subsidiaries-item-link.focus-visible,
.footer__subsidiaries-item-link:hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
.footer__subsidiaries-item-link:hover {
	color: #fff
}
.footer__address {
	-ms-grid-row: 4;
	-ms-grid-column: 2;
	grid-area: address
}
.footer__address-list {
	padding: 0;
	list-style: none;
	margin-bottom: 0
}
@media (max-width: 639.98px) {
	.footer__address-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-flex-flow: column-reverse;
		flex-flow: column-reverse;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		margin-top: -.25rem
	}
}
@media (min-width: 640px) {
	.footer__address-list > :last-child {
		margin-bottom: 0
	}
}
@media (min-width: 640px) {
	.footer__address-item {
		margin-bottom: .5rem
	}
}
@media (max-width: 639.98px) {
	.footer__address-item:not(:first-child) {
		margin-bottom: 1rem
	}
}
.footer__address-item:first-child {
	padding-top: 0
}
.footer__address-item-link {
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
	color: currentColor
}
@media (max-width: 639.98px) {
	.footer__address-item-link {
		font-size: .75rem
	}
}
.footer__address-item-link[href] {
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, .4)), to(hsla(0, 0%, 100%, .4)));
	background-image: -o-linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-image: linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.footer__address-item-link[href].focus-visible,
.footer__address-item-link[href]:hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
.footer__address-item-link:hover {
	color: #fff
}
.footer__address-item a.footer__address-item-link:hover {
	text-decoration: none
}
.footer__language-switcher {
	-ms-grid-row: 5;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-area: switcher;
	margin-top: 2rem;
	margin-bottom: 1.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
@media (min-width: 640px) {
	.footer__language-switcher {
		margin-top: 2.5rem;
		margin-bottom: 3rem
	}
}
@media (min-width: 990px) {
	.footer__language-switcher {
		margin-top: 0;
		margin-bottom: 0;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
}
.footer__language-switcher-region {
	padding-right: 1rem
}
.footer__language-switcher-list {
	margin: 0;
	padding: 0 0 0 1rem;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-left: 1px solid hsla(0, 0%, 100%, .4)
}
.footer__language-switcher-item:not(:last-child) {
	margin-right: 1rem
}
.footer__language-switcher-item .link-action .link-action__text {
	color: hsla(0, 0%, 100%, .4);
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
.footer__language-switcher-item .link-action:hover .link-action__text {
	color: #fff
}
.footer__language-switcher-item .link-action--active {
	pointer-events: none
}
.footer__language-switcher-item .link-action--active .link-action__text {
	color: #fff
}
.footer__language-switcher-item .link-action--not-active .link-action__text {
	color: hsla(0, 0%, 100%, .4)
}
.footer__language-switcher-button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
.footer__language-switcher-button:hover {
	text-decoration: none
}
.footer__language-switcher-button.focus-visible,
.footer__language-switcher-button:hover {
	color: hsla(0, 0%, 100%, .4)
}
.footer__language-switcher-button .image {
	width: 1.5rem;
	height: 1rem;
	margin-right: 1rem
}
.footer__policy {
	-ms-grid-row: 6;
	-ms-grid-column: 1;
	grid-area: policy
}
@media (min-width: 990px) {
	.footer__policy {
		margin-top: 5.875rem;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end
	}
}
.footer__policy-items {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%
}
@media (min-width: 990px) {
	.footer__policy-items {
		margin: -.5rem 0;
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.footer__policy-item:not(:last-child) {
		margin-bottom: .5rem
	}
}
@media (min-width: 990px) {
	.footer__policy-item {
		padding: .5rem 0
	}
}
@media (max-width: 639.98px) {
	.footer__policy-item:not(:last-child) {
		margin-bottom: .5rem
	}
}
.footer__policy-item .text-link,
.footer__copyrights-text .copyright-link {
	color: hsla(0, 0%, 100%, .5);
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, .4)), to(hsla(0, 0%, 100%, .4)));
	background-image: -o-linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-image: linear-gradient(hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, .4));
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.footer__policy-item .text-link.focus-visible,
.footer__policy-item .text-link:hover,
.footer__copyrights-text .copyright-link.focus-visible,
.footer__copyrights-text .copyright-link:hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
.footer__policy-item .text-link:focus,
.footer__policy-item .text-link:hover,
.footer__copyrights-text .copyright-link:focus,
.footer__copyrights-text .copyright-link:hover {
	color: #fff
}

.footer__copyrights {
	-ms-grid-row: 6;
	-ms-grid-column: 2;
	grid-area: copyrights
}
@media (min-width: 640px) {
	.footer__logo {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 4
	}
	.footer__actions {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
		-ms-grid-column-span: 4
	}
	.footer__nav {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
		-ms-grid-column-span: 4
	}
	.footer__subsidiaries {
		-ms-grid-row: 4;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2
	}
	.footer__address {
		-ms-grid-row: 4;
		-ms-grid-column: 3;
		-ms-grid-column-span: 2
	}
	.footer__language-switcher {
		-ms-grid-row: 5;
		-ms-grid-column: 1;
		-ms-grid-column-span: 4
	}
	.footer__policy {
		-ms-grid-row: 6;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2
	}
	.footer__copyrights {
		-ms-grid-row: 6;
		-ms-grid-column: 3;
		-ms-grid-column-span: 2
	}
}
@media (min-width: 990px) {
	.footer__logo {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
		-ms-grid-column-span: 4
	}
	.footer__actions {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
		-ms-grid-column-span: 1
	}
	.footer__nav {
		-ms-grid-row: 2;
		-ms-grid-column: 2;
		-ms-grid-column-span: 3
	}
	.footer__subsidiaries {
		-ms-grid-row: 3;
		-ms-grid-column: 2;
		-ms-grid-column-span: 1
	}
	.footer__address {
		-ms-grid-row: 3;
		-ms-grid-column: 3;
		-ms-grid-column-span: 1
	}
	.footer__language-switcher {
		-ms-grid-row: 3;
		-ms-grid-column: 4;
		-ms-grid-column-span: 1
	}
	.footer__policy {
		-ms-grid-row: 4;
		-ms-grid-column: 2;
		-ms-grid-column-span: 2
	}
	.footer__copyrights {
		-ms-grid-row: 4;
		-ms-grid-column: 4;
		-ms-grid-column-span: 1;
		margin-top: 5.875rem
	}
}
.footer__copyrights-text {
	display: inline-block;

	font-size: .75rem;
	line-height: 1.3;
	font-weight: 400
}
.footer__copyrights-text > span {
	opacity: .4;
}
@media (max-width: 639.98px) {
	.footer__copyrights-text {
		font-size: .625rem
	}
}
.footer__button-top {
	position: absolute;
	bottom: 0;
	right: .75rem;
	width: 1.5rem;
	height: 1.5rem
}
@media (min-width: 990px) {
	.footer__button-top {
		right: 3.5rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.footer__button-top {
		right: 1.75rem
	}
}
@media (max-width: 639.98px) {
	.footer__button-top {
		bottom: .5rem
	}
}
.footer__button-top svg {
	display: block;
	width: 100%;
	height: 100%
}
.footer__button-top .button-top {
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	background-color: rgba(0, 0, 0, 0);
	color: currentColor;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}
.footer__button-top .button-top:hover {
	opacity: .4
}
.footer__logo-wrapper svg {
	max-width: 100%;
}
/* --- */
.text-lead {
	font-size: .875rem;
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	line-height: 1.5;
	font-weight: 500
}
@media (min-width:640px) {
	.text-lead {
		font-size: 1rem
	}
}
.text-lead p {
	margin-bottom: 1rem
}
@media (min-width:640px) {
	.text-lead p {
		margin-bottom: 1.5rem
	}
}
.text-quote {
	font-size: 1.125rem;
	line-height: 1.4;
	font-weight: 400
}
@media (max-width:639.98px) {
	.text-quote {
		font-size: 1rem
	}
}
.text-label {
	font-size: .625rem;
	line-height: 1.3;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase
}
@media (max-width:639.98px) {
	.text-label {
		font-size: .5rem;
		letter-spacing: 1px
	}
}
.text-default {
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width:639.98px) {
	.text-default {
		font-size: .75rem
	}
}
.text-small {
	font-size: .75rem;
	line-height: 1.3;
	font-weight: 400
}
@media (max-width:639.98px) {
	.text-small {
		font-size: .625rem
	}
}
.text-mute {
	opacity: .4
}
/* --other styles */
/* block section-link */
.section-link__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
@media (max-width: 989.98px) {
	.section-link__content {
		display: block
	}
}
.section-link__col {
	width: 85%
}
.section-link__col:nth-child(2) {
	width: 30%
}
@media (max-width: 989.98px) {
	.section-link__col {
		width: 100%
	}
	.section-link__col:nth-child(2) {
		width: 100%;
		margin-top: 4rem
	}
}
@media (max-width: 639.98px) {
	.section-link__col:nth-child(2) {
		display: none
	}
}
.section-link-list {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0
}
@media (min-width: 990px) {
	.section-link-list {
		padding-top: .25rem;
		width: 68%;
		margin-bottom: -1rem
	}
}
@media (min-width: 640px) {
	.section-link-list {
		-webkit-columns: 2;
		-moz-columns: 2;
		column-count: 2;
		grid-column-gap: 0;
		-webkit-column-gap: 0;
		-moz-column-gap: 0;
		column-gap: 0;
		page-break-inside: avoid;
		-webkit-column-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid
	}
}
@media (max-width: 639.98px) {
	.section-link-list {
		width: 100%
	}
	.section-link-list > :last-child {
		margin-bottom: 0
	}
}
.section-link-list__el {
	display: block;
	width: 100%;
	margin-bottom: 1rem
}
.section-link-list__el.animate {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0)
}
@media (min-width: 640px) {
	.section-link-list__el {
		width: 100%;
		padding-right: 1.5rem
	}
}
@media (max-width: 639.98px) {
	.section-link-list__el {
		margin-bottom: 1rem
	}
}
@media (min-width: 990px) {
	.section-link__desc {
		max-width: 18.75rem;
		margin-left: 1rem
	}
}
@media (max-width: 989.98px) {
	.section-link__desc {
		max-width: 50%
	}
}
/* --block section-link */
/* block news */
.events-list__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 3.5rem
}
@media (max-width: 989.98px) {
	.events-list__head {
		margin-bottom: 3rem
	}
}
@media (max-width: 639.98px) {
	.events-list__head {
		margin-bottom: 2rem
	}
}
@media (min-width: 990px) {
	.events-list__title + .events-list__link {
		margin-top: 1.375rem
	}
}
@media (max-width: 989.98px) {
	.events-list__title + .events-list__link {
		display: none
	}
}
.events-list__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -1px;
	margin-left: -1px
}
.events-list__col {
	width: 25%;
	padding-left: 1px;
	padding-right: 1px;
	margin-bottom: 4.5rem
}
.events-list__col:nth-child(-n+2) .card__img {
	height: 23.75rem
}
.events-list__col:nth-last-child(-n+1) {
	margin-bottom: 0
}
@media (min-width: 640px) {
	.events-list__col:nth-last-child(-n+2) {
		margin-bottom: 0
	}
}
@media (min-width: 990px) {
	.events-list__col:first-child .card__info {
		background-color: #fff
	}
	.events-list__col:nth-child(2) .card__info {
		width: 50%;
		background-color: #fff
	}
	.events-list__col:nth-child(2) .card__title {
		width: 200%
	}
	.events-list__col:nth-child(-n+2) {
		width: 50%
	}
	.events-list__col:nth-child(-n+2) .card__info {
		margin-top: -3rem;
		margin-bottom: 1rem;
	}
	.events-list__col:nth-last-child(-n+4) {
		margin-bottom: 0
	}
}
@media (max-width: 989.98px) {
	.events-list__col {
		width: 50%
	}
	.events-list__col:nth-child(-n+2) {
		width: 100%
	}
	.events-list__col:nth-child(-n+2) .card__img {
		height: 21.875rem
	}
}
@media (max-width: 639.98px) {
	.events-list__col {
		width: 100%;
		margin-bottom: 2rem
	}
	.events-list__col:not(:last-child) {
		border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	}
	.events-list__col--m-hidden {
		display: none
	}
	.events-list__col .card__img {
		height: 0 !important;
		padding-top: 56.25%
	}
}
@media (min-width: 640px) {
	.events-list__bottom {
		margin-top: 4rem
	}
}
@media (min-width: 990px) {
	.events-list__bottom {
		display: none
	}
}
/* --block news */
/* block card */
.card-about {
	position: relative
}
.card-about__main-link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0
}
.card-about__inner {
	pointer-events: none
}
.card-about__inner .card-about__image .image {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform
}
.card-about__inner a,
.card-about__inner button {
	pointer-events: auto;
	position: relative;
	z-index: 2
}
.card-about__main-link:hover ~ .card-about__inner .card-about__image .image {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05)
}
.card-about__top {
	overflow: hidden;
	position: relative;
	height: 11.25rem;
	width: 100%
}
@media (min-width: 640px) {
	.card-about__top {
		height: 21.5625rem
	}
}
@media (min-width: 990px) {
	.card-about__top {
		height: 20.625rem
	}
}
.card-about__overlay {
	background-color: #efeff2;
	z-index: 1
}
.card-about__image,
.card-about__overlay {
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%
}
.card-about__image .image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	background-size: cover;
	background-position: 50%
}
.card-about__label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 1rem 1.5rem;
	background-color: #d0043c;
	color: #fff;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.card-about__label {
		font-size: .75rem
	}
}
[data-animate-card] .card-about__label {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: -webkit-clip-path;
	transition-property: -webkit-clip-path;
	-o-transition-property: clip-path;
	transition-property: clip-path;
	transition-property: clip-path, -webkit-clip-path;
	-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%)
}
[data-animate-card].transition-end .card-about__label {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}
.card-about__bottom {
	margin-top: 1.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
@media (max-width: 639.98px) {
	.card-about__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse
	}
}
@media (min-width: 640px) {
	.card-about__bottom {
		margin-top: 2.5rem
	}
}
@media (min-width: 990px) {
	.card-about__bottom {
		margin-top: 3.625rem
	}
}
@media (max-width: 639.98px) {
	.card-about__bottom-right {
		margin-bottom: 1.25rem
	}
}
@media (min-width: 640px) {
	.card-about__bottom-right {
		margin-left: auto;
		width: 17.5rem
	}
}
@media (min-width: 990px) {
	.card-about__bottom-right {
		padding-right: 2rem;
		width: 14.5rem;
		margin-top: -1rem
	}
}
.card-about__bottom-right ~ .card-about__bottom-left {
	max-width: 22.5rem
}
.card-about__title {
	margin-bottom: .5rem
}
@media (min-width: 640px) {
	.card-about__title {
		margin-bottom: 1rem
	}
}
.card-about .link-action,
.card-about__link {
	margin-top: 1.5rem
}
.card-about__text {
	display: block;
	display: -webkit-box;
	font-size: .75rem;
	max-height: 4.5rem;
	line-height: 1.5;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4
}
@media (min-width: 640px) {
	.card-about__text {
		display: block;
		display: -webkit-box;
		font-size: .875rem;
		max-height: 3.9375rem;
		line-height: 1.5;
		overflow: hidden;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3
	}
}
@media (max-width: 639.98px) {
	.card-about__info {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.card-about__info {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
}
.card-about__info-image {
	position: relative;
	width: 3rem;
	height: 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}
@media (min-width: 640px) {
	.card-about__info-image {
		width: 4.5rem;
		height: 4.5rem
	}
}
@media (max-width: 639.98px) {
	.card-about__info-image {
		margin-left: auto;
		margin-top: -.5rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.card-about__info-image {
		margin-right: 1.875rem;
		-ms-flex-negative: 0;
		flex-shrink: 0
	}
}
.card-about__info-image:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #efeff2
}
.card-about__info-image .image {
	position: relative;
	z-index: 2
}
.card-about__info-description {
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.card-about__info-description {
		font-size: .75rem
	}
}
@media (min-width: 990px) {
	.card-about__info-description {
		margin-top: 1.5rem
	}
}
.card-about__info-description-date {
	margin-top: .25rem;
	color: rgba(16, 16, 16, .4)
}
.card-link__wrap {
	position: relative;
	background-color: #efefef;
	overflow: hidden
}
.card-link__wrap:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	-webkit-transform: translateX(-100.5%);
	-ms-transform: translateX(-100.5%);
	transform: translateX(-100.5%);
	-webkit-transition: -webkit-transform .5s ease;
	transition: -webkit-transform .5s ease;
	-o-transition: transform .5s ease;
	transition: transform .5s ease;
	transition: transform .5s ease, -webkit-transform .5s ease
}
.card-link__content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 2.5rem
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.card-link__content {
		padding: 2.5rem 3.75rem
	}
}
@media (max-width: 639.98px) {
	.card-link__content {
		padding: 2rem 1.5rem 2.125rem 1.75rem
	}
}
.card-link__text {
	color: #101010;
	display: block;
	display: -webkit-box;
	font-size: 1.125rem;
	max-height: 1.575rem;
	line-height: 1.4;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1
}
.card-link__icon,
.card-link__text {
	-webkit-transition: color 1s cubic-bezier(.19, 1, .22, 1);
	-o-transition: color 1s cubic-bezier(.19, 1, .22, 1);
	transition: color 1s cubic-bezier(.19, 1, .22, 1)
}
.card-link__icon {
	width: 1.5rem;
	height: 1.5rem
}
.card-link.focus-visible,
.card-link:hover {
	color: currentColor;
	text-decoration: none
}
.card-link.focus-visible .card-link__wrap:before,
.card-link:hover .card-link__wrap:before {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0)
}
.card-news__link:hover {
	color: #101010
}
.card-news__inner {
	display: block;
	padding: 4rem 7rem;
	background-color: #efeff2;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: background-color;
	-o-transition-property: background-color;
	transition-property: background-color
}
@media (max-width: 989.98px) {
	.card-news__inner {
		padding: 2.5rem 5rem
	}
}
@media (max-width: 639.98px) {
	.card-news__inner {
		padding: 2rem 2.5rem
	}
}
.card-news__inner:hover {
	background-color: #fff
}
@media (min-width: 640px) {
	.card-news__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
}
.card-news__label {
	display: block;
	margin-bottom: 1.5rem
}
@media (max-width: 989.98px) {
	.card-news__label {
		margin-bottom: 1rem
	}
}
.card-news__title {
	margin-bottom: 1.5rem
}
@media (max-width: 989.98px) {
	.card-news__title {
		margin-bottom: 1rem
	}
}
.card-news__title b {
	color: #d0043c;
	font-weight: 500;
	background-color: #fff
}
.card-news__des {
	display: block;
	display: -webkit-box;
	font-size: .875rem;
    line-height: 1.34;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4
}
.card-news__des b {
	color: #d0043c;
	font-weight: 500;
	background-color: #fff
}
@media (min-width: 640px) {
	.card-news__image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 28%;
		flex: 0 0 28%;
		min-width: 11.5625rem;
		margin-right: 2.5rem
	}
}
@media (max-width: 639.98px) {
	.card-news__image {
		margin-bottom: 1.5rem
	}
}
.card-news__image-wrapper {
	padding-top: 60%;
	position: relative;
	overflow: hidden
}
.card-news__image-wrapper .image {
	position: absolute;
	top: 0;
	min-width: 100%;
	min-height: 100%
}
.card-partner {
	background-color: #fff;
	position: relative
}
.card-partner__link {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	opacity: 0
}
@media (min-width: 990px) {
	.card-partner__link.focus-visible ~ .card-partner__inner .card-partner__title,
	.card-partner__link:hover ~ .card-partner__inner .card-partner__title {
		color: #d0043c
	}
}
.card-partner__inner {
	padding: 1.25rem 2rem 1.5rem
}
@media (min-width: 640px) {
	.card-partner__inner {
		padding: 2rem 2.5rem 3rem
	}
}
.card-partner__logo {
	height: 4.875rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
@media (max-width: 989.98px) {
	.card-partner__logo {
		height: 4rem
	}
}
@media (max-width: 639.98px) {
	.card-partner__logo {
		height: 3rem
	}
}
.card-partner__logo .image {
	max-width: 100%;
	max-height: 100%;
	background-size: auto;
	background-position: 0
}
@media (max-width: 639.98px) {
	.card-partner__logo {
		width: 100%
	}
}
.card-partner__title {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
@media (min-width: 640px) {
	.card-partner__text,
	.card-partner__title {
		max-width: 32rem
	}
}
.card-partner__facts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -.5rem
}
.card-partner__fact {
	padding: .5rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 50%
}
@media (min-width: 640px) {
	.card-partner__fact {
		width: 25%
	}
}
.card-review {
	padding: 2.5rem 1.75rem;
	background-color: #efeff2;
	height: 17.6875rem
}
@media (min-width: 640px) {
	.card-review {
		height: 23.125rem;
		padding: 5rem 4rem
	}
}
@media (max-width: 989.98px) {
	.card-review {
		-webkit-transition-delay: 0s;
		-o-transition-delay: 0s;
		transition-delay: 0s;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1
	}
}
@media (min-width: 640px) {
	.card-review__inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
}
@media (max-width: 639.98px) {
	.card-review__inner {
		position: relative
	}
}
.card-review__person {
	border-radius: 50%;
	overflow: hidden;
	width: 3.25rem;
	min-width: 3.25rem;
	height: 3.25rem
}
@media (min-width: 640px) {
	.card-review__person {
		width: 4.5rem;
		min-width: 4.5rem;
		height: 4.5rem;
		margin-right: 2.8125rem
	}
}
@media (min-width: 990px) {
	.card-review__person {
		margin-right: 2rem
	}
}
@media (max-width: 639.98px) {
	.card-review__person {
		position: absolute;
		bottom: 0;
		right: 0
	}
}
.card-review__text,
.card-review__title {
	margin-bottom: 2.5rem
}
@media (min-width: 640px) {
	.card-review__text,
	.card-review__title {
		margin-bottom: 2rem
	}
}
.card-review__text {
	display: block;
	display: -webkit-box;
	font-size: .875rem;
	max-height: 5.25rem;
	line-height: 1.5;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4
}
.card-review__title {
	position: relative;
	z-index: 1
}
.card-review__bg {
	position: absolute;
	left: 0;
	color: #fff;
	z-index: -1;
	top: -70%
}
@media (max-width: 639.98px) {
	.card-review__bg {
		width: 3.5rem;
		height: 3rem
	}
	.card-review__bg svg {
		width: 100%;
		height: 100%
	}
}
.card-search-box__link:hover,
.header .card-search-box__link {
	color: #101010
}
@media (min-width: 640px) {
	.card-search-box__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
}
.card-search-box__title {
	margin-bottom: .25rem;
	max-width: 27.875rem
}
@media (max-width: 989.98px) {
	.card-search-box__title {
		margin-bottom: 1rem
	}
}
.card-search-box__title b {
	color: #d0043c;
	font-weight: 500;
	background-color: #fff
}
.card-search-box__des {
	max-width: 36.25rem;
	display: block;
	display: -webkit-box;
	font-size: .875rem;
	max-height: 2.625rem;
	line-height: 1.5;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2
}
.card-search-box__des b {
	color: #d0043c;
	font-weight: 500;
	background-color: #fff
}
@media (min-width: 640px) {
	.card-search-box__image {
		width: 5.3125rem;
		min-width: 5.3125rem;
		margin-left: auto
	}
}
@media (max-width: 639.98px) {
	.card-search-box__image {
		margin-top: 1.5rem
	}
}
.card-search__link:hover {
	color: #101010
}
.card-search__inner {
	display: block;
	padding: 4rem 7rem;
	background-color: #efeff2;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: background-color;
	-o-transition-property: background-color;
	transition-property: background-color
}
@media (max-width: 989.98px) {
	.card-search__inner {
		padding: 2.5rem 5rem
	}
}
@media (max-width: 639.98px) {
	.card-search__inner {
		padding: 2rem 2.5rem
	}
}
.card-search__inner:hover {
	background-color: #fff
}
@media (min-width: 640px) {
	.card-search__content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
}
.card-search__label {
	display: block;
	margin-bottom: 1.5rem
}
@media (max-width: 989.98px) {
	.card-search__label {
		margin-bottom: 1rem
	}
}
.card-search__title {
	margin-bottom: 1.5rem;
	max-width: 27.875rem
}
@media (max-width: 989.98px) {
	.card-search__title {
		margin-bottom: 1rem
	}
}
.card-search__title b {
	color: #d0043c;
	font-weight: 500;
	background-color: #fff
}
.card-search__des {
	max-width: 36.25rem;
	display: block;
	display: -webkit-box;
	font-size: .875rem;
	max-height: 5.25rem;
	line-height: 1.5;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4
}
.card-search__des b {
	color: #d0043c;
	font-weight: 500;
	background-color: #fff
}
@media (min-width: 640px) {
	.card-search__image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 28%;
		flex: 0 0 28%;
		min-width: 11.5625rem;
		margin-left: 2.5rem
	}
}
@media (max-width: 639.98px) {
	.card-search__image {
		margin-top: 1.5rem
	}
}
.card-search__image-wrapper {
	padding-top: 60%;
	position: relative;
	overflow: hidden
}
.card-search__image-wrapper .image {
	position: absolute;
	top: 0;
	min-width: 100%;
	min-height: 100%
}
.card-universal {
	position: relative
}
.card-universal__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	opacity: 0;
	z-index: 1
}
@media (min-width: 990px) {
	.card-universal__link.focus-visible + .card-universal__inner .image,
	.card-universal__link:hover + .card-universal__inner .image {
		-webkit-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05)
	}
}
.card-universal__top {
	overflow: hidden;
	position: relative;
	height: 11.25rem;
	width: 100%
}
@media (min-width: 640px) {
	.card-universal__top {
		height: 21.5625rem
	}
}
@media (min-width: 990px) {
	.card-universal__top {
		height: 23.5rem
	}
}
.card-universal__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}
.card-universal__image .image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	background-size: cover;
	background-position: 50%;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	-o-transition-property: transform, opacity;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform
}
.card-universal__bottom {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 1rem
}
@media (max-width: 639.98px) {
	.card-universal__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
}
@media (min-width: 640px) {
	.card-universal__bottom {
		margin-top: 2.5rem
	}
}
@media (min-width: 990px) {
	.card-universal__bottom {
		margin-top: 0
	}
	.card-universal__bottom:before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 50%;
		height: 3rem;
		background-color: #fff;
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		transform: translateY(-100%)
	}
	.universal-cards__item:nth-child(odd) .card-universal__bottom:before {
		width: 100%
	}
}
.card-universal__bottom-left {
	max-width: 16.875rem
}
@media (min-width: 640px) {
	.card-universal__bottom-left {
		width: 50%;
		max-width: none
	}
}
@media (max-width: 639.98px) {
	.card-universal__bottom-right {
		margin-bottom: 1rem;
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}
}
@media (min-width: 640px) {
	.card-universal__bottom-right {
		width: 33.33333%;
		margin-left: auto
	}
}
@media (min-width: 990px) {
	.card-universal__bottom-right {
		width: 33.33333%
	}
}
.card-universal__title {
	margin-bottom: .75rem
}
@media (min-width: 640px) {
	.card-universal__title {
		margin-bottom: 1.5rem;
		width: 100%
	}
	.card-universal__title .h5 {
		max-width: 18.25rem
	}
}
@media (min-width: 990px) {
	.card-universal__title {
		margin-top: -.5rem
	}
}
.card-universal__text {
	display: block;
	display: -webkit-box;
	font-size: .75rem;
	max-height: 4.5rem;
	line-height: 1.5;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4
}
@media (min-width: 640px) {
	.card-universal__text {
		display: block;
		display: -webkit-box;
		font-size: .875rem;
		max-height: 3.9375rem;
		line-height: 1.5;
		overflow: hidden;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3
	}
}
.card-universal__info-description {
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.card-universal__info-description {
		font-size: .75rem
	}
}
.card-universal__info-description-label {
	color: rgba(16, 16, 16, .4)
}
.card {
	position: relative
}
.card__inner {
	display: block;
	color: #101010;
	overflow: hidden;
	-webkit-transition: none;
	-o-transition: none;
	transition: none
}
.card__inner:hover {
	text-decoration: none
}
.card__img {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 20.625rem;
	overflow: hidden
}
@media (max-width: 639.98px) {
	.card__img {
		height: 0;
		padding-top: 56%
	}
}
.card__img-overlay {
	background-color: #efeff2;
	z-index: 1
}
.card__img-overlay,
.card__img-wrap {
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%
}
.card__img .image.is-lazy {
	-webkit-transition: opacity .4s ease, -webkit-transform .4s cubic-bezier(.215, .61, .355, 1);
	transition: opacity .4s ease, -webkit-transform .4s cubic-bezier(.215, .61, .355, 1);
	-o-transition: opacity .4s ease, transform .4s cubic-bezier(.215, .61, .355, 1);
	transition: opacity .4s ease, transform .4s cubic-bezier(.215, .61, .355, 1);
	transition: opacity .4s ease, transform .4s cubic-bezier(.215, .61, .355, 1), -webkit-transform .4s cubic-bezier(.215, .61, .355, 1)
}
.card__img .image {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	background-size: cover;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}
@media (max-width: 639.98px) {
	.card__img .image {
		top: auto;
		bottom: 0;
		height: auto;
		min-height: 100%
	}
}
.play .card__img .image {
	opacity: 0
}
[data-animate-card].transition-end .card__img .image {
	-webkit-transition: -webkit-transform .7s cubic-bezier(.215, .61, .355, 1);
	transition: -webkit-transform .7s cubic-bezier(.215, .61, .355, 1);
	-o-transition: transform .7s cubic-bezier(.215, .61, .355, 1);
	transition: transform .7s cubic-bezier(.215, .61, .355, 1);
	transition: transform .7s cubic-bezier(.215, .61, .355, 1), -webkit-transform .7s cubic-bezier(.215, .61, .355, 1)
}
.card__inner:hover .card__img .image {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05)
}
.card__video {
	height: 100%
}
.card__info {
	position: relative;
	z-index: 1
}
.card__info-wrap {
	padding-top: 2.5rem;
	padding-bottom: 1rem;
}
.card__info-wrap > :last-child {
	margin-bottom: 0
}
@media (max-width: 639.98px) {
	.card__info-wrap {
		padding-top: 1.5rem
	}
}
.card__date {
	margin-bottom: 1rem;
	font-size: .625rem;
	line-height: 1.3;
	font-weight: 400;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(16, 16, 16, .4)
}
@media (max-width: 639.98px) {
	.card__date {
		font-size: .5rem;
		letter-spacing: 1px;
		margin-top: .5rem
	}
}
.card__title {
	width: 100%;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color;
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s
}
@media (min-width: 640px) {
	.card__title {
		padding-right: 1.5rem
	}
}
.card__inner:hover .card__title {
	color: #d0043c
}
.card--video .card__img:after,
.card--video .card__img:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 3.5rem;
	height: 3.5rem;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}
@media (max-width: 639.98px) {
	.card--video .card__img:after,
	.card--video .card__img:before {
		width: 3rem;
		height: 3rem
	}
}
.card--video .card__img:before {
	background-color: #d0043c;
	z-index: 2
}
.card--video .card__img:after {
	width: 1.5rem;
	height: 1.5rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 12l-8 8V4l8 8z' fill='%23fff'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 3
}
.card--video:hover .card__img:after,
.card--video:hover .card__img:before {
	opacity: 0
}
.card__tip {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	padding: 1rem 1.5rem;
	background-color: #d0043c;
	color: #fff;
	z-index: 1
}
[data-animate-card] .card__tip {
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: -webkit-clip-path;
	transition-property: -webkit-clip-path;
	-o-transition-property: clip-path;
	transition-property: clip-path;
	transition-property: clip-path, -webkit-clip-path;
	-webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
	clip-path: polygon(0 0, 0 0, 0 100%, 0 100%)
}
[data-animate-card].transition-end .card__tip {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}
.card__description {
	width: 100%;
	color: #101010;
	margin-top: 1rem;
	display: block;
	display: -webkit-box;
	font-size: .75rem;
	max-height: 3.375rem;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.card__description {
		font-size: .75rem
	}
}
@media (min-width: 640px) {
	.card__description {
		padding-right: 1.5rem;
		margin-top: 1.5rem;
		display: block;
		display: -webkit-box;
		font-size: .875rem;
		max-height: 3.9375rem;
		line-height: 1.5;
		overflow: hidden;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3
	}
}
.card__action {
	margin-top: 1.5rem
}
.card .link-action:hover {
	color: #d0043c
}
.card .link-action:hover .link-action__text {
	opacity: 1
}
/* --block card */
/* block main slider */
.nav-arrows.nav-arrows--default {
	display: inline-flex;
	gap: 24px;
}
.nav-arrows__button,
.nav-arrows__pause {
	background: none;
	border: none;
}
.nav-arrows__pause,
.nav-arrows__arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
}
@media (min-width: 640px) {
	.hero-main .nav-arrows__button svg path {
		stroke: rgba(255, 255, 255, 0.8);
	}
	.hero-main .nav-arrows__button:hover svg path {
		stroke: rgba(255, 255, 255, 1.0);
	}
	.hero-main .nav-arrows__button:disabled svg path {
		stroke: rgba(255, 255, 255, 0.4);
	}
	.hero-main .nav-arrows__pause svg path {
		fill: rgba(255, 255, 255, 0.8);
		stroke: rgba(255, 255, 255, 0.8);
	}
	.hero-main .nav-arrows__pause:hover svg path {
		fill: rgba(255, 255, 255, 1);
		stroke: rgba(255, 255, 255, 1);
	}
}
.hero-main,
.main-slider {
	position: relative
}
.main-slider {
	width: 100%;
	height: 56vw;
	/*
	background-color: #efefef;
	*/
	z-index: 4;
	overflow: hidden
}
@media (min-width: 990px) {
	.main-slider {
		max-height: 100vh;
		min-height: 37.5rem
	}
}
@media (max-width: 639.98px) {
	.main-slider {
		height: 72.8vw
	}
	.main-slider:not(.main-slider--not-slider) {
		height: calc(72.8vw + 3rem);
		padding-bottom: 4rem
	}
}
.main-slider:not(.main-slider--not-slider) {
	cursor: -webkit-grab;
	cursor: grab
}
.main-slider:active:not(.main-slider--not-slider) {
	cursor: -webkit-grabbing;
	cursor: grabbing
}
.main-slider.main-slider--not-slider + .main-slider-controls .main-slider-pagination {
	display: none;
}
.main-slider__canvas {
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 56vw;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	-o-transition-property: opacity, transform;
	transition-property: opacity, transform;
	transition-property: opacity, transform, -webkit-transform;

	z-index: 2;
}
@media (max-width: 639.98px) {
	.main-slider__canvas {
		width: 130%;
		left: -20%
	}
	.main-slider:not(.main-slider--not-slider) .main-slider__canvas {
		height: calc(100% - 4rem)
	}
	.main-slider--not-slider .main-slider__canvas {
		height: 100%
	}
}
.main-slider__canvas--loaded {
	opacity: 1
}
.main-slider__slides-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, .2);
	opacity: 0
}
.main-slider-controls {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto
}
@media (min-width: 640px) {
	.main-slider-controls:before {
		position: absolute;
		left: -50vw;
		bottom: 0;
		height: 100%;
		width: 50vw;
		content: "";
		background-color: #fff
	}
}
@media (max-width: 639.98px) {
	.main-slider--not-slider .main-slider-controls {
		display: none
	}
}
.main-slider-info {
	position: relative;
	z-index: 4;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	background-color: #fff;
	height: 9.33333vw
}
@media (max-width: 639.98px) {
	.main-slider-info {
		padding-left: 1rem;
		padding-right: 1rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.main-slider-info {
		padding-left: 2rem;
		padding-right: 2rem
	}
}
@media (min-width: 990px) {
	.main-slider-info {
		padding-left: 3rem;
		padding-right: 3rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.main-slider-info {
		width: calc(75% - 1rem);
		min-width: calc(75% - 1rem)
	}
}
@media (min-width: 990px) {
	.main-slider-info {
		width: calc(75% - 1.5rem);
		min-width: calc(75% - 1.5rem);
		max-height: 16.66667vh
	}
}
@media (max-width: 639.98px) {
	.main-slider-info {
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
		height: 4rem
	}
}
.main-slider-info__title {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	color: rgba(16, 16, 16, .4);
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden
}
.main-slider-info__title a {
	background-size: 100% 1px;
	background-position: 0 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
	background-image: -o-linear-gradient(currentColor, currentColor);
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.main-slider-info__title a.focus-visible,
.main-slider-info__title a:hover {
	background-position: 100% 100%;
	background-size: 0 1px
}
@media (max-width: 639.98px) {
	.main-slider-info__title {
		display: none
	}
}
.main-slider-nav {
	float: right;
	width: 35%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding-right: 3rem;
	position: relative;
	z-index: 4
}
@media (max-width: 989.98px) {
	.main-slider-nav {
		padding-right: 2rem
	}
}
@media (max-width: 639.98px) {
	.main-slider-nav {
		padding-right: 1rem;
		background-color: #fff
	}
}
@media (min-width: 640px) {
	.main-slider-nav.dark .nav-arrows__arrow {
		color: #101010
	}
}
@media (min-width: 640px) {
	.main-slider-nav.white .nav-arrows__arrow {
		color: #fff
	}
}
.main-slider-pagination {
	width: 35%
}
@media (min-width: 990px) {
	.main-slider-pagination {
		padding-right: 1.5rem
	}
}
.main-slider-pagination__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 6rem;
	margin-left: -.25rem;
	margin-right: -.25rem
}
.main-slider-pagination__el {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 1.5rem;
	padding: .625rem .25rem;
	cursor: pointer;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
.main-slider-pagination__el-inner {
	width: 100%;
	height: 2px;
	background-color: rgba(16, 16, 16, .22);
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: background;
	-o-transition-property: background;
	transition-property: background
}
.main-slider-pagination__el.active {
	pointer-events: none
}
.main-slider-pagination__el.active .main-slider-pagination__el-inner,
.main-slider-pagination__el:hover .main-slider-pagination__el-inner {
	background-color: #101010
}
.main-slider-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	/*visibility: hidden;*/
	color: #fff;
	padding-top: 15vh
}
.main-slider-slide::before {
	content: "";
	position: absolute;
	z-index: 4;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 990px) {
	.main-slider-slide {
		padding-top: 7.5rem
	}
}
@media (max-width: 989.98px) {
	.main-slider-slide {
		padding-top: 7.5rem
	}
}
@media (max-width: 639.98px) {
	.main-slider-slide {
		padding-top: 5rem
	}
}



.main-slider-slide.dark {
	color: #101010
}
.swiper-slide-active .main-slider-slide {
	visibility: visible
}
.swiper-slide {
	visibility: visible
}
.swiper-slide-active .main-slider-slide .factor {
	display: block
}
.main-slider-slide__content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* width: 100%; */
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
	z-index: 4
}
@media (max-width: 639.98px) {
	.main-slider-slide__content {
		padding-left: 1rem;
		padding-right: 1rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.main-slider-slide__content {
		padding-left: 2rem;
		padding-right: 2rem
	}
}
@media (min-width: 990px) {
	.main-slider-slide__content {
		padding-left: 3rem;
		padding-right: 3rem
	}
}
.main-slider-slide__img {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 3;
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	min-height: 39.375rem;
	pointer-events: none;
	object-fit: cover;
}
@media (max-width: 989.98px) {
	.main-slider-slide__img {
		max-height: 37.5rem;
		bottom: 1.875rem
	}
}
@media (max-width: 639.98px) {
	.main-slider-slide__img {
		max-height: 20rem;
		min-height: 20rem;
		bottom: 2.5rem
	}
}
.main-slider-slide__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}
@media (max-width: 989.98px) {
	.main-slider-slide__img img {
		-o-object-fit: cover;
		object-fit: cover
	}
}
.main-slider-slide__main {
	width: 70%;
	pointer-events: none
}
.main-slider-slide__main a,
.main-slider-slide__main button {
	pointer-events: auto
}
@media (max-width: 989.98px) {
	.main-slider-slide__main {
		width: 100%
	}
}
@media (max-width: 639.98px) {
	.main-slider-slide__main {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
}
.main-slider-slide__fact {
	width: 30%;
	margin-top: 1.25rem;
	pointer-events: none
}
@media (max-width: 989.98px) {
	.main-slider-slide__fact {
		display: none
	}
}
.main-slider-slide__fact .factor {
	margin-bottom: 1rem
}
.main-slider-slide__title {
	max-width: 41.875rem
}
@media (min-width: 990px) {
	.main-slider-slide__title:first-child {
		padding-top: 2.5rem
	}
}
.main-slider-slide__subtitle {
	max-width: 41.875rem;
	margin-bottom: 1rem;
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 1.125rem;
	line-height: 1.4;
	font-weight: 500;
	text-decoration: underline
}
@media (max-width: 639.98px) {
	.main-slider-slide__subtitle {
		font-size: 1rem
	}
}
.main-slider-slide__subtitle-text {
	opacity: 1
}
.main-slider-slide__text {
	max-width: 22.125rem;
	margin-top: 2rem;
	font-size: .875rem;
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	line-height: 1.5;
	font-weight: 500
}
@media (min-width: 640px) {
	.main-slider-slide__text {
		font-size: 1rem
	}
}
.main-slider-slide__text p {
	margin-bottom: 1rem
}
@media (min-width: 640px) {
	.main-slider-slide__text p {
		margin-bottom: 1.5rem
	}
}
@media (max-width: 989.98px) {
	.main-slider-slide__text {
		display: none
	}
}
@media (max-width: 639.98px) {
	.main-slider-slide__text {
		margin-top: 1.5rem
	}
}
.main-slider-slide__actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 1.5rem;
	pointer-events: auto
}
@media (max-width: 639.98px) {
	.main-slider-slide__actions {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch
	}
}
@media (min-width: 640px) {
	.main-slider-slide__actions {
		margin-top: 2.5rem
	}
}
@media (min-width: 990px) {
	.main-slider-slide__title + .main-slider-slide__actions {
		margin-top: 4rem
	}
}
@media (max-width: 639.98px) {
	.main-slider-slide__action .btn {
		width: 100%
	}
}
.main-slider-slide__action:not(:last-child) {
	margin-bottom: 1.5rem
}
@media (min-width: 640px) {
	.main-slider-slide__action:not(:last-child) {
		margin-right: 2.5rem
	}
}
@media (max-width: 639.98px) {
	.main-slider-slide__action--mob-hide {
		display: none
	}
}
.main-slider-slide__title:first-child {
	padding-top: 4.5rem;
}
/* --block main slider */
/* --- */
.factor__number {
	display: inline-block;
	white-space: nowrap;
	font-size: 0
}
.factor__number-adornment,
.factor__number-value {
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 2.5rem;
	line-height: 1.34;
	font-weight: 500
}
@media (max-width: 639.98px) {
	.factor__number-adornment,
	.factor__number-value {
		font-size: 1.375rem
	}
}
@media (min-width: 640px) {
	.factor__number-adornment,
	.factor__number-value {
		font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
		font-size: 3.5rem !important;
		line-height: 1.15;
		font-weight: 500
	}
}
@media (min-width: 640px) and (max-width: 639.98px) {
	.factor__number-adornment,
	.factor__number-value {
		font-size: 1.5rem
	}
}
.factor__number:not(:last-child) {
	margin-right: .375rem
}
.factor__text {
	max-width: 17.125rem
}
@media (min-width: 640px) {
	.factor__text {
		margin-bottom: .5rem
	}
}
@media (max-width: 639.98px) {
	.factor__text {
		margin-bottom: 3px
	}
	.factor__text--space {
		margin-bottom: .4375rem
	}
}
.factor__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.factor__prefix {
	margin-right: .5rem
}
.factor__prefix,
.factor__suffix {
	-ms-flex-item-align: end;
	align-self: flex-end
}
.factor__suffix {
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
	margin-bottom: .75rem
}
@media (max-width: 639.98px) {
	.factor__suffix {
		font-size: .75rem;
		-ms-flex-item-align: end;
		align-self: flex-end;
		margin-bottom: 2px
	}
}
.factor__suffix--large {
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 2.5rem;
	line-height: 1.34;
	font-weight: 500
}
@media (max-width: 639.98px) {
	.factor__suffix--large {
		font-size: 1.375rem
	}
}
@media (min-width: 640px) {
	.factor__suffix--large {
		font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
		font-size: 3.5rem;
		line-height: 1.15;
		font-weight: 500
	}
}
@media (min-width: 640px) and (max-width: 639.98px) {
	.factor__suffix--large {
		font-size: 1.5rem
	}
}
/* --- */
/* block slider */
.block-slider {
	font-size: 0
}
.block-slider__wrap {
	display: block
}
.block-slider__img {
	height: 600px;
	object-fit: cover;
	object-position: center center;
}
.block-slider__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 2rem
}
@media (max-width: 639.98px) {
	.block-slider__img {
		height: 11.25rem;
	}
}
@media (min-width: 990px) {
	.block-slider__head {
		margin-bottom: 4rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.block-slider__head {
		margin-bottom: 3rem
	}
}
.block-slider__head .block-slider__link {
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.block-slider__head .block-slider__link {
		font-size: .75rem
	}
}
.block-slider__canvas {
	position: relative;
	z-index: 1;
	cursor: -webkit-grab;
	cursor: grab;
}
.block-slider__canvas:active {
	cursor: -webkit-grabbing;
	cursor: grabbing
}
.block-slider__canvas-wrapper {
	overflow: hidden
}
[data-no-slider] .block-slider__canvas {
	cursor: auto
}
.block-slider .swiper-container {
	position: relative;
	z-index: 2
}
.block-slider .swiper-container.disabled .block-slider__bullet,
.block-slider .swiper-container.disabled .nav-arrows {
	pointer-events: none;
	cursor: not-allowed
}
.block-slider .swiper-wrapper {
	height: auto
}
.block-slider__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden
}
.block-slider__slide.swiper-slide-active {
	opacity: 1 !important;
	z-index: 10 !important
}
.block-slider__slide:not(.swiper-slide-active):not(.prev-active-slide) {
	z-index: 0 !important
}
.block-slider__slide-image {
	height: 37.5rem;
	position: relative
}
.block-slider__slide-image .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	background-size: cover
}
.block-slider__slide-content {
	position: relative;
	z-index: 2;
	margin-top: -100px;
}
@media (max-width: 639.98px) {
	.swiper-slide-active .block-slider__slide-content [data-animate-lines] {
		opacity: 1 !important
	}
	.block-slider__slide-content {
		margin-top: unset;
	}
}
.block-slider__slide-content-wrap {
	padding-top: 1.5rem;
	background-color: #fff;
	gap: 5;
}
@media (min-width: 990px) {
	.block-slider__slide-content-wrap {
		padding-top: 4rem;
		width: 75%;
		min-height: 15rem
	}
}
@media (min-width: 640px) {
	.block-slider__slide-content-wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.block-slider__slide-content-wrap {
		padding-top: 3rem
	}
}
@media (max-width: 639.98px) {
	.block-slider__slide-content-wrap {
		opacity: 1
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.block-slider--content-wide .block-slider__slide-content-wrap {
		display: block;
		padding-right: 4rem
	}
}
@media (max-width: 989.98px) {
	.block-slider__slide-content-wrap.has-factors {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
}
.block-slider__slide-content-head {
	-webkit-transform: translateY(40px);
	-ms-transform: translateY(40px);
	transform: translateY(40px);
	-webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
	transition: opacity 1s ease, -webkit-transform 1s ease;
	-o-transition: transform 1s ease, opacity 1s ease;
	transition: transform 1s ease, opacity 1s ease;
	transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
	-ms-flex-negative: 0;
	flex-shrink: 0
}
.block-slider__slide-content-head > :last-child {
	margin-bottom: 0
}
.swiper-slide-active .block-slider__slide-content-head {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0)
}
@media (max-width: 639.98px) {
	.block-slider__slide-content-head {
		margin-bottom: 1.5rem;
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}
@media (min-width: 640px) {
	.block-slider__slide-content-head {
		max-width: 33.3333%;
		width: 100%;
		padding-right: 2rem
	}
}
@media (min-width: 990px) {
	.block-slider__slide-content-head {
		margin-top: -.375rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.block-slider--content-wide .block-slider__slide-content-head {
		max-width: none;
		padding-right: 0
	}
	.block-slider--content-wide .block-slider__slide-content-head:not(:last-child) {
		margin-bottom: 2.5rem
	}
}
.block-slider__slide-content-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-transform: translateY(40px);
	-ms-transform: translateY(40px);
	transform: translateY(40px);
	-webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
	transition: opacity 1s ease, -webkit-transform 1s ease;
	-o-transition: transform 1s ease, opacity 1s ease;
	transition: transform 1s ease, opacity 1s ease;
	transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease
}
@media (min-width: 640px) {
	[data-swiper-slide-index] .block-slider__slide-content-text {
		opacity: 0 !important
	}
}
.swiper-slide-active[data-swiper-slide-index] .block-slider__slide-content-text {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0)
}
@media (min-width: 640px) {
	.swiper-slide-active[data-swiper-slide-index] .block-slider__slide-content-text {
		opacity: 1 !important
	}
}
@media (min-width: 990px) {
	.block-slider__slide-content-text {
		max-width: 55%;
		width: 100%
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.block-slider__slide-content-text {
		max-width: 66.6666%
	}
}
@media (max-width: 639.98px) {
	.block-slider__slide-content-text {
		max-width: 90%;
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.block-slider--content-wide .block-slider__slide-content-text {
		max-width: none
	}
}
.block-slider__slide-content-text h4 {
	display: block;
	display: -webkit-box;
	font-size: 1.125rem;
	max-height: 7.59375rem;
	line-height: 1.35;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5
}
@media (min-width: 640px) {
	.block-slider__slide-content-text h4 {
		display: block;
		display: -webkit-box;
		font-size: 1.5rem;
		max-height: 11.1rem;
		line-height: 1.35;
		overflow: hidden;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 4
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.block-slider__slide-content-wrap.has-factors .block-slider__slide-content-text {
		max-width: 75%
	}
}
@media (max-width: 639.98px) {
	.block-slider__slide:first-child:last-child .block-slider__slide-content-text {
		max-width: none
	}
}
.block-slider__slide-content-alt {
	opacity: .4;
	padding-bottom: 2rem
}
.block-slider__slide-content-link {
	margin-top: 2rem;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	-o-transition-property: transform, opacity;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform;
	-webkit-transition-duration: 1s;
	-o-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-delay: .5s;
	-o-transition-delay: .5s;
	transition-delay: .5s;
	-webkit-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	-o-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
	transition-timing-function: cubic-bezier(.23, 1, .32, 1)
}
@media (max-width: 639.98px) {
	.block-slider__slide-content-link {
		margin-top: 1.5rem
	}
}
@media (min-width: 640px) {
	.block-slider__slide-content-link {
		opacity: 0;
		-webkit-transform: translateY(30px);
		-ms-transform: translateY(30px);
		transform: translateY(30px)
	}
	.block-slider__slide-content-text.animate .block-slider__slide-content-link,
	.swiper-slide-active .block-slider__slide-content-link {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}
	.swiper-slide-active .block-slider__slide-content-link {
		-webkit-animation: fadeInUp 1s ease-in-out;
		animation: fadeInUp 1s ease-in-out
	}
	@-webkit-keyframes fadeInUp {
		0% {
			-webkit-transform: translateY(30px);
			transform: translateY(30px);
			opacity: 0
		}
		to {
			-webkit-transform: translateY(0);
			transform: translateY(0);
			opacity: 1
		}
	}
	@keyframes fadeInUp {
		0% {
			-webkit-transform: translateY(30px);
			transform: translateY(30px);
			opacity: 0
		}
		to {
			-webkit-transform: translateY(0);
			transform: translateY(0);
			opacity: 1
		}
	}
}
.block-slider__slide-content-title {
	margin-bottom: 1rem
}
.block-slider__slide-content.has-alt .block-slider__slide-content-wrap {
	padding-top: 1.5rem
}
@media (min-width: 640px) {
	.block-slider__slide-content.has-alt .block-slider__slide-content-wrap {
		padding-top: 2rem
	}
}
@media (min-width: 990px) {
	.block-slider__slide-content.has-alt .block-slider__slide-content-wrap {
		padding-top: 2.5rem;
		min-height: 8.9375rem
	}
}
.block-slider .nav-arrows {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 11
}
@media (max-width: 639.98px) {
	.block-slider .nav-arrows {
		display: none
	}
}
.block-slider .nav-arrows__button.swiper-button-disabled,
.block-slider .swiper-wrapper.disabled .nav-arrows .nav-arrows__button {
	pointer-events: none
}
.block-slider__pagination {
	position: absolute;
	bottom: .75rem;
	left: 0;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	pointer-events: none
}
@media (max-width: 639.98px) {
	.block-slider__pagination {
		display: none
	}
}
.block-slider__pagination > :last-child {
	margin-right: 0
}
.block-slider__bullet {
	position: relative;
	pointer-events: auto;
	display: block;
	width: 1rem;
	height: 2px;
	padding: 0;
	font-size: 0;
	line-height: .75rem;
	text-align: center;
	border: none;
	background-color: #101010;
	cursor: pointer;
	margin-right: .5rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	opacity: .2;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}
.block-slider__bullet:before {
	content: "";
	position: absolute;
	display: block;
	top: -.625rem;
	right: -.625rem;
	left: -.625rem;
	bottom: -.625rem
}
.block-slider__bullet.is-active {
	opacity: 1;
	cursor: default
}
.block-slider__bullet.is-active:after {
	background-color: rgba(0, 0, 0, 0)
}
.block-slider__bullet:hover {
	opacity: 1
}
.block-slider__bullet:focus {
	outline: none
}
.block-slider-m {
	display: none;
	margin-right: -1rem
}
@media (max-width: 639.98px) {
	.block-slider-m {
		display: block
	}
}
.block-slider-m .block-slider__slide {
	width: calc(100% - 1rem)
}
.block-slider-m .swiper-container {
	padding-right: 1rem
}
.block-slider__slide-img {
	height: 11.25rem
}
.block-slider__slide-img .image {
	height: 100%
}
.block-slider__slide-img-tall {
	height: 13.125rem
}
@media (min-width: 990px) {
	.block-slider__factors {
		max-width: 33.3333%;
		width: 100%
	}
	.block-slider__factors > :last-child {
		margin-bottom: 0
	}
}
@media (max-width: 989.98px) {
	.block-slider__factors {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		margin-top: 2.5rem
	}
}
.block-slider__factor {
	margin-bottom: 2rem;
	padding-right: 2rem
}
.block-slider__factor .factor {
	max-width: 13.75rem
}
@media (max-width: 989.98px) {
	.block-slider__factor {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
		width: 100%
	}
	.block-slider__factor:nth-child(odd):nth-last-child(-n+2),
	.block-slider__factor:nth-child(odd):nth-last-child(-n+2) ~ .block-slider__factor {
		margin-bottom: 0
	}
}
/* .block-slider .swiper-container.disabled .block-slider__bullet, .block-slider .swiper-container.disabled .nav-arrows {
    pointer-events: none;
    cursor: not-allowed
} */
.swiper-pagination {
	display: flex;
}
.swiper-pagination-bulle,
.swiper-pagination-bullet-active {
	all: revert;
}
.swiper-pagination-bullet {
	position: relative;
	pointer-events: auto;
	display: block !important;
	width: 1rem !important;
	height: 2px !important;
	padding: 0;
	font-size: 0;
	line-height: .75rem;
	text-align: center;
	border: none !important;
	background-color: #101010 !important;
	cursor: pointer;
	margin-right: .5rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	opacity: .2;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}
.swiper-pagination-bullet:before {
	content: "";
	position: absolute;
	display: block;
	top: -.625rem;
	right: -.625rem;
	left: -.625rem;
	bottom: -.625rem
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
	cursor: default
}
.swiper-pagination-bullet.swiper-pagination-bullet-active:after {
	background-color: rgba(0, 0, 0, 0) !important;
}
.swiper-pagination-bullet:hover {
	opacity: 1
}
.swiper-pagination-bullet:focus {
	outline: none
}
/* --block slider */
/* block contacts */
.contacts-table {
	margin-bottom: 2px
}
.contacts-table__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 3.5rem
}
@media (max-width: 989.98px) {
	.contacts-table__top {
		margin-bottom: 2.5rem
	}
}
.contacts-table__table {
	width: 100%
}
.contacts-table__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background-color: #efeff2;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem
}
.contacts-table__row:not(:last-child) {
	margin-bottom: 2px
}
@media (max-width: 989.98px) {
	.contacts-table__row {
		padding: 2.5rem
	}
}
@media (max-width: 639.98px) {
	.contacts-table__row {
		padding: 1.5rem
	}
}
.contacts-table__cell {
	width: 25%;
	padding-right: 3rem
}
@media (max-width: 989.98px) {
	.contacts-table__cell {
		width: 100%
	}
}
@media (min-width: 990px) {
	.contacts-table__cell {
		padding-top: .375rem
	}
}
.contacts-table__cell-heading {
	width: 50%;
	padding-top: 0
}
@media (min-width: 990px) {
	.contacts-table__cell-heading {
		padding-left: 3rem
	}
}
@media (max-width: 989.98px) {
	.contacts-table__cell-heading {
		width: 100%;
		margin-bottom: 2rem
	}
}
.contacts-table__contact:not(:first-child) {
	margin-top: 1.5rem
}
.contacts-table__contact-link {
	margin-top: .5rem
}
.map-search-box {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
.map-search-box__map {
	flex: 1;
	min-width: 0;
	max-width: calc(0.0625rem * 840);
	margin-right: auto;
	padding-right: 16px;
}
.map-search-box .tabs__head {
	width: auto;
	flex: 0 auto;
}
.map-search-box .RT_section__location {
	/* margin-top: 0 !important; */
}
/* .map-search-box .RT_form {
	width: 100%;
	padding: 2.5rem 2rem 2.5rem 2rem;
} */
.map-search-box .RT_form .btn {
	padding: .8125rem 4rem;
}
.map-search-box .RT_form__field {
	position: relative;
	width: 100%;
	margin-right: 0;
}
.map-search-box__list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.map-search-box__list-item {
	padding: 24px 28px;
	background: rgba(239, 239, 242, 1);
}
.map-search-box__head {
	margin-bottom: calc(0.0625rem * 16);
}
.map-search-box__row {
	display: flex;
	flex-wrap: wrap;
	gap: calc(0.0625rem * 16);
}
.map-search-box__row:not(:last-child) {
	margin-bottom: calc(0.0625rem * 23);
}
.map-search-box__row--gap {
	margin-top: calc(0.0625rem * 32);
	gap: calc(0.0625rem * 8);
}
.map-search-box__btn {
	color: #101010;
	font-size: calc(0.0625rem * 16);
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
	padding: calc(0.0625rem * 8) calc(0.0625rem * 16);
	background: #E1E1E1;
}
.map-search-box__label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.map-search-box__label-ico {
	margin-right: calc(0.0625rem * 8);
	display: flex;
}
.map-search-box__label-text {
	color: #101010;
	font-size: calc(0.0625rem * 15);
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	flex: 1;
	min-width: 0;
}
.map-search-box__label-text a,
a.map-search-box__label-text {
	font-size: calc(0.0625rem * 15) !important;
}
@media (max-width: 1199px) {
	.map-search-box__map {
		flex: 1 0 100%;
		width: 100%;
		max-width: 100%;
		padding-right: 0;
		padding-bottom: calc(0.0625rem * 15);
	}
}
@media (max-width: 639.98px) {
	.map-search-box .tabs__head {
		width: 100%;
	}
}
.text-link--bold {
	font-weight: 500;
}
.tabs-content {
	position: relative;
	width: 100%;
	padding-top: 4rem;
	padding-bottom: 5rem;
	background-color: #fff
}
@media (max-width: 989.98px) {
	.tabs-content {
		padding-top: 3rem;
		padding-bottom: 3rem
	}
}
@media (max-width: 639.98px) {
	.tabs-content {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem
	}
}
.tabs-content:after,
.tabs-content:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: #fff
}
.tabs-content:after {
	left: 100%
}
/* --block contacts */
/* NO hero-slider + breadcrumbs */
.hero {
	background-color: #efeff2;
	padding-top: 6.0625rem;
	padding-bottom: 2.5rem
}
@media(min-width:990px) {
	.hero {
		/*min-height: 640px;*/
	}
}
.hero .breadcrumbs {
	margin-bottom: .875rem
}
.hero__factoids {
	margin-top: 1.5rem
}
@media (min-width: 640px) {
	.hero {
		padding-top: 9.8125rem;
		padding-bottom: 9.8125rem
	}
	.hero .breadcrumbs {
		margin-bottom: 1rem
	}
	.hero__inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
	.hero .breadcrumbs {
		width: 100%
	}
	.hero .breadcrumbs,
	.hero__title {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 58.333%;
	}
	/*.hero__title {
		width: 66.66667%
	}*/
	.hero__factoids {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: 25%;
		margin-left: auto;
		margin-top: -1.25rem
	}
}
@media (min-width: 990px) {
	.hero {
		padding-bottom: 10.75rem
	}
	/*.hero__title {
		width: 58.33333%
	}*/
}
@media (min-width: 640px) {
	.hero + .tabs-link {
		margin-top: -6.8125rem
	}
}
@media (min-width: 990px) {
	.hero + .tabs-link {
		margin-top: -7.2375rem;
	}
}
@media (min-width: 1299px) {
	.hero + .tabs-link {
		margin-top: -7.2375rem;
	}
}
.breadcrumbs__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
@media (max-width: 989.98px) {
	.breadcrumbs__list {
		overflow-x: auto
	}
}
@media (min-width: 990px) {
	.breadcrumbs__list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
}
.breadcrumbs__crumb {
	position: relative;
	display: block;
	/*overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	max-width: 450px;*/
}
@media (max-width: 639.98px) {
	.breadcrumbs__crumb {
		padding-left: 1.125rem
	}
}
@media (min-width: 640px) {
	.breadcrumbs__crumb {
		padding-left: 1.625rem
	}
}
@media (min-width: 990px) {
	.breadcrumbs__crumb {
		white-space: nowrap;
		overflow: hidden;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis
	}
}
.breadcrumbs__crumb:first-child {
	padding-left: 0
}
.breadcrumbs__crumb + .breadcrumbs__crumb:before {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: .3125rem;
	display: block;
	width: .5rem;
	height: 1px;
	line-height: inherit;
	background-color: currentColor;
	opacity: .5;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}
@media (min-width: 990px) and (max-width: 1099px) {
	.breadcrumbs__crumb + .breadcrumbs__crumb:before {
		top: calc(50% - 2px)
	}
}
@media (min-width: 640px) {
	.breadcrumbs__crumb + .breadcrumbs__crumb:before {
		left: .5rem;
		width: .625rem
	}
}
.breadcrumbs__crumb[aria-current=page] .breadcrumbs__text {
	opacity: 1
}
.breadcrumbs__text {
	display: block;
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis
}
.breadcrumbs__button,
.breadcrumbs__link {
	color: #101010;
	opacity: .5;
	text-decoration: none !important;
	cursor: pointer;
	-webkit-transition: opacity .3s ease, color .3s ease;
	-o-transition: opacity .3s ease, color .3s ease;
	transition: opacity .3s ease, color .3s ease
}
.breadcrumbs__button:hover,
.breadcrumbs__link:hover {
	opacity: 1
}
.breadcrumbs__button {
	padding-right: 1.25rem;
	position: relative
}
.breadcrumbs__button-arrow {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	color: inherit;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	-o-transition: transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease
}
.breadcrumbs__button-arrow svg {
	display: block;
	fill: currentColor;
	width: 1rem;
	height: 1rem
}
@media (min-width: 640px) {
	.breadcrumbs__button-arrow svg {
		width: 1.125rem;
		height: 1.125rem
	}
}
.breadcrumbs__button[aria-expanded=true] .breadcrumbs__button-arrow {
	-webkit-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg)
}
/* --NO hero-slider + breadcrumbs */
/* map */
.map-box {
	position: relative
}
@media (min-width: 990px) {
	.map-box__top {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.map-box__top {
		max-width: 66.6666%
	}
}
@media (max-width: 989.98px) {
	.map-box__top > :last-child {
		margin-bottom: 0
	}
}
@media (min-width: 990px) {
	.map-box__heading {
		max-width: 41.6666%;
		width: 100%;
		margin-right: 8.3333%
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.map-box__heading {
		margin-bottom: 2rem
	}
}
@media (max-width: 639.98px) {
	.map-box__heading {
		margin-bottom: 1.5rem
	}
}
@media (min-width: 990px) {
	.map-box__description {
		max-width: 33.3333%
	}
	.map-box__description:not(:first-child) {
		padding-top: 1.5rem
	}
}
.map-box__container {
	position: relative
}
.map-box__frame {
	background-color: #efefef;
	height: 25rem
}
.map-box[data-map-box-contacts] .map-box__frame {
	height: 32rem
}
.map-box__frame--bottom {
	height: 32rem
}
@media (min-width: 990px) {
	.map-box__frame {
		height: 37.5rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.map-box__frame {
		height: 43.75rem
	}
	.map-box__frame--bottom {
		height: 37.5rem
	}
}
.map-box--outline .map-box__frame {
	border-top: 2px solid #efeff2;
	border-bottom: 2px solid #efeff2
}
@media (min-width: 990px) {
	.map-box__controls {
		right: 3rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.map-box__controls {
		right: 2rem
	}
}
@media (min-width: 640px) {
	.map-box__controls {
		position: absolute;
		top: 50%;
		z-index: 1;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%)
	}
}
@media (max-width: 639.98px) {
	.map-box__controls {
		display: none
	}
}
.map-box__legend {
	position: absolute;
	background-color: #fff;
	padding: 1.5rem 1rem 2rem;
	bottom: 0;
	left: 0;
	width: 100%
}
@media (min-width: 990px) {
	.map-box__legend {
		width: 37.875rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.map-box__legend {
		width: 75%
	}
}
@media (min-width: 640px) {
	.map-box__legend {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 2rem 3rem 1.5rem
	}
}
.map-box__legend > :last-child {
	margin-right: 0
}
.map-box__legend-item {
	position: relative;
	padding-left: 1rem
}
@media (min-width: 990px) {
	.map-box__legend-item {
		min-width: 11.875rem;
		margin-right: 2rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.map-box__legend-item {
		margin-right: 2.5rem
	}
}
@media (min-width: 640px) {
	.map-box__legend-item {
		margin-bottom: 1rem
	}
}
@media (max-width: 639.98px) {
	.map-box__legend-item:not(:last-child) {
		margin-bottom: 1rem
	}
}
.map-box__legend-item:before {
	position: absolute;
	top: .3125rem;
	left: 0;
	width: .5rem;
	height: .5rem;
	background-color: currentColor;
	content: ""
}
.map-box__legend-text {
	color: rgba(16, 16, 16, .4)
}
.map-box__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 73.2%;
	background-color: #d0043c;
	color: #fff;
	padding-top: 1.5rem;
	padding-bottom: 4rem;
	position: relative;
	z-index: 100
}
@media (max-width: 639.98px) {
	.map-box__bottom {
		padding-right: 1rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.map-box__bottom {
		padding-right: 2rem
	}
}
@media (min-width: 990px) {
	.map-box__bottom {
		height: 12rem;
		margin-top: -6rem
	}
}
@media (max-width: 989.98px) {
	.map-box__bottom {
		height: auto;
		width: 100%;
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
}
.map-box__bottom-heading {
	width: 24%;
	padding-right: 5rem
}
@media (max-width: 989.98px) {
	.map-box__bottom-heading {
		padding-right: 2.5rem
	}
}
@media (max-width: 639.98px) {
	.map-box__bottom-heading {
		width: 100%;
		margin-bottom: 1.5rem
	}
}
.map-box__bottom-contacts {
	width: 33%;
	padding-right: 5rem
}
.map-box__bottom-adress {
	width: 40%;
	padding-right: 5rem
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.map-box__bottom-adress,
	.map-box__bottom-contacts {
		padding-right: 0;
		padding-left: 2.5rem
	}
}
@media (max-width: 639.98px) {
	.map-box__bottom-adress,
	.map-box__bottom-contacts {
		width: 50%;
		padding-right: 1.5rem
	}
}
/*
.map-box__bottom-contact:not(:last-child) {
	margin-bottom: 1rem
}
*/
/* --map */
/* nice-select */
select {
	display: block;
	width: 100%;
	border: none;
	border-bottom: 2px solid rgba(16, 16, 16, .2);
	border-radius: 0;
	color: #101010;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	opacity: 0
}
@media (max-width: 639.98px) {
	select {
		font-size: .75rem
	}
}
select[data-select-size=default] {
	padding: .75rem 1.5rem .75rem 0
}
@media (max-width: 639.98px) {
	select[data-select-size=default] {
		padding-right: 2.5rem
	}
}
select[data-select-theme=white]:disabled {
	background-color: hsla(0, 0%, 100%, .8)
}
select[data-select-theme=light]:disabled {
	background-color: rgba(239, 239, 242, .8)
}
select:focus {
	outline: none
}
.has-error select,
select:focus,
select:hover {
	border-color: #d0043c
}
.has-error select {
	color: #d0043c
}
[data-select] + .nice-select {
	display: block;
	width: 100%;
	padding-left: 0;
	border: none;
	border-bottom: 2px solid #101010;
	border-radius: 0;
	background-color: rgba(0, 0, 0, 0);
	color: rgba(16, 16, 16, 0.5);
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color, border;
	-o-transition-property: color, border;
	transition-property: color, border;
}
[data-select]:has(option:checked:not(:first-child)) + .nice-select,
[data-select] + .nice-select:hover {
	border-color: #101010;
	color: #101010;
}
[data-select] + .nice-select > span {
	padding: 1.1875rem 1.5rem .75rem 0;
}
.theme-white [data-select] + .nice-select {
	border-bottom-color: #fff;
}
.theme-white [data-select] + .nice-select .current {
	color: rgba(255, 255, 255, 0.5);
}
.theme-white input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}
.theme-white [data-select]:has(option:checked:not(:first-child)) + .nice-select,
.theme-white [data-select] + .nice-select:hover {
	border-color: #fff;
	color: #fff;
}
/* --nice-select */
/* map */
.ymaps3x0--marker-layer {
	width: 100% !important;
	height: 100% !important;
}
.icon-marker {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 32px;
	left: 50%;
	transform: translate(-100%, -100%);
	cursor: pointer;
}
.icon-marker img {
	max-height: 100%;
}
/* --map */
/* modal */
.modal {
	position: relative;
	min-height: 100vh;
	min-height: calc(var(--vh2, 1vh) * 100);
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	background-color: #fff;
	overflow: hidden;
	line-height: 1.5
}
.modal,
.modal .mfp-close {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}
.modal .mfp-close {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	top: 2rem;
	right: 2rem;
	width: 1.5rem;
	height: 1.5rem;
	font-size: 0;
	opacity: 1;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}
@media (min-width: 640px) {
	.modal .mfp-close {
		top: 4rem;
		right: 4rem
	}
}
.modal .mfp-close svg {
	width: 100%;
	height: 100%;
	pointer-events: none
}
.modal .mfp-close:hover {
	opacity: .4
}
.modal--popup {
	width: 30.625rem;
	margin-left: 50%;
	-webkit-transform: translateX(-15.3125rem);
	-ms-transform: translateX(-15.3125rem);
	transform: translateX(-15.3125rem);
	height: auto;
	min-height: auto
}
@media (max-width: 639.98px) {
	.modal--popup {
		width: 18.75rem;
		-webkit-transform: translateX(-9.375rem);
		-ms-transform: translateX(-9.375rem);
		transform: translateX(-9.375rem)
	}
}
.modal--popup .mfp-close {
	top: 1rem;
	right: 1rem
}
.modal--popup .modal__content {
	padding: 5rem 2.5rem 2.5rem
}
@media (max-width: 639.98px) {
	.modal--popup .modal__content {
		padding: 2.5rem 1.5rem 1.5rem
	}
}
.modal--feedback .mfp-close {
	position: absolute;
	top: 1.5rem;
	right: 3rem
}
@media (max-width: 639.98px) {
	.modal--feedback .mfp-close {
		right: 2rem
	}
}
.modal--product .mfp-close {
	position: absolute;
	top: 1.5rem;
	right: 3rem
}
@media (max-width: 639.98px) {
	.modal--product .mfp-close {
		right: 2rem
	}
}
.modal__head {
	display: inline-block;
	-ms-flex-item-align: start;
	align-self: flex-start;
	margin-bottom: 2rem
}
@media (min-width: 640px) {
	.modal__head {
		margin-bottom: 2rem
	}
}
@media (min-width: 990px) {
	.modal__head {
		margin-bottom: 2.5rem
	}
}
.modal--popup .modal__head {
	text-align: center
}
@media (min-width: 990px) {
	.modal--application .modal__head,
	.modal--feedback .modal__head {
		margin-bottom: 2.5rem
	}
}
@media (max-width: 639.98px) {
	.modal--feedback .modal__head {
		max-width: 20rem
	}
}
.modal__description {
	opacity: .4;
	margin-bottom: 3rem;
	max-width: 21.25rem
}
.modal__description[data-animate] {
	opacity: .4
}
@media (max-width: 639.98px) {
	.modal__description {
		margin-bottom: 2rem
	}
}
.modal__product {
	position: relative
}
.modal__scroll-wrapper {
	position: relative;
	margin-right: .5rem;
	padding-right: 13.625rem
}
.modal__scroll-wrapper .ps__rail-y:before {
	background-color: #efefef
}
@media (max-width: 989.98px) {
	.modal__scroll-wrapper {
		padding-right: 2rem
	}
}
@media (max-width: 639.98px) {
	.modal__scroll-wrapper {
		padding-right: 1rem
	}
}
.modal__content {
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	/* justify-content: center; */
	padding: 3.5rem 1rem 2rem;
	position: relative;
	overflow-y: auto;
}
.modal:not(.modal--filter):not(.modal--popup) {
	height: 100vh;
	/*height: calc(var(--vh2, 1vh) * 100);*/
}
.modal--application .modal__content,
.modal--feedback .modal__content {
	padding-right: 0;
	height: 100vh;
	height: calc(var(--vh2, 1vh) * 100)
}
.modal--feedback .modal__content {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}
@media (min-width: 990px) {
	.modal--feedback .modal__content {
		padding-top: 0;
		padding-bottom: 0
	}
	.modal--feedback .modal__content .modal__scroll-wrapper {
		padding-top: 5rem
	}
	.modal--feedback .modal__content .modal__scroll-wrapper .ps__rail-y:before,
	.modal--feedback .modal__content .modal__scroll-wrapper .ps__thumb-y:before {
		top: 1.5rem;
		bottom: 1.5rem
	}
}
.filter .modal--filter .modal__content {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}
@media (min-width: 990px) {
	.filter .modal--filter .modal__content {
		padding-top: 3rem
	}
}
@media (min-width: 990px) {
	.modal--product .modal__content {
		padding-top: 4.5rem
	}
	.modal--product .modal__content .user-text {
		padding-top: 1rem
	}
}
@media (min-width: 640px) {
	.modal__content {
		padding: 4rem 2rem
	}
}
@media (min-width: 990px) {
	.modal__content {
		width: 73.5vw;
		padding: 4rem 0 3rem 9.875rem
	}
}
@media (min-width: 990px) {
	.modal--feedback .modal__content .modal__scroll-wrapper {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
@media (max-width: 989.98px) {
	.modal--application .modal__content {
		padding-top: 3.5rem
	}
}
@media (max-width: 639.98px) {
	.modal--application .modal__content {
		padding-top: 2.5rem
	}
}
@media (max-width: 989.98px) {
	.modal--application .modal__description {
		margin-bottom: 2.5rem
	}
}
@media (max-width: 639.98px) {
	.modal--application .modal__description {
		margin-bottom: 2rem
	}
}
@media (max-width: 989.98px) {
	.modal--application .modal__head {
		margin-bottom: 2rem
	}
}
@media (max-width: 639.98px) {
	.modal--application .modal__head {
		margin-bottom: 1rem
	}
}
.modal--application .mfp-close {
	top: 2.5rem;
	right: 1rem
}
@media (min-width: 640px) {
	.modal--application .mfp-close {
		top: 1.5rem;
		right: 1.5rem
	}
}
@media (min-width: 990px) {
	.modal--application .mfp-close {
		right: 3rem
	}
}
.modal--application .form-layout__items {
	margin-bottom: 2.5rem
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.modal--application .form-layout__items {
		margin-bottom: 5rem
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.modal--application .form-layout__item--no-full-width {
		width: calc(50% - 34px);
		min-width: calc(50% - 34px)
	}
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.modal--application .form-layout__item--tel {
		width: 50%;
		min-width: 50%
	}
}
@media (max-width: 639.98px) {
	.modal--application .form-layout__item--tel {
		width: 100%;
		max-width: 100%
	}
}
@media (max-width: 989.98px) {
	.modal--application .form-layout__item:not(:last-child) {
		margin-bottom: 2.5rem
	}
}
@media (max-width: 639.98px) {
	.modal--application .form-layout__item:not(:last-child) {
		margin-bottom: 1rem
	}
}
/* подправить magnific popup */
@media (max-width: 989.98px) {
	.mfp-wrap {
		overflow-y: auto
	}
}
@media (max-width: 989.98px) and (orientation: landscape) {
	.is-safari .mfp-wrap {
		min-height: 100vh
	}
}
.mfp-container {
	padding: 0
}
.mfp-move-from-left.mfp-bg {
	background: rgba(0, 0, 0, 0)
}
.mfp-move-from-left .mfp-content {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	vertical-align: top
}
.mfp-move-from-left .mfp-with-anim {
	-webkit-transition: -webkit-transform 1s cubic-bezier(.43, 0, .03, 1);
	transition: -webkit-transform 1s cubic-bezier(.43, 0, .03, 1);
	-o-transition: transform 1s cubic-bezier(.43, 0, .03, 1);
	transition: transform 1s cubic-bezier(.43, 0, .03, 1);
	transition: transform 1s cubic-bezier(.43, 0, .03, 1), -webkit-transform 1s cubic-bezier(.43, 0, .03, 1);
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0)
}
.mfp-move-from-left.mfp-removing .mfp-with-anim {
	-webkit-transition: -webkit-transform .7s cubic-bezier(.43, 0, .03, 1);
	transition: -webkit-transform .7s cubic-bezier(.43, 0, .03, 1);
	-o-transition: transform .7s cubic-bezier(.43, 0, .03, 1);
	transition: transform .7s cubic-bezier(.43, 0, .03, 1);
	transition: transform .7s cubic-bezier(.43, 0, .03, 1), -webkit-transform .7s cubic-bezier(.43, 0, .03, 1)
}
.mfp-move-from-left.mfp-ready .mfp-with-anim {
	-webkit-transform: translateZ(0);
	transform: translateZ(0)
}
.mfp-move-from-left.mfp-ready .modal {
	-webkit-box-shadow: 10px 0 20px 0 rgba(0, 0, 0, .1);
	box-shadow: 10px 0 20px 0 rgba(0, 0, 0, .1)
}
.mfp-move-from-left.mfp-removing .mfp-with-anim {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0)
}
.mfp-move-from-left.mfp-removing .modal {
	-webkit-box-shadow: unset;
	box-shadow: unset
}
.mfp-fade-in-up.mfp-bg {
	background: rgba(0, 0, 0, .8);
	opacity: 0;
	-webkit-transition: opacity .15s linear;
	-o-transition: .15s linear opacity;
	transition: opacity .15s linear
}
.mfp-fade-in-up .mfp-container {
	overflow: hidden
}
.mfp-fade-in-up .mfp-content {
	-webkit-transform: translateY(25%);
	-ms-transform: translateY(25%);
	transform: translateY(25%);
	opacity: 0;
	-webkit-transition: .15s ease-in;
	-o-transition: .15s ease-in;
	transition: .15s ease-in;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: opacity, -webkit-transform;
	-o-transition-property: transform, opacity;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform
}
.mfp-fade-in-up.mfp-ready.mfp-bg {
	opacity: 1
}
.mfp-fade-in-up.mfp-ready .mfp-content {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1
}
.mfp-fade-in-up.mfp-removing.mfp-bg {
	opacity: 0
}
.mfp-fade-in-up.mfp-removing .mfp-content {
	-webkit-transform: translateY(25%);
	-ms-transform: translateY(25%);
	transform: translateY(25%);
	opacity: 0
}
.mfp-video .mfp-container {
	padding: 1.875rem;
	max-height: 80vh
}
.mfp-video .mfp-close {
	width: auto
}
/* --modal */
/* form style */
.form-layout__head {
	margin-bottom: 1.5rem
}
.form-layout__heading {
	margin-bottom: 2rem
}
@media (min-width: 990px) {
	.form-layout__heading {
		margin-bottom: 2.5rem
	}
}
.form-layout__item {
	display: block;
	width: 100%;
	margin-bottom: 1.5rem
}
@media (min-width: 640px) {
	.form-layout__item {
		margin-bottom: 3.125rem;
		padding-left: 1rem;
		padding-right: 1rem
	}
}
@media (min-width: 640px) {
	.form-layout__item--no-full-width {
		max-width: 66.666%
	}
	.form-layout__item--no-full-width:nth-last-child(2) {
		margin-bottom: 0
	}
}
@media (min-width: 640px) {
	.form-layout__item--small {
		max-width: 50%
	}
}
.form-layout__item--tel {
	width: 100%
}
@media (min-width: 640px) {
	.form-layout__item--tel {
		max-width: 33.3333%
	}
}
.form-layout__item--link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
@media (min-width: 640px) {
	.form-layout__item--link {
		max-width: 33.3%;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		padding-bottom: .75rem
	}
}
.form-layout__item--link .link-action:hover {
	color: #d0043c
}
@media (min-width: 640px) {
	.form-layout__actions {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
}
.form-layout__notice {
	max-width: 22.5rem;
	color: rgba(16, 16, 16, .4);
	font-size: .75rem;
	line-height: 1.3;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.form-layout__notice {
		font-size: .625rem
	}
}
.form-layout__notice a {
	background-size: 100% 1px;
	background-position: 0 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
	background-image: -o-linear-gradient(currentColor, currentColor);
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.form-layout__notice a.focus-visible,
.form-layout__notice a:hover {
	background-position: 100% 100%;
	background-size: 0 1px
}
@media (min-width: 640px) {
	.form-layout__notice {
		margin-left: auto
	}
}
@media (max-width: 639.98px) {
	.form-layout__notice {
		margin-top: 1.5rem
	}
}
.form-layout__privacy {
	max-width: 18rem;
	color: rgba(16, 16, 16, .4);
	font-size: .75rem;
	line-height: 1.3;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.form-layout__privacy {
		font-size: .625rem
	}
}
.form-layout__privacy a {
	background-size: 100% 1px;
	background-position: 0 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
	background-image: -o-linear-gradient(currentColor, currentColor);
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.form-layout__privacy a.focus-visible,
.form-layout__privacy a:hover {
	background-position: 100% 100%;
	background-size: 0 1px
}
@media (min-width: 640px) {
	.form-layout__privacy {
		margin-left: 2.5rem
	}
}
@media (max-width: 639.98px) {
	.form-layout__privacy {
		margin-top: 1.5rem
	}
}
.form-layout__privacy .checkbox__text {
	font-size: .75rem;
	line-height: 1.3;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.form-layout__privacy .checkbox__text {
		font-size: .625rem
	}
}
.form-layout > :last-child {
	margin-bottom: 0
}
@media (min-width: 640px) {
	.form-layout__items {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 3.5rem;
		margin-left: -1rem;
		margin-right: -1rem
	}
}
/* --form */


.footer__logo-wrapper img {
	max-height: 67px;
}

.logo-red img {
	width: 100%;
}

@media (min-width: 640px) {
	.footer__address-list {
		column-count: 2;
		-webkit-columns: 2;
		-moz-columns: 2;
	}
}

@media (min-width: 990px) {
	.footer__address-list {
		column-count: 3;
		-webkit-columns: 3;
		-moz-columns: 3;
	}
}

@media(max-width: 640px) {
	.footer__address-list {
    	text-align: center;
    	align-items: center;
	}

	.footer__address {
		margin-bottom: 2rem;
	}
}

.footer__address-item-title {
	opacity: .4;
}


.footer__action-list>.footer__action>p {
opacity: .4;
}

.dealer-info__contacts .n-map-link {
    text-align: right;
}

.map-dealers-list-item .n-map-title {
	cursor: pointer;
	font-weight: 600;
}

.map-dealers-list-item .map-dealers-list-item-num {
	font-size: inherit;
}

@media (min-width: 990px) {
	.footer__address-list > :last-child {
		max-width: 290px;
	}
}










.loader--skeleton
{
	position:relative;overflow:hidden
}
.loader--skeleton:after
{
	content:"";
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	left:0;top:0;background-color:#efeff2;z-index:5;-webkit-animation:skeletonLoadingAnimation 1.5s cubic-bezier(.46,.03,.52,.96) infinite normal;animation:skeletonLoadingAnimation 1.5s cubic-bezier(.46,.03,.52,.96) infinite normal;
	opacity:1;
	transition: .2s all ease;
}
.loader--skeleton.loaded:after
{
	opacity:0;
}
.loader--skeleton.loaded.ready:after
{
	content:unset;
	display:none
}
@-webkit-keyframes rotate
{
	0%
	{
		-webkit-transform:rotate(0);transform:rotate(0)
	}
	to
	{
		-webkit-transform:rotate(359deg);transform:rotate(359deg)
	}
}
@keyframes rotate
{
	0%
	{
		-webkit-transform:rotate(0);transform:rotate(0)
	}
	to
	{
		-webkit-transform:rotate(359deg);transform:rotate(359deg)
	}
}
@-webkit-keyframes skeletonLoadingAnimation
{
	0%
	{
		background-color:#e1e1e7
	}
	50%
	{
		background-color:#c5c5d0
	}
	to
	{
		background-color:#e1e1e7
	}
}
@keyframes skeletonLoadingAnimation
{
	0%
	{
		background-color:#e1e1e7
	}
	50%
	{
		background-color:#c5c5d0
	}
	to
	{
		background-color:#e1e1e7
	}
}


.icon-marker .icon-marker__number
{
	background: black;
    text-wrap: nowrap;
    padding: 4px 10px;
}

.icon-marker .icon-marker__description {
	padding: 0.6rem 1.6rem!important;
	min-width: 350px!important;
	border: 1px solid #efeff2;
}

.icon-marker__description p+p {
	margin-top: 8px;
}

.icon-marker__description b
{
	font-weight: 500!important;
}

.contacts-table__label + .contacts-table__list {
	margin-bottom: 0.75rem;
}

.contacts-table__label {
	line-height: 1 !important;
}


.header.is-white #search-box-input::placeholder {
	color: white;
	opacity: 1; /* Firefox */
}

span.footer__copyrights-text+span.footer__copyrights-text {
	margin-top: 1rem;
}

.contacts__custom--map_bottom .map-box__bottom-heading {
	padding-right: 0;
	width: 24%;
}

.contacts__custom--map_bottom .map-box__bottom-adress {
	width: 40%;
}


.icon-marker .icon-marker__number:before {

	content:'';
	background: black;
	transform: rotate(45deg);
	width: 25px;
	height: 25px;
	bottom:0;
	left: 50%;
	position: absolute;
	z-index: -1;
}

.main-slider-slide {
	background: transparent;
}

.main-slider-slide__img {
	height: 100%;
}


.animate {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-visible {
	opacity: 1;
	transform: translateY(0);
}
.complete {
	/* Стиль для элементов, которые завершили анимацию */
}

@media(min-width: 640px) {
	.logo-white,
	.logo-red {
		width: 189px;
	}
}

[data-counter].animate {
	opacity: 1;
}

























.equipment__top > :last-child {
    margin-bottom: 0
}

@media (min-width: 990px) {
    .equipment__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

@media (min-width: 990px) {
    .equipment__heading {
        width: 50%;
        padding-right: 5rem
    }
}

@media (min-width: 640px) and (max-width: 989.98px) {
    .equipment__heading {
        max-width: 75%;
        margin-bottom: 2rem
    }
}

@media (max-width: 639.98px) {
    .equipment__heading {
        margin-bottom: 1.5rem
    }
}

.equipment__text {
    max-width: 25rem
}

@media (min-width: 990px) {
    .equipment__text {
        padding-top: 1.5rem
    }
}

@media (min-width: 990px) {
    .equipment__slide .card__img {
        height: 23.625rem
    }
/*
    .equipment__slide .card__info {
        z-index: 2;
        margin-top: -3rem
    }
*/
    .equipment__slide .card__action, .equipment__slide .card__info-wrap {
        opacity: 0;
        -webkit-transition: opacity .3s ease 0s;
        -o-transition: opacity .3s ease 0s;
        transition: opacity .3s ease 0s
    }

    .equipment__slide:not(:nth-child(3n+3)) {
        max-width: 25% !important;
        width: 25% !important
    }

    .equipment__slide:nth-child(3n+3) {
        max-width: 50% !important;
        width: 50% !important
    }
}

@media (min-width: 990px) {
    .equipment__slide.swiper-slide-active .card__action, .equipment__slide.swiper-slide-active .card__info-wrap, .equipment__slide.swiper-slide-next .card__action, .equipment__slide.swiper-slide-next .card__info-wrap, .swiper-slide-next + .equipment__slide .card__action, .swiper-slide-next + .equipment__slide .card__info-wrap {
        opacity: 1;
        -webkit-transition: opacity .3s ease .4s;
        -o-transition: opacity .3s ease .4s;
        transition: opacity .3s ease .4s
    }
}

@media (min-width: 640px) {
    .equipment__content {
        margin-left: -2px;
        margin-right: -2px
    }
}

@media (max-width: 989.98px) {
    .equipment__content {
        margin-right: -2rem
    }
}

.equipment__slider .swiper-wrapper {
    height: auto
}

@media (max-width: 989.98px) {
    .equipment__slider {
        margin-right: 2rem
    }
}

@media (min-width: 990px) {
    .equipment__slider {
        padding-bottom: 2.5rem
    }
}

.equipment__inner {
    padding-left: 1px;
    padding-right: 1px
}

.equipment__bottom {
    display: none
}

@media (min-width: 990px) {
    .equipment__bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.equipment .card__title {
    font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    font-size: 1.125rem;
    line-height: 1.4;
    font-weight: 500
}

@media (max-width: 639.98px) {
    .equipment .card__title {
        font-size: 1rem
    }
}

@media (min-width: 640px) and (max-width: 989.98px) {
    .equipment .card__img {
        height: 21.875rem
    }
}

.equipment__line {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 20.625rem;
    width: 75%;
    height: 3.5rem;
    background-color: #fff;
    content: ""
}

@media (max-width: 989.98px) {
    .equipment__line {
        display: none
    }

}

@media (min-width: 990px) {
    .equipment__content--small  .equipment__slide:not(:nth-child(3n+3)) {
        width: 30.5% !important;
        max-width: 30.5% !important;
    }
    .equipment__content--small .equipment__slide:nth-child(3n+3) {
        width: 39% !important;
        max-width: 39% !important;
    }
}


.card__inner {
	background: white!important;
}






.pinned .share-wrapper
{
	/*transform: translate3d(0px, 0px, 0px);
    left: 1829.5px;
    top: 119.812px;
    margin: 0px;
    max-width: 74px;
    width: 74px;
    max-height: 76px;
    height: 76px;
    padding: 0px;
    box-sizing: border-box;*/

	transform: translate3d(0px, 0px, 0px);
    position: fixed !important;
}


.swiper-slide {
	position: absolute; 
   width: 100%; 
   height: 100%; 
   color: #fff; 
   /*padding-top: 15vh;*/
}

/*
.swiper-slide:has(.main-slider-slide:not(.active)) .main-slider-slide__content {
	visibility: hidden;
}
*/
.main-slider-slide::before {
	opacity: 0;
	transition: .2s ease-out;
}

.main-slider-slide.active::before {
	opacity: 1;
}





/* tabs */
.tabs-link__wrap {
	width: 100%
}
.tabs-link a.tabs-list__el:hover {
	text-decoration: none
}
@media (min-width: 640px) {
	.hero + .tabs-link {
		margin-top: -6.8125rem
	}
}
@media (min-width: 990px) {
	.hero + .tabs-link {
		margin-top: -7.2375rem;
	}
}
@media (min-width: 1299px) {
	.hero + .tabs-link {
		margin-top: -7.2375rem;
	}
}
.tabs__head {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.tabs__head.has-link .tabs-list {
	width: 75%
}
@media (max-width: 639.98px) {
	.tabs__head.has-link .tabs-list {
		width: 100%
	}
}
.tabs__head.has-link .tabs-list:before {
	width: 100%
}
@media (max-width: 639.98px) {
	.tabs__head.has-link .tabs-list:before {
		width: 200%
	}
}
.tabs-action {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 25%;
	padding-top: 3.5rem;
	padding-right: 1.5rem
}
.tabs-action--center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-right: 0
}
.tabs-action--center .tabs-link {
	-ms-flex-item-align: end;
	align-self: flex-end;
	padding-top: 0;
	padding-bottom: 2.375rem
}
@media (max-width: 989.98px) {
	.tabs-action {
		padding-right: 0;
		padding-top: 3rem
	}
}
@media (max-width: 639.98px) {
	.tabs-action {
		width: auto;
		padding-top: 0;
		display: none
	}
}
.tabs-action--mobile {
	display: none;
	margin-top: .625rem
}
@media (max-width: 639.98px) {
	.tabs-action--mobile {
		display: inline-block;
		width: auto;
		margin-top: 2rem
	}
}
.tabs-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #101010;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
.tabs-link,
.tabs-link--underline .tabs-link__text {
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s
}
.tabs-link--underline .tabs-link__text {
	position: relative;
	background-size: 100% 1px;
	background-position: 0 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#b3b9bd), to(#b3b9bd));
	background-image: -o-linear-gradient(#b3b9bd, #b3b9bd);
	background-image: linear-gradient(#b3b9bd, #b3b9bd);
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.tabs-link--underline.focus-visible .tabs-link__text,
.tabs-link--underline:hover .tabs-link__text {
	background-position: 100% 100%;
	background-size: 0 1px
}
@media (max-width: 639.98px) {
	.tabs-link {
		padding-top: .625rem
	}
}
.tabs-link:not([data-link-tabs]):hover {
	text-decoration: none;
	color: #d0043c
}
.tabs-link__icon {
	margin-right: 1rem
}
.tabs-link__text {
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.tabs-link__text {
		font-size: .75rem
	}
}
.tabs-list {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 75%;
	padding-top: 3.5rem;
	background-color: #fff
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.tabs-list {
		width: 100%;
	}
}
@media (max-width: 639.98px) {
	.tabs-list.select-init {
		padding-top: 1.625rem;
		opacity: 1
	}
	.select-init .tabs-list {
		opacity: 1
	}
}
@media (max-width: 989.98px) {
	.tabs-list {
		padding-top: 3rem
	}
}
@media (max-width: 639.98px) {
	.tabs-list {
		width: 100%;
		padding-top: .625rem
	}
	.tabs-list:after {
		background-color: rgba(0, 0, 0, 0) !important
	}
}
.tabs-list:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: #fff
}
@media (max-width: 639.98px) {
	.tabs-list:before {
		width: 200%;
		left: -50%
	}
}
.tabs-list:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: 0;
	background-color: #efefef;
	z-index: 3
}
@media (max-width: 989.98px) {
	.tabs-list:after {
		width: 120%
	}
}
@media (max-width: 639.98px) {
	.tabs-list:after {
		width: 100%;
		background-color: #101010
	}
}
.tabs-list__el {
	position: relative;
	margin-right: 3.5rem;
	padding: 0 0 2.25rem;
	background-color: rgba(0, 0, 0, 0);
	color: rgba(16, 16, 16, .4);
	border: 0;
	cursor: pointer;
	white-space: nowrap;
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 1.125rem;
	line-height: 1.4;
	font-weight: 500;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
@media (max-width: 639.98px) {
	.tabs-list__el {
		font-size: 1rem;
		padding-bottom: 1rem
	}
}
.tabs-list__el:after {
	content: "";
	position: absolute;
	z-index: 4;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: 0;
	background-color: #efefef;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: background;
	-o-transition-property: background;
	transition-property: background
}
.tabs-list__el:focus,
.tabs-list__el:hover {
	color: #d0043c
}
.tabs-list__el:focus {
	outline: none
}
.tabs-list__el:last-child {
	margin-right: 0;
	border-right: 20px solid rgba(0, 0, 0, 0)
}
.tabs-list__el.active {
	color: #101010;
	pointer-events: none;
	cursor: default
}
.tabs-list__el.active:after {
	background-color: #d0043c
}
.tabs-list__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: scroll;
	scroll-padding-right: 20px;
	scrollbar-width: none;
	-ms-overflow-style: none
}
.tabs-list__wrap::-webkit-scrollbar {
	display: none
}
@media (max-width: 989.98px) {
	.tabs-list__wrap {
		padding-right: 2rem
	}
}
@media (max-width: 639.98px) {
	.tabs-list__wrap {
		padding-top: .5rem
	}
}
.tabs-list__fade {
	display: block;
	width: 15%;
	height: 100%;
	position: absolute;
	top: 0;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: rgba(0, 0, 0, 0);
	z-index: 2;
	outline: none;
	-webkit-transition: .3s linear;
	-o-transition: .3s linear;
	transition: .3s linear;
	-webkit-transition-property: width, -webkit-box-shadow;
	transition-property: width, -webkit-box-shadow;
	-o-transition-property: width, box-shadow;
	transition-property: width, box-shadow;
	transition-property: width, box-shadow, -webkit-box-shadow;
	padding: 0;
	pointer-events: none
}
@media (min-width: 990px) {
	.tabs-list__fade {
		pointer-events: all
	}
}
.tabs-list__fade--left {
	left: 0;
	background-image: -webkit-gradient(linear, right top, left top, from(hsla(0, 0%, 100%, 0)), to(#fff));
	background-image: -o-linear-gradient(right, hsla(0, 0%, 100%, 0), #fff);
	background-image: linear-gradient(270deg, hsla(0, 0%, 100%, 0), #fff);
	width: 0
}
.tabs-list__fade--left:hover {
	-webkit-box-shadow: inset 60px 0 30px -30px #ebebeb;
	box-shadow: inset 60px 0 30px -30px #ebebeb
}
.tabs-list__fade--right {
	right: 0;
	background-image: -webkit-gradient(linear, left top, right top, from(hsla(0, 0%, 100%, 0)), to(#fff));
	background-image: -o-linear-gradient(left, hsla(0, 0%, 100%, 0), #fff);
	background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff)
}
.tabs-list__fade--right:hover {
	-webkit-box-shadow: inset -60px 0 30px -30px #ebebeb;
	box-shadow: inset -60px 0 30px -30px #ebebeb
}
.tabs-content {
	position: relative;
	width: 100%;
	padding-top: 4rem;
	padding-bottom: 5rem;
	background-color: #fff
}
@media (max-width: 989.98px) {
	.tabs-content {
		padding-top: 3rem;
		padding-bottom: 3rem
	}
}
@media (max-width: 639.98px) {
	.tabs-content {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem
	}
}
.tabs-content:after,
.tabs-content:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: #fff
}
.tabs-content:after {
	left: 100%
}
.tabs-content-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.tabs-content-wrap.has-slider .tabs-content {
	width: 75%
}
@media (max-width: 989.98px) {
	.tabs-content-wrap.has-slider .tabs-content {
		width: 100%
	}
}
.tabs-content__el {
	display: none
}
.tabs-content__el.active {
	display: block
}
.tabs--light .tabs-list {
	width: 75%;
	background-color: #efeff2
}
.tabs--light .tabs-list:before {
	width: 100%;
	background-color: #efeff2
}
.tabs--light .tabs-list:after {
	background-color: #fff
}
@media (max-width: 989.98px) {
	.tabs--light .tabs-list {
		width: 66.66667%
	}
}
@media (max-width: 639.98px) {
	.tabs--light .tabs-list {
		width: 100%
	}
	.tabs--light .tabs-list:before {
		width: 200%
	}
}
.tabs--light .tabs-list__el:after {
	background-color: #fff
}
.tabs--light .tabs-list__el.active:after {
	background-color: #d0043c
}
.tabs--light .tabs-list .tabs-list__fade--left {
	background-image: -webkit-gradient(linear, right top, left top, from(hsla(0, 0%, 93.7%, 0)), to(#efefef));
	background-image: -o-linear-gradient(right, hsla(0, 0%, 93.7%, 0), #efefef);
	background-image: linear-gradient(270deg, hsla(0, 0%, 93.7%, 0), #efefef)
}
.tabs--light .tabs-list .tabs-list__fade--left:hover {
	-webkit-box-shadow: inset 60px 0 30px -30px #e2e2e2;
	box-shadow: inset 60px 0 30px -30px #e2e2e2
}
.tabs--light .tabs-list .tabs-list__fade--right {
	background-image: -webkit-gradient(linear, left top, right top, from(hsla(0, 0%, 93.7%, 0)), to(#efefef));
	background-image: -o-linear-gradient(left, hsla(0, 0%, 93.7%, 0), #efefef);
	background-image: linear-gradient(90deg, hsla(0, 0%, 93.7%, 0), #efefef)
}
.tabs--light .tabs-list .tabs-list__fade--right:hover {
	-webkit-box-shadow: inset -60px 0 30px -30px #e2e2e2;
	box-shadow: inset -60px 0 30px -30px #e2e2e2
}
.tabs--light .tabs-content,
.tabs--light .tabs-content:after,
.tabs--light .tabs-content:before {
	background-color: #efeff2
}
.tabs-slider {
	position: relative;
	width: 25%;
	border-left: 2px solid #fff
}
@media (max-width: 989.98px) {
	.tabs-slider {
		width: 100%;
		border-left: none;
		border-top: 2px solid #fff
	}
}
.tabs-slider__wrap {
	position: relative;
	height: 100%;
	margin-right: -3rem;
	overflow: hidden;
	background-color: #d0043c
}
@media (max-width: 989.98px) {
	.tabs-slider__wrap {
		margin-left: -2rem;
		margin-right: -2rem
	}
}
@media (max-width: 639.98px) {
	.tabs-slider__wrap {
		margin-left: -1rem;
		margin-right: -1rem
	}
}
.tabs-slider__wrap.transition .swiper-container-fade .swiper-slide-active,
.tabs-slider__wrap.transition .swiper-container-fade .swiper-slide-active .swiper-slide-active,
.tabs-slider__wrap.transition > * {
	pointer-events: none !important
}
.tabs-slider__content {
	position: relative;
	height: 100%;
	overflow: hidden
}
.tabs-slider__overlay {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	width: 150%;
	height: 23.125rem;
	background-color: #efeff2;
	pointer-events: none
}
@media (min-width: 990px) {
	.tabs-slider__overlay {
		height: 64.5%
	}
}
.tabs-slider__el {
	height: 100%
}
.tabs-slider__el-bottom {
	height: 35.5%;
	padding: 2.5rem;
	color: #fff
}
@media (max-width: 989.98px) {
	.tabs-slider__el-bottom {
		height: auto;
		min-height: 10.625rem;
		padding: 2.5rem 2rem
	}
}
@media (max-width: 639.98px) {
	.tabs-slider__el-bottom {
		min-height: 9.75rem;
		padding: 2rem 1rem
	}
}
.tabs-slider__el-link {
	color: currentColor;
	background-size: 0 1px;
	background-position: 100% 100%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
	background-image: -o-linear-gradient(currentColor, currentColor);
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	text-decoration: none !important;
	-webkit-transition-property: background-size, color;
	-o-transition-property: background-size, color;
	transition-property: background-size, color;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	will-change: background-size
}
.tabs-slider__el-link.focus-visible,
.tabs-slider__el-link:hover {
	background-position: 0 100%;
	background-size: 100% 1px
}
.tabs-slider__el-link:hover {
	color: currentColor
}
.tabs-slider__el-content.animate[data-animate] {
	-webkit-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
	opacity: 0;
	-webkit-transform: translateY(2rem);
	-ms-transform: translateY(2rem);
	transform: translateY(2rem);
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s
}
.swiper-slide-active .tabs-slider__el-content.animate[data-animate] {
	-webkit-transition-duration: 1.5s;
	-o-transition-duration: 1.5s;
	transition-duration: 1.5s;
	-webkit-transition-delay: .4s;
	-o-transition-delay: .4s;
	transition-delay: .4s;
	opacity: 1;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none
}
.tabs-slider__img {
	position: relative;
	height: 64.5%;
	overflow: hidden
}
@media (max-width: 989.98px) {
	.tabs-slider__img {
		height: 23.125rem
	}
}
.tabs-slider__img .image {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover
}
.tabs-slider__img .image.swiper-lazy {
	opacity: 0;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}
.tabs-slider__img .image.is-loaded {
	opacity: 1 !important
}
.tabs-slider__img-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}
.tabs-slider__bottom {
	position: absolute;
	bottom: 0;
	padding-bottom: 1.5rem;
	padding-right: 2.5rem;
	padding-left: 2.5rem;
	right: 0;
	left: 0;
	z-index: 1
}
.tabs-slider__bottom-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
@media (max-width: 989.98px) {
	.tabs-slider__bottom {
		padding-right: 2rem;
		padding-left: 2rem
	}
}
@media (max-width: 639.98px) {
	.tabs-slider__bottom {
		padding-right: 1rem;
		padding-left: 1rem
	}
}
.tabs-slider__pagination {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1
}
.tabs-finance-content__wrap {
	padding-left: 7rem
}
@media (max-width: 989.98px) {
	.tabs-finance-content__wrap {
		padding-left: 0
	}
}
.tabs-finance-content__wrap-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
@media (max-width: 639.98px) {
	.tabs-finance-content__wrap-content {
		display: block
	}
}
.tabs-finance-content__inner {
	width: 63%;
	padding-right: 7rem
}
@media (max-width: 989.98px) {
	.tabs-finance-content__inner {
		width: 77%;
		padding-right: 5rem
	}
}
@media (max-width: 639.98px) {
	.tabs-finance-content__inner {
		width: 100%;
		padding-right: 0
	}
}
.tabs-finance-content__inner .user-text ul {
	margin-top: 2.5rem
}
@media (min-width: 990px) {
	.tabs-finance-content__inner .user-text ul {
		/*margin-left: -1.375rem*/
	}
}
@media (max-width: 989.98px) {
	.tabs-finance-content__inner .user-text ul {
		margin-top: 3rem
	}
}
@media (max-width: 639.98px) {
	.tabs-finance-content__inner .user-text ul {
		margin-top: 1.5rem
	}
}
.tabs-finance-content__inner .user-text ul li {
	margin-bottom: 1rem
}
.tabs-finance-content__inner .user-text ul li:last-child {
	margin-bottom: 0
}
.tabs-finance-content__action {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 1.5rem
}
@media (max-width: 639.98px) {
	.tabs-finance-content__action {
		margin-top: 3rem
	}
}
.tabs-finance-content__link {
	margin-left: 2.5rem;
	font-size: .875rem
}
.tabs-finance-content__fact {
	width: 37%
}
@media (max-width: 989.98px) {
	.tabs-finance-content__fact {
		width: 23%
	}
}
@media (max-width: 639.98px) {
	.tabs-finance-content__fact {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		margin-top: 2rem
	}
}
.tabs-finance-content__fact .factor {
	margin-bottom: 3rem
}
@media (max-width: 639.98px) {
	.tabs-finance-content__fact .factor {
		margin-bottom: 0;
		margin-right: 3.125rem
	}
}
/**/


.slider-tech__card {
	width: 100%;
	padding-left: 1px;
	padding-right: 1px
}
@media (min-width: 990px) {
	.slider-tech__card {
		padding-left: 2px;
		padding-right: 1px
	}
}
@media (min-width: 990px) {
	.slider-tech__card:not(:last-child) {
		margin-bottom: 3px
	}
}
@media (max-width: 989.98px) {
	.slider-tech__card {
		margin-bottom: 2px;
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}
@media (min-width: 990px) {
	.slider-tech__card.animate[data-delay="1"] {
		-webkit-transition-delay: .2s;
		-o-transition-delay: .2s;
		transition-delay: .2s
	}
	.slider-tech__card.animate[data-delay="2"] {
		-webkit-transition-delay: .4s;
		-o-transition-delay: .4s;
		transition-delay: .4s
	}
}


/**/
.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1
}
.swiper-container-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
/**/






/**/
.slider-tech__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	margin-bottom: 4.25rem
}
@media (max-width: 989.98px) {
	.slider-tech__head {
		display: block;
		margin-bottom: 3rem
	}
}
@media (max-width: 639.98px) {
	.slider-tech__head {
		
		margin-bottom: 1.5rem
	}
}
.slider-tech__head.has-desc {
	margin-bottom: 3.5rem
}
@media (max-width: 989.98px) {
	.slider-tech__head.has-desc {
		margin-bottom: 4rem
	}
}
@media (max-width: 639.98px) {
	.slider-tech__head.has-desc {
		margin-bottom: 2rem
	}
}
.slider-tech .swiper-wrapper {
	-webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	-o-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	height: auto
}
.slider-tech__title {
	width: 50%
}
@media (max-width: 989.98px) {
	.slider-tech__title {
		width: 100%;
		margin-top: 1rem;
	}
}
.slider-tech__desc {
	width: 50%;
	max-width: 25rem;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.slider-tech__desc {
		font-size: .75rem
	}
}
@media (max-width: 989.98px) {
	.slider-tech__desc {
		width: 100%;
		margin-top: 2rem
	}
}
@media (max-width: 639.98px) {
	.slider-tech__desc {
		max-width: 16.875rem;
		margin-top: 1.5rem
	}
}
.slider-tech__content {
	overflow: hidden
}
@media (min-width: 990px) {
	.slider-tech__content {
		margin-left: -2px;
		margin-right: -1px
	}
}
@media (max-width: 989.98px) {
	.slider-tech__content {
		margin-left: -2rem;
		margin-right: -2rem;
		overflow: inherit
	}
}
@media (max-width: 639.98px) {
	.slider-tech__content {
		margin-left: -1rem;
		margin-right: -1rem
	}
}
@media (max-width: 989.98px) {
	.slider-tech .swiper-container {
		margin-left: 2rem;
		padding-right: 2rem
	}
}
@media (max-width: 639.98px) {
	.slider-tech .swiper-container {
		margin-left: 1rem;
		padding-right: 1rem
	}
}
.slider-tech__bottom {
	margin-top: 2.5rem
}
.slider-tech__bottom-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.slider-tech__card {
	width: 100%;
	padding-left: 1px;
	padding-right: 1px
}
@media (min-width: 990px) {
	.slider-tech__card {
		padding-left: 2px;
		padding-right: 1px
	}
}
@media (min-width: 990px) {
	.slider-tech__card:not(:last-child) {
		margin-bottom: 3px
	}
}
@media (max-width: 989.98px) {
	.slider-tech__card {
		margin-bottom: 2px;
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}
@media (min-width: 990px) {
	.slider-tech__card.animate[data-delay="1"] {
		-webkit-transition-delay: .2s;
		-o-transition-delay: .2s;
		transition-delay: .2s
	}
	.slider-tech__card.animate[data-delay="2"] {
		-webkit-transition-delay: .4s;
		-o-transition-delay: .4s;
		transition-delay: .4s
	}
}



.slider-tech__content .swiper-slide {
	position: relative;
}

.js-swiper-reviews .swiper-slide {
	position: relative;
}

.block-slider__slide-content {
	color: black
}






/* video-block-list */
.video-block__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 40.875rem
}
@media (max-width: 989.98px) {
	.video-block__wrap {
		display: block;
		height: auto
	}
}
.video-block-video {
	width: 75%
}
@media (max-width: 989.98px) {
	.video-block-video {
		width: 100%
	}
}
.video-block-video__content {
	height: 35.1875rem;
	background-color: #efefef;
}
@media (max-width: 989.98px) {
	.video-block-video__content {
		height: 25.625rem
	}
}
@media (max-width: 639.98px) {
	.video-block-video__content {
		height: 13.4375rem
	}
}
.video-block-video__content .swiper-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: auto
}
.video-block-video__desc {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 5.6875rem;
	padding: 0 2.5rem;
	background-color: #efefef;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400
}
@media (max-width: 639.98px) {
	.video-block-video__desc {
		font-size: .75rem
	}
}
@media (max-width: 989.98px) {
	.video-block-video__desc {
		height: auto;
		padding: 2.1875rem 3.75rem
	}
}
@media (max-width: 639.98px) {
	.video-block-video__desc {
		padding: 1.5rem
	}
}
.video-block-list {
	width: 25%
}
@media (max-width: 989.98px) {
	.video-block-list {
		width: 100%
	}
}
.video-block-list__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	margin-left: 2px;
	padding-bottom: 1.5rem;
	background-color: #efefef
}
@media (max-width: 989.98px) {
	.video-block-list__wrap {
		display: block;
		margin-top: 2px;
		margin-left: 0;
		padding-bottom: 3.5rem
	}
}
@media (max-width: 639.98px) {
	.video-block-list__wrap {
		padding-bottom: 1.5625rem
	}
}
.video-block-list__head {
	padding: 1.5rem
}
@media (max-width: 989.98px) {
	.video-block-list__head {
		height: auto;
		padding: 3rem 3.625rem 2rem;
		line-height: inherit
	}
}
@media (max-width: 639.98px) {
	.video-block-list__head {
		padding: 1.5rem
	}
}
@media (min-width: 990px) {
	.video-block-list__head {
		display: block;
		display: -webkit-box;
		font-size: 1.125rem;
		overflow: hidden;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		line-height: 2.78125rem;
		padding: 1.5rem
	}
}
.video-block-list__content {
	position: relative;
	margin-right: 12px;
	padding-left: 12px;
	padding-right: 24px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	overflow: auto
}
@media (max-width: 989.98px) {
	.video-block-list__content {
		margin-right: 0;
		padding: 0 3.625rem
	}
}
@media (max-width: 639.98px) {
	.video-block-list__content {
		padding: 0 1.5rem
	}
}
.video-block-list__content .ps__rail-y,
.video-block-list__content .ps__thumb-y {
	width: 4px
}
.video-block-list__content .ps__rail-x:before,
.video-block-list__content .ps__rail-y:before {
	background-color: #fff
}
.video-block-list__content .ps__thumb-x:before,
.video-block-list__content .ps__thumb-y:before {
	width: 4px;
	background-color: #d0043c
}
.video-block-list__el {
	display: block;
	margin-bottom: 1.5rem;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: max-height, margin, opacity, height;
	-o-transition-property: max-height, margin, opacity, height;
	transition-property: max-height, margin, opacity, height;
	max-height: 18.75rem;
	cursor: pointer
}
/*
.video-block-list__el::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
}
	*/
@media (max-width: 989.98px) {
	.video-block-list__el {
		display: none;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom: 1rem
	}
	.list-open .video-block-list__el,
	.video-block-list__el:nth-child(-n+4) {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
}
.video-block-list__el:last-child {
	margin-bottom: 0
}
.video-block-list__el.active .video-block-list__desc,
.video-block-list__el:hover .video-block-list__desc {
	color: #d0043c
}
.video-block-list__img {
	position: relative;
	width: 100%;
	height: 11.5rem;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: height;
	-o-transition-property: height;
	transition-property: height
}
@media (max-width: 989.98px) {
	.video-block-list__img {
		width: 12.5rem;
		height: 6.25rem;
		margin-right: 2rem
	}
}
@media (max-width: 639.98px) {
	.video-block-list__img {
		width: 5rem;
		height: 3.125rem;
		margin-right: .875rem
	}
}
.video-block-list__img:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #d0043c;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: width;
	-o-transition-property: width;
	transition-property: width
}
.video-block-list__el.active .video-block-list__img:after,
.video-block-list__el:hover .video-block-list__img:after {
	width: 100%
}
.video-block-list__img .image {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	background-size: cover
}
.video-block-list__desc {
	padding: 1.5rem 1.25rem 0;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color, height, padding;
	-o-transition-property: color, height, padding;
	transition-property: color, height, padding
}
@media (max-width: 639.98px) {
	.video-block-list__desc {
		font-size: .75rem
	}
}
@media (max-width: 989.98px) {
	.video-block-list__desc {
		max-width: 21.875rem;
		padding: 0;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1
	}
}
@media (min-width: 990px) {
	.video-block-list__desc {
		display: block;
		display: -webkit-box;
		font-size: .875rem;
		max-height: 2.625rem;
		line-height: 1.5;
		overflow: hidden;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		height: 4.125rem;
		max-height: 4.125rem
	}
}
.video-block-list__link {
	display: none
}
@media (max-width: 989.98px) {
	.video-block-list__link {
		display: inline-block;
		margin: 3rem 3.625rem 0
	}
}
@media (max-width: 639.98px) {
	.video-block-list__link {
		margin: 2rem 1.5rem .5rem
	}
}
/* --video-block-list */
.video-block-video__content {
	height: 100%;
}
.video-block-video__content .swiper {
	height: 100%;
	display: flex;
}
.video-block-video__content .swiper-wrapper {
	flex: 1;
	align-items: stretch !important;
	height: unset !important;
}
.video-block-video__content .swiper-slide {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	height: 100% !important;
}
.video-block-video__content [id^=player-] {
	flex: 1 0 auto;
}
/**/
.plyr {
	--plyr-range-fill-background: #d0043c;
	--plyr-video-control-background-hover: #d0043c;
	--plyr-control-spacing: 1rem;
}
.plyr__control--overlaid {
	opacity: 1;
}


.video-block-list__content-wrap .swiper-slide {
	position: relative;
	color: #101010;
}



.video-block-video__content .swiper-slide {
	position: relative;
	color: #101010;
}
/* other */

.pb-2-fixed {
    padding-bottom: 5.5rem !important;
}


.header.is-white ~ main [data-breadcrumb-block] {
    display: none;
}

.bg-red {
    color: white;
    background-color: #d0043c;
}

















.tabs-list {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 75%;
	padding-top: 3.5rem;
	background-color: #fff
}
@media (min-width: 640px) and (max-width: 989.98px) {
	.tabs-list {
		width: 100%;
	}
}
@media (max-width: 639.98px) {
	.tabs-list.select-init {
		padding-top: 1.625rem;
		opacity: 1
	}
	.select-init .tabs-list {
		opacity: 1
	}
}
@media (max-width: 989.98px) {
	.tabs-list {
		padding-top: 3rem
	}
}
@media (max-width: 639.98px) {
	.tabs-list {
		width: 100%;
		padding-top: .625rem
	}
	.tabs-list:after {
		background-color: rgba(0, 0, 0, 0) !important
	}
}
.tabs-list:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: #fff
}
@media (max-width: 639.98px) {
	.tabs-list:before {
		width: 200%;
		left: -50%
	}
}
.tabs-list:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: 0;
	background-color: #efefef;
	z-index: 3
}
@media (max-width: 989.98px) {
	.tabs-list:after {
		width: 120%
	}
}
@media (max-width: 639.98px) {
	.tabs-list:after {
		width: 100%;
		background-color: #101010
	}
}
.tabs-list__el {
	position: relative;
	margin-right: 3.5rem;
	padding: 0 0 2.25rem;
	background-color: rgba(0, 0, 0, 0);
	color: rgba(16, 16, 16, .4);
	border: 0;
	cursor: pointer;
	white-space: nowrap;
	font-family: Firs Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	font-size: 1.125rem;
	line-height: 1.4;
	font-weight: 500;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: color;
	-o-transition-property: color;
	transition-property: color
}
@media (max-width: 639.98px) {
	.tabs-list__el {
		font-size: 1rem;
		padding-bottom: 1rem
	}
}
.tabs-list__el:after {
	content: "";
	position: absolute;
	z-index: 4;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: 0;
	background-color: #efefef;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-property: background;
	-o-transition-property: background;
	transition-property: background
}
.tabs-list__el:focus,
.tabs-list__el:hover {
	color: #d0043c
}
.tabs-list__el:focus {
	outline: none
}
.tabs-list__el:last-child {
	margin-right: 0;
	border-right: 20px solid rgba(0, 0, 0, 0)
}
.tabs-list__el.active {
	color: #101010;
	pointer-events: none;
	cursor: default
}
.tabs-list__el.active:after {
	background-color: #d0043c
}
.tabs-list__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: scroll;
	scroll-padding-right: 20px;
	scrollbar-width: none;
	-ms-overflow-style: none
}
.tabs-list__wrap::-webkit-scrollbar {
	display: none
}
@media (max-width: 989.98px) {
	.tabs-list__wrap {
		padding-right: 2rem
	}
}
@media (max-width: 639.98px) {
	.tabs-list__wrap {
		padding-top: .5rem
	}
}
.tabs-list__fade {
	display: block;
	width: 15%;
	height: 100%;
	position: absolute;
	top: 0;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: rgba(0, 0, 0, 0);
	z-index: 2;
	outline: none;
	-webkit-transition: .3s linear;
	-o-transition: .3s linear;
	transition: .3s linear;
	-webkit-transition-property: width, -webkit-box-shadow;
	transition-property: width, -webkit-box-shadow;
	-o-transition-property: width, box-shadow;
	transition-property: width, box-shadow;
	transition-property: width, box-shadow, -webkit-box-shadow;
	padding: 0;
	pointer-events: none
}
@media (min-width: 990px) {
	.tabs-list__fade {
		pointer-events: all
	}
}
.tabs-list__fade--left {
	left: 0;
	background-image: -webkit-gradient(linear, right top, left top, from(hsla(0, 0%, 100%, 0)), to(#fff));
	background-image: -o-linear-gradient(right, hsla(0, 0%, 100%, 0), #fff);
	background-image: linear-gradient(270deg, hsla(0, 0%, 100%, 0), #fff);
	width: 0
}
.tabs-list__fade--left:hover {
	-webkit-box-shadow: inset 60px 0 30px -30px #ebebeb;
	box-shadow: inset 60px 0 30px -30px #ebebeb
}
.tabs-list__fade--right {
	right: 0;
	background-image: -webkit-gradient(linear, left top, right top, from(hsla(0, 0%, 100%, 0)), to(#fff));
	background-image: -o-linear-gradient(left, hsla(0, 0%, 100%, 0), #fff);
	background-image: linear-gradient(90deg, hsla(0, 0%, 100%, 0), #fff)
}
.tabs-list__fade--right:hover {
	-webkit-box-shadow: inset -60px 0 30px -30px #ebebeb;
	box-shadow: inset -60px 0 30px -30px #ebebeb
}
.tabs-content {
	position: relative;
	width: 100%;
	padding-top: 4rem;
	padding-bottom: 5rem;
	background-color: #fff
}
@media (max-width: 989.98px) {
	.tabs-content {
		padding-top: 3rem;
		padding-bottom: 3rem
	}
}
@media (max-width: 639.98px) {
	.tabs-content {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem
	}
}
.tabs-content:after,
.tabs-content:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: #fff
}
.tabs-content:after {
	left: 100%
}
.tabs-content-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.tabs-content-wrap.has-slider .tabs-content {
	width: 75%
}
@media (max-width: 989.98px) {
	.tabs-content-wrap.has-slider .tabs-content {
		width: 100%
	}
}
.tabs-content__el {
	display: none
}
.tabs-content__el.active {
	display: block
}
.tabs__head {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.tabs__head.has-link .tabs-list {
	width: 75%
}
@media (max-width: 639.98px) {
	.tabs__head.has-link .tabs-list {
		width: 100%
	}
}
.tabs__head.has-link .tabs-list:before {
	width: 100%
}
@media (max-width: 639.98px) {
	.tabs__head.has-link .tabs-list:before {
		width: 200%
	}
}
/**/
/**/
#panel {
	display: none;
}
.form_dark {
	background: #EFEFF2;
	padding: 30px 40px 50px;
}
.row {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}
.col {
	padding-left: 15px;
	padding-right: 15px;
}
.col--lg-4 {
	width: 33.3%;
}
.col--lg-8 {
	width: 66.6%;
}
.control_b-offset {
	margin-bottom: 20px;
}
.form_border {
	margin-top: 30px;
}
.form_btn {
	font-size: 16px;
	padding: 17px 24px;
	border: 2px solid #92969B;
}
.qr-created {
	display: flex;
	align-items: center;
	padding-bottom: 50px;
}
.qr-created__pic {
	width: 205px;
	flex-shrink: 0;
}
.qr-created__content {
	padding-left: 40px;
}
.qr-title {
	display: block;
	margin-bottom: 30px;
}
.qr-sub-title {
	display: block;
	margin-bottom: 20px;
}
.form-btn_gray {
	font-size: 16px;
	padding: 17px 24px;
	border: 2px solid #92969B;
	background: #EFEFF2;
	cursor: pointer;
	transition: all .3s ease;
}
.form-btn_t {
	margin-top: 20px;
}
.form-btn_gray:hover {
	border-color: #d0043c;
	background-color: #d0043c;
	color: #fff;
}
@media(max-width:1024px) {
	.form_dark {
		padding: 30px 15px 50px;
	}
	.col--lg-4 {
		width: 100%;
	}
}
@media(max-width:760px) {
	.qr-created__content {
		font-size: 14px;
	}
}
@media(max-width:600px) {
	.qr-created {
		flex-wrap: wrap;
	}
	.qr-created__pic {
		width: 100%;
		margin-bottom: 20px;
	}
	.qr-created__content {
		padding-left: 5px;
	}
}

.overflow-hidden {
	overflow: hidden;
}

.mb-32, .my-32 {
    margin-bottom: 2rem !important;
}


.breadcrumbs__list 
{
	padding-bottom: 6px;
}


.breadcrumbs__text.text-lead {
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	max-width: 630px!important;
}

@media (max-width:700px) {
	.main-slider-slide__title:first-child {
		padding-top: unset;
	}

	.main-slider-slide__actions
	{
		flex-direction: row !important;
		width: 100%;
		justify-content: space-between !important;
	}

	.swiper-wrapper {
		margin-bottom: .5rem;
	}

	.block-slider__slide-content-text>h4 {
		font-weight: 400;
		font-size: 1rem;
	}

	.contacts-table__tag {
		font-size: .95rem;
	}

	.hero {
		padding-bottom: 5.5rem;
	}

	.slider-tech__content .swiper-slide {
		width: 100% !important;
	}

	.slider-tech .swiper-wrapper {
		flex-direction: column;
	}

	.rostelmash_padding {
		padding-bottom: 4rem;
	}

	.breadcrumbs__list {
		padding-bottom: 0.5rem;
	}

	.pb-2-fixed {
		padding-bottom: 2.5rem!important;
	}

	.block-slider .block-slider__slide-content-text {
		margin-top: 0.5rem;
	}

	.product-cards-list__col {
		margin-bottom: 1.5rem
	}

	.ya-share2 {
		display: block;
		max-height: 100%;
	}

	[data-share-area] .share-wrapper {
		bottom: unset;

	}
}




.mainpage-company .text-lead > p {
	font-style: normal;
  font-weight: normal;
  font-size: 23px;
  line-height: 31px;
  color: #000000;
}

.mainpage-company .block-slider__slide-content-wrap {
	gap: 5rem;
}

.mainpage-company .block-slider__slide-content-link {
	margin-top: 0.5rem;
}

@media (max-width: 700px) {
	.mainpage-company .text-lead > p
	{
		font-size: 16px;
  		line-height: 18px;
	}


		.rostelmash_padding.mainpage-company  {
		  padding-bottom: 2rem;
		}
	  
}

.video-block__wrap {
    height: auto !important;
}

.video-block-video__content {
    height: auto !important; 
}


.rutube-player {
    width: 100%;
    height: 80vh;
}

@media (max-width: 682px) {
    .video-block-video__player iframe {
        aspect-ratio: 16 / 9;
        width: 100%;
        height: auto;
    }
}

.video-block-list__el.active .video-block-list__desc, .video-block-list__el:hover .video-block-list__desc {
    color: #d0043c;
}

.video-block-list__content {
	max-height: 70vh;
}