/*COMMONS*/
:root {
	--color-accent: #1ACBC3;
	--color-black: #2E2E2E;
	--color-grey: #E8ECF0;
}

::-moz-selection {
	color: #ffffff;
	background: rgba(241, 59, 34, 0.6);
}

::selection {
	color: #ffffff;
	background: rgba(26, 203, 195, 0.6);
}

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: var(--color-black);
	background-color: #ffffff;
	padding-top: 81px;
}

body.hide-scroll {
	overflow: hidden;
}

body.home {
	padding-top: 159px;
}

body::-webkit-scrollbar {
	width: 5px;
}
 
body::-webkit-scrollbar-track {
	background-color: var(--color-black);
}
 
body::-webkit-scrollbar-thumb {
	background-color: var(--color-grey);
}

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

.for-mobile {
	display: none;
}

.for-desktop {
	display: block;
}

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

.wrapper.type-1 {
	max-width: 1920px;
	padding-right: initial;
	padding-left: initial;
}

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

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

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

.g__text.type-h1, h1 {
	font-size: 45px;
	font-weight: 600;
	line-height: 110%;
}

.g__text.type-h2, h2 {
	font-size: 27px;
	font-weight: 600;
	line-height: 110%;
}

.g__text.type-h3, h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 110%;
}

.g__text.type-h4, h4 {
	font-size: 18px;
	font-weight: 600;
	line-height: 110%;
}

.g__text.type-h5, h5 {
	font-size: 14px;
	line-height: 143%;
	font-weight: 600;
}

.g__text.type-p, p {
	font-size: 14px;
	line-height: 143%;
}

.g__text.type-1 {
	
}

.g__text.type-2 {
	font-size: 110px;
	font-weight: 600;
	line-height: 110%;
}

.g__text.type-3 {
	font-size: 60px;
	font-weight: 600;
	line-height: 110%;
}
/*TEXTS 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: 60px;
	margin-bottom: 60px;
}

.g__wysiwyg_editor > ul {
	margin-top: 20px;
	margin-bottom: 20px;
	position: relative;
}

.g__wysiwyg_editor > ul > li {
	font-size: 14px;
	line-height: 143%;
	padding-left: 20px;
	position: relative;
}

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

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

.g__wysiwyg_editor > ol {
    counter-reset: list;
	margin-top: 20px;
	margin-bottom: 20px;
	position: relative;
}

.g__wysiwyg_editor > ol > li {
	font-size: 14px;
	line-height: 143%;
	padding-left: 20px;
	position: relative;
}

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

.g__wysiwyg_editor > ol > li:before {
	counter-increment: list;
	content: counter(list) '.';
	font-weight: 600;
	color: var(--color-black);
	margin-right: 10px;
}

.g__wysiwyg_editor a {
	font-weight: 500;
	color: var(--color-accent);
}

.g__wysiwyg_editor a:hover {
	
}

.g__wysiwyg_editor b,
.g__wysiwyg_editor strong {
	font-weight: 700;
}

.g__wysiwyg_editor blockquote {
	font-size: 14px;
	line-height: 143%;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 40px;
	margin-top: 36px;
	margin-bottom: 36px;
	position: relative;
}

.g__wysiwyg_editor blockquote:before {
	content: '';
	background-color: var(--color-accent);
	width: 5px;
	height: 100%;
	margin: auto 0px;
	position: absolute;
	top: -200%;
	bottom: -200%;
	left: 0px;
}

.g__wysiwyg_editor h1 {
	margin-top: 55px;
	margin-bottom: 28px;
}

.g__wysiwyg_editor h2 {
	margin-top: 55px;
	margin-bottom: 28px;
}

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

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

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

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

.g__wysiwyg_editor-slider {
	margin-top: 78px;
	margin-bottom: 72px;
}

.g__wysiwyg_editor-video {
	margin-top: 58px;
	margin-bottom: 82px;
}

.g__wysiwyg_editor p img,
.g__wysiwyg_editor > img {
    object-fit: cover;
    object-position: center;
    display: block;
    width: 928px;
    max-width: initial;
    height: 475px;
	margin-top: 58px;
	margin-bottom: 82px;
	margin-left: 97px;
	position: relative;
}
/*TEXT EDITOR END*/

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

	cursor: pointer;
}

.g__button-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 180px;
	padding-top: 19px;
	padding-right: 31px;
	padding-bottom: 19px;
	padding-left: 31px;
	position: relative;
}

.g__button .g__button-frame {
	background-color: rgba(255, 255, 255, 0);
	border: 2px solid var(--color-accent);
	border-radius: 25px;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;

	transition: 0.3s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.g__button:hover .g__button-frame {
	background-color: var(--color-accent);
	border-color: rgba(255, 255, 255, 0);
}

.g__button .g__button-frame:after {
	content: '';
	display: none;
	border: 3px solid var(--color-accent);
	border-radius: 25px;
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: -200%;
	right: -200%;
	bottom: -200%;
	left: -200%;

	transition: 0.4s cubic-bezier(0.3, 0.12, 0.25, 1);

	transform-origin: center;
	transform: scale(1.2);
}

.g__button:hover .g__button-frame:after {
	opacity: 1;

	transform: scale(1);
}

.g__button .g__button-text {
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	color: var(--color-black);
	position: relative;
	z-index: 55;

	transition: 0.4s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.g__button:hover .g__button-text {
	color: #ffffff;
}

.g__button .g__button-icon {
	height: 14px;
	position: relative;
}

.g__button .g__button-icon + .g__button-text {
	margin-left: 10px;
}

.g__button .g__button-text + .g__button-icon {
	margin-left: 10px;
}

.g__button.var-download {

}

.g__button.var-download .g__button-icon {
	top: -3px;
}

.g__button.var-download .g__button-icon svg * {
	transition: 0.4s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.g__button.var-download:hover .g__button-icon svg * {
	fill: #ffffff;
}

.g__button.var-inactive {
	opacity: 0.3;

	pointer-events: none;
}
/*BUTTONS END*/

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

	cursor: pointer;
}

.g__link.type-simple {

}

.g__link.type-simple .g__link-inner {
	
}

.g__link.type-simple .g__link-text {
	font-size: 14px;
	line-height: 143%;
	color: var(--color-black);

	transition: 0.4s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.g__link.type-simple:hover .g__link-text {
	color: var(--color-accent);
}

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

.g__form-row {
	position: relative;
}

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

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

.g__form-row-with-button {
	
}

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

.g__form-input {
	position: relative;	
}

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

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

.g__form-input-inner:before {
	content: '';
	background-color: var(--color-black);
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 88;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.g__form-input input,
.g__form-input textarea,
.g__form-input select {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 143%;
	color: var(--color-black);
	background: none;
	border: none;
	outline: none;
	display: block;
	width: 100%;
	padding: 0px 12px 12px 0px;

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

.g__form-input input::placeholder,
.g__form-input textarea::placeholder {
	color: rgba(0, 0, 0, 0.8);
}

.g__form-input textarea {
	height: calc(32px * 4);

	resize: none;
}

.g__form.var-a {

}

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

.g__form.var-a .g__form-row-with-button:not(:nth-child(1)) {
	margin-top: 34px;
}
/*INPUTS END*/

/*SOCIALS*/
.g__socials {
	position: relative;
}

.g__socials-list {
	display: flex;
	align-items: center;
}

.g__socials-item {
	position: relative;

	cursor: pointer;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.g__socials-item:hover {
	opacity: 0.6;
}

.g__socials-item:not(:nth-last-child(1)) {
	margin-right: 30px;
}
/*SOCIALS END*/

/*LOGO*/
.g__logo {
	display: block;
	position: relative;
}

.g__logo > * {
	display: block;
	width: 154px;
	height: auto;
	position: relative;
}

.g__logo.var-a {

}

.g__logo.var-a > * {
	width: 251px;
}
/*LOGO 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*/

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

	overflow: hidden;

	pointer-events: none;
}

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

.g__badge {
	font-size: 14px;
	font-weight: 500;
	line-height: 17px;
	padding-bottom: 10px;
	position: relative;
}

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

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

.wpcf7-not-valid-tip {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.75;
	letter-spacing: 0.11px;
	color: var(--color-accent);
	width: 100%;
	margin-top: 8px;
	position: absolute;
	bottom: -30px;
	left: 0px;
}

.wpcf7 form .wpcf7-response-output {
	font-size: 14px !important;
	font-weight: 300 !important;
	line-height: 1.75 !important;
	letter-spacing: 0.11px !important;
	color: var(--color-black) !important;
	border: none !important;
	border: 1px 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;
}

/*LIGHTBOX*/
.lb-cancel {
	background: initial;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
	background: initial;
	width: 26px;
	height: 22px;
}

.lb-nav a.lb-prev {
	background-image: url(../img/svg/lightbox_arrow_right.svg);
	opacity: 1 !important;
	display: block !important;
	margin: auto 0px;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: -104px;

	transform-origin: center;
	transform: rotate(180deg);
}

.lb-nav a.lb-next {
	background-image: url(../img/svg/lightbox_arrow_right.svg);
	opacity: 1 !important;
	display: block !important;
	margin: auto 0px;
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: -104px;
}

.lb-data .lb-close {
	background: initial;
}

.lb-data {
	display: none;
}

.lb-outerContainer {
	border-radius: initial;
}

.lightbox .lb-image {
	border-radius: initial;
	border: initial;
}
/*LIGHTBOX END*/

/*CONTENT SLIDER*/
.g__content_slider {
	width: 1120px;
}

.g__content_slider-slide-image {
	height: 475px;
	position: relative;
}

.g__content_slider-slide-image img {
	margin-top: initial;
	margin-bottom: initial;
}

.g__content_slider-controls {
	margin-top: 44px !important;
}
/*CONTENT SLIDER 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;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 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(0.3, 0.12, 0.25, 1);
}
/*BURGER END*/

/*SWIPER SLIDER*/
.swiper-container {
	padding-bottom: 10px;

	overflow: hidden;
}

.swiper-wrapper {
	transition-timing-function: cubic-bezier(0.3, 0.12, 0.25, 1);
}

.swiper-container .slider-controls {
	display: flex;
	justify-content: center;
	max-width: 1118px;
	margin-top: 54px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

.swiper-scrollbar {
	background-color: var(--color-black);
	border-radius: initial;
	width: 930px;
	height: 2px;
	position: absolute;
}

.swiper-scrollbar-drag {
	background-color: initial;
	border-radius: initial;
	height: calc(100% + 4px);
	position: relative;
	top: -2px;

	cursor: pointer;
}

.swiper-scrollbar-drag:before {
	content: '';
	width: 100%;
	height: calc(100% + 14px);
	margin: auto;
	position: absolute;
	top: -100%;
	right: -100%;
	bottom: -100%;
	left: -100%;
}

.swiper-scrollbar-drag:after {
	content: '';
	background-color: var(--color-accent);
	width: 100%;
	height: 100%;
	margin: auto 0px;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
}

.swiper-button-prev {
	background-image: url(../img/svg/slider_arrow_prev.svg);
	background-size: 100% 100%;
	width: 62px;
	height: 16px;
	margin-top: initial;
	top: -7px;
	right: initial;
	left: 0px;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.swiper-button-next {
	background-image: url(../img/svg/slider_arrow_next.svg);
	background-size: 100% 100%;
	width: 62px;
	height: 16px;
	margin-top: initial;
	top: -7px;
	right: 0px;
	left: initial;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
	display: none;
}

.swiper-button-prev:before,
.swiper-button-next:before {
	content: '';
	width: 100%;
	height: calc(100% + 14px);
	margin: auto;
	position: absolute;
	top: -100%;
	right: -100%;
	bottom: -100%;
	left: -100%;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0.3;
}
/*SWIPER SLIDER END*/

/*SELECTRIC*/
.selectric {
	background: initial !important;
	border: initial !important;
	margin-top: initial !important;
}

.selectric .label {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 143%;
	color: var(--color-black);
	background: none;
	border: none;
	outline: none;
	display: block;
	width: 100%;
	padding: 0px 32px 12px 0px;
}

.selectric-items {
	background: var(--color-grey);
	border: 2px solid var(--color-black);
	border-top-color: rgba(0, 0, 0, 0);
	border-radius: initial;
	box-shadow: initial;
}

.selectric-items:before,
.selectric-items:after {
	display: none;
}

.selectric-open .selectric-items {
	transition: 0.3s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.selectric-items li {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 143%;
	color: var(--color-black);
	background: none;
	border: none;
	outline: none;
	display: block;
	width: 100%;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.selectric-items li:after {
	display: none;
}

.selectric-items li.highlighted {
	color: var(--color-accent);
	background: initial;
}

.selectric-items li:hover {
	background-color: #ffffff;
}

.selectric .button {
	background: url(../img/svg/caret.svg);
	background-size: 100% 100%;
	width: 33px;
	height: 18px;

	transform-origin: center;

	transition: 0.3s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.selectric-open .selectric .button {
	transform: rotateX(180deg) translateY(-7px);
}
/*SELECTRIC END*/

/*ANIMATION*/
.g__overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 55;
}

.g__overlay.type-1 {
	background-color: #ffffff;
}

.g__overlay.type-2 {
	background-color: var(--color-grey);
}
/*ANIMATION END*/

.g__loading_gif {
	opacity: 0;
	width: 100px;
	height: 100px;
	margin: 0px auto;
	position: absolute;
	top: 0px;
	right: 0px;
	left: 0px;

	pointer-events: none;
}

.g__loading_gif img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/*search*/
.search-pop-up {
	width: 100%;
	height: calc(100vh - 70px);
	padding: 0px 20px 20px 20px;
	position: fixed;
	top: 70px;
	left: 0px;
	z-index: 99;
}

.search-pop-up .background-1 {
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: -2;
}

.search-pop-up .background-2 {
	background-color: var(--color-grey);
	width: calc(100% - 48px);
	height: 100%;
	max-height: calc(100% - 20px);
	position: absolute;
	top: 0px;
	left: 24px;
	z-index: -1;
}

.search-pop-up .wrapper {
	height: 100%;
	max-width: calc(875px + 40px);
	padding: 0px 24px;
	position: relative;
}

.search-pop-up .wrapper .pop-up-inner {
	height: 100%;
	position: relative;
}

.search-pop-up .wrapper .pop-up-inner .content {
	width: 100%;
}

.search-pop-up .form-outer {
	position: relative;
}

.search-pop-up .input-outer {
	box-shadow: 0 26px 61px 0 #dee3e9;
}

.search-pop-up input[type="search"] {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 22px !important;
	font-weight: 400 !important;
	color: var(--color-black);
	background-color: #ffffff !important;
	border: none !important;
	display: block;
	width: 100%;
	padding: 32px 18px 32px 18px;
}

.search-pop-up input[type="search"]::placeholder {
	color: var(--color-accent);
}

.search-pop-up .is-form-style {
	display: flex;
}

.search-pop-up .is-form-style button.is-search-submit {
	height: 64px;

	cursor: pointer;
}

.search-pop-up .is-search-icon {
	background-color: #ffffff;
	border: initial;
	width: 64px;
	height: 100%;
	position: relative;
}

.search-pop-up .is-search-icon svg {
	display: none;
}

.search-pop-up .is-search-icon:after {
	content: '';
	background: url(../img/svg/search.svg);
	display: block;
	width: 19px;
	height: 18px;
	margin: auto;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

div.is-ajax-search-details, div.is-ajax-search-result {
	border: initial !important;
	background: initial !important;
}

.is-ajax-search-details a, .is-ajax-search-result a {
	text-decoration: initial !important;
	color: var(--color-accent) !important;
}
/*search end*/

.ssba-sharing {
	position: fixed;
	top: 40vh;
	right: 0px;
	z-index: 111;

	pointer-events: none;

	transform: translateX(235px);

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.ssba-sharing-logic {
	display: none;
}

.ssba-sharing .ssbp-list li a {
	background-color: var(--color-black) !important;
	width: 30px !important;
	height: 30px !important;

	pointer-events: all;
}

.ssba-sharing .ssbp-list li a:hover {
	opacity: 0.6;
}

.ssba-sharing .ssbp-btn:before,
.ssba-sharing .ssbp-toggle-switch:before {
	color: #ffffff !important;
	position: relative;
	top: -8px;
}

.ssba-sharing-visuals {
	background-color: #ffffff;
	padding: 10px 22px;
	position: relative;

	pointer-events: all;
}

.ssba-sharing-visuals:after {
	content: '';
	background: rgba(5, 5, 5, 0.12);
	display: block;
	width: calc(100% - 3px);
	height: 100%;
	position: absolute;
	top: 3px;
	left: 3px;
	z-index: -1;
}

.ssba-sharing-visuals-el-1 {
	opacity: 0;
	margin-right: 24px;

	pointer-events: none;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.ssba-sharing-visuals-el-2 {
	opacity: 0;

	pointer-events: none;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.ssba-sharing-visuals-el-0 {
	position: absolute;
	top: 10px;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.ssba-sharing:hover {
	transform: translateX(0px);
}

.ssba-sharing:hover .ssba-sharing-visuals-el-1 {
	opacity: 1;

	pointer-events: all;
}

.ssba-sharing:hover .ssba-sharing-visuals-el-2 {
	opacity: 1;

	pointer-events: all;
}

.ssba-sharing:hover .ssba-sharing-visuals-el-0 {
	opacity: 0;

	pointer-events: none;
}
/*GLOBALS END*/

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

	overflow: hidden;
}

.pop-up .background {
	background-color: rgba(0, 0, 0, 0.8);
	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;
}

.pop-up .close-button .g__close {
	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

.pop-up .close-button .g__close:hover {
	opacity: 0.8;

	transform: scale(0.8);
}

/*video pop up*/
.pop-up.video-pop-up .content {
	background-color: rgba(0, 0, 0, 0.4);
	height: 70vw;
	max-height: 486px;
	max-width: 864px;
}

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

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

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

header .g__background {
	background-color: #ffffff;
}

header .wrapper {
	max-width: calc(1220px + 40px + 40px);
	padding-top: 46px;
	padding-bottom: 46px;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

header .el-logo-outer {
	display: block;
	height: 67px;
	position: relative;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

header .el-logo-1 {
	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

header .el-logo-2 {
	opacity: 0;
	display: block;
	height: 33px;
	margin: auto 0px;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

header .el-menu {
	margin-right: 18px;
}

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

header .el-menu ul li a {
	font-size: 13px;
	font-weight: 500;
	line-height: 16px;
	padding-right: 22px;
	padding-left: 22px;
	color: var(--color-black);
	position: relative;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

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

header .el-menu ul li.current_page_item a {
	color: var(--color-accent);
}

header .el-menu ul li a:before {
	content: '';
	width: 100%;
	height: calc(100% + 32px + 32px);
	position: absolute;
	top: -32px;
	left: 0px;
}

header .el-menu ul li a:after {
	content: '';
	background-color: var(--color-accent);
	width: 0%;
	height: 2px;
	position: absolute;
	bottom: -32px;
	left: 0px;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

header .el-menu ul li a:hover:after {
	width: 100%;
}

header .el-search {
	margin-right: 40px;
	position: relative;
	top: 2px;

	cursor: pointer;
}

header .el-search svg path {
	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

header .el-search:hover svg path {
	fill: var(--color-accent);
}

header .el-search-close-icon {
	width: 19px;
	position: absolute;
	top: 0px;
	left: 0px;
}

header .el-search-close-icon svg {
	display: block;
	width: 100%;
	height: auto;
}

header .el-search-close-icon svg path {
	stroke: var(--color-black);

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

header .el-search-close-icon:hover svg path {
	stroke: var(--color-accent);
}

header .el-lang-switcher {
	position: relative;
	top: -50px;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

header .el-lang-current {
	font-size: 12px;
	font-weight: 500;
	color: var(--color-black);
}

header .el-lang-switcher .active {
	display: none;
}

header .el-lang-current a {
	color: var(--color-black);

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

header .el-lang-current a:hover {
	color: var(--color-accent);
}

header .el-burger {
	margin-left: 24px;
}

header.not-at-top {

}

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

header.not-at-top .el-logo-outer {
	height: 33px;
}

header.not-at-top .el-logo-1 {
	opacity: 0;
}

header.not-at-top .el-logo-2 {
	opacity: 1;
}

header.not-at-top .el-lang-switcher {
	top: 0px;
}

body:not(.home) header {

}

body:not(.home) header .wrapper {
	padding-top: 24px;
	padding-bottom: 24px;
}

body:not(.home) header .el-logo-outer {
	height: 33px;
}

body:not(.home) header .el-logo-1 {
	opacity: 0;
}

body:not(.home) header .el-logo-2 {
	opacity: 1;
}

body:not(.home) header .el-lang-switcher {
	top: 0px;
}

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: 81px;
	padding-right: initial;
	padding-left: initial;
}

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

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

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

.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: 20px;
}

.main-menu .el-menu ul li a {
	font-size: 20px;
	font-weight: 700;
	line-height: 125%;
	text-align: center;
	color: var(--color-black);
	display: inline-block;
}

.main-menu .el-menu ul li.current_page_item a {
	color: var(--color-accent);
}

.main-menu .part-bottom {
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
	margin-top: 60px;
	position: relative;
}

.main-menu .part-bottom-bg {
	background-color: var(--color-grey);
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.main-menu .el-title {
	text-align: center;
}

.main-menu .el-search {
	max-width: 332px;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
}

.main-menu .el-form .g__button {
	width: 100%;
}
/*MAIN MENU END*/

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

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

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

footer .block-list-outer {
	margin-top: 60px;
}

footer .block-item {
	width: 33.33%;
	position: relative;
}

footer .block-item-1 {
	width: 34.5%;
}

footer .block-item-2 {
	width: 35%;
}

footer .block-item-3 {
	width: 30.5%;
}

footer .el-text-1 {
	margin-top: 0px;
}

footer .el-text-2 {
	margin-top: 20px;
}

footer .el-text-3 {
	margin-top: 20px;
}

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

footer .el-text-5 {
	margin-top: 0px;
}

footer .el-text-6 {
	margin-top: 0px;
}

footer .el-text-7 {
	margin-top: 16px;
}

footer .el-text-7 a {
	color: var(--color-black);

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

footer .el-text-7 a:hover {
	color: var(--color-accent);
}

footer .el-socials {
	margin-top: 32px;
}
/*FOOTER END*/
/*COMMONS END*/

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

}

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

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

section.type-1 .block-item-1 {
	width: 60%;
	padding-right: 40px;
}

section.type-1 .block-item-2 {
	width: 40%;
	margin-top: 12px;
}

section.type-1 .el-text {
	max-width: 352px;
}

section.type-1.var-0 {

}

section.type-1.var-a {

}

section.type-1.var-a .wrapper {
	padding-top: 92px;
	padding-bottom: 54px;
}

section.type-1.var-a .block-item-1 {
	width: 51%;
}

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

section.type-1.var-a .el-text {
	max-width: 424px;
}

section.type-1.var-b {

}

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

section.type-1.var-b .wrapper {
	padding-top: 92px;
	padding-bottom: initial;
}

section.type-1.var-b .block-list {
	margin-top: 60px;
}

section.type-1.var-b .block-item-2 {
	margin-top: initial;
}

section.type-1.var-b .el-text-2 {
	max-width: 545px;
}
/*SECTION TYPE 1 END*/

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

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

section.type-2 .wrapper {
	
}

section.type-2 .el-image-outer {
	height: 543px;
	position: relative;

	overflow: hidden;
}

section.type-2 .el-image {
	height: 100%;
}

section.type-2 .el-image img {
	height: calc(100% + 150px);
	top: -75px;
}

section.type-2 .el-group {
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0.5;
	margin: auto;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: 55;
}

section.type-2 .el-group svg {
	display: block;
}

section.type-2 .slider-slide:nth-child(2) .el-group svg {
	transform: rotate(180deg)
}
/*SECTION TYPE 2 END*/

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

}

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

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

section.type-3 .el-title-block {
	width: 400px;
	max-width: 33.33%;
	margin-bottom: -230px;
	position: relative;
}

section.type-3 .el-title {
	max-width: 400px;
}

section.type-3 .el-text {
	max-width: 254px;
	margin-top: 34px;
}

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

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

section.type-3 .block-item-el-title {
	text-align: center;

	overflow: hidden;
}

section.type-3 .block-item-el-line {
	background-color: var(--color-accent);
	width: 118px;
	height: 5px;
	margin-top: 6px;
	margin-right: auto;
	margin-left: auto;
}

section.type-3 .block-item-el-text {
	text-align: center;
	max-width: 276px;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
}

section.type-3.var-0 {

}

section.type-3.var-a {

}

section.type-3.var-a .g__background {
	background-color: #ffffff;
}

section.type-3.var-a .el-title-block {
	margin-bottom: -150px;
}

section.type-3.var-a .block-item-el-icon {
	display: flex;
	justify-content: center;
	max-width: 114px;
	height: 100px;
	margin-right: auto;
	margin-left: auto;
	position: relative;

	overflow: hidden;
}

section.type-3.var-a .block-item-el-icon svg,
section.type-3.var-a .block-item-el-icon img {
	display: block;
	width: auto;
	height: 100%;
}

section.type-3.var-a .block-item-el-line {
	margin-top: 28px;
}

section.type-3.var-a .block-item-el-title {
	height: 100px;
}

section.type-3.var-a.var-a-2 {
}

section.type-3.var-a.var-a-2 .block-item-el-title {
    height: auto;
}
/*SECTION TYPE 3 END*/

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

}

section.type-4 .g__background {
	background-color: var(--color-grey);
}

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

section.type-4 .container {
	padding: 40px 45px 40px 45px;
	position: relative;
}

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

section.type-4 .container-bg-line {
	background-color: var(--color-black);
	width: 2px;
	height: 2px;
	position: absolute;
}

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

section.type-4 .container-bg-line-2 {
	height: 100%;
	top: 0px;
	right: 0px;
}

section.type-4 .container-bg-line-3 {
	width: 100%;
	bottom: 0px;
	right: 0px;
}

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

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

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

}

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

section.type-5 .block-list {
	width: calc(100% + 32px);
}

section.type-5 .block-item {
	width: 352px;
	height: initial;
	margin-right: 32px;
	position: relative;

	overflow: hidden;
}

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

section.type-5 .block-item-el-image {
	height: 218px;
}

section.type-5 .block-item-el-title {
	height: 87px;
	overflow: hidden;
}

section.type-5 .block-item-el-info {
	background-color: var(--color-grey);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100% - 218px);
	max-height: 470px;
	padding: 38px 35px 45px 35px;
}

section.type-5 .block-item-el-text {
	margin-top: 20px;
	max-height: 180px;

	overflow: hidden;
}

section.type-5 .block-item-el-button {
	margin-top: 48px;
}

section.type-5 .el-controls {
	display: flex;
	justify-content: center;
	margin-top: 60px;
	margin-right: auto;
	margin-left: auto;
}
/*SECTION TYPE 5 END*/

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

}

section.type-6 .g__background {
	background-color: var(--color-grey);
}

section.type-6 .wrapper {
	
}

section.type-6 .block-item {
	width: 50%;
	min-height: 500px;
	position: relative;
}

section.type-6 .block-item-2 {
	padding-top: 65px;
	padding-right: 5%;
	padding-right: 40px;
	padding-bottom: 65px;
	padding-left: 10%;
	padding-left: 126px;
}

section.type-6 .el-image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-6 .el-info {
	max-width: 455px;
}

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

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

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

}

section.type-7 .g__background {
	
}

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

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

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

section.type-7 .block-item {
	width: calc(33.33% - 16px - 16px);
	margin-top: 54px;
	margin-right: 16px;
	margin-left: 16px;

	cursor: pointer;
}

section.type-7 .block-item.var-a .block-item-inner {
	display: flex;
	align-items: flex-end;
	height: 100%;
}

section.type-7 .block-item-el-date {
	margin-bottom: 22px;
}

section.type-7 .block-item-el-title {
	height: 58px;

	overflow: hidden;
}

section.type-7 .block-item-el-text {
	height: 80px;
	margin-top: 16px;

	overflow: hidden;
}

section.type-7 .block-item-el-image {
	height: 224px;
	margin-top: 30px;

	overflow: hidden;
}

section.type-7 .block-item-el-image img {
	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

section.type-7 .block-item:hover .block-item-el-image img {
	opacity: 0.8;

	transform: scale(1.025);
}

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

section.type-7 .el-form-text {
	max-width: 276px;
}

section.type-7 .el-form {
	margin-top: 30px;
}
/*SECTION TYPE 7 END*/

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

section.type-8 .g__background {
	background-color: var(--color-grey);
}

section.type-8 .block-item {
	position: relative;
}

section.type-8 .block-item-1 {
	width: 69%;
	padding-top: 100px;
	padding-right: 40px;
	padding-bottom: 100px;
}

section.type-8 .block-item-2 {
	width: 31%;
}

section.type-8 .block-item-2 .block-item-inner {
	height: 100%;
}

section.type-8 .el-info {
	max-width: 640px;
}

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

section.type-8 .el-image-outer {
	width: 39vw;
	height: 100%;
	position: relative;
}

section.type-8 .el-image {
	width: 100%;
	height: 100%;
	position: relative;
}

section.type-8 .el-image img {
	position: absolute;
	top: 0px;
	left: 0px;
}

section.type-8 .el-group {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: absolute;
    top: 0px;
    right: -40px;
    z-index: 55;
}

section.type-8 .el-group svg {
    opacity: 0.5;
	display: block;
}
/*SECTION TYPE 8 END*/

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

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

section.type-9 .block-list-outer {
	margin-top: 80px;
}

section.type-9 .block-item-el-circle-outer {
	width: 170px;
	height: 170px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

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

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

section.type-9 .block-item-el-text {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

section.type-9 .block-item-el-title {
	text-align: center;
	max-width: 282px;
	margin-top: 36px;
	margin-right: auto;
	margin-left: auto;
}
/*SECTION TYPE 9 END*/

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

section.type-10 .g__background {
	background-color: var(--color-grey);
}

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

section.type-10 .el-group svg {
	overflow: visible;
}
/*SECTION TYPE 10 END*/

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

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

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

section.type-11 .block-item-1 {
	width: 50%;
	padding-right: 40px;
}

section.type-11 .block-item-2 {
	width: 50%;
}

section.type-11 .el-text-1 {
	max-width: 502px;
}

section.type-11 .el-text-2 {
	max-width: 502px;
}
/*SECTION TYPE 11 END*/

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

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

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

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

section.type-12 .block-item {
	width: 33.33%;

	cursor: pointer;
}

section.type-12 .block-item-el-icon {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 158px;
	height: 174px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}

section.type-12 .block-item-el-icon svg,
section.type-12 .block-item-el-icon img {
	display: block;
	width: 100%;
	height: auto;
}

section.type-12 .block-item-el-icon-1 {
	filter: brightness(0);

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

section.type-12 .block-item-el-icon-1 path {
	fill: var(--color-black);
}

section.type-12 .block-item-el-icon-2 {
	opacity: 0;
	margin: 0px auto;
	position: absolute;
	right: 0px;
	bottom: 0px;
	left: 0px;

	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

section.type-12 .block-item:hover .block-item-el-icon-1 {
	opacity: 0;
}

section.type-12 .block-item:hover .block-item-el-icon-2 {
	opacity: 1;
}

section.type-12 .block-item-el-text {
	text-align: center;
	max-width: 340px;
	margin-top: 36px;
	margin-right: auto;
	margin-left: auto;
}
/*SECTION TYPE 12 END*/

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

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

section.type-13 .block-list-outer {
	margin-top: 60px;
}

section.type-13 .block-list {
	column-count: 3;
	column-gap: 40px;
}

section.type-13 .block-item {
	position: relative;

	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

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

section.type-13 .item-list {
	max-width: 254px;
	margin-top: 34px;
}

section.type-13 .item:not(:nth-child(1)) {
	margin-top: 20px;
}
/*SECTION TYPE 13 END*/

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

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

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

section.type-14 .el-button {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 24px;
}

section.type-14 .el-filter-list-outer {
	margin-top: 52px;
}

section.type-14 .el-filter-list {
	align-items: flex-end;
	width: calc(100% + 16px + 16px);
	position: relative;
	left: -16px;
}

section.type-14 .el-filter-item {
	width: calc(33.33% - 16px - 16px);
	margin-right: 16px;
	margin-left: 16px;
}

section.type-14 .block-list-outer {
	min-height: 500px;
	margin-top: 72px;
	position: relative;
}

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

section.type-14 .block-item-part {
	position: relative;
}

section.type-14 .block-item-part-1 {
	background-color: #ffffff;
	width: 60%;
}

section.type-14 .block-item-part-2 {
	width: 40%;
}

section.type-14 .block-item-part-2 .el-image {
	height: 100%;
}

section.type-14 .block-item-el-info {
	padding: 66px 40px 40px 14%;
}

section.type-14 .block-item-el-title {
	max-width: 340px;
	height: 87px;

	overflow: hidden;
}

section.type-14 .block-item-el-text {
	max-width: 440px;
	height: 120px;
	margin-top: 24px;

	overflow: hidden;
}

section.type-14 .block-item-el-button {
	margin-top: 44px;
}
/*SECTION TYPE 14 END*/

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

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

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

section.type-15 .el-badge {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 30px;
}

section.type-15 .el-title {
	max-width: 870px;
}

section.type-15 .el-image {
	height: 450px;
	margin-top: 60px;
}

section.type-15 .el-editor {
	max-width: 736px;
	margin-top: 52px;
	position: relative;
}

section.type-15.var-a {
	z-index: 77;
}

section.type-15.var-a .wrapper {
	padding-bottom: 74px;
}

section.type-15.var-a .el-badge .g__text {
	font-weight: 500;
}

section.type-15.var-a .el-editor {
	max-width: 642px;
}

section.type-15.var-a .el-text {
	width: 54%;
	max-width: 351px;
	position: absolute;
	top: 76px;
	left: calc(100% + 20%);
}

section.type-15.var-a .el-editor-video {
	width: 928px;
	margin-left: 97px;
	position: relative;
}

section.type-15.var-a .el-editor-video-image {
	height: 475px;
	position: relative;
}

section.type-15.var-a .el-editor-video-image img {
	margin-top: initial;
	margin-bottom: initial;
}

section.type-15.var-a .el-editor-video-circle-outer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;

	cursor: pointer;
}

section.type-15.var-a .el-editor-video-circle {
	background-color: rgba(0, 0, 0, 0.33);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 125px;
	height: 125px;
}

section.type-15.var-a .el-editor-video-circle-play-icon {
	position: relative;
	left: 5px;
}
/*SECTION TYPE 15 END*/

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

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

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

section.type-16 .block-list-outer {
	margin-top: 60px;
}

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

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

section.type-16 .block-item-el-image {
	height: 259px;
	position: relative;

	overflow: hidden;
}

section.type-16 .block-item-el-image img {
	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

section.type-16 .block-item:hover .block-item-el-image img {
	opacity: 0.8;

	transform: scale(1.025);
}

section.type-16 .block-item-el-title {
	margin-top: 40px;
}

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

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

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

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

section.type-17 .block-item {
	position: relative;
}

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

section.type-17 .block-item-2 {
	width: 50%;
	padding-left: 10%;
}

section.type-17 .el-info {
	max-width: 352px;
}

section.type-17 .el-text {
	margin-top: 12px;
}

section.type-17 .el-content {
	margin-top: 38px;
}
/*SECTION TYPE 17 END*/

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

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

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

section.type-18 .el-button {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 24px;
}

section.type-18 .el-button-2 {
	margin-top: 44px;
}

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

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

section.type-18 .block-item:nth-child(2) {
	margin-top: 16px;
}

section.type-18 .block-item-inner {
	background-color: #ffffff;
	padding: 26px 42px 26px 30px;
}

section.type-18 .block-item.var-a .block-item-inner {
	background-color: initial;
	padding-top: initial;
	padding-bottom: initial;
}

section.type-18 .block-item-part {
	position: relative;
}

section.type-18 .block-item-part-1 {
	width: 70%;
	padding-right: 40px;
}

section.type-18 .block-item.var-a .block-item-part-1 {
	left: -30px;
}

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

section.type-18 .block-item-part-3 {
	width: 14%;
}

section.type-18 .block-item-el-title {
	max-width: calc(610px + 40px);
}

section.type-18 .block-item-part-3 .block-item-el-button .g__button-inner {
	min-width: initial;
}

section.type-18.var-a {

}

section.type-18.var-a .wrapper {
	padding-top: 96px;
	padding-bottom: 95px;
}

section.type-18.var-a .el-text {
	max-width: 558px;
	margin-top: 45px;
	margin-bottom: 88px;
}

section.type-18.var-a.var-a-2 .wrapper {
	padding-bottom: 15px;
}
/*SECTION TYPE 18 END*/

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

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

section.type-19 .wrapper {
	padding-top: 24px;
	padding-bottom: 68px;
}

section.type-19 .el-button {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 24px;
}

section.type-19 .el-filter-list-outer {
	margin-top: 52px;
}

section.type-19 .el-filter-list {
	align-items: flex-end;
	width: calc(100% + 16px + 16px);
	position: relative;
	left: -16px;
}

section.type-19 .el-filter-item {
	width: calc(33.33% - 16px - 16px);
	margin-right: 16px;
	margin-left: 16px;
}

section.type-19 .block-list-outer {
	min-height: 500px;
	margin-top: 60px;
	position: relative;
}

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

section.type-19 .block-item {
	width: calc(33.33% - 16px - 16px);
	margin-top: 54px;
	margin-right: 16px;
	margin-left: 16px;
}

section.type-19 .block-item-el-date {
	margin-bottom: 22px;
}

section.type-19 .block-item-el-title {
	height: 58px;

	overflow: hidden;
}

section.type-19 .block-item-el-text {
	height: 80px;
	margin-top: 16px;

	overflow: hidden;
}

section.type-19 .block-item-el-image {
	height: 224px;
	margin-top: 30px;

	overflow: hidden;
}

section.type-19 .block-item-el-image img {
	transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
}

section.type-19 .block-item:hover .block-item-el-image img {
	opacity: 0.8;

	transform: scale(1.025);
}

section.type-19 .el-button {
	/*margin-top: 62px;*/
	margin-top: 0px;
}

section.type-19 .el-button-2 {
	margin-top: 62px;
}

section.type-19.var-a {

}

section.type-19.var-a .g__background {
	background-color: #ffffff;
}

section.type-19.var-a .wrapper {
	padding-top: 95px;
}

section.type-19.var-a .selectric-items {
	background: #ffffff;
}

section.type-19.var-a .selectric-items li:hover {
	background-color: var(--color-grey);
}

section.type-19.var-a.var-a-2 {

}

section.type-19.var-a.var-a-2 .wrapper {
	padding-bottom: 98px;
}

section.type-19.var-a.var-a-2 .block-item-el-date.var-a {
	color: #FF0000;
}
/*SECTION TYPE 19 END*/

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

}

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

section.type-20 .wrapper {
	padding-top: 108px;
	padding-bottom: 68px;
}

section.type-20 .el-button {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 24px;
}

section.type-20 .el-filter-list-outer {
	margin-top: 52px;
}

section.type-20 .el-filter-list {
	align-items: flex-end;
	width: calc(100% + 16px + 16px);
	position: relative;
	left: -16px;
}

section.type-20 .el-filter-item {
	width: calc(25% - 16px - 16px);
	margin-right: 16px;
	margin-left: 16px;
}

section.type-20 .block-list-outer {
	min-height: 500px;
	margin-top: 58px;
	position: relative;
}

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

section.type-20 .block-item {
	width: calc(33.33% - 16px - 16px);
	margin-top: 30px;
	margin-right: 16px;
	margin-left: 16px;
	position: relative;
}

section.type-20 .block-item-inner {
	height: 100%;
}

section.type-20 .block-item-el-image {
	height: 218px;
}

section.type-20 .block-item-el-info {
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100% - 218px);
	padding: 38px 35px 45px 35px;
}

section.type-20 .block-item-el-date {
	margin-bottom: 22px;
}

section.type-20 .block-item-el-title {
	height: 87px;

	overflow: hidden;
}

section.type-20 .block-item-el-text {
	min-height: 180px;
	margin-top: 20px;

	overflow: hidden;
}

section.type-20 .block-item-el-button {
	margin-top: 48px;
}

section.type-20 .el-button-2 {
	margin-top: 58px;
}
/*SECTION TYPE 20 END*/

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

section.type-21 .g__background {
	background-color: var(--color-grey);
}

section.type-21 .wrapper {
	padding-top: 28px;
	padding-bottom: 0px;
}

section.type-21 .el-text {
	margin-top: 44px;
	max-width: 450px;
}

section.type-21 .el-form {
	margin-top: 66px;
}

section.type-21.var-a {
	
}

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

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

section.type-22 .g__background {
	background-color: #ffffff;
}

section.type-22 .wrapper {
	padding-top: 79px;
	padding-bottom: 90px;
}

section.type-22 .block-list-outer {
	margin-top: 51px;
}

section.type-22 .block-item {
	position: relative;
}

section.type-22 .block-item-1 {
	width: calc(100% - 256px);
}

section.type-22 .block-item-2 {
	width: 256px;
}

section.type-22 .el-editor {
	max-width: 600px;
	padding-right: 40px;
}

section.type-22.var-a {

}

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

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

section.type-23 .g__background {
	background-color: var(--color-grey);
}

section.type-23 .wrapper {
	padding-top: 79px;
	padding-bottom: 90px;
}

section.type-23 .el-title {
	max-width: 600px;
}

section.type-23 .block-list-outer {
	margin-top: 62px;
}

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

section.type-23 .block-item {
	width: calc(25% - 16px - 16px);
	margin-top: 60px;
	margin-right: 16px;
	margin-left: 16px;
	position: relative;
}

section.type-23 .block-item-el-title {
	min-height: 60px;
}

section.type-23 .block-item-el-title .g__text {
	font-weight: 600;
}

section.type-23 .block-item-el-line {
	background-color: var(--color-black);
	height: 2px;
	margin-top: 22px;
}

section.type-23 .block-item-el-text {
	margin-top: 20px;
}
/*SECTION TYPE 23 END*/

.for-mobile {
	display: none;
}

.for-desktop {
	display: block;
}

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

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

	body {
		padding-top: 69px !important;
	}

	br {
		display: none;
	}

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

	.g__text.type-h1, h1 {
		font-size: calc(45px * 0.85);
	}

	.g__text.type-h2, h2 {
		font-size: calc(27px * 0.85);
	}

	.g__text.type-2 {
		font-size: calc(110px * 0.85);
	}

	.g__text.type-3 {
		font-size: calc(60px * 0.85);
	}

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

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

	.g__content_slider {
		width: calc(100% + 12px + 12px);
		position: relative;
		left: -12px;
	}

	.g__content_slider-slide-image {
		height: 80vw;
	}

	.g__content_slider-controls {
		margin-top: 30px !important;
	}

	.g__button-inner {
		padding-top: 16px;
		padding-bottom: 16px;
	}
	
	.g__wysiwyg_editor p img,
    .g__wysiwyg_editor > img {
        width: calc(100% + 12px + 12px);
        height: 80vw;
        max-width: initial;
    	margin-left: initial;
        left: -12px;
    }

	.swiper-scrollbar {
		width: 200px;
	}

	.pop-up .pop-up-inner {
		padding-right: 16px;
		padding-left: 16px;
	}

	.pop-up .close-button {
		top: 20px;
		right: 20px;
	}

	.pop-up.video-pop-up .content {
		height: 53vw;
	}

	.search-pop-up .background-2 {
		width: calc(100% - 24px);
		top: 0px;
		left: 12px;
	}

	.search-pop-up .wrapper {
		padding-right: 12px;
		padding-left: 12px;
	}

	.search-pop-up .is-form-style button.is-search-submit {
		position: absolute;
		right: 30px;
	}

	section {
		overflow: hidden;
	}

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

	footer {
		overflow: hidden;
	}

	header .wrapper {
		padding-top: 18px !important;
		padding-bottom: 18px !important;
	}

	header .el-logo-outer {
		height: 33px;
	}

	header .el-logo-1 {
		opacity: 0;
	}

	header .el-logo-2 {
		opacity: 1;
	}

	header .el-menu {
		display: none;
	}

	header .el-lang-switcher {
		opacity: 0;
		top: 0px;
	}

	header .el-lang-switcher.mobile-show {
		opacity: 1;
	}

	header .el-search {
		position: absolute;
		top: 25px;
		right: 22px;
		z-index: 55;

		transition: 0.5s cubic-bezier(0.3, 0.12, 0.25, 1);
	}

	header.menu-opened .el-search {
		opacity: 0;

		pointer-events: none;
	}

	header.not-at-top .el-search {
		top: 25px;
	}

	.ssba-sharing {
		top: initial;
		bottom: 30vh;
	}

	.search-pop-up input[type="search"] {
		font-size: 18px !important;
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.search-pop-up .is-form-style button.is-search-submit {
		height: 48px;
	}

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

	footer .block-item-2 {
		width: 100%;
		margin-top: 80px;
	}

	footer .block-item-3 {
		width: 100%;
		margin-top: 80px;
	}

	section.type-1 .wrapper {
		padding-top: 10vh;
	}

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

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

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

	section.type-1.var-b .block-item-2 {
		margin-top: 60px;
	}

	section.type-1.var-b .el-text-2 {
		margin-top: initial;
	}

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

	section.type-2 .el-image-outer {
		height: 70vw;
	}

	section.type-2 .swiper-container .slider-controls {
		max-width: calc(100% - 12px - 12px);
	}

	section.type-2 .el-controls {
		padding-right: 12px;
		padding-left: 12px;
		margin-top: 30px;
	}

	section.type-2 .el-group svg {
		transform: scale(1.3);
	}

	section.type-2 .slider-slide:nth-child(2) .el-group svg {
		transform: scale(1.3) rotate(180deg);
	}

	section.type-3 .el-title-block {
		text-align: center;
		width: 100%;
		max-width: 100%;
		margin-bottom: initial;
	}

	section.type-3 .el-title {
		max-width: 320px;
		margin-right: auto;
		margin-left: auto;
	}

	section.type-3 .el-text {
		max-width: 320px;
		margin-right: auto;
		margin-left: auto;
	}

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

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

	section.type-3.var-a .el-title-block {
		margin-bottom: initial;
	}

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

	section.type-4 .container {
		padding: 30px 20px 30px 20px;
	}

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

	section.type-4 .block-item-2 {
		width: 100%;
		margin-top: 30px;
	}

	section.type-4 .block-item-2 .el-button .g__button {
		width: 100%;
	}

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

	section.type-1.var-a .block-item-2 {
		width: 100%;
		margin-top: 40px;
	}

	section.type-5 .block-list-outer {
		width: calc(100% - 36px);

		overflow: initial;
	}

	section.type-5 .block-list {
		width: initial;
	}

	section.type-5 .block-item {
		min-width: initial;
		margin-right: 12px;
		margin-left: initial;
		width: initial;
	}

	section.type-5 .slider-controls {
		width: calc(100% + 36px);
		margin-top: 30px;
	}
	
	section.type-5 .block-item-el-image {
	    min-height: 58vw;
	}

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

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

	section.type-6 .el-image {
		position: relative;
		height: 80vw;
		max-height: 500px;
	}

	section.type-6 .block-item-2 {
		padding-top: 40px;
		padding-right: 62px;
		padding-bottom: 40px;
		padding-left: 32px;
	}

	section.type-7 .block-list {
		width: 100%;
		margin-top: -80px;
		left: initial;
	}

	section.type-7 .block-item {
		width: 100%;
		margin-top: 80px;
		margin-right: initial;
		margin-left: initial;
	}

	section.type-7 .el-form-text {
		max-width: 380px;
	}

	section.type-7 .el-form .g__button {
		width: 100%;
	}

	section.type-7 .el-button {
		display: none;
	}
	
	section.type-7 .block-item-el-image {
        min-height: 59vw;
    }

	section.type-8 .block-item-1 {
		width: 100%;
		padding-top: 10vh;
		padding-right: initial;
		padding-bottom: 60px;
	}

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

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

	section.type-8 .el-image img {
		position: relative;
	}

	section.type-8 .el-group {
		height: 100%;
	}

	section.type-8 .el-group svg {
		width: auto;
		height: 100%;
	}

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

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

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

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

	section.type-10 .el-group {
		width: 160%;
		position: relative;
		left: -10%;
	}

	section.type-10 .el-group svg {
		display: block;
		width: 100%;
		height: auto;
	}

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

	section.type-11 .block-item-2 {
		width: 100%;
		margin-top: 60px;
	}

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

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

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

	section.type-13 .block-list {
		column-count: initial;
		column-gap: initial;
	}

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

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

	section.type-14 .el-button {
		margin-bottom: 54px;
	}

	section.type-14 .el-filter-list {
		width: calc(100% + 12px + 12px);
		margin-top: -16px;
	    left: -12px;
	}

	section.type-14 .el-filter-item {
	    width: calc(50% - 12px - 12px);
	    margin-top: 24px;
	    margin-right: 12px;
	    margin-left: 12px;
	}

	section.type-14 .el-filter-item:nth-last-child(1) {
		width: 100%;
	}

	section.type-14 .el-filter-item:nth-last-child(1) .g__button {
		width: 100%;
	}

	section.type-14 .block-item-part-1 {
		order: 2;
		width: 100%;
	}

	section.type-14 .block-item-part-2 {
		order: 1;
		width: 100%;
	}

	section.type-14 .block-item-part-2 .el-image {
		height: 80vw;
	}

	section.type-14 .block-item-el-info {
		padding: 34px 24px 34px 24px; 
	}

	section.type-14 .block-item-el-title {
		height: 50px;
	}

	section.type-14 .block-item-el-text {
		height: 120px;
	}

	section.type-15 .el-badge {
		margin-bottom: 70px;
	}

	section.type-15 .el-image {
		width: calc(100% + 12px + 12px);
		height: 80vw;
		position: relative;
		left: -12px;
	}

	section.type-15.var-a .el-text {
		width: 100%;
		max-width: 100%;
		margin-bottom: 52px;
		position: relative;
		top: initial;
		left: initial;
	}

	section.type-16 .wrapper {
		padding-top: 10vh;
	}

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

	section.type-16 .block-item {
		width: 100%;
		margin-right: initial;
		margin-left: initial;
	}
	
	section.type-16 .block-item-el-image {
	    min-height: 69vw;
	}

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

	section.type-17 .block-item-el-image {
		width: calc(100% + 12px + 12px);
		max-height: 80vw;
		position: relative;
		left: -12px;
	}

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

	section.type-17 .block-item-2 {
		width: 100%;
		padding-top: 40px;
		padding-right: 62px;
		padding-bottom: 40px;
		padding-left: 32px;
	}

	section.type-18 .el-button {
		margin-bottom: 54px;
	}

	section.type-18 .block-item.var-a {
		display: none;
	}

	section.type-18 .block-item-inner {
		padding: 36px 24px 36px 24px;
	}

	section.type-18 .block-item-part-1 {
		order: 2;
		width: 100%;
		padding-right: initial;
		margin-top: 20px;
	}

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

	section.type-18 .block-item-part-3 {
		order: 3;
		width: 100%;
		padding-right: initial;
		margin-top: 40px;
	}

	section.type-15.var-a .el-editor-video {
		width: calc(100% + 12px + 12px);
		margin-left: initial;
		position: relative;
		left: -12px;
	}

	section.type-15.var-a .el-editor-video-image {
		height: 80vw;
	}

	section.type-18.var-a .wrapper {
		padding-top: 10vh;
	}

	section.type-19 .el-button {
		margin-bottom: 54px;
	}

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

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

	section.type-19 .el-filter-list {
		width: calc(100% + 12px + 12px);
		margin-top: -16px;
	    left: -12px;
	}

	section.type-19 .el-filter-item {
	    width: calc(50% - 12px - 12px);
	    margin-top: 24px;
	    margin-right: 12px;
	    margin-left: 12px;
	}

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

	section.type-19 .el-filter-item:nth-last-child(1) .g__button {
		width: 100%;
	}
	
	section.type-19 .block-item-el-image {
	    min-height: 59vw;
	}

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

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

	section.type-20 .el-filter-list {
		width: calc(100% + 12px + 12px);
		margin-top: -16px;
	    left: -12px;
	}

	section.type-20 .el-filter-item {
	    width: calc(50% - 12px - 12px);
	    margin-top: 24px;
	    margin-right: 12px;
	    margin-left: 12px;
	}

	section.type-20 .el-filter-item:nth-last-child(1) {
		width: 100%;
	}

	section.type-20 .el-filter-item:nth-last-child(1) .g__button {
		width: 100%;
	}
	
	section.type-20 .block-item-el-image {
	    min-height: 58vw;
	}

	section.type-21 .el-form .g__button {
		width: 100%;
	}

	section.type-21.var-a .wrapper {
		padding-top: 10vh;
	}

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

	section.type-22 .block-item-2 {
		width: 100%;
		margin-top: 60px;
	}

	section.type-22.var-a .wrapper {
		padding-bottom: initial;
	}

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

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

	section.type-23 .block-item-el-title {
		min-height: initial;
	}
}