@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:wght@400;500;700&display=swap&subset=cyrillic');

p {
	display:block;
	margin: 0;
	font-size: 14px;
}

h1 {
	font-size: 36px;
	font-family: var(--ff-noto);
	margin-bottom: 0;
	margin-top: 20px;
}
h2 {
    font-size: 24px;
    font-family: var(--ff-noto);
    text-align: center;
    color: #000;
    margin: 0px;
    line-height: 1;
}

.text-center {
	text-align: center !important;
}
/* END OVERRIDE */

.slider-carousel.owl-theme .owl-nav {
    width: 100%;
    max-width: 1200;
    top: auto;
    bottom: 130px;
    justify-content: flex-end;
}

/* LAYOUT */
:root {
    --bg-btn-callus: #0063D9;
    --active-blue: #0063D9;
    --bg-gray: #F7F5F5;
    --bg-menu-sub: #F7F5F5;
    --bg-pum-btn-close: #6d6d6d;
    --color-border-main-menu: #a5a5a5;
    --color-gray: #F7F5F5;
    --color-contact-icon: #b2b2b2;
    --color-darkgray: #484848;
    --dark-blue: #042246;
    --ff-base: 'Montserrat', sans-serif;
    --ff-noto: 'Noto Sans', sans-serif;
    --ff-fontawesome-free: 'Font Awesome 5 Free';
}

* {
    text-decoration: none;
    box-sizing: border-box;
}

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

blockquote {background: var(--bg-gray);margin: 20px 0;padding: 40px;}

a {
	transition: 0.3s;
}

a,
a:hover,
a:active,
a:focus,
a:visited {
    color: var(--color-darkgray);
}

a:hover {
	text-decoration: none;
}

html {
    font-family: var(--ff-base);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-darkgray);
}

body {
	width: 100%;
    position: relative;
	display: flex;
	flex-direction: column;
	margin:0;
}

body > main {
	flex: 1;
}

input,
textarea {
	border-radius: 0;
	outline: none !important;
}

textarea {
    overflow: auto;
    resize: vertical;
}

textarea::-webkit-scrollbar,
textarea::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-track {
    width: 6px;
    border: none;
    background: #f1f1f1;
}

textarea::-webkit-scrollbar-button,
textarea::-webkit-scrollbar-track-piece,
textarea::-webkit-scrollbar-corner,
textarea::-webkit-resizer {
    display: none;
}

textarea::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 5px;
}

textarea::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
}

textarea::-webkit-scrollbar-track {
    background-repeat: repeat-y;
    background-size: contain;
}

.bg__activeblue {
	background: var(--active-blue);
}

.bg__white {
	background: #FFF;
}

.bg__gray {
    background: var(--bg-gray);
}

.color__white {
	color: #FFF;	
}

.color__black {
	color: #000;	
}

.color__gray {
	color: var(--color-gray);
}

.color__activeblue {
	color: var(--active-blue);
}

.arrow--next__blue {
	background: center / contain no-repeat url('/wp-content/uploads/2019/12/arrow-next-blue.png') transparent;
}

.text__white { color: #FFF !important; }
.text__black { color: #000 !important; }
.text__blue {color: var(--active-blue) !important;padding: 0 27px 25px;width: max-content;}
.text__normal { font-style: normal !important; }

a.btnlink {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 57px;
	padding: 0 60px;
	font-size: 15px;
	font-weight: bold;
	font-style: italic;
	color: #FFF;
	background: var(--active-blue);
	transition: 0.3s;
}

a.btnlink:hover {
	opacity: 0.9;	
}

/* END LAYOUT */

/* HEADER */

.header {
	background: #00000011;
	position: fixed;
	top: 0;
	width: 100%;
	z-index:100;
}

.whiteI {
    background: #fff !important;
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.2);
}

#header.whiteI .header--search .btn--open {
    color: #000;
}
#header.whiteI .menu--button .burger::before,
#header.whiteI .menu--button .burger::after,
#header.whiteI .menu--button .burger
{
	background: #000;
}

#header.whiteI .menu--button__active .burger:after,
#header.whiteI .menu--button__active .burger:before
{
	background: #fff;
}
#header.whiteI .menu--main .btn--open {
    color: #fff;
}
#header.whiteI.bg__blue .menu--second a {
    color: #000;
}
#header.whiteI.bg__blue .menu--second li:hover > a {
    color: var(--active-blue);
}

#header.whiteI .menu--button.menu--button__active .burger {
    background: transparent;
}

.menu--main {
	position: fixed;
	top: 0;
	left: 0;
	min-width: 100%;
	height: 100%;
	background: #fff;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: -150;
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}

.menu--main__active {
	z-index: 150;
	opacity: 1;
	pointer-events: all;
}

.menu--main > .container {
	height: 100%;
}

.menu--main .menu--grid {
	display: grid;
	width: 100%;
}

.menu--grid__layoutBottom {
	overflow-y: auto;
}

.menu--grid__layoutSearch {
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 101;
}

.menu--grid__layoutSearch .menu--toolbar {
	pointer-events: auto;
}

.menu--header {
	grid-area: header;
}

.menu--toolbar {
	grid-area: toolbar;
	display: flex;
	align-items: center;
	padding-left: 30px;
	padding-right: 50px;
	background: #FFF;
}

.menu--sub .content--inner .sub-menu{
	column-count: 2;
}

.menu--toolbar .menu--searchform {
	flex: 1;
}

.menu--toolbar .form {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}

.menu--toolbar .form .form--text {
	flex: 1;
}

.menu--toolbar .form .form--text input {
	width: 100%;
	border: none;
	outline: none;
	font-size: 18px;
}

.menu--toolbar .form--submit {
	margin-left: 40px;
}

.menu--toolbar .form input[type="submit"] {
	width: 30px;
	height: 30px;
	border: none;
	outline: none;
	cursor: pointer;
	background: center/contain url('/wp-content/uploads/2020/12/search.png') transparent;
}

.menu--toolbar .menu-lang_menu-container {
	margin-left: 40px;
	width: 0;
	overflow: hidden;
	margin: 0;
}

.menu--toolbar .language_menu > li.menu-item-has-children {
	padding: 37px 0;
}

.menu--toolbar .language_menu li.menu-item-has-children:after,
.menu--toolbar .language_menu li.menu-item-has-children > a {
	color: #000 !important;
}

.menu--toolbar .language_menu li.menu-item-has-children:hover:after,
.menu--toolbar .language_menu li.menu-item-has-children:hover > a {
	color: var(--active-blue) !important;
}

.menu--toolbar__stub {
	grid-area: toolbar_stub;
	background: #FFF;
}


.menu--toolbar,
.menu--toolbar__stub {
	position: relative;
}

.menu--toolbar .sub-menu.shadow {
	box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
    z-index: -1;
}

.menu--grid__shadow .menu--toolbar.shadow {
	box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
}

.menu--nav {
	grid-area: nav;
	padding-top: 60px;
	padding-left: 50px;
	padding-right: 30px;
	border-top: 1px solid var(--color-border-main-menu);
}

.menu--sub {
	grid-area: sub;
	flex-direction: column;
	background: var(--bg-menu-sub);
}

.menu--sub .content--inner,
.menu--sub__mobile .content--inner {
	flex: 1;
}

.menu--sub .content--footer,
.menu--sub__mobile .content--footer {
	padding-bottom: 65px;
}

.menu--sub .content--inner > a,
.menu--sub__mobile .content--inner > a {
	display: block;
    font-family: var(--ff-pt);
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 20px;
	margin-bottom: 40px;
    border-bottom: 2px solid var(--color-border-main-menu);
	pointer-events: none;
  	cursor: default;
  	text-decoration: none;
  	color: black;
}

.menu--sub__mobile .btnPrev {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background: center/contain url('/wp-content/uploads/2019/12/arrow-next-black.png') transparent no-repeat;
	position: absolute;
	top: 10px;
	left: calc(50% + 6px);
	transform: translateX(-50%) rotate(180deg);
	cursor: pointer;
}

.menu--sub .sub-menu li,
.menu--sub__mobile .content--inner .sub-menu li {
	margin-bottom: 16px;
}

.menu--sub .sub-menu a,
.menu--sub__mobile .content--inner .sub-menu a {
	font-size: 12px;
	line-height: 16px;
	color:#000;
	transition: none;
}

.menu--sub .sub-menu a:hover,
.menu--sub__mobile .content--inner .sub-menu a:hover {
	color: var(--active-blue);
	border-bottom: 2px solid var(--active-blue);
	margin-bottom: -2px;
}

.menu--sub .content--footer .footer--contacts,
.menu--sub__mobile .content--footer .footer--contacts {
	margin-left: 0;
}

.menu--sub .content--footer .footer--item {
	margin: 0;
}

.menu--sub__mobile .content--footer .footer--item {
	margin: 0 -15px;
	align-items: center;
}

.menu--sub .content--footer .contact--group,
.menu--sub__mobile .content--footer .contact--group {
	margin: 0;
}

.menu--sub__mobile .content--footer .footer--contacts .contact--group:first-child {
}

.menu--sub__mobile .content--footer .social--link {
	margin: 0 15px;
	color: var(--color-contact-icon);
	transition: 0.3s;
}

.menu--sub__mobile .content--footer .social--link:hover {
	color: var(--active-blue);
}

.menu--sub__mobile .content--footer .social--link:first-child {
	margin-left: 0;
}

.menu--sub__mobile .content--footer .social--link:last-child {
	margin-right: 0;
}

.menu--sub__mobile .content {
	display: flex;
    flex-direction: column;
    min-height: calc(100vh - 120px);
}

.menu--sub__stub {
	grid-area: sub_stub;
	background: var(--bg-menu-sub);
}

.menu-side--container .sub-menu {
	display: none;
}

.menu-side--container .menu-item-has-children {
	position: relative;
}

.menu-side--container .menu-item-has-children > a::before {
	position: absolute;
	bottom: 0;
	right: -30px;
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	transition: 0.3s;
}

.menu-side--container > li.menu-item {
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #EAEAEA;
}

.menu-side--container > li.menu-item > a {
	position: relative;
	display: block;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	color: #000;
}

.menu-side--container > li.menu-item-has-children.active > a,
.menu-side--container > li.menu-item:hover > a {
	color: var(--active-blue);
}

.menu--sub__mobile {
    position: absolute;
    width: 100%;
    top: 87px;
    bottom: 0;
	padding-top: 30px;
    background: var(--bg-menu-sub);
    transition: 0.3s;
    left: 110%;
	overflow-y: auto;
}

.menu--sub__mobile.active {
	left: 0;
}

.menu--main-button {
    display: flex;
    justify-content: flex-start;
}

.menu--button__stub {
	position: relative;
    box-sizing: content-box;
	width: 23px;
    height: 16px;
    cursor: pointer;
}

.menu--button {
	position: relative;
    box-sizing: content-box;
	width: 23px;
    height: 16px;
    cursor: pointer;
	display: flex;
	align-items: center;
}

.menu--button .wrapper {
	position: relative;
	width: 0;
	height: 0;
}

.menu--button .burger {
	position: absolute;
	width: 23px;
	height: 2px;
	background-size: 23px 2px;
	top: 0;
	transition: 0.25s;
}

.menu--button .burger::before,
.menu--button .burger::after {
	content: "";
	display: inline-block;
	position: absolute;
	width: 23px;
	height: 2px;
	transform-origin: 0px;
	transition: 0.3s;
}

.menu--button .burger::before {
	top: 8px;
}

.menu--button .burger::after {
	top: -8px;
}

.menu--button .burger::before,
.menu--button .burger::after {
	background: #000;
}

.bg__blue .menu--button .burger,
.menu--main .menu--button .burger {
	background: linear-gradient(to right, #FFF 0%, #FFF 100%) no-repeat center;
	background-size: 23px 2px;
}

.menu--button .burger {
	background: linear-gradient(to right, #000 0%, #000 100%) no-repeat center;
	background-size: 23px 2px;
}


.menu--main .menu--button .burger::before,
.menu--main .menu--button .burger::after,
.bg__blue .menu--button .burger::before,
.bg__blue .menu--button .burger::after {
	background: #FFF;
}

.menu--button__active .burger::before {
	transform: rotate(-45deg);
}

.bg__blue .menu--button__active .burger,
.menu--button__active .burger {
	background-size: 0px 2px;
}

.menu--button__active .burger::after {
	transform: rotate(45deg);
}

.logo img {
    height: 46px;
}

.menu--second {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
    justify-content: center;
}

.menu--second a {
    box-sizing: content-box;
    font-size: 12px;
    color: #000;
    padding: 26px 0;
    transition: color 0.3s;
    font-weight: 600;
}

.bg__blue .menu--second a {
    color: #FFF;
}

.menu--second > li.menu-item:hover > a {
    color: var(--active-blue);
    border-bottom: 3px solid var(--active-blue);
    margin-bottom: -3px;
}

.menu--second > li.menu-item {
	position: relative;
}

.menu--second > li.menu-item > .sub-menu {
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transition: 0.3s;
	position: absolute;
	top: calc(100% + 26px + 3px);
	left: 0;
	background: var(--color-contact-icon);
	z-index: 600;
	width: 320px;
	padding: 20px 20px 10px;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
}

.menu--second > li.menu-item:hover .sub-menu {
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
}

.menu--second > li.menu-item > .sub-menu a {
	color: #FFF;
	transition: 0.3s;
}

.bg__blue .menu--second > li.menu-item > .sub-menu {
	background: #FFF;
}

.bg__blue .menu--second > li.menu-item > .sub-menu a {
	color: var(--dark-blue);
}

#header.whiteI.bg__blue .menu--second > li.menu-item > .sub-menu {
	background: var(--dark-blue);
}

#header.whiteI.bg__blue .menu--second > li.menu-item > .sub-menu a {
	color: #FFF;
}

.menu--second > li.menu-item > .sub-menu a:hover,
.bg__blue .menu--second > li.menu-item > .sub-menu a:hover,
#header.whiteI.bg__blue .menu--second > li.menu-item > .sub-menu a:hover {
	color: var(--active-blue);
}

.menu--second .sub-menu .menu-item {
	margin-left: 0;
	margin-bottom: 10px;
}

.menu--second .sub-menu .menu-item a {
	padding: 0;
}

.menu--second .current-menu-item > a{
	color: var(--active-blue);
}

.header--search {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #000;
    cursor: pointer;
}

.header--search .btn--open {
	color: #000;
}

.bg__blue .header--search .btn--open {
	color: #FFF;
}

.header--search .btn--open:hover {
    color: var(--active-blue);
}

.header--search svg {
    height: 18px;
}

.header--searchform {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -300;
	width: 100%;
	height: 87px;
	background: #FFF;
	box-shadow: 0px 0px 6px 3px rgba(0,0,0,0.2);
	opacity: 0;
	transition: 0.3s;
	overflow: hidden;
}

.header--searchform__show {
	z-index: 300;
	opacity: 1;
}

.header--searchform .form {
	display: flex;
	align-items: center;
	padding: 0 75px;
	height: 100%;
}

.header--searchform .form--text {
	flex: 1;
}

.header--searchform .form--text input {
	position: relative;
	width: 100%;
	font-size: 20px;
	line-height: 32px;
	border: none;
	outline: none;
}

.header--searchform .form--text input::placeholder {
	font-size: 20px;
	line-height: 32px;
}

.header--searchform .form--submit input {
    width: 30px;
    height: 30px;
    border: none;
    outline: none;
    background: center/contain url('/wp-content/uploads/2020/12/search.png') transparent;
}

.header--searchform .form--submit,
.header--searchform .form--close {
	flex: 0 0 auto;
	margin-left: 45px;
}

.header--searchform .form--submit input,
.header--searchform .form--close {
	cursor: pointer;
}

.btn--close {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
}

.btn--close span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 2px;
	background: var(--color-darkgray);
}

.btn--close span:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}

.btn--close span:last-child {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.button--callus a, .form-col-r input[type="submit"] {
    display: inline-flex;
    padding: 0 24px;
    transition: 0.3s;
    height: 44px;
    font-family: var(--ff-noto);
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1;
    background: #fff;
    color: var(
    --active-blue);
    border-radius: 22px;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
}

.button--callus a:hover, 
.whiteI .button--callus a,
.other .button--callus a{
	background: var(--active-blue);
	color: #fff;
}

.other .button--callus a:hover,
.whiteI .button--callus a:hover {
    color: var(--active-blue);
    background: #fff;
    border-color: var(--active-blue);
}

/*Language*/
.menu--lang {
    cursor: pointer;
}

.language_menu {
    padding: 0;
    list-style: none;
	font-size: 12px;
}

.language_menu > li.menu-item-has-children {
	position: relative;
	padding: 29px 0;
}

.language_menu .sub-menu {
	margin: 0;
	padding: 8px;
	list-style: none;
	position: absolute;
	min-width: 100%;
	top: 70%;
	right: -16px;
	display: none;
	background: var(--dark-blue);
	z-index: 10;
}

.whiteI .language_menu .sub-menu {
    background: #fff;
}

.language_menu li:hover .sub-menu {
    display: block;
}

.language_menu .sub-menu .menu-item a {
	display: inline-block;
	padding: 8px;
}

.bg__blue .language_menu .sub-menu {
	background: var(--dark-blue);
}

#header.whiteI.bg__blue .language_menu .sub-menu {
	background: #fff;
}

.language_menu a {
    color: #000;
    text-align: center;
    font-weight: 600;
}

.language_menu .sub-menu a {
    color: #fff !important;!i;!;
}

.bg__blue .menu--toolbar .language_menu li a,
.menu--toolbar .language_menu li a {
    color: #000;
}

.language_menu li {
    text-align: center;
}

/**END Language**/

.bg__blue .menu--lang span {
    color: #FFF;
}

.menu--lang:hover span {
    color: var(--active-blue);
}

.menu-main_ru-container,
.menu-main_en-container {
    flex: 1;
}

.menu--second li {
	margin-left: 20px;
}

@media (max-width: 575.98px) {		
	.menu--main .menu--body {
		height: calc(100vh - 60px);
	}

    .logo img {
        height: 30px;
        width: auto;
    }
	
	.language_menu > li.menu-item-has-children {
		padding: 8px 0;
	}

    .menu--main-button {
        justify-content: center;
    }

    .menu--button {
        padding: 0px;
    }
	
	.header--searchform {
		height: 60px;
	}

	.menu--bar menu-main_ru-container, .menu--bar .menu-main_en-container {
	    display: none;
	}
	
	.header--searchform .form {
		padding: 0 15px;
	}
	
	.header--searchform .form--submit,
	.header--searchform .form--close {
		margin-left: 20px;
	}
	
	.header--searchform .form--submit input {
		width: 25px;
		height: 25px;
	}
}

/* END HEADER */

/* BREADCRUMBS */

.docode-breadcrumb {
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 100px;
	font-weight: 600;
}

.docode-breadcrumb span {
	display: inline-block;
	font-size: 12px;
	color: #000;
	transition: 0.3s;
}

.docode-breadcrumb a:hover span {
	color: var(--active-blue);
}

.docode-breadcrumb .post {
	margin: 0;
}

.docode-breadcrumb .current-item {
	color: var(--active-blue);
}
h1.single--title {
    margin: 0;
}
.upper-text-about {
    margin: 40px 0 50px;
}
/* END BREADCRUMBS */

/* BANNER */

section.banner {
    position: relative;
}

.banner--social-wrap {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.banner--social {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.banner .social--link {
    display: block;
    padding: 15px;
    margin: 15px 0;
    padding-left: 0;
    color: var(--color-gray);
    pointer-events: all;
}

.banner .social--link:hover,
.banner .bg__blue .social--link:hover {
    color: var(--active-blue);
}

.slider-carousel {
    position: relative;
}

.banner_content {
    position: relative;
    height: 640px;
    transition: 0s;
    overflow: hidden;
}

.banner_content img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    object-fit: cover;
    left: 0;
}

.banner-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* padding-bottom: 165px; */
    color: #fff;
    transition: 1s;
    transform: translateX(-1000px);
}

.banner_title {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 60px;
    font-family: var(--ff-noto);
    line-height: 1;
}

.banner_desc {
    margin-bottom: 60px;
}

.banner-text a, a.services--link {
    display: block;
    background: var(--active-blue);
    width: max-content;
    border: 1px solid transparent;
    color: #fff;
    padding: 15px;
    text-transform: uppercase;
    min-width: 150px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1;
    font-family: var(--f-noto);
}

.banner-text a:hover, a.services--link:hover {
    border-color: var(--active-blue);
    background: #fff;
    color: var(--active-blue);
}


.slider-carousel.owl-theme .owl-nav button.owl-prev, 
.slider-carousel.owl-theme .owl-nav button.owl-next {
    margin: 5px;
    border: 1px solid #fff;
    border-radius: 0;
    transition: 0.3s;
}

.slider-carousel.owl-theme .owl-nav button.owl-prev {
    transform: rotate(180deg);
    order: 1;
}

.slider-carousel.owl-theme .owl-nav button.owl-prev img, 
.slider-carousel.owl-theme .owl-nav button.owl-next img {
    margin: 16px 20px;
}

.slider-carousel.owl-theme .owl-nav button.owl-prev:hover,
.slider-carousel.owl-theme .owl-nav button.owl-next:hover {
    background: #ffffff22;
}

.active .banner_content {
    
}

.active .banner-text {
    transform: translateX(0);
}

.banner-filter {
    position: absolute;
    width: 100%;
    opacity: 0.5;
    height: 100%;
    background: #fff;
    transition: 0s;
}

.active .banner-filter {
    opacity: 0;
    transition: 1s;
}

.under-banner {
    position: absolute;
    bottom: 105px;
    width: 100%;
    z-index: 1;
}

.banner-digits {
    display: flex;
    justify-content: flex-end;
    color: #fff;
}

.banner-digits > div {
    margin: 0 5px;
}


/* END BANNER */

/* SERVICES */

.services {
	position: relative;
	padding-bottom: 80px;
}

.services--container {
	display: flex;
	flex-direction: row-reverse;
	align-items: stretch;
}

.services--image {
	/* height: 480px; */
	position: relative;
	/* top: -70px; */
	z-index: 1;
	/* margin-left: 50px; */
}

.services--image img {
	position: absolute;
	width: 70%;
	height: 100%;
	object-fit: cover;
	object-position: 0 -90px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.services--text {
	/* flex: 0 0 50%; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* padding-left: 100px; */
	padding-right: 70px;
}

.services--title {
	position: relative;
	font-family: var(--ff-noto);
	font-size: 36px;
	font-weight: 600;
	padding-bottom: 48px;
	/* padding-top: 55px; */
	text-align: left;
	overflow-wrap: anywhere;
	color: #000;
}

.services--description {
	font-size: 14px;
	margin-bottom: 30px;
}

.services--title span {
    display: none;
    color: var(--active-blue);
}

.services--description p {
    margin: 0 0 20px;
    line-height: 1.5;
}

.sign-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

@keyframes line {
	100% {
		stroke-dashoffset: 0;
	}
}

@-webkit-keyframes anim-hash-bg1 {
	0 {
		background-position: 0 0; 
	}
	100% {
		background-position: 100000px 0; 
	} 
}

.painting {
    display: block;
    position: relative;
}

.painting svg {
    width: 200px;
}

.painting > svg {
    max-width: 150px;
    width: 100%;
}

.st0 {
  opacity: 0;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.animated .st0 {
  opacity: 1;
  animation-name: line;
  fill: transparent;
}

.sign-container {
    display: flex;
    /* position: relative; */
    align-items: center;
    justify-content: space-between;
    margin-top: -20px;
    margin-bottom: 20px;
}

.sign-pic {
    margin: 0 10px;
    flex: 1;
    display: flex;
    justify-content: center;
}

.my_sign {
    margin: auto;
    width: 260px;
    height: 100px;
    position: relative;
}

.my_sign img {
    position: absolute;
    top: -30px;
}

ul.pre-row {
    display: flex;
    padding-left: 15px;
    list-style: square;
    color: var(--active-blue);
    flex-wrap: wrap;
    margin-bottom: 40px;
    font-weight: 600;
}

ul.pre-row li {
    flex: 45%;
    margin-bottom: 10px;
}

ul.pre-row li span {
    color: var(--color-darkgray);
}
/* END SERVICES */

/* NEWS */

.news {
	background: var(--bg-gray);
	padding-bottom: 100px;
	padding-top: 30px;
}

.news--subtitle {
    width: 60%;
    margin: 0 auto 50px;
}

.nn {
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.1);
    display: block;
    margin-bottom: 30px;
}

.post--image {
    height: 250px;
}

.post--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.post--body {
    padding: 30px;
    background: #fff;
}

h3.post--title, p.post--title {
    font-family: var(--ff-noto);
    font-size: 16px;
    margin: 0 0 30px;
    height: 44px;
	font-weight: bold;
}

.post--date {
    font-size: 12px;
}

.post--date span {
    color: var(--active-blue);
}

p.post--description {
    margin: 30px 0;
}

.post--link {
    border-top: 1px solid #dedede;
    padding: 30px 0 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--ff-noto);
    letter-spacing: 1;
    color: var(--active-blue);
}

.post--link svg path {
    fill: var(--active-blue);
}

.post--link svg {
    transform: rotate(180deg);
    width: 10px;
    height: 10px;
    transition: 0.3s;
    margin-left: 10px;
}

.post.post__last:hover .post--link svg {
    margin-left: 20px;
}


/* END NEWS */

/* TEAM */
section.main-team {
    padding: 80px 0;
}

.main-team--image img {width: 100%;}

section.main-team .services--title {
    padding-top: 10px;
    padding-bottom: 30px;
}

ul.main-team-row {
    margin: 40px 0;
    padding: 0;
    list-style: none;
}

ul.main-team-row a:hover {
    color: var(--active-blue);
}

ul.main-team-row li {
    margin-bottom: 10px;
    font-family: var(--ff-noto);
    font-weight: 600;
    display: flex;
    align-items: center;
}

ul.main-team-row li svg {
    margin-right: 15px;
}

.main-team--text {
    margin-left: 50px;
}
/* END TEAM */

/***FORMS***/
form {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.req_star {
    color: #fff;
    margin-left: 5px;
}

.f_wrap {
    width: calc(50% - 10px);
    position: relative;
    margin-bottom: 20px;
}

.f_wrap label {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    top: 11px;
    left: 15px;
    transition: 0.3s;
}
label.onfocus {
    font-size: 10px;
    top: 0px;
}
.f_wrap img {
    position: absolute;
    top: 50%;
    right: 90px;
    transform: translateY(-50%);
    transition: 0.3s;
    pointer-events: none;
}
input[type="submit"]:hover {
    border-color: var(--black);
    color: var(--black);
}

.f_wrap input[type="submit"]:hover + img {
    filter: contrast(0) brightness(0);
    right: 70px;
}
.f_wrap input[type="submit"] {
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1.5;
    background: transparent;
}

form.wpcf7-form  p {
    position: relative;
}

div.wpcf7 .ajax-loader {
    position: absolute;
    width: 40px;
    top: 50%;
    left: 100%;
    height: 40px;
    transform: translateY(-50%);
    background-image: url(/wp-content/uploads/2020/07/Spinner-1s-200px.gif);
    background-size: contain;
    background-repeat: no-repeat;
}

select.wpcf7-form-control.wpcf7-not-valid, 
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.wpcf7-not-valid {
    border: 1px solid #f00;
}

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

.wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0;
}

.wpgdprc *, .wpgdprc :after, .wpgdprc :before {
    box-sizing: inherit;
    color: #fff;
}

.pum-content .wpgdprc *,.pum-content  .wpgdprc :after,.pum-content  .wpgdprc :before {
    color: #000;
}

input[type="text"], input[type="tel"], input[type="email"] {
    padding: 10px 15px;
    width: 100%;
    margin-right: 10px;
    outline: none !important;
    color: inherit;
    height: 40px;
}
textarea{
	padding: 10px 15px;
	width: 100%;
}
section.footer-form {
    background: linear-gradient(to right, var(--active-blue), #626262);
    color: #fff;
    padding: 50px 0;
}

.form-col-l {
    display: flex;
    flex-direction: column;
}

.form-col-r input, .form-col-r textarea {
    border: 1px solid #fff;
    background: transparent;
    height: 40px;
	color: inherit;
}

.wpgdprc a:hover {
    color: var(--active-blue);
}

.wpcf7-wpgdprc.wpcf7-not-valid {
    border: 1px solid #f00;
}

.form-col-r input[type="submit"]:hover {
	color: #fff;
	background: var(--active-blue);
	border-color: var(--active-blue);
}

.form-col-l h2, .form-col-l > p {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--ff-noto);
    color: #fff;
    text-align: left;
    margin-bottom: 30px;
    line-height: 1;
}

div.wpcf7-mail-sent-ok {
	border: none;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: green;
}

.pum-container.popmake{
	background: #ffffff !important;
}

.pum-container.popmake .pum-title.popmake-title {
    color: #000;
    font-family: var(--ff-noto);
    margin-bottom: 30px;
}

.pum-container.popmake .pum-content.popmake-content .f_wrap {
    width: 100%;
}

.pum-container.popmake .pum-content.popmake-content p {
    margin-bottom: 20px;
}

.pum-container.popmake .pum-content.popmake-content .f_wrap .req_star {
    color: var(--active-blue);
}

.pum-container.popmake .pum-content.popmake-content [type="submit"] {
    color: #fff;
    background: var(--active-blue);
    height: 40px;
    padding: 10px;
    min-width: 150px;
    border-radius: 30px;
    border: 1px solid var(--active-blue);
    transition: 0.3s;
}

.pum-container.popmake .pum-content.popmake-content [type="submit"]:hover {
    color: var(--active-blue);
    background: #fff;
}

.pum-container.popmake .pum-close.popmake-close {
   color: #888888;
	background: transparent;
}
.pum-container.popmake .pum-close.popmake-close:before{
	content: url("/wp-content/themes/aser/img/popup-close.svg");
}
/***END FORMS***/

/* FOOTER */
footer.footer {
    background: var(--bg-white);
    border: 1px solid #ddd;
}

.footer--item {
	margin-top: 40px;
	margin-bottom: 30px;
}

.footer .footer-title {
	height: 45px;
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.footer--aboutus .logo {
	width: 180px;
}

.footer--aboutus p.text {
	font-size: 12px;
	margin-bottom: 30px;
	color: var(--color-darkgray);
}

.contact--group {
	margin: 10px 0;
	padding: 0;
}

.contact--group li, .menu-item {
	list-style: none;
}

.contact--group a,
.contact--group p {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	color: var(--color-darkgray);
}

.contact--group a span {
	font-weight: 500;
	margin-left: 10px;
	line-height: 24px;
}

.contact--group i {
	font-size: 15px;
	color: var(--color-contact-icon);
}

.contact--group a:hover,
.contact--group a:hover i {
	color: var(--active-blue);
}

.contact--group li > span {
    display: flex;
    align-items: center;
}

.mess {
    margin-left: 10px;
}

.viber i{
    color: #8f5db7 !important;
}

.whatsapp i {
    color: var(--color-contact-icon);
}

.telegram i {
    /* color: #0088cc !important; */
}

.contacts .card .card--content li span a i {
	margin: 0;
}

.footer--aboutus p {
    color: var(--color-darkgray);
    font-size: 12px;
	margin-bottom: 1em;
	line-height: 24px;
}
.footer--adress a.adress {
	font-size: 12px;
	line-height: 24px;
	color: var(--color-darkgray);
	padding: 0;
	display: block;
	margin-bottom: 10px;
}
.footer--adress a.adress:hover {
    color: var(--active-blue);
}

.footer--services ul {
	padding-left: 15px;
}

.footer--services ul li {
	position: relative;
	font-size: 12px;
	font-weight: 500;
	line-height: 24px;
}

.footer--services ul li a {
	color: var(--color-darkgray);
}

.footer--services ul li a:hover {
	color: var(--active-blue);
}

.footer--socials.footer--item {
	display: flex;
	margin-top: 25px;
	margin-bottom: 50px;
}

.menu--sub .content--footer .social--link, .footer--item .social--link {
    display: flex;
    margin-right: 15px;
    color: var(--active-blue);
    background: var(--bg-gray);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
}

.menu--sub .content--footer .social--link:hover, .footer--item .social--link:hover {
	color: var(--color-darkgray);
}

.footer--menu {
	display: flex;
	align-items: center;
	padding: 0;
}

.footer--menu a {
	font-size: 12px;
	font-weight: bold;
	color: #000;
}

.footer--menu a:hover {
	color: var(--active-blue);
}

.footer--rights {
	background: var(--bg-gray);
}

.footer--rights .row {font-size: 12px;}
.contact.footer img {
    width: 15px;
    filter: grayscale(1);
    opacity: 0.5;
    transition: 0.3s;
}
.contact.footer:hover img {
    filter: grayscale(0);
    opacity: 1;
    transition: 0.3s;
}
.docode_copyright {
    display: flex;
    align-items: center;
    color: #000;
    flex-wrap: wrap;
    width: max-content;
}

.docode_copyright:hover {
    color: var(--active-blue);
}

.docode_copyright span {
    margin-left: 15px;
}

.docode_copyright img {
    filter: grayscale(100%);
    transition: .3s;
	width: 100px;
	position: relative;
}

a.docode_copyright:hover img {
    filter: grayscale(0);
}

.partner-logos img {
    height: 44px;
    margin-left: 10px;
}

.partner-logos {
    display: flex;
    justify-content: flex-end;
}

.footer--rights .sitemap a {
	display: inline-block;
	margin-bottom: 10px;
	color: #000;
	font-size: 12px;
}

.footer--rights .sitemap a:hover {
	color: var(--active-blue);
}

.footer--rights .docode,
.footer--rights .copyright,
.footer--rights .sitemap {
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: center;
}

.footer--rights .sitemap {
	text-align: right;
}

.footer--contacts {
    padding-left: 50px;
}

.footer--menu {
    padding-left: 50px;
}

.footer--menu li {
    margin-right: 40px;
}

.footer--services li {
    color: var(--active-blue);
    list-style: square;
}

.footer--services {
    padding-left: 25px;
}

.footer--item.footer--socials {
    align-items: flex-start;
    justify-content: left;
}
/* END FOOTER */

/* BLOCKS */

/*** title with text ***/
.block--title {
	padding: 30px 0 30px;
}

.block--title h2.title {
	font-family: var(--ff-noto);
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	color: #000;
	margin-bottom: 30px;
}

.block--title h3.subtitle {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    color: var(--active-blue);
}

.block--title h3.subtitle::after {
	content: " ";
    display: block;
    width: 25%;
    height: 2px;
    background: var(--active-blue);
    margin: 30px auto;
}

.block--title .text--wrapper > * {
	color: #000;
	margin-bottom: 18px;
	font-size: 16px;
}

.block--title .text--wrapper > *:last-child {
	margin-bottom: 0;
}

/*** end title with text ***/

/*** image with text ***/

.block--imagetext {
	padding: 50px 0 80px;
}

.block--imagetext .image {
    margin-bottom: 20px;
}

.block--imagetext .image img {
	width: 100%;
}

.block--imagetext .content h3 {
	font-family: var(--ff-pt);
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 40px;
}

.block--imagetext .content p {
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 10px;
}

.block--imagetext .content .txt {
    margin-bottom: 40px;
}

.block--imagetext .content .arrlink {display: block;background: var(--active-blue);width: max-content;border: 1px solid transparent;color: #fff;padding: 15px;text-transform: uppercase;min-width: 150px;text-align: center;font-size: 12px;font-weight: 600;letter-spacing: 1;line-height: 1.2;font-family: var(--f-noto);}

.block--imagetext .content .arrlink:hover {
    background: #fff;
    color: var(--active-blue);
    border: 1px solid var(--active-blue);
}

.block--imagetext h2 {
    margin-bottom: 20px;
    text-align: left;
}
/*** end image with text ***/

/*** numbers  ***/

.block--numbers .numbers--list {
	display: flex;
	flex-wrap: wrap;
	color: #fff;
	padding: 50px 0;
}

.block--numbers .numbers--list .number {
	flex: 1;
	border-right: 1px solid var(--active-blue);
	display: flex;
    align-items: center;
    flex-direction: column;
	padding: 25px;
}

.block--numbers .numbers--list .number:last-child {
	border-right: none;
}

.block--numbers .number .number--num {
	margin-bottom: 10px;
	position: relative;
}

.block--numbers .number .number--value {
	font-family: var(--ff-noto);
	font-size: 48px;
	font-weight: bold;
}

.block--numbers .number .number--sign {
    position: absolute;
    top: 10%;
    font-family: var(--ff-pt);
    font-size: 44px;
    font-weight: 100;
    left: 100%;
    padding-left: 10px;
    color: var(--active-blue);
}

.block--numbers .number .number--name {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}

.block--numbers.bg__blue .number {
	color: #FFF;
}

.block.block--numbers {
    position: relative;
}

.block.block--numbers > img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*** end numbers  ***/

/*** advantages ***/

.block--advantages {
	color: #000;
}

.block--advantages.bg__blue {
	color: #FFF;
}

.block--advantages .advantages--list {
	display: flex;
	flex-wrap: wrap;
	padding: 60px 0;
	margin: -20px;
}

.block--advantages .advantages--list .advantage {
	flex: 1;
	margin: 20px
}

.block--advantages .advantage .advantage--image {
	width: 80px;
	height: 80px;
	margin-bottom: 30px;
}

.block--advantages .advantage .advantage--image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0.5;
}

.block--advantages .advantage .advantage--title {
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
}

.block--advantages .advantage .advantage--title::after {
	content: " ";
	display: block;
	width: 80px;
	height: 2px;
	background: var(--active-blue);
	margin: 15px 0;
}

.block--advantages .advantage .advantage--text {
	font-size: 15px;
    line-height: 18px;
}

/*** end advantages ***/

/*** post ***/

.block--bgpost {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.block--bgpost .bgpost {
	padding: 80px 0;
}

.block--bgpost .bgpost .title {
	font-family: var(--ff-pt);
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 50px;
	
}

.block--bgpost .bgpost .subtitle {
    font-size: 15px;
    font-weight: bold;
    font-style: italic;
    color: var(--active-blue);
    margin-bottom: 20px;
    margin-left: 65px;
    position: relative;
}

.block--bgpost .bgpost .subtitle::before {
	content: " ";
    display: block;
    height: 2px;
    width: 50px;
    background: var(--active-blue);
    position: absolute;
    top: 50%;
    left: -65px;
    transform: translateY(-50%);
}

.block--bgpost .bgpost .text--wrapper {
	font-size: 12px;
	margin-bottom: 40px;
}

.block--bgpost .bgpost .text--wrapper > * {
	line-height: 18px;
	margin-bottom: 18px;
}

.block--bgpost .bgpost .text--wrapper > *:last-child {
	margin-bottom: 0;
}

/*** end post ***/

/*** gallary ***/
dl.gallery-item {
    float: none !important;
    width: auto !important;
    flex: 30%;
}

.wp-caption-text.gallery-caption {
    margin: 10px 0;
}

div.gallery {
    display: flex;
    flex-wrap: wrap;
}

.block--gallary {
    padding: 0 0 45px;
    margin: 0;
}

.block--gallary .gallary--list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.block--gallary .gallary--item {
	flex: 1;
	margin: 0 0 30px;
	position: relative;
	overflow: hidden;
}

.block--gallary .gallary--item .item--image {
	overflow: hidden;
	border: 1px solid #000;
}

.block--gallary .gallary--item .item--image img {
	width: 100%;
	/* height: 100%; */
	object-fit: cover;
	transform: scale(1);
	transition: 0.3s;
}

.block--gallary .gallary--item .item--content {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: 0.3s;
}

.block--gallary .gallary--item:hover .item--content {
	top: 0;
}

.block--gallary .gallary--item:hover .item--image img {
	transform: scale(1.1);
}

.block--gallary .gallary--item .item--title {
	font-family: var(--ff-pt);
    font-size: 24px;
	line-height: 28px;
    font-weight: bold;
    color: #FFF;
}

.block--gallary .gallary--item .item--title::after {
	content: " ";
	display: block;
	width: 75%;
	height: 2px;
	background: var(--active-blue);
	margin-top: 10px;
	margin-bottom: 20px;
}

.block--gallary .gallary--item .item--subtitle {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
}

.block--gallary .gallary--item.gallary--item-fix .item--image {
    height: 300px;
    position: relative;
    border: none;
    width: 100%;
}

.block--gallary .gallary--item.gallary--item-fix .item--image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block--gallary .gallary--item .item--subtitle a {
    color: var(--active-blue);
}

.block--gallary .gallary--item .item--subtitle a:hover {
    color: #000;
}

.gallery-icon{
	overflow: hidden;
}

.gallery-icon img {
    border: 2px solid #cfcfcf;
    width: 90%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    height: 300px;
    object-fit: contain;
    transition: 0.3s;
}

.gallery-icon img:hover {
    border-color: var(--active-blue) !important;
}

.text--wrapper {
    padding-bottom: 50px;
}
/*** end gallary ***/

/*** gallary common ***/
.block--carousel {
    background: var(--bg-gray);
}

.block--owl {
	padding: 0px 0px 80px;
}

.block--owl .owl-theme .owl-dots .owl-dot {
	outline: none;
}

.block--owl .owl-theme .owl-dots .owl-dot span {
    width: 23px;
    height: 3px;
    margin: 5px 4px;
    background: var(--color-gray);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .3s ease;
    border-radius: none;
}

.block--owl .owl-theme .owl-dots .owl-dot.active span {
	background: var(--active-blue);
}

.block--owl .item .item--image {
	overflow: hidden;
	height: 350px;
	width: 100%;
}

.block--owl .item .item--image img {
	transition: 0.3s;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	width: 100%;
}

.block--owl .item .item--content {
	position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 10px 10px 10px;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	border-bottom: 1px solid var(--active-blue);
	transition: top 0.3s;
}

.block--owl .item:hover .item--content {
	top: 0;
}

.block--owl .item .item--title {
	font-family: var(--ff-noto);
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	height: 45px;
	margin: 10px 0 0;
}
.block--owl .item {
    width: 100%;
}

.block--owl a.arrlink.arrlink__blue {
    width: 100%;
}

.owl-carousel-light {
    text-align: center;
}

.owl-carousel-light .item > a:hover {
    box-shadow: 0 0 10px 3px rgba(0,0,0,0.1);
}

.owl-carousel-light .item > a {
    display: block;
}

p.item--text {
    padding: 10px 0 20px 0;
    font-family: var(--ff-noto);
    border-bottom: 1px solid #dedede;
    text-align: center;
    height: 70px;
}
a p.item--text {
    color: var(--active-blue);
}
.owl-carousel-light .owl-nav span {
    font-size: 40;
    line-height: 1;
    display: inline-block;
    padding: 5px 5px 10px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: var(--active-blue);
    text-decoration: none;
}
.owl-carousel-light.owl-theme .owl-nav {
    top: 200px;
}

.item-social a {
    display: flex;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    color: var(--active-blue);
    margin: 0 10px;
}

.item-social {
    display: flex;
    padding-top: 20px;
    justify-content: center;
}

.item-social a:hover {
    color: #000;
}
/*** end gallary common ***/

/*** gallary light ***/

.block--owl__light .item:hover .item--image img {
	filter: grayscale(0);
}

.block--owl__light .item--content .item--title {
	margin-bottom: 20px;
}

.block--owl__light .item--content .item--text {
	font-size: 12px;
	line-height: 18px;
}

/*** end gallary light ***/

/*** editor ***/

.block--editor {
	padding: 30px 0;
}

.block--editor .content > * {
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 18px;
}
.block--editor a,
.block--strs a{
	color: var(--active-blue);
}
.parent-pageid-30 .block--strs a {
	color: #000000 !important;
}
.block--editor .content > *:last-child {
	margin-bottom: 0;
}

.content--wrapper p {
    margin-bottom: 1em;
}
/*** en editor ***/
.block--strs
{
	margin-bottom: 50px;
}
.block--logo_car h2.title,
.block--strs h2.title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #000;
    margin: 0px;
}
.str-row {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    text-align: left;
    border: 1px solid #f0f0f0;
    border-bottom: none;
}
.str-row img {
    max-width: 100%;
    filter: grayscale(1);
    transition: 0.3s;
    max-height: 200px;
    margin: 20px 0;
}
.str-row img:hover {
    filter: grayscale(0);
    transition: 0.3s;
}
.str-row .pic {
    display: flex;
    padding: 10px 40;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
}
.str-row .txt {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
}
.owl-carousel-logos img {
    filter: grayscale(1);
    transition: 0.3s;
}
.owl-carousel-logos img:hover {
    filter: grayscale(0);
    transition: 0.3s;
}

.owl-carousel-logos-c.owl-carousel.owl-theme.owl-loaded.owl-drag {
    margin: auto;
}

.card_title h2 {
    margin-bottom: 50px;
    font-size: 48px;
}

.card-row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px -15px 20px;
}

.card-item {
    display: flex;
    flex-direction: column;
    border: 2px solid #aaa;
    height: 315px;
    overflow: hidden;
    margin: 10px 0;
    padding: 30px;
    transition: 0.3s;
    color: var(--color-darkgray);
}

.card-item:hover {
    border-color: var(--active-blue);
}

.card-item:hover img {
    filter: grayscale(0);
}

.card-cl img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    transition: 0.3s;
}

.card-cl {
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
}
.card-sd {
    text-align: center;
    font-size: 12px;
    padding: 5px;
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
}

.card-sum {
    text-align: center;
    font-size: 24px;
    padding: 10px;
    margin: 0 -30px;
    background: var(--bg-gray);
    color: var(--active-blue);
}
.card-sum.empty {
	padding: 24px;
}
.card-aser img {
    max-width: 100%;
    max-height: 100%;
}

.card-aser {
    height: 35px;
    text-align: center;
}

.card-ye {
    text-align: center;
    font-size: 12px;
    padding: 20px 0 0;
    height: 25px;
}

.cadr-center {
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
    /* height: 115px; */
    margin: auto;
}

.card-item.cl-2 {
    /* height: 350px; */
}

.cl-2 .cadr-center {
    /* height: 120px; */
    margin-top: auto;
}

.card-uc {
    padding: 10px 5px;
    font-size: 12px;
    height: 50px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.card-cl-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100px;
    /* padding: 10px; */
    margin: 0 0px;
}

.card-cl-2 img {
    max-height: 100%;
    max-width: 45%;
    margin: 0 5px;
}


.pvt-container {
    padding: 20px;
    text-align: center;
}

.pvt-title,
.show-calc{
    padding: 20px;
    background: var(--active-blue);
    border-radius: 5px;
    display: inline-block;
    color: #fff;
}

.pvt-end {
    padding: 20px;
    background: var(--active-blue);
    border-radius: 5px;
    display: inline-block;
    color: #fff;
}
.pvt-step {
    padding: 20px;
    position: relative;
}
.pvt-step.l_s {
    border-right: 4px solid var(--active-blue);
    margin-right: calc(50% - 2px);
    text-align: right;
    overflow-wrap: break-word;
    padding-left: 0;
}

.pvt-step.r_s {
    border-left: 4px solid var(--active-blue);
    margin-left: calc(50% - 2px);
    text-align: left;
    padding-right: 0;
}

.l_s:after,
.r_s:before
{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 4px solid var(--active-blue);
    border-radius: 100%;
    background: #fff;
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
}

.l_s:after {right: -12px;}
.r_s:before { left: -12px;}
.pvt-body,
.calc-container{
    display: block !important;
}

.calc-container, 
.calc-result
{
    width: 60%;
    border-radius: 5px;
    padding: 10px;
    margin: 0 auto 20px;
    font-size: 14px;
    background: var(--bg-gray);
}

.calc-item {
    margin: 10px 0;
}

.calc-item select, .calc-item input {
    height: 40px;
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 5px;
    background: #fff;
    padding: 10px;
    outline: none;
	font-size: 14px;
}

.calc-comment {
    padding: 5px 10px;
    font-size: 10px;
}

.calc-item select {
    margin-bottom: 15px;
}

.calc-item input[type="button"] {
    background: var(--active-blue);
    font-size: 18px;
    font-style: italic;
    color: #fff;
    line-height: 1;
    display: inline-block;
    width: auto;
    padding: 10px 30px;
    cursor: pointer;
}
.calc-item input[type="button"]:disabled {
	background: #ccc;
	cursor: no-drop;
}
.calc-item input[type="button"]:hover {
    opacity: 0.9;
}

.calc-result h3 {
    text-align: center;
    font-size: 18px;
}

.calc-result {
    font-size: 12px;
}

.col-4.c-r-head {
    font-weight: 600;
}

.calc-result .row {
    font-weight: 300;
}
.calc-result {
	display:none
}

.pl-row {
    display: flex;
    flex-wrap: wrap;
	margin-top: 20px;
}

.pl-image {
    flex: 25%;
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-image img {
    max-width: 100%;
    max-height: 100px;
    filter: grayscale(1);
    transition: 0.3s;
}

.pl-image img:hover {
    filter: grayscale(0);
}
.owl-carousel-plitka.owl-carousel .owl-item img {
    max-width: 100%;
    margin: auto;
    width: auto;
    max-height: 100%;
    filter: grayscale(1);
    transition: 0.3s;
}

.inner-pl-img {
    height: 100px;
    text-align: center;
    padding: 20px;
}
.owl-carousel-plitka {
    margin-bottom: 40px;
    margin-top: 20px;
}

.owl-carousel-logos .owl-stage,
.owl-carousel-logos-c .owl-stage{
    display: flex;
    align-items: center;
}

.bl-cat-container {
    padding: 10px 0 20px;
    color: var(--active-blue);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}
.block.block--logo_cat {
    margin: 40px 0 60px;
}

.owl-carousel-logos.owl-carousel .owl-item,
.owl-carousel-logos-c.owl-carousel .owl-item {
    max-height: 70px;
}

.owl-carousel-logos.owl-carousel .owl-item img,
.owl-carousel-logos-c.owl-carousel .owl-item img {
    max-width: 90%;
    width: auto;
    max-height: 70px;
    margin: auto;
}
.owl-theme .owl-nav {
    display: flex;
    justify-content: space-between;
    width: 120%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    margin-top: 0;
}

.owl-nav button {
    pointer-events: all;
}

.owl-nav span {
    padding: 10px 5px;
    font-size: 50px;
}
.cat-car-cont {
    display: flex;
    align-items: center;
    padding: 5px;
}

a.page-btn
{
	display: inline-flex;
	padding: 0 24px;
	margin: 10px;
	height: 44px;
	justify-content: center;
	align-items: center;
	font-style: italic;
	font-weight: bold;
	font-size: 14px;
	background: var(--active-blue);
	color: #FFF !important;
	border-radius: 22px;
	transition: 0.3s;
}
a.page-btn:hover{
	opacity:0.7;
}
.block.block--logo_car {
    padding: 20px 0;
    margin-bottom: 80px;
}

/******NEW SERVICE BLOCKS****/
.block--serv--icon {
    background: var(--bg-gray);
    padding: 50px 0 70px;
}

.block--serv--icon h2 {
    font-size: 36px;
    display: inline-block;
    margin-bottom: 50px;
    font-family: var(--ff-noto);
    text-align: left;
}

.si_title {
    /* text-align: center; */
}

.si_subtitle {
    text-align: center;
}

.si_subtitle h3 {
    margin: 0;
    padding-bottom: 50px;
    font-size: 18px;
    display: inline-block;
    width: 80%;
    font-weight: 400;
}

.si-row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-size: cover;
	background-position: center;
}

.si-wrapper {
    background: #fff;
	width: 100%;
    padding: 30px;
    margin: 0 1px;
}

.mb2px{
	margin-bottom: 2px;
}
.mb5px{
	margin-bottom: 5px;
}
.mb50px {
	margin-bottom: 50px;
}

.si-wrapper img {
    max-width: 80px;
    max-height: 80px;
    height: auto;
}

.si-txt {
    margin-top: 30px;
	font-size: 14px;
}
.block--strs h2.title {
	margin-bottom: 50px;
}

.str-row:last-child {
    border-bottom: 1px solid #f0f0f0;
}

.sf-filter {
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--active-blue);
	opacity: 0.6;
}

.sf_subtitle {
    display: flex;
}

.sf_subtitle h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 50px;
    margin-top: auto;
}

.sf-wrapper {
    position: relative;
    border-bottom: 2px solid var(--bg-gray);
    width: 100%;
    display: flex;
}

.sf-txt {
    width: 60%;
    background: #fff;
    padding: 60px 40px 40px 20px;
    display: flex;
    /* align-items: center; */
}

.sf-num {
    position: absolute;
    z-index: 1;
    background: #fff;
    top: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--active-blue);
    font-weight: 600;
    font-size: 16px;
}

.last-fon-block {
    background: var(--bg-gray);
}

.sf-wrapper img {
    position: absolute;
    left: 20px;
    top: 20px;
}

.block_df {
	display: flex;
}


/******END NEW SERVICE BLOCKS****/

/* END BLOCKS  */

/* 404 */

.error-page .error--image {
	margin-bottom: 50px;
}

.error-page .error--image img {
	width: 100%;
}

.error-page .error--title {
	font-family: var(--ff-pt);
	font-size: 36px;
	font-weight: bold;
	/* color: #FFF; */
	text-align: center;
	margin-bottom: 20px;
}

.error-page .error--description {
    font-size: 12px;
    font-weight: 400;
    /* color: #FFF; */
    text-align: center;
    margin-bottom: 25px;
}

.error-page .social--link {
    margin: 15px 0;
    color: #fff;
	transition: 0.3s;
}

.error-page .social--link:hover {
	color: var(--active-blue);
}

.error-page .button--home {
    display: inline-flex;
    padding: 0 24px;
    height: 44px;
    justify-content: center;
    align-items: center;
    font-style: italic;
    font-weight: bold;
    font-size: 12px;
    background: #FFF;;
    color: var(--active-blue);
    border-radius: 22px;
}

.error-page .button--home:hover {
	opacity: 0.7;	
}

/* END 404 */

/* SINGLE NEWS */

.single-post .page-wrapper .page_content-main_img img {
	width: 100%;
    height: auto;
}

.single-post .page-wrapper {
	padding-bottom: 60px;
}

.single-post .single--title {
	margin: 0 0 40px;
}

.single-post .single--date {
	font-size: 14px;
	color: var(--active-blue);
	margin-bottom: 30px;
}

.page_content-main_txt h2 {
    margin: 40px 0 20px;
}

.single-post .page_content-main_txt h2 {
    margin: 5px 0 20px;
}
.single .page_content p {
	/* font-size: 14px; */
	margin-bottom: 15px;
	text-align: justify;
}

.single .page_content p strong {
	font-weight: bold;
}

.single .arrowlink {
	font-size: 14px;
	font-weight: bold;
	font-style: italic;
	margin-top: 15px;
	color: var(--active-blue);
}

.page_content-main_txt p {
    /* text-indent: 20px; */
}

.do-share a {
    filter: grayscale(1);
    margin-top: 20px;
}

.do-share a:hover {
    filter: grayscale(0);
}

.doc_img_row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.doc_img-material {
    width: 50%;
    padding: 20px;
}

.doc_img-material img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.doc_material_btn {
    margin-top: 20px;
    text-align: center;
    background: var(--active-blue);
    color: #fff;
    padding: 10px;
    border: 1px solid var(--active-blue);
    transition: 0.3s;
}

a:hover .doc_material_btn.btn {
    background: #fff;
    color: var(--active-blue);
}
/* END SINGLE NEWS */

/* PAGE "CONTACTS" */

.contacts .page--title {
	font-size: 30px;
	font-weight: bold;
	margin-top: 40px;
	margin-bottom: 50px;
}

.contacts .card--list {
	width: 87%;
	margin: 0 auto;
	padding-bottom: 62px;
}

.contacts .card--list .card {
	flex: 1;
	margin: 1px;
	position: relative;
	background: #FFF;
	} 

.contacts .card .card--image {
	width: 52px;
	height: 52px;
	margin-bottom: 30px;
}

.contacts .card .card--image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.contacts .card .card--title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 20px;
	font-family: var(--ff-noto);
}

.contacts .card .card--content li a,
.contacts .card .card--content li span {
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	transition: 0.3s;
}

.contacts .card .card--content li a:hover {
	color: var(--active-blue);
}
.contacts .card .card--content li a.contact-page {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contacts .card .card--content li a img,
.contacts .card .card--content li a i {
    width: 15px;
    margin-right: 10px;
    height: auto;
    filter: grayscale(1);
    transition: .3s;
}

.contacts .card .card--content li a:hover img, .contacts .card .card--content li a:hover i {
    filter: grayscale(0);
    transition: .3s;
}

.card--content ul {
    list-style: none;
    padding: 0;
}

.card--content ul i {
    margin-right: 10px;
}

.card--content ul li{
	display: flex;
	align-items: center;
}

.form-and-map .content--block {
    margin-bottom: 80px;
}

.form-and-map .form--wrapper {
	flex: 4;
}

.form-and-map .form--wrapper .form--title {font-size: 16px;text-align: left;margin-bottom: 40px;}

.form-and-map .form--wrapper .form--descrition {
	font-size: 14px;
	color: var(--active-blue);
	margin-bottom: 30px;
	display: flex;
}

.addr_name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--ff-noto);
}

.form-and-map .form--wrapper .form--descrition span {
    display: block;
    margin-left: 10px;
    color: var(--color-darkgray);
}

.map--wrapper iframe {
    width: 100%;
}

.form-and-map .map--wrapper {
	flex: 5;
	display: flex;
	align-items: center;
	padding: 0;
}

/* END PAGE "CONTACTS" */

/* PRESSCENTER */

.news--item .news--body > a:first-child {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.presscenter .presscenter--title {
	margin-bottom: 50px;
	margin-top: 0;
}

.presscenter .news--list {
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	margin: -20px -6px;
}

.presscenter .news--item {
	flex: 0 30%;
	display: flex;
	margin: 20px 6px;
	background: #fff;
	flex-wrap: wrap;
	box-shadow: 0px 5px 10px 4px rgba(0, 0, 0, 0.1);
}

.presscenter .news--item > a {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.presscenter .news--item .news--image {
    position: relative;
    height: 230px;
    width: 100%;
}

.presscenter .news--item .news--image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.5);
	transition: 0.3s;
}

.presscenter .news--item.matherials .news--image img {
    object-position: top;
    filter: grayscale(0.5);
}

.presscenter .news--item:hover .news--image img {
    filter: grayscale(0);
}
.presscenter .news--item .news--body {
	flex: 1;
	background: #FFF;
	padding: 25px 27px;
	display: flex;
	flex-direction: column;
}

.presscenter .news--item .news--title {
    font-family: var(--ff-noto);
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;
    padding: 30px;
}

.presscenter .news--item .news--description {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 19px;
	padding: 0 30px;
}

.presscenter .btn_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 40px;
    padding-bottom: 60px;
}

.presscenter .news--item > a.btn,
.single-material a.btn {
    margin: 0 auto 20px;
    justify-content: center;
    align-items: center;
    font-family: var(--ff-noto);
    padding: 15px ;
    background: var(
    --active-blue);
    color: #FFF;
    letter-spacing: 1;
    display: flex;
    text-transform: uppercase;
    font-size: 12px;
    width: max-content;
    margin: auto 30px 30px;
    border: 1px solid var(--active-blue);
}

.presscenter .news--item > a.btn:hover,
.single-material a.btn:hover {
    background: #fff;
    color: var(--active-blue);
}

.news--item .post--link {
    padding: 0 30px;
    border: none;
}

.news--item .post--link:hover svg {
    margin-left: 20px;
}

.presscenter .btn_ajax_post,
.presscenter .btn_ajax_search{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	cursor: pointer;
}

.presscenter .btn_ajax_post .btn_ajax_text,
.presscenter .btn_ajax_search .btn_ajax_text{
	margin-bottom: 17px;
}

.presscenter .btn_ajax_post .btn_ajax_text span,
.presscenter .btn_ajax_search .btn_ajax_text span{
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 5px;
	font-family: var(--ff-noto);
	border-bottom: 2px solid var(--active-blue);
	transition: 0.3s;
}

.presscenter .btn_ajax_post .btn_ajax_text:hover span, .presscenter .btn_ajax_search .btn_ajax_text:hover span {
    color: var(--active-blue);
    border-color: var(--color-darkgray);
}

/* END PRESSCENTER */

/* WP REDACTOR */
.alignright {
    float: right;
    margin: 0 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}
.aligncenter {
    display: block;
    margin: 20px auto;
}

.content {
	line-height: 1.5;
}

.content ul li {
    margin-bottom: 5px;
}

.content ul {
    padding-left: 15px;
    color: var(--active-blue);
    list-style: square;
}

.content ul li span {
    color: var(--color-darkgray);
    font-weight: 500;
}
/* END WP REDACTOR */

/* Uslugi */
.usl-cont img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.usl-cont img:hover {
    max-width: 100%;
    border: 1px solid var(--active-blue);
}

.usl-cont {
    position: relative;
    margin: 10px 0;
    height: 200px;
    overflow: hidden;
}

.usl-name {
    top: 140px;
    position: absolute;
    width: 100%;
    color: #fff;
    padding: 20px;
    font-size: 12px;
    transition: 0.3s;
}

.darker {
    position: absolute;
    width: 100%;
    height: 100%;
   /* background: #000;*/
    opacity: 0.6;
}

.usl-title {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--ff-noto);
    margin-bottom: 20px;
}

.usl-name .post--link {
    border: none;
    padding-top: 20px;
}

.usl-cont:hover .usl-name {
    top: 0;
}

.usl-number {
    position: absolute;
    top: 20px;
    z-index: 1;
    color: #fff;
    right: 20px;
    transition: 0.3s;
}

.usl-cont:hover .usl-number {
    opacity: 0;
}
/* END Uslugi */


.advantagesNew{

	margin-top: 85px;
	margin-bottom: 135px;
}

.advantagesNew-blocks{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: space-between;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;

	margin-top: 40px;

}
.advantagesNew-block__img{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: flex-end;
	align-items: flex-end;
	height: 55px;
}
.advantagesNew-block:first-child{
	border-right: 1px solid #E7E7E7;
	border-bottom: 1px solid #E7E7E7;
}

.advantagesNew-block:last-child{
	border-top: 1px solid #E7E7E7;
	border-left: 1px solid #E7E7E7;
}

.advantagesNew-block:nth-child(2),.advantagesNew-block:nth-child(4){
	
	padding-left: 100px;
}
.advantagesNew-block:nth-child(1),.advantagesNew-block:nth-child(3){
	
	padding-right: 100px;
}

.advantagesNew-block__title{
	font-weight: 600;
}

.advantagesNew-block__text{
	margin-top: 15px;
}

.advantagesNew-block__text p{
	margin: 0;
	line-height: 1.5;
}

.cases_title {
	font-size: 32px;
	font-weight: 700;
	margin: 40px 0 15px;
	text-align: left;
}
.case_section p {
	line-height: 24px;
	word-spacing: 3px;
}
.case_section .page_image {
	margin-top: 40px;
}
.case_section .page_desc {
	margin-top: 40px;
}
.case_section h2 {
	text-align: left;
	margin-top: 40px;
	margin-bottom: 20px;
}
.case_section .page_result {
	margin-bottom: 100px;
}
.case_section .page_content {
	max-width: 880px;
}
.case_section .page_image img {
	max-width: 880px;
	width: 100%;
}
.case_section .page_tabs {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.case_section .page_tabs p {
	line-height: 25px;
}
.case_section .page_tabs .tab {
	width: 45%;
}
.case_section .page_tabs .tab_before {
	background: #F2F7FA;
	box-shadow: 0px 8px 16px rgba(5, 24, 62, 0.25);
	border-radius: 20px;
	color: #041656 !important;
	padding: 20px;
}
.case_section .page_tabs .tab_after {
	background: #041656;
	box-shadow: 0px 8px 16px rgba(5, 24, 62, 0.25);
	border-radius: 20px;
	color: #F2F7FA !important;
	padding: 20px;
}
.case_section .page_tabs .tab_before h2 {
	color: #041656 !important;
	margin-top: 0;
}
.case_section .page_tabs .tab_after h2 {
	color: #F2F7FA !important;
	margin-top: 0;
}
.case_section .arrows {
	display: flex;
	align-items: center;
	width: 110px;
	justify-content: center;
}
.case_section .arrows img:nth-child(1) {
	margin-right: -15px;
}
.case_section .arrows img:nth-child(2) {
	margin-left: -15px;
}

.page_result ol, .page_result ul {
	padding: 0 25px;
	font-size: 14px;
	line-height: 24px;
	word-spacing: 3px;
}
.block.block--logo_car .item a:hover {
	opacity: 0.4;
}
.parent-pageid-30 .block--strs a:hover {
	opacity: 0.4;
}

/****NEW LANG****/
.language_menu {
    display: flex;
    margin-left: auto;
    /* padding: 20px 0; */
    position: relative;
    margin: 0;
}
.language_menu li {
    margin-left: 0;
}

.language_menu li:first-child {
    margin-left: 0;
}

.whiteI.bg__blue .language_menu li.current-lang a, .bg__blue .language_menu li.current-lang a, .language_menu li.current-lang a,.whiteI .language_menu li.current-lang a {
    color: var(--active-blue);
}
.bg__blue .language_menu li a{
	color: #fff;
}

.whiteI.bg__blue .language_menu li a,
.whiteI .language_menu li a{
	color: #000 !important;
}

.whiteI.bg__blue .language_menu li a:hover,
.bg__blue .language_menu li a:hover, 
.language_menu li a:hover {
    color: var(--active-blue) !important;!i;!;
}

.menu--lang {
    margin-left: auto;
    padding: 0;
    margin: 0 10px 0 20px;
    /* overflow: hidden; */
}
/*****END NEW LANG****/
/*****GDRP****/
.feedback--form .wpgdprc {
    color: #fff;
}

.wpgdprc input[type="checkbox"] {
    border: 1px solid #fff;
    width: 12px !important;
    height: 12px !important;
    margin: 0;
}

.fl-1 {
    flex: 1;
    margin: 10px 5px;
    display: flex;
    align-items: center;
}

.fl-1 > span {
    display: block;
}

.fl-1 .wpcf7-list-item {
    margin-left: 50px;
}

.wpgdprc a {
    border-bottom: 1px solid;
    color: inherit;
}

.gdpr_txt{
	display: none;
}

body .btn{
	display: inline-block;
	background: var(--active-blue);
	color: #fff;
	padding:10px 24px;
	border-radius: 22px;
	border: 1px solid var(--active-blue);
	text-align: center;
}
body .btn:hover{
	background: #fff ;
	color: var(--active-blue);
}
body .btn.btn-link{
	color: #0063D9;
	text-decoration: underline;
	border: none;
	background: transparent;
	padding: 0;
}
body .btn.btn-link:hover{
	text-decoration: none;
}
.header.bg__blue .logo-text{
	color: #fff;
}
.header.bg__blue.whiteI .logo-text{
	color: #000;
}
.logo-text{
	font-size:11px;
	font-weight: 400;
	color: #000;
}
.header-phone-list,
.header-worktime__list{
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: 12px;
}
.header-phone-list i,
.header-worktime__list i{
	color: #0063D9;
}

.header-phone-list li {
    display: flex;
    align-items: center;
}

.header-worktime__title{
	font-size: 12px;
	font-weight: bold;
}
.header.bg__blue .contact-page,
.header.bg__blue .header-worktime__list span,
.header.bg__blue .header-worktime__title
{
	color: #fff;
}
.header.bg__blue.whiteI .contact-page,
.header.bg__blue.whiteI .header-worktime__list span,
.header.bg__blue.whiteI .header-worktime__title
{
	color: #000;
}
.header-info-wrap{
	display: none;
}
.header-mobile-phone{
	font-size: 18px;
	color: #000;
}
.header.bg__blue .header-mobile-phone{
	color: #fff;
}
.header.bg__blue.whiteI .header-mobile-phone{
	color: #000;
}
.main-sidebar__footer .contact,
.main-sidebar__footer .contact--group i{
	color: #000;
}
.menu-side--container .menu-item-has-children a{
	position: relative;
}
.menu-side--container .menu-item-has-children a:before{
	content: url("/wp-content/themes/aser/img/arrow_down.svg");
	position: absolute;
	right: 0;
	top: 0;
}
.menu-menu_side_ru-container .menu-side--container{
	padding-left: 0;
}
.header .main-sidebar__footer .header-worktime__title,
.header .main-sidebar__footer .header-worktime__list span
{
	color: #000;
}
header .menu--button.menu--button__active .burger::after,
header .menu--button.menu--button__active .burger::before{
	background: #000!important;
}

.up-btn {
	display: inline-block;
	background: var(--active-blue);
	width: 40px;
	height: 40px;
	text-align: center;
	border-radius: 4px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	transition: background-color .3s,
	opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}
.up-btn::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	line-height: 50px;
	color: #fff;
}
.up-btn:hover {
	cursor: pointer;
	background-color: #333;
}
.up-btn:active {
	background-color: #555;
}
.up-btn.show {
	opacity: 1;
	visibility: visible;
}
.accordion__item {
	margin-bottom: 16px;
	border-radius: 0.25rem;
	box-shadow: 0 0.125rem 0.25rem rgb(0 0 0 / 15%);
}

.accordion__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	color: #484848;
	font-size: 14px;
	font-weight: 500;
	background: #F4F4F4;
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
	cursor: pointer;
	transition: background-color 0.2s ease-out;
}

.accordion__header::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23484848'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-size: 1.25rem;
	content: "";
	transition: transform 0.2s ease-out;
}

.accordion__item_show .accordion__header::after,
.accordion__item_slidedown .accordion__header::after {
	transform: rotate(-180deg);
}

.accordion__header:hover {
	background: #F0F0F0;
}

.accordion__item:not(.accordion__item_show) .accordion__header {
	border-bottom-right-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.accordion__content {
	padding: 0.75rem 1rem;
	background: #fff;
	border-bottom-right-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.accordion__item:not(.accordion__item_show) .accordion__body {
	display: none;
}
.faq-banner{
	border-radius: 8px;
	background: linear-gradient(135deg, #0063D9 0%, #2E81E4 100%);
	padding: 40px 200px 40px 60px;
	position: relative;

}
.faq-banner:before{
	content: url("/wp-content/themes/aser/img/question.svg");
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq-banner__title{
	color: #FFF;
	font-size: 36px;
	font-family: var(--ff-noto);
	font-style: normal;
	font-weight: 700;
	line-height: 50px;
}
.faq-banner__subtitle{
	color: #FFF;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}
body .btn.btn_white{
	color: #0063D9;
	background: #ffffff;
	font-weight: 700;
	cursor: pointer;
}
body .btn.btn_white:hover{
	color: #ffffff;
	background: #0063D9;
}
.portfolio-text__wrapper{
	text-align: left;
}
.portfolio-img{
	width: 427px;
	padding-right: 40px;
	float: left;
}
.portfolio-img img{
	width: 100%;
}
.portfolio-text__wrapper h2{
	text-align: left;
}
.portfolio-wrapper{
	padding-bottom: 50px;
}
body .btn.modal-btn{
	font-size: 11px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	padding: 16px 40px;
}
body .pum-theme-8 .pum-content, .pum-theme-enterprise-blue .pum-content{
	font-family: var(--ff-noto);
}
/****END GDPR*****/

/***************************MEDIA*********************/
.fz-16{
	font-size: 16px;
}
.fw-semi-bold{
	font-weight: 600;
}
.payment_advantages__item a{
	color: #0063D9;
	text-decoration-line: underline;
}
.payment_advantages__item a:hover{
	text-decoration: none;
}
@media (min-width: 576px) {
	.menu--nav {
		padding-top: 30px;
		padding-left: 15px;
	}
	
	.menu--main .menu--grid {
		grid-template-columns: 1fr 540px 1fr;
	}
	
	.menu--grid__layoutTop {
		grid-template-areas:
			"header header header";
		grid-template-rows: 79px;
	}
	
	.menu--grid__layoutSearch,
	.menu--grid__layoutSearch .menu--toolbar {
		display: none;
	}
	
	.menu--grid__layoutBottom {
		height: calc(100vh - 79px);
		grid-template-areas:
			". nav .";
		grid-template-rows: 1fr;
		position: absolute;
		top: 79px;
		bottom: 0;
		overflow-x: hidden;
	}
	
	.menu--sub {
		display: none;
	}
	
	.menu--sub__mobile {
		top: 87px;
	}
	
	.header--searchform .form {
		padding: 0;
		width: 540px;
		margin: 0 auto;
	}
	
	.header--searchform .form--submit,
	.header--searchform .form--close {
		margin-left: 20px;
	}
	
	.contact--group a.contact i {
		font-size: inherit;
	}
	
	.partner-logos img {
		height: 44px;
		margin-left: 10px;
		margin-top: 40px;
	}

	.partner-logos {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.block--numbers .numbers--list .number {
		border-right: none;
		flex: 40%;
	}
	
	.block--advantages .advantages--list {
		margin: -20px;
	}
	
	.block--advantages .advantages--list .advantage {
		flex: 40%;
	}
	
	.block--gallary .gallary--item {
		flex: 40%;
	}
	
	.single-post .page-wrapper .page_content-main_img {
		margin-bottom: 40px;
	}
	.single-post .page-wrapper .page_content-main_txt {
		display: flex;
		flex-direction: column;
		padding-bottom: 40px;
	}
	.single-post .page-wrapper .page_content-main_txt p {
		margin-top: 0;
	}
	.single-post .page-wrapper .page_content-main_txt p {
		margin-top: 0;
	}
	
	.contacts .card--list {
		width: 100%;
	}
	
	.contacts .card--list .card {
		flex: 49%;
	}
	
	.form-and-map .content--block {
		padding: 0;
	}
	
	.form-and-map .form--wrapper {
		padding-bottom: 0;
	}
	
	.form-and-map .form--wrapper,
	.form-and-map .map--wrapper {
		flex: 100%;
	}
	
	.form-and-map .form--wrapper span.wpcf7-not-valid-tip {
		font-size: 10px;
	}
	
	.form-and-map .form--wrapper input[type="submit"] {
		width: 50%;
	}
	
	.presscenter .news--item {
		flex: 50.5%;
	}
}

@media (min-width: 768px) {
	.menu--nav {
		padding-left: 22px;
	}
	.menu--main .menu--grid {
		grid-template-columns: 1fr 720px 1fr;
	}
	
	.header--searchform .form {
		width: 720px;
	}
	
	.header--searchform .form--text {
		padding-left: 30px;
	}
	
	.header--searchform .form--submit,
	.header--searchform .form--close {
		padding: 0 15px;
	}
	
	.presscenter .news--item {
		flex: 1 47.5%;
	}
	
	.slider-carousel.owl-theme .owl-nav {
		max-width: 700px;
	}
	.main_banner .slider-carousel.owl-theme .owl-nav{
		justify-content: space-between;
		top: 50%;
		left: 0;
		transform: translate(0, -50%);
		bottom: auto;
		width: 100%;
		max-width: 100%;
	}
}

@media (min-width: 992px) {
	.slider-carousel.owl-theme .owl-nav {
		max-width: 940px;
	}
	.menu--nav {
		padding-top: 60px;
		padding-left: 45px;
	}
	.menu--main .menu--grid {
		grid-template-columns: 1fr 450px calc(960px - 450px) 1fr;
	}
	
	.menu--grid__layoutTop {
		grid-template-areas:
			"header header header header";
		grid-template-rows: 79px;
	}
	
	.menu--grid__layoutSearch {
		display: grid;
		grid-template-areas:
			". . toolbar toolbar_stub";
		grid-template-rows: 79px;
	}
	
	.menu--grid__layoutSearch.menu--grid__shadow {
		grid-template-areas:
			". . toolbar toolbar";
	}
	
	.menu--grid__layoutSearch .menu--toolbar {
		display: flex;
	}
	
	.menu--grid__layoutBottom {
		grid-template-areas:
			". nav sub sub_stub";
		grid-template-rows: 1fr;
		grid-template-columns: calc((100% - 960px + var(--scr-width)) / 2) 450px calc(960px - 450px) 1fr !important;
	}
	
	.menu--sub__mobile {
		display: none;
	}
	
	.menu--sub {
		display: flex;
	    padding-top: 60px;
    	padding-left: 80px;
    	padding-right: 30px;	
	}
	
	.header--searchform .form {
		width: 960px;
	}
	
	.header--searchform .form--text {
		padding-left: 60px;
	}
	
	.header--searchform .form--close {
		padding-right: 20px;
	}
	
	.footer--rights .sitemap {
		margin-top: 15px;
		margin-bottom: 15px;
	}
	
	.partner-logos {
		display: flex;
		justify-content: space-between;
	}
	
	.block--imagetext .image {
	}
	.image.team-member{
		width: 250px;
		float: right;
		margin: 0 0 20px 40px;
	}
	
	.block--numbers .numbers--list .number {
		flex: 20%;
	}
	
	.block--advantages .advantages--list .advantage {
		flex: 20%;
	}
	
	.contacts .card--list .card {
		flex: 1;
	}
	
	.form-and-map .form--wrapper {
	}
	
	.form-and-map .form--wrapper {
		flex: 4;
	}
	
	.form-and-map .map--wrapper {
		flex: 6;
	}
	
	.form-and-map .form--wrapper span.wpcf7-not-valid-tip {
		font-size: 12px;
	}
	
	.presscenter .news--item {
		flex: 0 31.5%;
	}
}

@media (min-width: 1200px) {
	.menu--nav {
		padding-left: 50px;
	}
	.menu--main .menu--grid {
		grid-template-columns: 1fr 450px calc(100% - 450px) 1fr;
	}
	.menu--grid__layoutBottom {
		grid-template-areas:
			". nav sub sub_stub";
		grid-template-rows: 1fr;
		grid-template-columns: 1fr 450px calc(100% - 450px) 1fr !important;
	}
	
		.header--searchform .form {
		width: 100%;
		padding: 0 75px;
	}
	
	.header--searchform .form--text {
		padding-left: 0;
	}
	
	.header--searchform .form--close {
		padding-right: 0;
	}
	
	.contact--group a.contact i {
		font-size: 16px;
	}
	
	.footer--item {
		margin-top: 35px;
	}
	
	.footer--item .footer-title {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	
	.footer--socials,
	.footer--menu {
		margin-bottom: 30px;
	}
	
	.partner-logos img {
		height: 44px;
		margin-left: 0;
		margin-top: 0;
	}
	
	.block--gallary .gallary--item {
		flex: 30%;
		padding: 2px 15px;
	}

	.block--gallary .gallary--item.col_width_4 {
	    width: calc(25% - 0px);
	    /* display: flex; */
	    flex: unset;
	    height: 410px;
	}

	.block--gallary .gallary--item.col_width_4 > a {
	    display: flex;
	}
	
	.contacts .card--list {
		width: 87%;
	}
	
	.form-and-map .content--block {
	}
	
	.presscenter .news--item {
		flex: 0 32%;
	}
}

@media (min-width: 1250px) {
    .container {
        max-width: 1230px;
    }
	.slider-carousel.owl-theme .owl-nav{
		max-width: 1200px;
	}
	.header-info-wrap{
		display: flex;
		align-items: center;
	}
}

@media (min-width: 1366px) {
    .container {
        max-width: 1366px;
    }
	
	.slider-carousel.owl-theme .owl-nav{
		max-width: 1336px;
	}
	
	.menu--main .menu--grid {
		grid-template-columns: 1fr 387px calc(1366px - 387px) 1fr;
	}
	
	.menu--grid__layoutBottom {
		grid-template-areas:
			". nav sub sub_stub";
		grid-template-rows: 1fr;
		grid-template-columns: calc((100% - 1366px + var(--scr-width)) / 2) 387px calc(1366px - 387px) 1fr !important;
	}
	
	.menu--nav {
		padding-left: 78px;
	}
	
	.header--searchform .form {
		width: 1366px;
	}
} 

@media(max-width:1100px)
{
	.block--owl .item .item--image{
		height: 450px;
	}
	.owl-theme .owl-nav {
		width:110%
	}

	ul.pre-row li {
		flex: 51%;
	}
}

@media (max-width: 991px){
	.advantagesNew-block:nth-child(2),
	.advantagesNew-block:nth-child(4){

		padding-left: 15px;
	}
	.advantagesNew-block:nth-child(1),
	.advantagesNew-block:nth-child(3){

		padding-right: 15px;
	}
	.advantagesNew-block:last-child, 
	.advantagesNew-block:first-child{
		border: none;
		border-bottom: 1px solid #E7E7E7;
	}
	.advantagesNew-block{
		border: none;
		border-bottom: 1px solid #E7E7E7;
	}
	
	.menu--main__active .language_menu li a {
    	color: var(--banner-bg-white);
	}
	
	.menu--main__active .language_menu li.current-lang a {
		color: var(--active-blue);
	}
	
	.menu--lang {
		margin-right: 15px;
	}
	
	.services--image {
		height: 550px;
		top: 0;
		margin-left: 0;
		margin-top: 40px;
	}

	.form-col-l h2 {
		margin-bottom: 20px;
	}

	.f-f-d {
		margin-bottom: 40px;
	}
	
	header .contact--group {
		width: 100%;
		flex: 100%;
	}
	
	.banner--social-wrap {
		top: 100%;
		background: var(--color-darkgray);
		transform: translate(0, -50%);
		width: 100vw;
		left: 0;
		max-width: 100%;
	}

	.banner--social {
		flex-direction: row;
		width: 100%;
		justify-content: center;
	}

	.banner .social--link {
		margin: 10px 20px;
		padding: 0;
	}

	section.services {
		margin-top: 0;
	}
	.usl-name{
		top: 0;
	}
	.faq-banner{
		padding: 40px;
	}
	.faq-banner:before{
		content: none;
	}
}

@media (max-width: 767.98px) {
	.last-fon-block {
		display: none;
	}
	.si-row {
		background-position: right;
	}
	.si-wrapper {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		padding: 20px;
	}

	.si-txt {
		margin-top: 0;
		margin-left: 20px;
	}
	
	.alignright,
	.alignleft{
		float: none;
		display: block;
		margin: 20px auto;
	}
	
	.desc2 {
		position: inherit;
	}

	span.conf {
		margin-left: 13%;
		margin-right: auto;
		width: 100%;
		position: inherit;
	}

	.services--link {
		position: inherit;
		margin-left: 43%;
		margin-right: auto;
	}

	.services--text {
	    padding: 0;
	}
	
	a.services--link {
	    margin-right: 0;
	    margin-left: auto;
	}
	
	.services--image {
		margin-top: 0;
	}

	.my_sign {
	    width: auto;
	    height: 60px;
	}
	
	.case_section .arrows {
		display: none;
	}
	.case_section .page_tabs {
		display: flex;
		flex-direction: column;
	}
	.case_section .page_tabs .tab {
		width: 100%;
		margin: 10px 0;
	}
	
	div.wpgdprc-consent-bar div.wpgdprc-consent-bar__content {
		flex-wrap: wrap;
	}

	div.wpgdprc-consent-bar div.wpgdprc-consent-bar__content p {
		margin-bottom: 10px;
	}
	.banner_title {
		font-size: 30px;
		line-height: 1.2;
		overflow-wrap: anywhere;
	}
	.form-and-map .form--wrapper .form--title{
		font-size: 16px;
	}
	.contacts .card .card--title{
		margin-bottom: 0;
	}
	.faq-banner__title{
		font-size: 28px;
	}
	.faq-banner {
		padding: 20px;
	}
	.portfolio-img{
		float: none;
		max-width: 100%;
		padding-right: 0;
		width: auto;
		margin-bottom: 20px;
	}
}

@media (max-width: 575.98px) {	
	.menu--sub__mobile .content--footer {
		padding-bottom: 15px;
	}
	
	.menu--sub__mobile .content--footer .footer--contacts > * {
		flex: 100%;
		margin-bottom: 15px;
	}
	
	.menu--sub__mobile .content--footer .footer--item {
		justify-content: flex-start;
	}
	
	.menu--sub__mobile .content--footer .social--link:first-child {
		margin-left: 15px;
	}
	
	.menu--nav {
		padding-top: 30px;
		padding-left: 15px;
	}

	.menu--bar {
	    /* height: 79px; */
	}
	
	.menu--main .menu--grid {
		grid-template-columns: 1fr;
		padding-top: 5px;
	}
	
	.menu--grid__layoutTop {
		grid-template-areas:
			"header";
	}
	
	.menu--grid__layoutSearch,
	.menu--grid__layoutSearch .menu--toolbar {
		display: none;
	}
	
	.menu--grid__layoutBottom {
		grid-template-areas:
			"nav";
		grid-template-rows: 1fr;
		position: absolute;
		top: 65px;
		bottom: 0;
		overflow-x: hidden;
	}
	
	.menu--sub {
		display: none;
	}
	
	.menu--sub__mobile {
		top: 87px;
	}	
	.services--image img {
	    width: 100%;
	}
	.contact--group a span {
		margin-left: 7px;
	}
	
	.footer--item {
		margin-top: 0;
	}
	.contact--group a.contact i {
		font-size: inherit;
	}
	.footer--menu {
		flex-wrap: wrap;
		align-items: center;
		padding-left: 0;
	}
	.footer--menu li{
		margin: 0 0 15px 0;
		flex: 0 0 50%;
	}
	.docode_copyright {
		justify-content: center;
	}
	.footer .footer-title {
    	height: 46px;
	}
	
	
	.partner-logos img {
		height: 44px;
		margin-left: 10px;
		margin-top: 40px;
	}

	.partner-logos {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	.block--numbers .numbers--list .number {
		border-right: none;
		flex: 100%;
	}
	
	.block--numbers .numbers--list .number:last-child {
		border-bottom: none;
	}
	
	.block--advantages .advantages--list {
		margin: 0px;
	}
	
	.block--advantages .advantages--list .advantage {
		flex: 100%;
		margin: 20px 0;
	}
	
	.block--gallary .gallary--item {
		flex: 100%;
		padding: 2px;
		height: auto;
	}

	.block--gallary .gallary--item.gallary--item-fix .item--image {
    height: auto;
}

.block--gallary .gallary--item.gallary--item-fix .item--image img {
    position: relative;
    height: auto;
}

	.block--gallary .gallary--list {
	    margin: 0;
	}
	
	dl.gallery-item {
		flex: 55%;
	}
	
	.str-row .pic {
		border-right: none;
	}
	.sf-txt {
		width: 80%;
	}
	.sf-num {
		/* left: 80%; */
	}
	
	.single-post .page-wrapper .page_content-main_img {
		margin-bottom: 30px;
		overflow: hidden;
	}
	
	.contacts .card--list {
		width: 100%;
	}
	
	.contacts .card--list .card {
		flex: 100%;

		display: flex;
		flex-direction: column;
		justify-content: center;

	}
	
	.form-and-map .content--block {
		width: 100%;
		padding: 0;
	}
	
	.form-and-map .form--wrapper {
		padding-bottom: 0;
	}
	
	.form-and-map .form--wrapper,
	.form-and-map .map--wrapper {
		flex: 100%;
	}
	
	.form-and-map .form--wrapper span.wpcf7-not-valid-tip {
		font-size: 10px;
	}
	
	.form-and-map .form--wrapper input[type="submit"] {
		width: 100%;
	}
	
	.presscenter .news--item {
		flex: 100%;
	}
	.presscenter .news--item .news--body {
		display: block;
	}
	.block--serv--icon h2,
	h1, .form-col-l h2, 
	.services--title{
		font-size: 30px;
	}

	.presscenter .news--item > a.btn, .single-material a.btn {
	    margin: 40px 0;
	}
	
	a.arrlink.arrlink__blue {
	    padding: 0;
	}
	
	section.main-team .services--title, .services--title {
		padding: 20px 0;
		font-size: 24px;
	}
	
	.news--subtitle {
		width: 100%;
	}
	
	.banner_content {
		height: 90vh;
	}
	
	.slider-carousel.owl-theme .owl-nav {
		bottom: 0;
		padding: 0 10px;
	}
	
	.doc_img-material {
    	width: 100%;
	}
}

@media(max-width:500px)
{
    .pvt-step {
        font-size: 12px;
    }

    .calc-container, 
	.calc-result {
        width: 100%;
    }

    .pl-image {
        flex: 50%;
    }
	
	.bl-cat-container {
		border-radius: 30px;
		margin: 20px 0;
		height: 60px;
	}
	.owl-theme .owl-nav {
		width: 100%;
	}
	
	.owl-carousel-logos-c.owl-theme .owl-nav {
		width: 100%;
	}
	
	.language_menu {
		padding: 5px 0;
	}

	.header {
		padding: 10px 0;
	}

	.menu--main {
		padding-top: 10px;
	}

	.post--body {
		margin-bottom: 20px;
	}

	.news {
		padding-bottom: 60px;
	}

	.main-team--text {
		margin-left: 0;
	}

	.f_wrap {
		width: 100%;
	}

	.fl-1 .wpcf7-list-item {
		margin-left: 0;
		margin-top: 10px;
	}

	.fl-1 {
		flex: 100%;
	}

	footer.footer {
		padding-top: 50px;
	}

	.footer--contacts {
		padding-left: 0;
	}

	.footer--services {
		padding-left: 0;
	}

	.footer--adress p.adress {
		padding: 0;
	}

	ul.main-team-row a {
		display: flex;
		align-items: flex-start;
	}
	body .pum-theme-7 .pum-container, .pum-theme-lightbox .pum-container{
		padding: 30px;
	}
}

.content--wrapper h2{
		margin: revert;
	}


