/*COMMONS*/
:root {
	--color-main: #EA6B3D;
	--color-light: #ffffff;
	--color-dark: #000000;
	--color-navy: #10121C;
	--header-height: 82px;
	--transition-simple: 0.5s cubic-bezier(.2,.95,.57,.99);


	--White: var(--color-light);
	--Navy: var(--color-navy);
}

::-moz-selection {
	/*color: rgba(255, 255, 255, 1);*/
	/*background: rgba(214, 163, 92, 0.5);*/
}

::selection {
	/*color: rgba(255, 255, 255, 1);*/
	/*background: rgba(214, 163, 92, 0.5);*/
}

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

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-main);
}
 
body::-webkit-scrollbar-thumb {
	background-color: var(--color-light);
}

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

.for-mobile {
	display: none;
}

.for-desktop {
	display: block;
}

.wrapper {
    max-width: calc(1292px + 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*/

/*circle button*/
.g__circle_button {
	background-color: var(--color-dark);
	border-radius: 50%;
	display: flex;
	width: 300px;
	height: 300px;
	padding: 24px;
	position: relative;
	overflow: hidden;
}

.g__circle_button:after {
	content: '';
	background-color: var(--color-main);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	margin: auto 0px;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	transform-origin: bottom center;
	transform: scaleY(0);
	transition: var(--transition-simple);
}

.g__circle_button-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
}

.g__circle_button-text {
	font-size: 24px;
	font-weight: 500;
	line-height: 115%;
	letter-spacing: -0.48px;
	text-align: center;
	color: var(--White, #FFF);
	margin-right: 8px;
	position: relative;
	z-index: 55;
}

.g__circle_button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	position: relative;
	z-index: 55;
}

.g__circle_button-icon > * {
	max-width: 90%;
	max-height: 90%;
}

.g__circle_button:hover:after {
	transform: scaleY(1);
}
/*circle button end*/

/*ul list*/
.g__ul_list	{
	display: block;
	position: relative;
}

.g__ul_list li {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: -0.32px;
	padding-left: calc(20px + 8px);
	position: relative;
}

.g__ul_list li:not(:nth-child(1)) {
	margin-top: 10px;
}

.g__ul_list li:before {
	content: '';
	background: url('../img/svg/star_2.svg');
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 2px;
	left: 0px;
}
/*ul list end*/

/*socials*/
.g__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.g__socials-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.g__socials-item > * {
	display: block;
	max-width: 95%;
	height: auto;
}
/*socials end*/
/*GLOBALS*/
/*COLORS*/
.g__color-main {
	color: var(--color-main);
}

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

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

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

.g__text.type-h1, h1 {
	font-size: 72px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -1.44px;
}

.g__text.type-h2, h2 {
	font-size: 48px;
	font-weight: 500;
	line-height: 110%;
	letter-spacing: -0.96px;
}

.g__text.type-h3, h3 {
	font-size: 32px;
	font-weight: 500;
	line-height: 115%;
	letter-spacing: -0.64px;
}

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

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

.g__text.type-p.var-a {
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: -0.32px;
}

.g__text.type-p.var-a.var-a-2 {
	letter-spacing: 1.6px;
	text-transform: uppercase;
}

.g__text.type-p.var-b {
	font-size: 14px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: -0.28px;
}

.g__text.type-caption {
	font-size: 12px;
	font-weight: 400;
	line-height: 115%;
}

.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: 600;
}
/*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: 6px;
	padding-bottom: 6px;
}

.g__button.type-1 .g__button-frame {
	background-color: var(--color-main);
	border: 1px solid var(--color-main);
	border-radius: 1000px;
}

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

.g__button.type-1 .g__button-text {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: -0.28px;
	color: var(--White, #FFF);
}

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

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

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

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

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

.g__button.type-1.var-b .g__button-frame {
	background-color: rgba(0, 0, 0, 0);
}

.g__button.type-1.var-b .g__button-text {
	color: var(--color-dark);
}

.g__button.type-2 {
	
}

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

.g__button.type-2 .g__button-frame {
	background-color: var(--color-main);
	border: 1px solid var(--color-main);
	border-radius: 1000px;
}

.g__button.type-2 .g__button-text {
	font-size: 16px;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: -0.32px;
	padding-right: 12px;
	padding-left: 20px;
	color: var(--White, #FFF);
}

.g__button.type-2 .g__button-circle {
	background-color: var(--color-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	transition: var(--transition-simple);
}

.g__button.type-2 .g__button-circle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 90%;
	max-height: 90%;
}

.g__button.type-2 .g__button-circle-icon svg path {
	transition: var(--transition-simple);
}

.g__button.type-2:hover .g__button-frame {
	background-color: var(--color-dark);
	border: 1px solid var(--color-dark);
}

.g__button.type-2:hover .g__button-circle {
	background-color: var(--color-main);
}

.g__button.type-2:hover .g__button-circle-icon svg path {
	fill: var(--color-light);
}

.g__button.type-2.on-hover-circle-down:hover .g__button-circle {
	transform: rotate(90deg);
}

.g__button.type-2.on-hover-circle-top:hover .g__button-circle {
	transform: rotate(-90deg);
}

.g__button.type-2.var-a .g__button-circle {
	width: 48px;
	height: 48px;
}
/*BUTTONS END*/

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

	cursor: pointer;
}

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

.g__link.type-1 .g__link-text {
	font-size: 14px;
	font-weight: 600;
	line-height: 140%; 
	letter-spacing: -0.28px;
	color: var(--color-light);
}

.g__link.type-1 .g__link-icon {
	transition: var(--transition-simple);
}

.g__link.type-1:hover .g__link-text + .g__link-icon {
	transform: translateX(8px);
}

.g__link.type-1:hover .g__link-icon:nth-child(1) {
	transform: translateX(-8px);
}

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

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

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

/*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-light);
	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 {
	border-radius: 24px;
	display: block;
	max-width: 100%;
	height: auto;
	margin-top: 80px;
	margin-bottom: 80px;
	overflow: hidden;
}

.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-dark);
	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-dark);
	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-dark);
	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-dark);
	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-dark);
	margin-right: 10px;
}

.g__wysiwyg_editor a {
	text-decoration: underline;
}

.g__wysiwyg_editor a:hover {
	
}

.g__wysiwyg_editor blockquote {
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 115%;
	letter-spacing: -0.48px;
	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*/

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

.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: 500;
	line-height: 24px;
	letter-spacing: -0.32px;
	color: var(--color-light);
}

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

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

header .el-bg-1 {
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.00) 100%);
	opacity: 0;
	width: 100%;
	height: calc(100% + 24px);
	position: absolute;
	top: 0px;
	left: 0px;
	transform-origin: top center;
	transform: scaleY(0);
	transition: var(--transition-simple);
}

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

header .nav {
	border-radius: 1000px;
	background: rgba(0, 0, 0, 0.50);
	backdrop-filter: blur(4px);
	padding: 4px;
	position: relative;
}

header .nav .hover-element {
	border-radius: 1000px;
	opacity: 0;
	height: calc(100% - 4px - 4px);
	width: 0px;
	position: absolute;
	top: 4px;
	left: 0px;
	z-index: 55;
	transform-origin: center;
	pointer-events: none;
	overflow: hidden;
}

header .nav .hover-element:before {
	content: '';
	background: rgba(234, 107, 61, 0.2);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	transition: var(--transition-simple);
}

header .nav ul {
	display: flex;
}

header .nav ul li a {
	font-family: "Golos Text";
	font-size: 14px;
	font-weight: 600;
	line-height: 140%;
	letter-spacing: -0.28px;
	color: var(--White, #FFF);
	padding: 4px 12px;
	position: relative;
	z-index: 66;
	transition: var(--transition-simple);
}

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

header .nav-2 {
	margin-right: 24px;
}

header .nav-2 ul li a {
	font-family: "Golos Text";
	font-size: 14px;
	font-weight: 600;
	line-height: 140%;
	letter-spacing: -0.28px;
	color: var(--White, #FFF);
	padding: 4px 12px;
	transition: var(--transition-simple);
}

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

header .button-1 {
	margin-right: 8px;
}

header .part-1 {
	width: 189px;
}

header .part-3 {
	width: 189px;
}

header .logo-container {
	display: block;
	width: 189px;
	height: 50px;
	position: relative;
}

header .logo-container .logo {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	transition: var(--transition-simple);
}

header .logo-container .logo.logo-dark {
	opacity: 0;
}

header.not-at-top {
	
}

header.not-at-top .el-bg-1 {
	opacity: 1;
	transform: scaleY(1);
}

header.not-at-top .logo-container .logo.logo-dark {
	opacity: 1;
}

header.not-at-top .logo-container .logo.logo-light {
	opacity: 0;
}

header.not-at-top .nav .hover-element:before {
	background: var(--color-main);
}

header.not-at-top .nav ul li a {
	color: var(--color-light);
}

header.not-at-top .nav ul li a:hover {
	color: var(--color-light);
}

header.not-at-top .nav-2 ul li a {
	color: var(--color-dark);
}

header.not-at-top .g__burger-line-item:before {
	background-color: var(--color-dark);
}

header .nav {
	background: rgba(0, 0, 0, 0.75);
}

header.menu-opened {
	
}

header.menu-opened .logo-container .logo.logo-dark {
	opacity: 0;
}

header.menu-opened .logo-container .logo.logo-light {
	opacity: 1;
}

header.menu-opened .el-bg-1 {
	opacity: 0;
}

header.menu-opened .g__burger-line-item:before {
	background-color: var(--color-light);
}

.header-height-adaptation-for-the-next-section + section {
	margin-top: calc(0px - var(--header-height));
	padding-top: var(--header-height);
}
/*HEADER END*/

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

footer .g__background {
	background: var(--Navy, #10121C);
}

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

footer .block-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}

footer .block-item-1 {
	min-width: 189px;
}

footer .block-item-2 {
	text-align: center;
	flex: 1 0 auto;
}

footer .block-item-3 {
	min-width: 189px;
}

footer .logo {
	display: block;
}

footer .copyrights {
	color: var(--Gray-2, #6B7280);
}
/*COMMONS END*/

/*SECTION TYPE 1*/
section.type-1 {
	color: var(--color-light);
}

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

section.type-1 .el-bg-1 {
	display: block;
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 55;
}

section.type-1 .el-bg-1 > * {
	display: block;
	width: 100%;
	height: auto;
}

section.type-1 .el-bg-2 {
	border-radius: 1292px;
	background: var(--Orange, #EA6B3D);
	filter: blur(250px);
	width: 1292px;
	height: 434px;
	flex-shrink: 0;
	margin-right: auto;
	margin-left: auto;
	position: absolute;
	top: calc(-434px - 140px);
	right: 0px;
	left: 0px;
}

section.type-1 .el-bg-3 {
	border-radius: 1292px;
	background: var(--Blue, #3946B0);
	filter: blur(115px);
	width: 1292px;
	height: 434px;
	flex-shrink: 0;
	margin-right: auto;
	margin-left: auto;
	position: absolute;
	bottom: -434px;
	right: 0px;
	left: 0px;
}

section.type-1 .el-bg-4 {
	width: 1376px;
	height: 1376px;
	margin: auto;
	position: absolute;
	top: -196%;
	right: -130%;
	bottom: -200%;
	left: -100%;
}

section.type-1 .el-bg-4 svg {
	transform-origin: center;
}

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

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

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

section.type-1 .block-item-1 {
	width: calc(100% - 520px);
	padding-right: 35px;
}

section.type-1 .block-item-2 {
	width: 520px;
	height: 562px;
}

section.type-1 .card-container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: relative;
}

section.type-1 .card-list {
	width: 409px;
	height: 488px;
	position: relative;
}

section.type-1 .card {
	position: absolute;
	top: 0px;
	left: 0px;
}

/*section.type-1 .card:nth-child(1) {
	z-index: 20;
}

section.type-1 .card:nth-child(2) {
	z-index: 19;
}

section.type-1 .card:nth-child(3) {
	z-index: 18;
}

section.type-1 .card:nth-child(4) {
	z-index: 17;
}*/

section.type-1 .card-image {
	border-radius: 24px;
	width: 409px;
	height: 488px;
	overflow: hidden;
}

section.type-1 .card-image:after {
	content: '';
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 24px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	position: absolute;
	top: 0px;
	left: 0px;
}
/*SECTION TYPE 1 END*/

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

}

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

section.type-2 .wrapper {
	padding-top: 78px;
	padding-bottom: 60px;
}

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

section.type-2 .block-item {
	background: var(--Gray-4, #FAFAFA);
	border: 1px solid var(--Gray-3, #E3E3E3);
	border-radius: 24px;
	width: calc(25% - 16px - 16px);
	padding: 24px;
	margin-right: 16px;
	margin-left: 16px;
}

section.type-2 .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 96px;
	margin-bottom: 160px;
}

section.type-2 .icon > * {
	width: auto;
	max-height: 100%;
}

section.type-2 .text {
	margin-top: 8px;
}
/*SECTION TYPE 2 END*/

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

section.type-3 .g__background {
	background-color: var(--color-light)
}

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

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

section.type-3 .text-content {
	max-width: 630px;
}

section.type-3 .block-list {
	align-items: center;
}

section.type-3 .block-item-1 {
	width: 50%;
}

section.type-3 .block-item-2 {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 50%;
}

section.type-3 .circles-container {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	height: 710px;
	position: relative;
}

section.type-3 .circle-item {
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-3 .circle-item-main {
	position: relative;
}

section.type-3 .circle-item-1 {
	width: 90px;
	height: 90px;
	top: -11px;
	left: 167px;
}

section.type-3 .circle-item-2 {
	width: 170px;
	height: 170px;
	top: 90px;
	left: -157px;
}

section.type-3 .circle-item-3 {
	width: 50px;
	height: 50px;
	top: 120px;
	left: 77px;
}

section.type-3 .circle-item-4 {
	width: 170px;
	height: 170px;
	top: 88px;
	left: 280px;
}

section.type-3 .circle-item-5 {
	width: 170px;
	height: 170px;
	top: 416px;
	left: -261px;
}

section.type-3 .circle-item-6 {
	width: 50px;
	height: 50px;
	top: 570px;
	left: 14px;
}

section.type-3 .circle-item-7 {
	width: 90px;
	height: 90px;
	top: 610px;
	left: 167px;
}

section.type-3 .circle-item-8 {
	width: 90px;
	height: 90px;
	top: 480px;
	left: 290px;
}
/*SECTION TYPE 3 END*/

/*SECTION TYPE 4*/
section.type-4 {
	
}

section.type-4 .g__background {
	background-color: var(--color-light);
	height: calc(100% + 20vh);
	z-index: -1;
}

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

section.type-4 .block-list {
	align-items: center;
	position: relative;
	z-index: 66;
}

section.type-4 .block-item-1 {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	width: 50%;
	padding-right: 16px;
}

section.type-4 .block-item-2 {
	width: 50%;
	padding-left: 16px;
}

section.type-4 .image-1,
section.type-4 .image-2,
section.type-4 .image-3 {
	border-radius: 24px;
	overflow: hidden;
}

section.type-4 .image-1 {
	width: 630px;
	max-width: 100%;
	height: 420px;
}

section.type-4 .image-2 {
	width: 409px;
	max-width: 80%;
	height: 320px;
	margin-top: 40px;
}

section.type-4 .image-3 {
	width: 630px;
	max-width: 100%;
	height: 420px;
}

section.type-4.var-a {

}

section.type-4.var-a .content {
	max-width: 1072px;
	margin-right: auto;
	margin-left: auto;
}

section.type-4 .image-1 {
	height: auto;
}

section.type-4 .image-2 {
	height: auto;
}

section.type-4 .image-3 {
	height: auto;
}
/*SECTION TYPE 4 END*/

/*SECTION TYPE 5*/
section.type-5 {
	margin-top: -310px;
	z-index: 55;
	overflow: hidden;
}

section.type-5 .el-bg-1 {
	background: var(--Navy, #10121C);
	border-radius: 50%;
	min-width: 2816px;
	width: 110vw;
	height: 53vw;
	margin: 0px auto;
	position: absolute;
	top: 0px;
	right: -200%;
	left: -200%;
	transform-origin: bottom center;
}

section.type-5 .el-bg-2 {
	background: var(--Navy, #10121C);
	width: 100%;
	height: 400px;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

section.type-5 .wrapper {
	padding-top: calc(240px + 310px);
	padding-bottom: 240px;
}

section.type-5 .block-item-1 {
	margin-right: 32px;
}

section.type-5 .title {
	color: var(--color-light);
}

section.type-5 .sentence-list {
	height: 232px;
	overflow: hidden;
}

section.type-5 .sentence-item {
	color: var(--Gray-1, #35373D);
	margin-top: 8px;
	margin-bottom: 8px;
	transition: var(--transition-simple);
}

section.type-5 .sentence-item.active {
	color: var(--color-main);
}
/*SECTION TYPE 5 END*/

/*SECTION TYPE 6*/
section.type-6 {
	color: var(--color-light);
	overflow: hidden;
}

section.type-6 .g__background {
	background: var(--Navy, #10121C);
}

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

section.type-6 .slider-arrow-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

section.type-6 .slider-arrow {
	border-radius: 50%;
	border: 1px solid var(--Gray-1, #35373D);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transition: var(--transition-simple);
}

section.type-6 .slider-arrow:nth-child(1) {
	margin-right: 8px;
}

section.type-6 .slider-arrow > * {
	max-width: 18px;
	height: auto;
}

section.type-6 .slider-arrow svg path {
	transition: var(--transition-simple);
}

section.type-6 .slider-arrow:hover {
	border-color: var(--color-main);
}

section.type-6 .top-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

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

section.type-6 .bottom-row {
	margin-top: 80px;
}

section.type-6 .slider-item-list {
	width: calc(100% + 16px + 16px);
	position: relative;
	left: -16px;
}

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

section.type-6 .slick-track {
	display: flex;
	gap: 16px;
}

section.type-6 .slick-slide {
	height: initial;
}

section.type-6 .slider-item-inner {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--Gray-1, #35373D);
	border-radius: 24px;
	height: 100%;
	padding: 40px;
	position: relative;
}

section.type-6 .slider-row-container {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 100%;
	gap: 40px;
}

section.type-6 .slider-row-container > * {
	width: 100%;
}

section.type-6 .person-group-avatar {
	width: 64px;
	height: 64px;
	margin-right: 16px;
}

section.type-6 .person-group-position {
	color: var(--Gray-2, #6B7280);
}

section.type-6 .slide-bg {
	width: 180px;
	height: 180px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	z-index: -1;
	pointer-events: none;
}
/*SECTION TYPE 6 END*/

/*SECTION TYPE 7*/
section.type-7 {
	color: var(--color-light);
}

section.type-7 .g__background {
	background: var(--Navy, #10121C);
}

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

section.type-7 .top-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

section.type-7 .top-row-part-1 {
	max-width: 1076px;
	margin-right: 32px;
}

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

section.type-7 .main-row {
	margin-top: 32px;
}

section.type-7 .block-list {
	display: flex;
	flex-wrap: wrap;
	row-gap: 32px;
	width: calc(100% + 16px + 16px);
	position: relative;
	left: -16px;
}

section.type-7 .block-item {
	color: var(--color-light);
	width: calc(33.33% - 16px - 16px);
	margin-right: 16px;
	margin-left: 16px; 
}

section.type-7 .block-item-image {
	border-radius: 12px;
	box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.24);
	height: 200px;
	margin-bottom: 32px;
	overflow: hidden;
}

section.type-7 .block-item-text-1 {
	color: var(--Gray-2, #6B7280);
	margin-bottom: 8px;
}

section.type-7 .block-item-text-2 {
	margin-top: 24px;
}

section.type-7.var-a {
	color: var(--color-dark);
}

section.type-7.var-a .g__background {
	background-color: var(--color-light);
}

section.type-7.var-a .wrapper {
	padding-bottom: 40px;
}

section.type-7.var-a .block-item {
	color: var(--color-dark);
}
/*SECTION TYPE 7 END*/

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

}

section.type-8 .g__background {
	background: linear-gradient(180deg, #EA6B3D 0%, #FFA34E 100%);
}

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

section.type-8 .el-bg-1 > * {
	display: block;
	width: 100%;
	height: auto;
}

section.type-8 .wrapper {
	padding-top: 120px;
	padding-bottom: calc(120px + 2.4vw);
}

section.type-8 .title {
	text-align: center;
	color: var(--color-light);
}

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

section.type-8 .block-list {
	display: flex;
	justify-content: center;
	width: calc(100% + 16px + 16px);
	position: relative;
	left: -16px;
}

section.type-8 .block-item {
	border-radius: 24px;
	background-color: var(--color-light);
	width: calc(33.33% - 16px - 16px);
	padding: 24px;
	margin-right: 16px;
	margin-left: 16px;
	position: relative;
}

section.type-8 .block-item-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
	height: 100%;
	position: relative;
}

section.type-8 .block-item-inner > * {
	width: 100%;
}

section.type-8 .block-item-title.var-a {
	color: var(--color-main);
}

section.type-8 .block-item-text {
	color: var(--Gray-2, #6B7280);
	margin-top: 4px;
}

section.type-8 .block-item-text-2 {
	margin-top: 24px;
}

section.type-8 .block-item-button {
	text-align: center;
	margin-top: 32px;
}
/*SECTION TYPE 8 END*/

/*SECTION TYPE 9*/
section.type-9 {
	display: none;
}

section.type-9 .g__background {
	background: var(--Gray-3, #E3E3E3);
}

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

section.type-9 .el-bg-1 > * {
	display: block;
	width: 100%;
	height: auto;
}

section.type-9 .wrapper-outer {
	overflow: hidden;
}

section.type-9 .wrapper {
	padding-top: 120px;
	padding-bottom: 140px;
}

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

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

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

section.type-9 .block-list {
	display: flex;
}

section.type-9 .block-item-1 {
	display: flex;
	justify-content: center;
	width: 50%;
	position: relative;
}

section.type-9 .block-item-2 {
	width: 50%;
	padding-left: 16px;
}

section.type-9 .tel-container {
	display: flex;
	justify-content: center;
	width: 100%;
	position: absolute;
	top: -12px;
}

section.type-9 .tel-item {
	border-radius: 50%;
	position: absolute;
	overflow: hidden;
}

section.type-9 .tel-item-main {
	border-radius: initial;
	width: 320px;
	position: relative;
	z-index: 33;
	overflow: initial;
}

section.type-9 .tel-item-image-onscreen {
	display: block;
	width: 226px;
	margin: 0px auto;
	position: absolute;
	top: -90px;
	left: 0px;
	right: 0px;
}

section.type-9 .tel-item-1 {
	width: 90px;
	height: 90px;
	top: -70px;
	left: 290px;
	z-index: 22;
}

section.type-9 .tel-item-2 {
	width: 170px;
	height: 170px;
	top: 43px;
	left: 17px;
	z-index: 22;
}

section.type-9 .tel-item-3 {
	width: 90px;
	height: 90px;
	top: 20px;
	left: 420px;
	z-index: 44;
}

section.type-9 .tel-item-4 {
	width: 50px;
	height: 50px;
	top: 130px;
	left: 526px;
	z-index: 44;
}

section.type-9 .tel-item-5 {
	width: 90px;
	height: 90px;
	top: 280px;
	left: -30px;
	z-index: 44;
}

section.type-9 .tel-item-6 {
	width: 170px;
	height: 170px;
	top: 380px;
	left: 84px;
	z-index: 44;
}

section.type-9 .tel-item-7 {
	width: 170px;
	height: 170px;
	top: 300px;
	left: 420px;
	z-index: 44;
}

section.type-9.var-a .el-bg-1 {
	top: initial;
}

section.type-9.var-a .wrapper {
	padding-top: 200px;
}
/*SECTION TYPE 9 END*/

/*SECTION TYPE 10*/
section.type-10 {
	z-index: 55;
}

.type-10-before + section {
	padding-bottom: 2vw;
}

section.type-10 .g__background {
	background: var(--Navy, #10121C);
}

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

section.type-10 .el-bg-1 > * {
	display: block;
	width: 100%;
	height: auto;
}

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

section.type-10 .big-button {
	display: flex;
	align-items: flex-end;
	cursor: pointer;
}

section.type-10 .big-button-title {
	font-size: 120px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -2.8px;
	color: var(--Gray-2, #6B7280);
	transition: var(--transition-simple);
}

section.type-10 .big-button-circle {
	background-color: var(--color-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	margin-left: 24px;
	transition: var(--transition-simple);
}

section.type-10 .big-button-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	max-width: 90%;
	height: 64px;
	max-height: 90%;
}

section.type-10 .big-button-icon > * {
	display: block;
	width: 100%;
	height: auto;
}

section.type-10 .big-button-icon > * path {
	fill: var(--color-dark);
}

section.type-10 .big-button:hover .big-button-title {
	color: var(--color-main);
}

section.type-10 .big-button:hover .big-button-circle {
	background-color: var(--color-main);
	transform: translateX(100px);
}

section.type-10 .big-button:hover .big-button-icon > * path {
	fill: var(--color-light);
}
/*SECTION TYPE 10 END*/

/*SECTION TYPE 11*/
section.type-11 {
	color: var(--color-light);
}

section.type-11 .g__background {
	background: var(--Navy, #10121C);
}

section.type-11 .el-bg-1 {
	width: 100%;
	position: absolute;
	bottom: 120px;
	left: 0px;
}

section.type-11 .el-bg-1 > * {
	display: block;
	width: 100%;
	height: auto;
}

section.type-11 .el-bg-2 {
	background-color: var(--color-light);
	width: 100%;
	height: 120px;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

section.type-11 .wrapper {
	padding-top: 120px;
}

section.type-11 .top-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

section.type-11 .top-row-part-1 {
	max-width: 853px;
	margin-right: 32px;
}

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

section.type-11 .main-row {
	margin-top: 80px;
}

section.type-11 .block-list-outer {
	margin-top: 40px;
}

section.type-11 .block-list {
	display: flex;
	flex-wrap: wrap;
	row-gap: 16px;
	width: calc(100% + 8px + 8px);
	position: relative;
	left: -8px;
}

section.type-11 .block-item {
	background: var(--Navy, #10121C);
	border-radius: 16px;
	border: 1px solid var(--Gray-1, #35373D);
	backdrop-filter: blur(12px);
	color: var(--color-light);
	width: calc(33.33% - 8px - 8px);
	padding: 32px;
	margin-right: 8px;
	margin-left: 8px; 
}

section.type-11 .block-item-image {
	border-radius: 12px;
	height: 200px;
	margin-bottom: 32px;
	overflow: hidden;
}

section.type-11 .block-item-text-1 {
	color: var(--color-main);
	vertical-align: middle;
	margin-bottom: 8px;
}

section.type-11 .block-item-text-1 span {
	display: inline-block;
	position: relative;
	top: -1px;
}

section.type-11 .block-item-text-2 {
	margin-top: 32px;
}

section.type-11 .block-item:nth-child(1) {
	display: flex;
	align-items: center;
	width: calc(66.66% - 8px - 8px);
}

section.type-11 .block-item:nth-child(1) .part-1 {
	width: 50%;
	height: 100%;
	padding-left: 16px;
}

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

section.type-11 .block-item:nth-child(1) .block-item-image {
	height: 100%;
	margin-bottom: initial;
}

section.type-11 .block-item:nth-child(1) .block-item-title {
	font-size: 32px;
	font-weight: 500;
	line-height: 115%;
	letter-spacing: -0.64px;
}

section.type-11 .block-item:nth-child(1) .block-item-text-2 {
	margin-top: 24px;
}

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

/*SECTION TYPE 12*/
section.type-12 {
	color: var(--color-light);
}

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

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

section.type-12 .el-bg-1 > * {
	display: block;
	width: 100%;
	height: auto;
}

section.type-12 .wrapper {
	padding-top: 60px;
	padding-bottom: 110px;
}

section.type-12 .upcoming {
	text-align: center;
	color: var(--color-main);
	margin-bottom: 16px;
}

section.type-12 .title {
	text-align: center;
}

section.type-12 .row-1 {
	margin-bottom: 66px;
}

section.type-12 .row-3 {
	margin-top: 33px;
}

section.type-12 .element-list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
}

section.type-12 .element-item {
	display: flex;
	align-items: center;
}

section.type-12 .element-item-icon {
	width: 24px;
	height: 24px;
	margin-right: 8px;
	position: relative;
}

section.type-12 .element-item-icon > * {
	display: block;
	max-width: 95%;
	height: auto;
}
/*SECTION TYPE 12 END*/

/*SECTION TYPE 13*/
section.type-13 {
	color: var(--color-dark);
}

section.type-13 .g__background {
	background-color: var(--color-light);
}

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

section.type-13 .content {
	max-width: 1072px;
	margin-right: auto;
	margin-left: auto;
}
/*SECTION TYPE 13 END*/

/*SECTION TYPE 14*/
section.type-14 {
	color: var(--color-light);
}

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

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

section.type-14 .content {
	max-width: 1072px;
	margin-right: auto;
	margin-left: auto;
}

section.type-14 .tile {
	background: var(--Navy, #10121C);
	border-radius: 24px;
	padding: 40px;
}

section.type-14 .title {
	color: var(--color-main);
}

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

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

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

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

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

	section, header, footer {
		
	}

	.g__text.type-h1, h1 {
		font-size: 48px;
		font-weight: 500;
		line-height: 110%;
		letter-spacing: -0.96px;
	}

	header .part-1 {
		width: initial;
	}

	header .part-3 {
		width: initial;
	}

	footer .block-list {
		justify-content: center;
		flex-wrap: wrap;
	}

	footer .block-item-1 {
		display: flex;
		justify-content: center;
		order: 1;
		width: 100%;
	}

	footer .block-item-2 {
		display: flex;
		justify-content: center;
		order: 3;
		width: 100%;
	}

	footer .block-item-3 {
		display: flex;
		justify-content: center;
		order: 2;
		width: 100%;
	}

	section.type-1 {
		overflow: hidden;
		padding-bottom: 100px;
	}

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

	section.type-1 .block-item-1 {
		width: 100%;
		padding-right: initial;
	}

	section.type-1 .block-item-2 {
		width: 100%;
		height: initial;
		margin-top: 80px;
		z-index: 66;
	}

	section.type-1 .card-container {
		height: initial;
	}

	section.type-1 .card-list {
		width: 342px;
		height: 370px;
		margin-right: auto;
		margin-left: auto;
	}

	section.type-1 .card {
		margin: 0px auto;
		right: 0px;
	}

	section.type-1 .card-image {
		max-width: 100%;
		height: initial;
	}

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

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

	section.type-2 {
		overflow: hidden;
	}

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

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

	section.type-2 .block-list-outer {
		max-width: 90%;
	}

	section.type-2 .block-list-outer .slick-list {
		overflow: visible;
	}

	section.type-2 .block-list-outer .slick-track {
		display: flex;
	}

	section.type-2 .block-item {
		width: initial;
		height: auto;
		margin-right: 16px;
		margin-left: initial;
	}

	section.type-2 .icon {
		margin-bottom: 48px;
	}

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

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

	section.type-3 .block-item-2 {
		display: none;
	}

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

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

	section.type-3 .title {
		font-size: 32px;
		font-weight: 500;
		line-height: 115%;
		letter-spacing: -0.64px;
	}

	section.type-3 .text {
		font-size: 16px;
		font-weight: 400;
		line-height: 140%;
		letter-spacing: -0.32px;
	}

	section.type-4 {
		overflow: hidden;
	}

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

	section.type-4 .slider-outer {
		max-width: 90%;
	}

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

	section.type-4 .slider-outer .slick-track {
		display: flex;
	}

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

	section.type-5 {
		overflow: visible;
		margin-top: initial;
	}

	section.type-5 .el-bg-1 {
		display: none;
	}

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

	section.type-5 .block-list {
		display: block;
	}

	section.type-5 .block-item-1 {
		margin-right: initial;
	}

	section.type-5 .block-item-2 {
		margin-top: 8px;
	}

	section.type-5 .title {
		font-size: 32px;
		font-weight: 500;
		line-height: 115%;
		letter-spacing: -0.64px;
	}

	section.type-5 .sentence-list {
		height: auto;
		position: relative;
	}

	section.type-5 .sentence-item {
		min-height: 106px;
		margin-top: initial;
		margin-bottom: initial;
		opacity: 0;
		position: absolute;
		top: 0px;
		left: 0px;
	}

	section.type-5 .sentence-item.active {
		opacity: 1;
		position: relative;
	}

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

	section.type-6 .title {
		font-size: 32px;
		font-weight: 500;
		line-height: 115%;
		letter-spacing: -0.64px;
	}

	section.type-6 .bottom-row {
		margin-top: 32px;
	}

	section.type-6 .slider-item-inner {
		padding: 24px;
	}

	section.type-6 .slide-title {
		font-size: 20px;
		font-weight: 400;
		line-height: 140%;
		letter-spacing: -0.4px;
	}

	section.type-6 .slide-bg {
		opacity: 0.2;
	}

	section.type-6 .slider {
		max-width: 90%;
	}

	section.type-6 .slider-item-list {
		width: 100%;
		left: initial;
	}

	section.type-6 .slick-track {
		gap: initial;
	}

	section.type-6 .slider-item {
		margin-right: 16px;
	}

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

	section.type-8 .title {
		font-size: 32px;
		font-weight: 500;
		line-height: 115%;
		letter-spacing: -0.64px;
	}

	section.type-8 .block-list-outer {
		margin-top: 32px;
	}

	section.type-8 .block-list {
		flex-wrap: wrap;
		row-gap: 16px;
		width: 100%;
		left: initial;
	}

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

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

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

	section.type-9 .tel-list {
		width: 100%;
		max-width: 600px;
		position: relative;
	}

	section.type-9 .tel-item-main {
		margin-right: auto;
		margin-left: auto;
	}

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

	section.type-9 .block-item-1 {
		width: 100%;
		margin-top: 120px;
		margin-bottom: -320px;
	}

	section.type-9 .block-item-2 {
		order: -1;
		width: 100%;
		padding-left: initial;
	}

	section.type-9 .tel-container {
		position: relative;
		top: initial;
	}

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

	section.type-10 .big-button-title {
		font-size: 48px;
		font-weight: 500;
		line-height: 110%;
		letter-spacing: -0.96px;
		text-align: right;
	}

	section.type-10 .big-button {
		justify-content: center;
	}

	section.type-10 .big-button-circle {
		transform: initial !important
	}
}

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