/**
 * Media queries breakpoints:
 * @media (max-width: 767px)
 * @media (min-width: 768px) and (max-width: 991px)
 * @media (min-width: 992px) and (max-width: 1199px)
 * @media (min-width: 1200px)
 *
 * Fonts:
 * font-family: 'Ubuntu', sans-serif;
 *
 */
 
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	outline: none;
	background: transparent;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
html, body {
	height: 100%;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
	overflow-x: hidden;
	background: #fff;
	text-align: left;
	font: normal 16px/1.5em 'Ubuntu', sans-serif;
	color: #343536;
	-webkit-font-smoothing: antialiased;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input, select, button, textarea {
	margin: 0;
	border: 0;
	font-size: 100%;
	resize: none;
	outline: none;
	font: normal 16px/1.5em 'Ubuntu', sans-serif;
	color: #343536;
}
a {
	color: inherit;
	text-decoration: none;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}
::before,
::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* ************************************************************************** */

.btn-top-page {
	position: fixed;
	z-index: 5;
	opacity: 0;
	cursor: default;
	bottom: 120px;
	right: 20px;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: background-color 0.3s ease 0s, -webkit-transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	-ms-transition: background-color 0.3s ease 0s, -ms-transform 0.3s ease 0s, -ms-transform 0.3s ease 0s;
	transition: background-color 0.3s ease 0s, transform 0.3s ease 0s, transform 0.3s ease 0s;
}

.btn-top-page.visible {
	opacity: 1;
	cursor: pointer;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

@media (max-width: 1199px) {
	.btn-top-page {
		right: 5px;
		bottom: 120px;
		width: 60px;
		height: 60px;
	}
	.btn-c90-01 .ico {
		width: 30px;
		height: 30px;
	}
}

@media (max-width: 991px) {
	.btn-top-page {
		width: 50px;
		height: 50px;
		bottom: 110px;
	}
	.btn-c90-01 .ico {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 767px) {
	.btn-top-page {
		width: 40px;
		height: 40px;
		bottom: 45px;
	}
}

/* ************************************************************************** */

.table-wrap {
    width: 100%;
    overflow-x: auto;
	padding-bottom: 5px;
	margin: 2em 0;
}

/* ************************************************************************** */

.paginator {
	margin-left: -20px;
	margin-right: -20px;
	padding: 20px 0 0 0;
	text-align: center;
}

.paginator ul {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.paginator li {
	margin: 0 2px;
}

.paginator li a,
.paginator li > span {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 80px;
	height: 80px;
	background: transparent;
	-webkit-border-radius: 40px 0px;
	-moz-border-radius: 40px 0px;
	border-radius: 40px 0px;
	font: normal 26px/1.5em 'Ubuntu', sans-serif;
	color: #343536;
	text-transform: uppercase;
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

.paginator li a .ico {
	display: block;
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.paginator li.active a {
	color: #ffffff;
	background: #25BD07;
}

body.desktop-device .paginator li a:hover {
	background-color: #25BD07;
	color: #ffffff;
	-webkit-box-shadow: 0px 50px 77px rgba(0, 0, 0, 0.12), 0px 23px 40px rgba(0, 0, 0, 0.14);
	box-shadow: 0px 50px 77px rgba(0, 0, 0, 0.12), 0px 23px 40px rgba(0, 0, 0, 0.14);
}

body.desktop-device .paginator li a:active,
body.mobile-device .paginator li a:active {
	background-color: #1A9D00;
	color: #ffffff;
	-webkit-box-shadow: none;
	box-shadow: none;
}

@media (max-width: 991px) {
	.paginator li a,
	.paginator li > span {
		width: 60px;
		height: 60px;
		font-size: 32px;
		-webkit-border-radius: 30px 0px;
		-moz-border-radius: 30px 0px;
		border-radius: 30px 0px;
	}
}

@media (max-width: 767px) {
	.paginator li {
		margin: 0 1px;
	}
	.paginator li a,
	.paginator li > span {
		width: 42px;
		height: 42px;
		-webkit-border-radius: 21px 0px;
		-moz-border-radius: 21px 0px;
		border-radius: 21px 0px;
		font-size: 22px;
	}
}

/* ************************************************************************** */

.article .content .top {
	padding-bottom: 30px;
}

.article .content .top .h1 {
	margin-bottom: 20px;
	font: bold 60px/1em 'Ubuntu', sans-serif;
	color: #25BD07;
	text-transform: uppercase;
}

.article .content .top .info {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 100px;
}

.article .content .top .info .date {
	font: normal 14px/1em 'Ubuntu', sans-serif;
	color: #828282;
}


.article .content .articlebody {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.article .content .articlebody .social {
	display: block;
	width: 100px;
}

.article .content .articlebody .social .buttons {
	top: 60px;
	position: -webkit-sticky;
	position: -moz-sticky;
	position: -ms-sticky;
	position: -o-sticky;
	position: sticky;
}

.article .content .articlebody .social .buttons .btn-soc-s50 {
	margin: 0 0 10px 0;
}

.article .content .center {
	width: -webkit-calc(100% - 100px);
	width: -moz-calc(100% - 100px);
	width: calc(100% - 100px);
	font: normal 20px/1.4em 'Ubuntu', sans-serif;
	color: #343536;
}

.article .content .center .has-text-align-center {
	text-align: center;
}

.article .content .center > :first-child {
    margin-top: 0 !important;
}

.article .content .center > noscript:first-child + img {
	margin-top: 0 !important;
}

.article .content .center > img {
	display: block;
	width: 100%;
	height: auto;
	margin: 30px 0;
}

.article .content .center h2 {
	margin: 0.75em 0;
	font: 500 26px/1.2em 'Ubuntu', sans-serif;
	color: #25BD07;
}

.article .content .center p {
	margin: 1em 0;
}

.article .content .center em {
	font-style: italic;
}

.article .content .center b,
.article .content .center strong {
	font-weight: bold;
}

.article .content .center :not([class *= "slider"]) a {
	color: #25BD07;
	font-weight: 500;
}

body.desktop-device .article .content .center :not([class *= "slider"]) a:hover {
	color: #64D74D;
}

body.desktop-device .article .content .center :not([class *= "slider"]) a:active,
body.mobile-device .article .content .center :not([class *= "slider"]) a:active {
	color: #1A9D00;
}

.article .content .center .intro {
	margin: 1em 0;
	font: 500 26px/1.2em 'Ubuntu', sans-serif;
	color: #343536;
	text-transform: uppercase;
}

.article .content .center ul,
.article .content .center ol {
	margin: 1.2em 0;
	list-style: none;
}

.article .content .center ul li {
	position: relative;
	padding-left: 30px;
}

.article .content .center ul li::before {
	display: block;
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	left: 0;
	top: 11px;
	background: #25BD07;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.article .content .center ol {
	counter-reset: list1;
}

.article .content .center ol li {
	position: relative;
	padding-left: 30px;
}

.article .content .center ol.large {
	margin-bottom: 1.5em;
}

.article .content .center ol.large li {
	padding-left: 45px;
	margin-bottom: 0.7em;
}

.article .content .center ol.large li:last-child {
	margin-bottom: 0;
}

.article .content .center ol li::before {
	display: block;
	counter-increment: list1;
	content: counter(list1);
	position: absolute;
	left: 0;
	top: 0;
	font-weight: bold;
	color: #25BD07;
}

.article .content .center ol.large li::before {
	content: counter(list1) ".";
	font-size: 1.4em;
	font-weight: 500;
}

.article .content .center blockquote {
	margin: 1.2em 0;
	position: relative;
	padding-left: 85px;
	font: 300 italic 24px/1.3em 'Ubuntu', sans-serif;
}

.article .content .center blockquote::before {
	display: block;
	position: absolute;
	top: -2px;
	left: 0;
	content: '';
	width: 60px;
	height: 60px;
	background: url("../img/ico-quotes_60x60_01.svg") 0 0 no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.article .content .center blockquote.query::before {
	background-image: url("../img/ico-quotes_60x60_02.svg");
}

.article .content .center blockquote.wow::before {
	background-image: url("../img/ico-quotes_60x60_03.svg");
}

.article .content .center .wp-block-columns {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin: 1em 0;
}

.article .content .center .wp-block-columns .wp-block-column {
	font: inherit;
	color: #343536;
}

.article .content .center .wp-block-columns .wp-block-column .wp-block-image {
	margin-bottom: 1em;
}

.article .content .center .wp-block-columns .wp-block-column img {
	display: block;
}

.article .content .center .wp-block-columns .wp-block-column p:first-child {
	margin-top: 0;
}

.article .content .center table {
	width: 100%;
	font: normal 16px/1.2em 'Ubuntu', sans-serif;
	color: #515254;
}

.article .content .center table td,
.article .content .center table th {
	background: #F2F2F2;
    border: 2px solid #FFFFFF;
	padding: 15px 25px;
	text-align: left;
}

.article .content .center table thead td {
	background: #E0E0E0;
	font-weight: bold;
}

.article .content .center .scroll-wrapper.table-wrap {
	margin: 40px 0 15px 0;
}

.article .content .center .scroll-wrapper.table-wrap > .scroll-content {
	padding-bottom: 40px;
}

.article .content .center .scroll-wrapper.table-wrap .scroll-element.scroll-x {
	bottom: 15px;
}

.article .content .center .wp-block-image {
	margin-bottom: 2.5em;
}

.article .content .center .wp-block-image img {
	display: block;
	max-width: 100%;
	height: auto;
}

.article .content .center > .wp-block-image > img {
	-webkit-border-radius: 50px 0;
	-moz-border-radius: 50px 0;
	border-radius: 50px 0;
}

.article .content .center .wp-block-image .pic .btn-play-c128-01 {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.article .content .center .wp-block-image figcaption {
	margin-top: 1.5em;
	padding: 0 0 0 50px;
	text-align: left;
	font: normal 16px/1.2em 'Ubuntu', sans-serif;
	color: #515254;
	background: url("../img/logo-small-green.svg") left top no-repeat;
	-webkit-background-size: 28px 18px;
	-moz-background-size: 28px 18px;
	background-size: 28px 18px;
}


.article .content .center .advgb-video-block {
	cursor: pointer;
}

.article .content .center .advgb-video-block .advgb-video-wrapper {
	position: relative;
	margin: 0 auto;
	background-color: #EEEEEE;
	cursor: pointer;
	-webkit-border-radius: 50px 0;
	-moz-border-radius: 50px 0;
	border-radius: 50px 0;
	overflow: hidden;
}

.article .content .center .advgb-video-block .advgb-video-wrapper .advgb-video-poster {
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}

.article .content .center .advgb-video-block .advgb-video-wrapper .advgb-button-wrapper {
	position: relative;
	width: 100%;
	height: 0 !important;
	overflow: hidden;
	padding-bottom: 56%;
	background-color: transparent;
	z-index: 3;
}

.article .content .center .advgb-video-block .advgb-video-wrapper .advgb-button-wrapper .advgb-play-button {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.article .content .center .advgb-video-block .advgb-video-wrapper .advgb-button-wrapper .advgb-play-button svg {
    fill: currentColor;
}

.article .content .center .advgb-video-block + p {
	margin-top: 1.5em;
	margin-bottom: 3em;
	padding: 0 20px 0 50px;
	text-align: left;
	font: normal 16px/1.2em 'Ubuntu', sans-serif;
	color: #515254;
	background: url("../img/logo-small-green.svg") left top no-repeat;
	-webkit-background-size: 28px 18px;
	-moz-background-size: 28px 18px;
	background-size: 28px 18px;
}

.article .content .center .advgb-images-slider-block {
	position: relative;
	margin-bottom: 50px;
	width: 100%;
}

.article .content .center .advgb-images-slider-block .advgb-images-slider {
	display: block;
	width: 100%;
	margin: 0;
}

.article .content .center .advgb-images-slider-block .advgb-images-slider .slick-list {
	-webkit-border-radius: 50px 0;
	-moz-border-radius: 50px 0;
	border-radius: 50px 0;
	overflow: hidden;
}

.article .content .center .advgb-images-slider .advgb-image-slider-item {
	display: block !important;
	position: relative;
	margin: 0 !important;
	padding: 0;
	cursor: pointer;
	overflow: hidden;
}

.article .content .center .advgb-images-slider .advgb-image-slider-item img {
	display: block;
	width: 100%;
}

.article .content .center .advgb-images-slider .advgb-image-slider-item .advgb-image-slider-item-info {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
	right: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	text-align: center;
	font: normal 26px/1.2em 'DINPro-Condensed';
	color: #ffffff;
}

.article .content .center .advgb-images-slider .advgb-image-slider-overlay {
    opacity: 0;
    background-color: #333;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

body.desktop-device .article .content .center .advgb-images-slider .advgb-image-slider-overlay:hover {
	opacity: 0.3;
}

body.desktop-device .article .content .center .advgb-images-slider .advgb-image-slider-overlay:active,
body.mobile-device .article .content .center .advgb-images-slider .advgb-image-slider-overlay:active {
	opacity: 1;
}

.article .content .center .advgb-images-slider .advgb-image-slider-title {
	position: relative;
	width: 100%;
	text-align: left;
	padding: 10px 50px 18px 75px;
    text-align: left;
    font: normal 16px/1.2em 'Ubuntu', sans-serif;
	color: #ffffff;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 98%, rgba(0,0,0,0.5) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 98%,rgba(0,0,0,0.5) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 98%,rgba(0,0,0,0.5) 100%);
}

.article .content .center .advgb-images-slider .advgb-image-slider-title::before {
	display: block;
	position: absolute;
	top: 10px;
	left: 30px;
	content: '';
	width: 28px;
	height: 18px;
	background: url(../img/logo-small-white.svg) 0 0 no-repeat;
    -webkit-background-size: 28px 18px;
    -moz-background-size: 28px 18px;
    background-size: 28px 18px;
}

.article .content .center .advgb-images-slider .slick-dots {
	position: absolute;
	bottom: -40px;
	left: 0;
	right: 0;
	margin: 0;
	padding: 0;
}

.article .content .center .advgb-images-slider .slick-dots li {
	display: inline-block;
	width: auto;
	height: auto;
	padding: 0;
	margin: 0;
	cursor: pointer;
}

.article .content .center .advgb-images-slider .slick-dots li::after,
.article .content .center .advgb-images-slider .slick-dots li::before {
	display: none;
}

.article .content .center .advgb-images-slider .slick-dots li button {
	display: block;
	padding: 0;
	width: 28px;
	height: 28px;
	color: #B5B8BE;
	cursor: pointer;
}

.article .content .center .advgb-images-slider .slick-dots li button::before {
	display: block;
	opacity: 1 !important;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -3px;
    content: '';
    width: 6px;
    height: 6px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
	border-radius: 50%;
	color: unset;
    background-color: currentColor;
}

body.desktop-device .article .content .center .advgb-images-slider .slick-dots li:hover button {
	color: #ffffff;
}

body.desktop-device .article .content .center .advgb-images-slider .slick-dots li:active button,
body.mobile-device .article .content .center .advgb-images-slider .slick-dots li:active button {
	color: #B5B8BE;
}

.article .content .center .advgb-images-slider .slick-dots li.slick-active button {
	color: #25BD07 !important;
    background-color: transparent !important;
}

.article .content .center .advgb-images-slider .slick-dots li.slick-active button::before {
	width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
}

.article .content .center .advgb-images-slider .slick-arrow {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	padding: 0;
	z-index: 2;
	top: 0;
	height: 100%;
	color: transparent;
	font-size: 0;
	width: 50px;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: 14px 64px;
	background-size: 14px 64px;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	cursor: pointer;
	-webkit-transition: opacity 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
}

body.desktop-device .article .content .center .advgb-images-slider .slick-arrow:hover {
	opacity: 0.8;
}

body.desktop-device .article .content .center .advgb-images-slider .slick-arrow:active,
body.mobile-device .article .content .center .advgb-images-slider .slick-arrow:active {
	opacity: 1;
}

.article .content .center .advgb-images-slider .slick-arrow::before {
	display: block;
	content: '';
	width: 14px;
	height: 64px;
	-webkit-background-size: 14px 64px;
	-moz-background-size: 14px 64px;
	background-size: 14px 64px;
}

.article .content .center .advgb-images-slider .slick-prev {
	left: 0;
	background: -moz-linear-gradient(left,  rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to right,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 100%);
	-webkit-border-radius: 50px 0 0 0;
	-moz-border-radius: 50px 0 0 0;
	border-radius: 50px 0 0 0;
}

.article .content .center .advgb-images-slider .slick-prev::before {
	background-image: url("../img/ico-arrow-left_white_14x64.svg");
}

.article .content .center .advgb-images-slider .slick-next {
	right: 0;
	background: -moz-linear-gradient(left,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 98%, rgba(0,0,0,0.5) 100%);
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 98%,rgba(0,0,0,0.5) 100%);
	background: linear-gradient(to right,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 98%,rgba(0,0,0,0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=1 );
	-webkit-border-radius: 0 0 50px 0;
	-moz-border-radius: 0 0 50px 0;
	border-radius: 0 0 50px 0;
}

.article .content .center .advgb-images-slider .slick-next::before {
	background-image: url("../img/ico-arrow-right_white_14x64.svg");
}

@media (max-width: 991px) {
	.article .content .top .h1 {
		font-size: 50px;
	}
	.article .content .top .info {
		margin-left: 80px;
	}
	.article .content .articlebody .social {
		width: 80px;
	}
	.article .content .articlebody .social .btn-soc-s50 {
		width: 40px;
		height: 40px;
		-webkit-border-radius: 20px 0;
		-moz-border-radius: 20px 0;
		border-radius: 20px 0;
	}
	.article .content .top .info .date {
		font-size: 16px;
	}
	.article .content .center {
		width: -webkit-calc(100% - 80px);
		width: -moz-calc(100% - 80px);
		width: calc(100% - 80px);
		font-size: 18px;
	}
	.article .content .center .intro {
		font-size: 22px;
	}
	.article .content .center h2 {
		font-size: 22px;
	}
	.article .content .center blockquote {
		padding-left: 65px;
		font-size: 22px;
	}
	.article .content .center blockquote::before {
		width: 50px;
		height: 50px;
	}
	.article .content .center .wp-block-columns .wp-block-column img {
		margin-bottom: 20px;
	}
	.article .content .center table td,.article .content .center table th {
		padding: 15px 20px;
	}
	.article .content .center table thead th {
		font-size: 22px;
	}
	.article .content .center .advgb-images-slider-block .advgb-image-slider-item .title {
		padding-top: 12px;
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.article .content .articlebody {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		position: relative;
	}
	.article .content .articlebody .social {
		position: absolute;
		right: 0;
		width: auto;
		top: -56px;
	}
	.article .content .articlebody .social .buttons {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		position: static;
		top: auto;
	}
	.article .content .articlebody .social .buttons .btn-soc-s50 {
		margin: 0 0 0 10px;
		width: 36px;
		height: 36px;
		-webkit-border-radius: 17px 0;
		-moz-border-radius: 17px 0;
		border-radius: 17px 0;
	}
	.article .content .articlebody .social .buttons .btn-soc-s50 .ico {
		width: 20px;
		height: 20px;
	}
	.article .content .top .h1 {
		font-size: 30px;
	}
	.article .content .top .info {
		margin-left: 0;
	}
	.article .content .top .info .date {
		font-size: 16px;
	}
	.article .content .center {
		width: 100%;
		font-size: 16px;
	}
	.article .content .center .intro {
		font-size: 20px;
	}
	.article .content .center h2 {
		font-size: 20px;
	}
	.article .content .center ul li {
		padding-left: 25px;
	}
	.article .content .center ol.large li {
		padding-left: 35px;
	}
	.article .content .center blockquote {
		padding-left: 50px;
		font-size: 18px;
	}
	.article .content .center blockquote::before {
		width: 45px;
    	height: 35px;
	}
	.article .content .center blockquote.line::before {
		left: 35px;
	}
	.article .content .center .wp-block-columns .wp-block-column:nth-child(2n) {
		margin-left: 20px;
	}
	.article .content .center .wp-block-columns .wp-block-column img {
		margin-bottom: 15px;
		width: 100%;
		min-width: 100px;
		height: auto;
	}
	.article .content .center table td,.article .content .center table th {
		padding: 15px 20px;
	}
	.article .content .center table thead th {
		font-size: 20px;
	}
	.article .content .center .advgb-video-block .advgb-video-wrapper .advgb-button-wrapper .advgb-play-button svg {
		width: 100px;
		height: 100px;
	}
	.article .content .center .advgb-images-slider .advgb-image-slider-title {
		padding-left: 65px;
	}
	.article .content .center .advgb-images-slider .advgb-image-slider-title::before {
		left: 20px;
	}
}

@media (max-width: 599px) {
	.article .content .center .wp-block-columns .wp-block-column[style *= 'flex-basis:33.33%'] {
		-ms-flex-preferred-size: 33.33% !important;
		flex-basis: 33.33% !important;
	}
	.article .content .center .wp-block-columns .wp-block-column[style *= 'flex-basis:66.66%'] {
		-ms-flex-preferred-size: 66.66% !important;
		flex-basis: 66.66% !important;
	}
}

/* ************************************************************************** */

section {
	position: relative;
	z-index: 1;
	padding-top: 90px;
	padding-bottom: 95px;
}

section > .inner {
	max-width: 1200px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto;
	text-align: left;
}

@media (max-width: 1199px) {
	section {
		padding-top: 85px;
		padding-bottom: 90px;
	}
}

@media (max-width: 991px) {
	section {
		padding-top: 65px;
		padding-bottom: 70px;
	}
}

@media (max-width: 767px) {
	section {
		padding-top: 45px;
		padding-bottom: 50px;
	}
}

/******************************************************************************/

body > .wrapper {
	position: relative;
	height: 100%;
	min-height: 100%;
		
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
		
	flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
}

@media (max-width: 991px) {
	body.mobile-menu-open {
		overflow: hidden;
	}
}

/* ************************************************************************** */

.h2 {
	text-align: center;
	padding-bottom: 1.1em;
	font: bold 60px/1.2em 'Ubuntu', sans-serif;
	color: #25BD07;
	text-transform: uppercase;
}

.h2.white {
	color: #ffffff;
}

.h2 span {
	display: inline-block;
	padding-left: 120px;
	position: relative;
	text-align: left;
}

.h2 span::before {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -26px;
	width: 80px;
	height: 52px;
	background: url("../img/logo-small-green.svg") 0 0 no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.h2.white span::before {
	background-image: url("../img/logo-small-white.svg");
}

@media (max-width: 1199px) {
	.h2 {
		font-size: 50px;
	}
}

@media (max-width: 991px) {
	.h2 {
		padding-bottom: 1.25em;
		font-size: 40px;
	}
	.h2 span {
		padding-left: 115px;
	}
}

@media (max-width: 767px) {
	.h2 {
		font-size: 20px;
	}
	.h2 span {
		padding-left: 65px;
	}
	.h2 span::before {
		margin-top: -15px;
		width: 50px;
		height: 30px;
	}
}

/* ************************************************************************** */

body > .wrapper > .overlay {
	display: block;
	position: fixed;
	z-index: 11;
	left: 0;
	top: 0;
	bottom: 100%;
	right: 0;
	background-color: rgba(52, 53, 54, 0.6);
	opacity: 0;
	-webkit-transition: opacity 0.3s ease 0.3s, bottom 0s ease 0.6s;
	-moz-transition: opacity 0.3s ease 0.3s, bottom 0s ease 0.6s;
	-ms-transition: opacity 0.3s ease 0.3s, bottom 0s ease 0.6s;
	-o-transition: opacity 0.3s ease 0.3s, bottom 0s ease 0.6s;
	transition: opacity 0.3s ease 0.3s, bottom 0s ease 0.6s;
}

@media (max-width: 991px) {
	body.mobile-menu-open > .wrapper > .overlay {
		opacity: 1;
		bottom: 0;
		-webkit-transition: opacity 0.3s ease 0s;
		-moz-transition: opacity 0.3s ease 0s;
		-ms-transition: opacity 0.3s ease 0s;
		-o-transition: opacity 0.3s ease 0s;
		transition: opacity 0.3s ease 0s;
	}
}

/* ************************************************************************** */

.logo-mobile {
	display: none;
	width: 50px;
	height: 32px;
	position: absolute;
	z-index: 10;
	left: 20px;
	top: 14px;
	background: url("../img/logo-001.svg") 0 0 no-repeat;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	background-size: contain;
}

/* ************************************************************************** */

.mobile-menu {
	background: #ffffff;
	width: 300px;
	position: fixed;
	z-index: 12;
	top: 0;
	bottom: 0;
	right: 0;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-transition: all 0.2s ease 0s;
	-ms-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

.mobile-menu > .inner {
	display: block;
	position: absolute;
	top: 80px;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.mobile-menu .content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
}

.mobile-menu .menu {
	width: 100%;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding-bottom: 30px;
}

.mobile-menu .menu li {
	display: block;
	padding: 0 20px;
	margin-bottom: 15px;
}

.mobile-menu .menu li a {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 0;
	font: 500 16px/1em 'Ubuntu', sans-serif;
	color: #343536;
	text-transform: uppercase;
}

body.desktop-device .mobile-menu .menu li a:hover {
	color: #25BD07;
}

body.desktop-device .mobile-menu .menu li a:active,
body.mobile-device .mobile-menu .menu li a:active {
	color: #1A9D00;
}

.mobile-menu .bottom {
	width: 100%;
	height: 100px;
	text-align: center;
}

.mobile-menu .bottom .btn-h80-01 {
	width: 260px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0;
	height: 60px;
	font-size: 18px;
}

.mobile-menu .bottom .social {
	display: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 30px;
}

.mobile-menu .bottom .social ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.mobile-menu .bottom .social li {
	margin: 0 15px;
}

@media (max-width: 991px) {
	body.mobile-menu-open .mobile-menu {
		-webkit-transform: scaleX(1);
		-ms-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-transition: all 0.2s ease 0.3s;
		-ms-transition: all 0.2s ease 0.3s;
		transition: all 0.2s ease 0.3s;
	}
}

@media (max-width: 767px) {
	.body-scrolled .mobile-menu > .inner {
		top: 80px;
	}
	.mobile-menu .bottom {
		height: 160px;
	}
	.mobile-menu .bottom .social {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
	}
}

/* ************************************************************************** */

header {
	display: block;
	position: fixed;
	z-index: 3;
	top: 0;
	left: 0;
	right: 0;
	background: #ffffff;
	-webkit-transition: -webkit-box-shadow 0.3s ease 0s;
	-ms-transition: box-shadow 0.3s ease 0s;
	transition: box-shadow 0.3s ease 0s;
}

.body-scrolled header {
	-webkit-box-shadow: 0px 25px 55px rgba(0, 0, 0, 0.04), 0px 16px 28px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 25px 55px rgba(0, 0, 0, 0.04), 0px 16px 28px rgba(0, 0, 0, 0.06);
}

header > .inner {
	max-width: 1200px;
	height: 90px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto;
	-webkit-transition: height 0.3s ease 0s;
	-ms-transition: height 0.3s ease 0s;
	transition: height 0.3s ease 0s;
}

.body-scrolled header > .inner {
	height: 42px;
}

header .navbar {
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

header .navbar .logo {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
}

.body-promo-page header .navbar .logo {
	position: absolute;
	top: -1000px;
}

.body-scrolled.body-promo-page header .navbar .logo {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

header .navbar .logo a {
	display: block;
	width: 96px;
	height: 69px;
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

.body-scrolled .navbar .logo a {
	width: 50px;
	height: 32px;
}

header .navbar .logo a .img {
	display: block;
	width: 100%;
	height: 100%;
}

header .navbar .logo a .img path {
	-webkit-transition: fill 0.3s ease 0s;
	-ms-transition: fill 0.3s ease 0s;
	transition: fill 0.3s ease 0s;
}

body.desktop-device header .navbar .logo a:hover {
	opacity: 0.8;
}

body.desktop-device header .navbar .logo a:hover .btndark_ {
	fill: #25BD07;
}


header .navbar .links {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

header .navbar .links ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

header .navbar .links li {
	margin: 0 25px;
}

header .navbar .links li a {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 38px;
	font: 500 14px/1em 'Ubuntu', sans-serif;
	color: #343536;
	text-transform: uppercase;
	white-space: nowrap;
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

.body-other-page header .navbar .links li.current-menu-item a {
	color: #25BD07;
}

body.desktop-device header .navbar .links li a:hover {
	color: #25BD07;
}

body.desktop-device header .navbar .links li a:active,
body.mobile-device header .navbar .links li a:active {
	color: #1A9D00;
}

header .navbar .social {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

header .navbar .social ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

header .navbar .social li:not(:last-child) {
	margin-right: 30px;
}

@media (max-width: 991px) {
	header .navbar {
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	header .navbar .links {
		display: none;
	}
	header .navbar .logo {
		margin-right: 40px;
	}
}

@media (max-width: 767px) {
	header > .inner {
		height: 64px;
	}
	header .navbar .logo a {
		width: 50px;
		height: 32px;
	}
}

@media (max-width: 399px) {
	header .navbar .logo {
		margin-right: 25px;
	}
	header .navbar .social li:not(:last-child) {
		margin-right: 20px;
	}
}

/* ************************************************************************** */

main {
	display: block;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	margin-top: 90px;
}

@media (max-width: 767px) {
	main {
		margin-top: 42px;
	}
	.body-other-page main {
		margin-top: 64px;
	}
}


/* ************************************************************************** */

footer {
	display: block;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-flex-basis: auto;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	background: url("../img/bgr-gray-wave-02.png") 0 0 no-repeat;
	-webkit-background-size: 100% 350px;
	background-size: 100% 350px;
}

.body-other-page footer {
	background: #f0f2f3;
}

footer > .inner {
	height: 215px;
	max-width: 1200px;
	padding: 0 20px;
	padding-bottom: 38px;
	margin: 0 auto;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

footer > .inner > .row {
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

footer .logo {}

footer .logo a {
	display: block;
	width: 96px;
	height: 69px;
	-webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

footer .logo a .img {
	display: block;
	width: 100%;
	height: 100%;
}

footer .logo a .img path {
	-webkit-transition: fill 0.3s ease 0s;
	-ms-transition: fill 0.3s ease 0s;
	transition: fill 0.3s ease 0s;
}

body.desktop-device footer .logo a:hover {
	opacity: 0.8;
}

body.desktop-device footer .logo a:hover .btndark_ {
	fill: #25BD07;
}

footer .links {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

footer .links:before,
footer .links:after {
	content: '';
	display: block;
}

footer .links .social {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

footer .links .social ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

footer .links .social li:not(:last-child) {
	margin-right: 30px;
}

footer .materials {}

@media (max-width: 991px) {
	footer {
		-webkit-background-size: 100% 260px;
		background-size: 100% 260px;
	}
	footer > .inner {
		height: 195px;
		padding-bottom: 30px;
	}
	footer .links {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	footer .links::before,
	footer .links::after {
		display: none;
	}
}

@media (max-width: 767px) {
	footer {
		-webkit-background-size: 100% 130px;
		background-size: 100% 130px;
	}
	footer > .inner {
		height: 270px;
		padding-bottom: 45px;
	}
	footer > .inner > .row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	footer .logo {
		display: none;
	}
	footer .links {
		margin-bottom: 20px;
	}
	footer .links .social {
		margin-bottom: 10px;
	}
}

/* ************************************************************************** */

.section-promo {
	padding: 0;
	position: relative;
	overflow-x: hidden;
	background: url("../img/img-promo-sky.png") center 0 repeat-x;
}

.section-promo:last-child {
	margin-bottom: -70px;
}

.section-promo > .inner {
	max-width: none;
	padding: 0;
	height: 600px;
	position: relative;
}

.section-promo > .inner > .content {
	height: 100%;
	max-width: 1200px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.section-promo .logo {
	display: block;
	position: absolute;
	top: 55px;
	width: 261px;
	height: 203px;
	left: 20px;
}

.section-promo .logo a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.section-promo .logo a .img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
}

.section-promo .logo a .img path {
	-webkit-transition: fill 0.3s ease 0s;
	-ms-transition: fill 0.3s ease 0s;
	transition: fill 0.3s ease 0s;
}

body.desktop-device .section-promo .logo a:hover {
	opacity: 0.8;
}

body.desktop-device .section-promo .logo a:hover .btndark {
	fill: #25BD07;
}

.section-promo .title {
	width: 500px;
	margin: 0 auto;
	padding-top: 55px;
	text-align: center;
}

.section-promo .title .h1 {
	margin-bottom: 35px;
	font: bold 36px/1.1em 'Ubuntu', sans-serif;
	color: #343536;
	text-transform: uppercase;
}

.section-promo .title .h1 span {
	display: block;
}

.section-promo .dekor {
	display: block;
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.section-promo .dekor .grass {
	display: block;
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 220px;
	background: url("../img/img-promo-grass.png") 0 0 no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.section-promo:last-child .dekor .grass {
	height: 180px;
	background-image: url("../img/img-promo-grass-v2.png");
	-webkit-background-size: -webkit-calc(100% + 600px) 100%;
	-moz-background-size: -moz-calc(100% + 600px) 100%;
	background-size: calc(100% + 600px) 100%;
}

.section-promo .dekor .buildings {
	display: block;
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 80px;
	width: 100%;
	height: 200px;
	background: url("../img/img-promo-buildings.svg") center 0 repeat-x;
	-webkit-background-size: 700px 200px;
	background-size: 700px 200px;
}

.section-promo .dekor .cloud-1 {
	display: block;
	position: absolute;
	z-index: 2;
	left: -webkit-calc(50% - 680px);
	left: -moz-calc(50% - 680px);
	left: calc(50% - 680px);
	bottom: 340px;
	width: 85px;
	height: 35px;
	background: url("../img/img-promo-cloud-001.svg") 0 0 repeat-x;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.section-promo .dekor .cloud-2 {
	display: block;
	position: absolute;
	z-index: 2;
	left: -webkit-calc(50% - 270px);
	left: -moz-calc(50% - 270px);
	left: calc(50% - 270px);
	bottom: 310px;
	width: 130px;
	height: 45px;
	background: url("../img/img-promo-cloud-002.svg") 0 0 repeat-x;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.section-promo .dekor .cloud-3 {
	display: block;
	position: absolute;
	z-index: 2;
	left: -webkit-calc(50% + 60px);
	left: -moz-calc(50% + 60px);
	left: calc(50% + 60px);
	bottom: 325px;
	width: 125px;
	height: 45px;
	background: url("../img/img-promo-cloud-003.svg") 0 0 repeat-x;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.section-promo .dekor .tree-1 {
	display: block;
	position: absolute;
	z-index: 3;
	left: -webkit-calc(50% + 35px);
	left: -moz-calc(50% + 35px);
	left: calc(50% + 35px);
	bottom: 150px;
	width: 40px;
	height: 65px;
	background: url("../img/img-promo-tree-01.svg") 0 0 repeat-x;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.section-promo:last-child .dekor .tree-1 {
	bottom: 160px;
}

.section-promo .dekor .tree-2 {
	display: block;
	position: absolute;
	z-index: 3;
	left: -webkit-calc(50% + 90px);
	left: -moz-calc(50% + 90px);
	left: calc(50% + 90px);
	bottom: 145px;
	width: 30px;
	height: 42px;
	background: url("../img/img-promo-tree-02.svg") 0 0 repeat-x;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.section-promo:last-child .dekor .tree-2 {
	bottom: 150px;
}

.section-promo .dekor .tree-3 {
	display: block;
	position: absolute;
	z-index: 6;
	left: -webkit-calc(50% + 440px);
	left: -moz-calc(50% + 440px);
	left: calc(50% + 440px);
	bottom: 145px;
	width: 155px;
	height: 355px;
	background: url("../img/img-promo-tree-03.svg") 0 0 repeat-x;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.section-promo:last-child .dekor .tree-3 {
	bottom: 85px;
}

.section-promo .dekor .tree-4 {
	display: block;
	position: absolute;
	z-index: 3;
	left: -webkit-calc(50% + 555px);
	left: -moz-calc(50% + 555px);
	left: calc(50% + 555px);
	bottom: 180px;
	width: 85px;
	height: 120px;
	background: url("../img/img-promo-tree-04.svg") 0 0 repeat-x;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.section-promo:last-child .dekor .tree-4 {
	bottom: 115px;
}

.section-promo .dekor .tree-5 {
	display: block;
	position: absolute;
	z-index: 8;
	left: -webkit-calc(50% + 75px);
	left: -moz-calc(50% + 75px);
	left: calc(50% + 75px);
	bottom: 40px;
	width: 130px;
	height: 90px;
	background: url("../img/img-promo-tree-05.svg") 0 0 repeat-x;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.section-promo .dekor .peoples {
	display: block;
	position: absolute;
	z-index: 7;
	left: -webkit-calc(50% + 170px);
	left: -moz-calc(50% + 170px);
	left: calc(50% + 170px);
	bottom: 55px;
	width: 335px;
	height: 325px;
	background: url("../img/img-promo-peoples.svg") 0 0 repeat-x;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

@media (max-width: 1359px) {
	.section-promo .dekor .tree-4 {
		bottom: 205px;
	}
}

@media (max-width: 1199px) {
	.section-promo > .inner {
		height: 600px;
	}
	.section-promo .logo {
		width: 205px;
		height: 160px;
		top: 75px;
	}
	.section-promo .dekor .cloud-1 {
		left: -webkit-calc(50% - 260px);
		left: -moz-calc(50% - 260px);
		left: calc(50% - 260px);
		bottom: 330px;
	}
	.section-promo .dekor .cloud-2 {
		left: -webkit-calc(50% + 10px);
		left: -moz-calc(50% + 10px);
		left: calc(50% + 10px);
	}
	.section-promo .dekor .cloud-3 {
		left: -webkit-calc(50% + 250px);
		left: -moz-calc(50% + 250px);
		left: calc(50% + 250px);
	}
	.section-promo .dekor .grass {
		height: 190px;
	}
	.section-promo .dekor .tree-1 {
		left: -webkit-calc(50% - 50px);
		left: -moz-calc(50% - 50px);
		left: calc(50% - 50px);
		bottom: 140px;
	}
	.section-promo:last-child .dekor .tree-1 {
		bottom: 165px;
	}
	.section-promo .dekor .tree-2 {
		left: -webkit-calc(50% + 10px);
		left: -moz-calc(50% + 10px);
		left: calc(50% + 10px);
		bottom: 135px;
	}
	.section-promo:last-child .dekor .tree-2 {
		bottom: 160px;
	}
	.section-promo .dekor .tree-3 {
		left: -webkit-calc(50% + 380px);
		left: -moz-calc(50% + 380px);
		left: calc(50% + 380px);
		bottom: 125px;
	}
	.section-promo .dekor .tree-4 {
		left: -webkit-calc(50% + 520px);
		left: -moz-calc(50% + 520px);
		left: calc(50% + 520px);
		bottom: 185px;
	}
	.section-promo .dekor .tree-5 {
		width: 120px;
		height: 85px;
		left: -webkit-calc(50% - 10px);
		left: -moz-calc(50% - 10px);
		left: calc(50% - 10px);
		bottom: 40px;
	}
	.section-promo .dekor .peoples {
		left: -webkit-calc(50% + 75px);
		left: -moz-calc(50% + 75px);
		left: calc(50% + 75px);
	}
}

@media (max-width: 991px) {
	.section-promo {
		background-position: center -40px;
	}
	.section-promo > .inner {
		height: 530px;
	}
	.section-promo .logo {
		top: 20px;
		width: 205px;
		height: 145px;
	}
	.section-promo .title {
		padding-top: 0;
		position: relative;
		left: 65px;
	}
	.section-promo .dekor .buildings {
		bottom: 65px;
	}
	.section-promo .dekor .cloud-1 {
		left: -webkit-calc(50% - 350px);
		left: -moz-calc(50% - 350px);
		left: calc(50% - 350px);
		bottom: 320px;
	}
	.section-promo .dekor .cloud-2 {
		left: -webkit-calc(50% - 140px);
		left: -moz-calc(50% - 140px);
		left: calc(50% - 140px);
		bottom: 280px;
	}
	.section-promo .dekor .cloud-3 {
		left: -webkit-calc(50% + 130px);
		left: -moz-calc(50% + 130px);
		left: calc(50% + 130px);
		bottom: 290px;
	}
	.section-promo .dekor .tree-1 {
		left: -webkit-calc(50% - 305px);
		left: -moz-calc(50% - 305px);
		left: calc(50% - 305px);
		bottom: 120px;
	}
	.section-promo:last-child .dekor .tree-1 {
		bottom: 110px;
	}
	.section-promo .dekor .tree-2 {
		left: -webkit-calc(50% - 250px);
		left: -moz-calc(50% - 250px);
		left: calc(50% - 250px);
		bottom: 115px;
	}
	.section-promo:last-child .dekor .tree-2 {
		bottom: 115px;
	}
	.section-promo .dekor .tree-4 {
		left: -webkit-calc(50% + 385px);
		left: -moz-calc(50% + 385px);
		left: calc(50% + 385px);
		bottom: 135px;
	}
	.section-promo:last-child .dekor .tree-4 {
		bottom: 100px;
	}
	.section-promo .dekor .grass {
		height: 170px;
	}
	.section-promo:last-child .dekor .grass {
		height: 150px;
		-webkit-background-size: -webkit-calc(100% + 500px) 100%;
		-moz-background-size: -moz-calc(100% + 500px) 100%;
		background-size: calc(100% + 500px) 100%;
	}
	.section-promo .dekor .peoples {
		width: 270px;
		height: 265px;
		left: -webkit-calc(50% + 5px);
		left: -moz-calc(50% + 5px);
		left: calc(50% + 5px);
	}
	.section-promo .dekor .tree-3 {
		width: 110px;
		height: 255px;
		bottom: 120px;
		left: -webkit-calc(50% + 285px);
		left: -moz-calc(50% + 285px);
		left: calc(50% + 285px);
	}
	.section-promo .dekor .tree-5 {
		width: 105px;
		height: 75px;
		left: -webkit-calc(50% - 70px);
		left: -moz-calc(50% - 70px);
		left: calc(50% - 70px);
	}
}

@media (max-width: 767px) {
	.section-promo {
		background-position: 0 130px;
		-webkit-background-size: 100% 310px;
		background-size: 100% 310px;
	}
	.section-promo:last-child {
		margin-bottom: -80px;
	}
	.section-promo > .inner {
		height: 555px;
	}
	.section-promo > .inner > .content {
		padding-top: 25px;
	}
	.section-promo .logo {
		position: static;
		width: 115px;
		height: 90px;
		margin: 0 auto 20px auto;
	}
	.section-promo .title {
		width: auto;
		left: auto;
		position: static;
	}
	.section-promo .title .h1 {
		margin-bottom: 25px;
		font-size: 20px;
	}
	.section-promo .dekor .grass {
		height: 150px;
		background-image: url("../img/img-promo-grass-sm.png");
	}
	.section-promo:last-child .dekor .grass {
		height: 130px;
		bottom: 20px;
		background-image: url("../img/img-promo-grass-sm.png");
		-webkit-background-size: 100% 100%;
		-moz-background-size: 100% 100%;
		background-size: 100% 100%;
	}
	.section-promo .dekor .buildings {
		height: 100px;
		bottom: 125px;
		-webkit-background-size: 350px 100px;
		background-size: 350px 100px;
	}
	.section-promo .dekor .peoples {
		width: 224px;
		height: 219px;
		bottom: 35px;
		left: -webkit-calc(50% - 70px);
		left: -moz-calc(50% - 70px);
		left: calc(50% - 70px);
	}
	.section-promo .dekor .tree-1 {
		width: 33px;
		height: 52px;
		bottom: 130px;
		left: -webkit-calc(50% - 155px);
		left: -moz-calc(50% - 155px);
		left: calc(50% - 155px);
	}
	.section-promo:last-child .dekor .tree-1 {
		bottom: 130px;
	}
	.section-promo .dekor .tree-2 {
		width: 25px;
		height: 34px;
		left: -webkit-calc(50% - 120px);
		left: -moz-calc(50% - 120px);
		left: calc(50% - 120px);
		bottom: 130px;
	}
	.section-promo:last-child .dekor .tree-2 {
		bottom: 130px;
	}
	.section-promo .dekor .tree-3 {
		width: 75px;
		height: 176px;
		bottom: 120px;
		left: -webkit-calc(50% + 100px);
		left: -moz-calc(50% + 100px);
		left: calc(50% + 100px);
	}
	.section-promo:last-child .dekor .tree-3 {
		bottom: 120px;
	}
	.section-promo .dekor .tree-4 {
		width: 57px;
		height: 80px;
		left: -webkit-calc(50% + 155px);
		left: -moz-calc(50% + 155px);
		left: calc(50% + 155px);
		bottom: 135px;
	}
	.section-promo:last-child .dekor .tree-4 {
		bottom: 130px;
	}
	.section-promo .dekor .tree-5 {
		width: 85px;
		height: 60px;
		bottom: 30px;
		left: -webkit-calc(50% - 135px);
		left: -moz-calc(50% - 135px);
		left: calc(50% - 135px);
	}
	.section-promo .dekor .cloud-2 {
		bottom: 265px;
	}
}

/* ************************************************************************** */

.section-activities {
	padding: 0;
	padding-bottom: 50px;
}

.section-activities > .inner > .picture {
	padding: 20px 0 50px 0;
}

.section-activities > .inner > .picture .pic-lg {
	display: block;
	position: relative;
	margin: 0 auto;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-bottom: 52.4%;
}

.section-activities > .inner > .picture .pic-lg svg {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.section-activities > .inner > .picture .pic-sm {
	display: none;
	margin: 0 auto;
	max-width: 100%;
}

.section-activities .activities {
	margin-left: -20px;
	margin-right: -20px;
}

.section-activities .items-wrap {
	display: block;
}

.section-activities .item {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	margin-bottom: 40px;
}

.section-activities .item .pic {
	width: 50%;
	padding: 10px 20px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.section-activities .item:nth-child(even) .pic {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}

.section-activities .item .pic img {
	display: block;
	width: 100%;
}

.section-activities .item .descript {
	width: 50%;
	padding: 10px 20px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.section-activities .item .descript h3 {
	display: block;
	padding-right: 20px;
	margin-bottom: 0.65em;
	font: bold 30px/1.1em 'Ubuntu', sans-serif;
	color: #343536;
	text-transform: uppercase;
}

.section-activities .item .descript h3 b,
.section-activities .item .descript h3 strong {
	color: #25BD07;
}

.section-activities .item .descript .text {
	padding-right: 20px;
	font: normal 20px/1.4em 'Ubuntu', sans-serif;
	color: #343536;
}

.section-activities .item .descript .text b {
	padding: 0 10px 2px 10px;
	font-weight: 500;
	background-color: rgba(37, 189, 7, 0.15);
}

.section-activities .item .descript .bottom {
	text-align: right;
	padding-top: 30px;
}


.section-activities .item .details {
	display: none;
}

.activity-article {
	height: 100%;
	font-size: 20px;
}

.activity-article > .center {
	padding: 20px 25px 0 25px;
}

.activity-article > .bottom {
	padding: 40px 25px 0 25px;
	text-align: center;
}

.activity-article > .bottom .btn-h80-01 {
	padding: 0 30px;
	height: 50px;
	font-size: 18px;
	-webkit-border-radius: 60px 0px;
	-moz-border-radius: 60px 0px;
	border-radius: 60px 0px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.activity-article figure {
	display: block;
	margin-bottom: 2em;
}

.activity-article figure img {
	display: block;
	width: 60%;
	max-width: 560px;
	min-width: 280px;
	margin: 0 auto;
}

.activity-article ul {
	margin: 1em 0;
}

.activity-article ul li {
	display: block;
	position: relative;
	padding-left: 30px;
}

.activity-article ul li::before {
	display: block;
	position: absolute;
	top: 9px;
	left: 0;
	content: '';
	width: 5px;
	height: 5px;
	background-color: #25BD07;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.activity-article p {
	margin: 1em 0;
}

.activity-article p b {
    padding: 0 10px 2px 10px;
    font-weight: 500;
    background-color: rgba(37, 189, 7, 0.15);
}

.activity-article a:not([class *= "btn-"]) {
	color: #25BD07;
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

body.desktop-device .activity-article a:not([class *= "btn-"]):hover {
	color: #64D74D;
}

body.desktop-device .activity-article a:not([class *= "btn-"]):active,
body.mobile-device .activity-article a:not([class *= "btn-"]):active {
	color: #2A894F;
}

.activity-article h3 {
	display: block;
	padding-right: 20px;
	margin-bottom: 0.65em;
	font: bold 30px/1.1em 'Ubuntu', sans-serif;
	color: #25BD07;
	text-transform: uppercase;
}


@media (max-width: 991px) {
	.section-activities {
		padding-bottom: 30px;
	}
	.section-activities .activities {
		margin-left: -10px;
		margin-right: -10px;
	}
	.section-activities .item .descript h3 {
		font-size: 22px;
	}
	.section-activities .item .descript .text {
		font-size: 16px;
	}
	.section-activities .item .pic {
		padding: 10px 10px;
	}
	.section-activities .item .descript {
		padding: 10px 10px;
	}
	.section-activities .item .descript h3,
	.section-activities .item .descript .text {
		padding: 0;
	}
	.section-activities .item .descript .bottom {
		padding-top: 20px;
	}
	.activity-article {
		font-size: 16px;
	}
	.activity-article h3 {
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.section-activities {
		padding-bottom: 20px;
	}
	.section-activities > .inner > .picture {
		padding: 15px 0 20px 0;
	}
	.section-activities > .inner > .picture .pic-lg {
		display: none;
	}
	.section-activities > .inner > .picture .pic-sm {
		display: block;
	}
	.section-activities .activities {
		position: relative;
		margin: 0 -20px;
		padding: 0;
	}
	.section-activities .item {
		display: block;
		margin-bottom: 0;
		padding: 10px 25px 0 25px;
	}
	.section-activities .item .pic {
		display: block;
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}
	.section-activities .item .pic img {
		max-width: 280px;
		margin: 0 auto;
	}
	.section-activities .item .descript {
		display: block;
		width: 100%;
		padding: 0;
	}
	.section-activities .item .descript h3 {
		font-size: 16px;
		text-align: center;
	}
	.section-activities .item .descript .text {
		font-size: 14px;
		text-align: center;
	}
	.section-activities .item .descript .bottom {
		padding-top: 15px;
		text-align: center;
	}
	.activity-article {
		font-size: 14px;
	}
	.activity-article > .center {
		padding: 0px 15px 0 0px;
	}
	.activity-article h3 {
		font-size: 16px;
	}
	.activity-article > .bottom {
		padding: 20px 25px 0 25px;
	}
}

/* ************************************************************************** */

.section-founders {
	padding: 170px 0 20px 0;
	background: #ffffff url("../img/bgr-gray-wave-02.png") center 0 no-repeat;
	-webkit-background-size: 100% 350px;
	background-size: 100% 350px;
}

.section-founders .founders {
	margin-left: -20px;
	margin-right: -20px;
}

.section-founders .items-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.section-founders .item {
	margin: 0 20px 40px 20px;
	width: -webkit-calc(33.3% - 40px);
	width: -moz-calc(33.3% - 40px);
	width: calc(33.3% - 40px);
}

.section-founders .item .pic {
	padding: 0 25px;
	margin-bottom: 25px;
}

.section-founders .item .pic img {
	display: block;
	width: 100%;
	max-width: 270px;
	margin: 0 auto;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.section-founders .item .name {
	padding: 0 25px;
	margin-bottom: 20px;
	font: 500 22px/1.2em 'Ubuntu', sans-serif;
	color: #343536;
	text-align: center;
}

.section-founders .item .name span {
	display: block;
}

.section-founders .item .social {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.section-founders .item .social .btn-soc {
	width: 32px;
	height: 32px;
	margin: 0 10px 20px 10px;
}

.section-founders .item .social .btn-soc .ico {
	width: 20px;
	height: 20px;
}

.section-founders .item .text {
	text-align: center;
	padding: 0 25px;
	font: normal 16px/1.5em 'Ubuntu', sans-serif;
	color: #515254;
}

@media (max-width: 1199px) {
	.section-founders {
		padding: 150px 0 0 0;
	}
	.section-founders .item .pic {
		padding: 0;
	}
	.section-founders .item .name {
		padding: 0;
	}
	.section-founders .item .text {
		padding: 0;
	}
}

@media (max-width: 991px) {
	.section-founders {
		padding: 120px 0 0 0;
		-webkit-background-size: 100% 260px;
		background-size: 100% 260px;
	}
	.section-founders .item .pic img {
		max-width: 270px;
	}
	.section-founders .item .text {
		padding: 0 20px;
	}
}

@media (max-width: 767px) {
	.section-founders {
		padding: 70px 0 15px 0;
		-webkit-background-size: 100% 130px;
		background-size: 100% 130px;
	}
	.section-founders .founders {
		position: relative;
	}
	.section-founders .items-wrap {
		display: block;
	}
	.section-founders .item {
		width: 100%;
		margin: 0;
		padding: 0 25px;
	}
	.section-founders .item .pic {
		margin-bottom: 20px;
	}
	.section-founders .item .pic img {
		max-width: 230px;
		margin: 0 auto;
	}
	.section-founders .item .name {
		margin-bottom: 10px;
		font-size: 20px;
	}
	.section-founders .item .name span {
		display: inline;
	}
	.section-founders .item .text {
		font-size: 14px;
	}
	.section-founders .item .social .btn-soc {
		margin-bottom: 15px;
	}
}

@media (max-width: 399px) {
	.section-founders .item .pic img {
		width: 160px;
	}
	.section-founders .slick-arrow {
		height: 160px;
	}
}

/* ************************************************************************** */

.section-memorandum {
	position: relative;
	padding: 70px 0 40px 0;
	margin: 90px 0;
	background-color: #25BD07;
}

.section-memorandum > .inner {
	position: relative;
	z-index: 2;
}

.section-memorandum::before,
.section-memorandum::after {
	display: block;
	position: absolute;
	z-index: 1;
	content: '';
	left: 0;
	width: 100%;
	height: 90px;
	background-position: 0 0;
	background-repeat: no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.section-memorandum::before {
	bottom: 100%;
	margin-bottom: -1px;
	background-image: url("../img/bgr-green-wave-01.png");
}

.section-memorandum::after {
	top: 100%;
	margin-top: -1px;
	background-image: url("../img/bgr-green-wave-02.png");
}

.section-memorandum .columns {
	margin-top: -20px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.section-memorandum .col-1 {
	width: 50%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.section-memorandum .col-1 .list {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	padding: 0 0 144px 56px;
	width: 470px;
	height: 614px;
	background: url("../img/bgr-list-01.png") 0 0 no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.section-memorandum .col-2 {
	width: 50%;
	padding-top: 16px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.section-memorandum .col-2 .counter,
.section-memorandum .col-2 .buttons {
	width: 500px;
}

.section-memorandum .col-2 .counter {
	margin-bottom: 60px;
}

.section-memorandum .col-2 .counter .inner {
	width: 365px;
	margin: 0 auto;
	text-align: center;
}

.section-memorandum .col-2 .counter p {
	font: 500 22px/1.1em 'Ubuntu', sans-serif;
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
}

.section-memorandum .col-2 .counter .digits {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 33px;
}

.section-memorandum .col-2 .counter .digits span {
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 78px;
	height: 102px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	position: relative;
	background: url("../img/bgr-digit.svg") 0 0 no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	font: bold 72px/1em 'Ubuntu', sans-serif;
	color: #515254;
	-webkit-box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.06), 0px 3px 24px rgba(0, 0, 0, 0.04);
	box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.06), 0px 3px 24px rgba(0, 0, 0, 0.04);
}

.section-memorandum .col-2 .counter .digits span:not(:last-child) {
	margin-right: 16px;
}

.section-memorandum .col-2 .counter .digits span::after {
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	left: 8px;
	right: 8px;
	content: '';
	height: 2px;
	background-color: #1A9D00;
}

.section-memorandum .col-2 .buttons {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.section-memorandum .col-2 .buttons .btn-h155-01 {
	width: 172px;
	margin: 0 10px;
}

@media (max-width: 1199px) {
	.section-memorandum {
		padding: 50px 0 10px 0;
		margin: 80px 0;
	}
	.section-memorandum::before,
	.section-memorandum::after {
		height: 80px;
	}
	.section-memorandum .col-1 .list {
		width: 464px;
		height: 606px;
		padding: 0 0 143px 55px;
	}
	.section-memorandum .col-2 .counter,
	.section-memorandum .col-2 .buttons {
		width: 100%;
	}
}

@media (max-width: 991px) {
	.section-memorandum {
		padding: 50px 0 30px 0;
		margin: 60px 0;
	}
	.section-memorandum::before,
	.section-memorandum::after {
		height: 60px;
	}
	.section-memorandum .columns {
		margin-top: -10px;
	}
	.section-memorandum .col-1 .list {
		width: 354px;
		height: 463px;
		padding: 0 0 94px 42px;
	}
	.section-memorandum .col-2 {
		padding-top: 12px;
	}
	.section-memorandum .col-2 .counter {
		margin-bottom: 35px;
	}
	.section-memorandum .col-2 .counter .inner {
		width: 354px;
	}
	.section-memorandum .col-2 .counter p {
		font-size: 20px;
	}
	.section-memorandum .col-2 .counter .digits {
		margin-bottom: 25px;
	}
	.section-memorandum .col-2 .counter .digits span:not(:last-child) {
		margin-right: 12px;
	}
}

@media (max-width: 767px) {
	.section-memorandum {
		padding: 30px 0 30px 0;
		margin: 40px 0;
	}
	.section-memorandum::before,
	.section-memorandum::after {
		height: 40px;
	}
	.section-memorandum > .inner {
		padding: 0;
	}
	.section-memorandum .columns {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.section-memorandum .col-1 {
		width: 100%;
	}
	.section-memorandum .col-1 .list {
		width: 286px;
		height: 374px;
		padding: 0 0 70px 29px;
		margin: 0 auto 10px auto;
	}
	.section-memorandum .col-2 {
		width: 280px;
		padding: 0;
		margin: 0 auto;
	}
	.section-memorandum .col-2 .counter .inner {
		width: 100%;
	}
	.section-memorandum .col-2 .counter p {
		font-size: 16px;
	}
	.section-memorandum .col-2 .counter .digits {
		width: 225px;
		margin: 0 auto 22px auto;
	}
	.section-memorandum .col-2 .counter .digits span {
		width: 49px;
		height: 64px;
		font-size: 45px;
	}
	.section-memorandum .col-2 .counter .digits span:not(:last-child) {
		margin-right: 9px;
	}
	.section-memorandum .col-2 .buttons {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.section-memorandum .col-2 .buttons .btn-h155-01 {
		width: 130px;
		margin: 0;
	}
}

/* ************************************************************************** */

.section-news {
	padding: 70px 0 40px 0;
}

.section-news .news {
	margin-left: -20px;
	margin-right: -20px;
}

.section-news .news .items-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.section-news .news .item {
	position: relative;
	z-index: 1;
	margin: 0 20px 40px 20px;
	width: -webkit-calc(25% - 40px);
	width: -moz-calc(25% - 40px);
	width: calc(25% - 40px);
	-webkit-border-radius: 60px 0px;
	-moz-border-radius: 60px 0px;
	border-radius: 60px 0px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 0 25px #ffffff;
	box-shadow: 0 0 0 25px #ffffff;
	-webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.section-news .news .item .pic {
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 0;
	padding-bottom: 100%;
	-webkit-border-radius: 60px 0px;
	-moz-border-radius: 60px 0px;
	border-radius: 60px 0px;
	margin-bottom: 20px;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.section-news .news .item .pic .label {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 45px;
	height: 45px;
	-webkit-border-radius: 0px 30px 0px 0px;
	-moz-border-radius: 0px 30px 0px 0px;
	border-radius: 0px 30px 0px 0px;
	background-position: 9px 13px;
	background-repeat: no-repeat;
	-webkit-background-size: 24px 24px;
	background-size: 24px 24px;
}

.section-news .news .item .pic .label.fb {
	background-color: #4267B2;
	background-image: url("../img/ico-soc-fb_white_24x24.svg")
}

.section-news .news .item .pic .label.yt {
	background-color: #EE3124;
	background-image: url("../img/ico-soc-yt_white_24x24.svg")
}

.section-news .news .item .pic .label.tg {
	background-color: #27a3e2;
	background-image: url("../img/ico-soc-tg_white_24x24.svg")
}

.section-news .news .item .pic .label.ig {
	background-color: #c90067;
	background-image: url("../img/ico-soc-ig_white_24x24.svg")
}

.section-news .news .item .pic .label.ln {
	background-color: #0081bf;
	background-image: url("../img/ico-soc-ln_white_24x24.svg")
}

.section-news .news .item .date {
	margin-bottom: 12px;
	font: normal 11px/1em 'Ubuntu', sans-serif;
	color: #828282;
}

.section-news .news .item .title {
	margin-bottom: 12px;
	font: 500 18px/1.2em 'Ubuntu', sans-serif;
	color: #000000;
}

.section-news .news .item .text {
	font: normal 16px/1.5em 'Ubuntu', sans-serif;
	color: #515254;
}

body.desktop-device .section-news .news .item:hover {
	z-index: 2;
	opacity: 0.7 !important;
	-webkit-transform: scale(1.02);
	-ms-transform: scale(1.02);
	transform: scale(1.02);
}

body.desktop-device .section-news .news .item:active,
body.mobile-device .section-news .news .item:active {
	z-index: 2;
	opacity: 0.7 !important;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.section-news .news + .bottom {
	text-align: center;
	padding-top: 20px;
}

@media (max-width: 1199px) {
	.section-news {
		padding: 50px 0 40px 0;
	}
	.section-news .news {
		position: relative;
		margin: 0 20px;
	}
	.section-news .news .items-wrap {
		display: block;
	}
	.section-news .news .item {
		width: auto;
		margin: 0;
		border: 10px solid #fff;
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
	}
	.section-news .news .item .title {
		margin-bottom: 0;
	}
	.section-news .news .item .text {
		display: none;
	}
	.section-news .slick-arrow.btn-slide-prev {
		left: -40px;
	}
	.section-news .slick-arrow.btn-slide-next {
		right: -40px;
	}
}

@media (max-width: 499px) {
	.section-news .slick-arrow.btn-slide-prev,
	.section-news .slick-arrow.btn-slide-next {
		top: 20px;
	}
}

/* ************************************************************************** */

.section-facebook {
	padding: 50px 0 40px;
}

.section-facebook .fb-iframe-wrap {
	max-width: 500px;
	margin: 0 auto;
}

@media (max-width: 991px) {
	.section-facebook {
		padding: 0px 0 40px;
	}
}

/* ************************************************************************** */

.section-breadcrumbs {
	z-index: 2;
	padding: 30px 0 0 0;
	margin-bottom: -45px;
}

.section-breadcrumbs ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.section-breadcrumbs li {
	display: block;
	position: relative;
	font: normal 14px/1em 'Ubuntu', sans-serif;
	color: #515254;
}

.section-breadcrumbs li:not(:last-child) {
	margin-right: 55px;
}
.section-breadcrumbs li:not(:last-child)::after {
	display: block;
	position: absolute;
	top: -5px;
	right: -38px;
	content: '';
	width: 24px;
	height: 24px;
	background: url("../img/ico-arrow-right_dark_24x24_02.svg") 0 0 no-repeat;
	-webkit-background-size: 24px 24px;
	background-size: 24px 24px;
}

.section-breadcrumbs li a {
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

body.desktop-device .section-breadcrumbs li a:hover {
	color: #3EB45E;
}

body.desktop-device .section-breadcrumbs li a:active,
body.mobile-device .section-breadcrumbs li a:active {
	color: #2A894F;
}

@media (max-width: 991px) {
	.section-breadcrumbs {
		padding: 20px 0 0 0;
		margin-bottom: -30px;
	}
	.section-breadcrumbs li:not(:last-child) {
		margin-right: 60px;
	}
	.section-breadcrumbs li:not(:last-child)::after {
		right: -40px;
	}
}

@media (max-width: 767px) {
	.section-breadcrumbs {
		padding: 5px 0 0 0;
		margin-bottom: -20px;
	}
	.section-breadcrumbs li {}
	
	.section-breadcrumbs li:not(:last-child) {
		margin-right: 40px;
	}
	.section-breadcrumbs li:not(:last-child)::after {
		right: -32px;
	}
}

/* ************************************************************************** */

.section-article-list {
	padding-bottom: 40px;
}

.section-article-list .articles {
	margin-left: -20px;
	margin-right: -20px;
}

.section-article-list .articles .items-wrap {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.section-article-list .articles .item {
	display: block;
	position: relative;
	z-index: 1;
	margin: 0 20px 35px 20px;
	width: -webkit-calc(25% - 40px);
	width: -moz-calc(25% - 40px);
	width: calc(25% - 40px);
	-webkit-border-radius: 60px 0px;
	-moz-border-radius: 60px 0px;
	border-radius: 60px 0px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 0 25px #ffffff;
	box-shadow: 0 0 0 25px #ffffff;
	-webkit-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.section-article-list .articles .item .pic {
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 0;
	padding-bottom: 100%;
	-webkit-border-radius: 60px 0px;
	-moz-border-radius: 60px 0px;
	border-radius: 60px 0px;
	margin-bottom: 20px;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.section-article-list .articles .item .pic .label {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 45px;
	height: 45px;
	-webkit-border-radius: 0px 30px 0px 0px;
	-moz-border-radius: 0px 30px 0px 0px;
	border-radius: 0px 30px 0px 0px;
	background-position: 9px 13px;
	background-repeat: no-repeat;
	-webkit-background-size: 24px 24px;
	background-size: 24px 24px;
}

.section-article-list .articles .item .pic .label.fb {
	background-color: #4267B2;
	background-image: url("../img/ico-soc-fb_white_24x24.svg")
}

.section-article-list .articles .item .pic .label.yt {
	background-color: #EE3124;
	background-image: url("../img/ico-soc-yt_white_24x24.svg")
}

.section-article-list .articles .item .pic .label.tg {
	background-color: #27a3e2;
	background-image: url("../img/ico-soc-tg_white_24x24.svg")
}

.section-article-list .articles .item .pic .label.ig {
	background-color: #c90067;
	background-image: url("../img/ico-soc-ig_white_24x24.svg")
}

.section-article-list .articles .item .pic .label.ln {
	background-color: #0081bf;
	background-image: url("../img/ico-soc-ln_white_24x24.svg")
}

.section-article-list .articles .item .date {
	margin-bottom: 12px;
	font: normal 11px/1em 'Ubuntu', sans-serif;
	color: #828282;
}

.section-article-list .articles .item .title {
	margin-bottom: 12px;
	font: 500 18px/1.2em 'Ubuntu', sans-serif;
	color: #000000;
}

.section-article-list .articles .item .text {
	font: normal 16px/1.5em 'Ubuntu', sans-serif;
	color: #515254;
}

body.desktop-device .section-article-list .articles .item:hover {
	z-index: 2;
	opacity: 0.7 !important;
	-webkit-transform: scale(1.02);
	-ms-transform: scale(1.02);
	transform: scale(1.02);
}

body.desktop-device .section-article-list .articles .item:active,
body.mobile-device .section-article-list .articles .item:active {
	z-index: 2;
	opacity: 0.7 !important;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

@media (max-width: 991px) {
	.section-article-list .articles .item {
		width: -webkit-calc(33.33% - 40px);
		width: -moz-calc(33.33% - 40px);
		width: calc(33.33% - 40px);
	}
}

@media (max-width: 767px) {
	.section-article-list .articles .items-wrap {
		margin-bottom: -30px;
	}
	.section-article-list .articles .item {
		width: -webkit-calc(50% - 40px);
		width: -moz-calc(50% - 40px);
		width: calc(50% - 40px);
		margin-bottom: 65px;
	}
}

@media (max-width: 499px) {
	.section-article-list .articles .item {
		width: 100%;
	}
}

/* ************************************************************************** */

.section-article {
	padding-bottom: 40px;
}

.section-article .article {
	position: relative;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}

.section-article .article .sidebar {
	width: 33.33%;
	padding-left: 80px;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.section-article .article .sidebar .preview .item {
	display: block;
	min-height: 65px;
	position: relative;
	padding-left: 80px;
	margin-bottom: 15px;
	-webkit-transition: all 0.15s ease 0s;
	-ms-transition: all 0.15s ease 0s;
	transition: all 0.15s ease 0s;
}

.section-article .article .sidebar .preview .item img {
	display: block;
	position: absolute;
	width: 60px;
	height: 60px;
	top: 3px;
	left: 0;
	-webkit-border-radius: 14px 0;
	-moz-border-radius: 14px 0;
	border-radius: 14px 0;
}

.section-article .article .sidebar .preview .item .date {
	display: block;
	margin-bottom: 5px;
	font: normal 11px/1.4em 'Ubuntu', sans-serif;
	color: #828282;
}

.section-article .article .sidebar .preview .item .title {
	display: block;
	font: 500 16px/1.2em 'Ubuntu', sans-serif;
	color: #000000;
}

body.desktop-device .section-article .article .sidebar .preview .item:hover {
	opacity: 0.7;
	-webkit-transform: scale(1.02);
	-ms-transform: scale(1.02);
	transform: scale(1.02);
}

body.desktop-device .section-article .article .sidebar .preview .item:active,
body.mobile-device .section-article .article .sidebar .preview .item:active {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.section-article .article .sidebar .preview .bottom {
	padding-top: 20px;
	padding-left: 80px;
}

.section-article .article .content {
	width: 66.66%;
}

.section-article .article + .bottom {
	display: none;
	text-align: center;
}

@media (max-width: 1199px) {
	.section-article .article .sidebar {
		padding-left: 60px;
	}
	.section-article .article .sidebar .preview .bottom .btn-h70-01 {
    	font-size: 24px;
	}
}

@media (max-width: 991px) {
	.section-article .article .sidebar {
		display: none;
	}
	.section-article .article .content {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.section-article .article .sidebar {
		display: none;
	}
	.section-article .article .content {
		width: 100%;
	}
	.section-article .article + .bottom {
		display: block;
		padding-top: 25px;
	}
}

/* ************************************************************************** */

/* WORDPRESS */
.wp-block-media-text__media img, .wp-block-media-text__media video {
    height: auto;
}