/*COMMONS*/
:root {
	--color-accent: #003999;
	--color-accent-2: #F18700;
	--color-black: #000000;
	--color-white: #ffffff;
	--color-gray: #D4D4D4;
	--color-gray-2: #5B5C5D;
	--color-gray-3: #C8C8C8;

	--color-main: var(--color-accent);
	--color-main-2: var(--color-accent-2);
}

::-moz-selection {
	--color-black: #000000;
	background: rgba(241, 135, 0, 0.6);
}

::selection {
	--color-black: #000000;
	background: rgba(241, 135, 0, 0.6);
}

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: var(--color-black);
	background-color: var(--color-white);
}

body.hide-scroll {
	overflow: hidden;
}

body::-webkit-scrollbar {
	width: 4px;
}
 
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-accent);
}

.for-mobile {
	display: none;
}

.for-desktop {
	display: block;
}

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

.content.type-1 {
	max-width: 1130px;
	margin-right: auto;
	margin-left: auto;
}

/*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-black {
	color: var(--color-black);
}

.g__color-light-2 {
	color: var(--color-light-2);
}
/*COLORS END*/

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

.g__text.type-h1, h1 {
	font-size: 40px;
	font-weight: 600;
	line-height: 49px;
	text-transform: uppercase;
}

.g__text.type-h2, h2 {
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	position: relative;
}

.g__text.type-h2:after,
h2:after {
	content: '';
	background-color: var(--color-accent-2);
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: -7px;
	left: 0px;
}

.g__text.type-h3, h3 {
	font-size: 30px;
	font-weight: 600;
	line-height: 37px;
	text-transform: uppercase;
}

.g__text.type-h4, h4 {
	
}

.g__text.type-h5, h5 {
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
}

.g__text.type-p, p {
	font-size: 16px;
	line-height: 20px;
}

b,
strong {
	font-weight: 600;
}

blockquote {
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	padding-top: 30px;
	padding-bottom: 30px;
	position: relative;
}

blockquote:before {
	content: '';
	border: 3px solid #213A8F;
	border-radius: 10px;
	width: calc(100% + 30px + 30px);
	height: 100%;
	position: absolute;
	top: 0px;
	left: -30px;
}

blockquote p {
	margin-top: 20px;
}

blockquote p:nth-child(1) {
	margin-top: initial;
}
/*TEXTS END*/

.g__wysiwyg_editor {
	position: relative;
}

.g__wysiwyg_editor > * {
	margin-top: 20px;
}

.g__wysiwyg_editor > *:nth-child(1) {
	margin-top: initial;
}

.g__wysiwyg_editor h5 {
	margin-top: 48px;
	margin-bottom: 18px;
}

.g__wysiwyg_editor p {
	margin-top: 20px;
}

.g__wysiwyg_editor blockquote {
	margin-top: 40px;
	margin-bottom: 40px;
}

.g__wysiwyg_editor ul li {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding-left: 24px;
	position: relative;
}

.g__wysiwyg_editor ul li:before {
	content: '';
	background-color: var(--color-black);
	border-radius: 50%;
	width: 2px;
	height: 2px;
	position: absolute;
	top: 12px;
	left: 11px;
}

.g__wysiwyg_editor.var-a ul li {
	font-weight: 600;
}

.g__wysiwyg_editor.var-a ul li:before {
	width: 4px;
	height: 4px;
	top: 10px;
}

/*BUTTONS*/
.g__button {
	background: none;
	border: none;
	outline: none;
	display: inline-block;
	padding: initial;
	position: relative;

	cursor: pointer;
}
.g__button .g__button-frame {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;

	overflow: hidden;
}

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


.g__button .g__button-text {
	text-align: center;
	color: var(--color-black);
	position: relative;

	z-index: 55;
}

.g__button.type-main {

}

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

.g__button.type-main .g__button-inner {
	padding-top: 20px;
	padding-right: 30px;
	padding-bottom: 20px;
	padding-left: 30px;
}

.g__button.type-main .g__button-text {
	font-size: 16px;
	font-weight: 700;
	line-height: 100%;
	text-transform: uppercase;
	color: var(--color-white);
}

.g__button.type-main.var-a {

}

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

.g__button.type-sec {

}

.g__button.type-sec .g__button-frame {
	background-color: rgba(255, 255, 255, 0);
	border: 1px solid #DFDFE0;
	border-radius: 6px;
	transition: 0.3s;
}

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

.g__button.type-sec .g__button-inner {
	padding-top: 11px;
	padding-right: 12px;
	padding-bottom: 11px;
	padding-left: 12px;
}

.g__button.type-sec .g__button-text {
	font-size: 14px;
	font-weight: 500;
	color: #5B5C5D;
	transition: 0.3s;
}

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

.g__button.var-icon {

}

.g__button.var-icon .g__button-inner {
	display: flex;
	align-items: center;
	justify-content: center;
}

.g__button.var-icon .g__button-inner .g__button-icon {
	transition: 0.3s;
}

.g__button.var-icon:hover .g__button-inner .g__button-icon {
	transform: translateX(12px);
}

.g__button.var-icon .g__button-inner .g__button-icon > * {
	display: block;
}

.g__button.var-icon .g__button-inner .g__button-text + .g__button-icon {
	margin-left: 12px;
}

.g__button.var-icon .g__button-inner .g__button-icon + .g__button-text {
	margin-left: 12px;
}
/*BUTTONS END*/

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

	cursor: pointer;
}

.g__link.type-read-more {

}

.g__link.type-read-more .g__link-inner {
	display: flex;
	align-items: center;
}

.g__link.type-read-more .g__link-icon {
	margin-right: 16px;
}

.g__link.type-read-more .g__link-text {
	font-family: 'MonumentExtended', serif;
	font-size: 24px;
	font-weight: 400;
	color: var(--color-black);
}

/*INPUTS*/
.g__form {
	position: relative;
}

.g__form-row {
	position: relative;
}

.g__form-row:not(:nth-child(1)) {
	margin-top: 50px;
}

.g__form-section {
	display: flex;
	position: relative;
}

.g__form-section:not(:nth-child(1)) {
	margin-top: 25px;
}

.g__form-section.var-a {
	display: block;
}

.g__form-section.var-b {
	max-width: calc(260px + 704px);
}

.g__form-row.g__form-row-1-of-2 {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 4px + 4px);
	left: -4px;
}

.g__form-row.g__form-row-2-of-3 {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 4px + 4px);
	left: -4px;
}

.g__form-row.g__form-row-1-of-4 {
	display: flex;
	width: calc(100% + 4px + 4px);
	left: -4px;
}

.g__form-row-with-button {
	display: flex;
	justify-content: center;
}

.g__form-row-with-button:not(:nth-child(1)) {
	margin-top: 66px;
}

.g__form-submit-icon {
	display: block;
	width: 54px;
	height: 47px;
}

.g__form-submit-icon svg {
	display: block;
	width: 100%;
	height: auto;
}

.g__form-input {
	position: relative;	
}

.g__form-input.size-1 {
	max-width: 200px;
}

.g__form-input.size-2 {
	max-width: 384px;
}

.g__form-input.size-3 {
	max-width: 480px;
}

.g__form-row.g__form-row-1-of-2 .g__form-input {
	width: calc(50% - 4px - 4px);
	margin-right: 4px;
	margin-left: 4px;
}

.g__form-row.g__form-row-2-of-3 .g__form-input:nth-child(1) {
	width: calc(66.66% - 4px - 4px);
	margin-right: 4px;
	margin-left: 4px;
}

.g__form-row.g__form-row-2-of-3 .g__form-input:nth-child(2) {
	width: calc(33.33% - 4px - 4px);
	margin-right: 4px;
	margin-left: 4px;
}

.g__form-row.g__form-row-1-of-4 .g__form-input {
	width: calc(22% - 4px - 4px);
	margin-right: 4px;
	margin-left: 4px;
}

.g__form-row.g__form-row-1-of-4 .g__form-input:nth-child(4) {
	width: calc(34% - 4px - 4px);
}

.g__form-input-inner {
	position: relative;
}

.g__form-input input,
.g__form-input textarea {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	color: var(--color-black);
	opacity: 1;
	background: none;
	border: 3px solid #BEBEBE;
	border-radius: 10px;
	outline: none;
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 18px 20px 18px 20px;
	transition: 0.3s;

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

.g__form-input input::placeholder,
.g__form-input textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.g__form-input input:focus,
.g__form-input textarea:focus {
	border-color: var(--color-main);
}

.g__form-input textarea {
	height: 100px;
	resize: vertical;
	transition: initial;
}

.g__form-input.height-3 textarea {
	height: 190px;
}

.g__form-input.type-file .wpcf7-form-control-wrap {
	/*opacity: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 55;*/
}

.dnd-upload-status .dnd-upload-details .name span {
	color: var(--color-accent-2);
}

.g__form-input.type-file .g__button {
	pointer-events: none;

	transition: 0.3s;
}

.g__form-input-file {
	cursor: pointer;
}

.g__form-input-file:hover .g__button {
	opacity: 0.6;
}

.g__form-input.type-file .g__form-input-inner {
	display: flex;
	align-items: center;
}

.g__form-input.type-file.var-mult .g__form-input-inner {
	display: block;
}

.codedropz-upload-inner > div:nth-child(1) {
	font-size: 16px;
	font-weight: 600;
}

.codedropz-upload-inner span {
	display: inline-block;
	margin-top: 16px;
	margin-bottom: 16px;
}

.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {
	font-weight: 600;
	color: var(--color-accent);
}

.g__form-input-label-right {
	margin-left: 32px;
}

.g__form-input-label-bottom {
	margin-top: 16px;
}

.g__form-input-file-name {
	margin-top: 12px;
}

.g__form-input-file-name span {
	font-weight: 600;
}

.g__form-input input[type="radio"] {
	display: none;
}

.g__form-input .wpcf7-list-item-label {
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.g__form-input .wpcf7-list-item-label:before {
	content: '';
	border: 3px solid var(--color-accent);
	border-radius: 50%;
	display: block;
	min-width: 38px;
	width: 38px;
	height: 38px;
	margin-right: 12px;
}

.g__form-input .wpcf7-list-item-label:after {
	content: '';
	background-color: var(--color-accent);
	border-radius: 50%;
	opacity: 0;
	display: block;
	width: 22px;
	height: 22px;
	margin: auto 0px;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 11px;

	transition: 0.3s
}

.g__form-input input[type="radio"]:checked + .wpcf7-list-item-label:after {
	opacity: 1;
}

.wpcf7-list-item {
	max-width: calc(50% - 20px);
	margin: initial;
}

.wpcf7-list-item:not(:nth-last-child(1)) {
	margin-right: 20px;
}

.g__form-input select {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	color: var(--color-black);
	opacity: 1;
	background: none;
	border: 3px solid #BEBEBE;
	border-radius: 10px;
	outline: none;
	display: block;
	width: 100%;
	padding: 18px 20px 18px 20px;

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

.g__form-input select * {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	color: var(--color-black);
	opacity: 1;
	background: none;
	border: 3px solid var(--color-accent-2);
	border-radius: 10px;
	outline: none;
	display: block;
	width: 100%;
	padding: 18px 20px 18px 20px;

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

.g__form-input-label {
	font-size: 16px;
	font-weight: 600;
	line-height: 20px;
	margin-bottom: 8px;
}

.g__form-section-label {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: var(--color-black);
	width: 260px;
	padding-top: 6px;
	padding-right: 40px;
}

.g__form-section-label.var-a {
	font-weight: 400;
}

.g__form-section.var-a .g__form-section-label {
	width: 578px;
}

.g__form-section-label .g__form-section-label-secondary {
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	display: block;
	margin-top: 6px;
}

.g__form-section-ui {
	flex: 1 0 auto;
	max-width: 704px;
}

.g__form-section.var-a .g__form-section-ui {
	margin-top: 12px;
}

.g__form-section.var-b .g__form-section-ui {
	max-width: 100%;
}

.g__form-section-ui > .g__form-section .g__form-section-label {
	width: 130px;
	padding-right: 24px;
}

.g__form-section-ui > .g__form-section.var-a  .g__form-section-label {
	width: 578px;
}

.g__form-section-label-under-input {
	font-size: 14px;
	font-weight: 400;
	line-height: 17px;
	margin-top: 6px;
}

.add-list-item {
	position: relative;
}

.add-list-item:not(:nth-child(1)) {
	margin-top: 12px;
}

.add-list-item-action-button {
	background-color: var(--color-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	position: absolute;
	bottom: 0px;
	right: -84px;
	user-select: none;

	cursor: pointer;

	transition: 0.3s;
}

.add-list-item-action-button.add {
	margin-top: 12px;
	margin-left: auto;
	position: relative;
	bottom: initial;
}

.add-list-item-action-button:hover {
	opacity: 0.6;
}

.add-list-item-action-button svg {
	display: block;
}

.add-list-item-action-button svg * {
	stroke: white;
}

.wpcf7-acceptance input[type="checkbox"] {
	display: none;
}

.wpcf7-acceptance .wpcf7-list-item-label {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	display: block;
	padding-left: 62px;
	position: relative;
	cursor: pointer;
}

.wpcf7-acceptance .wpcf7-list-item-label:before {
	content: '';
	border: 3px solid var(--color-accent);
	border-radius: 50%;
	min-width: 38px;
	width: 38px;
	height: 38px;
	position: absolute;
	top: 0px;
	left: 0px;
}

.wpcf7-acceptance .wpcf7-list-item-label:after {
	content: '';
	background-image: url('data:image/svg+xml,<svg width="24" height="15" viewBox="0 0 24 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.61914 1.82812L12.3987 11.6077L22.1782 1.82812" stroke="%23213A8F" stroke-width="5" stroke-linejoin="round"/></svg>');
	background-size: 100% 100%;
	opacity: 0;
	width: 24px;
	height: 15px;
	position: absolute;
	top: 16px;
	left: 9px;

	transition: 0.3s;
}

.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
	opacity: 1;
}

.wpcf7-acceptance a {
	color: var(--color-accent);
	position: relative;
}

.wpcf7-acceptance a:after {
	content: '';
	background-color: var(--color-accent);
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.g__form-row-with-button {
	position: relative;
	left: 30px;
}

.g__form-dummy-submit-input.disabled {
	pointer-events: none;

	filter: grayscale(100%);
}
/*INPUTS END*/

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

.g__share {
	width: 190px;
	position: relative;
}

.g__share-speech-bubble {
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

.g__share-speech-bubble > svg {
	display: block;
}

.g__share-content {
	display: flex;
	align-items: center;
	width: calc(100% - 22px);
	height: 36px;
	position: relative;
	top: 4px;
	left: 11px;
}

.g__share-content svg {
	display: block !important;

	transition: 0.3s;
}

.g__share-content svg:hover {
	opacity: 0.6;
}

.g__share-content svg path {
	fill: var(--color-light);
}

.g__share-content-shortcode {
	position: relative;
	top: -1px;
}

.g__share-content-text {
	font-size: 14px;
	font-weight: 500;
	line-height: 17px;
	margin-left: 12px;
}

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

.wpcf7-form-control-wrap {
	display: block;
}


.g__form-input.radio-vertical .wpcf7-list-item {
	display: block;
	width: 100%;
	max-width: 100%;
}

.g__form-input.radio-vertical .wpcf7-list-item:not(:nth-child(1)) {
	margin-top: 16px;
}

.g__form-input.radio-vertical .wpcf7-list-item-label:before {
	min-width: 24px;
	width: 24px;
	height: 24px;
}

.g__form-input.radio-vertical .wpcf7-list-item-label:after {
	width: 16px;
	height: 16px;
	left: 7px;
}

.wpcf7-not-valid-tip {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.75;
	letter-spacing: 0.11px;
	color: red;
	width: 100%;
	margin-top: 4px;
}

.wpcf7 form .wpcf7-response-output {
	font-size: 18px !important;
	font-weight: 600 !important;
	line-height: 1.75 !important;
	letter-spacing: 0.11px !important;
	text-align: center !important;
	color: var(--color-white) !important;
	border: none !important;
	background-color: var(--color-accent) !important;
	border: 2px solid var(--color-accent) !important;
	border-radius: 4px !important;
	margin: initial !important;
	margin-top: 32px !important;
	padding: 8px 16px !important;	
}

div.wpcf7 .ajax-loader {
	margin-right: initial;
	margin-left: initial;
	position: absolute;
	top: -32px;
}

/*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.4s cubic-bezier(.17,.67,.59,1);
}

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

	transition: 0.5s cubic-bezier(.2,.95,.57,.99);
}
/*BURGER END*/

.g__title {
	display: flex;
	align-items: center;
}

.g__title-circle {
	margin-left: -4px;
}

.g__title-text {
	color: #1E1E1E;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	margin-left: 4px;
}

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

	overflow: hidden;
}

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

.pop-up .pop-up-inner {
	width: 100%;
	height: 100%;
	padding-top: 90px;
	padding-right: 90px;
	padding-bottom: 90px;
	padding-left: 90px;
	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 {
	position: absolute;
	top: -40px;
	right: -40px;
	z-index: 88;
	cursor: pointer;
}

/*form success pop up*/
.pop-up.form-success-pop-up {

}

.pop-up.form-success-pop-up .content {
	width: 808px;
	max-width: 100%;
}

.pop-up.form-success-pop-up .el-tile {
	background: #FFFFFF;
	box-shadow: 0px 64px 80px rgba(113, 115, 142, 0.07), 0px 13.7304px 40.2234px rgba(113, 115, 142, 0.0424816), 0px 1.97603px 36.1543px rgba(113, 115, 142, 0.0388257);
	border-radius: 10px;
	padding: 60px;
}

.pop-up.form-success-pop-up .el-tile-content {
	margin-right: auto;
	margin-left: auto;
}

.pop-up.form-success-pop-up .el-image {
	background: #F7F7F7;
	border-radius: 50%;
	width: 180px;
	height: 180px;
	margin-right: auto;
	margin-left: auto;

	overflow: hidden;
}

.pop-up.form-success-pop-up .el-title {
	margin-top: 40px;
}

.pop-up.form-success-pop-up .el-text {
	text-align: center;
}
/*form success pop up end*/
/*GLOBALS END*/

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

header .wrapper-bg {
	width: 100%;
	height: 100%;
	margin: 0px auto;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
}

header .wrapper-bg:before {
	content: '';
	backdrop-filter: blur(3px);
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 5px;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

header .wrapper {
	max-width: calc(1210px + 12px + 12px);
	padding-top: 11px;
	padding-right: 12px;
	padding-bottom: 11px;
	padding-left: 12px;
	position: relative;
	z-index: 240;
}

header.var-a .wrapper {
	padding-top: 20px;
	padding-bottom: 20px;
}

header .el-logo {
	display: block;
	max-width: 179px;
}

header .el-logo svg {
	display: block;
	width: 148px;
	height: auto;
	position: absolute;
	top: 0px;
	left: 0px;
	top: -30px;
	left: -20px;
}

header .block-item-1 {
	position: relative;
}

header .block-item-2 {
	display: flex;
	align-items: center;
	position: relative;
}

header .el-menu {
	margin-right: 20px;
	position: relative;
}

header .el-menu ul {
	display: flex;
}

header .el-menu ul > li > a {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-black);
	padding-right: 20px;
	padding-left: 20px;
	position: relative;
	transition: 0.3s;
}

header .el-menu ul > li > a:hover {
	color: #003999;
}

header .el-menu .line {
	background-color: #213A8F;
	opacity: 0;
	width: 24px;
	height: 2px;
	position: absolute;
	bottom: -21px;
	left: 0px;
}

header.not-at-top {

}

header.menu-opened {

}
/*HEADER END*/

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

.main-menu .g__background {
	background-color: #ffffff;
}

.main-menu .wrapper {
	padding-top: 60px;
	padding-right: initial;
	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-button {
	margin-top: 40px;
}

.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: 600;
	line-height: 125%;
	text-align: center;
	color: var(--color-black);
	display: inline-block;
}
/*MAIN MENU END*/

.socials {
	display: flex;
	align-items: center;
	width: 62px;
	height: 100%;
	position: fixed;
	top: 0px;
	right: 0px;
	z-index: 99;
	pointer-events: none;
}

.socials-inner {
	border-radius: 12px;
	border-top-right-radius: initial;
	border-bottom-right-radius: initial;
	background: rgba(255, 255, 255, 0.33);
	backdrop-filter: blur(3px);
	border: 1px solid #E0E0E1;
	padding: 14px 18px;
	pointer-events: all;
}

.socials a {
	margin: initial !important;
	margin-top: 0px !important;
	display: block;
	height: 0px;
	overflow: hidden;
	transition: 0.3s;
}

.socials a:hover {
	opacity: 0.66;
}

.socials-inner:hover a {
	height: 27px;
	margin-top: 16px !important;
}

.socials div.heateor_sss_follow_ul,
.socials div.heateor_sss_sharing_ul {
	margin: initial !important;
}

.socials .social-general-icon {
	/*margin-bottom: 16px;*/
}

.socials .social-general-icon svg {
	display: block;
	transition: 0.3s;
}

.socials-inner:hover .social-general-icon svg {
	opacity: 0.33;
	filter: grayscale(100%);
}

.socials .heateor_sss_sharing_ul {
	display: flex;
	flex-direction: column;
}

.socials .heateor_sss_facebook svg {
	display: none !important;
}

.socials .heateor_sss_facebook .heateor_sss_svg {
	background: initial !important;
}

.socials .heateor_sss_facebook .heateor_sss_svg:after {
	content: '';
	background: url('../img/svg/new/fb.svg');
	display: block;
	width: 27px;
	height: 27px;
}

.socials .heateor_sss_button_twitter svg {
	display: none !important;
}

.socials .heateor_sss_button_twitter .heateor_sss_svg {
	background: initial !important;
}

.socials .heateor_sss_button_twitter .heateor_sss_svg:after {
	content: '';
	background: url('../img/svg/new/x.svg');
	display: block;
	width: 27px;
	height: 27px;
}

/*FOOTER*/
footer {

}

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

footer .content {
	
}

footer .el-container {
	display: flex;
	max-width: 1110px;
	margin-right: auto;
	margin-left: auto;
}

footer .el-text {
	max-width: 698px;
	margin-right: 68px;
}

footer .el-img {
	display: inline-block;
	position: relative;
	flex: 1;
}

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

footer .el-img-link-group {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 55;
}

footer .el-img-link-group a {
	display: block;
	width: 33.33%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

footer .el-img-link-group a:nth-child(1) {
	width: 36%;
}

footer .el-img-link-group a:nth-child(2) {
	width: 39%;
	left: 36%;
}

footer .el-img-link-group a:nth-child(3) {
	width: 27.33%;
	left: 74.66%;
}

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

footer .logo-list > * {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	position: relative;
}

footer .logo-list img {
	display: block;
	transition: 0.3s;
}

footer .logo-list img:nth-child(2) {
	opacity: 0;
	margin: 0px auto;
	position: absolute;
	top: 0px;
	right: 0px;
	left: 0px;
}

footer .logo-list > *:hover img:nth-child(1) {
	opacity: 0;
}

footer .logo-list > *:hover img:nth-child(2) {
	opacity: 1;
}
/*FOOTER END*/
/*COMMONS END*/

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

section.type-1 .g__background {
	top: -80px;
	height: 1300px;
}

section.type-1 .wrapper {

}

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

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

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

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

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

section.type-1 .el-img {
	display: inline-block;
	margin-top: 56px;
	position: relative;
}

section.type-1 .el-img svg {
	display: block;
	max-width: 100%;
}

section.type-1 .el-img-link-group {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 55;
}

section.type-1 .el-img-link-group a {
	display: block;
	width: 33.33%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-1 .el-img-link-group a:nth-child(1) {
	width: 36%;
}

section.type-1 .el-img-link-group a:nth-child(2) {
	width: 39%;
	left: 36%;
}

section.type-1 .el-img-link-group a:nth-child(3) {
	width: 27.33%;
	left: 74.66%;
}

section.type-1 .el-share {
	position: absolute;
	top: 54px;
	right: -40px;
	z-index: 66;
}

section.type-1 .el-ill-group {
	width: 486px;
	height: 436px;
	position: absolute;
	top: 80px;
	right: 470px;
}

section.type-1 .el-ill-main {
	position: absolute;
	top: 160px;
	left: 50px;
	z-index: 55;
}

section.type-1 .el-ill-circle-1 {
	position: absolute;
	top: -290px;
	left: 20px;
	z-index: 33;

	animation-name: circle_1_anim;
	animation-duration: 6s;
	animation-iteration-count: infinite;
	animation-delay: -3s;
}

section.type-1 .el-ill-circle-2 {
	position: absolute;
	top: 30px;
	left: 110px;
	z-index: 33;

	animation-name: circle_1_anim;
	animation-duration: 6s;
	animation-iteration-count: infinite;
	animation-delay: -2s;
}

section.type-1 .el-ill-circle-3 {
	position: absolute;
	top: 20px;
	left: -200px;
	z-index: 44;

	animation-name: circle_1_anim;
	animation-duration: 8s;
	animation-iteration-count: infinite;
	animation-delay: -1s;
}

@keyframes circle_1_anim {
	0% {opacity: 1;}
	50% {opacity: 0;}
	100% {opacity: 1;}
}
/*SECTION TYPE 1 END*/

/*SECTION TYPE 2*/
section.type-2 {
	z-index: 77;
}

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

section.type-2 .block-item:nth-child(1) {
	width: 25%;
	padding-right: 40px;
}

section.type-2 .block-item:nth-child(2) {
	width: 57%;
}

section.type-2 .block-item.var-a {
	width: 45%;
}

section.type-2 .el-title {
	display: inline-block;
}

section.type-2.var-a {

}

section.type-2.var-a .content {
	background: var(--color-light-2);
	border-radius: 10px;
	padding-top: 40px;
	padding-bottom: 40px;
}

section.type-2.var-b {

}

section.type-2.var-b .content {
	background: var(--color-accent);
	border-radius: 10px;
	padding-top: 40px;
	padding-bottom: 40px;
}

section.type-2.var-b .el-button {
	margin-top: 40px;
}
/*SECTION TYPE 2 END*/

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

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

section.type-3 .el-slider-nav {
	position: relative;
}

section.type-3 .el-slider-nav.hidden {
	visibility: hidden;
	position: absolute;
}

section.type-3 .el-slider-nav-button {
	cursor: pointer;

	transition: 0.3s;
}

section.type-3 .el-slider-nav-button:nth-child(1) {
	margin-right: 25px;
}

section.type-3 .el-slider-nav-button:hover:nth-child(1) {
	transform: translateX(-12px);
}

section.type-3 .el-slider-nav-button:hover:nth-child(2) {
	transform: translateX(12px);
}

section.type-3 .row-2 {
	margin-top: 30px;
}

section.type-3 .slider {
	width: calc(100% + 16px + 16px);
	left: -16px;
}

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

section.type-3 .slider-item {
	border-radius: 20px;
	background: #FFF;
	box-shadow: 0 275px 77px 0 rgba(0, 0, 0, 0.00), 0 176px 70px 0 rgba(0, 0, 0, 0.01), 0 99px 59px 0 rgba(0, 0, 0, 0.05), 0 44px 44px 0 rgba(0, 0, 0, 0.09), 0 11px 24px 0 rgba(0, 0, 0, 0.10);
	height: initial;
	padding: 30px;
	margin-right: 16px;
	margin-left: 16px;
	position: relative;
}

section.type-3 .slider-title {
	min-height: initial;
	padding-bottom: 0px;
	position: relative;
}

section.type-3 .slick-list {
	overflow: initial;
}

section.type-3 .slider-title:after {
	content: '';
	background-color: var(--color-accent-2);
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	display: none;
}

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

section.type-3.var-a {

}

section.type-3.var-a .slider-image {
	width: 100%;
	aspect-ratio: 1/1;
	position: relative;
}

section.type-3.var-a .slider-title {
	min-height: initial;
	margin-top: 34px;
}

section.type-3.var-a .slider-item {
	padding: 15px 15px 30px 15px;
}
/*SECTION TYPE 3 END*/

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

}

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

section.type-4 .el-title {
	display: inline-block;
}

section.type-4 .block-list {
	max-width: 1012px;
	margin-top: 24px;
	margin-right: auto;
	margin-left: auto;
}

section.type-4 .block-item {
	
}

section.type-4 .block-item:not(:nth-child(1)) {
	margin-top: 0px;
}

section.type-4 .block-item:nth-child(even) {
	text-align: right;
}

section.type-4 .el-info {

}

section.type-4 .el-main-title {
	margin-top: 0px;
}

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

section.type-4 .block-item-part-1 {
	width: calc(50% - 74px / 2);
	padding-right: 70px;
}

section.type-4 .block-item-part-2 {
	width: 74px;
}

section.type-4 .block-item-part-3 {
	width: calc(50% - 74px / 2);
}

section.type-4 .block-item:nth-child(odd) .block-item-part-1 {
	order: 3;
	padding-right: initial;
	padding-left: 70px;
}

section.type-4 .block-item:nth-child(odd) .block-item-part-2 {
	order: 2;
}

section.type-4 .block-item:nth-child(odd) .block-item-part-3 {
	order: 1;
}

section.type-4 .el-circle {
	background-color: #FFF;
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.10)) drop-shadow(0 11px 11px rgba(0, 0, 0, 0.09)) drop-shadow(0 24px 14px rgba(0, 0, 0, 0.05)) drop-shadow(0 42px 17px rgba(0, 0, 0, 0.01)) drop-shadow(0 66px 18px rgba(0, 0, 0, 0.00));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	position: relative;
}

section.type-4 .el-circle-inner {
	background-color: var(--color-accent);
	border-radius: 50%;
	width: 58px;
	height: 58px;
	margin: auto;
	position: absolute;
	inset: 0px;
}

section.type-4 .el-circle-text {
	color: #FFF;
	font-size: 25px;
	font-weight: 600;
	text-align: center;
	position: relative;
}

section.type-4 .el-circle-line {
	background-color: #BEBEBE;
	opacity: 0.5;
	width: 3px;
	height: 120px;
	margin: 0px auto;
	position: absolute;
	top: 100%;
	right: 0px;
	left: 0px;
}

section.type-4 .block-item:nth-last-child(1) .el-circle-line {
	display: none;
}

section.type-4 .el-submit-info {
	background: rgba(0, 0, 0, 0.00);
	box-shadow: 0 243px 68px 0 rgba(0, 0, 0, 0.00), 0 155px 62px 0 rgba(0, 0, 0, 0.01), 0 87px 52px 0 rgba(0, 0, 0, 0.05), 0 39px 39px 0 rgba(0, 0, 0, 0.09), 0 10px 21px 0 rgba(0, 0, 0, 0.10);
	border-radius: 20px;
	display: inline-flex;
	padding: 24px 32px 24px 32px;
	margin-top: 0px;
}

section.type-4 .el-submit-info-text {
	margin-left: 28px;
}

section.type-4 .el-submit-info-text a {
	color: #213A8F;;
	position: relative;
}

section.type-4 .el-submit-info-text a:after {
	content: '';
	background-color: #213A8F;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0px;

	transition: 0.3s;
}

section.type-4 .el-submit-info-text a:hover:after {
	opacity: 0;
}
/*SECTION TYPE 4 END*/

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

section.type-5.var-a {
	margin-top: 160px;
}

section.type-5 .wrapper {
	padding-bottom: 260px;
	position: relative;
}

section.type-5 .circles-bg {
	width: 100%;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

section.type-5 .circles-bg .circle {
	border-radius: 50%;
	width: 24px;
	height: 24px;
	box-shadow: 0 0 8.3px 5px rgba(255, 255, 255, 0.25) inset;
	filter: blur(2px);
	position: absolute;
	bottom: 0px;
	left: 0px;
}

section.type-5 .circles-bg .circle:nth-child(1) {
	background-color: #213A8F;
	width: 44px;
	height: 44px;
	bottom: 17px;
	left: 40px;
}

section.type-5 .circles-bg .circle:nth-child(2) {
	background-color: #213A8F;
	width: 24px;
	height: 24px;
	bottom: 30px;
	left: 135px;
}

section.type-5 .circles-bg .circle:nth-child(3) {
	background-color: #213A8F;
	width: 42px;
	height: 42px;
	bottom: 20px;
	left: 298px;
	transform: scale(1.4);
}

section.type-5 .circles-bg .circle:nth-child(4) {
	background-color: #213A8F;
	width: 66px;
	height: 66px;
	bottom: 5px;
	left: 425px;
}

section.type-5 .circles-bg .circle:nth-child(5) {
	background-color: #213A8F;
	width: 44px;
	height: 44px;
	bottom: 16px;
	left: initial;
	right: 261px;
}

section.type-5 .circles-bg .circle:nth-child(6) {
	background-color: #213A8F;
	width: 24px;
	height: 24px;
	bottom: 27px;
	left: initial;
	right: 180px;
}

section.type-5 .circles-bg .circle:nth-child(7) {
	background-color: #213A8F;
	width: 44px;
	height: 44px;
	bottom: 16px;
	left: initial;
	right: 66px;
}

section.type-5 .content {
	
}

section.type-5 .el-info {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

section.type-5 .el-info a {
	color: #1A1A1A;
	position: relative;
}

section.type-5 .el-info a:after {
	content: '';
	background-color: #1A1A1A;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0px;
	left: 0px;

	transition: 0.3s;
}

section.type-5 .el-info a:hover:after {
	opacity: 0;
}

section.type-5 .copy-button {
	cursor: pointer;
	transition: 0.3s;
}

section.type-5 .copy-button:hover {
	opacity: 0.8;
}

section.type-5 .copy-button:active {
	transform: scale(1.3);
	opacity: 1;
	transition: 0.1s;
}

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

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

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

section.type-6 .el-title {
	padding-left: 260px;
}

section.type-6 .el-text {
	max-width: 674px;
	padding-left: 260px;
	margin-top: 24px;
}

section.type-6 .el-form {
	margin-top: 60px;
}

section.type-6 .el-form-agreement {
	margin-top: 56px;
}
/*SECTION TYPE 6 END*/

section.type-7 {
	position: relative;
}

section.type-7 .el-bg-1 {
	width: 1500px;
	height: 479px;
	border-radius: 1500px;
	opacity: 0.7;
	background: #BCC1D4;
	filter: blur(200px);
	margin: 0px auto;
	position: absolute;
	top: -240px;
	right: -1000px;
	left: -1000px;
}

section.type-7 .el-bg-2 {
	width: 100%;
	height: 100%;
	max-width: 2240px;
	margin: auto;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-7 .el-bg-2:after {
	content: '';
	background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	width: 100%;
	height: 20%;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

section.type-7 .anim-overlay {
	background-color: var(--color-white);
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	inset: -1000%;
}

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

section.type-7 .wrapper {
	padding-top: 148px;
	padding-bottom: 46px;
	z-index: 55;
}

section.type-7 .block-list {
	justify-content: flex-end;
}

section.type-7 .block {
	width: 440px;
	max-width: 100%;
}

section.type-7 .tile {
	background-color: rgba(255, 255, 255, 1);
	border-radius: 12px;
	padding: 8px 8px 24px 8px;
}

section.type-7 .logo-container {
	border: 1px solid #E0E0E1;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

section.type-7 .logo-container svg {
	max-width: 90%;
	width: 320px;
	height: auto;
}

section.type-7 .info-container {
	margin-top: 16px;
	padding: 0px 26px;
	position: relative;
}

section.type-7 .el-text-1 {
	color: #000;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

section.type-7 .line {
	background: #D4D4D4;
	width: 100%;
	height: 1px;
	margin-top: 23px;
	margin-bottom: 21px;
}

section.type-7 .text-container {
	display: flex;
	gap: 24px;
}

section.type-7 .el-text-2,
section.type-7 .el-text-3 {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
	flex: 1;
}

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

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

section.type-7 .tile-2 {
	backdrop-filter: blur(3px);
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	border-bottom-left-radius: initial;
	border-bottom-right-radius: initial;
	margin-top: 8px;
	padding: 24px 24px 24px 24px;
}

section.type-7 .tile-2 .logo-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section.type-7 .tile-2 .logo-list > * {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	position: relative;
}

section.type-7 .tile-2 .logo-list img {
	display: block;
	transition: 0.3s;
}

section.type-7 .tile-2 .logo-list img:nth-child(2) {
	opacity: 0;
	margin: 0px auto;
	position: absolute;
	top: 0px;
	right: 0px;
	left: 0px;
}

section.type-7 .tile-2 .logo-list > *:hover img:nth-child(1) {
	opacity: 0;
}

section.type-7 .tile-2 .logo-list > *:hover img:nth-child(2) {
	opacity: 1;
}

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

section.type-8 .block-list {
	justify-content: space-between;
	margin-top: 32px;
	gap: 40px;
}

section.type-8 .block-list .block-1 {
	width: 50%;
	max-width: 385px;
}

section.type-8 .block-list .block-2 {
	width: 50%;
	max-width: 547px;
}

section.type-8 .info-content p {
	color: #1E1E1E;
	font-size: 16px;
	font-weight: 400;
	position: relative;
}

section.type-8 .info-content p:not(:nth-child(1)) {
	margin-top: 40px;
}

section.type-8 .info-content p:not(:nth-child(1)):after {
	content: '';
	background-color: #D4D4D4;
	width: 100%;
	height: 1px;
	position: absolute;
	top: -20px;
	left: 0px;
}

section.type-8 .info-content p b,
section.type-8 .info-content p strong {
	font-weight: 600;
}

section.type-8 .el-text-2 {
	color: #1E1E1E;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
}

section.type-8 .el-list li {
	color: #1E1E1E;
	font-size: 16px;
	font-weight: 400;
	position: relative;
}

section.type-8 .el-list li:not(:nth-child(1)) {
	margin-top: 20px;
}

section.type-8 .el-list li:before {
	content: '';
	background-color: var(--color-main);
	width: 25px;
	height: 2px;
	position: absolute;
	top: 6px;
	right: calc(100% + 20px);
}

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

section.type-9 .tile {
	padding: 57px 54px 80px 54px;
	position: relative;
	
}

section.type-9 .tile:before {
	content: '';
	border-radius: 40px;
	opacity: 0.5;
	background: linear-gradient(0deg, #F1F1F1 0%, #FFF 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
}

section.type-9 .el-text {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	margin-top: 16px;
}

section.type-9 .block-list {
	display: flex;
	gap: 12px;
	margin-top: 40px;
	max-width: 1082px;
	margin-right: auto;
	margin-left: auto;
}

section.type-9 .block {
	background: rgba(0, 0, 0, 0.00);
	border-radius: 20px;
	box-shadow: 0 243px 68px 0 rgba(0, 0, 0, 0.00), 0 155px 62px 0 rgba(0, 0, 0, 0.01), 0 87px 52px 0 rgba(0, 0, 0, 0.05), 0 39px 39px 0 rgba(0, 0, 0, 0.09), 0 10px 21px 0 rgba(0, 0, 0, 0.10);
	display: flex;
	align-items: center;
	width: calc(33.33% - 8px);
	padding: 30px;
}

section.type-9 .block-icon {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 60px;
	height: 66px;
	margin-right: 27px;
}

section.type-9 .block-text {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 130%;
}

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

section.type-10 .acc-list {
	margin-top: 45px;
}

section.type-10 .acc-item {
	padding-top: 24px;
	padding-right: 40px;
	padding-bottom: 24px;
	border-bottom: 1px solid #D4D4D4;
	position: relative;
}

section.type-10 .acc-item:nth-child(1) {
	border-top: 1px solid #D4D4D4;
}

section.type-10 .acc-item-info {
	max-width: 80%;
}

section.type-10 .acc-item-text-1 {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
}

section.type-10 .acc-item-text-2 {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
	margin-top: 24px;
}

section.type-10 .acc-item-plus {
	height: 25px;
	width: 25px;
	position: absolute;
	top: 24px;
	right: 20px;
	cursor: pointer;
}

section.type-10 .acc-item-plus:before {
	content: '';
	background-color: #213A8F;
	width: 100%;
	height: 2px;
	margin: auto;
	position: absolute;
	inset: 0px;
	transition: 0.3s;
}

section.type-10 .acc-item-plus:after {
	content: '';
	background-color: #213A8F;
	width: 2px;
	height: 100%;
	margin: auto;
	position: absolute;
	inset: 0px;
	transition: 0.3s;
}

section.type-10 .acc-item.active .acc-item-plus:after {
	transform: rotate(90deg);
}

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

section.type-11 .tile {
	padding: 57px 54px 80px 54px;
	position: relative;
	
}

section.type-11 .tile:before {
	content: '';
	border-radius: 40px;
	opacity: 0.5;
	background: linear-gradient(0deg, #F1F1F1 0%, #FFF 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -1;
}

section.type-11 .block-list {
	display: flex;
	padding-left: 24px;
}

section.type-11 .block-1 {
	margin-right: 80px;
}

section.type-11 .block-2 {
	max-width: 487px;
}

section.type-11 .dots-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 286px;
	min-width: 286px;
	height: 286px;
	gap: 19px;
	position: relative;
}

section.type-11 .dot {
	/*background-color: #213A8F;*/
	border-radius: 50%;
	width: 24px;
	height: 24px;
	position: relative;
}

section.type-11 .dot:before {
	content: '';
	width: 200%;
	height: 200%;
	margin: auto;
	position: absolute;
	inset: -1000%;
}

section.type-11 .dot:after {
	content: '';
	background-color: #213A8F;
	border-radius: 50%;
	display: block;
	width: 100%;
	height: 100%;
	transition: 2s ease-out;
}

section.type-11 .dot:hover:after {
	background-color: #F18701;
	transform: scale(1.25);
	transition: 0.05s;
}

section.type-11 .el-title {
	color: #000;
	font-size: 20px;
	font-weight: 600;
}

section.type-11 .el-text {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
	margin-top: 24px;
}

section.type-11 .el-button {
	margin-top: 36px;
}

.for-mobile {
	display: none;
}

.for-desktop {
	display: block;
}

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

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

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

	.content.type-1 {
		padding-right: 20px;
		padding-left: 20px;
	}

	.g__text.type-h1, h1 {
		font-size: 26px;
		line-height: 133%;
	}

	header {
		padding-right: 12px;
		padding-left: 12px;
	}

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

	header .el-logo svg {
		left: -30px;
	}

	footer .el-container {
		text-align: center;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 56px;
	}

	footer .el-text {
		margin-right: initial;
	}

	footer .el-img {
		display: flex;
		margin-top: 40px;
		justify-content: center;
		text-align: center;
		width: 100%;
		flex: initial;
	}

	section.type-1 .el-share {
		right: -20px;
	}

	section.type-2 .block-item:nth-child(2) {
		width: 65%;
	}

	section.type-2 .block-item:nth-child(2) {
		width: 65%;
	}

	section.type-3 .el-slider-nav.hidden {
		visibility: initial;
		position: relative;
	}

	section.type-3 .slider-title {
		min-height: 92px;
	}

	section.type-6 .el-title {
		padding-left: 200px;
	}

	section.type-6 .el-text {
		padding-left: 200px;
	}

	section.type-7 .el-bg-2 {
		pointer-events: none;
	}

	section.type-7 .block-list {
		justify-content: center;
	}

	section.type-7 .tile {
		backdrop-filter: blur(3px);
		background-color: rgba(255, 255, 255, 0.9);
	}

	section.type-8 .block-list {
		gap: 80px;
	}

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

	section.type-9 .block {
		background-color: var(--color-white);
		width: 100%;
		position: relative;
		z-index: 55;
	}

	section.type-11 .dots-container {
		width: 246px;
		min-width: 246px;
	}

	section.type-11 .dot:nth-last-child(1) {
		display: none;
	}

	section.type-11 .block-list {
		padding-left: initial;
	}

	section.type-11 .block-1 {
		margin-right: 40px;
	}

	.g__form-section-label {
		min-width: 200px;
		max-width: 200px;
		padding-right: 24px;
	}

	.g__form-section-ui {
		max-width: calc(100% - 200px);
	}

	.g__form-section-ui > .g__form-section.var-a .g__form-section-label {
		max-width: 100%;
	}

	.g__form-section-ui > .g__form-section.var-a .g__form-section-ui {
		max-width: 100%;
	}

	.g__form-section-ui

	.g__form-input.size-2 {
		max-width: 320px;
	}

	.g__form-input.size-3 {
		max-width: 420px;
	}

	.add-list-item-action-button {
		right: -20px;
	}

	.add-list-item {
		padding-right: 60px;
	}

	.add-list-container .g__form-input-label {
		height: 40px;
	}

	.wpcf7-acceptance .wpcf7-list-item {
		max-width: 100%;
	}
}

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

	.content.type-1 {
		padding-right: initial;
		padding-left: initial;
	}

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

	blockquote:before {
		width: calc(100% + 18px + 18px);
		left: -18px;

		box-sizing: border-box;
	}

	header .el-logo {
		max-width: 128px;
	}

	header .wrapper {
		padding-right: 12px;
		padding-left: 12px;
	}

	footer .wrapper {
		padding-bottom: 80px;
	}

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

	section.type-1 .g__background {
		z-index: -1;
	}

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

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

	section.type-1 .block-item:nth-child(1) {
		padding-top: initial;
	}

	section.type-1 .block-item:nth-child(2) {
		position: absolute;
		top: 0px;
		left: 0px;

		pointer-events: none;
	}

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

	section.type-1 .el-share {
		top: 40px;
		right: 12px;

		pointer-events: all;
	}

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

	section.type-2 .block-item:nth-child(2) {
		width: 100%;
		margin-top: 32px;
	}

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

	section.type-3 .slick-list {
		max-width: 90%;
	}

	section.type-3 .slider-item {
		margin-right: 8px;
		margin-left: 8px;
	}

	section.type-3 .el-slider-outer {
		padding-left: 8px;
		position: relative;
	}

	section.type-4 .block-list {
		margin-top: 64px;
	}

	section.type-4 .block-item {
		height: auto !important;
		align-items: initial;
		position: relative;
		left: initial;
	}

	section.type-4 .block-item:nth-child(odd) .block-item-part-1 {
		padding-left: 24px;
	}

	section.type-4 .block-item:nth-child(even) .block-item-part-1 {
		order: 3;
		padding-right: initial;
		padding-left: 24px;
	}

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

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

	section.type-4 .block-item-part-1 {
		width: calc(100% - 124px);
		padding-right: 12px !important;
		position: relative;
		top: 12px;
	}

	section.type-4 .block-item:nth-last-child(2) .el-circle-line {
		max-height: 200px;
	}

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

	section.type-4 .el-info {
		width: calc(100% + 54px);
	}

	section.type-4 .block-item:nth-child(even) {
		text-align: initial;
	}

	section.type-4 .block-item:not(:nth-child(1)) {
	    margin-top: 56px;
	}

	section.type-4 .el-submit-info {
		margin-top: 64px;
	}

	section.type-5 {
		
	}

	section.type-5 .circles-bg {
		bottom: -70px;
	}

	section.type-5 .copy-button {
		display: none;
	}

	section.type-5 .circles-bg .circle:nth-child(4) {
		left: 305px;
	}

	section.type-6 .el-title {
		padding-left: 0px;
	}

	section.type-6 .el-text {
		padding-left: 0px;
	}

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

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

	section.type-8 .block-list .block-1 {
		width: 100%;
	}

	section.type-8 .block-list .block-2 {
		width: 100%;
		margin-top: 56px;
	}

	section.type-8 .el-list {
		padding-left: 44px;
	}

	section.type-9 .tile {
		padding-top: 24px;
		padding-right: 12px;
		padding-bottom: 24px;
		padding-left: 12px;
	}

	section.type-11 .tile {
		padding-top: 24px;
		padding-right: 12px;
		padding-bottom: 24px;
		padding-left: 12px;
	}

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

	section.type-11 .block-1 {
		margin-right: initial;
		
		margin-bottom: 40px;
	}

	section.type-11 .dot:nth-last-child(1) {
		display: block;
	}

	section.type-11 .dots-container {
		width: 286px;
		min-width: 286px;
		margin-right: auto;
		margin-left: auto;
	}

	.g__form-section {
		display: block;
	}

	.g__form-section br {
		display: none;
	}

	.g__form-section-label {
		min-width: 100%;
		max-width: 100%;
		padding-right: initial;
	}

	.g__form-section-ui {
		max-width: 100%;
		margin-top: 12px;
	}

	.g__form-section-ui > .g__form-section.var-a .g__form-section-label {
		max-width: 100%;
	}

	.g__form-section-ui > .g__form-section.var-a .g__form-section-ui {
		max-width: 100%;
	}

	.g__form-input.size-1 {
		max-width: 100%;
	}

	.g__form-input.size-2 {
		max-width: 100%;
	}

	.g__form-input.size-3 {
		max-width: 100%;
	}

	.g__form-row.g__form-row-2-of-3 {
		display: block;
		width: 100%;
		left: initial;
	}

	.g__form-row.g__form-row-2-of-3 .g__form-input:nth-child(1) {
		width: 100%;
	}

	.g__form-row.g__form-row-2-of-3 .g__form-input:nth-child(2) {
		width: 100%;
		margin-top: 12px;
	}

	.g__form-row.g__form-row-1-of-4 {
		display: block;
		width: 100%;
		left: initial;
	}

	.g__form-row.g__form-row-1-of-4 .g__form-input {
		width: 100% !important;
		margin-top: 12px;
	}

	.add-list-item-action-button {
		right: -14px;
	}

	.add-list-item {
		padding-right: 60px;
	}

	.add-list-container .g__form-input-label {
		height: initial;
	}

	.g__form-row-with-button {
		display: block;
		left: initial;
	}
}