.preloaderBG {
    z-index: 2;
    position: fixed;
	top: 70px;
    display: block;
    width: 100%;
    height: calc(100vh - 70px);
    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: #B19000;
}

.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: "Ubuntu", sans-serif;
    font-size: 15px;
    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 {
    font-family: "Ubuntu", sans-serif;
    overflow: visible; }

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;
    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-family: 'Ubuntu';
	font-style: normal;
	line-height: 28px;
    font-size: 24px;
    margin-bottom: 20px;
	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: 25px;
    height: 50px;
    line-height: 50px;
    padding: 0 35px;
    background: #ff400a;
    color: #fff;
    cursor: pointer;
    /*text-transform: uppercase;*/
    vertical-align: middle;
    outline: none;
    font-size: 13px;
    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: #E50302;
    transition: 0.25s;
    background-size: 1px 100%;
	/*box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);*/
}

.color_btn:hover{
	background: #b90000;
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0);
}

.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: 500;
    color: #646464;
    transition: 0.3s;
    cursor: pointer;
}

.link_pk:hover {
    opacity: 0.4;
}

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

.menu_mob_btn {
	display: none;
	position: fixed;
	top: 25px;
	right: 25px;
	height: 40px;
	width: 40px;
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.2);
	z-index: 5;
	background: #fff url(../image/menu_open.svg);
	transition: border-radius 0.25s;
}

.menu_mob_btn.close {
	border-radius: 20px;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	background: #EEF3F0 url(../image/menu_close.svg);
}

.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: inline-block;
	position: absolute;
	top: 50%;
	left: 40px;
	right: 40px;
	transform: translateY(-50%)
}

.menu_links .m_link {
	float: none;
	text-align: left;
	line-height: 36px;
	font-size: 26px;
	font-weight: 400;
	color: #000;
	display: block;
}

.sub_info {
	text-align: left; 
	font-size: 15px;
	line-height: 23px; 
	opacity: 0.5; 
	margin-bottom: 15px;
}

.sub_info span {
	margin-right: 15px;
}

.menu_links .m_link_lang {
    display: inline-block;
	text-align: left;
	line-height: 30px;
	font-size: 26px;
	font-weight: 400;
	color: #000;
}

.menu_links .m_link_lang.action {
	border-bottom: 3px solid #d80101;
}

.mob_menu2 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 9999;
	transform: translateY(110%);
	transition: 0.3s;
	box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.1);
	overflow: scroll;
}

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

.menu_links2 {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 40px;
	right: 40px;
	margin-bottom: 30px;
}

.menu_links2 .page-scroll {
	height: 40px; 
	line-height: 40px; 
	color: #000; 
	font-size: 18px; 
	font-weight: 500; 
	width: 100%; 
	float: left;
	transition: 0.5s;
}

.menu_links2 .mini_line {
	height: 2px; 
	width: 5px; 
	background: #A1A1A1; 
	float: left; 
	margin: 19px 15px 0 0;
}

.menu_links2 .line {
	height: 1px; 
	width: 40px; 
	background: #ECECEC; 
	float: left; 
	margin-top: 15px; 
	margin-bottom: 15px;
}






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

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

.nav_bar {
	position: fixed;
	top: 0; 
	left: 0; 
	right: 0; 
	height: 70px; 
	box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.08); 
	background: #fff; 
	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;
}

.logo_mob {
	display: none;
}

.logo_img_mob {
	height: 110px; 
	position: absolute; 
	top: 0; 
	left: 0;
}

.logo_text_mob {
	position: absolute;
	top: 13px;
	left: 13px;
	height: 64px;
}

@media only screen and (max-width: 600px) {
	.nav_bar {
		display: none;
	}
	.logo_mob {
    	display: block;
		position: fixed; 
		top: 0; 
		left: 0; 
		z-index: 2
    }
}

/*-- Главная страница --*/

.start_block {
	margin-top: 70px; 
	height: calc(97vh - 70px); 
	background: url(../image/index_bg.jpg) center/cover; 
	position: relative; 
	margin-bottom: 60px;
}

.start_block .gradient_bottom {
	background: linear-gradient(to top, rgba(46, 37, 0, 0.7), rgba(177, 144, 0, 0)); 
	position: absolute; 
	bottom: 0; 
	left: 0; 
	right: 0;
	height: 280px;
}

.start_block .container {
	height: 100%;
}

.start_block .container .text_block {
	position: absolute; 
	bottom: 80px; 
	right: 290px; 
	width: 540px;
	text-align: right; 
	color: #fff; 
}

.start_block .container .text_block .title {
	font-family: 'PT Serif'; 
	font-size: 46px; 
	line-height: 46px; 
	font-weight: 600; 
	margin-bottom: 10px; 
	text-shadow: 0px 2px 40px rgba(0, 0, 0, 0.5);
} 

.start_block .container .text_block .subtitle {
	opacity: 0.8; 
	font-weight: 500; 
	line-height: 23px; 
	padding-left: 20px; 
	text-shadow: 0px 2px 40px rgba(0, 0, 0, 0.5);
}

.start_block .container .bottle {
	position: absolute; 
	bottom: -40px; 
	width: 270px; 
	right: 15px;
}

.start_block .border_bottom {
	position: absolute; 
	bottom: 0; 
	width: 100%;
}

.cat_oil.index {
	margin-bottom: 25px; 
	margin-left: -25px; 
	width: calc(100% + 50px);
}

.cat_oil.index .mini_card {
	margin: 0 25px 0px 25px; 
	width: calc(33.33% - 50px);
}

.cat_oil.index .mini_card.mobile {
	display: none;
}

.cat_oil.index .mini_card .b1 {
	width: 58.5%; 
	left: -11.5%; 
	top: 2.5%;
}

.cat_oil.index .mini_card .b2 {
	width: 60%; 
	left: -11.5%;
}

.prod_info_text {
	text-align: center
}

.prod_info_text .text {
	display: inline-block;
	text-align: center; 
	max-width: 700px; 
	line-height: 23px;  
	opacity: 0.6; 
	margin-bottom: 30px;
}

.prod_info_text .btn {
	margin-bottom: 60px;
}

.icon_items.index {
	margin-bottom: 30px;
}

.btn_for_icon {
	margin-bottom: 60px;
}

.opt_items.mini {
	padding: 0 50px;
}

@media only screen and (max-width: 600px) {
	.start_block {
	    margin-top: 0px; 
		height: 430px; 
		background: url(../image/index_bg_m.jpg) center/cover; 
		margin-bottom: 45px;
     }
    .start_block .gradient_bottom {
    	height: 145px;
    }
    .start_block .container .text_block {
    	bottom: 25px; 
    	left: 130px;
    	right: auto; 
    	width: auto;
    	text-align: left;
    }
    .start_block .container .text_block .title {
    	font-size: 24px; 
    	line-height: 28px; 
    	margin-bottom: 0px;
    	width: 190px;
    	text-shadow: 0px 2px 30px rgba(0, 0, 0, 0.7);
    } 
    .start_block .container .text_block .subtitle {
    	display: none;
    }
    .start_block .container .bottle {
    	bottom: -20px; 
    	width: 118px; 
    	left: 15px;
    	right: auto;
    }
	.start_block .border_bottom {
    	bottom: -1px;
    }
	.cat_oil.index {
    	margin-bottom: 0px; 
    	margin-left: -10px; 
    	width: calc(100% + 20px);
    }
	.cat_oil.index .mini_card {
    	margin: 0 10px 0px 10px; 
    	width: calc(50% - 20px);
		margin-bottom: 20px;
    }
	.cat_oil.index .mini_card.mobile {
    	display: block;
    }
	.prod_info_text .text {
    	text-align: center; 
    	max-width: 100%;
    	margin-bottom: 20px;
    }
    .prod_info_text .btn {
    	margin-bottom: 40px;
    }
	.icon_items.index {
    	margin-bottom: 0;
    }
    .btn_for_icon {
    	margin-bottom: 40px;
    }
	.opt_items.mini {
    	padding: 0;
    }
}

/*-- Продукция: левый навигационный бар --*/

.cont_product {
	margin-top: 118px;
}

.left_nav_bar {
	width: 234px;
	float: left;
	margin-bottom: 40px;
}

.page-scroll {
	height: 40px; 
	line-height: 40px; 
	color: #0f0f0f; 
	font-size: 13px; 
	font-weight: 600; 
	width: 100%; 
	float: left;
	transition: 0.5s;
}

.page-scroll:hover {
	opacity: 0.3;
	padding-left: 10px;
}

.link_mini_line {
	width: calc(100% - 20px);
}

.mini_line {
	height: 2px; 
	width: 5px; 
	background: #A1A1A1; 
	float: left; 
	margin: 19px 15px 19px 0;
}

.left_nav_bar .line {
	height: 1px; 
	width: 40px; 
	background: #ECECEC; 
	float: left; 
	margin-top: 20px; 
	margin-bottom: 20px;
}

.filter {
	display: none;
}

/*-- Продукция: правый блок --*/

.right_block {
	display: block; 
	width: calc(100% - 234px); 
	float: right; 
	margin-right: -15px;
}

.cat_oil {
	display: block; 
	float: left; 
	width: 100%; 
	margin-top: -118px; 
	padding-top: 118px;
}

.cat_oil .mini_card {
	position: relative;
	margin: 0 15px 50px 15px; 
	width: calc(33.33% - 30px); 
	float: left; 
	cursor: pointer;
}

.cat_oil .mini_card .bottle {
	width: 58.5%; 
	position: absolute; 
	left: -13%;
	z-index: 1;
}

.cat_oil .mini_card .bottle2 {
	width: 57%; 
	position: absolute; 
	left: -12%;
	z-index: 1;
	margin-top: 3.5%;
}

.cat_oil .mini_card .bg {
	width: 100%;
}

.cat_oil .mini_card .title {
	margin-left: 36px; 
	border-left: 2px solid #ECECEC; 
	padding: 2px 0px 2px 17px; 
	font-family: 'PT Serif';
	font-style: normal;
	font-size: 16px; 
	line-height: 18px;
	color: #000;
	transition: 0.3s;
}

.cat_oil .mini_card:hover .title {
	padding: 2px 0px 2px 27px;
	color: #818181;
}

@media only screen and (max-width: 600px) {
	.cat_oil {
    	display: block; 
    	float: left; 
    	width: 100%; 
    	margin-top: -85px; 
    	padding-top: 85px;
    }
	.cont_product {
    	margin-top: 85px;
    }
	.left_nav_bar {
		display: none;
    	width: 100%;
    	float: none;
    	margin-bottom: 40px;
    }
	.filter {
		display: block;
    	position: fixed; 
    	bottom: 25px; 
    	left: 0; 
    	width: 100%; 
    	z-index: 2; 
    	text-align: center;
    }
	.right_block {
    	display: inline-block; 
		margin-left: -10px;
    	width: calc(100% + 20px); 
    	float: none; 
    	margin-right: 0;
    }
	.cat_oil .mini_card {
    	position: relative;
    	margin: 0 10px 25px 10px; 
    	width: calc(50% - 20px); 
    	float: left; 
    	cursor: pointer;
    }
	.cat_oil .mini_card .title {
    	margin-left: 23px; 
    	border-left: 2px solid #ECECEC; 
    	padding: 2px 0px 2px 12px; 
    	font-family: 'PT Serif';
    	font-style: normal;
    	font-size: 13px; 
    	line-height: 13px;
    }
	.cat_oil .mini_card:hover .title {
    	padding: 2px 0px 2px 12px;
    	color: #818181;
    }
}

/*---- Производство ------*/

.cont_manuf {
	margin-top: 110px;
}

.cont_manuf .title { 
	font-family: 'PT Serif'; 
	font-size: 32px; 
	line-height: 38px;
	text-align: center; 
	margin-bottom: 40px;
}

.cont_manuf .title span {
	white-space: nowrap;
}

.icon_items {
	display: inline-block; 
	margin-bottom: 60px;
}

.icon_items .icon_block {
	display: inline-block; 
	float: left;
	margin: 0 10px; 
}

.icon_items .icon_block img {
	margin-bottom: 18px;
}

.icon_items .icon_block .text {
	max-width: 200px; 
	line-height: 18px; 
	opacity: 0.6; 
	text-align: center;
}

.icon_items .icon_block .text span {
	white-space: nowrap;
}

.video_info_block {
	display: flex;
	align-items: center;
	width: 100%; 
	margin-bottom: 60px;
}

.video_info_block .video_block {
	position: relative;
	width: calc(50% - 30px); 
	background: #7c7c7c; 
	float: left; 
	margin-right: 60px;  
	overflow: hidden;
}

.video_info_block .video_block .border_video {
	width: calc(100% + 2px); 
	z-index: 1; 
	position: absolute; 
	top: -1px; 
	left: -1px;
}

.btn_play_video {
	height: 90px; 
	width: 90px; 
	border-radius: 50%; 
	background: rgba(255, 255, 255, 0.75); 
	position: absolute; 
	top: 50%; 
	left: 50%; 
	z-index: 1; 
	padding: 10px; 
	transform: translate(-50%, -50%); 
	cursor: pointer;
}

.btn_play_video .play {
	background: #fff; 
	height: 70px; 
	width: 70px; 
	border-radius: 50%; 
	box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2);
	transition: 0.3s;
}

.btn_play_video .play img {
	width: 100%;
}

.btn_play_video:hover .play {
	transform: scale(0.95);
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.video_info_block .text_block {
	width: calc(50% - 30px); 
	float: left; 
	font-size: 15px; 
	line-height: 25px; 
	opacity: 0.9;
}

.video_info_block .text_block span {
	margin-right: 17px;
}

.title_sertificat {
	font-size: 32px; 
	line-height: 38px; 
	font-family: 'PT Serif'; 
	margin-bottom: 20px;
}

.sert_items {
	display: inline-block; 
	margin-bottom: 0px;
}

.sert_block {
	display: flex; 
	align-items: center; 
	margin-bottom: 25px;
}

.sert_block img {
	float: left; 
	margin-right: 20px;
}

.sert_block .text {
	text-align: left; 
	float: left; 
	width: 660px; 
	line-height: 23px; 
	opacity: 0.6;
}
.sert_block .text span {
	white-space: nowrap
}

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

.block_sert_3 .sert_3 {
	width: calc(33.33% - 20px); 
	float: left; 
	margin: 10px; 
	padding: 10px; 
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15); 
	border-radius: 5px;
}

.block_sert_3 .sert_3 img {
	width: 100%; 
	display: flex;
}


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

.foto_block {
	display: inline-block; 
	width: calc(33.33% - 20px); 
	float: left; 
	margin: 0 10px 20px 10px;
}

.foto_block img {
	display: flex;
	width: 100%; 
}

.foto_block2 {
	display: inline-block;
	width: calc(25% - 20px); 
	float: left; 
	margin: 0 10px 20px 10px;
}

.foto_block2 img {
	display: flex;
	width: 100%; 
}

.title_block {
	text-align: center
}

.title_block .subtitle {
	font-weight: 600; 
	color: #B19000;
}

.title_block .line {
	display: inline-block; 
	height: 35px; 
	width: 1px; 
	background: #D8D8D8; 
	margin: 20px 0 8px 0;
}

.title_block .title {
	font-family: 'PT Serif'; 
	font-size: 32px; 
	line-height: 38px; 
	margin-bottom: 30px;
}

.title_block .title span {
	white-space: nowrap;
}

.opt_items {
	display: inline-block; 
	margin-bottom: 40px; 
	margin-left: -15px; 
	width: calc(100% + 30px)
}

.opt_items .opt_block {
	display: inline-block; 
	width: calc(33.33% - 30px); 
	float: left; 
	margin: 0 15px 20px 15px;
	cursor: pointer;
}

.opt_items .opt_block img {
	display: flex;
	width: 100%; 
}

.opt_items .opt_block .text {
	text-align: center; 
	margin-top: 10px;
}

@media only screen and (max-width: 600px) {
	.cont_manuf {
    	margin-top: 90px;
    }
    .cont_manuf .title { 
    	font-family: 'PT Serif'; 
    	font-size: 24px; 
    	line-height: 28px;
    	text-align: center; 
    	margin-bottom: 20px;
    }
	.cont_manuf .title .br1 {
		display: none;
	}
    .icon_items {
    	display: inline-block; 
    	margin-bottom: 20px;
		margin-left: -10px;
		width: calc(100% + 20px);
    }
    .icon_items .icon_block {
    	display: inline-block; 
    	float: left;
		width: calc(50% - 20px);
    	margin: 0 10px 20px; 
    }
    .icon_items .icon_block img {
		width: 100%;
    	margin-bottom: 8px;
    }
    .icon_items .icon_block .text {
    	max-width: 200px; 
    	line-height: 18px; 
		font-size: 14px;
    	opacity: 0.6; 
    	text-align: center;
    }
	.video_info_block {
    	display: block; 
    	width: 100%; 
    	margin-bottom: 40px;
    }
    .video_info_block .video_block {
    	width: 100%; 
    	float: none; 
    	margin-right: 0;
		margin-bottom: 25px;
    }
    .video_info_block .text_block {
    	width: 100%; 
    	float: none; 
    	line-height: 23px;
    }
	.sert_items {
    	display: inline-block; 
    	margin-bottom: 0px;
    }
    .sert_block {
    	display: inline-block; 
    	align-items: center; 
    	margin-bottom: 25px;
    }
    .sert_block img {
		width: 90px;
    	float: left; 
    	margin-right: 0px;
    }
    .sert_block .text {
		display: inline-block;
    	text-align: left;
    	float: right; 
    	width: calc(100% - 115px); 
    	line-height: 23px; 
    	opacity: 0.6;
		padding-top: 5px;
    }
    .sert_block .text span {
    	white-space: nowrap
    }
    .block_sert_3 {
    	margin-bottom: 30px;
    }
    .block_sert_3 .sert_3 {
    	width: calc(100% - 20px);
    }
	.foto_items {
    	display: inline-block; 
    	margin-bottom: 20px; 
    	margin-left: -5px; 
    	width: calc(100% + 10px)
    }
    .foto_block {
    	display: inline-block; 
    	width: calc(100% - 10px); 
    	float: left; 
    	margin: 0 5px 10px 5px;
    }
    .foto_block img {
    	display: flex;
    	width: calc(100% + 2px); 
		margin: -1px -1px;
    }
    .foto_block2 {
    	display: inline-block;
    	width: calc(50% - 10px); 
    	float: left; 
    	margin: 0 5px 20px 5px;
    }
    .foto_block2 img {
    	display: flex;
    	width: calc(100% + 2px); 
		margin: -1px -1px;
    }
    .title_block .line {
    	display: inline-block; 
    	height: 25px; 
    	width: 1px; 
    	background: #D8D8D8; 
    	margin: 12px 0 2px 0;
    }
    .title_block .title {
    	font-size: 24px; 
    	line-height: 28px; 
    	margin-bottom: 20px;
    }
	.title_block .title .br1 {
    	display: none;
    }
	.opt_items {
    	display: inline-block; 
    	margin-bottom: 10px; 
    	margin-left: 0; 
    	width: 100%;
    }
    .opt_items .opt_block {
    	display: inline-block; 
    	width: 100%; 
    	float: none; 
    	margin: 0 0 25px 0;
    	cursor: pointer;
    }
    .opt_items .opt_block img {
    	display: flex;
    	width: 100%; 
    }
    .opt_items .opt_block .text {
    	text-align: center; 
    	margin-top: 10px;
    }
}

/*------ Контакты --------*/

.bg_contacts {
	background: url(../image/bg_contacts.jpg) center/cover; 
	margin-top: 70px; 
	position: relative;
}

.bg_contacts .gradient_down {
	height: 460px; 
	background: linear-gradient(to top, #2E2F30, rgba(46, 47, 48, 0)); 
	position: absolute; 
	bottom: 0; 
	left: 0; 
	right: 0;
}

.bg_contacts .container {
	padding-top: 50px; 
	padding-left: 77px; 
	display: flex;
}

.bg_contacts .col_left {
	width: 410px; 
	margin-right: 50px; 
	float: left;
}

.adress_card {
	background: linear-gradient(to bottom left, #d1ed8c, #6e950b); 
	padding: 40px 40px 35px; 
	border-radius: 5px; 
	box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07); 
	margin-bottom: 50px;
}

.adress_card .title {
	font-size: 26px; 
	font-weight: 400; 
	line-height: 26px; 
	color: #fff; 
	margin-bottom: 16px; 
	padding-right: 20px;
}

.adress_card img {
	float: left; 
	margin-right: 35px; 
	margin-top: 10px;
}

.adress_card .adressa {
	color: #fff; 
	line-height: 21px; 
	font-weight: 600; 
	margin-bottom: 12px;
}

.adress_card .adressa span {
	font-weight: 400; 
	opacity: 0.8;
}

.adress_card .adressa .w_p {
	white-space: nowrap;
}

.contacts_card {
	background: #fff; 
	padding: 38px 40px 32px; 
	border-radius: 5px; 
	box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07);
}

.contacts_card .title {
	display: inline-block; 
	font-size: 26px; 
	font-weight: 400; 
	line-height: 26px; 
	color: #000; 
	margin-bottom: 5px;
}

.contacts_form_card {
	background: #fff; 
	padding: 40px; 
	border-radius: 5px; 
	box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.07); 
	margin-bottom: 50px;
}

.bg_contacts .col_right {
	width: 410px; 
	float: left;
}

.table-row {
	display: table-row;
}

.table-row .col_1 {
	display: table-cell; 
	width: 100px; 
	color: rgba(0, 0, 0, 0.4); 
	line-height: 25px; 
	background: top left url(../image/00.svg) repeat-x;
}

.table-row .col_1 span {
	display: inline-block;
	background: #fff;  
	padding-right: 8px;
	font-weight: 600;
	color: #000;
}

.table-row .col_2 {
	display: table-cell; 
	width: auto; 
	color: #000; 
	text-align: right;
	line-height: 25px; 
	padding-left: 8px;
}

@media only screen and (max-width: 600px) {
	.bg_contacts {
    	margin-top: 0px;
    }
	.bg_contacts .gradient_down {
    	height: 550px;
    }
    .bg_contacts .container {
    	padding-top: 90px; 
    	padding-left: 0px; 
    	display: flex;
    }
    .bg_contacts .col_left {
    	width: 100%; 
    	margin-right: 0px; 
    	float: none;
    }
    .adress_card {
    	padding: 30px 30px 25px; 
    	margin-bottom: 25px;
    }
	.adress_card img {
    	display: none;
    }
	.adress_card .adressa {
    	margin-bottom: 18px;
    }
    .contacts_card {
    	padding: 28px 30px 22px;
		margin-bottom: 25px;
    }
	.contacts_card .title { 
    	margin-bottom: 18px;
    }
    .bg_contacts .col_right {
    	width: 100%; 
    	float: none;
    }
	.contacts_form_card {
    	display: none;
    }
}

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

footer {
	background: #2E2F30;
    color: #fff;
	display: inline-block;
	width: 100%;
	clear: both;
}

footer .footer_info_block {
	display: flex;
	padding: 40px 0 35px;
	width: 100%;
}

.block {
	display: inline-block;
	float: left;
}

.block.b01 {
	width: 57%;
	padding-right: 20px;
}

.block.b02 {
	width: 18%;
}

.block.b03 {
	width: 25%;
}

.block.b04 .title {
    margin-bottom: 17px;
}

.block .line_title {
	width: 13px; 
	height: 3px; 
	background: #B19000; 
	float: left; 
	margin: 14px 10px 0 0;
}

.block .title {
	display: inline-block;
	font-size: 20px; 
	font-weight: 500; 
	margin-bottom: 10px;
	color: #fff;
	line-height: 28px;
	font-style: normal;
	float: none;
}

.block .title span {
	white-space: nowrap;
}

.block .info_div {
	line-height: 23px; 
	color: #fff; 
	opacity: 0.8;
}

.block .info_div span {
	color: #999999;
	margin-left: 5px;
}

.block .info_div .w_p {
	white-space: nowrap;
}

.block .link_items {
	line-height: 23px;
}

.block .link_items a {
	color: #fff;
	transition: 0.5s;
}

.block .link_items a:hover {
	opacity: 0.3;
	padding-left: 10px;
}

.block .btn {
	width: 100%; 
	text-align: center;
	margin-top: 5px;
}

.block .lang {
	margin-top: 15px; 
	opacity: 0.8;
}

.lang_link {
	color: #fff;
	margin: 0 3px;
	transition: 0.3s;
}

.lang_link.action {
	border-bottom: 2px solid #E50302;
}

.lang_link:hover {
	opacity: 0.3;
}

footer .line {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.subfooter .left_text {
	display: inline-block; 
	float: left;
}

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

.subfooter .right_text {
	float: right;
}

.subfooter .dev_link {
	color: #BDBDBD;
	font-weight: 500;
	transition: 0.3s;
}

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

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


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

.slick-dots {
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -33px;
    height: 10px;
    cursor: pointer;
}

.slick-dots li {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-right: 10px;
}

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

.slick-dots li.slick-active {
    background: rgba(0, 0, 0, 0.5);
}

.slick-dots li button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font-size: 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;
}

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

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

.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(-50px); }

.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(-50px); 
	opacity: 0; }

.my-mfp-zoom-in.mfp-bg {
	opacity: 0; 
	transition: opacity 0.28s ease-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: 770px;
    font-size: 15px;
    line-height: 23px;
    color: rgba(0, 0, 0, 0.5);
}

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

.mfp-modal.text_block .text b {
    font-weight: 500;
    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: 40px;
    width: 40px;
    position: absolute;
    top: 25px;
    right: 25px;
    color: #000;
    text-align: center;
    transition: 0.3s;
	border-radius: 20px;
	z-index: 3;
	background: #EEF3F0 url(../image/menu_close.svg);
}

.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%;
}

@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 25px 25px;
    }
    .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%;
    }
}

@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: 60px;
    width: 60px;
	border-radius: 50%;
    text-align: center;
    background: #B19000;
    position: absolute;
    top: 30px;
    right: -30px;
    z-index: 1;
    transition: 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.btn_modal_close i {
    line-height: 60px;
    color: #fff;
	font-size: 28px;
    transition: 0.3s;
}

.btn_modal_close:hover {
    background: #8e7400 !important;
}

.btn_modal_close:hover i {
    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: #f1f5f7;
    border: 2px solid #f1f5f7;
    border-radius: 3px;
    outline: none;
    font-size: 15px;
    height: 50px;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0 20px;
    font-weight: 400;
    transition: 0.5s;
	color: #000;
}

input:hover {
    border: 2px solid #e3eaed;
}

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

input.grey,
textarea.grey {
    background: #F2F2F2;
	border: 2px solid  #18ad35;
}

input.grey:hover,
textarea.grey:hover {
	border: 2px solid #d1d1d1;
}

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: 16px;
    padding-bottom: 16px;
	line-height: 23px;
}

textarea:hover {
    border: 2px solid #ededed;
}

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;
}

@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: #4AA467;
}

@-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);
    }
}

.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 {
    outline: none;
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 70px;
    line-height: 70px;
    width: 70px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
    z-index: 4;
    box-shadow: 0 1px 35px 0 rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.btn_circle_phone img {
    margin-top: 20px;
    height: 30px;
}

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

.btn_circle_phone.hide {
    transform: scale(0);
}

@media only screen and (max-width: 1024px) {
    .btn_circle_phone {
        height: 66px;
        line-height: 66px;
        width: 66px;
        right: 20px;
		bottom: 20px;
    }
    .btn_circle_phone img {
        margin-top: 20px;
        height: 26px;
    }
	.btn_circle_phone.hide {
    	transform: scale(0);
    }
}