/*COMMONS*/
:root {
	--color-main: #FF5D20;
	--color-dark-gray-1: #201D1D;
	--color-dark-gray-2: #292929;
	--color-dark-gray-3: #333333;
	--color-dark-gray-4: #B5B5B5;
	--color-white: #ffffff;

	--transition-simple: 0.5s cubic-bezier(.2,.95,.57,.99);
}

::-moz-selection {
	color: #ffffff;
	background: rgba(255, 93, 32, 0.5);
}

::selection {
	color: #ffffff;
	background: rgba(255, 93, 32, 0.5);
}

body {
	font-family: 'Golos Text', sans-serif;
	font-weight: 400;
	color: var(--color-white);
	background-color: var(--color-dark-gray-1);
}

body.hide-scroll {
	overflow: hidden;
}

body.pop-up-opened {
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
}

body::-webkit-scrollbar {
	width: 2px;
}
 
body::-webkit-scrollbar-track {
	background-color: var(--color-dark-gray-4);
}
 
body::-webkit-scrollbar-thumb {
	background-color: var(--color-main);
}

a {
	text-decoration: initial;
	color: var(--color-main);
}

.ui-loader {
	display: none;
}

.for-mobile {
	display: none;
}

.for-desktop {
	display: block;
}

.wrapper {
    max-width: calc(1160px + 40px + 40px);
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
    margin: 0 auto;
    position: relative;
}

/*FLEX*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.flex.inline {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: -webkit-inline-flex;
	display: inline-flex;
}

.flex.space-between {
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.flex.justify-end {
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.flex.column {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

.flex.middle {
	-webkit-align-items: center;
	align-items: center;
}

.flex.align-items-flex-start {
	align-items: flex-start;
}

.flex.center {
	-webkit-justify-content: center;
	justify-content: center;
}

.flex.wrap {
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}
/*FLEX END*/

/*GLOBALS*/
/*COLORS*/
.g__color-accent {
	color: var(--color-accent);
}

.g__color-white {
	color: #ffffff;
}
/*COLORS END*/

/*TEXTS*/
.g__text {
	position: relative;
}

.g__text.type-h1, h1 {
	font-size: 78px;
	font-weight: 500;
	line-height: 106px;
	letter-spacing: 0em;
}

.g__text.type-h2, h2 {
	font-size: 48px;
	font-weight: 600;
	line-height: 58px;
	letter-spacing: 0em;
}

.g__text.type-h3, h3 {
	font-size: 24px;
	font-weight: 400;
	line-height: 36px;
	letter-spacing: 0em;
}

.g__text.type-p, p {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0em;
}

.g__text.type-p.var-a {
	font-weight: 600;
}

.g__text.type-1 {
	font-size: 24px;
	font-weight: 400;
	line-height: 36px;
	letter-spacing: 0.02em;
}

.g__text.type-2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	letter-spacing: 0em;
}

.g__text.type-3 {
	font-size: 16px;
	font-weight: 700;
	line-height: 19px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.g__text.type-4 {
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	letter-spacing: 0em;
}

.g__text.type-5 {
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
}

.g__text.type-eyebrow {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.g__text.type-subheading {
	font-size: 24px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.48px;
}

.g__text mark {
	background-color: initial;
	color: var(--color-main);
}

.g__text a {
	color: var(--color-main);
	text-decoration: underline;
}

.g__text b,
.g__text strong {
	font-weight: 700;
}
/*TEXTS END*/

/*BUTTONS*/
.g__button {
	background: none;
	border: none;
	outline: none;
	display: inline-block;
	padding: initial;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	user-select: none;
 }

.g__button-inner {
	padding-right: 24px;
	padding-left: 24px;
	position: relative;
}

.g__button .g__button-frame {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	overflow: hidden;
	transition: var(--transition-simple);
}

.g__button .g__button-text {
	text-align: center;
	white-space: nowrap;
	position: relative;
	z-index: 55;
	transition: var(--transition-simple);
}

.g__button.type-1 {
	
}

.g__button.type-1 .g__button-inner {
	padding-top: 8px;
	padding-bottom: 8px;
}

.g__button.type-1 .g__button-frame {
	background-color: var(--color-main);
}

.g__button.type-1:hover .g__button-frame {
	background-color: var(--color-white);
}

.g__button.type-1 .g__button-text {
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: 0.02em;
	color: var(--color-white);
}

.g__button.type-1:hover .g__button-text {
	color: var(--color-main);
}

.g__button.type-1.var-a {

}

.g__button.type-1.var-a .g__button-text {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0em;
}

.g__button.type-2 {
	
}

.g__button.type-2 .g__button-inner {
	display: flex;
	align-items: center;
	padding-top: 12px;
	padding-right: 16px;
	padding-bottom: 12px;
	padding-left: 16px;
}

.g__button.type-2 .g__button-frame {
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.g__button.type-2 .g__button-text {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0em;
	color: var(--color-dark-gray-4);
}

.g__button.type-2:hover .g__button-text {
	color: var(--color-white);
}

.g__button.type-2 .g__button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.g__button.type-2 .g__button-icon + .g__button-text {
	margin-left: 8px;
}

.g__button.type-2 .g__button-text + .g__button-icon {
	margin-left: 8px;
}

.g__button.type-3 {
	
}

.g__button.type-3 .g__button-inner {
	padding-top: 8px;
	padding-bottom: 8px;
}

.g__button.type-3 .g__button-frame {
	border: 2px solid rgba(255, 255, 255, 0.50);
	background-color: rgba(0, 0, 0, 0);
}

.g__button.type-3:hover .g__button-frame {

	background-color: var(--color-white);
}

.g__button.type-3 .g__button-text {
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: 0.02em;
	color: var(--color-white);
}

.g__button.type-3:hover .g__button-text {
	color: var(--color-main);
}
/*BUTTONS END*/

/*LINKS*/
.g__link {
	display: inline-block;
	position: relative;

	cursor: pointer;
}

.g__link.type-1 {
	display: inline-flex;
	align-items: center;
}

.g__link.type-1:after {
	content: '';
	background-color: var(--color-main);
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	transition: var(--transition-simple);
}

.g__link.type-1 .g__link-text {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0em;
	color: var(--color-main);
	transition: var(--transition-simple);
}

.g__link.type-1 .g__link-icon svg {
	fill: var(--color-main);
	display: block;
	transition: var(--transition-simple);
}

.g__link.type-1 .g__link-text + .g__link-icon {
	margin-left: 8px;
}

.g__link.type-1 .g__link-icon + .g__link-text {
	margin-left: 8px;
}

.g__link.type-1:hover:after {
	width: 0px;
}

.g__link.type-1.var-a {

}

.g__link.type-1.var-a:after {
	display: none;
}

.g__link.type-1.var-a .g__link-text {
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
}

/*IMAGE*/
.g__image {
	display: block;
	width: 100%;
	position: relative;
}

.g__image > * {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
}

.g__image.type-cover {
	width: 100%;
	height: 100%;
}

.g__image.type-cover > * {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
}

.g__image.type-contain {
	width: 100%;
	height: 100%;
}

.g__image.type-contain > * {
	object-fit: contain;
	object-position: center;
	width: 100%;
	height: 100%;
}
/*IMAGE END*/

/*BACKGROUNDS*/
.g__background {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;

	overflow: hidden;

	pointer-events: none;
}

.g__background-inner {
	width: 1920px;
	height: 100%;
	margin: 0px auto;
	position: absolute;
	right: -200%;
	left: -200%;
}
/*BACKGROUNDS END*/

/*POP UP*/
.pop-up {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 444;

	overflow: hidden;
}

.pop-up .pop-up-inner {
	width: 100%;
	height: 100%;
	padding-top: 80px;
	padding-right: 0px;
	padding-bottom: 80px;
	padding-left: 0px;
	position: relative;

	overflow: auto;
}

.pop-up .content {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	position: relative;

	pointer-events: all;
}

.pop-up .content .content-inner {
	height: 100%;
	position: relative;

	overflow: hidden;
}

.pop-up .close-button {
	cursor: pointer;
	position: absolute;
	top: 24px;
	right: 24px;
	transition: var(--transition-simple);
}

.pop-up .close-button:hover {
	transform: scale(1.2);
	opacity: 0.9;
}

/*video pop up*/
.pop-up.video-pop-up .background {
	background-color: rgba(0, 0, 0, 0.9);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

.pop-up.video-pop-up .content {
	background-color: rgba(0, 0, 0, 0.95);
	box-shadow: 0px 16px 80px 0px #000000B8;
	border: 1px solid var(--color-dark-gray-3);
	max-height: 486px;
	max-width: 864px;
	aspect-ratio: 1/0.564;
}

.pop-up.video-pop-up .content .content-inner .video-outer {
	height: 100%;
	position: relative;
}

.pop-up.video-pop-up .content .content-inner .video-outer .youtube-video {
	display: block;
	width: 100%;
	height: 100%;
}
/*video pop up end*/
/*POP UP END*/

/*BURGER*/
.g__burger {
	display: block;
	position: relative;

	cursor: pointer;
}

.g__burger-line-list {
	width: 26px;
	height: 16px;
	position: relative;
}

.g__burger-line-item-outer {
	border-radius: 4px;
	width: 100%;
	height: 2px;
	position: relative;

	overflow: hidden;
}

.g__burger-line-item-outer:not(:nth-child(1)) {
	margin-top: 11px;
}

.g__burger-line-item {
	width: 100%;
	height: 100%;
}

.g__burger-line-item:before {
	content: '';
	background-color: var(--color-white);
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;

	transition: 0.3s;
}
/*BURGER END*/

/*TEXT EDITOR*/
.g__wysiwyg_editor {
	position: relative;
}

.g__wysiwyg_editor > *:nth-child(1) {
	margin-top: 0px !important;
}

.g__wysiwyg_editor > *:nth-last-child(1) {
	margin-bottom: 0px !important;
}

.g__wysiwyg_editor img {
	display: block;
	max-width: 100%;
	height: auto;
	margin-top: 80px;
	margin-bottom: 80px;
}

.g__wysiwyg_editor > ul {
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.32px;
	margin-top: 40px;
	margin-bottom: 40px;
	position: relative;
}

.g__wysiwyg_editor > ul > li {
	padding-left: 20px;
	position: relative;
}

.g__wysiwyg_editor > ul > li:not(:nth-child(1)) {
	margin-top: 14px;
}

.g__wysiwyg_editor > ul > li:before {
	content: '';
	background-color: var(--color-white);
	border-radius: 50%;
	width: 4px;
	height: 4px;
	position: absolute;
	top: 10px;
	left: 4px;
}

.g__wysiwyg_editor > ol {
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.32px;
	counter-reset: list;
	margin-top: 40px;
	margin-bottom: 40px;
	position: relative;
}

.g__wysiwyg_editor > ol > li {
	color: var(--color-white);
	padding-left: 30px;
	position: relative;
}

.g__wysiwyg_editor > ol > li:not(:nth-child(1)) {
	margin-top: 16px;
}

.g__wysiwyg_editor > ol > li:before {
	counter-increment: list;
	content: counter(list) '.';
	color: var(--color-white);
	position: absolute;
	top: 0px;
	left: 8px;
}

.g__wysiwyg_editor > ol > li > ol {
	counter-reset: list_2;
	padding-top: 20px;
	padding-left: 40px;
}

.g__wysiwyg_editor > ol > li > ol > li {
	color: var(--color-white);
	position: relative;
}

.g__wysiwyg_editor > ol > li > ol > li:not(:nth-child(1)) {
	margin-top: 16px;
}

.g__wysiwyg_editor > ol > li > ol > li:before {
	counter-increment: list_2;
	content: counter(list_2) '.';
	color: var(--color-white);
	margin-right: 10px;
}

.g__wysiwyg_editor a {
	text-decoration: underline;
}

.g__wysiwyg_editor a:hover {
	
}

.g__wysiwyg_editor blockquote {
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
	font-style: italic;
	color: var(--color-main);
	padding-left: 40px;
	margin-top: 80px;
	margin-bottom: 80px;
	position: relative;
}

.g__wysiwyg_editor blockquote:before {
	content: '';
	background-color: var(--color-main);
	width: 4px;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

.g__wysiwyg_editor blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
}

.g__wysiwyg_editor h1 {
	margin-top: 80px;
	margin-bottom: 24px;
}

.g__wysiwyg_editor h2 {
	margin-top: 80px;
	margin-bottom: 24px;
}

.g__wysiwyg_editor h3 {
	margin-top: 56px;
	margin-bottom: 24px;
}

.g__wysiwyg_editor h4 {
	margin-top: 56px;
	margin-bottom: 24px;
}

.g__wysiwyg_editor h5 {
	margin-top: 56px;
	margin-bottom: 24px;
}

.g__wysiwyg_editor p {
	margin-top: 24px;
	margin-bottom: 24px;
}

.g__wysiwyg_editor iframe,
.g__wysiwyg_editor video {
	width: 100%;
	height: auto;
	margin-top: 80px;
	margin-bottom: 80px;
}
/*GLOBALS END*/

/*MAIN MENU*/
.main-menu {
	/*display: none;*/
	width: 100%;
	/*height: 100%;*/
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 101;
}

.main-menu .g__background {
	background-color: var(--color-dark-gray-1);
}

.main-menu .wrapper {
	padding-top: calc(99px + 64px);
	padding-right: initial;
	padding-bottom: 64px;
	padding-left: initial;
}

.main-menu .content {
	width: 100%;
	/*height: 100%;*/
	padding-top: 0px;
	position: relative;

	/*overflow-y: auto;
	overflow-x: visible;*/
}

.main-menu .part-list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	/*height: calc(100vh - 60px);*/
}

.main-menu .part-top {
	text-align: center;
}

.main-menu .el-menu ul li:not(:nth-child(1)) {
	margin-top: 24px;
}

.main-menu .el-menu ul li a {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.32px;
	color: var(--color-white);
}

.main-menu .button-part {
	margin-top: 24px;
}
/*MAIN MENU END*/

/*HEADER*/
header {
	width: 100%;
	position: sticky;
	top: 0px;
	left: 0px;
	z-index: 111;
}

header .g__background {
	background-color: var(--color-dark-gray-1);
	opacity: 0;
	backdrop-filter: blur(6px);
	transition: var(--transition-simple);
}

header .wrapper {
	padding-top: 32px;
	padding-bottom: 32px;
	transition: var(--transition-simple);
}

header .nav-part {
	margin-right: 40px;
}

header .nav-part ul {
	display: flex;
	gap: 24px;
}

header .nav-part ul li a {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0em;
	color: var(--color-white);
	transition: var(--transition-simple);
}

header .nav-part ul li a:hover {
	color: var(--color-main);
}

header .nav-part ul li.current-menu-item:not(.menu-item-type-custom) a {
	font-weight: 700;
	color: var(--color-main);
}

header.not-at-top .wrapper {
	padding-top: 16px;
	padding-bottom: 16px;
}

header.not-at-top .g__background {
	opacity: 0.85;
}

header.on-foreground .wrapper {
	padding-top: 16px;
	padding-bottom: 16px;
}

header.on-foreground .g__background {
	opacity: 0.85;
}
/*HEADER END*/

/*FOOTER*/
footer {
	position: relative;
}

footer .wrapper {
	padding-top: 24px;
	padding-bottom: 24px;
}

footer .logo {
	display: block;
	min-width: 190px;
	transition: var(--transition-simple);
}

footer .logo:hover {
	opacity: 0.6;
}

footer .socials {
	justify-content: flex-end;
	min-width: 190px;
	margin-right: -8px;
}

footer .socials > * {
	margin-right: 8px;
	margin-left: 8px;
	transition: var(--transition-simple);
}

footer .socials > *:hover {
	opacity: 0.6;
}
/*FOOTER END*/
/*COMMONS END*/

/*SECTION TYPE 1*/
section.type-1 {
	max-width: 3840px;
	margin-top: -130px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
}

section.type-1 .bg-1 {
	border-bottom: 1px solid var(--color-dark-gray-3);
	width: 100%;
	height: 550px;
	position: absolute;
	top: 0px;
	left: 0px;
	overflow: hidden;
}

section.type-1 .wrapper {
	padding-top: 32px;
}

section.type-1 .title-part {
	margin-top: 140px;
}

section.type-1 .video-part {
	box-shadow: 0px 16px 80px 0px #000000B8;
	height: 424px;
	margin-top: 80px;
	position: relative;
	cursor: pointer;
	user-select: none;
}

section.type-1 .play-button-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	pointer-events: none;
}

section.type-1 .play-button {
	transition: var(--transition-simple);
}

section.type-1 .video-part:hover .play-button {
	transform: scale(1.1);
	opacity: 0.9;
}

section.type-1 .text-container {
	margin-top: 40px;
}

section.type-1 .text-part {
	max-width: 760px;
}

section.type-1 .text-2 {
	max-width: 80%;
	margin-top: 40px;
}
/*SECTION TYPE 1 END*/

/*SECTION TYPE 2*/
section.type-2 {

}

section.type-2 .copy-for-container {
	visibility: hidden;
}

section.type-2 .wrapper {
	padding-top: 104px;
}

section.type-2 .main-container {
	border: 1px solid var(--color-dark-gray-3);
	background: var(--color-dark-gray-1);
	box-shadow: 16px 0px 80px 0px #000;
	height: 480px;
	position: relative;
}

section.type-2 .block-list {
	height: 100%;
	/*height: 480px;*/
	position: relative;
}

section.type-2 .block-item {
	display: flex;
	align-items: flex-end;
	width: 25%;
	height: 100%;
	padding: 32px;
	position: relative;
	cursor: pointer;
	transition: var(--transition-simple);
}

section.type-2 .block-item:hover {
	width: 33.33%;
}

section.type-2 .block-item:not(:nth-last-child(1)) {
	border-right: 1px solid var(--color-dark-gray-3);
}

section.type-2 .block-item:after {
	content: '';
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-2 .image {
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-2 .image:after {
	content: '';
	background: #000000;
	opacity: 0.5;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	transition: var(--transition-simple);
}

section.type-2 .block-item:hover .image:after {
	opacity: 0;
}

section.type-2 .block-item.inactive .image:after {
	opacity: 0.75;
}

section.type-2 .title-container {
	align-items: center;
	width: 100%;
	min-height: 60px;
	position: relative;
	z-index: 55;
	transition: var(--transition-simple);
}

section.type-2 .block-item.inactive .title-container {
	opacity: 0.5;
}

section.type-2 .title {
	max-width: 186px;
}

section.type-2 .arrow {
	flex: 0 0 auto;
	width: 8px;
	height: 14px;
	margin-left: 8px;
	position: relative;
}

section.type-2 .single {
	opacity: 0;
	height: 100%;
	/*height: 480px;*/
	padding: 32px 64px 64px 64px;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 55;
	pointer-events: none;
	overflow: hidden;
	transition: var(--transition-simple);
}

section.type-2 .single.active {
	opacity: 1;
	pointer-events: all;
}

section.type-2 .single-bg-list {
	background-color: var(--color-dark-gray-1);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-2 .single-bg-list:after {
	content: '';
	background-color: rgba(0, 0, 0, 0.75);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-2 .single-main-parts {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

section.type-2 .single-middle-part {
	flex: 1 0 auto;
	padding-top: 64px;
}

section.type-2 .single-middle-part-1 {
	width: 707px;
	max-width: 70%;
}

section.type-2 .single-middle-part-2 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 329px;
	max-width: 30%;
	position: relative;
	top: -40px;
	right: -40px;
}

section.type-2 .single-text {
	color: var(--color-dark-gray-4);
	margin-top: 16px;
}

section.type-2 .single-back-button {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

section.type-2 .single-title {
	flex: 1 0 auto;
}

section.type-2 .single-title-list {
	position: relative;
}

section.type-2 .single-title-item {
	width: 100%;
	text-align: center;
	top: 0px;
	left: 0px;
}

section.type-2 .single-back-button-arrow {
	margin-right: 22px;
	transition: var(--transition-simple);
}

section.type-2 .single-back-button:hover .single-back-button-arrow {
	transform: translateX(-8px);
}

section.type-2 .single-back-button-text {
	color: var(--color-dark-gray-4);
	transition: var(--transition-simple);
}

section.type-2 .single-back-button:hover .single-back-button-text {
	color: var(--color-white);
}

section.type-2 .single-content-list {
	position: relative;
}

section.type-2 .single-content-item {
	top: 0px;
	left: 0px;
}

section.type-2 .single-bottom-button-item:not(:nth-last-child(1)) {
	margin-right: 8px;
}

section.type-2 .reference-button {
	position: absolute;
	left: -10000px;
}

section.type-2 .video-play-button {
	cursor: pointer;
	user-select: none;
	transition: var(--transition-simple);
}

section.type-2 .video-play-button:hover {
	transform: scale(1.1);
	opacity: 0.9;
}

section.type-2 .mobile-accordeon {
	width: calc(100% + 32px);
	position: relative;
	left: -16px;
}

section.type-2 .mobile-accordeon-item {
	padding: 32px 16px;
	position: relative;
	cursor: pointer;
	user-select: none;
}

section.type-2 .mobile-accordeon-item:not(:nth-last-child(1)) {
	border-bottom: 1px solid var(--color-dark-gray-3);
}

section.type-2 .mobile-accordeon-bg {
	margin: auto;
	position: absolute;
	inset: -200%;
}

section.type-2 .mobile-accordeon-bg:after {
	content: '';
	background-color: rgba(0, 0, 0, 0.8);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	transition: var(--transition-simple);
}

section.type-2 .mobile-accordeon-item.active .mobile-accordeon-bg:after {
	background-color: rgba(0, 0, 0, 0.7);
}

section.type-2 .mobile-accordeon-top-part {
	position: relative;
	z-index: 55;
}

section.type-2 .mobile-accordeon-top-part:before {
	content: '';
	width: calc(100% + 32px);
	height: calc(100% + 32px + 32px);
	position: absolute;
	top: -32px;
	left: -16px;
}

section.type-2 .mobile-accordeon-title-icon {
	margin-left: 16px;
	position: relative;
	top: 2px;
	transition: var(--transition-simple);
}

section.type-2 .mobile-accordeon-item.active .mobile-accordeon-title-icon {
	transform: rotate(90deg);
}

section.type-2 .mobile-accordeon-main-part {
	opacity: 0;
	max-height: 0px;
	padding-top: 0px;
	position: relative;
	overflow: hidden;
	transition: var(--transition-simple);
	transition-duration: 0.8s;
}

section.type-2 .mobile-accordeon-item.active .mobile-accordeon-main-part {
	opacity: 1;
	max-height: 100vh;
	padding-top: 32px;
}

section.type-2 .mobile-accordeon-text {
	color: var(--color-dark-gray-4);
	margin-top: 8px;
}

section.type-2 .mobile-accordeon-button-group {
	margin-top: 32px;
}

section.type-2 .mobile-accordeon-button-item:not(:nth-last-child(1)) {
	margin-bottom: 16px;
}

section.type-2 .mobile-accordeon-button-item > * {
	width: 100%;
}
/*SECTION TYPE 2 END*/

/*SECTION TYPE 3*/
section.type-3 {

}

section.type-3 .wrapper {
	padding-top: 160px;
	padding-bottom: 160px;
}

section.type-3 .part-1 {
	width: 460px;
	margin-right: 16px;
}

section.type-3 .part-2 {
	width: 560px;
	margin-left: 16px;
}

section.type-3 .table {
	margin-top: 32px;
}

section.type-3 .row {
	display: flex;
	justify-content: space-between;
}

section.type-3 .row:nth-child(even) {
	background: #141414;
}

section.type-3 .row:not(:nth-last-child(1)) {
	border-bottom: 1px solid var(--color-dark-gray-3);
}

section.type-3 .col {
	width: 50%;
	padding: 12px 16px;
}

section.type-3 .button {
	margin-top: 40px;
}

section.type-3 .tile {
	box-shadow: 0px 16px 80px 0px #000000B8;
	border: 1px solid var(--color-dark-gray-3);
	padding: 40px;
}

section.type-3 .block-list {
	width: calc(100% + 40px);
	margin-top: -40px;
	position: relative;
	left: -20px;
}

section.type-3 .block-item {
	width: calc(50% - 40px);
	margin-top: 40px;
	margin-right: 20px;
	margin-left: 20px;
}

section.type-3 .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
}

section.type-3 .title-2 {
	margin-top: 24px;
}

section.type-3 .text {
	color: var(--color-dark-gray-4);
	margin-top: 8px;
}
/*SECTION TYPE 3 END*/

/*SECTION TYPE 4*/
section.type-4 {
	max-width: 3840px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
}

section.type-4 .copy-for-container {
	visibility: hidden;
}

section.type-4 .slide-list {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-4 .slide-item {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-4 .slide-overlay-1 {
	background: linear-gradient(180deg, rgba(32, 29, 29, 0.00) 44.25%, rgba(32, 29, 29, 0.90) 90.8%);
	mix-blend-mode: multiply;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-4 .slide-overlay-2 {
	opacity: 0.5;
	background: linear-gradient(270deg, rgba(32, 29, 29, 0.80) 0%, rgba(32, 29, 29, 0.00) 32.94%, rgba(32, 29, 29, 0.00) 68.07%, #201D1D 100%);
	mix-blend-mode: multiply;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-4 .top-part {
	padding-top: 16px;
	position: relative;
}

section.type-4 .top-part:before {
	content: '';
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(4px);
	width: 200vw;
	height: 100%;
	position: absolute;
	top: 0px;
	left: -100vw;
}

section.type-4 .top-part-content {
	position: relative;
}

section.type-4 .tab-list-container {
	position: relative;
}

section.type-4 .tab-underline {
	background-color: var(--color-white);
	width: 160px;
	height: 4px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	transition: var(--transition-simple);
}

section.type-4 .tab-item {
	padding-top: 30px;
	padding-right: 16px;
	padding-bottom: 30px;
	padding-left: 16px;
	margin-right: 4px;
	margin-left: 4px;
	position: relative;
	cursor: pointer;
	user-select: none;
}

section.type-4 .tab-item-text-container {
	text-align: center;
	position: relative;
}

section.type-4 .tab-item-text-active {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	opacity: 0;
	transition: var(--transition-simple);
}

section.type-4 .tab-item.active .tab-item-text-active {
	opacity: 1;
}

section.type-4 .tab-item-text-initial {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	opacity: 1;
	margin: 0px auto;
	position: absolute;
	top: 0px;
	right: 0px;
	left: 0px;
	transition: var(--transition-simple);
}

section.type-4 .tab-item.active .tab-item-text-initial {
	opacity: 0;
}

section.type-4 .arrow-part {
	margin-top: calc(24px + 20vh);
}

section.type-4 .arrow {
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: rgba(0, 0, 0, 0.50);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	cursor: pointer;
	user-select: none;
	transition: var(--transition-simple);
}

section.type-4 .arrow:hover {
	opacity: 0.6;
}

section.type-4 .arrow svg {
	display: block;
	transform-origin: center;
}

section.type-4 .arrow:nth-child(2) svg {
	transform: rotate(180deg);
}

section.type-4 .text-part {
	display: flex;
	align-items: flex-end;
	width: 100%;
	max-width: 660px;
	height: calc(108px + 12vh);
	margin-top: 40px;
}

section.type-4 .text-list {
	position: relative;
}

section.type-4 .text-item {
	bottom: 0px;
	left: 0px;
}

section.type-4 .line-part {
	background-color: rgba(255, 255, 255, 0.25);
	width: 100%;
	height: 1px;
	max-width: 660px;
	margin-top: 24px;
	margin-bottom: 24px;
}

section.type-4 .author-part {
	margin-bottom: calc(8px + 8vh);
}

section.type-4 .author-list {
	position: relative;
}

section.type-4 .author-item {
	display: flex;
	align-items: center;
	top: 0px;
	left: 0px;
}

section.type-4 .author-avatar {
	border-radius: 50%;
	width: 48px;
	min-width: 48px;
	height: 48px;
	margin-right: 8px;
	overflow: hidden;
}

section.type-4 .author-position {
	margin-top: 2px;
}
/*SECTION TYPE 4 END*/

/*SECTION TYPE 5*/
section.type-5 {

}

section.type-5 .wrapper {
	padding-top: 104px;
	padding-bottom: 104px;
}

section.type-5 .text {
	margin-top: 24px;
}

section.type-5 .block-list {
	margin-top: 48px;
	position: relative;
}

section.type-5 .block-list:before {
	content: '';
	box-shadow: 0px 16px 80px 0px #000000B8;
	width: calc(100% - 3px);
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-5 .block-item {
	color: #ffffff;
	background-color: var(--color-dark-gray-2);
	border: 1px solid var(--color-dark-gray-3);
	width: 25%;
	padding: 24px;
	transition: var(--transition-simple);
}

section.type-5 .block-item:hover {
	background-color: var(--color-main);
	z-index: 55;
}

section.type-5 .block-item:not(:nth-child(1)) {
	margin-left: -1px;
}

section.type-5 .block-item-text {
	max-width: 194px;
	margin-right: 24px;
}

section.type-5 .block-item-arrow {
	opacity: 0.45;
	width: 15px;
	min-width: 15px;
	height: 16px;
	position: relative;
	top: 2px;
	transform-origin: center;
	transition: var(--transition-simple);
}

section.type-5 .block-item:hover .block-item-arrow {
	opacity: 1;
	transform: rotate(-45deg);
}

section.type-5.var-a {
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}

section.type-5.var-a .g__background {
	background-color: #000000;
}
/*SECTION TYPE 5 END*/

/*SECTION TYPE 6*/
section.type-6 {

}

section.type-6 .g__background {
	background-color: #141414;
}

section.type-6 .wrapper {
	padding-top: 160px;
	padding-bottom: 160px;
}

section.type-6 .top-part {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
}

section.type-6 .top-part-left {
	max-width: 760px;
}

section.type-6 .el-button {
	min-width: 200px;
}

section.type-6 .el-button-2 {
	min-width: 240px;
}

section.type-6 .block-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 40px;
}

section.type-6 .block-item {
	color: var(--color-white);
	width: calc(33.33% - 40px * 0.666);
}

section.type-6 .block-item-image {
	border: 1px solid var(--color-dark-gray-3);
	box-shadow: 0px 16px 80px 0px #000000B8;
	max-width: 100%;
	height: 280px;
	position: relative;
}

section.type-6 .block-item-image:before {
	content: '';
    background: linear-gradient(180deg, rgba(32, 29, 29, 0.00) 44.25%, rgba(32, 29, 29, 0.90) 90.8%);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 55;
    transition: var(--transition-simple);
}

section.type-6 .block-item-image:after {
	content: '';
    opacity: 0.5;
    background: linear-gradient(270deg, rgba(32, 29, 29, 0.80) 0%, rgba(32, 29, 29, 0.00) 32.94%, rgba(32, 29, 29, 0.00) 68.07%, #201D1D 100%);
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 55;
    transition: var(--transition-simple);
}

section.type-6 .block-item-date {
	color: var(--color-dark-gray-4);
	margin-top: 24px;
	margin-bottom: 8px;
}

section.type-6 .block-item-text {
	margin-top: 12px;
}

section.type-6 .block-item:nth-child(1) {
	width: 100%;
}

section.type-6 .block-item:nth-child(1) .block-item-image {
	height: 360px;
}

section.type-6 .block-item:nth-child(1) .block-item-image img {
	object-position: top center;
}

section.type-6 .block-item:hover .block-item-image:before {
	opacity: 0;
}

section.type-6 .block-item:hover .block-item-image:after {
	opacity: 0;
}

section.type-6.var-a .g__background {
	/*background-color: initial;*/
}

section.type-6.var-a .top-part-left {
	max-width: 100%;
}

section.type-6.var-a .block-item {
	/*width: calc(50% - 20px);*/
}

section.type-6.var-a .block-item:nth-child(1) .block-item-image {
	/*height: 280px;*/
}

section.type-6.var-a .block-item:nth-child(1) .block-item-image img {
	/*object-position: center;*/
}

section.type-6.var-a .block-item-link {
	margin-top: 24px;
}

section.type-6.var-a .line-part {
	background-color: rgba(255, 255, 255, 0.25);
	width: 100%;
	height: 1px;
	max-width: 100%;
	margin-top: 24px;
	margin-bottom: 24px;
}

section.type-6.var-b .wrapper {
	padding-top: 64px;
	padding-bottom: 64px;
}

section.type-6.var-b .block-item-link {
	margin-top: 24px;
}

section.type-6.var-b .g__background {
	/*background-color: initial;*/
}

section.type-6.var-b .top-part-left {
	max-width: 100%;
}

section.type-6.var-b .block-item {
	width: calc(50% - 20px);
}

section.type-6.var-b .block-item:nth-child(1) .block-item-image {
	height: 280px;
}

section.type-6.var-b .block-item:nth-child(1) .block-item-image img {
	object-position: center;
}

section.type-6.var-b .line-part {
	background-color: rgba(255, 255, 255, 0.25);
	width: 100%;
	height: 1px;
	max-width: 100%;
	margin-top: 24px;
	margin-bottom: 24px;
}

section.type-6.var-b .block-item-link {
	margin-top: 24px;
}
/*SECTION TYPE 6 END*/

/*SECTION TYPE 10*/
section.type-7 {
	overflow: hidden;
}

section.type-7 .hero-image {
	height: 388px;
}

section.type-7 .hero-image img {
	object-position: top center;
}

section.type-7 .title-info {
	background-color: #141414;
	text-align: center;
	position: relative;
}

section.type-7 .title-info .content {
	padding-top: 64px;
	padding-bottom: 64px;
	position: relative;
}

section.type-7 .title-info .el-date {
	margin-bottom: 8px;
}

section.type-7 .title-info .el-text {
	margin-top: 24px;
}

section.type-7 .main-content-info {
	position: relative;
}

section.type-7 .main-content-info .content {
	max-width: 760px;
	padding-top: 64px;
	padding-bottom: 64px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
/*SECTION TYPE 7 END*/

/*SECTION TYPE 11*/
section.type-8 {
	overflow: hidden;
}

section.type-8 .g__background {
	background-color: #141414;
}

section.type-8 .overlay-1 {
	background: linear-gradient(180deg, rgba(32, 29, 29, 0.00) 48.79%, rgba(32, 29, 29, 0.90) 90.8%);
	width: calc(100% + 33.33vw + 33.33vw);
	height: calc(115% + 64px);
	position: absolute;
	top: -64px;
	left: -33.33vw;
	pointer-events: none;
}

section.type-8 .overlay-3 {
	opacity: 0.5;
	background: #141414;
	width: 50vw;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 100%;
	pointer-events: none;
}

section.type-8 .content {
	padding-top: 64px;
	padding-bottom: 64px;
	position: relative;
}

section.type-8 .slider-outer {
	position: relative;
}

section.type-8 .slider {
	width: calc(760px + 40px);
}

section.type-8 .slider .slick-list {
	overflow: visible;
}

section.type-8 .slider-slide {
	display: block;
	width: 760px;
	height: 462px;
	margin-right: 40px;
	position: relative;
}
section.type-8 .slider-slide img {
	object-fit: cover;
	object-position: center;
	display: block;
	width: 320px;
	width: 100%;
	height: 180px;
	height: 100%;
}

section.type-8 .slider-controls {
	display: flex;
	gap: 8px;
	position: absolute;
	bottom: 8px;
	right: 8px;
	z-index: 55;
}

section.type-8 .slider-controls-button {
	border: 1px solid #3D3D44;
	background: rgba(255, 255, 255, 0.10);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

section.type-8 .slider-lightbox-controls {
	position: absolute;
	bottom: 8px;
	left: 8px;
	z-index: 55;
}

section.type-8 .slider-lightbox-controls-button {
	border: 1px solid #3D3D44;
	background: rgba(255, 255, 255, 0.10);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
/*SECTION TYPE 8 END*/

section.type-9 {
	margin-top: -130px;
	border-bottom: 1px solid var(--color-dark-gray-3);
}

section.type-9 .el-bg-1 {
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-9 .wrapper {
	padding-top: calc(80px + 130px);
	padding-bottom: calc(80px * 2);
}

section.type-9 .text {
	margin-top: 40px;
}

section.type-9.var-a .wrapper {
	padding-bottom: calc(80px * 3);
}

section.type-10 {
	margin-top: -80px;
}

section.type-10 .wrapper {
	padding-bottom: 80px;
}

section.type-10 .date {
	color: #B5B5B5;
	margin-bottom: 8px;
}

section.type-10 .text {
	margin-top: 24px;
}

section.type-10 .button {
	margin-top: 40px;
}

section.type-10 .block-list {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

section.type-10 .block-item {
	width: 100%;
}

section.type-10 .image {
	height: 319px;
}

section.type-10 .block-item .layout {
	display: flex;
	align-items: center;
	gap: 40px;
}

section.type-10 .block-item .layout .part-1 {
	width: calc(50% - 20px);
}

section.type-10 .block-item .layout .part-2 {
	width: calc(50% - 20px);
}

section.type-10 .block-item:nth-child(1) {
	border: 1px solid #333;
	background: #201D1D;
	box-shadow: 0px 16px 80px 0px rgba(0, 0, 0, 0.72);
	padding: 40px;
	position: relative;
}

section.type-10 .block-item:nth-child(1) .date {
	font-weight: 700;
	color: var(--color-main);
}

section.type-10 .block-item:nth-child(1) .image {
	height: 399px;
}

section.type-10 .block-item:not(:nth-child(1)) .title {
	font-size: 24px;
	font-weight: 700;
	line-height: 150%;
}

section.type-10 .block-item:nth-child(even) .part-2 {
	order: -1;
}

section.type-11 {
	margin-top: -130px;
	border-bottom: 1px solid var(--color-dark-gray-3);
}

section.type-11 .bg-1 {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-11 .bg-1:after {
	content: '';
	background-color: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-11 .wrapper {
	padding-top: calc(80px + 130px);
	padding-bottom: calc(80px * 2);
}

section.type-11 .back-link-outer {
	margin-bottom: 80px;
}

section.type-11 .back-link {
	display: flex;
	align-items: center;
}

section.type-11 .back-link-icon {
	margin-right: 8px;
}

section.type-11 .back-link-text {
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	color: #ffffff;
}

section.type-11 .time-and-date {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 16px;
}

section.type-11 .time-and-date-item {
	display: flex;
}

section.type-11 .time-and-date-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-right: 8px;
}

section.type-11 .plate {
	border: 1px solid #333;
	background: rgba(32, 29, 29, 0.75);
	box-shadow: 0px 16px 80px 0px rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(6px);
	padding: 24px;
}

section.type-11 .plate .layout {
	display: flex;
	align-items: center;
	gap: 48px;
}

section.type-11 .plate .layout .part-1 {
	width: calc(50% - 24px);
	position: relative;
}

section.type-11 .plate .layout .part-1:after {
	content: '';
	background-color: var(--color-dark-gray-3);
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0px;
	right: -24px;
}

section.type-11 .plate .layout .part-2 {
	width: calc(50% - 24px);
}

section.type-11 .plate .property {
	color: var(--color-dark-gray-4);
}

section.type-11 .plate .value {
	color: var(--color-main);
	margin-top: 8px;
}

section.type-11 .main-info-layout {
	display: flex;
	align-items: center;
	gap: 40px;
}

section.type-11 .main-info-layout > .part-1 {
	width: calc(100% - 465px - 40px);
}

section.type-11 .main-info-layout > .part-2 {
	width: 465px;
}

section.type-11.var-a {

}

section.type-11.var-a .wrapper {
	padding-top: calc(80px + 130px - 32px);
	padding-bottom: 80px;
}

section.type-11.var-a .back-link-outer {
	margin-bottom: 32px;
}

section.type-11.var-a .time-and-date {
	margin-top: 32px;
}

section.type-11.var-a .date {
	margin-bottom: 8px;
}

section.type-11.var-a .date {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--color-main);
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 8px;
	position: relative;
}

section.type-11.var-a .date-p {
	position: relative;
}

section.type-11.var-a .date-p:not(:nth-last-child(1)):after {
	content: '';
	background-color: var(--color-main);
	border-radius: 50%;
	width: 2px;
	height: 2px;
	margin: auto 0px;
	position: absolute;
	top: 0px;
	right: -10px;
	bottom: 0px;
}

section.type-12 {
	margin-top: -80px;
}

section.type-12 .plate {
	border: 1px solid #333;
	background: rgba(32, 29, 29, 0.75);
	box-shadow: 0px 16px 80px 0px rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(6px);
	padding: 40px;
	position: relative;
}

section.type-12 .plate .block-list {
	display: flex;
	gap: 40px;
}

section.type-12 .plate .block-list .block-item {
	width: 25%;
}

section.type-12 .property {
	color: var(--color-dark-gray-4);
}

section.type-12 .value {
	margin-top: 8px;
}

section.type-13 {
	color: var(--color-dark-gray-4);
}

section.type-13 .wrapper {
	padding-top: 80px;
	padding-bottom: 80px;
}

section.type-nav {
	width: 100%;
	position: sticky;
	top: 98px;
	left: 0px;
	z-index: 99;
	pointer-events: none;
}

section.type-nav .plate-outer {
	display: flex;
	justify-content: center;
}

section.type-nav .plate {
	border: 1px solid #333;
	background: rgba(0, 0, 0, 0.65);
	box-shadow: 0px 16px 80px 0px rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(6px);
	padding: 4px;
	position: relative;
}

section.type-nav .plate .button-list {
	display: flex;
	gap: 4px;
}

section.type-nav .plate .button-item {
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	text-align: center;
	color: #ffffff;
	min-width: 200px;
	padding: 4px 16px;
	cursor: pointer;
	pointer-events: all;
	transition: var(--transition-simple);
}

section.type-nav .plate .button-item:hover,
section.type-nav .plate .button-item.active {
	background-color: var(--color-main);
}

section.type-14 .wrapper {
	padding-top: 80px;
	padding-bottom: 80px;
}

section.type-14 .title {
	margin-bottom: 40px;
}

section.type-14 .avatar {
	width: 100%;
	height: 144px;
}

section.type-14 .plate {
	border: 1px solid var(--Dark-Gray-3, #333);
	background: rgba(32, 29, 29, 0.75);
	box-shadow: 0px 16px 80px 0px rgba(0, 0, 0, 0.72);
	backdrop-filter: blur(6px);
	padding: 40px;
}

section.type-14 .plate > .layout {
	display: flex;
	gap: 40px;
}

section.type-14 .plate > .layout .part-1 {
	width: 240px;
}

section.type-14 .plate > .layout .part-2 {
	width: calc(100% - 240px - 40px);
}

section.type-14 .table {

}

section.type-14 .row {
	display: flex;
	justify-content: space-between;
}

section.type-14 .row:nth-child(even) {
	background: #141414;
}

section.type-14 .row:not(:nth-last-child(1)) {
	border-bottom: 1px solid var(--color-dark-gray-3);
}

section.type-14 .col {
	width: 50%;
	padding: 12px 16px;
}

section.type-14 .col:nth-child(1) {
	width: 170px;
}

section.type-14 .col:nth-child(1) .g__text {
	color: var(--color-dark-gray-4);
}

section.type-14 .col:nth-child(2) {
	width: calc(100% - 170px);
}

section.type-15 .wrapper {
	padding-top: 80px;
	padding-bottom: 80px;
}

section.type-15 .title {
	margin-bottom: 40px;
}

section.type-15 .parts > .layout {
	display: flex;
	gap: 140px;
}

section.type-15 .parts > .layout .part-1 {
	width: 460px;
}

section.type-15 .parts > .layout .part-2 {
	width: calc(100% - 460px - 140px);
}

section.type-15 .photo {
	border: 1px solid #333;
	box-shadow: 0px 16px 80px 0px rgba(0, 0, 0, 0.72);
	width: 100%;
	height: 100%;
}

section.type-15 .table {

}

section.type-15 .row {
	display: flex;
	justify-content: space-between;
}

section.type-15 .row:nth-child(even) {
	background: #141414;
}

section.type-15 .row:not(:nth-last-child(1)) {
	border-bottom: 1px solid var(--color-dark-gray-3);
}

section.type-15 .col {
	width: 50%;
	padding: 12px 16px;
}

section.type-15 .col:nth-child(1) {
	width: 200px;
}

section.type-15 .col:nth-child(1) .g__text {
	color: var(--color-dark-gray-4);
}

section.type-15 .col:nth-child(2) {
	width: calc(100% - 200px);
}

section.type-16 .bg-el {
	border-bottom: 1px solid var(--Dark-Gray-3, #333);
	background: linear-gradient(0deg, #000 0%, #201D1D 100%);
	width: 100%;
	height: 335px;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-16 .wrapper {
	padding-top: 80px;
	padding-bottom: 80px;
}

section.type-16 .top-part > .layout {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section.type-16 .top-part > .layout .part-2 {
	width: 465px;
}

section.type-16 .plate {
	background: linear-gradient(180deg, #FF5D20 0%, #D33A00 100%);
	padding: 24px;
}

section.type-16 .plate .layout {
	display: flex;
	align-items: center;
	gap: 48px;
}

section.type-16 .plate .layout .part-1 {
	width: calc(50% - 24px);
	position: relative;
}

section.type-16 .plate .layout .part-1:after {
	content: '';
	background-color: rgba(0, 0, 0, 0.25);
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0px;
	right: -24px;
}

section.type-16 .plate .layout .part-2 {
	width: calc(50% - 24px);
}

section.type-16 .plate .property {
	color: #000000;
}

section.type-16 .plate .value {
	color: #000000;
	margin-top: 8px;
}

section.type-16 .main-part {
	margin-top: 40px;
}

section.type-16 .plate-2 {
	border: 1px solid var(--Dark-Gray-3, #333);
	background: var(--Dark-Gray-1, #201D1D);
	box-shadow: 0px 16px 80px 0px rgba(0, 0, 0, 0.72);
	padding: 40px;
}

section.type-16 .plate-2 > .layout {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

section.type-16 .plate-2 > .layout .part-1 {
	width: 432px;
}

section.type-16 .plate-2 > .layout .part-2 {
	width: 608px;
	position: relative;
}

section.type-16 .button {
	position: absolute;
	bottom: 24px;
	left: 24px;
}

section.type-16 .bg-image {
	width: 608px;
	height: 368px;
	position: relative;
}

section.type-16 .bg-image svg,
section.type-16 .bg-image img {
	display: block;
	width: 100%;
	height: auto;
}

section.type-16 .block-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

section.type-16 .block-item {
	width: 100%;
}

section.type-16 .block-item-property {
	color: var(--color-dark-gray-4);
	margin-bottom: 8px;
}

section.type-17 .image {
	border: 1px solid #333;
	box-shadow: 0px 16px 80px 0px rgba(0, 0, 0, 0.72);
	width: 100%;
	height: 480px;
}

section.type-18 {
	
}

section.type-18 .g__background {
	border-top: 1px solid var(--Dark-Gray-3, #333);
	border-bottom: 1px solid var(--Dark-Gray-3, #333);
	background: var(--Black, #000);
}

section.type-18 .wrapper {
	padding-top: 104px;
	padding-bottom: 104px;
}

section.type-18 .block-list {
	display: flex;
	align-items: center;
	gap: 40px;
}

section.type-18 .block-item {
	width: calc(50% - 25px);
}

section.type-18 .image {
	max-height: 338px;
}

section.type-18 .image img {
	max-height: 338px;
}

section.type-18 .text {
	margin-top: 24px;
}

section.type-18 .button {
	margin-top: 40px;
}

/*SECTION TYPE 19*/
section.type-19 {
	margin-top: -260px;
	/*overflow: hidden;*/
}

section.type-19 .g__background {
	background-color: var(--color-space-2);
}

section.type-19 .line-1 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: 0px;
}

section.type-19 .line-2 {
	width: 1px;
	height: 100%;
	top: 0px;
	right: 0px;
}

section.type-19 .line-3 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	top: 0px;
	left: -33.33vw;
}

section.type-19 .line-4 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	top: calc(100% - 10px);
	left: -33.33vw;
}

section.type-19 .content {
	padding-top: 80px;
	padding-bottom: 40px;
	position: relative;
}

section.type-19 .el-title {
	position: relative;
}

section.type-19 .block-list-outer {
	margin-top: 40px;
	position: relative;
}

section.type-19 .block-list {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 8px + 8px);
	margin-top: -40px;
	position: relative;
	left: -8px;
}

section.type-19 .block-item {
	color: var(--color-white);
	box-shadow: 0px 16px 80px 0px rgba(0, 0, 0, 0.72);
	border: 1px solid var(--Dark-Gray-3, #333);
	background: var(--Dark-Gray-1, #201D1D);
	align-items: center;
	width: calc(33.33% - 8px - 8px);
	margin-top: 16px;
	margin-right: 8px;
	margin-left: 8px;
}

section.type-19 .block-item .part-1 {
	display: block;
	height: calc(160px + 40px);
	padding: 40px;
	padding-bottom: initial;
	overflow: hidden;
}

section.type-19 .block-item .image img {
	transition: var(--transition-simple);
}

section.type-19 .block-item:hover .image img {
	opacity: 0.7;
}

section.type-19 .block-item .part-2 {
	padding: 40px;
}

section.type-19 .block-item .title {
	font-size: 24px;
	font-weight: 700;
	line-height: 125%;
	color: var(--color-white);
}

section.type-19 .block-item .date {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--color-main);
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 8px;
	position: relative;
}

section.type-19 .block-item .date-p {
	position: relative;
}

section.type-19 .block-item .date-p:not(:nth-last-child(1)):after {
	content: '';
	background-color: var(--color-main);
	border-radius: 50%;
	width: 2px;
	height: 2px;
	margin: auto 0px;
	position: absolute;
	top: 0px;
	right: -10px;
	bottom: 0px;
}

section.type-19 .block-item .description {
	color: var(--color-dark-gray-4);
	margin-top: 24px;
}

section.type-19 .block-item:nth-child(1) {
	display: flex;
	flex-wrap: wrap;
	width: calc(66.66% - 8px - 8px);
}

section.type-19 .block-item:nth-child(1) .part-1 {
	order: 2;
	width: 50%;
	height: 100%;
	padding-bottom: 40px;
}

section.type-19 .block-item:nth-child(1) .part-2 {
	order: 1;
	width: 50%;
	padding-right: initial;
}

section.type-19 .block-item:nth-child(1) .title {
	font-size: 48px;
}

section.type-19 .block-item:not(:nth-child(1)):not(:nth-child(2)) {
	display: none;
}

section.type-19 .button {
	text-align: center;
	margin-top: 40px;
}
/*SECTION TYPE 19 END*/

/*SECTION TYPE 20*/
section.type-20 {
	overflow: hidden;
}

section.type-20 .g__background {
	background-color: var(--color-space-1);
}

section.type-20 .content {
	padding-top: 80px;
	padding-bottom: 80px;
	position: relative;
}

section.type-20 .el-title {
	position: relative;
}

section.type-20 .block-list-outer {
	margin-top: 40px;
	position: relative;
}

section.type-20 .block-list {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px + 20px);
	margin-top: -40px;
	position: relative;
	left: -20px;
}

section.type-20 .block-item {
	color: var(--color-white);
	width: calc(33.33% - 20px - 20px);
	margin-top: 40px;
	margin-right: 20px;
	margin-left: 20px;
}

section.type-20 .block-item .part-1 {
	display: block;
	height: 160px;
	overflow: hidden;
}

section.type-20 .block-item .image img {
	transition: var(--transition-simple);
}

section.type-20 .block-item:hover .image img {
	opacity: 0.7;
}

section.type-20 .block-item .part-2 {
	margin-top: 40px;
}

section.type-20 .block-item .title {
	font-size: 24px;
	font-weight: 700;
	line-height: 125%;
	color: var(--color-white);
}

section.type-20 .block-item .date {
	overflow: hidden;
	color: var(--color-dark-gray-4, #B5B5B5);
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 8px;
	position: relative;
}

section.type-20 .block-item .date-p:not(:nth-last-child(1)):after {
	content: '';
	background-color: var(--color-main);
	border-radius: 50%;
	width: 2px;
	height: 2px;
	margin: auto 0px;
	position: absolute;
	top: 0px;
	right: -10px;
	bottom: 0px;
}

section.type-20 .block-item .description {
	color: var(--color-dark-gray-4, #B5B5B5);
	margin-top: 24px;
}

section.type-20.var-a .content {
	padding-top: initial;
}

section.type-20.var-b {
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}

section.type-20.var-b .g__background {
	background-color: #000;
}

section.type-20.var-b .el-title-container {
	display: flex;
	gap: 40px;
}

section.type-20.var-b .el-text {
	margin-top: 24px;
}
/*SECTION TYPE 20 END*/

/*SECTION TYPE 21*/
section.type-21 {
	overflow: hidden;
}

section.type-21 .overlay-1 {
	opacity: 0.9;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 48.79%, rgba(0, 0, 0, 0.95) 90.8%);
	width: 100%;
	height: 280px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	pointer-events: none;
}

section.type-21 .wrapper {
	padding-top: initial;
	padding-bottom: 80px;
}

section.type-21 .content {
	position: relative;
}

section.type-21 .slider-outer {
	position: relative;
}

section.type-21 .slider {
	/*width: calc(760px + 40px);*/
	width: 100%;
}

section.type-21 .slider .slick-list {
	/*overflow: visible;*/
}

section.type-21 .slider-slide {
	display: block;
	width: 100%;
	height: 580px;
	/*margin-right: 40px;*/
	position: relative;
}
section.type-21 .slider-slide img {
	object-fit: cover;
	object-position: center;
	display: block;
	/*width: 320px;*/
	width: 100%;
	/*height: 180px;*/
	height: 100%;
}

section.type-21 .slider-controls {
	display: flex;
	gap: 8px;
	position: absolute;
	bottom: 8px;
	right: 8px;
	z-index: 55;
}

section.type-21 .slider-controls-button {
	border: 1px solid #3D3D44;
	background: rgba(255, 255, 255, 0.10);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

section.type-21 .slider-lightbox-controls {
	position: absolute;
	bottom: 8px;
	left: 8px;
	z-index: 55;
}

section.type-21 .slider-lightbox-controls-button {
	border: 1px solid #3D3D44;
	background: rgba(255, 255, 255, 0.10);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
/*SECTION TYPE 21 END*/

.for-mobile {
	display: none;
}

.for-desktop {
	display: block;
}

@media screen and (max-width: 1279px) {
	.for-mobile {
		display: block;
	}

	.for-desktop {
		display: none !important;
	}

	.wrapper {
		padding-right: 16px;
		padding-left: 16px;
	}

	.g__text.type-h1, h1 {
		font-size: 48px;
		font-weight: 600;
		line-height: 58px;
		letter-spacing: 0em;
	}

	.g__text.type-h2, h2 {
		font-size: 48px;
		font-weight: 600;
		line-height: 58px;
		letter-spacing: 0em;
	}

	.g__text.type-h3, h3 {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
		letter-spacing: 0em;
	}

	.g__text.type-p, p {
		font-size: 16px;
		font-weight: 400;
		line-height: 24px;
		letter-spacing: 0em;
	}

	.g__text.type-1 {
		font-size: 16px;
		font-weight: 600;
		line-height: 24px;
		letter-spacing: 0em;
	}

	.g__text.type-2 {
		font-size: 20px;
		font-weight: 600;
		line-height: 30px;
		letter-spacing: 0em;
	}

	.g__text.type-3 {
		font-size: 16px;
		font-weight: 700;
		line-height: 19px;
		letter-spacing: 0.1em;
		text-transform: uppercase;
	}

	.g__text.type-4 {
		font-size: 32px;
		font-weight: 700;
		line-height: 38px;
		letter-spacing: 0em;
	}

	.g__text mark {
		background-color: initial;
		color: var(--color-main);
	}

	.g__text a {
		color: var(--color-main);
		text-decoration: underline;
	}

	header .wrapper {
		padding-top: 16px;
		padding-bottom: 16px;
	}

	footer .part-group {
		flex-wrap: wrap;
		justify-content: center !important;
		align-items: initial;
	}

	footer .socials {
		order: 0;
		justify-content: center;
		width: 100%;
	}

	footer .logo {
		order: 1;
		margin-top: 16px;
	}

	footer .copyrights {
		order: 2;
		margin-top: 16px;
	}

	section.type-1 {
		margin-top: -98px;
	}

	section.type-1 .wrapper {
		padding-top: 16px;
	}

	section.type-1 .special-container-1 {
		padding-bottom: 64px;
		position: relative;
	}

	section.type-1 .image-for-mobile {
		border-bottom: 1px solid var(--color-dark-gray-3);
		width: calc(100% + 16px + 16px);
		height: calc(100% + 126px);
		position: absolute;
		top: -135px;
		left: -16px;
	}

	section.type-1 .image-for-mobile:after {
		content: '';
		background-color: rgba(0, 0, 0, 0.5);
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0px;
		left: 0px;
	}

	section.type-1 .title-part {
		margin-top: 120px;
	}

	section.type-1 .video-part {
		height: initial;
		aspect-ratio: 1/0.801;
		margin-top: 24px;
	}

	section.type-1 .text-container {
		flex-wrap: wrap;
		margin-top: calc(32px + 24px);
	}

	section.type-1 .text-part {
		width: 100%;
	}

	section.type-1 .text-button-part {
		width: 100%;
		margin-top: 40px;
	}

	section.type-1 .text-button-part > * {
		width: 100%;
	}

	section.type-1 .text-2 {
		max-width: 100%;
	}

	section.type-2 {
		overflow: hidden;
	}

	section.type-2 .wrapper {
		padding-top: 32px;
	}

	section.type-2 .main-container {
		opacity: 0.6;
		filter: grayscale(100%);
		pointer-events: none;
	}

	section.type-2 .main-container .g__text {
		display: none;
	}

	section.type-2 .main-container svg {
		display: none;
	}

	section.type-3 .wrapper {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	section.type-3 .part-list {
		flex-wrap: wrap;
	}

	section.type-3 .part-1 {
		width: 100%;
		margin-right: initial;
	}

	section.type-3 .part-2 {
		width: 100%;
		margin-top: 40px;
		margin-left: initial;
	}

	section.type-3 .table {
		margin-top: 16px;
	}

	section.type-3 .tile {
		padding: 24px;
	}

	section.type-3 .block-list {
		width: 100%;
		left: initial;
	}

	section.type-3 .block-item {
		width: 100%;
		margin-right: initial;
		margin-left: initial;
	}

	section.type-3 .button-2 {
		margin-top: 40px;
	}

	section.type-3 .button-2 > * {
		width: 100%;
	}

	section.type-4 .top-part-content {
		flex-wrap: wrap;
	}

	section.type-4 .tab-list-container {
		margin-top: 8px;
		overflow-y: auto;
	}

	section.type-4 .tab-item {
		white-space: nowrap;
		margin-left: initial;
		margin-right: initial;
	}

	section.type-4 .arrow-part {
		display: none;
	}

	section.type-4 .text-part {
		margin-top: calc(40px + 38vh);
	}

	section.type-4 .line-part {
		margin-top: 16px;
		margin-bottom: 16px;
	}

	section.type-4 .author-part {
		margin-bottom: 32px;
	}

	section.type-4 .author-avatar {
		margin-right: 16px;
	}

	section.type-5 {
		overflow: hidden;
	}

	section.type-5 .wrapper {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	section.type-5 .text {
		margin-top: 16px;
	}

	section.type-5 .block-list {
		display: block;
		margin-top: 32px;
	}

	section.type-5 .block-list:before {
		width: 100%;
	}

	section.type-5 .block-item {
		width: 100%;
	}

	section.type-5 .block-item:not(:nth-child(1)) {
		margin-top: -1px;
	    margin-left: initial;
	}

	section.type-5 .block-item-text {
		max-width: initial;
	}

	section.type-6 .wrapper {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	section.type-6 .top-part {
		display: block;
		margin-top: 32px;
	}

	section.type-6 .top-part-right {
		margin-top: 40px;
	}

	section.type-6 .el-button {
		width: 100%;
	}

	section.type-6 .block-item {
		width: 100%;
	}

	section.type-6.var-b .block-item {
		width: 100%;
	}

	section.type-8 .slider {
		width: 320px;
	}

	section.type-8 .slider-slide {
		width: 320px;
		margin-right: 16px;
	}

	section.type-8 .overlay-3 {
		display: none;
	}

	section.type-10 .block-item .layout {
		flex-wrap: wrap;
	}

	section.type-10 .block-item .layout .part-1 {
		width: 100%;
	}

	section.type-10 .block-item .layout .part-2 {
		width: 100%;
	}

	section.type-10 .block-item:nth-child(1) {
		padding: 16px;
	}

	section.type-10 .block-item:nth-child(1) .image {
		height: 319px;
	}

	section.type-10 .block-item:nth-child(even) .part-2 {
		order: initial;
	}

	section.type-11 .back-link-outer {
		margin-bottom: 40px;
	}

	section.type-11 .wrapper {
		padding-top: calc(40px + 130px);
	}

	section.type-11 .plate {
		padding: 16px;
	}

	section.type-11 .main-info-layout {
		flex-wrap: wrap;
	}

	section.type-11 .main-info-layout > .part-1 {
		width: 100%;
	}

	section.type-11 .main-info-layout > .part-2 {
		width: 100%;
	}

	section.type-12 .plate {
		padding: 16px;
	}

	section.type-12 .plate .block-list {
		flex-wrap: wrap;
	}

	section.type-12 .plate .block-list .block-item {
		width: 100%;
	}

	section.type-nav .plate {
		width: 100%;
	}

	section.type-nav .plate .button-item {
		min-width: initial;
		flex: 1 0 auto;
	}

	section.type-14 .wrapper {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	section.type-14 .plate {
		padding: 16px;
	}

	section.type-14 .plate > .layout {
		flex-wrap: wrap;
	}

	section.type-14 .plate > .layout .part-1 {
		width: 100%;
	}

	section.type-14 .plate > .layout .part-2 {
		width: 100%;
	}

	section.type-14 .row {
		overflow: hidden;
		overflow-x: auto;
	}

	section.type-14 .col:nth-child(1) {
		width: 50%;
	}

	section.type-14 .col:nth-child(2) {
	    width: 50%;
	}

	section.type-15 .wrapper {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	section.type-15 .parts > .layout {
		flex-wrap: wrap;
		gap: 40px;
	}

	section.type-15 .parts > .layout .part-1 {
		width: 100%;
	}

	section.type-15 .parts > .layout .part-2 {
		width: 100%;
	}

	section.type-15 .row {
		overflow: hidden;
		overflow-x: auto;
	}

	section.type-15 .col:nth-child(1) {
		width: 50%;
	}

	section.type-15 .col:nth-child(2) {
	    width: 50%;
	}

	section.type-15 .photo {
		height: 144px;
	}

	section.type-16 .wrapper {
		padding-top: 40px;
		padding-bottom: 80px;
	}

	section.type-16 .bg-el {
		height: 50%;
	}

	section.type-16 .top-part > .layout {
		flex-wrap: wrap;
		gap: 40px;
	}

	section.type-16 .top-part > .layout .part-1 {
		width: 100%;
	}

	section.type-16 .top-part > .layout .part-2 {
		width: 100%;
	}

	section.type-16 .plate-2 {
		padding: 16px;
	}

	section.type-16 .plate-2 > .layout {
		flex-wrap: wrap;
	}

	section.type-16 .plate-2 > .layout .part-1 {
		width: 100%;
	}

	section.type-16 .plate-2 > .layout .part-2 {
		width: 100%;
	}

	section.type-16 .bg-image {
		width: 100%;
		height: auto;
	}

	section.type-16 .button {
		bottom: 16px;
		left: 16px;
	}

	section.type-17 .wrapper {
		padding-bottom: 40px;
	}

	section.type-17 .image {
		width: 100%;
		height: auto;
	}

	section.type-18 .wrapper {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	section.type-18 .block-list {
		flex-wrap: wrap;
	}

	section.type-18 .block-item {
		width: 100%;
	}

	section.type-18 .block-item-1 {
		order: 1;
	}

	section.type-18 .block-item-2 {
		order: 2;
	}

	section.type-19 .block-item:nth-child(1) {
		width: 100%;
	}

	section.type-19 .block-list {
		width: 100%;
		left: initial;
	}

	section.type-19 .block-item {
		width: 100%;
		margin-right: initial;
		margin-left: initial;
	}

	section.type-19 .block-item .part-1 {
		padding: 24px 24px 0px 24px
	}

	section.type-19 .block-item .part-2 {
		padding: 40px 24px 24px 24px;
	}

	section.type-19 .block-item:nth-child(1) .part-1 {
		order: 1;
		width: 100%;
		padding-bottom: initial;
		height: auto;
	}

	section.type-19 .block-item:nth-child(1) .part-2 {
		order: 2;
		width: 100%;
	}

	section.type-20 .block-list {
		width: 100%;
		left: initial;
	}

	section.type-20 .block-item {
		width: 100%;
		margin-right: initial;
		margin-left: initial;
	}

	section.type-20.var-b .el-title-container {
		flex-wrap: wrap;
	}

	section.type-20.var-b .el-title-container .part-1 {
		width: 100%;
	}

	section.type-20.var-b .el-title-container .part-2 {
		width: 100%;
	}

	section.type-20.var-b .el-title-container .part-2 .g__button {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	
}