.preloaderBG {
    z-index: 9999;
    position: fixed;
	top: 0;
    display: block;
    width: 100%;
    height: 100vh;
    background: #fff;
    opacity: 1;
	animation: preloader_hide 1s 2s ease-in-out forwards, decrease 1s 3s ease-in-out forwards;
    -o-animation: preloader_hide 1s 2s ease-in-out forwards, decrease 1s 3s ease-in-out forwards;
    -moz-animation: preloader_hide 1s 2s ease-in-out forwards, decrease 1s 3s ease-in-out forwards;
    -ms-animation: preloader_hide 1s 2s ease-in-out forwards, decrease 1s 3s ease-in-out forwards;
    -webkit-animation: preloader_hide 1s 2s ease-in-out forwards, decrease 1s 3s ease-in-out forwards
}

@media only screen and (max-width : 600px) {
	.preloaderBG {
		z-index: 9999;
    	top: 0px;
        width: 100%;
        height: 100vh;
    }
}

.preloaderBG .pre_logo_pulse {
	position: absolute;
	top: 50%;
	left: 50%; 
	transform: translate(-50%, -50%); 
	border-radius: 50%; 
	background: #EA131B;
}

.preloaderBG .pre_logo_pulse .pre_logo {
	border-radius: 50%;
	background: #fff;
	display: flex;
	padding: 5px;
	box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
	height: 70px;
	width: 70px;
}

.preloaderBG .pre_logo_pulse .pre_logo .c_01 {
	border: 1px solid #e6e6e6;
	height: 60px; 
	width: 60px; 
	border-radius: 50%; 
}

@keyframes preloader_hide {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes decrease {
    0% {
        width: 100%
    }
    to {
        width: 0%
    }
}

.pulse2 {
    overflow: initial;
    position: relative;
}

.pulse2::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    -webkit-animation: pulse-animation2 3s cubic-bezier(0.24, 0, 0.38, 1);
    animation: pulse-animation2 2.55s cubic-bezier(0.24, 0, 0.38, 1);
    z-index: -1;
	
}

@-webkit-keyframes pulse-animation2 {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 0.5;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
	40% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
	60% {
        opacity: 0.5;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
	80% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(20);
        transform: scale(20);
    }
}

@keyframes pulse-animation2 {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    20% {
        opacity: 0.5;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
	40% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
	60% {
        opacity: 0.5;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
	80% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(20);
        transform: scale(20);
    }
}

html {
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    line-height: 1.38;
    font-weight: 400;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

body {
    margin: 0; }

img {
    border: 0; }

pre {
    overflow: auto; }

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em; }

button, select {
    text-transform: none; }

textarea {
    overflow: auto; }

table {
    border-collapse: collapse;
    border-spacing: 0; }

td, th {
    padding: 0; }

html {
    box-sizing: border-box; }

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

ul {
    list-style-type: none; }

a {
    cursor: pointer;
    color: #0662de;
    text-decoration: none; }

.vertical-align {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }

ul {
    padding: 0; }
    ul li {
        list-style-type: none; }

/* Контейнер */

.container {
    position: relative;
    margin: 0 auto;
    width: 1024px;
}
    
@media only screen and (max-width : 601px) {
    .container {
         width: calc(100% - 50px);
    }
}

/* Форматирование */

.center {
    text-align: center; }

.left {
    float: left !important; }

.right {
    float: right !important; }

/* Запрет поворота телефона */

.mobile-landscape {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    z-index: 9999;
    overflow: hidden;
    display: none;
}

.mobile-landscape .text_container {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
	font-size: 17px;
	line-height: 22px;
	font-weight: 500;
    color: #fff;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.mobile-landscape .text_container .title {
	display: block;
	font-style: normal;
	line-height: 28px;
    font-size: 28px;
	font-weight: 600;
    margin-bottom: 10px;
	color: #fff;
}

@media (max-width : 768px) and (orientation: landscape) {
    .mobile-landscape {
        display: block !important;
    }
    html, body {
        overflow: hidden;
    }
}

@media (max-width : 414px) {
    .mobile-landscape {
        display: none !important;
    }
    html, body {
        overflow: auto;
    }
}

/*-------- Мобильное меню (старое) --------*/

.header {
    display: none;
}

@media only screen and (max-width: 1020px) {
    .header {
        position: fixed;
        display: block;
        top: -75px;
        left: 0px;
        height: 75px;
        width: 100%;
        background: #fff;
        overflow: hidden;
        border-bottom: 1px solid #ebebeb;
        -webkit-transition: all 0.2s ease, background 1s ease-out;
        transition: all 0.3s ease, background 1s ease-out;
        z-index: 1;
    }
    .header.show {
        top: 0;
    }
    .header.menu-opened {
        top: 0;
        height: 100vh;
        background: #fff;
        box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.25);
        -webkit-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }
    .burger-container {
        float: right;
        display: inline-block;
        height: 74px;
        width: 75px;
        cursor: pointer;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    .burger-container #burger {
        width: 18px;
        height: 8px;
        position: relative;
        display: block;
        margin: -4px auto 0;
        top: 50%;
    }
    .burger-container #burger .bar {
        height: 2px;
        background: #000;
        -webkit-transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }
    .burger-container #burger .bar.topBar {
        -webkit-transform: translateY(0px) rotate(0deg);
        transform: translateY(0px) rotate(0deg);
    }
    .burger-container #burger .bar.btmBar {
        -webkit-transform: translateY(6px) rotate(0deg);
        transform: translateY(6px) rotate(0deg);
    }
    .menu-opened .burger-container {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        margin-top: 1px;
    }
    .menu-opened .burger-container #burger .bar {
        -webkit-transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
        -webkit-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }
    .menu-opened .burger-container #burger .bar.topBar {
        -webkit-transform: translateY(4px) rotate(45deg);
        transform: translateY(4px) rotate(45deg);
    }
    .menu-opened .burger-container #burger .bar.btmBar {
        -webkit-transform: translateY(2px) rotate(-45deg);
        transform: translateY(2px) rotate(-45deg);
    }
    .header ul.menu {
        position: absolute;
        top: 60px;
        left: 50px;
        right: 50px;
        margin-top: 0;
        padding: 0;
        opacity: 0;
        transition: 0s;
        transition-delay: 0s;
    }
    .header.menu-opened ul.menu {
        top: 50px;
        opacity: 1;
        transition: opacity 1s;
        transition-delay: 0.3s;
    }
    .header ul li {
        text-align: center;
        height: 50px;
        line-height: 50px;
    }
    .header ul li a {
        font-size: 24px;
        color: #000;
        width: 100%;
        height: 50px;
        line-height: 50px;
        transition: 0.3s;
    }
    .header ul li a:hover {
        color: rgba(0, 0, 0, 0.3);
    }
    .logo-hide {
        opacity: 0 !important;
    }
}

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

.main-content {
    position: relative;
    overflow: hidden;
}

.sub-content {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    background: #fff;
    -webkit-transform: translateX(0) scale(1);
    -moz-transform: translateX(0) scale(1);
    -ms-transform: translateX(0) scale(1);
    -o-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
    -webkit-transition: transform 0.7s;
    -moz-transition: transform 0.7s;
    -ms-transition: transform 0.7s;
    -o-transition: transform 0.7s;
    transition: transform 0.7s;
    -webkit-box-shadow: 0 1px 40px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 40px 0 rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 1px 40px 0 rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 1px 40px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 40px 0 rgba(0, 0, 0, 0.3);
}

.sub-content.scaled {
    -webkit-transform: translateX(0px) scale(0.95);
    -moz-transform: translateX(0px) scale(0.95);
    -ms-transform: translateX(0px) scale(0.95);
    -o-transform: translateX(0px) scale(0.95);
    transform: translateX(0px) scale(0.95);
}

.sub-content.abs {
    position: absolute;
}

.sub-content .lock-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 2;
    display: none;
}

.sub-content.scaled .lock-overlay {
    display: block;
}

.right_menu {
    height: 100vh;
    width: 380px;
    background: #F2F3F4;
    position: fixed;
    top: 0;
    right: -420px;
    z-index: 9999;
    box-shadow: 0 1px 40px 0 rgba(0, 0, 0, 0.3);
    transition: 0.7s;
}

.right_menu.open {
    right: 0;
}

@media only screen and (max-width: 600px) {
    .sub-content.scaled {
        -webkit-transform: translateX(0px) scale(0.8);
        -moz-transform: translateX(0px) scale(0.8);
        -ms-transform: translateX(0px) scale(0.8);
        -o-transform: translateX(0px) scale(0.8);
        transform: translateX(0px) scale(0.8);
    }
    .right_menu {
        height: 100vh;
        width: 100vw;
        right: -110vw;
        padding: 30px;
    }
    
    .right_menu.open {
        right: 0;
    }
}

/*-- Кнопки --*/

.btn {
    border: none;
    -webkit-appearance: none;
    display: inline-block;
    font-weight: 600;
    border-radius: 3px;
    height: 50px;
    line-height: 50px;
    padding: 0 40px;
    background: #ff400a;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    vertical-align: middle;
    outline: none;
    font-size: 14px;
    transition: 0.3s; 
}

.btn_icon {
	padding-left: 0;
}

.btn span {
	opacity: 0.5; 
	font-size: 12px;
	margin-left: 2px;
}

.btn_icon img {
	float: left; 
	margin-top: 14px; 
	margin-left: 14px; 
	padding-right: 13px; 
	margin-right: 25px; 
	border-right: 1px solid rgba(255, 255, 255, 0.2); 
	height: 22px;
}

.btn_icon2 {
	padding-left: 0;
}

.btn_icon2 img {
	float: left; 
	margin-top: 14px; 
	margin-left: 14px; 
	padding-right: 13px; 
	margin-right: 25px; 
	border-right: 1px solid rgba(0, 0, 0, 0.15); 
	height: 22px;
}

.color_btn {
	color: #fff !important;
    background: #EA131B;
	transition: 0.3s;
}

.color_btn:hover{
	background: #b50f15;
}

.color_btn2 {
	color: #4C4C4C !important;
    border: 1px solid #E4E4E4;
	background: #fff;
    transition: 0.25s;
	line-height: 48px;
}

.color_btn2:hover {
	background: #EEF3F0;
}

.dis_btn {
	cursor: default !important;
	background: #fff !important;
	font-weight: 500;
	color: #7c7c7c;
}

.link_pk {
	font-weight: 700;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

.link_pk.white {
    color: #4b4b4b;
}

.link_pk:hover {
    opacity: 0.4;
}

@media only screen and (max-width: 600px) {
    .btn {
        padding: 0 30px;
		overflow: hidden;
    }
}


/*-- Мобильное меню --*/

.menu_mob_btn {
	display: none;
	position: fixed;
	top: 25px;
	right: 25px;
	height: 50px;
	width: 50px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.25);
	z-index: 5;
	background: #fff url(../image/menu_icon.svg);
	transition: box-shadow 0.25s;
}

.menu_mob_btn.close {
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	background: #f4f4f4 url(../image/btn_close.svg);
	background-size: 50px;
}

.mob_menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 4;
	transform: translateX(110%);
	transition: 0.3s;
	box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.5);
}

.mob_menu.show {
	transform: translateY(0);
}

.menu_links {
	display: block;
	position: absolute;
	top: 50%;
	left: 40px;
	right: 40px;
	transform: translateY(-50%);
	text-align: center;
}

.menu_links .m_link {
	display: inline-block;
	text-align: center;
	line-height: 28px;
	font-size: 28px;
	font-weight: 500;
	color: #000;
	padding: 15px 25px 11px;
}

.sub_info {
	text-align: center;
	margin-top: 5px;
	font-size: 15px;
	line-height: 15px; 
	opacity: 0.5;
	font-weight: 400;
}

@media only screen and (max-width: 600px) {
	.menu_mob_btn {
		display: block;
	}
}

/*-- Навигационный бар --*/

.nav_bar {
	position: absolute;
	top: 0; 
	left: 0; 
	right: 0;
	z-index: 2;
}

.nav_bar .logo {
	float: left;
}

.nav_bar .logo .logo_img {
	width: 166px; 
	position: absolute; 
	top: -50px;
	left: -68px;
	transition: 0.5s;
}

.nav_bar .logo .logo_text {
	position: absolute; 
	top: 3px; 
	left: -15px;
	height: 64px;
}

.nav_bar .logo:hover .logo_img {
	transform: scale(0.95);
}

.nav_bar .items_link {
	display: inline-block; 
	margin-top: 26px; 
	height: 18px; 
	line-height: 18px; 
	float: right;
}

.nav_bar .items_link .link {
	color: #2f2f2f; 
	float: left; 
	margin: 0 20px; 
	font-size: 13px; 
	font-weight: 600;
	transition: 0.3s;
}

.nav_bar .items_link .link:hover {
	opacity: 0.3;
}

.nav_bar .items_link .link.active {
	border-bottom: 2px solid #E50302;
}

.nav_bar .items_link .link.active:hover {
	opacity: 1;
}

.nav_bar .items_link .link_ua {
	margin: 0 5px 0 20px;
}

.nav_bar .items_link .line {
	float: left; 
	font-size: 13px; 
	font-weight: 400; 
	opacity: 0.15;
}

.nav_bar .items_link .link_en {
	margin: 0 40px 0 5px;
}

.nav_bar .items_link .btn {
	float: right; 
	margin-top: -16px; 
	box-shadow: 0 0 0 0;
}

.nav_bar .items_link .btn:hover {
	background: #b90000;
}

@media only screen and (max-width: 600px) {
	.nav_bar {
		display: none;
	}
}




















/* Навигационный бар */

.menu_nav_bar {
	width: 70px; 
	background: #2B3033; 
	position: fixed; 
	top: 0; 
	left: 0;
	bottom: 0;
	box-shadow: 0 2px 25px rgba(0, 0, 0, 0.2);
	z-index: 3;
}

.menu_nav_bar .menu_btn { 
	position: absolute; 
	top: 10px; 
	left: 10px;
	height: 50px; 
	width: 50px;
	border-radius: 3px;
	cursor: pointer;
	transition: 0.3s;
	background: url(../image/menu_icon.svg);
}

.menu_nav_bar .menu_btn:hover {
	background: rgba(0, 0, 0, 0.3) url(../image/menu_icon.svg);
}

.menu_nav_bar .menu_btn.active {
	background: url(../image/menu_icon_close.svg);
}

.menu_nav_bar .menu_btn:hover.active {
	background: rgba(0, 0, 0, 0.3) url(../image/menu_icon_close.svg);
}

.menu_nav_bar .price_btn {
	position: absolute; 
	top: 20px; 
	right: 10px; 
	transform: rotate(-90deg); 
	transform-origin: right bottom; 
	white-space: nowrap; 
	padding: 0 30px; 
	font-size: 13px; 
	font-weight: 700;
}

.menu_nav_bar .line {
	top: 250px;
	left: 50%; 
	bottom: 95px;
	width: 1px; 
	background: rgba(255, 255, 255, 0.3); 
	position: absolute; 
}

.menu_nav_bar .work_time {
	position: absolute; 
	bottom: 25px; 
	left: 0px; 
	transform: rotate(-90deg); 
	transform-origin: left top; 
	white-space: nowrap; 
	color: rgba(255, 255, 255, 0.5); 
	height: 70px;
	line-height: 68px; 
	font-size: 13px; 
	background: #2B3033; 
	padding-right: 20px;
}

.menu_nav_bar .logo_mini {
	position: absolute; 
	left: 20px; 
	bottom: 20px;
	width: 30px; 
}

.menu_block_bar {
	position: fixed; 
	top: 0; 
	left: -270px; 
	bottom: 0; 
	background: #1F2426; 
	width: 300px; 
	z-index: 2;
	transition: 0.3s;
	transition-timing-function: ease;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.menu_block_bar.show {
	left: 70px;
}

.mob_vertical_text {
	display: none;
}

.lang_block {
	position: absolute; 
	top: 50px; 
	left: 50px; 
	right: 53px;
}

.lang_block .btn_lang {
	position: absolute;
	font-size: 13px; 
	line-height: 13px; 
	font-weight: 600; 
	color: rgba(255, 255, 255, 0.3);
	transition: 0.3s;
	background: #1F2426; 
}

.lang_block .btn_lang:hover {
	color: #fff;
}

.lang_block .btn_lang.action {
	color: #fff;
}

.lang_block .line_lang {
	position: absolute;
	height: 1px; 
	width: 100%; 
	background: rgba(255, 255, 255, 0.21); 
	float: left; 
	margin-top: 5px;
}

.lang_block .ua_lang {
	left: 0;
	width: 35px;
}

.lang_block .ru_lang {
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	width: 50px;
}

.lang_block .en_lang { 
	right: 0;
	width: 35px; 
	text-align: right;
}

.menu_block_links {
	position: absolute;
	top: 55%;
	transform: translateY(-50%);
	left: 50px;
	right: 50px;
	color: rgba(255, 255, 255, 0.6);
	opacity: 0;
	transition: 0.5s;
	transition-timing-function: ease-out;
}

.menu_block_links.show {
	opacity: 1;
	top: 50%;
}

.nav_link {
	display: inline-block;
	padding: 12px 0;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	transition: 0.3s;
	cursor: pointer;
}

.nav_link:hover {
	color: rgba(255, 255, 255, 0.6);
	padding-left: 20px;
}

.tel_block {
	position: absolute;
	left: 50px; 
	bottom: 35px;
	color: #fff;
	font-size: 22px;
	font-weight: 500;
}

.menu_block_bar .btn {
	display: none;
}

@media only screen and (max-width: 600px) {
	.menu_nav_bar {
    	display: none;
    }
	.menu_block_bar {
    	position: fixed; 
    	top: 0; 
    	left: -100vw; 
    	bottom: 0; 
    	background: #1F2426; 
    	width: 100vw; 
    	z-index: 2;
    	transition: 0.3s;
    	transition-timing-function: ease;
    	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    .menu_block_bar.show {
    	left: 0px;
    }
	.mob_vertical_text {
		display: inline-block;
		position: absolute;
		top: 40px;
		left: 40px;
		bottom: 130px;
		width: 16px;
	}
	.mob_vertical_text .phone {
		position: absolute; 
	    top: 0px; 
	    right: 16px; 
	    transform: rotate(-90deg); 
	    transform-origin: right top; 
	    white-space: nowrap; 
	    color: #fff; 
	    height: 16px;
	    line-height: 16px; 
	    font-size: 15px; 
		font-weight: 600;
	    background: #1F2426; 
	    padding-left: 15px;
	}
	.mob_vertical_text .line {
		top: 0px;
	    left: 7px; 
	    bottom: 0px;
	    width: 1px; 
	    background: rgba(255, 255, 255, 0.3); 
	    position: absolute; 
		z-index: -1;
	}
	.mob_vertical_text .work_time {
	    position: absolute; 
	    bottom: -16px; 
	    left: 0px; 
	    transform: rotate(-90deg); 
	    transform-origin: left top; 
	    white-space: nowrap; 
	    color: rgba(255, 255, 255, 0.5); 
	    height: 16px;
	    line-height: 16px; 
	    font-size: 15px; 
	    background: #1F2426; 
	    padding-right: 15px;
	}
	.lang_block {
    	display: none;
    }
	.menu_block_links {
		display: inline-block;
    	position: absolute;
    	top: calc(53% - 30px);
    	transform: translate(-50%, -50%);
    	left: 50%;
    	right: auto;
    	color: rgba(255, 255, 255, 0.6);
    	opacity: 0;
    	transition: 0.5s;
    	transition-timing-function: ease-out;
    }
    .menu_block_links.show {
    	opacity: 1;
		top: calc(50% - 30px);
    }
    .nav_link {
    	padding: 7px 0;
    	font-size: 26px;
    }
    .tel_block {
    	display: none;
    }
	.menu_block_bar .btn {
		display: block;
		position: absolute;
		bottom: 40px;
		left: 40px;
		right: 40px;
		text-align: center;
	}
}

/******* Мобильное меню ********/

.btn_mobile_menu {
	display: none;
}

@media only screen and (max-width: 600px) {
	.btn_mobile_menu {
		display: inline-block;
		position: fixed; 
		top: 27px; 
		right: 27px; 
    	height: 50px; 
		width: 50px; 
		background: #fff url(../image/btn_mobile_menu.svg); 
		border-radius: 25px; 
		z-index: 999; 
		box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
		transition: 0.3s;
    }
	.btn_mobile_menu.active {
		background: #3c3c3c url(../image/btn_close_dark.svg);
	}
}

/******* Контент блок ********/

.main_content {
	margin-left: 70px; 
	width: calc(100% - 70px);
	min-height: calc(100vh - 70px);
}

@media only screen and (max-width: 600px) {
	.main_content {
    	margin-left: 0px; 
    	width: 100%;
		min-height: 100vh;
    }
}

/******* Блок: Стартовый (Главная страница) ********/

#start {
	height: 100vh; 
	background: url(../image/bg_index.jpg) center/cover; 
	position: relative;
	overflow: hidden;
}

.bg_gradient {
	position: absolute; 
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	background: linear-gradient(to top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75));
}

.logo_block {
	display: inline-block;
}

.logo_block img {
	display: inline-block; 
	float: left;
	margin-left: -20px; 
}

.logo_block .subtitle {
	display: inline-block;
	font-size: 12px; 
	line-height: 15px; 
	font-weight: 600; 
	color: #fff; 
	float: left; 
	margin-top: 59px; 
	margin-left: 9px;
}

.logo_block.dark .subtitle {
	font-weight: 600; 
	color: #000000;
}

.phone_top_block {
	display: inline-block; 
	float: right; 
	margin-top: 56px;
}

.phone_top_block .contact {
	float: left; 
	margin-right: 25px;
}

.phone_top_block .contact .phone {
	font-size: 25px; 
	font-weight: 500; 
	color: rgb(255, 255, 255);
	margin-bottom: 5px;
}

.phone_top_block.dark .contact .phone {
	color: #000;
}

.phone_top_block .contact .line {
	width: 70px; 
	height: 1px; 
	background: rgba(255, 255, 255, 0.4);
}

.phone_top_block.dark .contact .line {
	background: rgba(0, 0, 0, 0.2);
}

.phone_top_block .contact .text {
	display: inline-block;
	font-size: 13px; 
	font-weight: 500; 
	text-align: right; 
	color: #818181;  
	float: right; 
	margin-top: -10px; 
	padding-left: 12px;
}

.phone_top_block .call_me_btn {
	height: 50px; 
	width: 50px; 
	border-radius: 50%; 
	background: #EEF3F0; 
	float: left; 
	cursor: pointer;
	transition: 0.3s;
}

.big_title_block {
	position: absolute; 
	left: 90px;  
	top: calc(50% + 80px); 
	transform: translateY(-50%);
	width: 622px;
}

.big_title_block .title {
	font-size: 49px; 
	line-height: 52px; 
	font-weight: 600; 
	color: #fff; 
	margin-bottom: 15px; 
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.big_title_block .subtitle {
	font-size: 16px; 
	line-height: 21px; 
	font-weight: 500; 
	color: rgba(255, 255, 255, 0.75); 
	margin-bottom: 20px; 
	text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5); 
	max-width: 580px;
}

.big_title_block .line {
	width: 135px; 
	height: 1px; 
	background: rgba(255, 255, 255, 0.5); 
	margin: 24px 25px 24px 0; 
	float: left;
}

.position_play {
	position: absolute; 
	top: calc(50% + 20px); 
	transform: translateY(-50%); 
	right: 125px;
}

.play_video_btn {
	height: 70px; 
	width: 70px; 
	background: #fff; 
	border-radius: 50%; 
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: 0.3s;
}

.play_video_btn:hover {
	transform: scale(0.92);
}

.scroll {
    position: absolute;
    bottom: 0;
    right: 160px;
}

.btn_down {
    color: #fff;
    transform: rotate(270deg);
    position: absolute;
    bottom: 90px;
    width: 124px;
    text-align: center;
    left: -74px;
    transition: 0.3s;
	font-size: 13px;
	font-weight: 500;
}

.btn_down:hover {
    color: #fff;
    opacity: 0.5;
	padding: 0;
}

.scroll-down {
    position: relative;
    height: 155px;
    width: 2px;
    overflow: hidden;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.scroll-down:before {
    content: '';
    width: 2px;
    height: 155px;
    opacity: 0.3;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.scroll-down:after {
    content: '';
    width: 2px;
    height: 30px;
    background-color: #fff;
    z-index: 2;
    position: absolute;
    left: 0px;
    top: 0;
    -webkit-animation-name: scroll-down;
    -moz-animation-name: scroll-down;
    -o-animation-name: scroll-down;
    animation-name: scroll-down;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear; 
}

@-webkit-keyframes scroll-down {
  0% {
    top: -30px; }
  100% {
    top: 155px; } 
}

@-moz-keyframes scroll-down {
  0% {
    top: -30px; }
  100% {
    top: 155px; } 
}

@-o-keyframes scroll-down {
  0% {
    top: -30px; }
  100% {
    top: 155px; } 
}

@keyframes scroll-down {
  0% {
    top: -30px; }
  100% {
    top: 155px; } 
}

@media only screen and (max-width: 600px) {
    .logo_block {
    	display: inline-block;
    }
    .logo_block img {
    	margin-left: -8px; 
		height: 110px;
    }
    .logo_block .subtitle {
    	font-size: 11px; 
    	line-height: 14px;
		font-weight: 600;
    	margin-top: 35px; 
    	margin-left: 5px;
    }
    .phone_top_block {
    	display: none;
    }
	.big_title_block {
    	position: absolute; 
    	left: 30px;  
    	top: calc(50% + 50px); 
    	transform: translateY(-50%);
    	width: calc(100% - 60px);
    }
    .big_title_block .title {
    	font-size: 33px; 
    	line-height: 34px; 
    	font-weight: 600; 
    	color: #fff; 
    	margin-bottom: 15px; 
    	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }
	.big_title_block .title br {
		display: none;
	}
	.big_title_block .title span {
		white-space: nowrap;
	}
    .big_title_block .subtitle {
    	font-size: 15px; 
    	line-height: 20px; 
    	font-weight: 500; 
    	color: rgba(255, 255, 255, 0.75); 
    	margin-bottom: 20px; 
    	text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5); 
    	max-width: 580px;
    }
    .big_title_block .line {
    	display: none;
    }
	.position_play {
		display: none;
	}
	.scroll {
        display: none;
    }
}

/*-- Блок: Продукция --*/

#products {
	background: #F7F7F7;
	padding: 65px 0 60px;
}

#products .title {
	font-size: 40px;
	line-height: 45px;
	font-weight: 700;
	text-align: center;
	color: #000;
	margin-bottom: 12px;
}

#products .subtitle {
	font-size: 16px;
	line-height: 18px;
	font-weight: 500;
	text-align: center;
	color: #757575;
	margin-bottom: 27px;
}

#products .subtitle a {
	color: #4a4a4a;
	font-weight: 600;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.35);
	transition: 0.3s;
}

#products .subtitle a:hover {
	opacity: 0.4;
}

#products .block_products {
	display: inline-block;
	width: calc(100% + 10px);
	margin-left: -5px;
}

#products .block_products .item_product {
	position: relative;
	width: calc(25% - 10px);
	background: #fff;
	padding-bottom: calc(25% - 10px);
	margin: 5px;
	float: left;
	border-radius: 3px;
	overflow: hidden;
}

#products .block_products .item_product img {
	position: absolute;
	width: 100%;
	transition: 0.3s;
}

#products .block_products .item_product:hover img {
	transform: scale(1.06);
}

#products .block_products .item_product .text_block {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	padding: 0 25px 25px;
}

#products .block_products .item_product .text_block .title_pr {
	font-size: 14px;
	line-height: 14px;
	font-weight: 700;
	color: #000;
	margin-bottom: 5px;
}

#products .block_products .item_product .text_block .subtitle_pr {
	font-size: 11px;
	line-height: 11px;
	font-weight: 600;
	color: #000;
	opacity: 0.3;
	text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
	#products {
    	padding: 35px 0 30px;
    }
    #products .title {
    	font-size: 28px;
    	line-height: 32px;
    	margin-bottom: 12px;
    }
    #products .subtitle {
    	margin-bottom: 24px;
		padding: 0 30px;
    }
    #products .subtitle a {
    	white-space: nowrap;
    }
    #products .block_products .item_product {
    	width: calc(50% - 10px);
    	padding-bottom: calc(65% - 10px);
    }
    #products .block_products .item_product:hover img {
    	transform: scale(1);
    }
    #products .block_products .item_product .text_block {
    	padding: 0 20px 20px;
    }
	#products .block_products .item_product .text_block .title_pr span {
		white-space: nowrap;
	}
	#products .block_products .item_product .text_block .subtitle_pr {
    	line-height: 14px;
    }
	#products .block_products .item_product .text_block .subtitle_pr span {
		display: none;
	}
}

/*-- Блок: О компании --*/

#about {
	display: inline-block;
	width: 100%;
	background: #fff;
	padding: 65px 0 60px;
}

#about .item_label {
	float: left;
	margin: 3px 18px 0 35px; 
}

#about .label {
	font-size: 13px;
	line-height: 13px;
	font-weight: 700;
	color: #EA131B;
	margin-bottom: 13px;
}

#about .title {
	font-size: 44px;
	line-height: 50px;
	font-weight: 700;
	color: #000;
	margin: 0 35px 13px;
}

#about .text {
	font-size: 15px;
	line-height: 21px;
	font-weight: 500; 
	color: #5f5f5f;
}

#about .left_col {
	float: left;
	width: calc(50% - 15px);
	margin-right: 30px;
}

#about .right_col {
	float: left;
	width: calc(50% - 15px);
}

@media only screen and (max-width: 600px) {
	#about {
    	padding: 40px 0 35px;
    }
    #about .item_label {
    	margin: 3px 18px 0 30px; 
    }
    #about .title {
    	font-size: 28px;
    	line-height: 32px;
    	margin: 0 0 13px 30px;
    }
	#about .title span {
		white-space: nowrap;
	}
    #about .left_col {
    	float: none;
    	width: 100%;
    	margin-right: 0;
		margin-bottom: 22px;
    }
    #about .right_col {
    	float: none;
    	width: 100%;
    }
}

/*-- Блок: В цифрах --*/

#digital_info {
	position: relative;
	height: 520px; 
	background: #eee url(../image/digitat_bg.jpg) center/cover; 
	padding: 80px 0 90px;
	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
	color: #fff;
}

.bgvideo {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}

.bgvideo video {
	width: 100%;
	transform: translateY(-20%)
}

#digital_info .bg_dark {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

#digital_info .item_label {
	float: left;
	margin: 6px 18px 0 0; 
}

#digital_info .label {
	font-size: 13px; 
	line-height: 16px; 
	font-weight: 600;
	opacity: 0.5;
	text-transform: uppercase;
	margin-bottom: 12px;
}

#digital_info .title {
	font-size: 44px; 
	line-height: 50px; 
	font-weight: 700;
	margin-bottom: 34px;
	max-width: 820px;
}

#digital_info .dig .number {
	display: inline-block;
	font-size: 90px; 
	line-height: 100px;
	font-weight: 500;
	margin-right: 15px;
}

#digital_info .dig .text {
	display: inline-block;
	font-size: 20px; 
	line-height: 25px;
	font-weight: 600;
}

#digital_info .dig .subtext {
	display: block;
	font-size: 16px; 
	line-height: 18px; 
	font-weight: 600;
	margin-top: 20px;
}

#digital_info .dig {
	display: inline-block;
}

#digital_info .dig.d_1 {
	float: left;
}

#digital_info .dig.d_2 {
	float: left;
	margin: 0 107px;
}

#digital_info .dig.d_2.en {
	float: left;
	margin: 0 92px;
}

#digital_info .dig.d_3 {
	float: right;
}

@media only screen and (max-width: 600px) {
	#digital_info {
    	height: auto; 
    	background: #eee url(../image/digitat_bg.jpg) center/cover; 
    	padding: 40px 0 30px;
    	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
    }
    #digital_info .title {
    	font-size: 28px; 
    	line-height: 32px;
    	margin-bottom: 18px;
    }
    #digital_info .dig .number {
    	font-size: 68px; 
    	line-height: 70px;
    	margin-right: 10px;
    }
    #digital_info .dig .text {
    	font-size: 19px; 
    	line-height: 25px;
    }
	#digital_info .dig .subtext {
    	margin-top: 10px;
    }
    #digital_info .dig {
    	display: block;
		margin-bottom: 18px;
    }
    #digital_info .dig.d_1 {
    	float: none;
    }
    #digital_info .dig.d_2 {
    	float: none;
    	margin: 0 0 15px 0;
    }
	#digital_info .dig.d_2.en {
    	float: none;
    	margin: 0 0 15px 0;
    }
    #digital_info .dig.d_3 {
    	float: none;
    }
}

/*-- Блок: Наши клиенты --*/

#clients {
	background: #fff;
	padding: 60px 0;
}

#clients .title {
	font-size: 44px; 
	line-height: 50px; 
	font-weight: 700; 
	text-align: center;
	color: #000;
	margin-bottom: 12px; 
}

#clients .subtitle {
	font-size: 16px; 
	line-height: 18px; 
	font-weight: 500; 
	color: #757575; 
	text-align: center; 
	margin-bottom: 20px;
}

#clients .show_block_clients {
	display: inline-block; 
	width: calc(100% + 10px); 
	margin-left: -5px;
}

#clients .item_client {
	position: relative;
	width: calc(25% - 10px);
	background: #EFF3F6;
	padding-bottom: calc(25% - 10px);
	margin: 5px;
	float: left;
	border-radius: 3px;
}

#clients .item_client img {
	position: absolute;
	width: 100%;
}

#clients .load_block_clients {
	display: none;
}

#clients .load_block_clients.show {
	display: block;
}

#clients .btn_load_more {
	width: 100%; 
	margin: 0;
}

#hide_clients {
	display: none;
}

@media only screen and (max-width: 600px) {
	#clients {
    	padding: 40px 0;
    }
    #clients .title {
    	font-size: 28px; 
    	line-height: 32px;
    	margin-bottom: 8px; 
    }
    #clients .subtitle {
    	font-size: 14px; 
    	line-height: 21px;
    	margin-bottom: 14px;
    }
    #clients .item_client {
    	width: calc(50% - 10px);
    	padding-bottom: calc(50% - 10px);
    }
}

/*-- Блок: Новости --*/

#news_block {
	background: #EFF3F6; 
	padding: 60px 0 45px;
}

#news_block .item_label {
	float: left;
	margin: 7px 18px 0 35px; 
}

#news_block .label {
	font-size: 13px; 
	line-height: 18px; 
	font-weight: 700; 
	color: #EA131B; 
	margin-bottom: 13px;
}

#news_block .title {
	margin: 0 35px 5px; 
	text-align: left;
	font-weight: 700;
}

#news_slider {
	display: inline-block; 
	width: calc(100% + 20px); 
	margin-left: -10px;
}

#news_block .more_news {
	position: relative; 
	width: calc(33.33% - 20px); 
	margin: 10px 10px 10px; 
	float: left;
	outline: none;
}

#news_block .more_news .block_more_news {
	padding-bottom: 71.34%; 
	background: #2D2D2D; 
	border-radius: 3px;
}

#news_block .more_news .block_more_news .title_more {
	position: absolute; 
	top: 33px; 
	left: 35px;
	font-size: 25px; 
	line-height: 28px; 
	font-weight: 700; 
	color: #fff;
}

#news_block .more_news .block_more_news .text_more {
	position: absolute; 
	top: 71px; 
	left: 35px; 
	right: 35px;  
	font-size: 14px; 
	line-height: 20px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
}

#news_block .more_news .block_more_news .btn {
	position: absolute; 
	left: 35px; 
	bottom: 35px;
	right: 35px;
	padding: 0 20px; 
	width: calc(100% - 70px); 
	text-align: center;
}

@media only screen and (max-width: 600px) {
	#news_block {
    	background: #EFF3F6; 
    	padding: 40px 0 35px;
		overflow: hidden;
    }
    #news_block .item_label {
    	float: left;
    	margin: 7px 18px 0 30px; 
    }
    #news_block .label {
    	font-size: 14px; 
    	line-height: 22px; 
    	font-weight: 700; 
    	color: #EA131B; 
    	margin-bottom: 13px;
    }
    #news_block .title {
    	margin: 0 30px 0px 30px; 
    	text-align: left;
		font-weight: 700;
		font-size: 28px;
		line-height: 32px;
    }
	#news_slider {
    	display: inline-block; 
    	width: calc(100% + 50px); 
    	margin-left: -25px;
    }
	#news_slider .new_link {
    	transition: 0.3s;
    	transform: scale(0.94);
    	margin: 20px 0px;
		opacity: 0.7;
    }
	#news_slider .new_link .new_img {
		padding-bottom: 68%;
	}
	#news_slider .new_link:hover .img_focus {
    	transform: none;
    	opacity: 1;
    }
	#news_slider .new_link .new_title {
		font-size: 20px;
		line-height: 22px;
	}
    #news_block .more_news {
    	position: relative; 
    	width: 100%; 
    	transition: 0.3s;
    	transform: scale(0.94);
    	margin: 20px 0px;
    	float: left;
		opacity: 0.7;
    }
	#news_slider .slick-center {
    	transform: scale(1);
		opacity: 1;
    }
    #news_block .more_news .block_more_news {
    	padding-bottom: 68%;
    	background: #2D2D2D; 
    	border-radius: 3px;
    }
    #news_block .more_news .block_more_news .title_more {
    	position: absolute; 
    	top: 28px; 
    	left: 28px;
    	font-size: 25px; 
    	line-height: 28px; 
    	font-weight: 700; 
    	color: #fff;
    }
    #news_block .more_news .block_more_news .text_more {
    	position: absolute; 
    	top: 66px; 
    	left: 28px; 
    	right: 28px;  
    	font-size: 14px; 
    	line-height: 21px;
    	color: rgba(255, 255, 255, 0.5);
    }
    #news_block .more_news .block_more_news .btn {
    	position: absolute; 
    	left: 28px; 
    	bottom: 28px;
    	right: 28px;
    	padding: 0 20px; 
    	width: calc(100% - 60px); 
    	text-align: center;
    }
}

/*-- Блок: КОНТАКТЫ ТОРГОВОГО ОТДЕЛА --*/

#contacts .cont_01 {
	padding: 55px 0 48px 35px;
}

#contacts .cont_01 .item_label {
	float: left; 
	margin-top: 7px; 
	margin-right: 14px
}

#contacts .cont_01 .label {
	font-size: 13px; 
	line-height: 18px; 
	font-weight: 700; 
	color: #EA131B; 
	margin-bottom: 13px;
}

#contacts .cont_01 .title {
	font-size: 44px; 
	line-height: 50px; 
	font-weight: 700; 
	margin-bottom: 10px;
}

#contacts .cont_01 .title br {
	display: none;
}

#contacts .cont_01 .text {
	font-size: 14px; 
	line-height: 21px; 
	color: rgba(0, 0, 0, 0.45);
}

.rukovoditel {
	display: inline-block;
	width: 100%;
	height: 420px; 
	background: #eee url(../image/back_item.jpg) center/cover;
	position: relative;
}

.rukovoditel .img_mob_sn {
	display: none;
}

.rukovoditel .img_desk_sn {
	width: 430px;
	position: absolute;
	bottom: 0;
	right: 50px;
	display: inline-block;
}

.card_rukovoditel {
	position: absolute;
	background: #fff;
	width: 486px;
	padding: 35px 35px 30px;
	border-radius: 5px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
	top: 50%;
	transform: translateY(-50%)
}

.card_rukovoditel .text {
	font-size: 14px;
	line-height: 21px;
	margin-bottom: 20px;
}

.card_rukovoditel .line {
	width: 3px;
	height: 86px;
	background: rgba(46, 99, 228, 0.8);
	float: left;
	margin-right: 23px;
}

.card_rukovoditel .contact .name {
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
}

.card_rukovoditel .contact .position {
	font-size: 11px;
	line-height: 13px; 
	opacity: 0.45;
	margin-top: 0px;
	margin-bottom: 15px;
}

.card_rukovoditel .contact .phone {
	font-size: 17px;
	line-height: 20px;
	font-weight: 600;
	margin-bottom: -5px;
}

.card_rukovoditel .contact .email {
	font-size: 13px;
	line-height: 13px;
	font-weight: 500;
	color: #2E63E4;
	transition: 0.3s;
	margin-bottom: -20px;
	outline: none;
}

.card_rukovoditel .contact .email:hover {
	opacity: 0.5;
}

.torg_otdel {
	padding-top: 55px;
	padding-bottom: 50px
}

.torg_otdel .title {
	font-size: 44px;
	line-height: 50px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
}

.torg_otdel .title br {
	display: none;
}

.block_card_manager {
	display: inline-block;
	margin-left: -10px;
	width: calc(100% + 20px);
}

.block_card_manager .card_manager {
	position: relative;
	display: inline-block;
	float: left;
	margin: 10px 10px 10px;
	width: calc(25% - 20px);
	border-radius: 5px;
	outline: none;
}

.block_card_manager .bg {
	position: absolute;
	top: 20%;
	left: 0;
	right: 0;
	bottom: 0;
	background: #EFF3F6;
	border-radius: 5px;
	z-index: -1;
	opacity: 1;
	transition: 0.2s;
}

.block_card_manager .card_manager:hover .bg {
	top: calc(20% - 3px);
	left: -3px;
	right: -3px;
	bottom: -3px;
	border-radius: 7px;
	background: #e9eef2;
}

.block_card_manager .card_manager .ava_padding {
	padding-bottom: 112%;
	position: relative;
	overflow: hidden;
}

.block_card_manager .card_manager .ava_padding img {
	position: absolute;
	width: 100%;
	margin-top: 0;
}

.card_manager .card_info {
	margin: 0px 7px 7px;
	background: #fff;
	border-radius: 3px;
	padding: 23px 20px 18px;
	text-align: center;
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
}

.card_manager .card_info .name {
	font-size: 18px;
	line-height: 22px;
	font-weight: 700;
}

.card_manager .card_info .position {
	font-size: 11px;
	line-height: 13px; 
	opacity: 0.45;
}

.card_manager .card_info .line {
	height: 12px;
	width: 1px;
	background: #000;
	margin: 8px 50%;
	opacity: 0.1;
}

.card_manager .card_info .phone {
	font-size: 17px;
	line-height: 20px;
	font-weight: 600;
	margin-bottom: -5px;
}

.card_manager .card_info .email {
	font-size: 12px;
	line-height: 15px;
	font-weight: 600;
	color: #2E63E4;
	transition: 0.3s;
	outline: none;
}

.card_manager .card_info .email:hover {
	opacity: 0.5;
}

.card_vacancy {
	position: relative;
	background: #2D2D2D; 
	display: inline-block;
	float: left;
	margin: 92px 10px 10px;
	width: calc(25% - 20px);
	border-radius: 5px;
	outline: none;
}

.card_vacancy .content_card {
	padding-bottom: 138%;
}

.card_vacancy .content_card .item_block {
	position: absolute; 
	top: 30px; 
	left: 30px; 
	display: inline-block;
}

.card_vacancy .content_card .item_block img {
	width: auto; 
	float: left; 
	margin: 7px 15px 0 0;
}

.card_vacancy .content_card .item_block .text {
	font-size: 13px; 
	line-height: 18px; 
	font-weight: 600; 
	color: #fff; 
	opacity: 0.4; 
	float: left;
}

.card_vacancy .content_card .title_block {
	text-align: left; 
	position: absolute; 
	left: 30px; 
	right: 30px; 
	color: #fff; 
	top: calc(50% - 11px); 
	transform: translateY(-50%);
}

.card_vacancy .content_card .title_block .title_v {
	font-size: 20px; 
	line-height: 22px; 
	font-weight: 700; 
	margin-bottom: 5px;
}

.card_vacancy .content_card .title_block .subtitle_v {
	font-size: 14px; 
	line-height: 20px; 
	font-weight: 400; 
	opacity: 0.65;
}

.card_vacancy .content_card .btn {
	position: absolute; 
	left: 30px; 
	right: 30px; 
	bottom: 30px; 
	padding: 0 20px; 
	text-align: center;
}

@media only screen and (max-width: 600px) {
	#contacts .cont_01 {
    	padding: 40px 0 30px 30px;
    }
    #contacts .cont_01 .title {
    	font-size: 28px; 
    	line-height: 32px; 
    	font-weight: 700;
    }
	#contacts .cont_01 .title br {
		display: block;
	}
	.rukovoditel {
    	display: inline-block;
    	width: 100%;
    	height: auto; 
    	background: #eee url(../image/back_item.jpg) center/cover;
    	position: relative;
		margin-top: 0px;
		padding-bottom: 25px;
    }
	.rukovoditel .img_mob_sn {
		display: flex;
    	width: 80%;
		margin-left: 10%;
		margin-top: 30px;
    }
    .rukovoditel .img_desk_sn {
		display: none;
    }
    .card_rukovoditel {
    	position: relative;
    	background: #fff;
    	width: 100%;
    	padding: 30px 30px 22px;
    	border-radius: 5px;
    	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    	top: 50%;
    	transform: translateY(0);
		display: flex;
        flex-flow: wrap;
    }
    .card_rukovoditel .text {
		margin-top: 18px;
    	margin-bottom: 0px;
		order: 2;
    }
	.card_rukovoditel .text br {
		display: none;
	}
    .card_rukovoditel .line {
    	width: 3px;
    	height: 88px;
    	background: rgba(46, 99, 228, 0.8);
    	float: left;
    }
	.card_rukovoditel .contact {
		width: 100%;
		order: 1;
	}
    .card_rukovoditel .contact .name {
    	font-size: 21px;
    	line-height: 24px;
    	font-weight: 700;
    }
    .card_rukovoditel .contact .position {
    	font-size: 12px;
    	line-height: 13px; 
    	opacity: 0.45;
    	margin-bottom: 15px;
    }
    .card_rukovoditel .contact .phone {
    	font-size: 19px;
    	line-height: 22px;
    	font-weight: 600;
    	margin-bottom: -5px;
    }
    .card_rukovoditel .contact .email {
    	font-size: 16px;
    	line-height: 16px;
    	font-weight: 500;
    	color: #2E63E4;
    	transition: 0.3s;
    	margin-bottom: -20px;
    }
	.torg_otdel {
    	padding-top: 40px;
    	padding-bottom: 55px
    }
    .torg_otdel .title {
    	font-size: 28px;
    	line-height: 28px;
    	font-weight: 700;
    	text-align: center;
    	margin-bottom: 5px;
    }
	.torg_otdel .title br {
    	display: block;
    }
	.block_card_manager {
    	margin-left: -25px;
    	width: calc(100% + 50px);
    }
    .block_card_manager .card_manager {
		position: relative;
    	display: inline-block;
    	float: left;
    	margin: 10px 3px 10px;
    	width: 100%;
    	background: none;
    	border-radius: 5px;
		transition: 0.25s;
		transform: scale(0.94);
    }
	.block_card_manager .slick-center {
		transform: scale(1);
	}
	.block_card_manager .bg {
		position: absolute;
		top: 20%;
		left: 0;
		right: 0;
		bottom: 0;
		background: #EFF3F6;
		border-radius: 5px;
		z-index: -1;
		opacity: 0.3;
		transition: 0.2s;
	}
	.block_card_manager .slick-center .bg {
	    background: #e9eef2;
		opacity: 1;
	}
	.block_card_manager .card_manager:hover .bg {
    	top: calc(20% - 0px);
    	left: 0px;
    	right: 0px;
    	bottom: 0px;
    	border-radius: 5px;
    	background: #e9eef2;
    }
	.card_manager .card_info {
		display: inline-block;
		width: calc(100% - 20px);
    	margin: 0px 10px 10px;
    	border-radius: 5px;
    	padding: 23px 10px 18px;
    	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
		z-index: 2;
    }
	.block_card_manager .slick-center .card_info {
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}
    .card_manager .card_info .name {
    	font-size: 21px;
    	line-height: 24px;
    	font-weight: 700;
    }
    .card_manager .card_info .position {
    	font-size: 13px;
    	line-height: 13px; 
    	opacity: 0.45;
    	margin-top: 0px;
		margin-bottom: 16px;
    }
    .card_manager .card_info .line {
    	display: none;
    }
    .card_manager .card_info .phone {
    	font-size: 18px;
    	line-height: 18px;
    	font-weight: 600;
    	margin-bottom: -2px;
    }
    .card_manager .card_info .email {
    	font-size: 14px;
    	line-height: 14px;
    	font-weight: 500;
    	color: #2E63E4;
    }
	.card_vacancy {
    	position: relative; 
    	display: inline-block;
    	float: left;
    	margin: 10px 3px 10px;
        width: 100%;
    	border-radius: 5px;
    	outline: none;
		transition: 0.25s;
		transform: scale(0.94);
		background: none;
    }
	.block_card_manager .slick-center {
		transform: scale(1);
	}
	.card_vacancy .bg_v {
		position: absolute;
		top: 20%;
		left: 0;
		right: 0;
		bottom: 0;
		border-radius: 5px;
		z-index: -1;
		transition: 0.2s;
		background: #2D2D2D;
	}
    .card_vacancy .content_card {
    	padding-bottom: calc(112% + 148px);
    }
    .card_vacancy .content_card .item_block {
    	top: 26%;
    }
    .card_vacancy .content_card .title_block { 
    	top: calc(60% - 11px); 
    }
    .card_vacancy .content_card .title_block .title_v {
    	font-size: 25px; 
    	line-height: 28px; 
    	margin-bottom: 8px;
    }
    .card_vacancy .content_card .title_block .subtitle_v {
    	font-size: 15px; 
    	line-height: 22px;
    }
}

/*-- Блок: КОНТАКТЫ --*/

#contacts_office {
	display: inline-block;
	width: 100%;
	padding: 70px 0 0;
	position: relative;
	background: #eee url(../image/digitat_bg.jpg) center/cover;
}

#contacts_office .bg_gradient_footer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(25, 25, 25, 0.4), #191919);
}

#contacts_office .left_block_cont {
	display: inline-block;
	width: 335px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

#contacts_office .left_block_cont .item_label {
	float: left;
	margin: 6px 18px 0 0; 
}

#contacts_office .left_block_cont .label {
	font-size: 13px; 
	line-height: 18px; 
	font-weight: 600;
	color: #fff;
	opacity: 0.5;
	text-transform: uppercase;
	margin-bottom: 12px;
}

#contacts_office .left_block_cont .title {
	font-size: 34px;
	line-height: 40px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 30px;
}

#contacts_office .left_block_cont .number_phone {
	font-size: 30px;
	line-height: 34px;
	font-weight: 500;
	color: #fff;
}

#contacts_office .left_block_cont .subtext_phone {
	font-size: 13px;
	line-height: 15px;
	font-weight: 500;
	color: #fff;
	opacity: 0.5;
	margin-bottom: 27px;
}

#contacts_office .left_block_cont .email_adress {
	font-size: 21px;
	line-height: 24px;
	font-weight: 600;
	color: #4C7CF0;
	transition: 0.3s;
}

#contacts_office .left_block_cont .email_adress:hover {
	opacity: 0.5;
}

#contacts_office .left_block_cont .subtext_email {
	font-size: 13px;
	line-height: 15px;
	font-weight: 500;
	color: #fff;
	opacity: 0.5;
	margin-top: 3px;
	margin-bottom: 34px;
}

#contacts_office .left_block_cont .adress_block .icon_adress {
	display: inline-block;
	height: 50px;
	width: 50px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
	float: left;
	margin-right: 20px;
}

#contacts_office .left_block_cont .adress_block .text_adress {
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	color: #9D9D9D;
	padding-top: 6px;
	transition: 0.3s;
	cursor: pointer;
}

#contacts_office .left_block_cont .adress_block .text_adress span {
	border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

#contacts_office .left_block_cont .adress_block .text_adress:hover {
	opacity: 0.5;
}

#contacts_office .right_block_form {
	display: inline-block;
	width: 689px;
	padding: 37px 40px 25px;
	background: #EFF3F6;
	border-radius: 3px;
	float: right;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

#contacts_office .right_block_form .title {
	font-size: 35px;
	line-height: 40px;
	font-weight: 700;
	color: #000;
	margin-bottom: 7px;
}

#contacts_office .right_block_form .subtitle {
	font-size: 14px;
	line-height: 19px;
	font-weight: 400;
	color: #000;
	opacity: 0.6;
	margin-bottom: 14px;
}

#contacts_office .btn_partner {
	display: none;
}

#contacts_office .footer_contacts {
	display: flex;
	height: 70px;
	width: 100%;
}

#contacts_office .footer_contacts .copyright {
	display: inline-block;
	font-size: 12px;
	line-height: 74px;
	font-weight: 400;
	color: #7A7A7A;
	float: left;
	white-space: nowrap;
}

#contacts_office .footer_contacts .line {
	display: inline-block;
	float: left;
	width: 439px;
	height: 1px;
	background: rgba(255, 255, 255, 0.25);
	margin: 35px 20px 0;
}

#contacts_office .footer_contacts .dev {
	display: inline-block;
	font-size: 12px;
	line-height: 74px;
	font-weight: 400;
	color: #7A7A7A;
	float: left;
	white-space: nowrap;
}

#contacts_office .footer_contacts .dev .dev_link {
	font-weight: 600;
	color: #BDBDBD;
	transition: 0.3s;
}

#contacts_office .footer_contacts .dev .dev_link:hover {
	opacity: 0.5;
}

@media only screen and (max-width: 600px) {
	#contacts_office {
    	padding: 40px 0 0;
    }
    #contacts_office .left_block_cont {
    	width: 100%;
    }
    #contacts_office .left_block_cont .title {
    	font-size: 28px;
    	line-height: 32px;
    	margin-bottom: 20px;
    }
    #contacts_office .left_block_cont .number_phone {
    	font-size: 28px;
    	line-height: 33px;
    }
    #contacts_office .left_block_cont .subtext_phone {
    	margin-bottom: 22px;
    }
    #contacts_office .left_block_cont .email_adress {
    	font-size: 22px;
    	line-height: 24px;
    	font-weight: 600;
    }
    #contacts_office .left_block_cont .subtext_email {
    	margin-bottom: 24px;
    }
    #contacts_office .right_block_form {
    	display: none;
    }	
	#contacts_office .btn_partner {
    	display: inline-block;
		width: 100%;
		text-align: center;
		margin-top: 25px;
    }
    #contacts_office .footer_contacts {
    	display: inline-block;
    	height: 80px;
    	width: 100%;
    	text-align: center;
    	padding-top: 26px;
    }
    #contacts_office .footer_contacts .copyright {
    	display: block;
    	font-size: 12px;
    	line-height: 17px;
    	font-weight: 400;
    	color: #7A7A7A;
    	float: none;
    }
    #contacts_office .footer_contacts .line {
    	display: none;
    }
    #contacts_office .footer_contacts .dev {
    	display: block;
    	font-size: 12px;
    	line-height: 17px;
    	font-weight: 400;
    	color: #7A7A7A;
    	float: none;
    }
}

/* Dots слайдер */

.slick-dots {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
	right: 0;
	text-align: center;
    bottom: -40px;
    height: 10px;
    cursor: pointer;
	z-index: 1;
}

.slick-dots li {
    width: 16px;
    height: 16px;
	border: 5px solid #EFF3F6;
    border-radius: 50%;
    background: #d0d5d9;
    display: inline-block;
    margin-right: 10px;
	transition: 0.3s;
}

.slick-dots li:last-child {
    margin-right: 0 !important;
}

.slick-dots li.slick-active {
	width: 16px;
    height: 16px;
	border: 5px solid #d0d5d9;
    background: #2E63E4;
}

.slick-dots li button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0;
}

@media only screen and (max-width: 600px) {
	.slick-dots {
        bottom: -9px;
    }
	.torg_otdel  .slick-dots {
        bottom: -17px;
    }
	.torg_otdel .slick-dots li {
        width: 16px;
        height: 16px;
    	border: 5px solid #fff;
        border-radius: 50%;
        background: #EFF3F6;
        display: inline-block;
        margin-right: 10px;
    	transition: 0.3s;
    }
	.torg_otdel .slick-dots li.slick-active {
    	width: 16px;
        height: 16px;
    	border: 5px solid #EFF3F6;
        background: #2E63E4;
    }
}

















/* Раздел: НОВОСТИ */

.news_block .title {
	font-size: 44px; 
	line-height: 50px; 
	text-align: center;
	margin-top: -20px;
	margin-bottom: 8px; 
	font-weight: 700;
}

.news_block .subtitle {
	font-size: 20px; 
	line-height: 24px; 
	text-align: center; 
	color: #4C4C4C;
	margin-bottom: 10px; 
}

.news_block .new_link {
	position: relative;
	width: calc(33.33% - 20px); 
	margin: 10px 10px 10px; 
	float: left;
	overflow: hidden;
	cursor: pointer;
	outline: none;
}

.new_link .new_img {
	padding-bottom: 71.34%; 
	margin-bottom: 0px; 
	transition: 0.2s;
	position: relative;
	overflow: hidden;
	background: #ffffff;
	border-radius: 3px;
}

.img_focus {
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	position: absolute;
	transition: 0.5s;
	background: url(../image/news-bg2.svg) center/cover;
}

.new_link:hover .img_focus {
	transform: scale(1.12);
	opacity: 0.85;
}

.new_date {
	position: absolute; 
	top: 29px; 
	left: 35px; 
	color: #fff;
}

.new_date .day {
	font-size: 35px; 
	line-height: 40px;
}

.new_date .month {
	font-size: 12px; 
	line-height: 13px; 
	font-weight: 600; 
}

.new_title_block {
	position: absolute; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	padding: 0 35px 29px;
}

.new_title { 
	color: #fff; 
	font-size: 16px; 
	line-height: 18px; 
	font-weight: 700;
}

.btn_load_more {
	display: inline-block; 
	height: 50px; 
	line-height: 48px; 
	border: 2px solid #E4E4E4;
	border-radius: 3px;
	width: calc(100% - 20px);
	text-align: center; 
	margin: 10px 10px 40px; 
	background: #fff; 
	font-weight: 700; 
	color: #EA131B;
	font-size: 14px;
	transition: 0.3s;
	cursor: pointer;
}

.btn_load_more:hover {
	background: #EA131B;
	color: #fff;
	border: 2px solid #EA131B;
}

.btn_load_more.dis_btn {
	color: #bcbcbc;
	border: 2px solid #ECECEC;
	cursor: default;
}

@media only screen and (max-width: 600px) {
	.news_block .title {
    	font-size: 28px; 
    	line-height: 32px;
    	margin-top: 0px;
    	margin-bottom: 7px; 
    	font-weight: 700;
    }
    .news_block .subtitle {
    	font-size: 18px; 
    	line-height: 20px;
    	margin-bottom: 5px; 
    }
	.news_block .new_link {
    	width: calc(100% - 20px);
		box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    }
	.new_link .new_img {
    	padding-bottom: 63%;
    }
    .new_date {
    	top: 24px; 
    	left: 30px;
    }
    .new_title_block { 
    	padding: 0 30px 24px;
    }
	.btn_load_more {
    	margin: 10px 10px 35px;
    }
}

















/* Раздел: ВАКАНСИИ */

.jobs_block .title {
	font-size: 44px; 
	line-height: 50px; 
	text-align: center;
	margin-top: -20px;
	margin-bottom: 8px; 
	font-weight: 700;
}

.jobs_block .subtitle {
	font-size: 20px; 
	line-height: 24px; 
	text-align: center; 
	color: #4C4C4C;
	margin-bottom: 10px; 
}

.jobs_all_card {
	display: inline-block; 
	width: calc(100% + 20px); 
	margin-left: -10px;
}

.jobs_block .job_link {
	position: relative;
	width: calc(50% - 20px); 
	margin: 10px 10px 10px; 
	float: left;
	cursor: pointer;
}

.job_link .gradient_bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 3px;
	background: linear-gradient(to top right, #EA131B, #ffa337);
	opacity: 0;
	transition: 0.25s;
}

.job_link .job_card {
	padding-bottom: 51.6%; 
	margin-bottom: 0px;
	position: relative;
	overflow: hidden;
	background: #F7F7F7;
	border-radius: 3px;
	transition: 0.25s;
}

.job_block_text {
	position: absolute;
	top: 35px;
	left: 35px;
	right: 35px;
	color: #000;
	transition: 0.25s;
}

.job_block_text .label {
	font-size: 12px;
	line-height: 13px;
	opacity: 0.5;
	margin-bottom: 16px;
}

.job_block_text .title {
	text-align: left;
	font-size: 24px;
	line-height: 28px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 10px;
}

.job_block_text .text {
	font-size: 14px;
	line-height: 22px;
	opacity: 0.6;
	height: 88px;
	overflow: hidden;
}

.job_btn {
	position: absolute;
	left: 35px; 
	bottom: 30px;
	font-size: 13px;
	line-height: 14px;
	font-weight: 700;
	color: #EA131B;
	transition: 0.25s;
	padding-right: 15px;
	z-index: 1;
}

.line_for_btn {
	height: 1px;
	background: rgba(0, 0, 0, 0.15);
	position: absolute;
	left: 240px;
	right: 240px;
	bottom: 37px;
	transition: 0.25s;
	transition-timing-function: ease;
}

.job_link:hover .gradient_bg {
	opacity: 1;
}

.job_link:hover .job_block_text {
	color: #fff;
}

.job_link:hover .job_btn {
	color: #fff;
}

.job_link:hover .line_for_btn {
	right: 35px;
	background: rgba(255, 255, 255, 0.3);
}

@media only screen and (max-width: 600px) {
	.jobs_block .title {
    	font-size: 28px; 
    	line-height: 32px;
    	margin-top: 0px;
    	margin-bottom: 7px; 
    	font-weight: 700;
    }
    .jobs_block .subtitle {
    	font-size: 18px; 
    	line-height: 20px;
    	margin-bottom: 5px; 
    }
    .jobs_block .job_link {
    	position: relative;
    	width: calc(100% - 20px); 
    	margin: 10px 10px 10px; 
    	float: left;
    	cursor: pointer;
    }
	.job_link .job_card {
    	padding: 28px 27px 23px;
    }
    .job_block_text {
    	position: static;
    	top: auto;
    	left: auto;
    	right: auto;
    }
    .job_block_text .label {
    	font-size: 13px;
    	margin-bottom: 16px;
    }
    .job_block_text .title {
    	font-size: 21px;
    	line-height: 24px;
    	margin-bottom: 10px;
    }
    .job_block_text .text {
    	margin-bottom: 20px;
    }
    .job_btn {
    	position: static;
    	left: auto; 
    	bottom: auto;
    }
    .line_for_btn {
    	display: none;
    }
}

























/* Раздел: УСЛУГИ */

.services {
	background: url(../image/bg_line.svg);
	padding-bottom: 30px;
}

.services .title {
	font-size: 40px; 
	line-height: 40px; 
	text-align: center; 
	padding-top: 35px;
	margin-bottom: 20px; 
	font-weight: 600;
}

.services .services_link {
	position: relative;
	width: calc(25% - 20px); 
	margin: 10px 10px; 
	float: left;
	overflow: hidden;
	cursor: pointer;
}

.services_link .services_img {
	background: #afafaf; 
	padding-bottom: 100%;
	transition: 0.2s;
}

.services_link .services_img .img {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	transition: 0.8s;
}

.services_link .services_gradient {
	position: absolute; 
	left: 0; 
	bottom: 0px; 
	right: 0; 
	padding: 28px 30px 23px; 
	background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
}

.services_link .services_title {
	color: #fff; 
	font-size: 20px; 
	line-height: 20px; 
	font-weight: 600;
	text-transform: uppercase;
}

.btn_services_hide {
	height: 50px; 
	line-height: 56px;
	color: #fff;
	font-weight: 600;
	background: #6633CC;
	text-align: center;
	border-radius: 3px;
	margin-top: 25px;
	margin-bottom: -75px;
	opacity: 0;
	transition: 0.3s;
	text-transform: uppercase;
}

.services .services_link:hover .services_img .img {
	opacity: 0.6;
	transform: scale(1.1);
}

.services .services_link:hover .btn_services_hide {
	height: 50px; 
	background: #6633CC;
	text-align: center;
	border-radius: 3px;
	margin-top: 25px;
	margin-bottom: 5px;
	opacity: 1;
}

.mfp-modal.servis-modal {
	max-width: 760px; 
	padding: 0px;
}

.full_bg_servis { 
	display: inline-block; 
	position: relative;
	width: 100%; 
	padding-bottom: 56.6%; 
}

.full_bg_servis .label {
	display: inline-block; 
	position: absolute; 
	top: 50px; 
	left: 50px;
	height: 32px; 
	line-height: 36px; 
	font-weight: 700; 
	background: #6633CC; 
	color: #fff;  
	padding: 0 14px; 
	font-size: 13px;
	text-transform: uppercase;
}

.full_bg_servis .title {
	position: absolute; 
	left: 0; 
	bottom: 0; 
	right: 0; 
	padding: 50px 70px 40px 50px; 
	background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
	color: #fff; 
	font-size: 40px; 
	line-height: 40px; 
	font-weight: 600;
}









/**** Полное описание новости ****/

.full_new_info {
	padding: 50px 50px 35px;
}

.full_new_info .date {
	font-size: 12px; 
	line-height: 13px; 
	font-weight: 600; 
	color: #8b8b8b; 
	margin-bottom: 20px;
}

.full_new_info .title {
	font-size: 35px; 
	line-height: 40px; 
	font-weight: 700; 
	margin-bottom: 23px;
}

.full_new_info .paragraph {
	float: left; 
	margin-top: 6px;
}

.full_new_info .new_description {
	font-size: 14px; 
	line-height: 22px; 
	margin-left: 0px;
	border-left: 3px solid #F7F7F7;
    padding-left: 22px;
}

.full_new_info .btn_new_block {
	display: inline-block; 
	width: 100%; 
	margin-top: 35px;
}

.full_new_info .btn_new_block .btn_source_new {
	height: 50px; 
	line-height: 48px; 
	text-align: center; 
	border: 2px solid #E7E7E7; 
	border-radius: 3px; 
	color: #EA131B; 
	font-size: 14px; 
	font-weight: 600; 
	text-transform: uppercase; 
	display: inline-block; 
	padding: 0 30px; 
	float: left; 
	width: calc(50% - 15px);
	margin-right: 30px;
	transition: 0.3s;
}

.full_new_info .btn_new_block .btn_source_new:hover {
	border: 2px solid #EA131B;
	background: #EA131B;
	color: #fff;
}

.full_new_info .btn_new_block .close_new {
	float: left; 
	width: calc(50% - 15px); 
	text-align: center; 
	margin: 0 !important;
}

@media only screen and (max-width: 600px) {
	.full_new_info {
    	padding: 46px 30px 30px;
    }
    .full_new_info .date {
    	font-size: 12px; 
    	line-height: 12px; 
    	font-weight: 600; 
    	color: #8b8b8b; 
    	margin-bottom: 20px;
    }
    .full_new_info .title {
    	font-size: 27px; 
    	line-height: 33px;
    	margin-bottom: 16px;
    }
    .full_new_info .paragraph {
    	display: none;
    }
    .full_new_info .new_description {
    	margin-left: 0px; 
    	margin-bottom: 25px;
		border-left: 3px solid #F7F7F7;
		padding-left: 17px;
    }
	.full_new_info .btn_new_block {
    	margin-top: 0;
    }
    .full_new_info .btn_new_block .btn_source_new {
    	float: none; 
    	width: 100%;
    	margin-right: 0;
		margin-bottom: 20px;
    }
    .full_new_info .btn_new_block .close_new {
    	float: none; 
    	width: 100% !important;
    }
}

/**** Полное описание вакансии ****/

.full_vacancy_info {
	padding: 50px 50px 5px;
	font-size: 17px;  
	line-height: 24px;
}

.full_vacancy_info .date {
	font-size: 12px; 
	line-height: 13px; 
	font-weight: 600; 
	color: #8b8b8b; 
	margin-bottom: 18px;
}

.full_vacancy_info .title {
	font-size: 34px; 
	line-height: 40px; 
	font-weight: 700; 
	color: #000; 
	margin-bottom: 14px;
}

.full_vacancy_info .zp {
	font-size: 21px; 
	line-height: 28px; 
	font-weight: 700; 
	color: #2E63E4; 
	margin-bottom: 11px;
	margin-left: 0px;
	border-left: 3px solid #F7F7F7;
	padding-left: 22px;
}

.full_vacancy_info .card_block {
	display: inline-block; 
	width: calc(100% + 20px); 
	margin-left: -10px; 
	margin-bottom: 23px;
}

.full_vacancy_info .card_block .item_card {
	width: calc(33.33% - 20px); 
	height: 105px; 
	background: #F7F7F7; 
	float: left; 
	border-radius: 5px; 
	margin: 10px; 
	padding: 25px;
}

.full_vacancy_info .card_block .item_card .card_title {
	font-size: 12px; 
	line-height: 13px; 
	font-weight: 500; 
	color: #848484; 
	margin-top: -3px;
	margin-bottom: 8px;
}

.full_vacancy_info .card_block .item_card .card_text {
	font-size: 15px; 
	line-height: 21px; 
	font-weight: 700;
}

.full_vacancy_info .subtitle {
	font-size: 25px; 
	line-height: 28px; 
	font-weight: 700; 
	margin-bottom: 12px;
}

.full_vacancy_info .item_description {
	font-size: 15px; 
	line-height: 24px; 
	margin-left: 0px; 
	color: #6d6d6d; 
	margin-bottom: 35px;
	border-left: 3px solid #F7F7F7;
	padding-left: 17px;
}

.btn_vacancy_block {
	display: inline-block; 
	width: 100%;
	padding: 0 50px 35px;
}

.btn_vacancy_block .btn_vacancy {
	float: left; 
	width: calc(50% - 15px);
	text-align: center;
	margin: 0 !important;
	margin-right: 30px;
}

.btn_vacancy_block .btn_close_vacancy {
	height: 50px; 
	line-height: 48px; 
	text-align: center; 
	border: 2px solid #E7E7E7; 
	border-radius: 3px; 
	color: #EA131B; 
	font-size: 14px; 
	font-weight: 600; 
	text-transform: uppercase; 
	display: inline-block; 
	padding: 0 30px; 
	float: right; 
	width: calc(50% - 15px);
	transition: 0.3s;
	cursor: pointer;
}

.btn_vacancy_block .btn_close_vacancy:hover {
	border: 2px solid #EA131B;
	background: #EA131B;
	color: #fff;
}

@media only screen and (max-width: 600px) {
	.full_vacancy_info {
    	padding: 46px 30px 5px;
    }
    .full_vacancy_info .title {
    	font-size: 28px; 
    	line-height: 34px;
    	margin-bottom: 10px;
		margin-right: 60px;
    }
    .full_vacancy_info .zp {
    	font-size: 20px; 
    	line-height: 22px; 
    	font-weight: 700; 
    	margin-left: 0px;
		border-left: 3px solid rgba(81, 151, 18, 0.15);
		padding-left: 17px;
		padding-top: 3px;
    }
	.full_vacancy_info .card_block {
    	margin-bottom: 10px;
    }
    .full_vacancy_info .card_block .item_card {
    	width: calc(100% - 20px); 
    	height: auto;
    	padding: 20px 20px 14px;
    }
    .full_vacancy_info .card_block .item_card .card_title {
    	font-size: 15px;
    }
    .full_vacancy_info .card_block .item_card .card_text {
    	font-size: 15px;
    }
	.full_vacancy_info .subtitle {
    	font-size: 21px; 
    	line-height: 24px; 
    	margin-bottom: 8px;
    }
    .full_vacancy_info .paragraph {
    	display: none;
    }
    .full_vacancy_info .item_description {
    	margin-left: 0px; 
    	margin-bottom: 25px;
		border-left: 3px solid #F7F7F7;
		padding-left: 17px;
    }
	.btn_vacancy_block {
    	padding: 0 30px 30px;
    }
    .btn_vacancy_block .btn_vacancy {
    	float: none; 
    	width: 100%;
    	margin: 0 0 20px !important;
    }
    .btn_vacancy_block .btn_close_vacancy {
    	float: none; 
    	width: 100%;
    }
}









.mfp-modal.servis-modal .btn {
	margin-top: 0px;
	margin-left: 50px;
	margin-bottom: 50px;
}

#zvonok {
	background: #fff; 
	padding: 50px 50px 50px;
	
}

#resume {
	background: #fff;
	max-width: 760px; 
	padding: 48px 50px 32px;
}

#consultation {
	background: #fff; 
	max-width: 760px; 
	padding: 48px 50px 32px;
}

#collaboration {
	background: #fff; 
	padding: 48px 50px 32px;
}

.form .title {
	display: inline-block;
	font-size: 34px; 
	line-height: 40px;
	font-weight: 700; 
	color: #fff; 
	margin-top: -5px;
	margin-bottom: 7px;  
	padding-right: 20px;
}

.form.white .title {
	color: #000;
}

.form .subtitle {
	font-size: 14px; 
	line-height: 21px; 
	color: #fff; 
	opacity: 0.6; 
	margin-bottom: 15px;
}

.form.white .subtitle {
	color: #000;
}

.form_send {
	display: inline-block;
	width: calc(100% + 20px); 
	margin-left: -10px; 
}

.form_send .wid_1_3 {
	width: calc(33.33% - 20px); 
	float: left; 
	margin: 0 10px;
}

.form_send .wid_1_2 {
	width: calc(50% - 20px); 
	float: left; 
	margin: 0 10px;
}

@media only screen and (max-width: 600px) {
	#resume {
    	padding: 30px 30px 30px;
    }
    #consultation {
    	padding: 30px 30px 30px;
    }
	#collaboration {
    	padding: 30px 30px 30px;
    }
	.form .title {
    	font-size: 36px; 
    	line-height: 32px;
    	margin-bottom: 10px;  
    	padding-right: 60px;
    }
    .form .subtitle {
    	margin-bottom: 17px;
    }
    .form_send {
    	width: calc(100% + 20px); 
    }
    .form_send .wid_1_3 {
    	width: calc(100% - 20px);
    }
    .form_send .wid_1_2 {
    	width: calc(100% - 20px);
    }
}

/* Блок: Контакты */

.contacts_block {
	background: url(../image/bg_line.svg); 
	padding-top: 40px; 
	padding-bottom: 78px;
}

.contacts_left_block {
	display: inline-block; 
	float: left;
	position: relative;
	width: 33.3%;  
	padding-right: 50px; 
	padding-top: 45px; 
}

.contacts_left_block .grey_block {
	background: #F6F6F6; 
	width: 90px; 
	height: 315px; 
	position: absolute; 
	top: 0; 
	left: -45px; 
	z-index: -1
}

.contacts_left_block .title_contact {
	font-size: 40px; 
	font-weight: 600;
}

.contacts_left_block .subtitle_contact {
	font-size: 22px; 
	line-height: 25px;  
	font-weight: 500;
	color: #3D3D3D;
}

.contacts_left_block .phone_contact {
	font-size: 32px; 
	line-height: 32px; 
	font-weight: 500; 
	margin-top: 20px;
}

.contacts_left_block .text_phone_contact {
	font-size: 15px; 
	line-height: 15px; 
	font-weight: 500; 
	color: rgba(0, 0, 0, 0.5);
}

.contacts_left_block .email_contact {
	display: inline-block;
	font-size: 20px; 
	line-height: 15px; 
	font-weight: 500;  
	color: #000;
	border-bottom: 1px dashed #9a9a9a;
	margin-top: 20px;
	transition: 0.3s;
}

.contacts_left_block .email_contact:hover {
	opacity: 0.4;
}

.contacts_left_block .title_adress {
	font-size: 40px; 
	line-height: 40px; 
	font-weight: 600; 
	margin-top: 65px;
}

.contacts_left_block .adress_adress {
	display: inline-block;
	font-size: 18px; 
	line-height: 24px; 
	font-weight: 500; 
	margin-top: 5px;  
	cursor: pointer;
	transition: 0.3s;
}

.contacts_left_block .adress_adress:hover {
	opacity: 0.4;
}

.contacts_left_block .adress_adress span {
	border-bottom: 1px dashed #9a9a9a;
}

.contacts_right_block {
	display: inline-block;
	float: left; 
	position: relative;
	width: 66.7%;  
	background: linear-gradient(to top right, #B8A0E7, #7142D0); 
	padding: 50px 50px 20px; 
}

.contacts_right_block .grey_block {
	background: #F6F6F6; 
	width: 387px; 
	height: 387px; 
	position: absolute; 
	bottom: -45px; 
	right: -45px; 
	z-index: -1
}

.contacts_right_block .title {
	display: inline-block;
	font-size: 40px; 
	line-height: 40px;
	font-weight: 600;  
	color: #fff; 
	padding-right: 20px;
}

.contacts_right_block .subtitle {
	font-size: 17px; 
	line-height: 21px; 
	color: #fff; 
	opacity: 0.6; 
	margin: 0 0 3px;
}

.contacts_right_block .form_send {
	display: inline-block; 
	width: calc(100% + 20px); 
	margin-left: -10px;
	margin-top: 10px;
}

.contacts_right_block .form_send .wid_1_2 {
	width: calc(50% - 20px); 
	float: left; 
	margin: 0 10px;
}

@media only screen and (max-width: 600px) {
	.contacts_block {
    	background: url(../image/bg_line_m.svg); 
		background-size: 100%;
    	padding-top: 30px; 
    	padding-bottom: 40px;
    }
    .contacts_left_block {
		position: relative;
    	display: inline-block; 
    	float: none;
    	position: relative;
    	width: calc(100% - 30px);  
		margin-left: 30px;
    	padding-right: 30px; 
    	padding-top: 0px; 
		margin-bottom: 30px;
    }
	.contacts_left_block .grey_block {
    	width: 27.5%; 
    	height: 272px;
    	top: -24px; 
    	left: -30px; 
    }
    .contacts_left_block .title_contact {
    	font-size: 34px;
    }
    .contacts_left_block .subtitle_contact {
    	font-size: 20px; 
    	line-height: 24px;
    }
    .contacts_left_block .title_adress {
    	font-size: 34px; 
    	line-height: 34px; 
    	margin-top: 45px;
    }
    .contacts_right_block {
    	display: inline-block;
    	float: none; 
    	position: relative;
    	width: 100%;  
    	background: linear-gradient(to top right, #B8A0E7, #7142D0); 
    	padding: 30px 30px 30px; 
    }
	.contacts_right_block .grey_block {
    	display: none;
    }
	.contacts_right_block .title {
    	font-size: 28px; 
    	line-height: 28px;
    	padding-right: 0;
		margin-bottom: 5px;
    }
	.contacts_right_block .form_send .wid_1_2 {
    	width: calc(100% - 20px); 
    	float: none;
    }
}














/* Блок: Подвал */

footer {
	display: block;
	background: #F7F7F7;
    color: #fff;
	width: 100%;
	clear: both;
	margin-left: 70px;
	width: calc(100% - 70px);
}

.subfooter {
	height: 70px; 
	line-height: 72px; 
	font-size: 14px;
	color: #6D6D6D;
	overflow: hidden;
}

.subfooter .left_text {
	display: inline-block; 
	float: left;
	font-size: 12px;
	background: #F7F7F7;
	position: relative;
	z-index: 1;
	padding-right: 20px;
}

.subfooter .left_text span {
	white-space: nowrap;
}

.subfooter .line {
	position: absolute;
	width: 100%;
	height: 1px;
	background: #000;
	opacity: 0.1;
	float: left;
	margin: 35px 0 0 0;
}

.subfooter .right_text {
	float: right;
	font-size: 12px;
	background: #F7F7F7;
	position: relative;
	z-index: 1;
	padding-left: 20px;
}

.subfooter .dev_link {
	color: #696969;
	font-weight: 600;
	transition: 0.3s;
}

.subfooter .dev_link:hover {
	opacity: 0.3;
}

@media only screen and (max-width: 600px) {
	footer {
    	margin-left: 0px;
    	width: 100%;
    }
	.subfooter {
    	height: auto; 
    	line-height: 18px; 
    	font-size: 14px;
    	display: flex;
		width: 100%;
		padding: 25px 0px 21px;
		text-align: center;
    }
    .subfooter .left_text {
    	display: inline-block; 
    	float: none;
		padding: 0;
    }
    .subfooter .left_text span {
    	white-space: nowrap;
    }
	.subfooter .line {
		display: none;
	}
    .subfooter .right_text {
    	float: none;
		padding: 0;
    }
}

/* Модальное окно */

.main-content {
    position: relative;
    overflow: hidden;
}

.sub-content {
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background: #fff;
	-webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
}

.sub-content.fix {
    position: fixed;
}

.page-scroll {
    cursor: pointer;
}

.image-source-link {
	color: #98C3D1;
}

.mfp-wrap {
	-webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
}

.mfp-modal {
	background: #fff;
	padding: 40px;
	max-width: 410px;
	margin: 55px auto;
	position: relative;
    box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.2);
	border-radius: 3px;
}

.mfp-modal.w_410 {
	max-width: 410px !important;
}

.mfp-modal.trans_0 {
	transition: 0s !important;
}

.full_product_card {
	max-width: 1024px;
	height: 500px; 
	padding: 0;
}

.full_product_card.card_opt {
	max-width: 540px;
	height: auto; 
	padding: 0;
}

.full_product_card .bg {
	height: 500px;
}

.full_product_card.card_opt .bg {
	width: 100%;
	height: auto;
}

.full_product_card .bottle {
	height: 507px; 
	position: absolute; 
	top: -20px; 
	left: 293px;
}

.full_product_card .info_block {
	width: 50%; 
	height: 500px; 
	float: right; 
	padding: 50px 50px 50px 20px; 
	position: relative;
}

.full_product_card.card_opt .info_block {
	width: 100%; 
	height: auto; 
	float: none; 
	padding: 35px 50px 50px 50px;
}

.full_product_card .info_block .line {
	display: inline-block; 
	position: absolute; 
	left: 20px; 
	right: 50px; 
	height: 1px; 
	background: #DEDEDE; 
	margin: 9px 0px 15px; 
	z-index: -1;
}

.full_product_card.card_opt .info_block .line {
	left: 50px;
}

.full_product_card .info_block .subtitle {
	display: inline-block;
	color: #B19000; 
	font-weight: 600; 
	margin-bottom: 15px; ; 
	background: #fff;  
	padding-right: 25px;
}

.full_product_card .info_block .title {
	font-family: 'PT Serif';
	font-style: normal;
	color: #000;  
	font-size: 22px; 
	line-height: 28px;  
	margin-bottom: 15px; 
	width: 100%;
}

.full_product_card .info_block .text {
	color: #000; 
	opacity: 0.6; 
	font-size: 14px; 
	line-height: 23px;
}

.full_product_card .info_block .text span {
	margin-right: 17px;
}

.form_bottle {
	display: inline-block;
	position: absolute; 
	bottom: 50px; 
	left: 40px;
}

.form_bottle img {
	margin-bottom: -5px;
}

.form_bottle .litr {
	display: inline-block; 
	margin: 0 16px 0 8px; 
	font-size: 16px;
	line-height: 16px;
	color: #000;
}

.close_for_mob {
	display: none;
}

.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0; 
	transition: all 0.3s ease-in-out; 
	transform: translateY(120px); }

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	transform: translateY(0px); }

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	transform: translateY(120px); 
	opacity: 0; }

.my-mfp-zoom-in.mfp-bg {
	opacity: 0; 
	transition: opacity 0.3s ease-in-out; }

.my-mfp-zoom-in.mfp-ready.mfp-bg {
    background: #14202B;
	opacity: 0.9; }

.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0; }

.mfp-modal.text_block {
    padding: 50px;
    text-align: left;
    max-width: 760px;
    font-size: 15px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.5);
}

.mfp-modal.text_block .title {
    font-weight: 600;
    text-align: left;
    font-size: 35px;
    line-height: 40px;
    color: #000;
    margin-bottom: 20px;
}

.mfp-modal.text_block .text b {
    font-weight: 700;
    font-size: 15px;
    color: #000;
	line-height: 40px;
}

.mfp-modal.text_block .email {
    color: #0b0b0b;
	border: 0;
	border-bottom: 1px dotted #484848;
	transition: 0.25s;
}

.mfp-modal.text_block .email:hover {
    opacity: 0.3;
}

.close_modal {
	display: none;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 25px;
    right: 25px;
    color: #000;
    text-align: center;
    transition: 0.3s;
	border-radius: 25px;
	z-index: 3;
	background: #EEF3F0 url(../image/btn_close.svg);
	background-size: 50px;
}

.title_form_line {
	display: inline-block; 
	height: 1px; 
	background: #E7E7E7; 
	margin: 9px 0px 15px; 
	position: absolute; 
	left: 40px;
	right: 50px; 
	z-index: -1;
}

.video_for_mob {
	position: relative; 
	padding-bottom: 56.3%;
}

#map_modal {
	padding: 0; 
	max-width: calc(100vw - 120px);
	height: calc(100vh - 120px);
}

#map_modal .btn_modal_close {
	top: 20px; 
	right: 10px;
}

#map_modal #map {
	width: calc(100% - 70px); 
	height: 100%; 
	border-radius: 3px; 
	float: left;
}

#map_modal .info_line {
	display: inline-block;
	position: relative;
	width: 70px; 
	height: 100%; 
	background: #fff;   
	float: left; 
	border-radius: 0 3px 3px 0;
}

#map_modal .info_line .line {
	top: 90px;
	left: 50%; 
	bottom: 95px;
	width: 1px; 
	background: rgba(0, 0, 0, 0.15); 
	position: absolute;
}

#map_modal .info_line .text {
	position: absolute; 
	bottom: -40px; 
	left: 0px; 
	transform: rotate(-90deg); 
	transform-origin: left top; 
	white-space: nowrap; 
	color: rgba(0, 0, 0, 0.5); 
	height: 70px;
	line-height: 68px; 
	background: #fff;
	font-size: 13px; 
	font-weight: 500; 
	padding-right: 20px;
}

@media only screen and (max-width: 600px) {
    .mfp-modal {
        padding: 25px 30px 30px;
        max-width: 100vw;
		min-height: 100vh;
        margin: 0;
        margin-left: -6px;
        margin-right: -6px;
        border-radius: 0;
	}
	.title_form_line {
    	left: 0px;
    	right: 0px;
    }
	.mfp-modal.text_block .img_news {
    	width: calc(100% + 50px); 
    	margin-left: -25px; 
    	margin-right: -25px; 
    	margin-top: -30px;  
    	margin-bottom: 17px;
    	border-radius: 0;
    }
    .mfp-modal.text_block .date_news {
    	margin-bottom: 15px;
    }
	.mfp-modal.text_block .title {
        text-align: left;
        font-size: 25px;
        line-height: 30px;
        color: #000;
        margin-bottom: 20px;
    }
	.mfp-modal.text_block .text {
    	margin-bottom: -10px;
    }
	.mfp-modal.text_block .btn {
		width: 100%;
		text-align: center;
	}
    .mfp-modal.text_block {
        padding: 30px 30px 30px;
    }
    .mfp-modal.text_block2 {
        padding: 30px 25px 30px;
    }
	.close_modal {
		display: block;
	}
	.full_product_card {
    	height: auto;
    	padding: 0;
    }
    .full_product_card .bg {
    	height: auto;
    	width: 74%;
    	margin: 30px 30px 25px 30px;
    }
	.full_product_card .info_block .line {
    	left: 30px; 
    	right: 30px;
    }
    .full_product_card.card_opt .bg {
    	width: 100%;
    	height: auto;
		margin: 0;
    }
    .full_product_card .bottle {
    	height: auto;
    	width: 50%;
    	position: absolute; 
    	top: 25px; 
    	left: auto;
    	right: 0%;
    }
    .full_product_card .info_block {
    	width: 100%; 
    	height: auto; 
    	float: none; 
    	padding: 0px 30px 30px 30px;
    }
	.full_product_card.card_opt .info_block {
    	padding: 20px 30px 30px 30px;
    }
    .full_product_card .info_block .title {  
    	font-size: 22px; 
    	line-height: 28px; 
    	width: 100%;
    }
    .full_product_card .info_block .text {
		margin-bottom: 10px;
    }
    .full_product_card .info_block .text span {
    	margin-right: 15px;
    }
    .form_bottle {
		display: inline-block;
    	position: relative; 
    	bottom: auto; 
    	left: 0px;
    }
    .form_bottle .litr {
    	margin: 0 16px 0 8px; 
    	font-size: 14px;
    	line-height: 14px;
    }
	.close_for_mob {
    	display: block;
    	text-align: center;
    	margin-top: 30px;
    }
	.video_for_mob {
    	position: absolute; 
    	top: 50%; 
    	left: 0; 
    	right: 0; 
    	transform: translateY(-50%); 
    	padding-bottom: 56.3%;
    }
	#map_modal {
    	padding: 0; 
    	max-width: 100vw;
    	height: 100vh;
    }
    #map_modal #map {
    	width: 100%; 
    	height: 100%; 
    	border-radius: 0px; 
    	float: none;
    }
    #map_modal .info_line {
    	display: none;
    }
	#map_modal .close_modal {
		background: #fff url(../image/btn_close.svg);
		box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	}
}

@media only screen and (max-width: 414px) {
	.vertical_center {
    	position: absolute;
    	top: 50%; 
    	left: 30px; 
    	right: 30px;
    	transform: translateY(-50%);
    }
}

@media only screen and (max-height: 414px) {
	.vertical_center {
    	position: relative;
		top: 0%; 
    	left: 0px; 
    	right: 0px;
    	transform: translateY(0%);
		margin: 60px 0 0 0;
    }
}

.btn_modal_close {
    height: 50px;
    width: 50px;
	border-radius: 50%;
    text-align: center;
    background: #EEEEEE;
    position: absolute;
    top: 40px;
    right: -25px;
    z-index: 1;
    transition: 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.btn_modal_close img {
    transition: 0.3s;
}

.btn_modal_close:hover img {
    transform: rotate(90deg);
}
@media only screen and (max-width: 600px) {
	.btn_modal_close {
		display: none;
	}
}

/*----  Text Inputs + Textarea  ---*/

::-webkit-input-placeholder {
    text-overflow: ellipsis;
    opacity: 1; 
    transition: opacity 0.3s ease;
    transition: color 2s;
    color: #989898; }
::-moz-placeholder {
    text-overflow: ellipsis;
    opacity: 1; 
    transition: opacity 0.3s ease;
    transition: color 2s;
    color: #989898; }
:-moz-placeholder {
    text-overflow: ellipsis;
    opacity: 1; 
    transition: opacity 0.3s ease;
    transition: color 2s;
    color: #989898; }
:-ms-input-placeholder {
    text-overflow: ellipsis;
    opacity: 1; 
    transition: opacity 0.3s ease;
    transition: color 2s;
    color: #989898; }

input,
textarea {
	font-family: 'Ubuntu';
    -webkit-appearance: none;
    background: #fff;
    border: 2px solid #E4E4E4;
    border-radius: 3px;
    outline: none;
    font-size: 15px;
	line-height: 20px;
    height: 50px;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0 20px 0;
    font-weight: 400;
    transition: 0.5s;
	color: #000;
}

input:hover,
textarea:hover {
    border: 2px solid #c1b7d6;
}

input.white,
textarea.white {
    background: #fff;
	border: 2px solid #fff;
	color: #000;
}

input.grey,
textarea.grey {
    background: #F2F2F2;
}

input.done {
    background:  rgba(24, 173, 53, 0.7);
	border: 2px solid  rgba(24, 173, 53, 0.7);
}

textarea {
    height: 100px;
    resize: none;
    padding-top: 13px;
    padding-bottom: 16px;
	line-height: 23px;
}

input.error,
textarea.error {
    background: rgba(255, 24, 0, 0.3) !important;
    border: 2px solid rgba(255, 24, 0, 0.3);
    transition: 0.3s !important; }
input.error::-webkit-input-placeholder {
    transition: color 0.3s;
    color: #cc341e; }
input.error::-moz-placeholder {
    transition: color 0.3s;
    color: #eb7969; }
input.error:-moz-placeholder {
    transition: color 0.3s;
    color: #eb7969; }
input.error:-ms-input-placeholder {
    transition: color 0.3s;
    color: #eb7969; 
}

select {
    font-family: 'Ubuntu';
    -webkit-appearance: none;
    background: #F2F2F2;
    border: 2px solid #fff;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    height: 50px;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0 20px;
    font-weight: 400;
    transition: 0.5s;
	cursor: pointer;
	border: 2px solid #d1d1d1;
}

/*input:focus:not([readonly]),
textarea:focus:not([readonly]) {
    border: 2px solid rgba(0, 29, 255, 0.5) !important;
}*/

.checkbox {
    position: relative;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    background: #EEF3F0;
    border: 2px solid #dae0dc;
    cursor: pointer;
    float: left; 
	overflow: hidden;
}

.checkbox.activ {
	border: 2px solid #262626;
	background: #262626;
}

.checkbox span {
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 5px;
    top: -2px;
    left: -2px;
    transform: scale(0.8);
    opacity: 0;
    transition: 0.2s;
}

.checkbox.activ span {
    transform: scale(1);
    opacity: 1;
}

.checkbox.error {
	background: rgba(255, 24, 0, 0.3) !important;
    transition: 0.3s;
    border: 2px solid rgba(255, 24, 0, 0.3);
}

.title_form_promo {
	font-family: 'PT Serif'; 
	margin: 0 0 13px; 
	font-size: 25px; 
	line-height: 32px; 
	color: #fff;
}

.subtitle_form_promo {
	font-size: 15px; 
	line-height: 23px; 
	color: rgba(255, 255, 255, 0.6); 
	margin: 0 0 23px;
}

.form_send_promo {
	display: inline-block;
	width: 50%; 
	float: left; 
	padding-right: 20px; 
	position: relative;
}

.form_send_promo button {
	position: absolute;
	top: 77px;
	right: 27px;
	height: 36px;
	line-height: 36px;
	background: #6f6f6f;
	cursor: text;
}

.form_send_promo button.attention {
	background: #eab72b;
	box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
	cursor: pointer;
}

.form_send_promo button.attention:hover {
	background: #d19e0f;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.form_send_promo button.done {
	background: #18ad35;
	cursor: text;
}

.form_send_promo_contacts {
	display: inline-block;
	width: 50%;
	border: 0;
	border-left: 1px dashed rgba(255, 255, 255, 0.15);
	padding-left: 20px;
}

.btn_submit {
	font-family: 'Exo 2', sans-serif;
	font-size: 15px; 
	font-weight: 600;
	line-height: 50px; 
	width: 100%; 
	margin-left: 0 !important;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.btn_submit:hover {
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 600px) {
	.title_form_promo {
    	font-family: 'PT Serif'; 
    	margin: 55px 0 13px; 
    	font-size: 25px; 
    	line-height: 32px; 
    	color: #fff;
    }
	.subtitle_form_promo {
    	margin: 0 0 13px;
    }
	.form_send_promo {
    	display: inline-block;
    	width: 100%; 
    	float: none; 
    	padding-right: 0px; 
    	position: relative;
		margin-bottom: 20px;
    }
	.form_send_promo button {
    	right: 7px;
    }
	.form_send_promo_contacts {
    	display: inline-block;
    	width: 100%;
    	border: 0;
    	border-top: 1px dashed rgba(255, 255, 255, 0.15);
    	padding-left: 0px;
		padding-top: 25px;
    }
}

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

.pulse {
    overflow: initial;
    position: relative;
}

.pulse::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    -webkit-animation: pulse-animation 2.3s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-animation 2.3s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
	background: #EA131B;
}

@-webkit-keyframes pulse-animation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

.pulse3 {
    overflow: initial;
    position: relative;
}

.pulse3::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
    transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s;
    transition: opacity .3s, transform .3s, -webkit-transform .3s;
    -webkit-animation: pulse-animation3 3s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    animation: pulse-animation3 3s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}

@-webkit-keyframes pulse-animation3 {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse-animation3 {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.twist {
    animation-name: spin;
    animation-duration: 2.3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    0% {
        transform: rotate(-20deg);
    }
    5% {
        transform: rotate(20deg);
    }
    10% {
        transform: rotate(-20deg);
    }
    15% {
        transform: rotate(20deg);
    }
    20% {
        transform: rotate(-20deg);
    }
    25% {
        transform: rotate(20deg);
    }
    30% {
        transform: rotate(-10deg);
    }
    35% {
        transform: rotate(10deg);
    }
    40% {
        transform: rotate(-5deg);
    }
    45% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.btn_circle_phone {
    display: none;
}

@media only screen and (max-width: 600px) {
    .btn_circle_phone {
		display: block;
        outline: none;
        position: fixed;
        right: 25px;
        bottom: 25px;
        height: 50px;
        width: 50px;
        border-radius: 50%;
    	background: #fff;
        transition: 0.3s;
        z-index: 2;
        box-shadow: 0 1px 35px 0 rgba(0, 0, 0, 0.3);
        cursor: pointer;
    }
    .btn_circle_phone img {
        height: 50px;
		background: #fff;
		border-radius: 50%;
    }
	.btn_circle_phone.hide {
    	transform: scale(0);
    }
}