@charset "UTF-8";


/* ----  MAIN  ----  */

*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
	margin: 0;
	width: 100%;
	font-family: 'Roboto', 'Helvetica', sans-serif;
	font-size: 16px;
	color: #222;
	text-align: left;
	line-height: 1.6em;
	cursor: default;
}

p {
	margin: 0;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: #222;
}

a:visited {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: normal;
	line-height: 1.5em;
	margin: 0;
}

button {
	cursor: pointer;
}

.section {
	width: 100%;
}

.container {
	max-width: 1080px;
	margin: 0 auto;
}

.nowrap {
	white-space: nowrap;
}

.button {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	padding: 15px 30px;
	background-color: #3C96D0;
	border-radius: 4px;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.35);
	cursor: pointer;
}

.button:hover {
	background-color: #3075A0;
}

iframe {
	border: 0;
}


/* ------------------- */
/*  ----- Header -----  */

header {
	width: 100%;
}

/* --- menu_top --- */
.menu_top {
	background: #363636;
	color: #DCDCDC;
	font-size: 15px;
	font-weight: 500;
}

.mt_box {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
}

.mt_item {
	margin-top: 10px;
	margin-bottom: 8px;
	margin-left: 60px;

	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
.mt_item:first-child {
	margin-left: 0;
}
.mt_item:last-child {
	margin-left: auto;
	margin-right: 0;
}

.mt_tel, .mt_mail, .mt_address {
	margin-left: 10px;
}

/* ----   Call Back   ---- */

.callback_button {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	cursor: pointer;
	background-color: #4587B1;
	font-weight: normal;
	color: #ECEAEA;
	border-radius: 2px;
	padding: 0 22px;
}

.callback_icon {
	margin-right: 10px;
}
.callback_icon svg {
	fill: #ECEAEA;
	margin-top: 6px;
}

.callback_button:hover {
	background-color: #2977A9;
}
.callback_button:hover .callback_but_text {
	border-bottom: 2px dotted;
}

/*  ========  Modal Window  =======  */

.filter_blur_on {
	-webkit-filter: blur(2px);
    filter: blur(2px);
}


.modal_background {
	position: fixed;
	overflow: auto;
	left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.modbackgrnd_hidden {
	display: none;
}

.opacity_block {
	opacity: 0.2;
}

.modal_window {
	position: relative;
	width: 520px;

	background-color: #fff;
	border-radius: 5px;
	margin-top: 150px;
	margin-bottom: 150px;
	margin-left: auto;
    margin-right: auto;
    z-index: 100;
}

.modwin_anima {
	animation: scaleModWin 0.5s, visibModWin 0.6s;
}
/* anima */
@keyframes scaleModWin {
	from {
		transform: scale(0.7);
	}
	to {
		transform: scale(1);
	}
}

@keyframes visibModWin {
	from {
		opacity: 0.6;
	}
	to {
		opacity: 1;
	}
}


.modal_header {
	position: relative;
	width: 100%;
	background-color: #D6202D;
	border-radius: 5px 5px 0 0;
	color: #fff;

	padding: 40px 50px 30px;
}
.modal_header_title {
	text-transform: uppercase;
	font-size: 34px;
	line-height: 1.6em;
	margin-bottom: 20px;
}
.modal_header_text {
	font-size: 17px;
	line-height: 1.4em;
}
.modal_window_close {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 15px;
	right: 10px;
	cursor: pointer;
}

.modal_window_close:before {
	content: '';
    display: block;
    position: absolute;
    width: 26px;
    height: 2px;
    background-color: #fff;

    transform: rotate(45deg);
    top: 15px;
    right: 10px;
}
.modal_window_close:after {
	content: '';
    display: block;
    position: absolute;
    width: 26px;
    height: 2px;
    background-color: #fff;

    transform: rotate(-45deg);
    top: 15px;
    right: 10px;
}

.modal_main {
	width: 100%;
	padding: 30px 50px;
}

.modal_row {
	width: 100%;
	margin-bottom: 20px;
}

.modal_form_label {
	margin-bottom: 3px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.modf_err_span {
	font-size: 14px;
	color: #D21C1C;
}

.modal_form_input {
	width: 100%;
	font-size: 16px;
	font-family: 'Roboto', 'Helvetica', sans-serif;
    font-size: 16px;
    color: #3A3A3A;
	border-radius: 5px;
	border: 1px solid #D0D0D0;
	box-shadow: inset 3px 3px 6px rgba(0,0,0,0.12);

	padding: 16px 20px;
	outline: none;
}
.modal_form_input:focus {
	outline: none;
	border-color: #A2A2A2;
}

.modf_err_input {
	background-color: #FFE8E8;
}

.modf_button_wrap {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

.modal_form_button {
	color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    font-family: 'Roboto', 'Helvetica', sans-serif;
    letter-spacing: 1px;
    border: none;
    outline: none;

    padding: 20px 60px;
    background-color: #3C96D0;
    border-radius: 30px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
    cursor: pointer;
    margin-top: 20px;
}
.modal_form_button:hover {
	background-color: #3A8BBF;
}
.modal_form_button:focus {
	background-color: #3B85B5;
}

/* --- Nav --- */

.navigate {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding-top: 30px;
	padding-bottom: 27px;
}

.logo_top {
	display: flex;
	width: 40%;
}
.logo_icon_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	white-space: nowrap;
}

.logo_name_comp {
	font: bold 17px 'Consolas', sans-serif;
	display: inline-block;
	margin-top: 5px;
}


.logo_text_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-left: 25px;
}

.logo_text {
	display: inline-block;
	width: 100%;
	font-size: 18px;
	font-weight: 700;
	line-height: 27px;
	color: #555555;
}
.abbreviat_text {
	color: #000000;
	font-weight: 900;
}

.menu {
	width: 60%;
}

.menu_list {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	padding: 10px 0;
	margin: 0;
}

.menu_item {
	display: inline-block;
	list-style-type: none;
	margin-left: 24px;
}

.menu_link {
	white-space: nowrap;
}

.menu_link:hover {
	border-bottom: 2px solid #DD2330;
}


/* -------  SLIDER  ------- */

.background_main_sl {
	width: 100%;
	overflow: hidden;

	/*background-color: #2A2A3A;*/
	background-color: #07080C;
	background-color: #030303;
	background-repeat: no-repeat;
    background-size: cover!important;
    background-position: center bottom;
}

.main_slider {
	width: 100%;
	min-height: 600px;
	color: #fff;
	
	background-image: url(images/baner01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;

	display: flex;
	padding-top: 70px;
}

/*.appearImg {
	animation: appslImg 1.3s ease;
}*/

/* -- Анимация появления слайдов -- */
/*@keyframes appslImg {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}*/

.sltitle_header {
	position: relative;
	width: 90%;
	font-size: 39px;
	line-height: 58px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;

	animation: moveSltitle 0.7s, visibSltitle 1.0s;
}

/* -- Анимация появления Титула и текста слайдов -- */
@keyframes moveSltitle {
	from {
		top: -60px;
	}
	to {
		top: 0px;
	}
}

@keyframes visibSltitle {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


.sltitle_text_box {
	width: 100%;
	margin-top: 20px;
}

.sltitle_text {
	display: inline-block;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 32px;
}

.slt_row1 {
	animation: moveSltext-one 0.5s linear, visibSltitle 1.0s;
}

.slt_row2 {
	animation: moveSltext-two 0.8s linear, visibSltitle 1.5s;
}

/* -- Анимация появления Текста слайдов -- */
@keyframes moveSltext-one {
	from {
		margin-top: 40px;
	}
	to {
		margin-top: 0;
	}
}

@keyframes moveSltext-two {
	from {
		margin-top: 15px;
	}
	to {
		margin-top: 0;
	}
}


.sl_but_box {
	display: flex;
	justify-content: center;
	margin-top: 25px;

	animation: visibButton 1.2s;
}

@keyframes visibButton {
	from {
		opacity: 0;
	}
	70% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


/* --- Slider Blocks --- */

.msl_blocks_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	color: #fff;
	margin-top: -220px;
	position: relative;
	z-index: 99;
}

.msl_block {
	width: 32.6%;
	background-color: #DD2330;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.40);
	margin-top: 10px;
}
.msl_block:hover {
	background-color: #465A7C;
}

.activ_sblock {
	background-color: #E26C59;
}

.link_msl_block {
	display: block;
	color: #fff;
	padding: 17px 10px;
}


.msl_title {
	text-transform: none;
	width: 100%;
	text-align: center;
	font-size: 20px;
}

.msl_text {
	display: inline-block;
	width: 100%;
	text-align: center;
	white-space: nowrap;
}




/*------------------------*/
/* -------  Main  ------- */

.page_block {
	margin-top: 35px;
	margin-bottom: 40px;
}

.title_block {
	display: inline-block;
	border-bottom: 3px solid #DD2330;
	margin-bottom: 24px;
}

.h3_title_block {
	font-size: 18px;
	margin-bottom: 15px;
}

/* --- About Company --- */

.about_company_box {
	padding-top: 15px;
	line-height: 1.6em;
}

.years_of_work_box {
	font-family: 'Consolas', sans-serif;
	font-size: 70px;
	font-weight: 900;
	line-height: 0.85em;
	width: 390px;
	float: left;

	color: #A2B8C6;
	border: 10px solid #A2B8C6;
	box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.20);
	padding-top: 105px;
	padding-bottom: 50px;
	padding-left: 40px;
	margin-right: 35px;
	margin-bottom: 12px;
}

.years_work_line01 {
	font-size: 46px;
	margin-bottom: 10px;
	margin-left: 10px;
}
.years_work_line02 {
	font-size: 62px;
	padding-left: 5px;
}
.years_work_line03 {
	font-size: 74px;
	font-weight: 900;
	letter-spacing: 5px;
	padding-left: 3px;
}

.years_bold {
	font-size: 135px;
	font-weight: 500;
	margin-right: 20px;
}

.about_company_p {
	display: inline;
}

.indent_p {
	height: 8px;
}


/*   Button == More about us  */

.about_us_butt {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
	margin-bottom: 30px;
}


/*   Our Partners  */

.our_partners_box {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 56px;
	margin-bottom: 50px;
}

.our_partners_box h3 {
	text-transform: none;
	font-size: 28px;
	font-weight: 500;
}

.our_partners_icons {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	flex-shrink: 0;
	overflow: hidden;

	width: 680px;
	height: 90px;
}

.our_partners_icons div {
	position: absolute;
	width: 136px;
	height: 90px;
	flex-shrink: 0;
	transition: left ease 1s;

	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.partner_icon_01 {
	background-image: url(images/partners/shimplast01.jpg);
}
.partner_icon_02 {
	background-image: url(images/partners/himprom01.jpg);
}
.partner_icon_03 {
	background-image: url(images/partners/gns01.jpg);
}
.partner_icon_04 {
	background-image: url(images/partners/econiiproekt01.jpg);
}
.partner_icon_05 {
	background-image: url(images/partners/gorvodokonal01.jpg);
}
.partner_icon_06 {
	background-image: url(images/partners/ilim01.jpg);
}
.partner_icon_07 {
	background-image: url(images/partners/rzd01.jpg);
}
.partner_icon_08 {
	background-image: url(images/partners/sibmoll01.jpg);
}
.partner_icon_09 {
	background-image: url(images/partners/iayf01.jpg);
}
.partner_icon_10 {
	background-image: url(images/partners/bet01.jpg);
}


/* --- Services --- */

.services_bgr {
	text-align: center;
	background: url(images/bgr01.jpg) repeat;
	background-size: contain;
	padding-top: 35px;
	padding-bottom: 20px;
	padding-left: 40px;
	padding-right: 40px;
}

/* - service title H2 -  */
.none_underline_st {
	border-bottom: none;
}

.ul_styletxt {
	padding-bottom: 5px;
	line-height: 2.0em;
	border-bottom: 3px solid #DD2330;
}
.fff_styletxt {
	color: #fff;
}

.services_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.services_item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/*align-content: flex-end;*/

	width: 31.1%;
	text-align: center;
    background-color: #ECEBEA;
    border-radius: 5px;
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 20px;
}


.service_icon {
	display: flex;
	justify-content: center;
	align-items: center;

	background-color: #fff;
    border-radius: 100%;
    width: 98px;
    height: 98px;
    margin: 20px auto;
}

.service_icon:hover svg {
	width: 74px;
    height: 74px;
}

.service_icon svg {
	width: 64px;
	height: 64px;

	transition: all ease 0.2s;
}

.service_title {
	font-size: 17px;
	line-height: 1.4em;
	margin-bottom: 3px;
}

.service_butt {
	align-self: flex-end;

	margin-top: 40px;
	margin-bottom: 28px;
}


/* ---  Our Advantages  --- */

.our_advantages_block {
	text-align: center;
	padding-top: 25px;
	padding-bottom: 30px;
}

.our_advantages_box {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	text-align: left;
	margin-top: 25px;
}

.our_advantages_item {
	width: 33%;
	background: url(images/logo-pritok-monohrom01.png) no-repeat top left;
	padding-top: 14px;
	padding-left: 33px;
}

.our_advantages_title {
	width: 100%;
	height: 60px;
	font-size: 20px;
	font-weight: 900;
	text-transform: none;
	line-height: 1.3em;
}

.our_advantages_text {
	font-size: 16px;
	line-height: 1.6em;
	padding-right: 5px;
}


/* ---     Works    --- */

.works_bgr {
	background: url(images/works-bgr01.jpg) no-repeat center/cover;

	text-align: center;
	padding-top: 8px;
	padding-bottom: 7px;
}

.works_block {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	flex-shrink: 0;
	width: 100%;
	margin-top: 50px;
	margin-bottom: 40px;
}

/* стрелочки */
.arrow_block {
	width: 45px;
	height: 78px;
	cursor: pointer;
}
.arrow_block svg {
	width: 45px;
}

.arrow_block:hover {
	background-color: rgba(81, 84, 85, 0.3);
}


.works_box {
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden;
}

.works_container {
	width: 330px;
	flex-grow: 1;
	flex-shrink: 0;

	padding-right: 15px;
	padding-left: 15px;

	animation: appearSlw 0.4s ease;
}


/*  Анимация появления слайдов  */
@keyframes appearSlw {
	from {
		opacity: 0.1;
	}
	to {
		opacity: 1;
	}
}


.works_item {
	background-color: #fff;
	box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.15);
}

.works_item:hover {
	box-shadow: 0px 2px 12px 3px rgba(0, 0, 0, 0.25);
}

.works_img_wrapp {
	width: 100%;
	height: auto;
}

.works_item img {
	width: 100%;
	height: auto;
	border: 1px solid #C7CFD5;
}

.works_descrip_box {
	width: 100%;
	min-height: 260px;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 2px;
	padding-left: 12px;
	padding-right: 12px;
	padding-bottom: 10px;
}
.works_descrip_title {
	text-transform: none;
	font-size: 18px;
	line-height: 1.25em;
}
.works_descrip_text {
	line-height: 1.5em;
	margin-top: 10px;
}

.works_butt {
	margin-top: 55px;
}


/* ---     Reviews    --- */

.reviews_block {
	text-align: center;
	padding-top: 25px;
    padding-bottom: 30px;
}

.reviews_box {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	margin-top: 20px;
}

.reviews_item {
	width: 18.6%;
	display: flex;
	align-items: center;
	box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.10);
	border: 2px solid #EBEBEB;
	background-color: #EFEFEF;
}

.reviews_item:hover {
	box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.15);
}

.reviews_item img {
	width: 100%;
	height: auto;
	display: block;
}

.name_company {
	text-transform: none;
	white-space: nowrap;
}


/*------------------------*/
/* -------  Footer  ------- */

footer, footer a {
	color: #fff;
}


.footer_area {
	background-color: #292929;
	padding-top: 2px;
}

.footer_block {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	padding-top: 20px;
    padding-bottom: 5px;
}

.footer_elem {
	width: 33%;

}

.foot_logo_link {
	width: 130px;
}

.foot_logo_link svg {
	width: 72px;
	height: 62px;
}

.foot_logoname {
	font-size: 21px;
	margin-top: 10px;
}


.foot_menu_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}

.foot_menu_item {
	list-style-type: none;
	width: 40%;
	margin-bottom: 10px;
}


.foot_contacts_box {
	padding-left: 90px;
}

.foot_contacts_box p {
	white-space: nowrap;
}

.foot_contacts_title {
	color: #E4E4E4;
	font-size: 20px;
	font-weight: 700;
}

.foot_contacts_descrip {
	margin-top: 10px;
}

.foot_contacts_text {
	line-height: 1.45em;
}

.underline_text {
	text-decoration: underline;
}

/* -- copyright -- */

.copyright_bgr {
	background-color: #1E1E1E;
	color: #EAEAEA;
	padding-top: 15px;
	padding-bottom: 12px;
}

.copyright_box {
	font-size: 15px;
	color: #F1F1F1;
}


/*

==============================================================

*/

/* _________________  PAGE  _________________________ */


.page_banner {
	color: #fff;
	text-align: center;
	background: url(images/page/page-bgr01.jpg) no-repeat top center;
	background-size: cover;
	padding-top: 170px;
	padding-bottom: 30px;
	margin-bottom: 20px;
}

.page_banner a {
	color: #E4E4E4;
}


.page_header_title {
	display: inline-block;
	font-size: 36px;
	border-bottom: 3px solid #DD2330;
}


.nav_page {
	width: 100%;
}

.nav_page_list {
	display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    color: #E4E4E4;
    font-size: 15px;
    font-weight: 700;
    margin-top: 40px;
    padding: 0;
}

.nav_page_item {
	display: inline-block;
	list-style-type: none;
	margin-right: 10px;
}
.nav_prev_arrow:before {
	content: ">";
    margin-right: 5px;
}



/* ---------   Page content   -------- */


.page {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.p_box {
	margin-top: 35px;
	margin-bottom: 40px;
}

.page_content {
	min-height: 700px;

	padding-top: 27px;
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 25px;
	border: 1px solid #E6E6E6;
	border-radius: 8px;
}

.main_page {
	width: 72%;
}

.h2_content_title {
	font-size: 28px;
	line-height: 1.15em;
	text-transform: none;
	margin-bottom: 15px;
}

.title_underline {
	text-decoration: underline;
}

.page_butt {
	margin-top: 35px;
	margin-bottom: 45px;
}

.page_butt .button {
	color: #3C96D0;
	font-weight: bold;
	background-color: #fff;
	border: 2px solid #3C96D0;
	box-shadow: none;
	padding: 10px 30px;
}

.page_butt .button:hover {
	color: #fff;
	background-color: #3C96D0;
}

.up_redline:before {
	content: "";
    display: block;
    width: 100px;
    height: 2px;
    background-color: #DD2330;
    margin-bottom: 10px;
}

/* --  Aside  -- */

.aside_page {
	width: 25%;
	font-size: 15px;
	font-weight: 700;

	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	text-align: center;

}

.aside_page_item {
	width: 100%;
	margin-bottom: 20px;
}

.aside_page_item a {
	display: inline-block;
	width: 100%;
	border: 1px solid #CBCBCB;
	border-radius: 8px;

	padding-top: 12px;
	padding-bottom: 15px;
	padding-left: 10px;
	padding-right: 10px;
}

.aside_page_item a:hover {
	color: #fff;
	background-color: #72B3DC;
}

.apage_active a {
	color: #fff;
	background-color: #3C96D0;
	cursor: default;
}


/* ______________  Company  _________________ */

.page_content li {
	margin-bottom: 7px;
}

.page_content p {
	margin-top: 5px;
	margin-bottom: 7px;
}


/* ______________  Services  _________________ */

.page_area {
	padding-right: 90px;
}

.h2_big_title {
	font-size: 29px;
	line-height: 1.3em;
	margin-bottom: 22px;
}

.h2_big_title:after {
	content: "";
	display: block;
	width: 145px;
	height: 2px;
	background-color: #DD2330;
	margin-top: 7px;
}

.h3_sm_title {
	font-size: 22px;
}
.h3_sm_title:before {
	content: "";
	display: inline-block;
	margin-bottom: 3px;
	margin-right: 14px;
	width: 8px;
	height: 8px;
	background-color: #A0A0A0;
}

.nomark {
	list-style-type: none;
	padding-left: 30px;
	margin-top: 10px;
}

.page_butt_wrapp {
	margin-top: 30px;
	margin-left: 20px;
	margin-bottom: 40px;
}

.services_area h3 {
	margin-left: 12px;
}

.services_area h4 {
	text-transform: none;
	font-size: 18px;
	font-weight: bolder;
	font-style: italic;
	margin-top: 10px;
}

.your_question {
	font-size: 32px;
	font-weight: 500;
	color: #828282;
}

.your_question_smalltext {
	margin-bottom: 25px;
}
.your_question_smalltext:after {
	content: "";
	display: block;
	width: 8px;
	height: 12px;
}

.servic_contacts {
	font-size: 20px;
	font-weight: bold;
}

.import_text_box {
	font-style: italic;
	background-color: #F1F1F1;
	padding: 12px 10px 12px 18px;
	margin-top: 10px;
	margin-bottom: 15px;
}
.import_text_box h4 {
	color: #E04E4C;
}

.bold_text {
	font-weight: bold;
}

.ital_text {
	font-style: italic;
}

.page_link {
	background-color: #F3F3F3;
	padding: 2px 10px;
}


/* ______________  Info  _________________ */


.page_img_box img {
	border: 2px solid #CECECE;
	margin-top: 15px;
	margin-right: 30px;
	margin-bottom: 20px;
}

/*--- Organization Card ---*/

.org_card_box {
	display: flex;
	flex-wrap: wrap;
	font-size: 18px;
	margin-top: 25px;
	margin-bottom: 30px;
}

.org_card_item {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
}

.dr_bgr_org {
	background-color: #f1f1f1;
}
.lig_bgr_org {
	background-color: #f9f9f9;
}

.orgcard_column1, .orgcard_column2 {
	padding: 15px 30px;
	border: 1px solid #EAEAEA;
}

.orgcard_column1 {
	width: 30%;
	font-weight: bold;
}
.orgcard_column2 {
	width: 70%;
}

.orgcard_column2 span {
	white-space: nowrap;
}


/* ______________  Contacts  _________________ */


.cont_title {
	text-transform: none;
	font-size: 28px;
	margin-bottom: 5px;
}

.cont_descrip {
	font-size: 21px;
	font-weight: 500;
	margin-bottom: 7px;
}

.page_contacts_box {
	display: flex;
	flex-wrap: nowrap;
	padding-top: 27px;
	padding-bottom: 30px;
}

.page_contacts_area {
	width: 36%;

	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}

.page_contact_item {
	width: 100%;
	border-radius: 5px;
    background-color: #f2f2f2;
    padding: 22px 10px 15px 30px;
}

.page_contact_item h3:before, .form_client_title:before {
	content: "";
	display: block;
	width: 145px;
	height: 2px;
	background-color: #DD2330;
	margin-bottom: 10px;
}

.page_contact_item h3, .form_client_box h3 {
	text-transform: none;
}
.page_contact_item a {
	display: inline-block;
	width: 100%;
}


.page_contacts_map {
	width: 64%;

	display: flex;
	justify-content: flex-end;

}
.contact_map_box {
	width: 640px;
	height: 510px;

	border-radius: 5px;
    background-color: #f2f2f2;

    display: flex;
    justify-content: center;
    align-items: center;
}

/*   Form Client   */

.form_client_box {
	border-radius: 5px;
    background: url(images/page/mail-background-img02.png) no-repeat right bottom #f2f2f2;

    padding: 22px 10px 15px 30px;
    margin-top: 27px;
}

.form_client_title {
	font-size: 26px;
	margin-bottom: 7px;
}

.form_client_text {
	font-size: 18px;
}

.formcl_main_block {
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}

.formcl_area {
	width: 620px;
	border-radius: 5px;
    background-color: #fff;
    padding: 40px 50px;
}

.formcl_icon {
	display: flex;
	width: 100%;
	justify-content: center;
	margin-top: 10px;
	margin-bottom: 30px;
}

.formcl_form {
	display: flex;
	flex-wrap: wrap;
}

.form_row {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
}

.formcl_label {
	width: 25%;
	text-align: right;
	padding-right: 25px;

	line-height: 1.2em;
}

.formcl_input {
	padding: 0 10px 8px 6px;
	margin-bottom: 30px;
}

.formcl_input {
	width: 70%;
	font-family: 'Roboto', 'Helvetica', sans-serif;
	font-size: 16px;
	color: #555;

	border: none;
	border-bottom: 2px solid #BBBBBB;
}

/* -убираем стрелочки у input- */
/*
.inptel {
	-moz-appearance: textfield;
}
.inptel::-webkit-outer-spin-button,
.inptel::-webkit-inner-spin-button {
	display: none;
}*/

.formcl_textarea {
	height: 105px;
	padding: 0 6px 6px 6px;
	margin-bottom: 35px;
}

.formtext_correct {
	display: inline;
	width: 100%;
	font-size: 12px;
	color: #9E9E9E;
	/*  скрыть */
	display: none;
}

.formcl_input:focus {
	outline: none;
	color: #222;
	border-bottom: 2px solid #DD2330;
}

.formcl_button {
	margin-left: auto;
	margin-right: auto;
	font-family: 'Roboto', 'Helvetica', sans-serif;
	font-size: 16px;
	padding: 15px 40px;

	border: none;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
}

/*  Хак для автозаполнения полей -input- формы
chrom красит в желтый  */
@-webkit-keyframes autofill {
  to {
    color: #555;
    background: transparent;
  }
}

input:-webkit-autofill {
	-webkit-animation-name: autofill;
  	-webkit-animation-fill-mode: both;
}

/*   Если ошибка заполнения формы   */

.input_error {
	display: block;
	position: absolute;
	left: 25%;
	bottom: 0;

	padding: 5px 15px;
	background-color: #FFF;
	border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.2);
}

.input_error:after {
	content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 6px;
    top: -12px;
    left: 10%;
    border-bottom-color: #fff;
}

.hidden_err {
	display: none;
}

/* ------------ Webform  Message --------------  */

.webform_message {
	display: flex;
	justify-content: center;
	width: 100%;

	margin-top: 0;
	margin-bottom: 20px;
}

.webform_message_text {
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.1em;
}
.webform_message_textcorrect {
	font-size: 0.9em;
	font-weight: normal;
}

/* -- Tick-Mark -- */
.tick-mark {
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	flex-shrink: 0;

	background-color: #30CC52;
	margin-top: 5px;
	margin-right: 15px;
}
.check-sign {
    position: absolute;
    background-color: #fff;
}
.check-part-1 {
    width: 8px;
    height: 4px;    
    transform: rotate(45deg);
    left: 6px;
    top: 13px;
}
.check-part-2 {
    width: 15px;
    height: 4px;    
    transform: rotate(-45deg);
    left: 10px;
    top: 13px;
}






