/*COMMONS*/
:root {
	--color-main: #D6A35C;
	--color-main-2: #0E3542;
	--color-white: #ffffff;
	--color-dark: #092832;

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

::-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: "Inter", sans-serif;
	/*font-family: 'Sentient', sans-serif;*/
	font-weight: 400;
	color: var(--color-white);
	background-color: var(--color-main-2);
}

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

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

.for-mobile {
	display: none;
}

.for-desktop {
	display: block;
}

.wrapper {
    max-width: calc(1232px + 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-main {
	color: var(--color-main);
}

.g__color-main-2 {
	color: var(--color-main-2);--color-dark: #092832;
}

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

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

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

.g__text.type-h1, h1 {
	font-family: 'Sentient', sans-serif;
	font-size: 48px;
	font-weight: 300;
	line-height: 125%;
	letter-spacing: -0.96px;
}

.g__text.type-h2, h2 {
	font-family: 'Sentient', sans-serif;
	font-size: 36px;
	font-weight: 300;
	line-height: 122%;
	letter-spacing: -0.72px;
}

.g__text.type-h3, h3 {
	font-family: 'Sentient', sans-serif;
	font-size: 30px;
	font-weight: 300;
	line-height: 127%;
	letter-spacing: -0.6px;
}

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

.g__text.type-h4, h4 {
	font-family: 'Sentient', sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 133%;
	letter-spacing: -0.48px;
}

.g__text.type-h5, h5 {
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.32px;
	text-transform: uppercase;
}

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

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

.g__text.type-bg-title {
	font-family: 'Sentient', sans-serif;
	font-size: 240px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: -4.8px;
}

.g__text.type-1 {
	font-family: 'Sentient', sans-serif;
	font-size: 48px;
	font-weight: 500;
	line-height: 125%;
	letter-spacing: -0.96px;
}

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

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

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

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

.g__button-inner {
	padding-right: 32px;
	padding-left: 32px;
	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: 12px;
	padding-bottom: 12px;
}

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

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

.g__button.type-1 .g__button-text {
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.32px;
	color: var(--color-dark);
}

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

.g__button.type-1.var-a {

}

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

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

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

.g__button.type-1.var-a:hover .g__button-text {
	color: var(--color-dark);
}
/*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:after {
	content: '';
	background-color: var(--color-main);
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	transition: var(--transition-simple);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g__wysiwyg_editor a {
	text-decoration: underline;
}

.g__wysiwyg_editor a:hover {
	
}

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

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

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

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

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

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

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

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

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

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

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

.main-menu .g__background {
	background-color: var(--color-main-2);
}

.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-white);
}

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

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

header .g__background {
	background-color: var(--color-main-2);
}

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

header .logo {
	transition: var(--transition-simple);
}

header .logo:hover {
	opacity: 0.6;
}

header .nav ul {
	display: flex;
}

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

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

header .button {
	margin-left: 16px;
}
/*HEADER END*/

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

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

footer .logo {
	transition: var(--transition-simple);
}

footer .logo:hover {
	opacity: 0.6;
}

footer .copyrights {
	font-size: 14px;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: -0.28px;
}

footer .nav ul {
	display: flex;
}

footer .nav ul li {
	position: relative;
}

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

footer .nav ul li a {
	font-size: 14px;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: -0.28px;
	color: var(--color-main);
	padding-right: 26px;
	padding-left: 26px;
	position: relative;
	transition: var(--transition-simple);
}

footer .nav ul li a:hover {
	color: var(--color-white);
}

footer .nav ul li:nth-child(1) a {
	padding-left: initial;
}

footer .nav ul li:nth-last-child(1) a {
	padding-right: initial;
}

footer .layout {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer .part-1 {
	width: 344px;
}

footer .part-3 {
	display: flex;
	justify-content: flex-end;
	min-width: 344px;
}
/*FOOTER END*/
/*COMMONS END*/

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

section.type-1 .wrapper {
	padding-top: 80px;
	z-index: 66;
}

section.type-1 .title {
	text-align: center;
	max-width: 1020px;
	margin-right: auto;
	margin-left: auto;
}

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

section.type-1 .image {
	opacity: 0.3;
	height: 457px;
	margin-top: -100px;
	position: relative;
}

section.type-1 .image:before {
	content: '';
	background: linear-gradient(180deg, #0B3641 0%, rgba(11, 54, 65, 0.00) 51%, #0B3441 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 44;
}

section.type-1 .image:after {
	content: '';
	background: linear-gradient(270deg, #0B3641 0%, rgba(11, 43, 65, 0.00) 51%, #0B3441 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 55;
}
/*SECTION TYPE 1 END*/

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

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

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

section.type-2 .item-list {
	display: flex;
	margin-top: 16px;
}

section.type-2 .item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25%;
	height: 96px;
}

section.type-2 .item > * {
	opacity: 0.7;
	max-width: 80%;
}
/*SECTION TYPE 2 END*/

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

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

section.type-3 .title {
	text-align: center;
}
/*SECTION TYPE 3 END*/

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

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

section.type-4 .content {
	padding-left: 100px;
}

section.type-4 .item-list {
	display: grid;
	grid-template-rows: repeat(2, auto);
	grid-column-gap: 40px;
	grid-row-gap: 40px;
	height: 554px;
}

section.type-4 .item {
	border-radius: 8px;
	overflow: hidden;
}

section.type-4 .item:nth-child(1) {
	grid-area: 1 / 1 / 3 / 2;
}

section.type-4 .item:nth-child(2) {
	grid-area: 1 / 2 / 2 / 2;
}

section.type-4 .item:nth-child(3) {
	grid-area: 2 / 2 / 2 / 2;
}
/*SECTION TYPE 4 END*/

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

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

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

section.type-5 .bg-title {
	opacity: 0.04;
	position: absolute;
	top: -90px;
	right: -140px;
}

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

section.type-5 .part-1 {
	width: 60%;
}

section.type-5 .part-2 {
	width: 40%;
}

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

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

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

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

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

section.type-6 .item {
	border-radius: 8px;
	width: calc(25% - 12px);
	height: 356px;
	position: relative;
	overflow: hidden;
}

section.type-6 .item:before {
	content: '';
	background-color: var(--color-dark);
	opacity: 0.8;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-6 .item.var-a {
	padding: 32px;
}

section.type-6 .item-step {
	font-size: 14px;
	font-weight: 700;
	line-height: 143%;
	letter-spacing: -0.28px;
	text-transform: uppercase;
	color: var(--color-white);
	opacity: 0.6;
	margin-bottom: 32px;
}

section.type-6 .item-text {
	margin-top: 16px;
}
/*SECTION TYPE 6 END*/

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

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

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

section.type-7 .bg-title {
	opacity: 0.04;
	position: absolute;
	top: -90px;
	left: -150px;
}

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

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

section.type-7 .layout .part-1 {
	width: 488px;
	margin-right: 56px;
}

section.type-7 .layout .part-2 {
	
}

section.type-7 .box-group {
	display: flex;
}

section.type-7 .box-item {
	text-align: center;
	border-radius: 4px;
	width: 320px;
	height: 160px;
	padding: 32px 16px;
	position: relative;
	overflow: hidden;
}

section.type-7 .box-item:before {
	content: '';
	background-color: var(--color-dark);
	opacity: 0.8;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-7 .box-item-text {
	margin-top: 6px;
}

section.type-7 .box-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 48px;
	position: relative;
}

section.type-7 .box-divider:before {
	content: '';
	background-color: #1A3F4B;
	width: 2px;
	height: 52px;
	margin: 0px auto;
	position: absolute;
	top: 8px;
	right: 0px;
	left: 0px;
}

section.type-7 .box-divider:after {
	content: '';
	background-color: #1A3F4B;
	width: 2px;
	height: 52px;
	margin: 0px auto;
	position: absolute;
	bottom: 8px;
	right: 0px;
	left: 0px;
}

section.type-7 .box-divider-text {
	text-transform: initial;
}

section.type-7 .item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 80px;
}

section.type-7 .item {
	border-radius: 4px;
	width: calc(20% - 7px);
	padding: 24px;
	position: relative;
	overflow: hidden;
}

section.type-7 .item:before {
	content: '';
	background-color: var(--color-dark);
	opacity: 0.8;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
}

section.type-7 .item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
}

section.type-7 .item:nth-last-child(1) {
	flex: 1 0 auto;
}

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

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

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

section.type-8 .tile {
	border-radius: 8px;
	max-width: 786px;
	padding: 40px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	overflow: hidden;
}

section.type-8 .tile:before {
	content: '';
	background-color: var(--color-dark);
	opacity: 0.8;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-8 .tile .layout {
	display: flex;
}

section.type-8 .tile .layout .part-1 {
	width: 176px;
	margin-right: 40px;
}

section.type-8 .tile .layout .part-2 {
	width: calc(100% - 176px - 40px);
}

section.type-8 .avatar {
	border-radius: 8px;
	width: 176px;
	height: 176px;
	overflow: hidden;
}

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

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

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

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

section.type-9 .title {
	text-align: center;
	margin-bottom: 80px;
}

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

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

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

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

	.g__text.type-h1, h1 {
		font-size: 36px;
		font-weight: 300;
		line-height: 122%;
		letter-spacing: -0.72px;
	}

	.g__text.type-h2, h2 {
		font-size: 30px;
		font-weight: 300;
		line-height: 127%;
		letter-spacing: -0.6px;
	}

	.g__text.type-h3, h3 {
		font-size: 24px;
		font-weight: 300;
		line-height: 133%;
		letter-spacing: -0.48px;
	}

	.g__text.type-bg-title {
		font-size: 120px;
		font-weight: 500;
		line-height: 100%;
		letter-spacing: -2.4px;
	}

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

	section.type-1 .image {
		height: 375px;
	}

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

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

	section.type-2 .item-list {
		overflow-x: auto;
	}

	section.type-2 .item {
		min-width: 190px;
		width: 190px;
	}

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

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

	section.type-4 .content {
		padding-left: initial;
	}

	section.type-4 .item-list {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		height: initial;
	}

	section.type-4 .item {
		width: 100%;
		height: 208px;
	}

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

	section.type-5 .layout {
		flex-wrap: wrap;
		gap: 32px;
	}

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

	section.type-5 .part-2 {
		width: 100%;
	}

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

	section.type-5 .bg-title {
		top: -80px;
		right: initial;
		left: 80px;
	}

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

	section.type-6 .item {
		width: 100%;
		height: auto;
		min-height: 284px;
	}

	section.type-6 .item-image {
		aspect-ratio: 2/1;
	}

	section.type-6 .item:nth-child(1) {
		order: 1;
	}

	section.type-6 .item:nth-child(2) {
		order: 2;
	}

	section.type-6 .item:nth-child(3) {
		order: 3;
	}

	section.type-6 .item:nth-child(4) {
		order: 4;
	}

	section.type-6 .item:nth-child(5) {
		order: 6;
	}

	section.type-6 .item:nth-child(6) {
		order: 5;
	}

	section.type-6 .item:nth-child(7) {
		order: 8;
	}

	section.type-6 .item:nth-child(8) {
		order: 7;
	}

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

	section.type-7 .layout {
		flex-wrap: wrap;
	}

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

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

	section.type-7 .box-group {
		flex-wrap: wrap;
	}

	section.type-7 .box-item {
		width: 100%;
	}

	section.type-7 .box-divider {
		width: 100%;
		padding-top: 8px;
		padding-bottom: 8px;
		margin-top: 8px;
		margin-bottom: 8px;
	}

	section.type-7 .box-divider:before {
		height: 2px;
		width: 52px;
		margin: initial;
		position: initial;
	}

	section.type-7 .box-divider:after {
		height: 2px;
		width: 52px;
		margin: initial;
		position: initial;
	}

	section.type-7 .box-divider-text {
		margin: 0px 16px;
	}

	section.type-7 .bg-title {
	    opacity: 0.04;
	    position: absolute;
	    top: -60px;
	    left: 20px;
	}

	section.type-7 .item-list {
		gap: 16px;
		margin-top: 32px;
	}

	section.type-7 .item {
		width: calc(50% - 8px);
		padding: 16px;
	}

	section.type-7 .item-title {
		font-size: 16px;
	}

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

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

	section.type-8 .tile {
		padding: 32px;
	}

	section.type-8 .tile .layout {
		text-align: center;
		justify-content: center;
		flex-wrap: wrap;
	}

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

	section.type-8 .tile .layout .part-2 {
		width: 100%;
		margin-top: 24px;
	}

	section.type-8 .avatar {
		margin-right: auto;
		margin-left: auto;
	}

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

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

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

	footer .layout {
		text-align: center;
		justify-content: center;
		flex-wrap: wrap;
		gap: 24px;
	}

	footer .part-1 {
		width: 100%;
		order: 1;
	}

	footer .part-2 {
		width: 100%;
		order: 3;
	}

	footer .part-3 {
		justify-content: center;
		width: 100%;
		min-width: initial;
		order: 2;
	}
}