:root {
	--title: #000;
	--text: #000;
	--text-content: #444444;
	--text-link: #000;
	--text-link-hover: #000;
	--header-bottom-border: #cde9f2;
	--home-first-bg: #013b3f;
	--header-background: transparent;
	--header-background-scrolled: #003b3f;
	--white: #fff;
	--red: #ff7b7b;
	--light-red: #ffe5e5;
	--head-menu-color-hover: #cde9f2;
	--lang-drop-color: #08353b;
	--head-submenu-color: #212121;
	--head-submenu-color-hover: #08353b;
	--but-color: #003b3f;
	--light-bg: #edf2f3;
	--date-underline-color: #cdeaf2;
	--cat-tag-bg: #4b9095;
	--grey-text-color: #969898;
	--box-shadow-but-color: rgba(0, 59, 63, 0.4);
	--box-shadow-but-color-0: rgba(0, 59, 63, 0);
	--transparent: transparent;
	--disable-but-bg: #cccccc;
	--pagination-buts-border: #dfe2e3;
	--pagination-buts: #b6b7b7;
	--dark-green-bg-80: rgba(13, 61, 65, 0.8);
	--sert-border-color: #e1e4e5;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap');

html, body {
	padding: 0px;
	margin: 0px;
	font-family: 'Noto Sans', sans-serif;
	line-height: 1.5;
	color: var(--text);
}

*, ::before, ::after {
	box-sizing: border-box;
}

input, textarea, select, button, option {
	font-family: 'Noto Sans', sans-serif;
	outline: none;
	padding: 0;
	margin: 0;
	border: 0;
}

textarea {
	resize: none;
}

h1, h2, h3, h4, h5, h6 {
	padding: 0px;
	margin: 0px;
	font-family: 'Noto Sans', sans-serif;
	position: relative;
	z-index: 2;
	color: var(--title);
}

p {
	margin: 0px;
	font-family: 'Noto Sans', sans-serif;
}

ul, ol {
	margin: 0px;
	font-family: 'Noto Sans', sans-serif;
}

img {
	max-width: 100%;
	height: auto;
}

p a, ul a, ol a {
	color: var(--text-link);
}

p a:hover, ul a:hover, ol a:hover {
	color: var(--text-link-hover);
}

.clear {
	width: 0px;
	height: 0px;
	float: none !important;
	clear: both !important;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
}

a, button, input[type="submit"], input[type="button"] {
	transition: all 0.25s ease-out;
	outline: none;
	cursor: pointer;
}

a:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
	transition: all 0.25s ease-in;
}

.clearfix:after {
	content: '';
	display: block;
	clear: both;
}

/*--------*/

/*header*/

.header {
	width: 100%;
	max-height: 68px;
	transition: all 0.25s;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 20;
	background-color: var(--header-background);
	border-bottom: 1px solid var(--header-bottom-border);
}

.header.scrolled {
	transition: all 0.25s;
	background-color: var(--header-background-scrolled);
	border-bottom: 1px solid var(--header-background-scrolled);
}

.header.inner-pages {
	background-color: var(--header-background-scrolled) !important;
	border-bottom: 1px solid var(--header-background-scrolled) !important;
}

.header-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 67px;
}

.header-logo {
	width: 100%;
	max-width: 50px;
	height: 50px;
}

.header-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: 100px;
}

.header-menu ul {
	list-style-type: none;
	padding-left: 0;
	display: flex;
}

.header-menu ul > li {
	padding: 0 26px;
}

.header-menu ul > li > a {
	color: var(--white);
	text-decoration: none;
	font-size: 18px;
}

.header-menu ul > li.menu-item-has-children > a {
	padding-right: 20px;
	position: relative;
	display: inline-block;
}

.header-menu ul > li.menu-item-has-children > a svg {
	position: absolute;
	right: 1px;
	top: 50%;
	transform: translateY(-50%);
}

.header-menu ul > li.menu-item-has-children svg rect.top {
	width: 8px;
	/*transform: rotate(45deg);*/
	transform-origin: top left;
	transform: translate(1px, 3px) rotate(45deg);
	-ms-transform: translate(1px, 3px) rotate(45deg);
	-webkit-transform: translate(1px, 3px) rotate(45deg);
	-o-transform: translate(1px, 3px) rotate(45deg);
	-moz-transform: translate(1px, 3px) rotate(45deg);
	transition: all 0.25s ease-out;
}

.header-menu ul > li.menu-item-has-children svg rect.bottom {
	width: 8px;
	/*transform: rotate(-45deg);*/
	transform-origin: top right;
	transform: translate(1.5px, 0px) rotate(-45deg);
	-ms-transform: translate(1.5px, 0px) rotate(-45deg);
	-webkit-transform: translate(1.5px, 0px) rotate(-45deg);
	-o-transform: translate(1.5px, 0px) rotate(-45deg);
	-moz-transform: translate(1.5px, 0px) rotate(-45deg);
	transition: all 0.25s ease-out;
}

.header-menu ul > li > a:hover, .header-menu ul > li.current-menu-item > a, .header-menu ul > li.current_page_item > a {
	color: var(--head-menu-color-hover);
}

.header-menu ul > li > ul.sub-menu {
	position: fixed;
	width: 100%;
	padding: 0 15px;
	background: var(--white);
	left: calc(50% - 600px);
	top: 67px;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: all 0.3s ease-out;
	max-width: 1200px;
}

.header-menu ul > li > ul.sub-menu::before {
	width: 3000px;
	height: 100%;
	background: var(--white);
	opacity: 0;
	transition: all 0.3s ease-out;
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	z-index: -1;
}

@media(min-width: 1200px) {
	.header-menu ul > li.menu-item-has-children:hover svg rect.top {
		width: 15px;
		transform: translate(1.5px, 0px) rotate(45deg);
		-ms-transform: translate(1.5px, 0px) rotate(45deg);
		-webkit-transform: translate(1.5px, 0px) rotate(45deg);
		-o-transform: translate(1.5px, 0px) rotate(45deg);
		-moz-transform: translate(1.5px, 0px) rotate(45deg);
		fill: var(--head-menu-color-hover);
		transition: all 0.25s ease-in;
	}
	
	.header-menu ul > li.menu-item-has-children:hover svg rect.bottom {
		width: 15px;
		transform: translate(-3.5px, 2px) rotate(-45deg);
		-ms-transform: translate(-3.5px, 2px) rotate(-45deg);
		-webkit-transform: translate(-3.5px, 2px) rotate(-45deg);
		-o-transform: translate(-3.5px, 2px) rotate(-45deg);
		-moz-transform: translate(-3.5px, 2px) rotate(-45deg);
		fill: var(--head-menu-color-hover);
		transition: all 0.25s ease-in;
	}

	.header-menu ul > li:hover > ul.sub-menu {
		opacity: 1;
		max-height: 150000px;
		overflow: inherit;
		padding: 45px 15px;
		transition: all 0.3s ease-in;
	}

	.header-menu ul > li:hover > ul.sub-menu::before {
		opacity: 1;
		transition: all 0.3s ease-in;
	}
}

.header-menu ul > li > ul.sub-menu {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.header-menu ul > li > ul.sub-menu > li {
	padding: 12px 0;
}

.header-menu ul > li > ul.sub-menu > li > a {
	color: var(--head-submenu-color);
	font-size: 16px;
	text-decoration: underline;
	padding-left: 42px;
	background: url('../images/submenu-marker.png') 15px 50% no-repeat;
}

.header-menu ul > li > ul.sub-menu > li > a:hover, .header-menu ul > li > ul.sub-menu > li.current-menu-item > a, .header-menu ul > li > ul.sub-menu > li.current_page_item > a {
	color: var(--head-submenu-color-hover);
	text-decoration: none;
}

.header-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-controls > div {
	width: 55px;
	height: 50px;
}

.header-controls > div.header-search-block a {
	display: flex;
	width: 100% !important;
	height: 100% !important;
	background: url('../images/search-icon.svg') center center /26px auto no-repeat;
	position: relative;
	z-index: 5;
}

.header-controls > div.header-call-block a {
	display: flex;
	width: 100% !important;
	height: 100% !important;
	background: url('../images/foo-email-light.png') center center / 40px auto no-repeat;
	position: relative;
	z-index: 5;
}

.header-search-box {
	width: 100%;
	padding: 15px;
	position: fixed;
	left: 0;
	top: -100%;
	opacity: 0;
	background: var(--white);
	display: flex;
	justify-content: space-between;
	translate: 0 -10px;
	transition: all 0.45s ease-in-out;
}

.header-search-box.show {
	top: 68px;
	opacity: 1;
	translate: 0 0;
}

.header-search-box input[type="text"], .header-search-box input[type="search"] {
	width: 100%;
	box-sizing: border-box;
	padding-left: 17px;
	padding-right: 17px;
	height: 45px;
	font-size: 14px;
	color: var(--head-submenu-color);
	border: 1px solid var(--header-bottom-border);
	transition: all 0.25s ease-out;
}

.header-search-box form {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.header-search-box form label {
	display: flex;
	width: 100%;
	margin-right: 30px;
}

.header-search-box form .screen-reader-text {
	display: none !important;
}

.header-search-box form .search-submit {
	padding: 0 15px;
	height: 44px;
	background-color: var(--but-color);
	color: var(--white);
	border: 2px solid var(--but-color);
	transition: all 0.25s ease-out;
}

.header-search-box form .search-submit:hover {
	background-color: var(--white);
	color: var(--but-color);
	transition: all 0.25s ease-in;
}

.header-search-box .close {
	width: 44px;
	height: 44px;
	margin-left: 120px;
	background-image: url('../images/close.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-color: var(--header-search-box);
	cursor: pointer;
}

.header-lang {
	width: 45px;
}

.header-but {
	display: none;
}

/*---------*/

/*lang dropdown*/

.header-lang-box {
	position: relative;
}

.header-lang-box select {
	display: none; /*hide original SELECT element: */
}

.select-selected {
	color: var(--head-menu-color-hover);
	cursor: pointer;
	font-size: 18px;
	padding-right: 24px;
	box-sizing: border-box;
	height: 28px;
	max-height: 28px;
	background: url('../images/lang-arrow.png') right center no-repeat;
}

/* Style items (options): */
.select-items {
	position: absolute;
	background-color: var(--white);
	top: calc(100% + 19px);
	left: 0;
	right: 0;
	z-index: 99;
	overflow: hidden;
}

.select-items div {
	color: var(--lang-drop-color);
	font-size: 18px;
	line-height: 36px;
	cursor: pointer;
	text-align: center;
	transition: all 0.25s ease-out;
}

/* Hide the items when the select box is closed: */
.select-hide {
	display: none;
}

.select-items div:hover, .same-as-selected {
	background-color: var(--lang-drop-color);
	color: var(--white);
	transition: all 0.25s ease-in;
} 

/*--------*/

/*home-first*/

.home-first {
	background-image: url('../images/first-bg.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--home-first-bg);
	position: relative;
}

.home-first::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: var(--home-first-bg);
	opacity: 0.5;
	z-index: 1;
}

/*.home-first::after {
	content: "";
	width: 100%;
	height: 50px;
	z-index: 1;
	position: absolute;
	left: 0;
	bottom: 50px;
	background-image: url('../images/arr-down.png');
	background-position: top center;
	background-repeat: no-repeat;
}*/

.home-first .container {
	position: relative;
	z-index: 3;
}

.home-first-box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100vh;
}

.home-first-box img {
	max-width: 880px;
}

.home-first-box.en-home-first-box img {
	max-width: 643px;
}

.home-first-box h1 {
	font-size: 115px;
	line-height: 1;
	color: var(--white);
	font-weight: 500;
}

.home-first-box h1 span {
	font-family: 'Playfair Display', serif;
}

.home-first-box p, .home-first-box h2 {
	font-size: 45px;
	line-height: 60px;
	color: var(--white);
	font-weight: normal;
}

/*--------*/

/*home-about*/

.home-about {
	padding-top: 55px;
	padding-bottom: 70px;
}

.section h2, .section h1, .section div.h2 {
	font-size: 36px;
	color: var(--title);
	font-weight: normal;
}

.home-about.section h3 {
	font-size: 36px;
	color: var(--title);
	font-weight: normal;
}

.home-about-box {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.home-about-img {
	width: 100%;
	max-width: 470px;
}

.home-about-text {
	width: 100%;
	max-width: 630px;
}

.text-content > *:first-child {
	margin-top: 0 !important;
}

.text-content p, .text-content ul, .text-content ol, .text-content figure {
	font-size: 16px;
	color: var(--text-content);
	
	line-height: 24px;
	margin-top: 20px;
}

.text-content ul, .text-content ol {
	padding-left: 20px;
}

.home-about-text.text-content p, .home-about-text.text-content ul, .home-about-text.text-content ol {
	color: var(--text);
}

.text-content b, .text-content strong {
	font-weight: bold;
}

.home-about-text .but {
	margin-top: 24px;
}

.but {
	display: flex;
}

.but a, .but button {
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 44px;
	border: 2px solid var(--but-color);
	color: var(--but-color);
	text-decoration: none;
	font-size: 14px;
	position: relative;
}

.but a:hover, .but button:hover {
	background-color: var(--but-color);
	color: var(--white);
}

.but a::before, .but button::before {
	border-top: 7px solid transparent;
	border-left: 7px solid var(--but-color);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.but a::after, .but button::after {
	border-bottom: 7px solid transparent;
	border-right: 7px solid var(--but-color);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.but a span::before, .but button span::before {
	border-top: 8px solid transparent;
	border-left: 8px solid var(--white);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	left: -2px;
	bottom: -2px;
	z-index: 2;
}

.but a span::after, .but button span::after {
	border-bottom: 8px solid transparent;
	border-right: 8px solid var(--white);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	right: -2px;
	top: -2px;
	z-index: 2;
}

.home-about-text .but a {
	padding: 0 50px;
}

/*--------*/

/*home-blog*/

.home-blog {
	padding-top: 75px;
	padding-bottom: 80px;
	background: url('../images/blog-bg1.png') left bottom no-repeat,
				url('../images/blog-bg2.png') right bottom / auto 100% no-repeat,
				var(--light-bg);
}

.home-blog.section h2, .home-blog.section h3 {
	text-align: center;
	font-size: 36px;
	color: var(--title);
	font-weight: normal;
}

.home-blog-box {
	margin-top: 32px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.home-blog-box .article-item {
	width: 100%;
	max-width: 370px;
	background: var(--white);
}

.article-img {
	width: 100%;
	height: 208px;
	overflow: hidden;
}

.article-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.25s ease-out;
}

.article-item:hover .article-img img {
	transition: all 0.25s ease-in;
	scale: 1.05;
}

.article-body {
	padding: 0 15px;
}

.article-body .date {
	line-height: 52px;
	color: var(--but-color);
	font-size: 14px;
	position: relative;
}

.article-body .date::before {
	content: "";
	left: 0;
	bottom: 0;
	width: 74px;
	height: 1px;
	position: absolute;
	background: var(--date-underline-color);
}

.article-body .title {
	margin-top: 15px;
	margin-bottom: 25px;
	overflow: hidden;
	max-height: 72px;
	height: 72px;
}

.article-body .title a {
	text-decoration: none;
	font-size: 18px;
	line-height: 24px;
	color: var(--head-submenu-color);
}

.article-body .title a:hover {
	text-decoration: underline;
	color: var(--head-submenu-color-hover);
}

.home-blog-but {
	margin-top: 42px;
	justify-content: center;
}

.home-blog-but.but a {
	padding: 0 50px;
}

.home-blog-but.but a span::before {
	border-left: 8px solid var(--light-bg);
}

.home-blog-but.but a span::after {
	border-right: 8px solid var(--light-bg);
}

/*--------*/

/*home-projects*/

.home-projects {
	padding-top: 70px;
	padding-bottom: 90px;
}

.home-projects.section h2, .home-projects.section h3 {
	text-align: center;
	font-size: 36px;
	color: var(--title);
	font-weight: normal;
}

.home-projects-box {
	margin-top: 24px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 40px;
}

.projects-item {
	width: 100%;
	max-width: 370px;
}

.projects-img {
	width: 100%;
	height: 243px;
	overflow: hidden; 
	position: relative;
}

.projects-img::after {
	width: 18px;
	height: 18px;
	content: "";
	background: var(--but-color);
	right: 11px;
	bottom: 11px;
	position: absolute;
	z-index: 1;
}

.projects-img::before {
	width: 8px;
	height: 8px;
	content: "";
	border-right: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	rotate: -45deg;
	right: 17px;
	bottom: 16px;
	position: absolute;
	z-index: 2;
}

.projects-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.25s ease-out;
}

.projects-item:hover .projects-img img {
	transition: all 0.25s ease-in;
	scale: 1.05;
}

.projects-body {
	margin-top: 10px;
}

.projects-body .title {
	overflow: hidden;
	max-height: 72px;
	height: 72px;
}

.projects-body .title a {
	text-decoration: none;
	font-size: 18px;
	line-height: 24px;
	color: var(--head-submenu-color);
}

.projects-body .title a:hover {
	text-decoration: underline;
	color: var(--head-submenu-color-hover);
}

.projects-body .categories {
	font-size: 0;
	margin-top: 10px;
	min-height: 69px;
}

.projects-body .categories a {
	display: inline-block;
	vertical-align: top;
	line-height: 19px;
	max-height: 19px;
	padding: 0 15px;
	margin-right: 6px;
	margin-bottom: 6px;
	background: var(--cat-tag-bg);
	color: var(--white);
	font-size: 13px;
	text-transform: lowercase;
	text-decoration: none;
}

.projects-body .categories a:hover {
	background: var(--but-color);
}

/*--------*/

/*home-services-list*/

.home-services-list {
	position: relative;
	background: var(--light-bg);
}

.home-services-list .bg-block {
	width: 100%;
	max-width: calc(50% - 15px);
	height: 100%;
	z-index: 0;
	background: url('../images/home-services-bg.jpg') center center / cover no-repeat,
				var(--but-color);
	content: "";
	left: 0;
	top: 0;
	position: absolute;
}

.home-services-list .bg-block::before {
	background: var(--but-color);
	width: 100%;
	height: 100%;
	opacity: 0.85;
	left: 0;
	top: 0;
	position: absolute;
	content: "";
}

.home-services-box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.home-services-img {
	width: 100%;
	max-width: 570px;
	padding-top: 55px;
	padding-bottom: 115px;
	padding-right: 40px;
}

.home-services-list.section h2, .home-services-list.section h3 {
	color: var(--white);
	font-size: 36px;
	font-weight: normal;
}

.home-services-img-wr {
	margin-top: 20px;
	width: 100%;
	height: 371px;
	overflow: hidden;
}

.home-services-img-wr img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-services-links {
	width: 100%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	min-height: 615px;
}

.home-services-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.home-services-links li a {
	padding-left: 30px;
	padding-right: 40px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: var(--head-submenu-color);
	font-size: 18px;
	position: relative;
	display: flex;
	text-decoration: none;
}

.home-services-links li a::before {
	width: 18px;
	height: 18px;
	border: 2px solid var(--date-underline-color);
	opacity: 0;
	translate: 10px -50%;
	content: "";
	position: absolute;
	right: 13px;
	top: 50%;
	transition: all 0.25s ease-out;
}

.home-services-links li a::after {
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--date-underline-color);
	border-bottom: 2px solid var(--date-underline-color);
	content: "";
	transform-origin: 50% 50%;
	rotate: -45deg;
	position: absolute;
	right: 19px;
	top: 50%;
	translate: 10px -50%;
	opacity: 0;
	z-index: 2;
	transition: all 0.25s ease-out;
}

@media(min-width: 1200px) {
	.home-services-links li a:hover::before {
		transition: all 0.25s ease-in;
		translate: 0px -50%;
		opacity: 1;
	}

	.home-services-links li a:hover::after {
		transition: all 0.25s ease-in;
		translate: 0px -50%;
		opacity: 1;
	}
	
	.home-services-links li a:hover {
		background: var(--but-color);
		color: var(--date-underline-color);
	
	}
}



/*--------*/

/**/

.footer {
	border-top: 1px solid var(--date-underline-color);
	padding: 70px 0;
}

.footer-box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer-item {
	width: 100%;
}

.footer-item.info {
	max-width: 230px;
}

.footer-item.contacts {
	max-width: 315px;
}

.footer-item.menu {
	max-width: 310px;
}

.footer-item.social {
	max-width: 200px;
}

.footer-item .title {
	font-size: 20px;
	color: var(--head-submenu-color);
	line-height: 1;
}

.footer-item .copyright {
	margin-top: 10px;
	font-size: 14px;
	line-height: 24px;
	color: var(--grey-text-color);
}

.footer-item .box {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.footer-item .box > *:first-child {
	margin-top: 0 !important;
}

.footer-item.contacts .box a, .footer-item.contacts .box p {
	line-height: 27px;
	margin-top: 8px;
	padding-left: 34px;
}

.footer-item.contacts .box a.phone {
	font-size: 14px;
	color: var(--head-submenu-color);
	text-decoration: none;
	background: url('../images/foo-call.png') left center / 22px auto no-repeat;
}

.footer-item.contacts .box a.phone:hover {
	color: var(--head-submenu-color-hover);
	text-decoration: underline;
}

.footer-item.contacts .box p.addr {
	font-size: 14px;
	line-height: 21px;
	color: var(--grey-text-color);
	padding-top: 3px;
	padding-bottom: 3px;
	background: url('../images/foo-addr.png') left center / auto 27px no-repeat;
}

.footer-item.contacts .box p.addr a {
	padding-left: 0;
	text-decoration: none;
}

.footer-item.contacts .box p.addr a:hover {
	text-decoration: underline;
	color: var(--head-submenu-color-hover);
}

.footer-item.contacts .box a.email {
	font-size: 14px;
	color: var(--head-submenu-color-hover);
	text-decoration: underline;
	background: url('../images/foo-email.png') left center / 23px auto no-repeat;
}

.footer-item.contacts .box a.email:hover {
	color: var(--head-submenu-color);
	text-decoration: none;
}

.footer-item.menu ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	gap: 0 30px;
}

.footer-item.menu ul li a {
	line-height: 30px;
	font-size: 14px;
	color: var(--grey-text-color);
	text-decoration: none;
}

.footer-item.menu ul li a:hover {
	color: var(--head-submenu-color-hover);
	text-decoration: underline;
}

.outer-link {
	margin-top: 11px;
}

.outer-link a {
	font-size: 14px;
	color: var(--head-submenu-color-hover);
}

.outer-link a:hover {
	color: var(--grey-text-color);
	text-decoration: none;
}

.footer-item.social .social-items {
	padding-top: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.social-items a {
	display: block;
	width: 36px;
	height: 36px;
	margin-right: 4px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.social-items a.soc1 {
	background-image: url('../images/soc1.png');
}

.social-items a.soc1:hover {
	background-image: url('../images/soc1-hover.png');
}

.social-items a.linkedin {
	background-image: url('../images/soc2.png');
}

.social-items a.linkedin:hover {
	background-image: url('../images/soc2-hover.png');
}

.social-items a.twitter {
	background-image: url('../images/soc3.png');
}

.social-items a.twitter:hover {
	background-image: url('../images/soc3-hover.png');
}


.social-items a.instagram {
	background-image: url('../images/soci.png');
}

.social-items a.instagram:hover {
	background-image: url('../images/soci-hover.png');
}

.social-items a.youtube {
	background-image: url('../images/soc4.png');
}

.social-items a.youtube:hover {
	background-image: url('../images/soc4-hover.png');
}

.social-items a.facebook {
	background-image: url('../images/soc5.png');
}

.social-items a.facebook:hover {
	background-image: url('../images/soc5-hover.png');
}

.policy-link {
	margin-top: 25px;
}

.policy-link a {
	font-size: 14px;
	color: var(--grey-text-color);
}

.policy-link a:hover {
	color: var(--head-submenu-color-hover);
}

.contact-us-but {
	width: 86px;
	height: 86px;
	display: block;
	position: fixed;
	bottom: 50px;
	right: 50px;
	border-radius: 50%;
	background: url('../images/chat-icon.png') center center / 42px auto no-repeat,
				var(--but-color);
				box-shadow: 0 0 0 var(--box-shadow-but-color);
	animation: pulse 1.5s infinite;
	z-index: 15;
	transition: all 0.25s ease-in-out;
}

.contact-us-but.open {
	background-image: none;
	width: 60px;
	height: 60px;
	animation: none;
}

.contact-us-but::before {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: all 0.25s ease-in-out;
	background-image: url('../images/cls.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 18px auto;
}

.contact-us-but.open::before {
	opacity: 1;
}

@-webkit-keyframes pulse {
	0% {
	  	-webkit-box-shadow: 0 0 0 0 var(--box-shadow-but-color);
	}
	70% {
		-webkit-box-shadow: 0 0 0 30px var(--box-shadow-but-color-0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 var(--box-shadow-but-color-0);
	}
}

@keyframes pulse {
	0% {
	  	-moz-box-shadow: 0 0 0 0 var(--box-shadow-but-color);
	  	box-shadow: 0 0 0 0 var(--box-shadow-but-color);
	}
	70% {
		-moz-box-shadow: 0 0 0 30px var(--box-shadow-but-color-0);
		box-shadow: 0 0 0 30px var(--box-shadow-but-color-0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 var(--box-shadow-but-color-0);
		box-shadow: 0 0 0 0 var(--box-shadow-but-color-0);
	}
}

.contact-us-buts {
	width: 60px;
	height: 60px;
	display: block;
	position: fixed;
	right: -100%;
	border-radius: 50%;
	box-shadow: 0 0 0 var(--box-shadow-but-color);
	animation: pulse 1.5s infinite;
	z-index: 15;
	opacity: 0;
	transition: all 0.45s ease-in-out;
}

.contact-us-buts.open {
	right: 50px;
	opacity: 1;
}

.contact-us-buts.contact-us-telegram {
	background: url('../images/b-telegram-icon.svg') center center / 32px auto no-repeat,
				var(--but-color);
	bottom: 130px;
}

.contact-us-buts.contact-us-telegram.contact-us-email {
	background: url('../images/foo-email-light.png') center center / 32px auto no-repeat,
				var(--but-color);
	bottom: 130px;
}

.contact-us-buts.contact-us-viber {
	background: url('../images/b-viber-icon.svg') center center / 32px auto no-repeat,
				var(--but-color);
	bottom: 210px;
}

#fb-root iframe {
	right: -100% !important;
	margin: 0 !important;
	position: fixed !important;
	bottom: 210px !important;
	opacity: 0 !important;
	transition: all 0.45s ease-in-out;
}

#fb-root.open iframe {
	right: 50px !important;
	opacity: 1 !important;
}

/*--------*/

/*title-block*/

.title-block {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: var(--but-color);
	position: relative;
}

.title-block::after {
	width: 100%;
	height: 100%;
	background: var(--but-color);
	opacity: 0.7;
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	z-index: 1;
}

.title-box {
	min-height: 430px;
	max-height: 431px;
	padding-top: 68px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

.title-box h1 {
	color: var(--white);
	font-size: 72px;
	font-weight: normal;
}

/*--------*/

/*breadcrumbs*/

.breadcrumbs {
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 15px 0;
}

.breadcrumbs-box {
	font-size: 0;
	vertical-align: top;
}

.breadcrumbs-box a, .breadcrumbs-box span {
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: var(--but-color);
	text-decoration: none;
	line-height: 24px;
}

.breadcrumbs-box a {
	color: var(--grey-text-color);
	margin-right: 29px;
	position: relative;
}

.breadcrumbs-box a:hover {
	color: var(--but-color);
	text-decoration: underline;
}

.breadcrumbs-box a::after {
	content: "/";
	font-size: 14px;
	line-height: 24px;
	color: var(--grey-text-color);
	position: absolute;
	right: -18px;
	top: 0;
}

.breadcrumbs.dop-pages {
	margin-top: 68px;
}

.dop-page-box {
	min-height: 530px;
	max-height: 530px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/*--------*/

/**/

.about-text-block {
	padding-bottom: 90px;
}

/*.text-content p, .text-content ol, .text-content ul {
	font-size: 16px;
	color: var(--text);
	line-height: 24px;
	margin-top: 18px;
}*/

.text-content h1, .text-content h2, .text-content h3, .text-content h4, .text-content h5, .text-content h6 {
	font-weight: normal;
	margin-top: 36px;
	line-height: 1.2;
}

.text-content h1 {
	font-size: 40px;
}

.text-content h2 {
	font-size: 36px;
}

.text-content h3 {
	font-size: 30px;
}

.text-content h4 {
	font-size: 24px;
}

.text-content h5 {
	font-size: 20px;
}

.text-content h6 {
	font-size: 18px;
	font-weight: bold;
}

.text-content blockquote {
	padding: 25px 100px;
	color: var(--white);
	font-size: 18px;
	line-height: 30px;
	font-style: italic;
	background: url('../images/blockquote.png') 48px 30px no-repeat, var(--cat-tag-bg);
	margin: 0;
	margin-top: 20px;
}

.text-content blockquote p {
	color: var(--white);
	font-size: 18px;
	line-height: 30px;
	font-style: italic;
}

.text-content blockquote > *:first-child {
	margin-top: 0 !important;
}

.text-content blockquote em, .text-content blockquote i {
	display: block;
	line-height: 24px;
	font-size: 16px;
	font-style: normal;
	color: var(--date-underline-color);
	text-align: right;
	margin-top: 8px;
}

.text-content a {
	color: var(--but-color);
}

.text-content a:hover {
	color: var(--text);
	text-decoration: none;
}

.text-content .but a:hover {
	color: var(--white);
}

img.alignright {
	float: right;
	margin: 0 0 1em 1em;
}

img.alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

img.aligncenter, img.alignnone {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 32px;
}

a img.alignright {
	float: right;
	margin: 0 0 1em 1em;
}

a img.alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

a img.aligncenter, a img.alignnone {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 32px;
}

.text-after {
	margin-top: 38px;
	background: var(--cat-tag-bg);
	padding: 28px 70px;
}

.text-after p, .text-after ul, .text-after ol {
	color: var(--white);
	font-size: 18px;
	line-height: 30px;
}

.text-after > *:first-child {
	margin-top: 0 !important;
}

/*--------*/

/*bottom-form*/

.bottom-form {
	padding-top: 60px;
	padding-bottom: 85px;
	background: url('../images/blog-bg1.png') left bottom no-repeat, 
				url('../images/blog-bg2.png') right bottom / auto 100% no-repeat, 
				var(--light-bg);
}

.bottom-form.section h2, .bottom-form.section div.h2 {
	text-align: center;
}

.bottom-form .subtitle, .bottom-form .subtitle-contacts {
	font-size: 16px;
	color: var(--title);
	line-height: 24px;
	text-align: center;
	margin-top: 10px;
}

.bottom-form .form {
	padding-top: 42px;
	max-width: 970px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.form-group {
	position: relative;
}

.bottom-form .form .form-group.flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 15px;
}

.bottom-form .form input[type="text"], .bottom-form .form input[type="email"], .bottom-form .form input[type="tel"] {
	width: 100%;
	box-sizing: border-box;
	padding-left: 17px;
	padding-right: 17px;
	height: 45px;
	margin-bottom: 15px;
	font-size: 14px;
	color: var(--head-submenu-color);
	border: 2px solid var(--white);
	transition: all 0.25s ease-out;
}

.bottom-form .form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 17px;
	height: 117px;
	margin-bottom: 15px;
	font-size: 14px;
	color: var(--head-submenu-color);
	border: 2px solid var(--white);
	transition: all 0.25s ease-out;
}

.bottom-form .form input.wpcf7-not-valid, .bottom-form .form textarea.wpcf7-not-valid {
	border-color: var(--red);
	transition: all 0.25s ease-in;
	background-color: var(--light-red);
}

.ajax-loader, .wpcf7-spinner {
	position: absolute !important;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.form-group.file {
	position: relative;
	margin-top: 15px;
}

.form-group.file .file-wrapper {
	position: absolute;
	left:  0;
	top: 0;
	z-index: 2;
	max-width: 225px;
	width: 100%;
}

.form-group.file .file-wrapper label {
	font-size: 14px;
	cursor: pointer;
	color: var(--but-color);
}

.form-group.file .file-wrapper label span {
	text-decoration: underline;
}

.form-group.file .file-wrapper label div {
	font-size: 12px;
	color: var(--grey-text-color);
	line-height: 14px;
	margin-top: 5px;
	text-decoration: none !important;
}

.form-group.file .file-wrapper input {
	visibility: hidden;
}

.form-group.but {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-bottom: 12px;
}

.form-group.but .but-wrapper {
	width: 100%;
	max-width: 315px;
	position: relative;
}

.form-group.but .but-wrapper > span {
	width: 100%;
	position: relative;
	display: block;
}

.form-group.but input[type="submit"] {
	height: 44px;
	border: 2px solid var(--but-color);
	background: var(--but-color);
	color: var(--white);
	text-decoration: none;
	font-size: 14px;
	position: relative;
	width: 100%;
	text-align: center;
}

.form-group.but input[type="submit"]:hover {
	background: var(--transparent);
	color: var(--but-color);
}

.form-group.but .but-wrapper::before {
	border-top: 7px solid transparent;
	border-left: 7px solid var(--but-color);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.form-group.but .but-wrapper::after {
	border-bottom: 7px solid transparent;
	border-right: 7px solid var(--but-color);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.form-group.but .but-wrapper span::before {
	border-top: 8px solid transparent;
	border-left: 8px solid var(--light-bg);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	left: -2px;
	bottom: -2px;
	z-index: 2;
}

.form-group.but .but-wrapper span::after {
	border-bottom: 8px solid transparent;
	border-right: 8px solid var(--light-bg);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	right: -2px;
	top: -2px;
	z-index: 2;
}

.form-group.but input[type="submit"]:disabled {
	background: var(--disable-but-bg) !important;
	color: var(--text-content) !important;
}

.form-group.checkbox {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-bottom: 15px;
}

.form-group.checkbox label span {
	font-size: 13px;
	color: var(--grey-text-color);
	line-height: 14px;
	display: inline-block;
	padding-left: 25px;
	position: relative;
	cursor: pointer;
	transition: all 0.25s ease-out;
}

.form-group.checkbox label:hover span, .form-group.checkbox label input:checked ~ span {
	color: var(--but-color);
}

.form-group.checkbox label span::before {
	width: 14px;
	height: 14px;
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	translate: 0 -50%;
	background: var(--white);
}

.form-group.checkbox label span::after {
	content: "";
	position: absolute;
	display: none;
}

.form-group.checkbox label input:checked ~ span::after {
	display: block;
}
  
.form-group.checkbox label span::after {
	left: 5px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid var(--but-color);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.form-group.checkbox label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.contacts .subtitle {
	font-size: 16px;
}

.form-group.checkbox span a {
	color: var(--but-color);
}

.form-group.checkbox span a:hover {
	color: var(--head-submenu-color);
	text-decoration: none;
}

/*--------*/

/*projects-block*/

.projects-block {
	padding-bottom: 75px;
}

.projects-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 40px;
}

.pagination {
	margin-top: 65px;
}

.pagination .screen-reader-text {
	display: none !important;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.pagination .nav-links > a, .pagination .nav-links > span:not(.dots) {
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--pagination-buts-border);
	color: var(--pagination-buts);
	text-decoration: none;
	font-size: 14px;
	position: relative;
	margin: 0 6px;
}

.pagination .nav-links > a:not(.prev):not(.next)::before, .pagination .nav-links > span:not(.dots)::before {
	border-top: 7px solid transparent;
	border-left: 7px solid var(--pagination-buts-border);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	transition: all 0.25s ease-out;
}

.pagination .nav-links > a:not(.prev):not(.next)::after, .pagination .nav-links > span:not(.dots)::after {
	border-bottom: 7px solid transparent;
	border-right: 7px solid var(--pagination-buts-border);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	transition: all 0.25s ease-out;
}

.pagination .nav-links > a:not(.prev):not(.next) span::before, .pagination .nav-links > span:not(.dots) span::before {
	border-top: 8px solid transparent;
	border-left: 8px solid var(--white);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	left: -2px;
	bottom: -2px;
	z-index: 2;
}

.pagination .nav-links > a:not(.prev):not(.next) span::after, .pagination .nav-links > span:not(.dots) span::after {
	border-bottom: 8px solid transparent;
	border-right: 8px solid var(--white);
	width: 0px;
	height: 0px;
	content: "";
	position: absolute;
	right: -2px;
	top: -2px;
	z-index: 2;
}

.pagination .nav-links > a:hover, .pagination .nav-links > span:not(.dots) {
	border-color: var(--but-color);
	color: var(--but-color);
}

.pagination .nav-links > a:not(.prev):not(.next):hover::before, .pagination .nav-links > span:not(.dots)::before {
	border-left: 7px solid var(--but-color);
	transition: all 0.25s ease-in;
}

.pagination .nav-links > a:not(.prev):not(.next):hover::after, .pagination .nav-links > span:not(.dots)::after {
	border-right: 7px solid var(--but-color);
	transition: all 0.25s ease-in;
}

.pagination .nav-links span.dots {
	color: var(--pagination-buts);
	line-height: 44px;
	margin: 0 6px;
	width: 24px;
	text-align: center;
}

.pagination .nav-links a.prev, .pagination .nav-links a.next {
	font-size: 0 !important;
	width: 48px;
	height: 44px;
	display: flex;
	background-position: center center;
	background-repeat: no-repeat;
	border: 0;
}

.pagination .nav-links a.prev {
	background-image: url('../images/pagin-prev.png');
	margin-right: 24px;
}

.pagination .nav-links a.prev:hover {
	background-image: url('../images/pagin-prev-hover.png');
}

.pagination .nav-links a.next {
	background-image: url('../images/pagin-next.png');
	margin-left: 24px;
}

.pagination .nav-links a.next:hover {
	background-image: url('../images/pagin-next-hover.png');
}

/*--------*/

/*dop-page*/

.dop-page {
	padding-top: 30px;
	padding-bottom: 240px;
	background: url('../images/blog-bg1.png') left bottom no-repeat, 
				url('../images/blog-bg3.png') right bottom no-repeat, 
				var(--white);
}

.dop-page-box {
	height: 530px;
	max-height: 530px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 970px;
	margin-left: auto;
	margin-right: auto;
}

.thank .dop-page-box {
	background: var(--light-bg);
}

.dop-page-box h2 {
	text-align: center;
	font-size: 36px;
	line-height: 48px;
	color: var(--title);
}

.dop-page-box p {
	font-size: 20px;
	text-align: center;
	margin-top: 10px;
}

.dop-page-box .dop-page-but {
	margin-top: 75px;
	width: 100%;
	max-width: 190px;
}

.thank .dop-page-box .dop-page-but {
	margin-top: 55px;
}

.dop-page-box .dop-page-but a {
	width: 100%;
}

.dop-page-box .dop-page-but a span::before {
	border-left: 8px solid var(--light-bg);
}

.dop-page-box .dop-page-but a span::after {
	border-right: 8px solid var(--light-bg);
}

.thank .dop-page-box img {
	margin-bottom: 35px;
}

/*--------*/

/*contacts-block*/

.contacts-block {
	padding-bottom: 90px;
}

.contacts-box {
	margin-top: 25px;
}

.contacts-items {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.contacts-item {
	width: 100%;
	max-width: 370px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.contacts-item .icon {
	height: 73px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contacts-item .info {
	margin-top: 20px;
	text-align: center;
}

.contacts-item .info p {
	font-size: 18px;
	color: var(--head-submenu-color);
}

.contacts-item.phone .info a {
	font-size: 24px;
	color: var(--head-submenu-color);
	text-decoration: none;
}

.contacts-item.phone .info a:hover {
	color: var(--head-submenu-color-hover);
	text-decoration: underline;
}

.contacts-item.phone .info p {
	margin-top: 10px;
	font-size: 16px;
}

.contacts-item.email .info a {
	color: var(--head-submenu-color-hover);
	text-decoration: underline;
	font-size: 18px;
}

.contacts-item.email .info a:hover {
	color: var(--head-submenu-color);
	text-decoration: none;
}

.contacts-item.phone .icon img {
	max-width: 73px;
	max-height: 73px;
}

.contacts-map {
	margin-top: 30px;
}

.contacts-item.addr .info p a {
	text-decoration: none;
}

.contacts-item.addr .info p a:hover {
	text-decoration: underline;
	color: var(--head-submenu-color-hover);
}

/*--------*/

/*contacts-social-block*/

.contacts-social-block {
	padding-top: 45px;
	padding-bottom: 90px;
}

.h3-title {
	font-size: 24px;
	color: var(--head-submenu-color);
}

.contacts-social-box {
	margin-top: 25px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 30px;
}

.contacts-social-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.contacts-social-item .icon {
	width: 100%;
	max-width: 70px;
}

.contacts-social-item .icon a {
	text-decoration: none;
}

.contacts-social-item .info {
	width: 100%;
	max-width: 470px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	min-height: 70px;
}

.contacts-social-item .info a {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	min-height: 70px;
}

.contacts-social-item .info .title {
	display: block;
	font-size: 18px;
	font-weight: bold;
	color: var(--but-color);
}

.contacts-social-item:hover .info .title {
	text-decoration: underline;
}

.contacts-social-item .info .about {
	font-size: 16px;
	line-height: 24px;
	color: var(--text-content);
}

/*--------*/

/*blog-block*/

.blog-block {
	padding-bottom: 115px;
}

.blog-box {
	margin-top: 15px;
}

.blog-box .categories {
	padding: 25px 30px;
	background: var(--light-bg);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.categories-list {
	width: 100%;
	max-width: calc(100% - 215px);
	font-size: 0;
}

.categories-list a, .categories-list span.current {
	margin-top: 7px;
	margin-bottom: 7px;
	margin-right: 14px;
	line-height: 29px;
	background: var(--white);
	border: 2px solid var(--cat-tag-bg);
	color: var(--head-submenu-color);
	padding: 0 28px;
	text-decoration: none;
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
}

.categories-list a:hover, .categories-list span.current {
	background: var(--cat-tag-bg);
	color: var(--white);
}

.donate-but {
	width: 100%;
	max-width: 185px;
}

.donate-but.but a {
	background: var(--but-color);
	color: var(--white);
	width: 100%;
}

.donate-but.but a:hover {
	background: var(--light-bg);
	color: var(--but-color);
	width: 100%;
}

.donate-but.but a span::before {
	border-left: 8px solid var(--light-bg);
}

.donate-but.but a span::after {
	border-right: 8px solid var(--light-bg);
}

.articles {
	margin-top: 26px;
}

.articles > *:first-child {
	margin-top: 0 !important;
}

.articles .box {
	margin-top: 30px;
	display: grid;
    grid-template-columns: 7fr 5fr;
    grid-column-gap: 30px;
	grid-row-gap: 30px;
	grid-auto-rows: 255px;
	max-height: 0;
	opacity: 0;
	translate: 0 -20px;
}

.articles .box.showed {
	max-height: 150000px;
	opacity: 1;
	translate: 0 0 !important;
}

.articles .box.show {
	max-height: 150000px;
	opacity: 1;
	translate: 0 0 !important;
	transition: all 0.45s ease-in;
}

.articles .box:not(.first-box) .article:first-child {
	grid-row-start: 1;
	grid-row-end: 3;
}

.box .article {
	overflow: hidden;
	position: relative;
}

.box .article a {
	width: 100%;
	height: 100%;
	display: block;
}

.box .article img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.box .article .article-info {
	position: absolute;
	width: 100%;
	max-width: 310px;
	min-height: 205px;
	background: var(--white);
	left: 25px;
	top: 25px;
	padding: 30px;
}

.box .article .article-info .cats-wr {
	width: 100%;
	height: 19px;
	max-height: 19px;
	overflow: hidden;
	position: relative;
}

.box .article .article-info .cats-wr::after {
	width: 25px;
	height: 19px;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	background: -moz-linear-gradient(90deg, rgba(2,0,36,0) 0%, rgba(255,255,255,1) 63%);
	background: -webkit-linear-gradient(90deg, rgba(2,0,36,0) 0%, rgba(255,255,255,1) 63%);
	background: linear-gradient(90deg, rgba(2,0,36,0) 0%, rgba(255,255,255,1) 63%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#ffffff",GradientType=1);
}

.box .article .article-info .cats-wr .cats {
	display: flex;
	/*overflow-x: scroll;*/
	overflow-x: hidden;
}

.box .article .article-info .cats-wr .cats a:first-child {
	margin-left: 0 !important;
}

.box .article .article-info .cats-wr .cats a {
	display: inline-block;
	vertical-align: top;
	line-height: 19px;
	max-height: 19px;
	padding: 0 15px;
	margin-right: 10px;
	background: var(--cat-tag-bg);
	color: var(--white);
	font-size: 13px;
	text-decoration: none;
	width: auto !important;
}

.box .article .article-info .cats-wr .cats a:hover {
	background: var(--but-color);
}

.box .article .article-info .title {
	min-height: 72px;
	/*max-height: 72px;*/
	overflow: hidden;
	margin-top: 12px;
}

.box .article .article-info .title a {
	line-height: 24px;
	text-decoration: none;
	color: var(--text);
	font-size: 18px;
}

.box .article .article-info .title a:hover {
	color: var(--head-submenu-color-hover);
}

.box .article .article-info .date {
 	color: var(--header-background-scrolled);
	font-size: 14px;
	padding-top: 10px;
	margin-top: 10px;
	position: relative;
}

.box .article .article-info .date::before {
	width: 74px;
	height: 1px;
	background: var(--date-underline-color);
	content: "";
	top: 0;
	left: 0;
	position: absolute;
}

.articles .box.first-box {
	display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
	grid-row-gap: 30px;
	grid-auto-rows: 540px;
}

.articles .box.first-box .article:last-child {
	grid-column-start: 1;
	grid-column-end: 3;
}

.categories-filter {
	padding: 15px 30px;
	background: var(--light-bg);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 30px;
}

.categories-filter form {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.categories-filter form .form-group:not(.but) {
	width: 100%;
	max-width: 540px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.categories-filter form .form-group:not(.but) label {
	font-size: 16px;
	color: var(--head-submenu-color);
	padding: 0;
	margin: 0;
	margin-right: 30px;
}

.categories-filter form .form-group:not(.but) select {
	width: 100%;
	max-width: 260px;
	height: 45px;
	padding-left: 25px;
	padding-right: 30px;
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
	background: url('../images/select-arrow.png') calc(100% - 15px) 50% no-repeat,
				var(--white);
	font-size: 14px;
	color: var(--grey-text-color);
}

.categories-filter form .form-group:not(.but) select option {
	color: var(--head-submenu-color);
}

.categories-filter form .form-group.but {
	width: 100%;
	max-width: 190px;
	margin-bottom: 0;
}

.categories-filter form .form-group.but button {
	background: var(--but-color);
	color: var(--white);
	width: 100%;
}

.categories-filter form .form-group.but button:hover {
	background: var(--light-bg);
	color: var(--but-color);
	width: 100%;
}

.categories-filter form .form-group.but button span::before {
	border-left: 8px solid var(--light-bg);
}

.categories-filter form .form-group.but button span::after {
	border-right: 8px solid var(--light-bg);
}

.load-more-but {
	margin-top: 30px;
	justify-content: center;
}

.load-more-but a {
	width: 100%;
	max-width: 190px;
}

/*--------*/

/*article-block*/

.article-block {
	padding-bottom: 40px;
}

.article-block.section h1 {
	line-height: 1.1;
}

.article-share {
	margin-top: 15px;
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.article-share span {
	font-size: 14px;
	color: var(--grey-text-color);
	margin-right: 16px;
}

.article-share a {
	margin-left: 4px;
	display: block;
	width: 30px;
	height: 30px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.article-share a.linkedin {
	background-image: url('../images/soc2.png');
}

.article-share a.twitter {
	background-image: url('../images/soc3.png');
}

.article-share a.facebook {
	background-image: url('../images/soc5.png');
}

.article-share a.linkedin:hover {
	background-image: url('../images/soc2-hover.png');
}

.article-share a.twitter:hover {
	background-image: url('../images/soc3-hover.png');
}

.article-share a.facebook:hover {
	background-image: url('../images/soc5-hover.png');
}


.article-main-img {
	text-align: center;
	margin-top: 17px;
}

.article-categories {
	font-size: 0;
	text-align: center;
	margin-top: 30px;
}

.article-categories a {
	display: inline-block;
	vertical-align: top;
	line-height: 19px;
	max-height: 19px;
	padding: 0 15px;
	margin-right: 8px;
	margin-bottom: 8px;
	background: var(--cat-tag-bg);
	color: var(--white);
	font-size: 13px;
	text-decoration: none;
}

.article-categories a:hover {
	background: var(--but-color);
}

.article-content {
	margin-top: 15px;
}

.article-donate-block {
	margin-top: 45px;
	padding: 45px 0;
	background: var(--light-bg);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.article-donate-block p {
	text-align: center;
	font-size: 24px;
	color: var(--head-submenu-color);
}

.article-donate-but {
	margin-top: 10px;
	width: 100%;
	max-width: 190px;
}

.article-donate-but a {
	background: var(--but-color);
	color: var(--white);
	width: 100%;
}

.article-donate-but a:hover {
	background: var(--light-bg);
	color: var(--but-color);
	width: 100%;
}

.article-donate-but a span::before {
	border-left: 8px solid var(--light-bg);
}

.article-donate-but a span::after {
	border-right: 8px solid var(--light-bg);
}

.article-about-info {
	margin-top: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.article-about-info .publish-date {
	font-size: 16px;
	color: var(--grey-text-color);
	margin-right: 30px;
}

.article-about-info .author {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.article-about-info .author .icon {
	width: 33px;
	height: 33px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 10px;
}

.article-about-info .author .icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-about-info .author .text {
	font-size: 16px;
	color: var(--grey-text-color);
}

.article-about-info .author .text a {
	text-decoration: none;
	color: var(--but-color);
}

.article-about-info .author .text a:hover {
	text-decoration: underline;
}

.article-bottom-tags {
	margin-top: 20px;
}

.article-bottom-tags .article-categories {
	margin-top: 0;
	text-align: left;
}

.article-comments {
	margin-top: 30px;
}

.article-comments > p {
	font-size: 16px;
	color: var(--head-submenu-color);
}

.article-comments-box {
	list-style: none;
	padding: 0;
	margin: 0;
}

.article-comments-box ul.children {
	padding: 0;
	margin: 0;
	list-style: none;
	padding-left: 70px;
	
}

.article-comment-item.level0 {
	padding-left: 0;
}

.article-comment-item.level1 {
	padding-left: 70px;
}

.article-comment-item.level2 {
	padding-left: 140px;
}

.article-comment-item.level3 {
	padding-left: 210px;
}

.article-comment-item.level4 {
	padding-left: 280px;
}

.article-comment-item {
	margin-top: 20px;
}

.article-comment-author {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.article-comment-author .icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 18px;
}

.article-comment-author .icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-comment-author .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.article-comment-author .text p {
	font-size: 16px;
	font-weight: bold;
	color: var(--head-submenu-color);
}

.article-comment-author .text div.date {
	font-size: 14px;
	color: var(--grey-text-color);
}

.article-comment-text {
	margin-top: 10px;
}

.article-comment-answer-link {
	margin-top: 15px;
}

.article-comment-answer-link a {
	font-size: 16px;
	color: var(--but-color);
}

.article-comment-answer-link a:hover {
	color: var(--text);
	text-decoration: none;
}

/*--------*/

/*related-posts-block*/

.related-posts-block {
	padding-top: 55px;
	padding-bottom: 90px;
}

.related-posts-block.section h2 {
	text-align: center;
}

.related-posts-block .articles {
	margin-top: 15px;
}

.related-posts-block .box {
	min-height: 540px;
	opacity: 1;
	translate: 0;
	max-height: 150000px;
}

/*--------*/

/*author-block*/

.author-block {
	padding-bottom: 30px;
}

.author-box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.author-img {
	width: 100%;
	max-width: 385px;
}

.author-pic {
	width: 100%;
	height: 395px;
	max-height: 395px;
	overflow: hidden;
}

.author-pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-contacts {
	margin-top: 45px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.author-contacts p, .author-contacts h2 {
	font-size: 24px;
	color: var(--head-submenu-color);
	font-weight: normal;
}

.author-contacts .contacts {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	margin-top: 15px;
}

.author-contacts .contacts a {
	font-size: 18px;
	color: var(--but-color);
	line-height: 32px;
	padding-left: 46px;
	position: relative;
}

.author-contacts .contacts a::before {
	width: 32px;
	height: 32px;
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	translate: 0 -50%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.author-contacts .contacts a.email::before {
	background-image: url('../images/foo-email.png');
}

.author-contacts .contacts a:hover {
	color: var(--text);
	text-decoration: none;
}

.author-contacts .social-media {
	margin-top: 15px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}

.author-contacts .social-media a {
	display: block;
	width: 100%;
	max-width: 38px;
	height: 38px;
	margin: 0 5px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.author-contacts .social-media a.facebook {
	background-image: url('../images/soc5-hover.png');
}

.author-info {
	width: 100%;
	max-width: calc(100% - 440px);
}

.author-info-about {
	min-height: 395px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.author-info-about h1 {
	font-size: 36px;
}

.author-posts {
	margin-top: 45px;
}

.author-posts > p, .author-posts > h2 {
	font-size: 24px;
	color: var(--head-submenu-color);
	font-weight: normal;
}

.author-posts-links {
	margin-top: 25px;
	display: flex;
	flex-direction: column;
}

.author-posts-links > *:first-child {
	margin-top: 0 !important;
}

.author-posts-links a {
	font-size: 16px;
	color: var(--text-content);
	margin-top: 20px;
}

.author-posts-links a:hover {
	color: var(--but-color);
	text-decoration: none;
}

/*--------*/

/*donate-why-block*/

.donate-why-block {
	padding-bottom: 30px;
}

.donate-why-box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.donate-why-img {
	width: 100%;
	max-width: 310px;
	height: 310px;
}

.donate-why-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.donate-why-text {
	width: 100%;
	max-width: calc(100% - 360px);
	min-height: 310px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

/*--------*/

/*donate-form-block*/

.donate-form-block {
	padding-top: 30px;
	padding-bottom: 35px;
}

.h4-title {
	font-size: 24px;
	font-weight: normal;
}

.donate-form-box {
	margin-top: 25px;
}

/*--------*/

/**/

.donate-after-block {
	padding-top: 30px;
	padding-bottom: 90px;
}

/*--------*/

/*finished-projects-block*/

.finished-projects-block {
	padding-top: 65px;
	padding-bottom: 120px;
	background: url('../images/blog-bg1.png') left bottom no-repeat, 
				url('../images/blog-bg2.png') right bottom / auto 100% no-repeat, 
				var(--light-bg);
}

.finished-projects-block.section h2 {
	text-align: center;
}

.finished-projects-block .projects-body {
	background: var(--white);
	padding: 15px;
	margin-top: 0;
}

/*--------*/

/*usl-open-block*/

.usl-open-block {
	padding-bottom: 50px;
}

.usl-open-title {
	background: var(--light-bg);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.usl-open-title .title {
	width: 100%;
	max-width: 325px;
	height: 250px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 90px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 20px;
}

.usl-open-title .title h1 {
	font-size: 18px;
	color: var(--but-color);
	line-height: 30px;
	font-weight: normal;
}

.usl-open-title .img {
	width: 100%;
	max-width: calc(100% - 325px);
	height: 250px;
	overflow: hidden;
}

.usl-open-title .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.usl-open-text {
	margin-top: 30px;
}

/*--------*/

/**/

.usl-icons-list-block {
	padding-top: 50px;
	padding-bottom: 50px;
	background: var(--light-bg);
}

.usl-icons-list {
	margin-top: 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 20px;
}

.usl-icons-item {
	display: flex;
	justify-content: space-between;
}

.usl-icons-item .icon {
	width: 52px;
	height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.usl-icons-item .text {
	width: 100%;
	max-width: calc(100% - 82px);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 16px;
	line-height: 24px;
	color: var(--head-submenu-color);
}

/*--------*/

/*usl-content-block*/

.usl-content-block {
	padding-top: 60px;
	padding-bottom: 60px;
}

.usl-content-box.text-content ul {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-top: 30px;
	margin-bottom: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 20px;
}

.usl-content-box.text-content ul li {
	padding-left: 70px;
	background: url('../images/ul-marker1.png') 21px 5px no-repeat;
	font-size: 18px;
	line-height: 24px;
	color: var(--head-submenu-color);
}

/*--------*/

/*project-open-block*/

.project-open-title {
	width: 100%;
	height: 430px;
	overflow: hidden;
	position: relative;
}

.project-open-title img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-open-title .title {
	position: absolute;
	left: 0;
	bottom: 35px;
	max-width: 80%;
	padding: 12px 40px;
	background: var(--dark-green-bg-80);
}

.project-open-title .title h1 {
	font-size: 18px;
	color: var(--white);
	font-weight: normal;
}

/*--------*/

/*project-content-block*/

.project-content-block {
	padding-top: 35px;
	padding-bottom: 60px;
}

.project-content-box .box > *:first-child {
	margin-top: 0 !important;
}

.project-content-box .box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 20px;
}

.project-content-box .box .box-name {
	width: 100%;
	max-width: 215px;
	font-size: 18px;
	font-weight: bold;
	line-height: 24px;
	color: var(--head-submenu-color);
}

.project-content-box .box .box-content {
	width: 100%;
	max-width: calc(100% - 245px);
}

.project-content-box .box .box-content.article-about-info {
	margin-top: 0px;
}

.project-content-box .box .box-content.social-items {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.project-content-box .box .box-content.social-items a {
	width: 46px;
	height: 46px;
	margin-right: 15px;
}

.project-content-box .box .box-content.image-list {
	font-size: 0;
}

.project-content-box .box .box-content.image-list .img-wr {
	margin-right: 20px;
	display: inline-block;
	height: 46px;
	max-height: 46px;
	margin-bottom: 10px;
	vertical-align: top;
}

.project-content-box .box .box-content.image-list .img-wr img {
	max-height: 100%;
	width: auto;
}

.project-content-box .box .box-content .gallery {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 32px;
	margin-bottom: 32px;
}

.project-content-box .box .box-content .gallery figure {
	margin: 0 5px;
}

.project-content-box .box .box-content .gallery .gallery-icon {
	height: 265px;
	overflow: hidden;
}

.project-content-box .box .box-content .gallery .gallery-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-content-box .box .box-content .gallery .slick-arrow {
	font-size: 0;
	width: 48px;
	height: 30px;
	padding: 0;
	margin: 0;
	border: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	background-color: var(--transparent);
	border: 0;
	flex-shrink: 0;
}

.project-content-box .box .box-content .gallery .slick-prev {
	background-image: url('../images/pagin-prev.png');
	margin-right: 24px;
}

.project-content-box .box .box-content .gallery .slick-prev:hover {
	background-image: url('../images/pagin-prev-hover.png');
}

.project-content-box .box .box-content .gallery .slick-next {
	background-image: url('../images/pagin-next.png');
	margin-left: 24px;
}

.project-content-box .box .box-content .gallery .slick-next:hover {
	background-image: url('../images/pagin-next-hover.png');
}

.box-content.video {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

.box-content.video iframe {
	width: 100% !important;
	height: 280px !important;
}

.box-content.images {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

.box-content .image-item {
	height: 440px;
	width: 100%;
	overflow: hidden;
	border: 2px solid var(--sert-border-color);
	padding: 20px;
}

.box-content .image-item a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.box-content .image-item a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.25s ease-out;
}

.box-content .image-item:hover a img {
	scale: 1.05;
	transition: all 0.25s ease-in;
}

/*--------*/

/**/

.wpcf7-not-valid-tip {
	display: none !important;
}

.wpcf7-response-output {
	display: none !important;
}

.tag-title-block h1 span {
	font-size: 20px;
	opacity: 0.6;
}

/*--------*/

/*cookies-notification*/

/*.cookies-notification {
	background: var(--white);
	display: flex;
	justify-content: center;
	position: fixed;
	left: 0;
	bottom: -100%;
	z-index: 20;
	box-shadow: 0 2px 5px var(--box-shadow-but-color);
	padding: 5px 10px;
	opacity: 0;
	transition: all 0.25s ease-in;
}*/

.cookies-notification {
	background: var(--white);
	display: flex;
	justify-content: center;
	position: fixed;
	left: 50%;
	bottom: -100%;
	z-index: 20;
	box-shadow: 0 2px 5px var(--box-shadow-but-color);
	padding: 10px 15px;
	opacity: 0;
	transition: all 0.25s ease-in;
	max-width: 700px;
	text-align: center;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	translate: -50% -20px;
	width: 100%;
}

.cookies-notification.show {
	bottom: 0;
	opacity: 1;
	transition: all 0.25s ease-in;
}

.cookies-notification.hide {
	bottom: -50px;
	opacity: 0;
	transition: all 0.25s ease-in;
}

.cookies-notification.close {
	display: none;
}

.cookies-notification p {
	margin: 0 !important;
	font-size: 12px;
	color: var(--text-content);
}

.cookies-notification .but a {
	height: 34px;
	font-size: 12px;
	padding: 0 10px;
}

/*--------*/

/**/

.search-list {
	display: grid;
	grid-template-columns: 1fr;
	grid-row-gap: 15px;
}

.search-list .article:not(.search-empty) {
	width: 100%;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--header-bottom-border);
}

.search-list .article .title a {
	color: var(--head-submenu-color);
	font-size: 16px;
	text-decoration: underline;
	padding-left: 42px;
	background: url('../images/submenu-marker.png') 15px 50% no-repeat;
}

.search-list .article .title a:hover {
	color: var(--head-submenu-color-hover);
	text-decoration: none;
}

.search-list .article .date {
	padding-left: 42px;
	font-size: 12px;
	color: var(--grey-text-color);
}

.search-list .article.search-empty span {
	color: var(--grey-text-color);
	font-size: 16px;
}

.article.search-form .header-search-box.show {
	top: 0;
	opacity: 1;
	translate: 0 0;
	position: relative;
	padding-left: 0;
	padding-right: 0;
}

.article-form .form-group.but {
	position: relative;
}

.article-form .form-group.but::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -60px;
	translate: 0 -50%;
	border: 2px solid var(--but-color);
	width: 24px;
	height: 24px;
	animation: pulse-rotate 1.5s infinite;
	z-index: 15;
	transition: all 0.25s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.article-form .form-group.but.loading::before {
	visibility: visible;
	opacity: 1;
}

@-webkit-keyframes pulse-rotate {
	0% {
	  	rotate: 0deg;
	}
	25% {
	  	rotate: 45deg;
	}
	50% {
		rotate: 0deg;
	}
	75% {
		rotate: -45deg;
	}
	1000% {
	  	rotate: 0deg;
	}
}

@keyframes pulse-rotate {
	0% {
	  	rotate: 0deg;
	}
	25% {
	  	rotate: 45deg;
	}
	50% {
		rotate: 0deg;
	}
	75% {
		rotate: -45deg;
	}
	1000% {
	  	rotate: 0deg;
	}
}

.notification {
	text-align: center;
	min-height: 24px;
	transition: all 0.25s ease-in-out;
	margin-top: 10px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.notification > div {
	padding: 10px 15px;
}

.notification > div.error-notification {
	color: var(--red);
	background-color: var(--light-red);
	border: 2px solid var(--red);
}

.notification > div.success-notification {
	color: #008200;
	background-color: #a6ffa6;
	border: 2px solid #008200;
}

/*--------*/

/**/

.tag-title h1 {
	font-size: 36px !important;
}

.proj-but-notif {
	position: fixed;
	width: 100%;
	max-width: 180px;
	padding: 10px 15px;
	background-color: rgba(0, 0, 0, 0.85);
	color: var(--white);
	font-size: 13px;
	line-height: 1.2;
	bottom: -100%;
	opacity: 0;
	right: 140px;
	z-index: 15;
	display: flex;
	align-items: center;
	height: 54px;
	transition: all 0.45s ease-in-out;
}

.proj-but-notif.show {
	opacity: 1;
	bottom: 53px;
}

.proj-but-notif::after {
	width: 0px;
	height: 0px;
	border-left: 5px solid rgba(0, 0, 0, 0.85);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	content: "";
	position: absolute;
	left: 100%;
	top: 50%;
	translate: 0 -50%;
}

.donate-but-block {
	padding: 20px 0;
	padding-bottom: 0;
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 100%;
}

.donate-but-block.donate-but.but a {
	display: flex;
	width: auto;
	padding: 0 50px;
	height: 56px;
	font-size: 16px;
}

/*.donate-but-block.donate-but.but a::before {
	border-left: 7px solid var(--white);
}

.donate-but-block.donate-but.but a::after {
	border-right: 7px solid var(--white);
}*/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/

/**/

/*--------*/