/*COMMONS*/
:root {
	--color-main: #FBB36A;
	--color-space-1: #141621;
	--color-space-2: #262733;
	--color-space-3: #34353E;
	--color-metal: #B3B3B3;
	--color-silver: #7E859F;
	--color-gold: #FBB36A;
	--color-white: #ffffff;

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

::-moz-selection {
	color: #ffffff;
	background: rgba(251, 179, 106, 0.5);
}

::selection {
	color: #ffffff;
	background: rgba(251, 179, 106, 0.5);
}

body {
	font-family: 'Urbanist', sans-serif;
	/*font-family: 'Charis SIL', serif;*/
	font-weight: 400;
	color: var(--color-white);
	background-color: var(--color-space-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-black);
}
 
body::-webkit-scrollbar-thumb {
	background-color: var(--color-accent);
}

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

.grecaptcha-badge {
	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-main {
	color: var(--color-main);
}

.g__color-black {
	color: var(--color-black);
}

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

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

.g__text.type-h1, h1 {
	font-family: 'Charis SIL', serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 125%;
}

.g__text.type-h2, h2 {
	font-family: 'Charis SIL', serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 125%;
}

.g__text.type-h3, h3 {
	font-family: 'Charis SIL', serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 150%;
}

.g__text.type-h3.var-a {
	font-weight: 400;
}

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

.g__text.type-h5, h5 {
	font-size: 16px;
	font-weight: 700;
	line-height: 187%;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.g__text.type-p, p {
	font-size: 20px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.4px;
}

.g__text.type-body-2 {
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.32px;
}

.g__text.type-1 {
	font-family: 'Charis SIL', serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 125%;
}

.g__text.type-2 {
	font-family: 'Charis SIL', serif;
	font-size: 56px;
	font-weight: 700;
	line-height: 125%;
}

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

.g__text a {
	text-decoration: underline;
}

.g__text i {
	font-style: italic;
}

.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;

	cursor: pointer;
}

.g__button-inner {
	padding-right: 40px;
	padding-left: 40px;
	position: relative;
	transition: var(--transition-simple);
}

.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;
	position: relative;
	z-index: 55;
	transition: var(--transition-simple);
}

.g__button.var-disabled {
	pointer-events: none;
}

.g__button.var-disabled .g__button-inner {
	opacity: 0.8;
	filter: grayscale(100%);
}

.g__button.var-disabled-2 {
	pointer-events: none;
}

.g__button.var-disabled-2 .g__button-inner {
	opacity: 0.8;
	pointer-events: none;
}

.g__button.type-1 {
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.5px;
	color: var(--color-space-2);
}

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

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

.g__button.type-1 .g__button-frame:after {
	content: '';
	background-color: var(--color-white);
	width: 0%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	transition: var(--transition-simple);
}

.g__button.type-1:hover .g__button-frame:after {
	width: 100%;
}

.g__button.type-1 .g__button-text {

}

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

.g__button.type-1.var-a .g__button-frame {
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid var(--color-main);
}

.g__button.type-1.var-a:hover {
	color: var(--color-space-2);
}

.g__button.type-1.var-a:hover .g__button-frame {
	border-color: var(--color-white);
}
/*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 .g__link-text {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.4px;
	color: var(--color-main);
	position: relative;
}

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

.g__link.type-1 .g__link-icon > * {
	display: block;
}

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

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

.g__link.type-1.var-b .g__link-text {
	font-size: 16px;
}

/*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*/

.g__line {
	background-color: var(--color-metal);
	opacity: 0.2;
	position: absolute;
}

.g__scroll {
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
}

.g__scroll svg {
	display: block;
}

/*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;
}

.pop-up.form-pop-up {

}

.pop-up.form-pop-up .g__background {
	background-color: rgba(0, 0, 0, 0.66);
}

.pop-up.form-pop-up .pop-up-inner {
	perspective: 900px;
}

.pop-up.form-pop-up .content {
	background-color: var(--color-space-1);
	width: 100%;
	max-width: 640px;
	transform-origin: center;
}

.pop-up.form-pop-up .close-button {
	position: relative;
	width: 20px;
	height: 20px;
}

.pop-up.form-pop-up .close-button svg {
	fill: var(--color-white);
	display: block;
	max-width: 100%;
	height: auto;

	transition: var(--transition-simple);
}

.pop-up.form-pop-up .close-button:hover svg {
	fill: var(--color-main);
}

.pop-up.form-pop-up .content-inner {
	border: 1px solid var(--color-space-2);
	padding: 48px;
	position: relative;
}

.pop-up.form-pop-up .line {
	background-color: var(--color-space-2);
	position: absolute;
}

.pop-up.form-pop-up .line-1 {
	width: 100%;
	height: 1px;
	top: 48px;
	left: 0px;
}

.pop-up.form-pop-up .line-2 {
	width: 1px;
	height: 100%;
	top: 0px;
	right: 48px;
}

.pop-up.form-pop-up .line-3 {
	width: 100%;
	height: 1px;
	bottom: 48px;
	left: 0px;
}

.pop-up.form-pop-up .line-4 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: 48px;
}

.pop-up.form-pop-up .top-part {
	display: flex;
	justify-content: space-between;
	padding-right: 8px;
	margin-top: 8px;
}

.pop-up.form-pop-up .el-text {
	color: var(--color-metal);
	margin-top: 16px;
}

.pop-up.form-pop-up .form-part {
	margin-top: 24px;
	position: relative;
}

.pop-up.form-pop-up .form-part.loading {
	opacity: 0.5;
	pointer-events: none;
	transition: var(--transition-simple);
}

.pop-up.form-pop-up .input-row:not(:nth-child(1)) {
	margin-top: 16px;
}

.pop-up.form-pop-up .input-row.button-row:not(:nth-child(1)) {
	margin-top: 24px;
}

.pop-up.form-pop-up .input-container {
	position: relative;
	overflow: hidden;
}

.pop-up.form-pop-up .input-container input {
	font-family: 'Urbanist', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: initial;
	color: var(--color-white);
	opacity: 1;
	background: var(--color-space-2);
	border: initial;
	border-radius: initial;
	outline: none;
	display: block;
	width: 100%;
	padding: 16px 16px 16px 16px;
	letter-spacing: 0.4px;

	caret-color: var(--color-main);
}

.pop-up.form-pop-up .input-container input::placeholder,
.pop-up.form-pop-up .input-container textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.pop-up.form-pop-up .input-container:after {
	content: '';
	background-color: var(--color-main);
	opacity: 0.75;
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 55;
	transform: translateY(1px);
	transition: var(--transition-simple);
}

.pop-up.form-pop-up .input-container.focused:after {
	opacity: 1;
	transform: translateY(0px);
}

.pop-up.form-pop-up .input-container.filled:after {
	opacity: 1;
}

.pop-up.form-pop-up .input-container.error:after {
	background-color: #FDE0E0;
}

.pop-up.form-pop-up .el-button {
	width: 300px;
	max-width: 100%
}

.pop-up.form-pop-up .message {
	color: #FDE0E0;
	margin-top: 4px;
}

.pop-up.form-pop-up .message.success {
	color: #D4EEDD;
}

.pop-up.form-pop-up .message-1 {
	margin-top: 16px;
}
/*POP UP 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 p img {
	margin-top: 56px;
	margin-bottom: 56px;
}

.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-family: 'Charis SIL', serif;
	font-size: 24px;
	font-style: italic;
	font-weight: 700;
	line-height: 150%;
	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 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 {
	aspect-ratio: 2/1;
	width: 100%;
	height: auto;
	margin-top: 80px;
	margin-bottom: 80px;
}

.g__wysiwyg_editor p iframe,
.g__wysiwyg_editor p video {
	margin-top: 56px;
	margin-bottom: 56px;
}

.g__wysiwyg_editor .wp-video {
	margin-top: 80px;
	margin-bottom: 80px;
}

.g__wysiwyg_editor .wp-video video {
	margin-top: initial;
	margin-bottom: initial;
}
/*TEXT EDITOR END*/

.g__checkbox {
	display: inline-block;
	position: relative;
	cursor: pointer;
}

.g__checkbox-original {
	opacity: 0;
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
	position: absolute;
	top: 0px;
	left: 0px;
	cursor: pointer;
}

.g__checkbox-visual {
	border: 2px solid var(--color-main);
	border-radius: 4px;
	width: 18px;
	height: 18px;
	pointer-events: none;
	transition: var(--transition-simple);
}

.g__checkbox-visual:after {
	content: '';
	opacity: 0;
	background-color: var(--color-main);
	border-radius: 2px;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	margin: auto;
	position: absolute;
	inset: 0px;
	transition: var(--transition-simple);
}

.g__checkbox-original:checked + .g__checkbox-visual:after {
	opacity: 1;
}

/*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;

	transition: 0.3s;
}

.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-main);
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;

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

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

header .g__background {
	background: rgba(20, 22, 33, 0.75);
	backdrop-filter: blur(6px);
}

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

header .line {
	width: calc(100% + 30vw + 30vw);
	height: 1px;
	bottom: 0px;
	left: -30vw;
}

header .header-block-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .header-menu ul {
	display: flex;
	align-items: center;
	gap: 32px;
}

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

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

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

header.on-home-page {
	opacity: 0;
	position: fixed;
	pointer-events: none;
	/*transform: translateY(-100px);*/
	transition: var(--transition-simple);
}

header.on-home-page.not-at-top {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0px);
}
/*HEADER 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-space-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 END*/

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

footer .g__background {
	background-color: var(--color-space-2);
}

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

footer .part-1 {
	display: flex;
	align-items: center;
}

footer .el-logo {
	width: 160px;
	margin-right: 32px;
}

footer .el-logo svg {
	display: block;
	max-width: 100%;
}

footer .line-1 {
	width: calc(100% + 30vw + 30vw);
	height: 1px;
	top: 0px;
	left: -30vw;
}

footer .nav ul {
	display: flex;
}

footer .nav ul li {
	position: relative;
}

footer .nav ul li:not(:nth-last-child(1)) {
	margin-right: 52px;
}

footer .nav ul li:not(:nth-last-child(1)):after {
	content: '';
	background-color: var(--color-metal);
	border-radius: 50%;
	width: 4px;
	height: 4px;
	margin: auto 0px;
	position: absolute;
	top: 0px;
	right: -29px;
	bottom: 0px;
}

footer .nav ul li a {
	font-size: 16px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: 0.32px;
	color: var(--color-main);
	transition: var(--transition-simple);
}

footer .nav ul li a:hover {
	color: var(--color-white);
}
/*FOOTER END*/
/*COMMONS END*/

/*SECTION TYPE 1*/
@keyframes scroll-tip {
    0% {
    	opacity: 1;

    	transform: translateY(0px);
    }

    20% {
    	opacity: 1;

    	transform: translateY(0px);
    }

    50% {
    	opacity: 0;

    	transform: translateY(41px);
    }

    51% {
    	opacity: 0;

    	transform: translateY(-8px);
    }

    68% {
    	opacity: 1;

    	transform: translateY(0px);
    }

    100% {
    	opacity: 1;

    	transform: translateY(0px);
    }
}

section.type-1 {
	overflow: hidden;

	perspective: 900px;
}

section.type-1 .g__background {
	/*display: none;*/
}

section.type-1 .el-bg-container {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	transform-origin: center;
	transition: var(--transition-simple);
}

section.type-1 .el-bg-container.inactive {
	opacity: 0;
	transform: scale(1.025);
}

section.type-1 .el-bg-1 {
	background-image: url(../img/sec_1_bg_var_2.jpg);
	background-size: cover;
	background-position: top center;
	opacity: 0.1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-1 .el-bg-2 {
	width: 100%;
	height: 100%;
	position: absolute !important;
	top: 0px;
	left: 0px;
	z-index: 55;
}

section.type-1 .el-bg-3 {
	background-color: var(--color-space-1);
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 44;
}

section.type-1 .wrapper {
	
}

section.type-1 .content {
	position: relative;
	z-index: 55;
}

section.type-1 .container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
	position: relative;
	perspective: 900px;
}

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

section.type-1 .line-2 {
	width: 1px;
	height: 100%;
	bottom: 0px;
	left: 260px;
}

section.type-1 .line-3 {
	width: 1px;
	height: 100%;
	bottom: 0px;
	right: 0px;
}

section.type-1 .header {
	padding: 24px 0px;
	position: relative;
}

section.type-1 .header .line {
	width: calc(100% + 30vw + 30vw);
	height: 1px;
	bottom: 0px;
	left: -30vw;
}

section.type-1 .header-block-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section.type-1 .header-menu ul {
	display: flex;
	align-items: center;
	gap: 32px;
}

section.type-1 .header-menu ul li a {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.32px;
	color: var(--color-white);
	transition: var(--transition-simple);
}

section.type-1 .header-menu ul li a:hover {
	color: var(--color-main);
}

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

section.type-1 .footer .line {
	width: calc(100% + 30vw + 30vw);
	height: 1px;
	bottom: 64px;
	left: -30vw;
}

section.type-1 .footer .scroll-button-outer {
	position: relative;
	overflow: hidden;
}

section.type-1 .footer .scroll-button {
	animation: scroll-tip 4s ease-in-out infinite;
}

section.type-1 .part-list {
	/*perspective: 900px;*/
}

section.type-1 .main {
	position: relative;
}

section.type-1 .el-title {
	font-size: 64px;
	font-weight: 700;
	line-height: 125%;
	line-height: 110%;
	text-shadow: 0px 0px 56px rgba(0, 0, 0, 0.90);
	max-width: 540px;
}

section.type-1 .el-text {
	max-width: 500px;
	margin-top: 40px
}

section.type-1 .el-button {
	min-width: 260px;
	margin-top: 40px;
}

section.type-1 .orbit-content-list {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	max-width: 238px;
}

section.type-1 .orbit-content-item {
	width: 200px;
	cursor: pointer;
	transform-origin: center;
	transition: var(--transition-simple);
}

section.type-1 .orbit-content-item.inactive {
	opacity: 0.33;
	transform: scale(0.975);
}

section.type-1 .orbit-content-item:not(:nth-child(1)) {
	margin-top: 72px;
}

section.type-1 .orbit-content-item:nth-child(1),
section.type-1 .orbit-content-item:nth-child(4) {
	width: 238px;
}

section.type-1 .orbit-content-item-text {
	margin-top: 8px;
}

section.type-1 .orbit-container {
	width: 800px;
	height: 800px;
	margin: auto;
	position: absolute;
	inset: 0px;
	right: -120px;
	pointer-events: none;
	perspective: 900px;
}

section.type-1 .orbit-container-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-1 .orbit:before {
	content: '';
	border-radius: 50%;
	border: 2px solid var(--color-white);
	opacity: 0.2;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.00) 86.98%, rgba(255, 255, 255, 0.35) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	pointer-events: none;
	box-sizing: border-box;
	transition: var(--transition-simple);
}

section.type-1 .orbit:after {
	content: '';
	border-radius: 50%;
	border: 4px solid var(--color-main);
	background: radial-gradient(50% 50% at 50% 50%, rgba(251, 179, 106, 0.00) 73.96%, rgba(251, 179, 106, 0.15) 100%);
	opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	pointer-events: none;
	box-sizing: border-box;
	transition: var(--transition-simple);
}

section.type-1 .orbit.active:before {
	opacity: 0;
}

section.type-1 .orbit.active:after {
	opacity: 1;
}

section.type-1 .orbit-1 {
	border-radius: 50%;
	border: 2px solid var(--color-white);
	opacity: 0.05;
	background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.00) 86.98%, rgba(255, 255, 255, 0.35) 100%);
	width: 100%;
	height: 100%;
	margin: auto;
}

section.type-1 .orbit-2 {
	width: 610px;
	height: 610px;
	margin: auto;
	position: absolute;
	inset: 0px;
}

section.type-1 .orbit-3 {
	width: 534px;
	height: 534px;
	margin: auto;
	position: absolute;
	inset: 0px;
}

section.type-1 .orbit-4 {
	width: 457px;
	height: 457px;
	margin: auto;
	position: absolute;
	inset: 0px;
}

section.type-1 .orbit-5 {
	width: 365px;
	height: 365px;
	margin: auto;
	position: absolute;
	inset: 0px;
}

section.type-1 .orbit-with-planet {
	margin: auto;
	position: absolute;	
	inset: 0px;
}

section.type-1 .orbit-with-planet-inner {
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	inset: 0px;
	transform: translateZ(0);
	transform-origin: center;
	transition-timing-function: linear;
	transition-duration: 0.05s;

	@-moz-document url-prefix() {
	  transition-duration: initial;
	}
}

section.type-1 .orbit-with-planet-2 {
	width: 610px;
	height: 610px;
}

section.type-1 .orbit-with-planet-3 {
	width: 534px;
	height: 534px;
}

section.type-1 .orbit-with-planet-4 {
	width: 457px;
	height: 457px;
}

section.type-1 .orbit-with-planet-5 {
	width: 365px;
	height: 365px;
}

section.type-1 .orbit-planet {
	background-color: var(--color-silver);
	border-radius: 50%;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 18%;
	left: 9%;
	z-index: 66;
	transition: var(--transition-simple);
}

section.type-1 .orbit-with-planet.active .orbit-planet {
	background-color: var(--color-main);
}

section.type-1 .orbit-text {
	text-align: center;
	color: var(--color-metal);
	width: 179px;
	height: 72px;
	margin: auto;
	position: absolute;
	inset: 0px;
}
/*SECTION TYPE 1 END*/

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

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

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

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

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

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

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

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

section.type-2 .el-button {
	min-width: 337px;
}
/*SECTION TYPE 2 END*/

/*SECTION TYPE 3*/
section.type-3 {
	overflow: hidden;
	margin-top: -50vh;
}

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

section.type-3 .el-bg-1 {
	background-color: var(--color-space-1);
	border-top: 1px solid #34363E;
	width: 100%;
	height: calc(100% - 432px);
	position: absolute;
	top: 432px;
	left: 0px;
}

section.type-3 .wrapper {
	
}

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

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

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

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

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

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

section.type-3 .line-6 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(66.66% - 14px);
}

section.type-3 .line-7 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(66.66% + 24px);
}

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

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

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

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

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

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

section.type-3 .line-14 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(66.66% - 14px);
}

section.type-3 .line-15 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(66.66% + 24px);
}

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

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

section.type-3 .header {
	padding-top: 64px;
	padding-bottom: 0px;
	position: relative;
}

section.type-3 .el-title {
	position: relative;
	z-index: 55;
}

section.type-3 .el-image {
	border: 1px solid #42434D;
	box-shadow: 948px 795px 495px 0px rgba(19, 20, 29, 0.08), 533px 447px 418px 0px rgba(19, 20, 29, 0.16), 237px 199px 309px 0px rgba(19, 20, 29, 0.24), 59px 50px 170px 0px rgba(19, 20, 29, 0.32);
	margin-top: -24px;
	position: relative;
}

section.type-3 .el-image:after {
	content: '';
	opacity: 0.75;
	background: linear-gradient(180deg, #141621 0%, rgba(20, 22, 33, 0.00) 100%);
	mix-blend-mode: multiply;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-3 .el-text {
	margin-top: 80px;
}

section.type-3 .main-top-part {
	padding-top: 64px;
	padding-bottom: 64px;
	position: relative;
}

section.type-3 .layout-1 {
	display: flex;
	flex-wrap: wrap;
	gap: 64px 40px;
}

section.type-3 .layout-1 .layout-item {
	width: calc(33.33% - 27px);
	/*outline: 1px solid red;*/
}

section.type-3 .layout-1 .layout-item .el-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 16px;
}

section.type-3 .layout-1 .layout-item .el-title-2 {
	color: var(--color-main);
}

section.type-3 .layout-1 .layout-item:nth-child(1) .el-title-2 {
	letter-spacing: -0.2px;
}

section.type-3 .layout-1 .layout-item .el-text-2 {
	color: var(--color-metal);
	margin-top: 16px;
}

section.type-3 .main-bottom-part {
	padding-top: 16px;
}

section.type-3 .el-title-3 {
	padding-bottom: 16px;
}

section.type-3 .layout-2-outer {
	padding-top: 32px;
	padding-bottom: 32px;
	position: relative;
}

section.type-3 .layout-2 {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

section.type-3 .layout-2 .layout-item {
	display: flex;
	width: calc(33.33% - 27px);
}

section.type-3 .layout-2 .layout-item .el-icon-2 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin-right: 16px;
}

section.type-3 .layout-2 .layout-item .el-title-4 {
	color: var(--color-metal);
}
/*SECTION TYPE 3 END*/

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

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

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

section.type-4 .content {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

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

section.type-4 .line-2 {
	width: 1px;
	height: calc(100% + 104px + 104px);
	top: -104px;
	left: 0px;
}

section.type-4 .line-3 {
	width: 1px;
	height: calc(100% + 104px + 104px);
	top: -104px;
	right: 0px;
}

section.type-4 .line-4 {
	width: calc(100% + 50vw + 50vw);
	height: 1px;
	bottom: 0px;
	left: -50vw;
}

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

section.type-4 .el-title .g__text {
	text-shadow: initial;
	position: relative;
	bottom: -10px;
}

section.type-4 .el-form {
	background: var(--color-space-2);
	/*border-bottom: 1px solid var(--color-main);*/
	height: 446px;
	margin-top: 40px;
}

section.type-4 .el-form:after {
	content: '';
	background-color: var(--color-main);
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 55;
	pointer-events: none;
}

section.type-4 .el-form div {
	height: 100% !important;
}

section.type-4 .el-tip {
	margin-top: 40px;
}
/*SECTION TYPE 4 END*/

/*SECTION TYPE 5*/
section.type-5 {
	margin-top: -60vh;
	overflow: hidden;
}

section.type-5 .el-image {

}
/*SECTION TYPE 5 END*/

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

section.type-6 .header {
	background-color: var(--color-space-1);
}

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

section.type-6 .header-top-part-block-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

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

section.type-6 .slider {
	position: relative;
}

section.type-6 .slide-list {
	min-height: 90vh;
	position: relative;
}

section.type-6 .slide-list img {
	opacity: 0;
	object-fit: cover;
	object-position: top center;
	width: 100%;
	min-height: 90vh;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-6 .slide-list img.active {
	opacity: 1
}

section.type-6 .slide-list-overlay-1 {
	background: linear-gradient(270deg, rgba(20, 22, 33, 0.80) 0%, rgba(20, 22, 33, 0.00) 25.94%, rgba(20, 22, 33, 0.00) 71.35%, #141621 100%);
	opacity: 0.5;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px
}

section.type-6 .slide-list-overlay-2 {
	background: linear-gradient(180deg, rgba(20, 22, 33, 0.95) 0%, rgba(20, 22, 33, 0.00) 22.7%, rgba(20, 22, 33, 0.00) 63.56%, rgba(20, 22, 33, 0.95) 90.8%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px
}

section.type-6 .anim-overlay {
	background-color: var(--color-space-1);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px
}

section.type-6 .slider .wrapper {
	padding-top: initial;
	padding-bottom: initial;
	/*padding-top: 40px;*/
	/*padding-bottom: 64px;*/
}

section.type-6 .slider .content {
	min-height: 90vh;
	position: relative;
}

section.type-6 .line-group {

}

section.type-6 .line-1 {
	width: calc(100% + 30vw + 30vw);
	height: 1px;
	bottom: 64px;
	left: -30vw;
}

section.type-6 .line-2 {
	width: 1px;
	height: 100%;
	bottom: 0px;
	left: 0px;
}

section.type-6 .line-3 {
	width: 1px;
	height: 100%;
	bottom: 0px;
	right: 0px;
}

section.type-6 .line-4 {
	width: calc(100% + 30vw + 30vw);
	height: 1px;
	top: 0px;
	left: -30vw;
}


section.type-6 .info-group {
	min-height: inherit;
	height: 100%;
	position: relative;
}

section.type-6 .info-group-container {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	min-height: inherit;
	height: 100%;
	padding-top: 40px;
	padding-bottom: 64px;
}

section.type-6 .info-group-part-1 {
	/*outline: 1px solid red;*/
}

section.type-6 .info-group-part-2 {
	/*outline: 1px solid blue;*/
}

section.type-6 .slider-progress {
	display: flex;
	align-items: center;
}

section.type-6 .slider-progress-text {
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	text-align: center;
	color: var(--color-white);
	display: flex;
	justify-content: center;
	width: 24px;
}

section.type-6 .slider-progress-line {
	background-color: rgba(255, 255, 255, 0.25);
	width: 160px;
	height: 2px;
	margin-right: 20px;
	margin-left: 20px;
}

section.type-6 .slider-progress-line-obj {
	background-color: var(--color-white);
	width: 25%;
	height: 100%;
}

section.type-6 .info-group-part-2-layout {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 40px;
}

section.type-6 .info-group-part-2-layout-item-1 {
	max-width: 760px;
}

section.type-6 .slider-controls {
	display: flex;
	gap: 8px;
}

section.type-6 .slider-controls.var-a {
	display: none;
}

section.type-6 .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-6 .slide-text-list {
	position: relative;
}

section.type-6 .slide-text-item {
	opacity: 0;
	position: absolute;
	bottom: 0px;
	left: 0px;
}
/*SECTION TYPE 6 END*/

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

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

section.type-7 .bg-slide-list img {
	object-fit: cover;
	object-position: top center;
	width: 100%;
	height: 100%;
	opacity: 0;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-7 .bg-overlay-1 {
	background: linear-gradient(180deg, rgba(20, 22, 33, 0.95) 0%, rgba(20, 22, 33, 0.00) 22.7%, rgba(20, 22, 33, 0.00) 63.56%, rgba(20, 22, 33, 0.95) 90.8%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-7 .bg-overlay-2 {
	opacity: 0.5;
	background: linear-gradient(270deg, rgba(20, 22, 33, 0.80) 0%, rgba(20, 22, 33, 0.00) 25.94%, rgba(20, 22, 33, 0.00) 71.35%, #141621 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-7 .bg-overlay-3 {
	opacity: 0.75;
	background: #141621;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-7 .anim-overlay {
	background-color: var(--color-space-1);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px
}

section.type-7 .line-1 {
	width: 1px;
	height: calc(100% + 104px);
	top: -104px;
	left: 0px;
}

section.type-7 .line-2 {
	width: 1px;
	height: calc(100% + 104px);
	top: -104px;
	right: 0px;
}

section.type-7 .line-3 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	bottom: 11px;
	left: -33.33vw;
}

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

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

section.type-7 .content {
	max-height: 770px;
	position: relative;
}

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

section.type-7 .bottom-part {
	margin-top: 244px;
}

section.type-7 .top-part {
	display: flex;
	justify-content: space-between;
}

section.type-7 .top-part .part-1 {
	width: 760px;
	margin-top: 16px;
}

section.type-7 .top-part .part-2 {
	margin-top: -11px;
}

section.type-7 .top-part .part-2 .el-button {
	min-width: 260px;
}

section.type-7 .slider {
	width: calc(320px + 24px);
}

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

section.type-7 .slider-slide {
	border: 1px solid rgba(126, 133, 159, 0.20);
	display: block;
	width: 320px;
	height: 180px;
	margin-right: 24px;
	position: relative;
}

section.type-7 .slider-slide:after {
	content: '';
	background-color: rgba(0, 0, 0, 0.8);
	opacity: 0.9;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	transition: var(--transition-simple);
}

section.type-7 .slider-slide:before {
	content: '';
	opacity: 0;
	border: 4px solid var(--color-white);
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	position: absolute;
	top: 0px;
	left: 0px;
	transition: var(--transition-simple);
}

section.type-7 .slider-slide.slick-current:after {
	opacity: 0;
}

section.type-7 .slider-slide.slick-current:before {
	opacity: 1;
}

section.type-7 .slider-slide img {
	object-fit: cover;
	object-position: center;
	display: block;
	width: 320px;
	width: 100%;
	height: 180px;
	height: 100%;
}
/*SECTION TYPE 7 END*/

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

section.type-8 .g__background {
	opacity: 0.25;
	background: var(--color-space-2, #262733);
	mix-blend-mode: multiply;
}

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

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

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

section.type-8 .line-3 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(50% - 20px);
}

section.type-8 .line-4 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(50% + 19px);
}

section.type-8 .el-text {
	color: var(--color-metal);
	margin-top: 24px;
}

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

section.type-8 .layout-item {
	width: calc(50% - 20px);
}

section.type-8 .layout-item-1 {
	padding-top: 40px;
	padding-bottom: 40px;
}

section.type-8 .el-image {
	width: 700px;
	min-height: 388px;
}

section.type-8 .el-image img {
	min-height: 100%;
}
/*SECTION TYPE 8 END*/

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

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

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

section.type-9 .line-2 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	top: 64px;
	left: -33.33vw;
}

section.type-9 .line-3 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	bottom: 64px;
	left: -33.33vw;
}

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

section.type-9 .line-5 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(50% - 20px);
}

section.type-9 .line-6 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(50% + 19px);
}

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

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

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

section.type-9 .layout-item {
	width: calc(50% - 20px);
}

section.type-9 .layout-item-1 {
	padding-top: 24px;
	padding-bottom: 24px;
}

section.type-9 .el-image {
	height: 462px;
	position: relative;
}

section.type-9 .el-image .el-image-overlay-1 {
	background: linear-gradient(180deg, rgba(20, 22, 33, 0.00) 48.79%, rgba(20, 22, 33, 0.95) 90.8%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-9 .el-image .el-image-overlay-2 {
	opacity: 0.5;
	background: linear-gradient(270deg, rgba(20, 22, 33, 0.80) 0%, rgba(20, 22, 33, 0.00) 25.94%, rgba(20, 22, 33, 0.00) 71.35%, #141621 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-9 .el-date {
	margin-bottom: 8px;
}

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

section.type-9 .el-button {
	min-width: 300px;
	max-width: 100%;
	margin-top: 24px;
}

.section-type-9-group section.type-9:nth-child(odd) .g__background {
	background-color: var(--color-space-1);
}

.section-type-9-group section.type-9:nth-child(odd) .layout-item-1 {
	order: 2;
}

.section-type-9-group section.type-9:nth-child(odd) .layout-item-2 {
	order: 1;
}
/*SECTION TYPE 9 END*/

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

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

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

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

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

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

section.type-10 .line-6 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	bottom: 64px;
	left: -33.33vw;
}

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


section.type-10 .line-8 {
	width: 1px;
	height: 100%;
	top: 0px;
	right: 40px;
}


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

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

section.type-10 .title-info {
	text-align: center;
	position: relative;
}

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

section.type-10 .title-info .el-date {
	color: var(--color-metal);
	margin-bottom: 24px;
}

section.type-10 .title-info .el-date.var-a {
	font-weight: 700;
	color: var(--color-main);
}

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

section.type-10 .main-content-info {
	/*background-color: var(--color-space-2);*/
	position: relative;
}

section.type-10 .main-content-info .content {
	max-width: 960px;
	/*padding-top: 64px;*/
	padding-bottom: 64px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

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

section.type-10 .add-details-layout {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

section.type-10 .add-details-layout-part {
	display: flex;
	align-items: center;
}

section.type-10 .add-details-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-right: 8px;
}

section.type-10 .add-details-text {
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
	letter-spacing: 0.32px;
	color: var(--color-main);
}
/*SECTION TYPE 10 END*/

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

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

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

section.type-11 .line-2 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	top: 64px;
	left: -33.33vw;
	z-index: 55;
}

section.type-11 .line-3 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	bottom: 64px;
	left: -33.33vw;
	z-index: 55;
}

section.type-11 .line-4 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 55;
}

section.type-11 .line-5 {
	width: 1px;
	height: 100%;
	top: 0px;
	right: 0px;
	z-index: 55;
}

section.type-11 .overlay-1 {
	background: linear-gradient(180deg, rgba(20, 22, 33, 0.00) 48.79%, rgba(20, 22, 33, 0.95) 90.8%);
	width: calc(100% + 33.33vw + 33.33vw);
	height: 100%;
	position: absolute;
	top: 0px;
	left: -33.33vw;
	pointer-events: none;
}

section.type-11 .overlay-2 {
	opacity: 0.5;
	background: linear-gradient(270deg, #141621 0%, rgba(20, 22, 33, 0.00) 25%, rgba(20, 22, 33, 0.00) 75%, #141621 100%);
	width: calc(100% + 33.33vw + 33.33vw);
	height: 100%;
	position: absolute;
	top: 0px;
	left: -33.33vw;
	pointer-events: none;
}

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

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

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

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

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

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

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

section.type-11 .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-11 .slider-lightbox-controls {
	position: absolute;
	bottom: 8px;
	left: 8px;
	z-index: 55;
}

section.type-11 .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 11 END*/

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

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

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

section.type-12 .line-2 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	bottom: 10px;
	left: -33.33vw;
}

section.type-12 .line-3 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	bottom: 64px;
	left: -33.33vw;
}

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

section.type-12 .line-5 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(50% - 20px);
}

section.type-12 .line-6 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(50% + 20px);
}

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

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

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

section.type-12 .layout {
	display: flex;
	gap: 40px;
	margin-top: 40px;
}

section.type-12 .layout-item {
	width: calc(50% - 20px);
}

section.type-12 .el-image {
	height: 280px;
	margin-bottom: 40px;
	position: relative;
}

section.type-12 .el-image .el-image-overlay-1 {
	background: linear-gradient(180deg, rgba(20, 22, 33, 0.00) 48.79%, rgba(20, 22, 33, 0.95) 90.8%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-12 .el-image .el-image-overlay-2 {
	opacity: 0.5;
	background: linear-gradient(270deg, rgba(20, 22, 33, 0.80) 0%, rgba(20, 22, 33, 0.00) 25.94%, rgba(20, 22, 33, 0.00) 71.35%, #141621 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-12 .el-date {
	color: var(--color-metal);
	margin-bottom: 8px;
}

section.type-12 .el-button {
	min-width: 300px;
	max-width: 100%;
	margin-top: 24px;
}
/*SECTION TYPE 12 END*/

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

section.type-13 .g__background:after {
	content: '';
	opacity: 0.75;
	background-color: var(--color-space-2);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	mix-blend-mode: multiply;
}

section.type-13 .el-bg-1 {
	object-fit: cover;
	object-position: center;
	display: block;
	width: 100%;
	height: 100%;
}

section.type-13 .line-1 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	bottom: 0px;
	left: -33.33vw;
	z-index: 66;
}

section.type-13 .line-2 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 66;
}

section.type-13 .line-3 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(25% - 30px);
	z-index: 66;
}

section.type-13 .line-4 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(50% - 20px);
	z-index: 66;
}

section.type-13 .line-5 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: calc(50% + 19px);
	z-index: 66;
}

section.type-13 .line-6 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: 100%;
	z-index: 66;
}

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

section.type-13 .header {
	padding: 24px 0px;
	position: relative;
	z-index: 55;
}

section.type-13 .header:before {
	content: '';
	background: rgba(20, 22, 33, 0.75);
	width: calc(100% + 33.33vw + 33.33vw);
	height: 100%;
	position: absolute;
	top: 0px;
	left: -33.33vw;
	z-index: -1;
}

section.type-13 .header .line {
	width: calc(100% + 30vw + 30vw);
	height: 1px;
	bottom: 0px;
	left: -30vw;
}

section.type-13 .header-block-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section.type-13 .layout {
	display: flex;
	gap: 40px;
}

section.type-13 .layout-item {
	width: calc(50% - 20px);
}

section.type-13 .layout-item-1 .layout-inner {
	padding-top: 80px;
	padding-bottom: calc(80px + 40px);
}

section.type-13 .el-text {
	color: var(--color-metal);
	margin-top: 24px;
}

section.type-13 .el-text mark {
	color: var(--color-white);
}

section.type-13 .el-image {
	width: 700px;
}

section.type-13 .scroll-button-outer {
	position: absolute;
	bottom: 0px;
	left: 0px;
}

section.type-13 .scroll-button {
	animation: scroll-tip 4s ease-in-out infinite;
}
/*SECTION TYPE 13 END*/

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

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

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

section.type-14 .line-2 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	top: 0px;
	left: -33.33vw;
	z-index: 66;
}

section.type-14 .line-3 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	bottom: 11px;
	left: -33.33vw;
	z-index: 66;
}

section.type-14 .line-4 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 66;
}

section.type-14 .line-5 {
	width: 1px;
	height: 100%;
	top: 0px;
	right: 0px;
	z-index: 66;
}

section.type-14 .line-6 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	top: 0px;
	left: -33.33vw;
	z-index: 66;
}

section.type-14 .line-7 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 66;
}

section.type-14 .line-8 {
	width: 1px;
	height: 100%;
	top: 0px;
	right: 0px;
	z-index: 66;
}

section.type-14 .line-9 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	bottom: 11px;
	left: -33.33vw;
	z-index: 66;
}

section.type-14 .line-10 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	bottom: 0px;
	left: -33.33vw;
	z-index: 66;
}


section.type-14 .top-part {
	padding-top: 24px;
	padding-bottom: 24px;
	position: relative;
}

section.type-14 .top-part:before {
	content: '';
	background-color: var(--color-space-1);
	width: calc(100% + 33.33vw + 33.33vw);
	height: 100%;
	position: absolute;
	top: 0px;
	left: -33.33vw;
}

section.type-14 .terms-label {
	display: inline-flex;
	align-items: center;
	position: relative;
}

@keyframes label-hightlight {
    0% {
    	opacity: 0;
    }

    100% {
    	opacity: 1;
    }
}

section.type-14 .terms-label-highlight-outer {
	opacity: 0;
	pointer-events: none;
}

section.type-14 .terms-label-highlight {
	border: 1px solid var(--color-main);
	border-radius: 4px;
	width: calc(100% + 16px);
	height: calc(100% + 16px);
	margin: auto;
	position: absolute;
	inset: -200%;
	pointer-events: none;
	animation: label-hightlight 0.15s ease-in-out infinite alternate;
}

section.type-14 .terms-label-text {
	margin-left: 16px;
}

section.type-14 .top-part-2 {
	padding-top: 104px;
	padding-bottom: 104px;
	position: relative;
}

section.type-14 .top-part-2:before {
	content: '';
	background-color: var(--color-space-1);
	width: calc(100% + 33.33vw + 33.33vw);
	height: 100%;
	position: absolute;
	top: 0px;
	left: -33.33vw;
}

section.type-14 .el-title-3-outer {
	position: relative;
}

section.type-14 .terms-content {
	color: var(--color-metal);
	margin-top: 40px;
}

section.type-14 .terms-content .g__wysiwyg_editor > ol > li {
	color: var(--color-metal);
}

section.type-14 .terms-content .g__wysiwyg_editor > ol > li:before {
	color: var(--color-metal);
}

section.type-14 .terms-content .special-ol {
	padding-left: 24px;
	position: relative;
}

section.type-14 .terms-content .special-ol:before {
	content: '';
	background-color: var(--color-main);
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-14 .main-part {
	padding-top: 104px;
	padding-bottom: 104px;
	position: relative;
}

section.type-14 .title-outer {
	position: relative;
}

section.type-14 .el-text {
	color: var(--color-metal);
	margin-top: 40px;
}

section.type-14 .el-text mark {
	color: var(--color-white);
}

section.type-14 .el-title-2-outer {
	display: flex;
	align-items: flex-end;
}

section.type-14 .el-text-2 {
	margin-top: 8px;
}

section.type-14 .el-text-3 {
	color: var(--color-metal);
	margin-top: 40px;
}

section.type-14 .el-text-4 {
	margin-left: 8px;
	position: relative;
	top: -1px;
}

section.type-14 .el-text-5 {
	color: var(--color-metal);
	margin-bottom: 40px;
}

section.type-14 .el-text-5 mark {
	color: var(--color-white);
}

section.type-14 .el-button {
	margin-top: 40px;
	width: 100%;
}

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

section.type-14 .block-item {
	background-color: var(--color-space-2);
	width: calc(50% - 20px);
	padding: 40px;
	position: relative;
}

section.type-14 .block-item-1 {
	border: 1px solid rgba(179, 179, 179, 0.20);
}

section.type-14 .block-item-2 {
	border: 1px solid var(--Gold, #FBB36A);
}

section.type-14 .price-container {
	margin-top: 40px;
}

section.type-14 .tab-list-outer {
	position: relative;
}

section.type-14 .tab-list {
	display: flex;
}

section.type-14 .tab-list .tab-item {
	background: rgba(20, 22, 33, 0.20);
	padding: 24px 40px;
	position: relative;
	z-index: 66;
	cursor: pointer;
	transition: var(--transition-simple);
}

section.type-14 .tab-list .tab-item .tab-item-text {
	color: var(--color-metal);
	transition: var(--transition-simple);
}

section.type-14 .tab-list .tab-item.active {
	background-color: var(--color-space-1);
}

section.type-14 .tab-list .tab-item.active .tab-item-text {
	font-weight: 700;
	color: var(--color-white);
}

section.type-14 .products-outer {
	position: relative;
}

section.type-14 .products-outer:before {
	content: '';
	background-color: var(--color-space-1);
	width: calc(100% + 33.33vw + 33.33vw);
	height: calc(100% + 104px);
	position: absolute;
	top: 0px;
	left: -33.33vw;
}

section.type-14 .products-list {
	padding-top: 40px;
}
/*SECTION TYPE 14 END*/

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

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

section.type-15 .el-bg-1 {
	background-color: var(--color-space-2);
	border-top: 1px solid #34363E;
	width: 100%;
	height: calc(100% - 178px);
	position: absolute;
	top: 178px;
	left: 0px;
}

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

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

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

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

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

section.type-15 .el-title {
	margin-top: 64px;
	position: relative;
}

section.type-15 .top-part-1 {
	width: calc(50% - 20px);
	margin-right: 20px;
}

section.type-15 .top-part-2 {
	width: calc(50% - 20px);
	margin-left: 20px;
}

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

section.type-15 .el-text-3 {
	margin-top: 24px;
}

section.type-15 .el-text-3 p {
	margin-bottom: 8px
}

section.type-15 .el-text-3 ul {
	margin-top: initial;
}

section.type-15 .el-text-3 .g__wysiwyg_editor > ul > li:not(:nth-child(1)) {
	margin-top: 8px;
}

section.type-15 .el-image {
	border: 1px solid #42434D;
	box-shadow: 948px 795px 495px 0px rgba(19, 20, 29, 0.08), 533px 447px 418px 0px rgba(19, 20, 29, 0.16), 237px 199px 309px 0px rgba(19, 20, 29, 0.24), 59px 50px 170px 0px rgba(19, 20, 29, 0.32);
	position: relative;
}

section.type-15 .block-list {
	display: flex;
	gap: initial;
	margin-top: 64px;
}

section.type-15 .block-item {
	border: 1px solid rgba(179, 179, 179, 0.20);
	background-color: var(--color-space-1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 33.33%;
	padding: 24px;
	position: relative;
}

section.type-15 .block-item.var-highlight {
	border: 2px solid var(--color-main);
}

section.type-15 .block-item-price {
	margin-top: 8px;
}

section.type-15 .block-item-description {
	margin-top: 40px;
}

section.type-15 .block-item-description li {
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.32px;
	color: var(--color-metal);
	padding-left: 24px;
	position: relative;
	margin-bottom: 8px;
}

section.type-15 .block-item-description li:before {
	content: '';
	background-color: var(--color-metal);
	border-radius: 50%;
	width: 2px;
	height: 2px;
	position: absolute;
	top: 11px;
	left: 8px;
}

section.type-15 .block-item-bottom-part {
	margin-top: 40px;
}

section.type-15 .block-item-button:not(:nth-child(1)) {
	margin-top: 8px;
}

section.type-15 .block-item-button > * {
	width: 100%;
}

section.type-15 .bottom-part {
	margin-bottom: 64px;
}

section.type-15 .bottom-part-2 {
	padding-top: 40px;
	padding-bottom: 40px;
	position: relative;
}

section.type-15 .bottom-part-2:before {
	content: '';
	background-color: var(--color-space-1);
	width: calc(100% + 33vw + 33vw);
	height: 100%;
	position: absolute;
	top: 0px;
	left: -33vw;
}

section.type-15.var-a {

}

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

section.type-15.var-a .block-list {
	gap: initial;
	row-gap: 40px;
}

section.type-15.var-a .block-item {
	background-color: var(--color-space-1);
	width: 33.33%;
	padding: 40px;
}
/*SECTION TYPE 15 END*/

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

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

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

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

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

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

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

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

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

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

section.type-16 .block-item {
	color: var(--color-white);
	border: 1px solid var(--color-space-3);
	background: var(--color-space-1);
	backdrop-filter: blur(12px);
	width: calc(33.33% - 20px - 20px);
	margin-top: 40px;
	margin-right: 20px;
	margin-left: 20px;
}

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

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

section.type-16 .block-item:hover .image img {
	opacity: 0.7;
	transform: scale(1.025);
}

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

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

section.type-16 .block-item .date {
	color: var(--color-main);
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 8px;
	position: relative;
}

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

section.type-16 .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-16 .block-item .description {
	color: var(--color-metal);
	margin-top: 24px;
}

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

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

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

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

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

section.type-16 .button {
	text-align: center;
	margin-top: 40px;
}

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

section.type-16 .el-button > * {
	min-width: 160px;
}

section.type-16 .el-button.var-a {
	margin-top: initial;
	position: relative;
	top: -6px;
}

section.type-16.var-a {

}

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

section.type-16.var-a .block-item {
	
	background: rgba(38, 39, 51, 0.25);
}
/*SECTION TYPE 16 END*/

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

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

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

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

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

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

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

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

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

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

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

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

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

section.type-17 .block-item:hover .image img {
	opacity: 0.7;
	transform: scale(1.025);
}

section.type-17 .block-item .part-2 {
	margin-top: 24px;
}

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

section.type-17 .block-item .date {
	color: var(--color-main);
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 8px;
	position: relative;
}

section.type-17 .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-17 .el-button {
	margin-top: 40px;
}

section.type-17 .el-button > * {
	min-width: 160px;
}

section.type-17 .el-button.var-a {
	margin-top: initial;
	position: relative;
	top: -6px;
}

section.type-17 .block-item .description {
	color: var(--color-metal);
	margin-top: 24px;
}

section.type-17.var-a .g__background {
	background-color: var(--color-space-2);
}
/*SECTION TYPE 17 END*/

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

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

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

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

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

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

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

/*SECTION TYPE 19*/
section.type-19 {
	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 .content {
	padding-top: 64px;
	padding-bottom: 64px;
	position: relative;
}

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

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

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

section.type-20 .g__background:after {
	content: '';
	opacity: 0.90;
	background-color: var(--color-space-2);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	mix-blend-mode: multiply;
}

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

section.type-20 .line-1 {
	width: calc(100% + 33.33vw + 33.33vw);
	height: 1px;
	bottom: 0px;
	left: -33.33vw;
	z-index: 66;
}

section.type-20 .line-2 {
	width: 1px;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 66;
}

section.type-20 .line-3 {
	width: 1px;
	height: 100%;
	top: 0px;
	right: 0px;
	z-index: 66;
}

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

section.type-20 .main {
	padding-top: 160px;
	padding-bottom: 160px;
}

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

section.type-20 .header {
	padding: 24px 0px;
	position: relative;
	z-index: 55;
}

section.type-20 .header:before {
	content: '';
	background: rgba(20, 22, 33, 0.75);
	width: calc(100% + 33.33vw + 33.33vw);
	height: 100%;
	position: absolute;
	top: 0px;
	left: -33.33vw;
	z-index: -1;
}

section.type-20 .header-block-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/*SECTION TYPE 13 END*/

.for-mobile {
	display: none;
}

.for-desktop {
	display: block;
}

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

@media screen and (max-width: 1366px) {
	section.type-1 .orbit-content-item:not(:nth-child(1)) {
	    margin-top: 48px;
	}

	section.type-3 .el-bg-1 {
		height: calc(100% - 33vw);
		top: 33vw;
	}
}

@media screen and (max-width: 1279px) {
	.wrapper {
		padding-right: 12px;
		padding-left: 12px;
	}

	.g__text.type-h1, h1 {
		font-size: 36px;
	}

	.g__text.type-h2, h2 {
		font-size: 32px;
	}

	.g__text.type-h3, h3 {
		font-size: 24px;
	}

	.g__text.type-h4, h4 {
		font-size: 20px;
	}

	.g__text.type-h5, h5 {
		font-size: 16px;
	}

	.g__text.type-p, p {
		font-size: 20px;
		letter-spacing: 0.4px;
	}

	.g__text.type-body-2 {
		font-size: 16px;
	}

	.g__text.type-2 {
		font-size: 36px;
	}

	section.type-1 .el-title {
		font-size: 36px;
		max-width: 290px;
	}

	section.type-1 .orbit-container {
		right: -50px;
	}

	section.type-3 .layout-1 {
		gap: 64px 20px;
	}

	section.type-3 .layout-1 .layout-item {
		width: calc(33.33% - 14px);
	}

	section.type-3 .layout-2 {
		gap: 40px 20px;
	}

	section.type-3 .layout-2 .layout-item {
		width: calc(33.33% - 14px);
	}

	section.type-3 .line-4 {
		left: calc(33.33% - 14px);
	}

	section.type-3 .line-5 {
		left: calc(33.33% + 4px);
	}

	section.type-3 .line-6 {
		left: calc(66.66% - 8px);
	}

	section.type-3 .line-7 {
		left: calc(66.66% + 10px);
	}

	section.type-3 .line-12 {
		left: calc(33.33% - 14px);
	}

	section.type-3 .line-13 {
		left: calc(33.33% + 4px);
	}

	section.type-3 .line-14 {
		left: calc(66.66% - 8px);
	}

	section.type-3 .line-15 {
		left: calc(66.66% + 10px);
	}

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

	section.type-8 .line-3 {
		left: calc(50% - 12px);
	}

	section.type-8 .line-4 {
		left: calc(50% + 11px);
	}

	section.type-8 .layout {
		gap: 24px;
	}

	section.type-8 .layout-item {
		width: calc(50% - 12px);
	}

	section.type-9 .layout {
		gap: 24px;
	}

	section.type-9 .layout-item {
		width: calc(50% - 12px);
	}

	section.type-9 .line-5 {
		left: calc(50% - 12px);
	}

	section.type-9 .line-6 {
		left: calc(50% + 11px);
	}

	section.type-12 .layout {
		gap: 24px;
	}

	section.type-12 .layout-item {
		width: calc(50% - 12px);
	}

	section.type-12 .line-5 {
		left: calc(50% - 12px);
	}

	section.type-12 .line-6 {
		left: calc(50% + 11px);
	}


	section.type-13 .layout {
		gap: 24px;
	}

	section.type-13 .layout-item {
		width: calc(50% - 24px);
	}

	section.type-13 .line-4 {
		left: calc(50% - 24px);
	}

	section.type-13 .line-5 {
		left: 50%;
	}

	section.type-14 .block-list {
		gap: 24px;
	}

	section.type-14 .block-item {
		width: calc(50% - 12px);
		padding: 24px;
	}

	section.type-15 .block-item {
		padding: 12px;
	}

	section.type-15.var-a .block-item {
		width: 33.33%;
		padding: 12px;
	}

	section.type-16 .block-item:nth-child(1) {
		display: block;
		width: calc(50% - 12px - 12px);
	}

	section.type-16 .block-item:nth-child(1) .part-1 {
		order: initial;
		width: 100%;
		height: 160px;
	}

	section.type-16 .block-item:nth-child(1) .part-2 {
		order: initial;
		width: 100%;
		padding-right: 40px;
	}

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

	section.type-16 .block-list {
		width: calc(100% + 12px + 12px);
		left: -12px;
	}

	section.type-16 .block-item {
		width: calc(50% - 12px - 12px);
		margin-right: 12px;
		margin-left: 12px;
	}

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

	section.type-17 .block-list {
		width: calc(100% + 12px + 12px);
		left: -12px;
	}

	section.type-17 .block-item {
		width: calc(33.33% - 12px - 12px);
		margin-right: 12px;
		margin-left: 12px;
	}
}

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

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

	.pop-up.form-pop-up .pop-up-inner {
		padding-top: initial;
		padding-bottom: initial;
	}

	.pop-up.form-pop-up .content-inner {
		padding: 12px;
	}

	.pop-up.form-pop-up .line-1 {
		top: 12px;
	}

	.pop-up.form-pop-up .line-2 {
		right: 12px;
	}

	.pop-up.form-pop-up .line-3 {
		bottom: 12px;
	}

	.pop-up.form-pop-up .line-4 {
		left: 12px;
	}

	footer .g__background {
		background-color: var(--color-space-1);
	}

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

	footer .part-1 {
		text-align: center;
		display: block;
		width: 100%
	}

	footer .part-2 {
		display: flex;
		justify-content: center;
		width: 100%;
		margin-top: 32px;
	}

	footer .el-logo {
		margin-right: auto;
		margin-left: auto;
	}

	footer .copyrights {
		margin-top: 32px;
	}

	section.type-1 .el-bg-2-bottom-gradient {
		background: rgb(20,22,33);
		background: linear-gradient(180deg, rgba(20,22,33,0) 0%, rgba(20,22,33,1) 100%);
		width: 100%;
		height: 15vh;
		top: 90vh;
		position: absolute;
		pointer-events: none;
		z-index: 66;
	}

	section.type-1 .el-bg-container.inactive {
		opacity: 1;
		transform: initial;
	}

	section.type-1 .el-bg-1 {
		opacity: 0.1;
	}

	section.type-1 .el-bg-2 {
		height: 100vh;
	}

	section.type-1 .header-menu {
		display: none;
	}

	section.type-1 .container {
		/*display: block;*/
	}

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

	section.type-1 .part-list {
		display: block;
	}

	section.type-1 .part-2 {
		margin-top: 40px;
	}

	section.type-1 .orbit-container {
		display: none;
	    margin: initial;
	    margin-right: auto;
	    margin-left: auto;
	    top: 75px;
	    right: -100%;
	    bottom: initial;
	    left: -100%;
	}

	section.type-1 .orbit-container-inner {
		transform-origin: center;
		transform: scale(0.75);
	}

	section.type-1 .orbit-content-list {
		width: 272px;
		max-width: 100%;
		display: block;
	}

	section.type-1 .orbit-content-list .slick-list {
		overflow: visible;
	}

	section.type-1 .orbit-content-list .slick-track {
		display: flex;
	}

	section.type-1 .orbit-content-item {
		opacity: 0.5;
		width: 272px;
		height: auto;
		margin-right: 8px;
	}

	section.type-1 .orbit-content-item:not(:nth-child(1)) {
		margin-top: initial;
	}

	section.type-1 .orbit-content-item.slick-active {
		opacity: 1;
	}

	section.type-1 .orbit-content-item-inner {
		border: 1px solid rgba(255, 255, 255, 0.10);
		background: rgba(255, 255, 255, 0.05);
		padding: 16px;
		height: 100%;
	}

	section.type-1 .el-title {
		max-width: 100%;
	}

	section.type-1 .orbit-text {
		font-size: 24px;
		color: var(--color-white);
		width: 210px;
	}

	section.type-1 .line-2 {
		margin-right: auto;
		margin-left: auto;
		left: 0px;
		right: 0px;
	}

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

	section.type-1 .footer {
		margin-top: 28px;
		padding-bottom: initial;
	}

	section.type-1 .footer .line {
		bottom: 0px;
	}

	section.type-1 .orbit-content-item {
		pointer-events: none;
	}

	section.type-2 .bottom-part {
		display: block;
	}

	section.type-2 .bottom-part .part-2 {
		margin-top: 40px;
	}

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

	section.type-3 {
		margin-top: initial;
	}

	section.type-3 .header {
		text-align: left;
	}

	section.type-3 .layout-1 {
		gap: 40px;
	}

	section.type-3 .layout-1 .layout-item {
		width: 100%;
	}

	section.type-3 .layout-2 {
		gap: 40px;
	}

	section.type-3 .layout-2 .layout-item {
		width: 100%;
	}

	section.type-3 .line-4 {
		display: none;
	}

	section.type-3 .line-5 {
		display: none;
	}

	section.type-3 .line-6 {
		display: none;
	}

	section.type-3 .line-7 {
		display: none;
	}

	section.type-3 .line-12 {
		display: none;
	}

	section.type-3 .line-13 {
		display: none;
	}

	section.type-3 .line-14 {
		display: none;
	}

	section.type-3 .line-15 {
		display: none;
	}

	section.type-3 .el-text br {
		display: none;
	}

	section.type-4 .wrapper {
		padding-top: 64px;
		padding-bottom: 64px;
	}

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

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

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

	section.type-6 .info-group-container {
		padding-top: 16px;
		padding-bottom: 16px;
	}

	section.type-6 .info-group-part-2-layout {
		display: block;
		gap: initial;
	}

	section.type-6 .info-group-part-2-layout-item-1 {
		max-width: 100%;
	}

	section.type-6 .slider-controls.var-a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		margin: auto 0px;
		position: absolute;
		top: 0px;
		bottom: 0px;
		pointer-events: none;
	}

	section.type-6 .slider-controls.var-a .slider-controls-button {
		border: 1px solid #3D3D44;
		background: rgba(38, 39, 51, 0.50);
		pointer-events: all;
	}

	section.type-6 .line-1 {
		display: none;
	}

	section.type-7 .wrapper {
		padding-top: 64px;
		padding-bottom: 64px;
	}

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

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

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

	section.type-7 .bottom-part {
		margin-top: 104px;
	}

	section.type-8 .line-2 {
		display: none;
	}

	section.type-8 .line-3 {
		left: 50%;
	}

	section.type-8 .line-4 {
		left: 100%;
	}

	section.type-8 .layout {
		flex-wrap: wrap;
		gap: 0px;
	}

	section.type-8 .layout-item {
		width: 100%;
	}

	section.type-8 .layout-item-1 {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	section.type-8 .layout-item-2 {
		order: -1;
	}

	section.type-8 .el-image {
		width: calc(100% + 12px + 12px);
		min-height: initial;
		left: -12px;
	}

	section.type-9 .line-5,
	section.type-9 .line-6 {
		display: none;
	}

	section.type-9 .layout {
		flex-wrap: wrap;
		gap: 0px;
	}

	section.type-9 .layout-item {
		width: 100%;
	}

	section.type-9 .layout-item-1 {
		padding-top: 40px;
		padding-bottom: initial;
	}

	section.type-9 .layout-item-2 {
		order: -1;
	}

	section.type-9 .el-image {
		height: auto;
	}

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

	section.type-10 .line-7 {
		left: 12px;
	}

	section.type-10 .line-8 {
		right: 12px;
	}

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

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

	section.type-12 .line-5,
	section.type-12 .line-6 {
		display: none;
	}

	section.type-12 .layout {
		flex-wrap: wrap;
		gap: 40px;
	}

	section.type-12 .layout-item {
		width: 100%;
	}

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

	section.type-13 .line-3,
	section.type-13 .line-4,
	section.type-13 .line-5 {
		display: none;
	}

	section.type-13 .line-7 {
		width: 100%;
		height: 1px;
		bottom: 64px;
		left: 0px;
	}

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

	section.type-13 .layout {
		flex-wrap: wrap;
		gap: 40px;
	}

	section.type-13 .layout-item {
		width: 100%;
		position: relative;
		overflow: hidden;
	}

	section.type-13 .layout-item-1 .layout-inner {
		padding-top: 48px;
		padding-bottom: initial;
	}

	section.type-13 .layout-item-2 {
		padding-bottom: 48px;
	}

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

	section.type-14 .main-part {
		padding-top: 64px;
		padding-bottom: 64px;
	}

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

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

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

	section.type-14 .top-part-2 {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	section.type-14 .tab-list {
		overflow-x: auto;
	}

	section.type-14 .tab-list .tab-item {
		flex: 1 0 auto;
	}

	section.type-14 .el-text-5 {
		
	}

	section.type-15 .el-bg-1 {
	    height: calc(100% - 92px);
	    top: 92px;
	}

	section.type-15 .el-title {
		margin-top: initial;
	}

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

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

	section.type-15 .block-list {
		flex-wrap: wrap;
		row-gap: 12px;
	}

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

	section.type-16 .el-title {
		width: 100%;
	}

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

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

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

	section.type-16 .el-button > * {
		width: 100%;
	}

	section.type-17 .el-title {
		width: 100%;
	}

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

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

	section.type-17 .el-button > * {
		width: 100%;
	}

	section.type-10 .add-details-layout {
		flex-wrap: wrap;
		align-items: center;
	}

	section.type-10 .add-details-layout-part {
		justify-content: center;
		width: 100%;
	}

	section.type-20 .main {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	section.type-15.var-a .block-item {
		width: 100%;
	}
}