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

HTML, BODY {
	height: 100%;
	min-width: 320px;
	margin: 0;
	padding: 0;
}

BODY {
	font-family: "AvenirNextCyr", sans-serif;
	font-size: 16px;
	color: #333;
	text-align: center;
}

INPUT, SELECT, TEXTAREA, BUTTON {
	font-family: "AvenirNextCyr", sans-serif;
	font-size: inherit;
	outline: none;
	border: 0;
	background-color: transparent;
	padding: 0;
	line-height: normal;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border-radius: 0;
}

INPUT:focus, SELECT:focus, TEXTAREA:focus, BUTTON:focus {
	outline: none;
}

input[type="checkbox"] {
	-webkit-appearance: checkbox;
}

input[type="radio"] {
	-webkit-appearance: radio;
}

TEXTAREA {
	resize: vertical;
}

UL, OL {
	margin: 0;
	padding: 0;
	list-style: none;
}

H1, H2, H3, P {
	margin: 0;
	font-weight: normal;
	line-height: 1em;
}

IMG {
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
	outline: 0 !important;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-thumb {
	background-color: #75bc20;
	cursor: pointer;
}

::-webkit-input-placeholder {
	color: inherit;
}

.flex {
	display: -ms-flexbox;
	display: flex;
}

.flex.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex.flex-center {
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

.flex.flex-between {
	-ms-flex-pack: space-between;
	justify-content: space-between;
	align-items: center;
}

.flex.flex-end {
	-ms-flex-pack: flex-end;
	justify-content: flex-end;
}

.flex.flex-column {
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex.flex-center.flex-column {
	align-items: start;
}

.flex-wrap .col-6 {
	max-width: 50%;
	flex: 0 0 50%;
	position: relative;
    width: 100%;
    padding-right: 50px;
    padding-left: 50px;
}

.abs {
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
}

.rounded {
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.native {
	font-family: "AvenirNextCyr", sans-serif;
}

.contain_bg {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.cover_bg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.green-color {
	color: #75bc20;
}

.green-bg {
	background-color: #75bc20;
}

.white-bg {
	background-color: #fff;
}

.overlay {
	overflow: hidden;
}

.link {
	color: #75bc20;
	font-weight: bold;
}

.btn {
	width: 125px;
	line-height: 30px;
	display: inline-block;
	font-size: 12px;
	color: #fff;
	text-align: center !important;
	cursor: pointer;
	white-space: nowrap;
	font-weight: bold;
	background-color: #75bc20;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.btn:not(.btn-disable):hover {
	background-color: #5d9718;
}

.btn:not(.btn-disable):active {
	background-color: #45730e;
}

.btn.btn-lg {
	width: auto;
	line-height: 40px;
	padding: 0 50px;
	font-size: 14px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 8px 18px 5px rgba(210, 218, 200, .75);
	box-shadow: 0 8px 18px 5px rgba(210, 218, 200, .75);
}

.btn.btn-white {
	background-color: #fff;
	color: #75bc20;
	font-weight: normal;
}

.btn.btn-white:hover {
	color: #fff;
}

.btn.btn-pink {
	background-color: #ffcccc;
	font-weight: normal;
}

.btn.btn-fff {
	width: 220px;
	line-height: 40px;
	font-size: 15px;
	color: #75bc20;
	background-color: #fff;
	-webkit-box-shadow: 0px 8px 17.1px 0.9px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0px 8px 17.1px 0.9px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 8px 17.1px 0.9px rgba(0, 0, 0, 0.05);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.btn.btn-fff:hover {
	color: #fff;
}

.btn.btn-disable {
	cursor: default;
	-moz-opacity: .6;
	-khtml-opacity: .6;
	opacity: .6;
}

.page {
	overflow: hidden;
	min-height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.page-inner {
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.wrapper {
	position: relative;
	margin: 0 auto;
	padding: 0 10px;
	max-width: 1130px;
	min-width: 320px;
}

.wrapper-clear {
	margin-left: calc((100vw - 1120px)/2*-1);
	margin-right: calc((100vw - 1120px)/2*-1);
}

.header {
	width: 100%;
	color: #333;
	position: absolute;
	z-index: 10;
	
	top: 45px;
}

.header_sub {
	/*background-image: url(../images/header_sub_bg.jpg);
	background-size: cover;*/
	margin-bottom: 40px;
}

.top_submenu {
	font-weight: bold;
	padding: 15px 0;
}

.top_submenu li {
	margin-right: 60px;
}

.top_submenu li i {
	color: #75bc20;
	font-size: 18px;
}

.top_logo {
	position: absolute;
	top: -10px;
	left: 0;
}

.top_logo small {
	position: absolute;
	right: 0;
	bottom: -15px;
	color: #014c73;
	font-size: 16px;
}

.top_icons {
	position: absolute;
	top: 15px;
	right: 10px;
	text-align: left;
}

.top_icons i {
	color: #75bc20;
}

.top_address {
	font-size: 12px;
	width: 195px;
	margin-right: 30px;
}

.top_address i {
	margin-right: 5px;
	font-size: 14px;
}

.top_phone .icon-phone {
	margin-right: 10px;
}

.top_phone a[href^="tel"] {
	font-weight: bold;
}

.top_phone a[href^="mailto"] {
	font-weight: bold;
	font-size: 12px;
	color: #75bc20;
}

.top_cart {
	width: 30px;
	line-height: 30px;
	display: inline-block;
	margin-left: 30px;
	background-color: #efefef;
	color: #014c73;
	font-size: 14px;
	position: relative;
	text-align: center;
}

.top_cart:after {
	content: attr(data-count);
	width: 20px;
	height: 20px;
	line-height: 17px;
	position: absolute;
	top: -9px;
	right: -9px;
	border: 2px solid;
	font-size: 8px;
	font-style: normal;
	color: #fff;
	text-align: center;
	background-color: #75bc20;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.top_line {
	display: none;
	height: 1px;
	margin-bottom: 40px;
	border: none;
	background-color: rgba(255,255,255,.1);
}

.top_time {
	position: absolute;
	font-size: 12px;
	font-weight: bold;
	right: 10px;
	top: 40px;
}

.full_height .wrapper,
.full_height .flex {
	height: 100%;
}

.map {
	height: 625px;
	position: relative;
	/*background-image: url(../images/map.jpg);*/
	background-position: right bottom;
	background-repeat: no-repeat;
}

.ymap {
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
}

.map_text {
	width: 540px;
	height: 630px;
	padding-left: 90px;
	position: absolute;
	z-index: 5;
	top: -30px; left: 10px;
	background-image: url(../images/map_text_bg.png);
	-webkit-box-shadow: 0 14px 38px 5px rgba(185,185,185,.75);
	box-shadow: 0 14px 38px 5px rgba(185,185,185,.75);
}

.map_logo {
	border-bottom: 1px solid #7fc729;
	padding-bottom: 35px;
}

.map_line {
	width: 100%;
	margin-top: 35px;
	padding-left: 40px;
	padding-right: 60px;
	position: relative;
	color: #fff;
	text-align: left;
}

.map_line i {
	position: absolute;
	left: 0;
	top: -3px;
	color: #99dc49;
	font-size: 20px;
}

.map_line small {
	display: block;
	font-size: 14px;
	margin-bottom: 15px;
}

.map_line strong {
	font-size: 24px;
	display: inline-block;
}

.bottom_links {
	padding: 50px 0;
	background-image: url(../images/map_text_bg.png);
}

.bottom_links_item {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
	text-align: left;
}

.bottom_links_list {
}

.bottom_links_list li {
	font-size: 12px;
	margin: 20px 0;
}

.bottom_links_list li.strong {
	font-size: 16px;
	font-weight: bold;
	margin: 30px 0;
}

.bottom_links_list li:first-child {
	margin-top: 0;
}

.bottom_links_list li:last-child {
	margin-bottom: 0;
}

.bottom_links_list li a:hover {
	color: #75bc20;
	text-decoration: underline;
}

.bottom_links_list li a[class^="icon"] {
	width: 30px;
	line-height: 30px;
	margin-right: 5px;
	color: #99dc49;
	display: inline-block;
	text-align: center;
}

.bottom_links_list li a[class^="icon"]:hover {
	color: #fff;
	text-decoration: none;
	-webkit-box-shadow:inset 0 6px 6px 0 rgba(0,0,0,.25);
	box-shadow:inset 0 6px 6px 0 rgba(0,0,0,.25);
}

.bottom_links_list li span {
	font-weight: bold;
}

.bottom_links_list li .icon-18-plus {
	font-size: 25px;
}

.bottom_links_list li .icon-pdf-file {
	font-size: 16px;
}

.bottom_links_list li strong {
	font-size: 14px;
	color: #909090;
	margin-left: 15px;
}

.footer-line {
	height: 1px;
	margin: 0;
	border: none;
	background-color: #d8d8d8;
}

.footer-info {
	margin: 0 -25px 40px;
	padding-top: 25px;
	font-size: 12px;
	color: #909090;
}

.footer-info span {
	color: #75bc20;
}

.footer-info-item {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	text-align: left;
	padding: 0 25px;
}

.footer {
	padding: 30px 0 80px;
	background-color: #edecf1;
	font-size: 12px;
	text-align: left;
}

.footer_item input {
	width: 200px;
	line-height: 30px;
	padding: 0 10px;
	margin-top: 10px;
	margin-right: 10px;
	background-color: #fff;
	font-style: italic;
	border: 1px solid #ccc;
}

.footer_item input.invalid {
	border: 1px solid red;
}

.item-text ul,
.list-item {
    margin: 20px 20px 30px;
}

.item-text ul li,
.list-item li {
	position: relative;
	padding-left: 25px;
	margin: 10px 0;
}

.item-text ul li:before,
.list-item li:before {
	content: "";
	width: 10px;
	height: 10px;
	background-color: #75bc20;
	position: absolute;
	left: 0;
	top: .35em;
}

.item-text ul li a,
.list-item li a {
	color: #75bc20;
	font-weight: bold;
}

.item-text ul li p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2em !important;
}

.cookies_agree {
    width: 100%;
	max-height: 0;
	position: fixed;
    bottom: 0;
    z-index: 1000;
	background-color: #75bc20;
	color: #fff;
	text-align: left;
	font-size: 14px;
	padding: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.cookies_agree.show {
	max-height: 300px;
	padding: 15px 0;
}

.cookies_agree_btn .btn {
	border: 1px solid;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	line-height: 33px;
}

.wa {
	background-color: #75bc20;
	color: #fff;
	padding: 10px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

/* mobile */
.mobile_icon {
	display: none;
	height: auto;
	cursor: pointer;
	z-index: 100;
	position: absolute;
	top: 0;
	left: 15px;
}

.line-1, .line-2, .line-3 {
	background-color: #333;
	height: 3px;
	width: 30px;
	margin-bottom: 6px;
	transition: all 0.3s ease-in-out;
}

.line-3 {
	margin-bottom: 0;
}

.mobile_icon.active .line-1 {
	transform: translateY(9px) rotate(45deg);
	transform-origin: center center;
}

.mobile_icon.active .line-2 {
	transform: translateX(-100%);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
}

.mobile_icon.active .line-3 {
	transform: translateY(-9px) rotate(-45deg);
	transform-origin: center center;
}

#mobile_menu_bg {
	position: fixed;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 5;
	background-color: #000;
	background-color: rgba(0,0,0,.5);
	visibility: hidden;
	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
}

#mobile_menu_bg.active {
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	visibility: visible;
}

#mobile_menu_bg:after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 50px; bottom: 15px;
	left: 15px; right: 15px;
	
	top: 120px; bottom: 5px;
	
	background-color: #fff;
	background-color: rgba(255,255,255,.95);
	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	
	-moz-transform: translateY(-200px);
	-webkit-transform: translateY(-200px);
	-o-transform: translateY(-200px);
	-ms-transform: translateY(-200px);
	transform: translateY(-200px);
}

#mobile_menu_bg.active:after {
	-moz-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

.form-container, .not_desktop {
	display: none;
}

@media screen and (max-width:960px) {
	
	.flex-column-mobile {
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	
	.flex-column-mobile-reverse {
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	
	.flex-wrap .col-6 {
		width: 100%;
		max-width: 100%;
		flex: 0 0 100%;
		position: relative;
		padding: 0;
	}
	
	.not_desktop {
		display: unset;
	}
	
	.not_mobile {
		display: none !important;
	}
	
	.toggle-mobile {
		display: none;
	}
	
	.btn.btn-lg {
		width: 100%;
		padding: 0 15px;
		margin: 5px 0;
	}
	
	.wrapper {
		padding: 0 15px;
	}
	
	.wrapper-clear {
		margin: 0 -15px;
	}
	
	.mobile_icon {
		display: block;
	}
	
	.top_submenu, .top_phone, .top_line {
		display: none;
	}
	
	.header {
		top: 60px;
		position: fixed;
		background-color: #fff;
		padding-top: 15px;
	}
	
	.top_logo {
		top: -35px;
		left: 50%;
		margin-left: -67px;
	}
	
	.top_logo img {
		height: 20px;
	}
	
	.top_icons {
		top: -5px;
		right: 15px;
		line-height: 0;
	}
	
	.top_submenu {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 40px;
		left: 35px;
		right: 35px;
		color: #333;
		font-size: 20px;
	}
	
	.top_submenu li {
		width: 100%;
		text-align: left;
		margin-right: 0;
		margin-bottom: 20px;
	}
	
	.top_submenu img {
		filter: brightness(0.4);
	}
	
	.top_time {
		right: unset;
		left: 35px;
		top: 145px;
	}
	
	.mobile_slide {
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		
		visibility: hidden;
		-moz-opacity: 0;
		-khtml-opacity: 0;
		opacity: 0;
		
		-moz-transform: translateY(-200px);
		-webkit-transform: translateY(-200px);
		-o-transform: translateY(-200px);
		-ms-transform: translateY(-200px);
		transform: translateY(-200px);
	}
	
	.mobile_slide.active {
		visibility: visible;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		opacity: 1;
		
		-moz-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
	
	.mobile_phone {
		width: 60px;
		line-height: 60px;
		color: #fff;
		background-color: #75bc20;
		font-size: 24px;
		border: 1px solid;
		position: fixed;
		bottom: 90px;
		right: 5px;
		z-index: 10;
	}
	
	.mobile_phone.active {
		bottom: 185px;
	}
	
	.map {
		height: auto;
		background-image: none;
	}
	
	.ymap {
		display: none;
	}
	
	.map_text {
		width: auto;
		height: auto;
		margin: 0 -15px;
		padding: 20px 15px 30px;
		position: static;
	}
	
	.map_logo {
		padding-bottom: 20px;
	}
	
	.map_line:last-child {
		border-bottom: 1px solid #7fc729;
		padding-bottom: 30px;
	}
	
	.map_line strong {
		font-size: 18px;
	}
	
	.bottom_links_item {
		width: 100%;
		-ms-flex: auto;
		flex: auto;
		max-width: 100%;
		display: none;
	}
	
	.bottom_links_item:last-child {
		display: block;
	}
	
	.bottom_links_list li strong {
		font-size: 12px;
	}
	
	.bottom_links_list li {
		-ms-flex-pack: left !important;
		justify-content: left !important;
	}
	
	.footer-info-item {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	.footer .flex {
		flex-direction: column-reverse;
		align-items: start;
	}
	
	.footer_item {
		margin-bottom: 15px;
	}
	
	.footer_item input {
		width: 150px;
	}
	
	.form-container {
		padding: 30px;
	}
	
	.cookies_agree_btn {
		margin: 15px auto 0;
	}
	
}

@media screen and (max-width:375px) {
	
	.mobile_phone.active {
		bottom: 200px;
	}
}

@media screen and (max-width:320px) {
	
	.mobile_phone.active {
		bottom: 220px;
	}
}

/* animation */
.cart-animate {
	width: 25px;
	line-height: 25px;
	position: absolute;
	z-index: 1000;
	opacity: 1;
	background-color: #fff;
}


/* custom */

.nipt {
	text-align: left;
	position: relative;
	color: #333;
}

.container-nipt {
	position: relative;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 1130px;
    min-width: 320px;

}

.banner {
	position: relative;
	height: 556.5px;
    background: url('/images/banner-nipt.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.banner-container {
	margin: 0 auto;
    padding: 0 10px;
    max-width: 1130px;
    min-width: 320px;
    height: 100%;
    position: relative;
}

.banner-text {
	position: absolute;
	padding: 50px;
	width: 750px;
}

.banner-text h1, .slide-hg {
	max-width: 625px;
    font-size: 72px;
    margin-bottom: 30px;
    font-weight: 600;
}

.banner-text p {
	font-size: 18px;
}

.green-bg-nipt {
    background: #f1f8e8;
}

.descr {
	padding: 20px 10px;
    font-size: 17px;
}

.height-bg {
	height: 87px;
}

.d-flex-nipt {
	display: flex;
    justify-content: space-evenly;
    padding: 15px 0;
    text-align: center;
    height: 200px;
}

.heart {
	position: relative;
	background: url(/images/heart.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    background-position: center;
}

.heart p {
	position: absolute;
    margin-top: 10px;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 600;
}

.numb {
    top: 26px;
    font-size: 30px!important;
}

.htxt {	
    top: 68px;
}

.stages-block {
	display: flex;
	justify-content:space-evenly;
}
/* изображения этапы */
.st1 {
	background: url(/images/e1.png);
}

.st2 {
	background: url(/images/e2.png);
}
.st3 {
	background: url(/images/e3.png);
}
.st4 {
	background: url(/images/e4.png);
}
.st5 {
	background: url(/images/e5.png);
}
.st6 {
	background: url(/images/e6.png);
}
.st7 {
	background: url(/images/e7.png);
}
/* изображения этапы end */
.stage {
	width: 190px;
    height: 190px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    text-align: center;
}

.stage p {
	position: absolute;
    /*bottom: 10px;*/
    top: 145px;
    font-size: 15px;
    width: 90%;
    margin: auto;
    left: 0;
    right: 0;
}

.bcg-adv {
	background: url(/images/adv.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: right;
    height: 470px;
}

.li-st {
	list-style: disc;
}

.li-mg {
	margin-bottom: 25px;
}

.variants-block {
	display: flex;
	justify-content: space-evenly;
}

.variant {
	width: 20%;
	height: 730px;
	position: relative;
	-webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
	box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
}

.variant-h {
	text-align: center;
	font-size: 18px;
	font-weight: 600;
}

.variant-body {
	text-align: center;
}

.price-nipt {
	color: #67ae2f;
	font-size: 18px;
	font-weight: 600;
}

.variant p {
	margin-bottom: 15px;
}

.variant-button {
	position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
     text-align: center;
}

.variant-button a {
	padding: 10px 35px;
}

.different-bg {
	background: url(/images/dif.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 470px;
}

.diff-block {
	max-width: 450px;
}

.diff-block ul li {
	list-style: disc;
	margin-bottom: 15px;
}

.why-bg {
	background: url(/images/lab.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 470px;
    background-position: center;
}

.why-content, .form-nipt-content {
	max-width: 450px;
}

.form-nipt-bg {
	background: url(/images/bab.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 470px;
    background-position: center;
}

.contact-nipt {
	margin-top: 20px;
	width: 450px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.contact-nipt a {
	color: #014c73;
}

.white-bg {
	padding: 15px;
}

.fm-nipt {
	padding-top: 15px;
}

.block-title {
	display: flex;
    flex-direction: row;
    margin-top: 50px;
    margin-bottom: 25px;
    justify-content: space-between;
}

.title-nipt {
	font-weight: 600;
}

.st1-bl {
	margin-bottom: 30px;
}

.advantage-list {
	padding-top: 20px;
	padding-left: 25px;
}

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

.diff-block {
	padding-top: 80px;
}

.diff-block ul li {
	margin-bottom: 40px;
	font-size: 16px;
	padding-left: 25px;
}

.wh-body li {
	margin-top: 30px;
    margin-left: 30px;
}

.why-content {
	padding-top: 40px;
}

.why-content p {
	margin-bottom: 50px;
}


.banner, .bcg-adv, .different-bg, .why-bg, .form-nipt-bg {
	max-width: 100% /*1500px*/;
    margin: 0 auto;
}


@media (max-width: 1200px) {
	.variants-block {
		flex-wrap: wrap;
	}

	.variant {
		width: 40%;
		height: auto;
		margin-bottom: 15px;
		padding-bottom: 70px;
	}

	.variant-bottom {
		position: initial;
		padding-bottom: 15px;
	}

	.wh-con-bg {
		background: #ffffff6b;
		padding: 5px;
	}
}

@media (max-width: 960px) {
	.stages-block {
		flex-wrap: wrap;
	}
}

@media (max-width: 900px) {
	.bcg-adv {
		background: #fff;
	}

	.form-nipt-bg {
		background: #fff;
	}

	.form-nipt-content {
		width: 100%;
	}

	.contact-nipt {
		width: 100%;
	}
}

@media (max-width: 620px) {
	.banner-text h1, .slide-hg {
		max-width: 475px;
		font-size: 34px;
	}

}

@media (max-width: 550px) {
	.banner-text h1, .slide-hg {
		max-width: 300px;
	}
	.banner-text p {
		max-width: 300px;
	}

	.banner-text {
		position: relative;
	}

	.banner {
		height: 330px;
	}

	.heart p {
		font-size: 14px;
		margin-top: 12px;
	}

	.numb {
		font-size: 20px!important;
		margin-top: 30px!important;
	}

	.diff-block li {
		padding-left: 0;
	}

	.variant-button {
		bottom: -6px;
	}

	.variant {
		width: 100%;
	}
}

.vr-block {
	display: flex;
	justify-content: space-evenly;
	margin-bottom: 20px;
}

.vrach-gl {
	position: relative;
	width: 300px;
}

.vrach-gl-1 {
	background: #f8f8fa;
    width: 170px;
    height: 170px;
    margin: 0 auto;
    border-radius: 100%;
    position: relative;
}

.ph1 {
	background: url(/upload/resize_cache/iblock/0e0/415_415_2/0e030b640be8f38a2381d03f15c91b40.png);
}

.ph2 {
	background: url(/upload/resize_cache/iblock/ae2/415_415_2/ae2e8ff20a6888a4647a7371624d3550.png);
}

.ph3 {
	background: url(/upload/resize_cache/iblock/94b/415_415_2/94bea8f64326dc6b48f99eaf0c4c44c2.png);
}

.vrach-ph {
    height: 150px;
    width: 150px;
    background-size: contain;
    position: absolute;
    border-radius: 100%;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.vrach-gl-2 {
	background: #f8f8fa;
    margin-top: -95px;
    border-radius: 15px;
    padding-top: 105px;
}

.vrach-gl-2 p {
	padding: 15px;
}

.vr-button {
	height: auto;
    background-color: #75bc20;
    color: #fff;
    padding: 15px;
    text-align: center;
    margin-bottom: 50px;
}

.vr-button div {
	font-size: 20px;
	font-weight: bold;
}

.vr-button a {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.ys-gl-ct {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 20px;
}

.ys-gl-bl {
	width: 22%;
	position: relative;
	height: 100px;
	margin-bottom: 30px;
}

.ys-gl-bl p {
	position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.y1 {
	background: url(/images/1y.png);
	background-repeat: no-repeat;
	background-size: 95px;
	background-position: top!important;
}

.y2 {
	background: url(/images/2y.png);
	background-repeat: no-repeat;
	background-size: 75px;
	background-position: top!important;
}

.y3 {
	background: url(/images/3y.png);
	background-repeat: no-repeat;
	background-size: 75px;
	background-position: top!important;
}

.y4 {
	background: url(/images/4y.png);
	background-repeat: no-repeat;
	background-size: 75px;
	background-position: top!important;
}

.y5 {
	background: url(/images/5y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: top!important;
}

.y6 {
	background: url(/images/6y.png);
	background-repeat: no-repeat;
	background-size: 65px;
	background-position: top!important;
}

.y7 {
	background: url(/images/7y.png);
	background-repeat: no-repeat;
	background-size: 95px;
	background-position: top!important;
}

.y8 {
	background: url(/images/8y.png);
	background-repeat: no-repeat;
	background-size: 55px;
	background-position: top!important;
}

.form-gl-content {
	position: absolute;
	right: 0;
}

.form-gl-content .white-bg {
	max-width: 400px!important
}

.form-gl-content .white-bg, .form-gl-content .form_row input, .form-row {
	background: #014c73!important;
}

.form-gl-content .form_row {
	box-shadow: none!important;
	border: 1px solid #fff!important;
	border-radius: 0!important;
	-webkit-border-radius: 0!important;

}

.form-gl-content .form_row input {
	color: #fff!important;
}

.form-gl-content .btn {
	background: #fff!important;
	color: #014c73!important;
	border-radius: 0!important;
	box-shadow: none!important;
	width: 50%!important;
}

.form-gl-content .form_buttons, .form-gl-content .form_buttons a {
	color: #fff!important;
}

.form-gl-content-p {
	background: #014c73;
    text-align: left;
    padding: 15px 15px 0px 15px;
    color: #fff;
    font-size: 20px;
}

.form-gl-bg {
	background: url(/images/gl-p.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 470px;
    background-position: center;
}

.for-gl-bcg {
	background: url(/images/for-bcg-gl.png);
	background-size: cover!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
    height: 470px;
}

.for-block-gl {
	max-width: 460px;
    position: absolute;
    right: 0;
    height: 470px;
    background: #fff9;
    text-align: left;
    padding: 15px;
}

.for-gl {
	display: flex;
	padding-bottom: 15px;
}

.for-title-gl {
	padding-bottom: 15px;
	font-weight: bold;
}

.form-gl-text {
    text-align: left;
    padding: 63px;
    max-width: 600px;
}

.program-fl-gl {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.program-fl-gl p {
	text-align: left;
}

.program-bl-gl {
	width: 45%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.program-bl-gl img {
	width: 170px;
    height: 140px;
    padding-right: 5px;
}

.program-bl-gl div {
	width: 60%;
}

.icon-18-plus-gl {
	background: url('/images/18+.png');
	height: 25px;
    width: 25px;
    background-size: contain;
    margin-right: 10px;
    background-repeat: no-repeat;
}

.programm-desc-gl {
	display: flex;
	align-items: center;
}

.variant-button-pos {
	position: initial;
}

.gl-i-1 {
	background: url(/images/gl-i-1.png);
	height: 45px;
    width: 15%;
    background-size: contain;
    background-repeat: no-repeat;
}

.gl-i-2 {
	background: url(/images/gl-i-2.png);
	height: 45px;
    width: 15%;
    background-size: contain;
    background-repeat: no-repeat;
}

.gl-i-3 {
	background: url(/images/gl-i-3.png);
	height: 45px;
    width: 15%;
    background-size: contain;
    background-repeat: no-repeat;
}

.for-gl {
	align-items: center;
    justify-content: space-around;
}

.for-gl p {
	width: 75%;
}

.vr-block .price-nipt {
	font-size: initial;
}

.vr-desc {
	text-align: left;
}

.grn-pr {
	color: #67ae2f;
}

.news-gl .home__block_news {
	background: #fff!important;
}

.news-gl .home__block_news {
	margin-bottom: 0!important;
}

.news-gl .home__block_new-title a {
	color: #014c73!important;
}

.descr .right {
	margin-top: 10px;
}

.descr p {
	line-height: 1.2em;
}

.banner-text h1, .slide-hg {
	color: #014c73!important;
}

.h-mob-t {
	margin-bottom: 15px;
}

.banner-text .table-mob-gl p {
	color: #014c73!important;
}

/* главная мобильная версия */
@media (min-width: 1200px) {
	.pc-only-gl {
		display: initial;
	}

	.mobile-only-gl {
		display: none;
	}

	.banner-gl {
		/*background: url('/images/gl-t-p.png')!important;*/
		background: url('/images/fbs1.png')!important;
	}

	.banner-gl-2 {
		background: url('/images/sbs1.png')!important;   
	}

	.banner-gl-32 {
		background: url('/images/sochi-b1.png')!important;
	}

	.banner-gl-33 {
		background: url('/images/33.png')!important;
	}

	.banner-gl-34 {
		background: url('/images/112.png')!important;
	}

	.banner-gl-35 {
		background: url('/images/114.png')!important;
	}

	.banner-gl-36 {
		background: url('/images/116.png')!important;
	}

	.banner-gl-37 {
		background: url('/images/118.png')!important;
	}

	.banner-gl-633 {
		background: url('/images/633.png')!important;
	}

	.banner-gl-21 {
		background: url('/images/ban-gr.png')!important;
	}

	.banner-gl-22 {
		background: url('/images/bn-22.png')!important;
	}
	
	.banner-gl-3 {
		background: url('/images/tbs1.png')!important; 
	}

	.banner-gl-4 {
		background: url('/images/cbs2.png')!important;
	}

	.banner-gl-5 {
		background: url('/images/16n.png')!important;
	}

	.banner-gl-6 {
		background: url('/images/19n.png')!important;
	}

	.banner-gl-12 {
		background: url('/images/gl-12.png');
	}

    .banner-gl-53 {
		background: url('/images/53.png')!important;
	}

	.banner-gl, .banner-gl-2, .banner-gl-3, .banner-gl-5, .banner-gl-6, .banner-gl-12, .banner-gl-21, .banner-gl-22, .banner-gl-32, .banner-gl-33, .banner-gl-34, .banner-gl-35, .banner-gl-36, .banner-gl-37 .banner-gl-633, .banner-gl-53 {
		background-size: cover!important;
	    background-repeat: no-repeat!important;
	    background-position: center!important;
	}
	
	.banner-gl h1 {
		text-align: left;
		font-size: 48px;
	}

	.vr-img-0 {
	background: url(/images/fbs2.png);
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
	}

	.vr-img-1 {
	background: url(/images/sbs2.png);
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
	}

	.vr-img-32 {
		background: url(/images/sochi-b1-i1.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
	}

    .vr-img-54 {
		background: url(/images/54.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
	}

    .vr-img-56 {
		background: url(/images/56.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
	}

	.vr-img-33 {
		background: url(/images/32.png);
   		height: 100%;
   		width: 839px;
   		background-size: contain;
   		position: absolute;
   		right: 0;
   		bottom: -139px;
   		background-repeat: no-repeat;
	}

	.vr-img-34 {
		background: url(/images/111.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
	}

	.vr-img-35 {
		background: url(/images/113.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
	}

	.vr-img-36 {
		background: url(/images/115.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
	}

	.vr-img-37 {
		background: url(/images/117.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
	}

	.vr-img-633 {
		background: url(/images/634.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
	}

	.vr-img-2 {
		background: url('/images/tbs2.png');
    	height: 100%;
    	position: absolute;
    	width: 100%;
    	background-repeat: no-repeat;
	}

	.vr-img-4 {
		background: url('/images/cbs1.png');
    	height: 100%;
    	position: absolute;
    	width: 100%;
    	background-repeat: no-repeat;
	}

	.vr-img-5 {
		background: url('/images/17n.png');
    	height: 100%;
    	position: absolute;
    	width: 100%;
    	background-repeat: no-repeat;
	}

	.vr-img-12 {
		background: url('/images/vr-12.png');
    	height: 100%;
    	position: absolute;
    	width: 100%;
    	background-repeat: no-repeat;
	}

/*	.vr-img-6 {
		background: url('/images/19n.png');
    	height: 100%;
    	position: absolute;
    	width: 100%;
    	background-repeat: no-repeat;
	}*/

	.table-mob-gl {
		background: #fff;
   		padding: 10px;
   		width: 300px;
   		border-radius: 10px;
   		width: 430px;
   		color: #014c73!important;
	}

	.banner-text p {
		padding: 5px;
	}
}

@media (max-width: 1200px) {
	.mobile-only-gl {
		display: initial;
	}

	.pc-only-gl {
		display: none;
	}

	.banner-gl {
		/*background: url('/images/gl-t-p.png')!important;*/
		background: url('/images/fbs1.png')!important;
	}

	.banner-gl-2 {
		background: url('/images/sbs1.png')!important;   
	}

	.banner-gl-32 {
		background: url('/images/sochi-b1.png')!important;
	}

	.banner-gl-33 {
		background: url('/images/33.png')!important;
	}

	.banner-gl-34 {
		background: url('/images/112.png')!important;
	}

	.banner-gl-35 {
		background: url('/images/114.png')!important;
	}

	.banner-gl-36 {
		background: url('/images/116.png')!important;
	}

	.banner-gl-37 {
		background: url('/images/118.png')!important;
	}

	.banner-gl-633 {
		background: url('/images/633.png')!important;
	}

	.banner-gl-21 {
		background: url('/images/ban-gr.png')!important;
	}
	.banner-gl-22 {
		background: url('/images/bn-22.png')!important;
	}

	.banner-gl-4 {
		background: url('/images/cbs2.png')!important;
	}
	
	.banner-gl-3 {
		background: url('/images/tbs1.png')!important; 
	}

	.banner-gl-12 {
		background: url('/images/gl-12.png');
	}

	.banner-gl-5 {
		background: url('/images/16n.png')!important; 
	}

	.banner-gl-6 {
		background: url('/images/19n.png')!important; 
	}

    .banner-gl-53 {
		background: url('/images/53.png')!important;
	}

    .banner-gl-55 {
		background: url('/images/55.png')!important;
	}

	.banner-gl, .banner-gl-2, .banner-gl-3, .banner-gl-4, .banner-gl-5, .banner-gl-6, .banner-gl-12, .banner-gl-21, .banner-gl-22, .banner-gl-32, .banner-gl-33, .banner-gl-34, .banner-gl-35, .banner-gl-36, .banner-gl-37 .banner-gl-633, .banner-gl-53, .banner-gl-55 {
		background-size: cover!important;
	    background-repeat: no-repeat!important;
	    background-position: center!important;
	}

	.banner-gl h1 {
		text-align: left;
		font-size: 32px;
	}

	.table-mob-gl {
		background: #fff;
   		padding: 6px;
   		width: 300px;
   		border-radius: 10px;
	}
}

@media (min-width: 1100px) {
	.banner-text h1, .slide-hg {
		margin-bottom: 75px;
	}
}

@media (max-width: 1035px) {
	.ys-gl-bl {
		height: 120px;
	}

	.program-bl-gl {
		width: 100%;
		justify-content: space-around;
	}
}

@media (max-width: 960px) {
	.ys-gl-bl {
		width: 45%;
	}

	.form-gl-bg {
		background: #014c73!important;
	}

	.form-gl-content {
		width: 100%;
	}

	.form-gl-text {
		display: none;
	}

	.fm-nipt {
		background: #014c73;
	}

	.form-gl-content-p {
		text-align: center;
	}

	.form-gl-bg .white-bg {
		margin: 0 auto;
	}
}

@media (max-width: 900px) {
	
}

@media (max-width: 820px) {
	.vr-block {
		flex-wrap: wrap;
	}

	.vrach-gl {
		width: 100%;
		margin-bottom: 20px;
	}
}

@media (max-width: 620px) {
	.banner-gl .banner-text h1, .slide-hg {
		max-width: 475px;
		font-size: 34px;
	}

	.green-bg-nipt .right {
		text-align: left;
	}

}

@media (max-width: 550px) {
	.banner-gl .banner-text h1, .slide-hg {
		max-width: 300px;
	}
	.banner-gl .banner-text p {
		max-width: 300px;
	}

	.banner-gl .banner-text {
		position: relative;
	}

	.banner-gl .banner {
		height: 330px;
	}
}



.ys-gl-ct, .for-block-gl {
	font-size: 17px;
}


/* test head */
.test-h-cont {
	display: flex;
	justify-content: space-between;
    align-items: center;
}

.test-h-sec {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.test-h-pod {
	display: flex;
	align-items: center;
}

.test-h-pod svg {
	width: 20px;
}

.test-h-ad {
	width: 185px;
	font-size: 12px;
}

.test-h-20 {
	width: 20%;
}

.test-h-30 {
	width: 30%;
}

.test-h-35 {
	width: 35%;
}

.test-h-37 {
	width: 37%;
}

.test-h-40 {
	width: 40%;
}

.test-h-60 {
	width: 60%;
}

.text-h-66 {
	width: 66%;
}

.test-h-p {
	text-align: right;
	font-size: 12px;
}

.test-h-logo {
	flex-direction: column;
}

.test-h-logo p {
	margin-bottom: 2px;
}

.grn-bd-h {
	border: 1px solid #75bc20;
	border-radius: 5px;
}

.grn-bd-h .email-h-bl .search-container input {
	height: 34px;
}

.test-h-menu {
	display: flex;
    width: 60%;
    justify-content: space-evenly;
	font-size: 14px;
}

.test-h-cont-1 .test-h-60 a, .test-h-cont-1 .test-h-60 p {
	margin-left: 5px;
}

.test-h-menu a {
	transition: all .3s;
	outline: 0 !important;
	border-bottom: 1px solid transparent;
}

.test-h-menu a:hover {
	border-bottom: 1px solid;
    color: #75bc20;
}

.test-h-logo img {
	margin-bottom: 5px
}

.test-h-2r {
	display: flex;
	justify-content: flex-end;
}

@media (max-width: 960px) {
	.test-h-header {
		display: none;
	}
}

.email-h {
	margin-left: 5px;
}

.em-sv-g svg {
	width: 20px;
	fill: #67ae2f;
}

.email-h-bl {
	display: flex;
	justify-content: space-between;
	margin-bottom: 3px;
	margin-top: 20px;
	align-items: center;
}

.em-sv-g {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 5px;
}

.right-cont-l {
	display: flex;
	flex-direction: column;
}

.test-h-cont-2 {
	margin-top: 25px;
}

.sec-m-h .get-form {
	display: none;
}

.head-cont-l-a {
	display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.test-h-header70 {
	width: 75%;
}

.test-h-cont-2 .top_menu {
	height: initial!important;
}

.cl-h-n:before {
	content: '\e805';
}

.la-h-b:before {
	content: '\e815';
}

.cl-h-n:before, .la-h-b:before {
	color: #67ae2f;
	font-family: "arhimed";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    /* font-size: 120%; */
    -webkit-font-smoothing: antialiased;
}

.test-h-cont-1 {
    padding-bottom: 10px;
}

.head-s {
	-webkit-box-shadow: 0 5px 5px 0 rgb(227 227 227 / 75%);
    box-shadow: 0 5px 5px 0 rgb(227 227 227 / 75%);
}

.email-h-bl .search-block {
	width: 489px;
}

.h-b-g a {
	padding: 10px 33px;
    background-color: #75bc20;
    border: none;
    font-weight: bold;
    color: #fff;
    -webkit-box-shadow: 0 8px 18px 5px rgb(210 218 200 / 75%);
    box-shadow: 0 8px 18px 5px rgb(210 218 200 / 75%); 
    font-size: 14px;
    border-radius: 5px;
}

.h-b-g a:hover {
	background-color: #014c73;
    color: #fff;
}

.email-h-bl .search-container input {
	font-size: 13px;
	height: 30px;
    padding: 0 5px;
}

.email-h-bl .search-container input::before {
	content: '\1F50D';
}

.head-s {
	margin-top: 50px;
}

.head-cont-l-a {
	margin-bottom: 20px;
}

.email-h-bl .hint {
	display: none!important;
}

.email-h-bl #search-title {
	margin-top: 0!important;
}

.email-h-bl .grn-bg-h {
	background: #67ae2f;
    height: 40px;
    padding: 5px;
    border-radius: 8px;
}

.email-h-bl #catalog {
	padding: 0;
    margin-left: -140px;
    width: 215%;
}

.email-h-bl .search-block .icon-close {
	top: -15px; 
	right: -5px;
}


/* test head end */

/*sl mob*/
@media (max-width: 820px) {
	.vr-pc {
		display: none!important;
	}

	.vr-block-mob {
		display: initial!important;
	}
}

@media (min-width: 821px) {
	.vr-block-mob {
		display: none!important;
	}
}
/*sl mob end*/

.home__block_new:after {
	background: none!important;
}

.prot-sl {
	color: #014c73;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	font-weight: 100;
	font-size: 27px;
}


@media (min-width: 960px) {
	.m-h-mob {
		display: none;
	}

	.m-h-pc {
		display: block;
	}
}

@media (max-width: 960px) {
.m-h-mob {
	display: block;
}

.m-h-pc {
	display: none;
}
}

.container-nipt {
	width: 100%;
}

@media screen and (max-width: 960px) {
	.header {
		top: 39px;
	}
}

@media screen and (max-width: 550px) {
	.mobile-only-gl {
		/*margin-top: 113px;*/
	}

	.mobile-only-gl .banner-text h1, .mobile-only-gl .slide-hg {
		font-size: 20px;
		margin: 0 auto;
    	padding: 25px 0px;
	}

	.mobile-only-gl .banner-text {
		width: auto;

	}

	.mobile-only-gl .table-mob-gl {
		margin: 0 auto;
	}

	.mobile-only-gl .banner-text {
		padding: 5px;
	}

	.mobile-only-gl .banner-container {
		display: flex;
   	 	justify-content: center;
    	align-items: center;
	}
}

#mobile_menu_bg:after {
	top: 55px;
}

.m-h-pc {
	z-index: 5;
}

.whatsapp-m {
	bottom: 80px;
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: none!important;
    border: none;
}

.whatsapp-m img {
	background: none!important;
}

@media (max-width: 960px) {
	.wa {
		display: none;
	}

	.header {
		top: 0;
	}

	.whatsapp-m.active {
		bottom: 255px;
	} 
}

@media screen and (max-width: 375px) {
	.whatsapp-m.active {
		bottom: 270px;
	} 
}

@media screen and (max-width: 320px) {
	.whatsapp-m.active {
		bottom: 290px;
	} 
}

@media (min-width: 550px) and (max-width: 960px) {
	.mobile-only-gl {
		margin-top: 55px;
	}
}

@media (min-width: 960px) {
	.whatsapp-m {
		display: none;
	}
}

body {
	overflow-x:hidden;
}

.top_header .breadcrumb {
	margin-bottom: 0;
}

.detail_bg {
	display: none;
}

.page-content {
	margin-top: 0;
}

.img-al-c {
	width: 330px;
    height: 330px;
    display: block;
    margin: 0 auto;
}

.img-big-a-c {
	height: 330px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.item-preview {
	display: none;
}

.page_sub .top_header {
    margin-bottom: 0;
}

.gray_line {
	display: none;
}

.news-grn-btn {
	padding: 10px 33px;
    background-color: #75bc20;
    border: none;
    font-weight: bold;
    color: #fff;
    -webkit-box-shadow: 0 8px 18px 5px rgb(210 218 200 / 75%);
    box-shadow: 0 8px 18px 5px rgb(210 218 200 / 75%);
    font-size: 14px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    max-width: 185px;
    text-align: center;
}

.news-grn-btn:hover {
	background-color: #014c73;
    color: #fff;
}

.wa {
	display: none!important;
}

@media (min-width: 960px) {
	.whatsapp-m img {
		height: 60px;
	}

	.whatsapp-m {
		position: fixed;
		right: 0;
		z-index: 99;
	}
}

.whatsapp-m {
	display: block!important;
}

.item-text a {
	color: #75bc20;
}


/* пцр */
.pcr-btn {
	position: initial;
}

.pcr-banner h1 {
	font-size: 48px;
	text-align: left;
	margin-bottom: 20px;
}

.pcr-banner .banner-text p {
	text-align: left;
	color: #014c73!important;
}

.banner-text-2 {
	text-align: left;
    display: flex;
    justify-content: space-evenly;
    font-size: 18px;
    padding: 5px;
    width: 100%;
    bottom: 0;
    /*position: absolute;*/
}

.pcr-b-bl {
	background: #f1f8e8;
    width: 250px;
    height: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    color: initial!important
}

.pcr-banner {
	background: url('/images/pcr-b.png');
	background-repeat: no-repeat;
	background-size: contain;
}

.pcr-banner .banner-text {
	display: flex;
	width: 100%;
}

.banner-pcr-img {
	background: url('/images/shield.png');
	width: 400px;
	height: 400px;
	background-repeat: no-repeat;
	background-size: contain;
}

.banner-pcr-txt {
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.pcr-v {
	margin-top: 30px;
    margin-bottom: 30px;
}

.pcr-v .variant {
	height: 415px;
	width: 40%;
}

.pcr-desc .green-bg-nipt {
	border-radius: 10px;
}

.pcr-desc {
	margin-top: 30px;
    margin-bottom: 30px;
}

.row-pcr {
	display: flex;
    justify-content: space-evenly;
    margin-bottom: 30px;
}

.pcr-parent p {
	width: 300px;
}

.pcr-bl-2 {
	background: url('/images/pcr2.png');
}

.pcr-bl-3 {
	background: url('/images/pcr3.png');
}

.pcr-bl-4 {
	background: url('/images/pcr4.png');
}

.pcr-bl-5 {
	background: url('/images/pcr7.png');
}

.pcr-bl-6 {
	background: url('/images/pcr6.png');
}

.pcr-bl {
	position: relative;
	width: 300px;
	height: 150px;
	text-align: left;
    font-size: 50px;
    font-weight: 600;
  
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-bottom: 15px;
}

.pcr-n {
	width: initial!important;
	position: absolute;
	font-weight: 600;
    color: #75bc20;
}

.pcr-parent a {
	width: 205px!important;
}

.pcr-40 {
	width: 40%!important;
}

.pcr-40-p {
	padding-left: 25px;
}

.pcr-20 {
	width: 20%;
}

.pcr-ant {
	align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    background: #f1f8e8;
    border-radius: 10px;
    padding: 20px 0px;
}

.pcr-cont-b {
	display: flex;
    justify-content: space-evenly;
}

.pcr-cont p {
	line-height: 1.5em;
}

.pcr-cont {
	border-radius: 10px;
	background: #f1f8e8;
    padding: 15px;
}

.pcr-bcg {
    margin-bottom: 30px;
}

.pcr-test-b {
	display: flex;
    justify-content: space-between;
}

.q-pcr {
	display: flex;
	justify-content: space-evenly;
	align-content: center;
}

.h-40 {
	height: 40px;
}

.q-pcr-p {
	display: flex;
    align-items: center;
}

.pcr-pol {
	width: 60%; 
	height: 22.1871px
}

/* мобильная версия pcr */
@media (max-width: 550px) {
	.pcr-banner {
		height: 285px;
	}

	.pcr-banner .banner-text {
		padding: 0;
	}

	.pcr-banner h1 {
		font-size: 30px;
	}

	.banner-pcr-img {
		width: 200px;
    	height: 200px;
	}

	.banner-text-2 {
		flex-wrap: wrap;
	}

	.pcr-b-m15 {
		margin-bottom: 15px;
	}

	.pcr-b-m30 {
		margin-bottom: 30px;
	}

	.pcr-b-m18 {
		margin-bottom: 18px;
	}

	.pcr-v .variant {
    	height: 100%;
    	width: 100%;
	}

	.pcr-v {
		flex-wrap: wrap;
	}

	.pcr-pol {
		width: 25%;
	}

	.row-pcr {
		flex-wrap: wrap;
	}

	.pcr-100m {
		width: 100%!important;
	}

	.pcr-30m {
		width: 30%!important;
	}

	.pcr-cont {
		width: 100%;
		border-radius: 0;
		display: flex;
  		flex-direction: column;
   		align-items: center;
	}

	.pcr-cont-b {
		flex-wrap: wrap;
	}

	.pcr-test-b {
		flex-wrap: wrap;
   		flex-direction: column;
	}

	.q-pcr {
		flex-wrap: wrap;
	}
}

/* планшетная версия */
@media (min-width: 550px) and (max-width: 1000px) {
	.banner-text-2 {
		flex-wrap: wrap;
	}

	.banner-pcr-img {
		width: 300px;
		height: 300px;
	}

	.pcr-banner h1 {
		font-size: 32px;
	}

	.pcr-banner {
		height: 385.5px;
	}
}

@media (min-width: 550px) and (max-width: 780px) {
	.pcr-b-m15 {
		margin-bottom: 15px;
	}

	.pcr-b-m30 {
		margin-bottom: 30px;
	}

	.row-pcr, .pcr-v {
		flex-direction: column;
    	align-content: center;
    	align-items: center;
	}

	.pcr-v .variant {
		height: 100%;
    	width: 60%;
	}

	.pcr-ant {
		flex-direction: initial;
		align-content: initial;
	}
}

.main_block .info_contacts {
display: none;
}

.banner-gl-5 h1, .banner-gl-6 h1 {
	font-size: 35px!important;
}

.vr-3-sec {
	position: absolute!important;
    bottom: -20px!important;
    left: -80px!important;
}

.vr-3-sec-c {
	position: relative!important;
}

.iga-banner {
	background: url('/images/igaban.png');
	background-repeat: no-repeat;
	background-size: contain;
}

.banner-pcr-img-iga {
	background: url('/images/shield2.png');
	width: 400px;
	height: 400px;
	background-repeat: no-repeat;
	background-size: contain;
}

.pcr-bl-mg {
	margin-bottom: 60px;
}

.iga-banner h1 {
	font-size: 36px!important;
	line-height: 1.2em!important;
}


@media (max-width: 1000px) {
	.iga-banner .banner-pcr-txt {
	justify-content: flex-start;
	}


}

@media (min-width: 550px) and (max-width: 1000px) {
	.banner-pcr-img-iga {
    width: 300px;
    height: 300px;
	}
}

@media (min-width: 550px) and (max-width: 1000px) {
	.iga-banner h1 {
		font-size: 30px!important;
	}
}

@media (max-width: 550px) {
	.banner-pcr-img-iga {
    width: 200px!important;
    height: 200px;
	}

	.iga-banner h1 {
		font-size: 26px!important;
	}

	.iga-banner {
		background: none;
		height: 100%!important;
		margin-bottom: 15px;
	}

	.vert-iga-pos {
		flex-direction: column;
    	align-content: center;
	}

	.vert-btn-iga .btn.btn-lg {
		min-width: 204px;
	}

	.variant-button.vert-btn-iga {
		position: initial!important;
	}

	.vert-iga-pos .pcr-100m {
		text-align: center;
    	padding: 5px 0px;
	}

	.iga-banner .banner-text {
		flex-direction: column;
    	align-items: center;
	}

	.banner-pcr-img-iga {
		background-position: center;
	}

	.pcr-ant.vert-iga-pos {
		padding: 20px 10px;
	}
}

.iga-sh {
	box-shadow: 0px 5px 10px 2px rgb(34 60 80 / 20%);
	background: #fff;
}

.cfff {
color: #fff!important;
}

.item-text .pcr-btn a {
 color: #fff!important;
}

.par-pcra {
	display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.par-pcra-child {
	box-shadow: 0px 5px 10px 2px rgb(34 60 80 / 20%);
	width: 40%;
	height: 224px;
	padding: 15px 0 0 15px;
	text-align: left;
	background: url('/images/par-pcra-child.png');
	background-repeat: no-repeat;
    background-size: cover;
}


.par-pcra-child-1 {
	background: url('/images/par-pcra-child-1.png');
}
.par-pcra-child-2 {
	background: url('/images/par-pcra-child-2.png');
}
.par-pcra-child-3 {
	background: url('/images/par-pcra-child-3.png');
}
.par-pcra-child-4 {
	background: url('/images/par-pcra-child-4.png');
}
.par-pcra-child-5 {
	background: url('/images/par-pcra-child-5.png');
}
.par-pcra-child-6 {
	background: url('/images/par-pcra-child-6.png');
}


.par-pcra-child-1,.par-pcra-child-2,.par-pcra-child-3,.par-pcra-child-4,.par-pcra-child-5,.par-pcra-child-6 {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom right;
	height: 100%;
	width: 100%;
	position: relative;
}

.variant-par {
	position: absolute;
}

.par-pcra-banner {
	background: url('/images/par-pcra-banner.png');
}

.par-pcra-banner-2 {
	background: url('/images/par-pcra-banner-2.png');
	height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
}

.par-pcra-banner h1 {
	text-align: left;
    font-size: 48px;
    max-width: 100%;
}

.par-pcra-banner p {
	text-align: left;
}

@media (max-width: 1000px) {
	.par-pcra {
		flex-direction: column;
		margin-bottom: 0;
	}

	.par-pcra-child {
		width: 100%;
		background-size: cover;
		margin-bottom: 20px;
	}
}

.only-text-sh {
	padding: 20px;
}

.only-text-sh .block-title {
	margin-top: 0px;
}

.only-text-sh .descr {
	padding: 0 10px;
	font-size: initial;
}

.lh-sh p {
	line-height: initial!important;
}

.p25r {
	padding-right: 25px;
	padding-left: 25px;
}

.m0sh {
	margin-bottom: 0;
	background: #fff;
}

.pcr-30 {
	width: 30%;
}

.sh-ban {
	background: url('/images/shshsh1.png')!important;
	background-size: cover;
}

.sh-ban .par-pcra-banner-2 {
	background: url('/images/shshsh2.png');
}

.init-lh h1, .init-lh h2, .init-lh h3, .init-lh p, .init-lh li {
	line-height: initial;
}

.init-lh .banner-text p {
	color: #014c73!important;
}

.akc-sh {
	font-size: 20px;
    color: #75bc20;
}

.banner-gl-8 {
	background: url('/images/sbs8.png')!important;   
	background-size: cover!important;
}

.vr-img-8 {
	background: url('/images/tbs8.png');
    height: 100%;
    position: absolute;
    width: 100%;
    background-repeat: no-repeat;
}

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

HTML, BODY {
	height: 100%;
	min-width: 320px;
	margin: 0;
	padding: 0;
}

BODY {
	font-family: "AvenirNextCyr", sans-serif;
	font-size: 16px;
	color: #333;
	text-align: center;
}

INPUT, SELECT, TEXTAREA, BUTTON {
	font-family: "AvenirNextCyr", sans-serif;
	font-size: inherit;
	outline: none;
	border: 0;
	background-color: transparent;
	padding: 0;
	line-height: normal;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border-radius: 0;
}

INPUT:focus, SELECT:focus, TEXTAREA:focus, BUTTON:focus {
	outline: none;
}

input[type="checkbox"] {
	-webkit-appearance: checkbox;
}

input[type="radio"] {
	-webkit-appearance: radio;
}

TEXTAREA {
	resize: vertical;
}

UL, OL {
	margin: 0;
	padding: 0;
	list-style: none;
}

H1, H2, H3, P {
	margin: 0;
	font-weight: normal;
	line-height: 1em;
}

IMG {
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
	outline: 0 !important;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-thumb {
	background-color: #75bc20;
	cursor: pointer;
}

::-webkit-input-placeholder {
	color: inherit;
}

.flex {
	display: -ms-flexbox;
	display: flex;
}

.flex.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex.flex-center {
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

.flex.flex-between {
	-ms-flex-pack: space-between;
	justify-content: space-between;
	align-items: center;
}

.flex.flex-end {
	-ms-flex-pack: flex-end;
	justify-content: flex-end;
}

.flex.flex-column {
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex.flex-center.flex-column {
	align-items: start;
}

.flex-wrap .col-6 {
	max-width: 50%;
	flex: 0 0 50%;
	position: relative;
    width: 100%;
    padding-right: 50px;
    padding-left: 50px;
}

.abs {
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
}

.rounded {
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.native {
	font-family: "AvenirNextCyr", sans-serif;
}

.contain_bg {
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.cover_bg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.green-color {
	color: #75bc20;
}

.green-bg {
	background-color: #75bc20;
}

.white-bg {
	background-color: #fff;
}

.overlay {
	overflow: hidden;
}

.link {
	color: #75bc20;
	font-weight: bold;
}

.btn {
	width: 125px;
	line-height: 30px;
	display: inline-block;
	font-size: 12px;
	color: #fff;
	text-align: center !important;
	cursor: pointer;
	white-space: nowrap;
	font-weight: bold;
	background-color: #75bc20;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
}

.btn:not(.btn-disable):hover {
	background-color: #5d9718;
}

.btn:not(.btn-disable):active {
	background-color: #45730e;
}

.btn.btn-lg {
	width: auto;
	line-height: 40px;
	padding: 0 50px;
	font-size: 14px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 8px 18px 5px rgba(210, 218, 200, .75);
	box-shadow: 0 8px 18px 5px rgba(210, 218, 200, .75);
}

.btn.btn-white {
	background-color: #fff;
	color: #75bc20;
	font-weight: normal;
}

.btn.btn-white:hover {
	color: #fff;
}

.btn.btn-pink {
	background-color: #ffcccc;
	font-weight: normal;
}

.btn.btn-fff {
	width: 220px;
	line-height: 40px;
	font-size: 15px;
	color: #75bc20;
	background-color: #fff;
	-webkit-box-shadow: 0px 8px 17.1px 0.9px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0px 8px 17.1px 0.9px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 8px 17.1px 0.9px rgba(0, 0, 0, 0.05);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.btn.btn-fff:hover {
	color: #fff;
}

.btn.btn-disable {
	cursor: default;
	-moz-opacity: .6;
	-khtml-opacity: .6;
	opacity: .6;
}

.page {
	overflow: hidden;
	min-height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.page-inner {
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.wrapper {
	position: relative;
	margin: 0 auto;
	padding: 0 10px;
	max-width: 1130px;
	min-width: 320px;
}

.wrapper-clear {
	margin-left: calc((100vw - 1120px)/2*-1);
	margin-right: calc((100vw - 1120px)/2*-1);
}

.header {
	width: 100%;
	color: #333;
	position: absolute;
	z-index: 10;
	
	top: 45px;
}

.header_sub {
	/*background-image: url(../images/header_sub_bg.jpg);
	background-size: cover;*/
	margin-bottom: 40px;
}

.top_submenu {
	font-weight: bold;
	padding: 15px 0;
}

.top_submenu li {
	margin-right: 60px;
}

.top_submenu li i {
	color: #75bc20;
	font-size: 18px;
}

.top_logo {
	position: absolute;
	top: -10px;
	left: 0;
}

.top_logo small {
	position: absolute;
	right: 0;
	bottom: -15px;
	color: #014c73;
	font-size: 16px;
}

.top_icons {
	position: absolute;
	top: 15px;
	right: 10px;
	text-align: left;
}

.top_icons i {
	color: #75bc20;
}

.top_address {
	font-size: 12px;
	width: 195px;
	margin-right: 30px;
}

.top_address i {
	margin-right: 5px;
	font-size: 14px;
}

.top_phone .icon-phone {
	margin-right: 10px;
}

.top_phone a[href^="tel"] {
	font-weight: bold;
}

.top_phone a[href^="mailto"] {
	font-weight: bold;
	font-size: 12px;
	color: #75bc20;
}

.top_cart {
	width: 30px;
	line-height: 30px;
	display: inline-block;
	margin-left: 30px;
	background-color: #efefef;
	color: #014c73;
	font-size: 14px;
	position: relative;
	text-align: center;
}

.top_cart:after {
	content: attr(data-count);
	width: 20px;
	height: 20px;
	line-height: 17px;
	position: absolute;
	top: -9px;
	right: -9px;
	border: 2px solid;
	font-size: 8px;
	font-style: normal;
	color: #fff;
	text-align: center;
	background-color: #75bc20;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.top_line {
	display: none;
	height: 1px;
	margin-bottom: 40px;
	border: none;
	background-color: rgba(255,255,255,.1);
}

.top_time {
	position: absolute;
	font-size: 12px;
	font-weight: bold;
	right: 10px;
	top: 40px;
}

.full_height .wrapper,
.full_height .flex {
	height: 100%;
}

.map {
	height: 625px;
	position: relative;
	/*background-image: url(../images/map.jpg);*/
	background-position: right bottom;
	background-repeat: no-repeat;
}

.ymap {
	position: absolute;
	top: 0; bottom: 0;
	left: 0; right: 0;
}

.map_text {
	width: 540px;
	height: 630px;
	padding-left: 90px;
	position: absolute;
	z-index: 5;
	top: -30px; left: 10px;
	background-image: url(../images/map_text_bg.png);
	-webkit-box-shadow: 0 14px 38px 5px rgba(185,185,185,.75);
	box-shadow: 0 14px 38px 5px rgba(185,185,185,.75);
}

.map_logo {
	border-bottom: 1px solid #7fc729;
	padding-bottom: 35px;
}

.map_line {
	width: 100%;
	margin-top: 35px;
	padding-left: 40px;
	padding-right: 60px;
	position: relative;
	color: #fff;
	text-align: left;
}

.map_line i {
	position: absolute;
	left: 0;
	top: -3px;
	color: #99dc49;
	font-size: 20px;
}

.map_line small {
	display: block;
	font-size: 14px;
	margin-bottom: 15px;
}

.map_line strong {
	font-size: 24px;
	display: inline-block;
}

.bottom_links {
	padding: 50px 0;
	background-image: url(../images/map_text_bg.png);
}

.bottom_links_item {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
	text-align: left;
}

.bottom_links_list {
}

.bottom_links_list li {
	font-size: 12px;
	margin: 20px 0;
}

.bottom_links_list li.strong {
	font-size: 16px;
	font-weight: bold;
	margin: 30px 0;
}

.bottom_links_list li:first-child {
	margin-top: 0;
}

.bottom_links_list li:last-child {
	margin-bottom: 0;
}

.bottom_links_list li a:hover {
	color: #75bc20;
	text-decoration: underline;
}

.bottom_links_list li a[class^="icon"] {
	width: 30px;
	line-height: 30px;
	margin-right: 5px;
	color: #99dc49;
	display: inline-block;
	text-align: center;
}

.bottom_links_list li a[class^="icon"]:hover {
	color: #fff;
	text-decoration: none;
	-webkit-box-shadow:inset 0 6px 6px 0 rgba(0,0,0,.25);
	box-shadow:inset 0 6px 6px 0 rgba(0,0,0,.25);
}

.bottom_links_list li span {
	font-weight: bold;
}

.bottom_links_list li .icon-18-plus {
	font-size: 25px;
}

.bottom_links_list li .icon-pdf-file {
	font-size: 16px;
}

.bottom_links_list li strong {
	font-size: 14px;
	color: #909090;
	margin-left: 15px;
}

.footer-line {
	height: 1px;
	margin: 0;
	border: none;
	background-color: #d8d8d8;
}

.footer-info {
	margin: 0 -25px 40px;
	padding-top: 25px;
	font-size: 12px;
	color: #909090;
}

.footer-info span {
	color: #75bc20;
}

.footer-info-item {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	text-align: left;
	padding: 0 25px;
}

.footer {
	padding: 30px 0 80px;
	background-color: #edecf1;
	font-size: 12px;
	text-align: left;
}

.footer_item input {
	width: 200px;
	line-height: 30px;
	padding: 0 10px;
	margin-top: 10px;
	margin-right: 10px;
	background-color: #fff;
	font-style: italic;
	border: 1px solid #ccc;
}

.footer_item input.invalid {
	border: 1px solid red;
}

.item-text ul,
.list-item {
    margin: 20px 20px 30px;
}

.item-text ul li,
.list-item li {
	position: relative;
	padding-left: 25px;
	margin: 10px 0;
}

.item-text ul li:before,
.list-item li:before {
	content: "";
	width: 10px;
	height: 10px;
	background-color: #75bc20;
	position: absolute;
	left: 0;
	top: .35em;
}

.item-text ul li a,
.list-item li a {
	color: #75bc20;
	font-weight: bold;
}

.item-text ul li p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2em !important;
}

.cookies_agree {
    width: 100%;
	max-height: 0;
	position: fixed;
    bottom: 0;
    z-index: 1000;
	background-color: #75bc20;
	color: #fff;
	text-align: left;
	font-size: 14px;
	padding: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.cookies_agree.show {
	max-height: 300px;
	padding: 15px 0;
}

.cookies_agree_btn .btn {
	border: 1px solid;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	line-height: 33px;
}

.wa {
	background-color: #75bc20;
	color: #fff;
	padding: 10px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

/* mobile */
.mobile_icon {
	display: none;
	height: auto;
	cursor: pointer;
	z-index: 100;
	position: absolute;
	top: 0;
	left: 15px;
}

.line-1, .line-2, .line-3 {
	background-color: #333;
	height: 3px;
	width: 30px;
	margin-bottom: 6px;
	transition: all 0.3s ease-in-out;
}

.line-3 {
	margin-bottom: 0;
}

.mobile_icon.active .line-1 {
	transform: translateY(9px) rotate(45deg);
	transform-origin: center center;
}

.mobile_icon.active .line-2 {
	transform: translateX(-100%);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
}

.mobile_icon.active .line-3 {
	transform: translateY(-9px) rotate(-45deg);
	transform-origin: center center;
}

#mobile_menu_bg {
	position: fixed;
	top: 0; bottom: 0;
	left: 0; right: 0;
	z-index: 5;
	background-color: #000;
	background-color: rgba(0,0,0,.5);
	visibility: hidden;
	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
}

#mobile_menu_bg.active {
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	visibility: visible;
}

#mobile_menu_bg:after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 50px; bottom: 15px;
	left: 15px; right: 15px;
	
	top: 120px; bottom: 5px;
	
	background-color: #fff;
	background-color: rgba(255,255,255,.95);
	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	
	-moz-transform: translateY(-200px);
	-webkit-transform: translateY(-200px);
	-o-transform: translateY(-200px);
	-ms-transform: translateY(-200px);
	transform: translateY(-200px);
}

#mobile_menu_bg.active:after {
	-moz-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

.form-container, .not_desktop {
	display: none;
}

@media screen and (max-width:960px) {
	
	.flex-column-mobile {
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	
	.flex-column-mobile-reverse {
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	
	.flex-wrap .col-6 {
		width: 100%;
		max-width: 100%;
		flex: 0 0 100%;
		position: relative;
		padding: 0;
	}
	
	.not_desktop {
		display: unset;
	}
	
	.not_mobile {
		display: none !important;
	}
	
	.toggle-mobile {
		display: none;
	}
	
	.btn.btn-lg {
		width: 100%;
		padding: 0 15px;
		margin: 5px 0;
	}
	
	.wrapper {
		padding: 0 15px;
	}
	
	.wrapper-clear {
		margin: 0 -15px;
	}
	
	.mobile_icon {
		display: block;
	}
	
	.top_submenu, .top_phone, .top_line {
		display: none;
	}
	
	.header {
		top: 60px;
		position: fixed;
		background-color: #fff;
		padding-top: 15px;
	}
	
	.top_logo {
		top: -35px;
		left: 50%;
		margin-left: -67px;
	}
	
	.top_logo img {
		height: 20px;
	}
	
	.top_icons {
		top: -5px;
		right: 15px;
		line-height: 0;
	}
	
	.top_submenu {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 40px;
		left: 35px;
		right: 35px;
		color: #333;
		font-size: 20px;
	}
	
	.top_submenu li {
		width: 100%;
		text-align: left;
		margin-right: 0;
		margin-bottom: 20px;
	}
	
	.top_submenu img {
		filter: brightness(0.4);
	}
	
	.top_time {
		right: unset;
		left: 35px;
		top: 145px;
	}
	
	.mobile_slide {
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		
		visibility: hidden;
		-moz-opacity: 0;
		-khtml-opacity: 0;
		opacity: 0;
		
		-moz-transform: translateY(-200px);
		-webkit-transform: translateY(-200px);
		-o-transform: translateY(-200px);
		-ms-transform: translateY(-200px);
		transform: translateY(-200px);
	}
	
	.mobile_slide.active {
		visibility: visible;
		-moz-opacity: 1;
		-khtml-opacity: 1;
		opacity: 1;
		
		-moz-transform: translateY(0px);
		-webkit-transform: translateY(0px);
		-o-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
	
	.mobile_phone {
		width: 60px;
		line-height: 60px;
		color: #fff;
		background-color: #75bc20;
		font-size: 24px;
		border: 1px solid;
		position: fixed;
		bottom: 90px;
		right: 5px;
		z-index: 10;
	}
	
	.mobile_phone.active {
		bottom: 185px;
	}
	
	.map {
		height: auto;
		background-image: none;
	}
	
	.ymap {
		display: none;
	}
	
	.map_text {
		width: auto;
		height: auto;
		margin: 0 -15px;
		padding: 20px 15px 30px;
		position: static;
	}
	
	.map_logo {
		padding-bottom: 20px;
	}
	
	.map_line:last-child {
		border-bottom: 1px solid #7fc729;
		padding-bottom: 30px;
	}
	
	.map_line strong {
		font-size: 18px;
	}
	
	.bottom_links_item {
		width: 100%;
		-ms-flex: auto;
		flex: auto;
		max-width: 100%;
		display: none;
	}
	
	.bottom_links_item:last-child {
		display: block;
	}
	
	.bottom_links_list li strong {
		font-size: 12px;
	}
	
	.bottom_links_list li {
		-ms-flex-pack: left !important;
		justify-content: left !important;
	}
	
	.footer-info-item {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	.footer .flex {
		flex-direction: column-reverse;
		align-items: start;
	}
	
	.footer_item {
		margin-bottom: 15px;
	}
	
	.footer_item input {
		width: 150px;
	}
	
	.form-container {
		padding: 30px;
	}
	
	.cookies_agree_btn {
		margin: 15px auto 0;
	}
	
}

@media screen and (max-width:375px) {
	
	.mobile_phone.active {
		bottom: 200px;
	}
}

@media screen and (max-width:320px) {
	
	.mobile_phone.active {
		bottom: 220px;
	}
}

/* animation */
.cart-animate {
	width: 25px;
	line-height: 25px;
	position: absolute;
	z-index: 1000;
	opacity: 1;
	background-color: #fff;
}


/* custom */

.nipt {
	text-align: left;
	position: relative;
	color: #333;
}

.container-nipt {
	position: relative;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 1130px;
    min-width: 320px;

}

.banner {
	position: relative;
	height: 556.5px;
    background: url('/images/banner-nipt.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.banner-container {
	margin: 0 auto;
    padding: 0 10px;
    max-width: 1130px;
    min-width: 320px;
    height: 100%;
    position: relative;
}

.banner-text {
	position: absolute;
	padding: 50px;
	width: 750px;
}

.banner-text h1, .slide-hg {
	max-width: 625px;
    font-size: 72px;
    margin-bottom: 30px;
    font-weight: 600;
}

.banner-text p {
	font-size: 18px;
}

.green-bg-nipt {
    background: #f1f8e8;
}

.descr {
	padding: 20px 10px;
    font-size: 17px;
}

.height-bg {
	height: 87px;
}

.d-flex-nipt {
	display: flex;
    justify-content: space-evenly;
    padding: 15px 0;
    text-align: center;
    height: 200px;
}

.heart {
	position: relative;
	background: url(/images/heart.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    background-position: center;
}

.heart p {
	position: absolute;
    margin-top: 10px;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 600;
}

.numb {
    top: 26px;
    font-size: 30px!important;
}

.htxt {	
    top: 68px;
}

.stages-block {
	display: flex;
	justify-content:space-evenly;
}
/* изображения этапы */
.st1 {
	background: url(/images/e1.png);
}

.st2 {
	background: url(/images/e2.png);
}
.st3 {
	background: url(/images/e3.png);
}
.st4 {
	background: url(/images/e4.png);
}
.st5 {
	background: url(/images/e5.png);
}
.st6 {
	background: url(/images/e6.png);
}
.st7 {
	background: url(/images/e7.png);
}
/* изображения этапы end */
.stage {
	width: 190px;
    height: 190px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    text-align: center;
}

.stage p {
	position: absolute;
    /*bottom: 10px;*/
    top: 145px;
    font-size: 15px;
    width: 90%;
    margin: auto;
    left: 0;
    right: 0;
}

.bcg-adv {
	background: url(/images/adv.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: right;
    height: 470px;
}

.li-st {
	list-style: disc;
}

.li-mg {
	margin-bottom: 25px;
}

.variants-block {
	display: flex;
	justify-content: space-evenly;
}

.variant {
	width: 20%;
	height: 730px;
	position: relative;
	-webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
	-moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
	box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
}

.variant-h {
	text-align: center;
	font-size: 18px;
	font-weight: 600;
}

.variant-body {
	text-align: center;
}

.price-nipt {
	color: #67ae2f;
	font-size: 18px;
	font-weight: 600;
}

.variant p {
	margin-bottom: 15px;
}

.variant-button {
	position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
     text-align: center;
}

.variant-button a {
	padding: 10px 35px;
}

.different-bg {
	background: url(/images/dif.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 470px;
}

.diff-block {
	max-width: 450px;
}

.diff-block ul li {
	list-style: disc;
	margin-bottom: 15px;
}

.why-bg {
	background: url(/images/lab.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 470px;
    background-position: center;
}

.why-content, .form-nipt-content {
	max-width: 450px;
}

.form-nipt-bg {
	background: url(/images/bab.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 470px;
    background-position: center;
}

.contact-nipt {
	margin-top: 20px;
	width: 450px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.contact-nipt a {
	color: #014c73;
}

.white-bg {
	padding: 15px;
}

.fm-nipt {
	padding-top: 15px;
}

.block-title {
	display: flex;
    flex-direction: row;
    margin-top: 50px;
    margin-bottom: 25px;
    justify-content: space-between;
}

.title-nipt {
	font-weight: 600;
}

.st1-bl {
	margin-bottom: 30px;
}

.advantage-list {
	padding-top: 20px;
	padding-left: 25px;
}

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

.diff-block {
	padding-top: 80px;
}

.diff-block ul li {
	margin-bottom: 40px;
	font-size: 16px;
	padding-left: 25px;
}

.wh-body li {
	margin-top: 30px;
    margin-left: 30px;
}

.why-content {
	padding-top: 40px;
}

.why-content p {
	margin-bottom: 50px;
}


.banner, .bcg-adv, .different-bg, .why-bg, .form-nipt-bg {
	max-width: 100% /*1500px*/;
    margin: 0 auto;
}


@media (max-width: 1200px) {
	.variants-block {
		flex-wrap: wrap;
	}

	.variant {
		width: 40%;
		height: auto;
		margin-bottom: 15px;
		padding-bottom: 70px;
	}

	.variant-bottom {
		position: initial;
		padding-bottom: 15px;
	}

	.wh-con-bg {
		background: #ffffff6b;
		padding: 5px;
	}
}

@media (max-width: 960px) {
	.stages-block {
		flex-wrap: wrap;
	}
}

@media (max-width: 900px) {
	.bcg-adv {
		background: #fff;
	}

	.form-nipt-bg {
		background: #fff;
	}

	.form-nipt-content {
		width: 100%;
	}

	.contact-nipt {
		width: 100%;
	}
}

@media (max-width: 620px) {
	.banner-text h1, .slide-hg {
		max-width: 475px;
		font-size: 34px;
	}

}

@media (max-width: 550px) {
	.banner-text h1, .slide-hg {
		max-width: 300px;
	}
	.banner-text p {
		max-width: 300px;
	}

	.banner-text {
		position: relative;
	}

	.banner {
		height: 330px;
	}

	.heart p {
		font-size: 14px;
		margin-top: 12px;
	}

	.numb {
		font-size: 20px!important;
		margin-top: 30px!important;
	}

	.diff-block li {
		padding-left: 0;
	}

	.variant-button {
		bottom: -6px;
	}

	.variant {
		width: 100%;
	}
}

.vr-block {
	display: flex;
	justify-content: space-evenly;
	margin-bottom: 20px;
}

.vrach-gl {
	position: relative;
	width: 300px;
}

.vrach-gl-1 {
	background: #f8f8fa;
    width: 170px;
    height: 170px;
    margin: 0 auto;
    border-radius: 100%;
    position: relative;
}

.ph1 {
	background: url(/upload/resize_cache/iblock/0e0/415_415_2/0e030b640be8f38a2381d03f15c91b40.png);
}

.ph2 {
	background: url(/upload/resize_cache/iblock/ae2/415_415_2/ae2e8ff20a6888a4647a7371624d3550.png);
}

.ph3 {
	background: url(/upload/resize_cache/iblock/94b/415_415_2/94bea8f64326dc6b48f99eaf0c4c44c2.png);
}

.vrach-ph {
    height: 150px;
    width: 150px;
    background-size: contain;
    position: absolute;
    border-radius: 100%;
    right: 0;
    left: 0;
    margin: auto;
    top: 0;
    bottom: 0;
}

.vrach-gl-2 {
	background: #f8f8fa;
    margin-top: -95px;
    border-radius: 15px;
    padding-top: 105px;
}

.vrach-gl-2 p {
	padding: 15px;
}

.vr-button {
	height: auto;
    background-color: #75bc20;
    color: #fff;
    padding: 15px;
    text-align: center;
    margin-bottom: 50px;
}

.vr-button div {
	font-size: 20px;
	font-weight: bold;
}

.vr-button a {
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.ys-gl-ct {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 20px;
}

.ys-gl-bl {
	width: 22%;
	position: relative;
	height: 100px;
	margin-bottom: 30px;
}

.ys-gl-bl p {
	position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.y1 {
	background: url(/images/1y.png);
	background-repeat: no-repeat;
	background-size: 95px;
	background-position: top!important;
}

.y2 {
	background: url(/images/2y.png);
	background-repeat: no-repeat;
	background-size: 75px;
	background-position: top!important;
}

.y3 {
	background: url(/images/3y.png);
	background-repeat: no-repeat;
	background-size: 75px;
	background-position: top!important;
}

.y4 {
	background: url(/images/4y.png);
	background-repeat: no-repeat;
	background-size: 75px;
	background-position: top!important;
}

.y5 {
	background: url(/images/5y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: top!important;
}

.y6 {
	background: url(/images/6y.png);
	background-repeat: no-repeat;
	background-size: 65px;
	background-position: top!important;
}

.y7 {
	background: url(/images/7y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: top!important;
}

.y8 {
	background: url(/images/8y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: top!important;
}

.y10 {
	background: url(/images/10y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: top!important;
}

.y11 {
	background: url(/images/11y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: top!important;
}

.y12 {
	background: url(/images/12y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: top!important;
}

.y13 {
	background: url(/images/13y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: top!important;
}

.y14 {
	background: url(/images/14y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: top!important;
}

.y15 {
	background: url(/images/15y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: top!important;
}

.y16 {
	background: url(/images/16y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: top!important;
}

.y17 {
	background: url(/images/17y.png);
	background-repeat: no-repeat;
	background-size: 85px;
	background-position: center -10px!important;
}

.form-gl-content {
	position: absolute;
	right: 0;
}

.form-gl-content .white-bg {
	max-width: 400px!important
}

.form-gl-content .white-bg, .form-gl-content .form_row input, .form-row {
	background: #014c73!important;
}

.form-gl-content .form_row {
	box-shadow: none!important;
	border: 1px solid #fff!important;
	border-radius: 0!important;
	-webkit-border-radius: 0!important;

}

.form-gl-content .form_row input {
	color: #fff!important;
}

.form-gl-content .btn {
	background: #fff!important;
	color: #014c73!important;
	border-radius: 0!important;
	box-shadow: none!important;
	width: 50%!important;
}

.form-gl-content .form_buttons, .form-gl-content .form_buttons a {
	color: #fff!important;
}

.form-gl-content-p {
	background: #014c73;
    text-align: left;
    padding: 15px 15px 0px 15px;
    color: #fff;
    font-size: 20px;
}

.form-gl-bg {
	background: url(/images/gl-p.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 470px;
    background-position: center;
}

.for-gl-bcg {
	background: url(/images/for-bcg-gl.png);
	background-size: cover!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
    height: 470px;
}

.for-block-gl {
	max-width: 460px;
    position: absolute;
    right: 0;
    height: 470px;
    background: #fff9;
    text-align: left;
    padding: 15px;
}

.for-gl {
	display: flex;
	padding-bottom: 15px;
}

.for-title-gl {
	padding-bottom: 15px;
	font-weight: bold;
}

.form-gl-text {
    text-align: left;
    padding: 63px;
    max-width: 600px;
}

.program-fl-gl {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.program-fl-gl p {
	text-align: left;
}

.program-bl-gl {
	width: 45%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.program-bl-gl img {
	width: 170px;
    height: 140px;
    padding-right: 5px;
}

.program-bl-gl div {
	width: 60%;
}

.icon-18-plus-gl {
	background: url('/images/18+.png');
	height: 25px;
    width: 25px;
    background-size: contain;
    margin-right: 10px;
    background-repeat: no-repeat;
}

.programm-desc-gl {
	display: flex;
	align-items: center;
}

.variant-button-pos {
	position: initial;
}

.gl-i-1 {
	background: url(/images/gl-i-1.png);
	height: 45px;
    width: 15%;
    background-size: contain;
    background-repeat: no-repeat;
}

.gl-i-2 {
	background: url(/images/gl-i-2.png);
	height: 45px;
    width: 15%;
    background-size: contain;
    background-repeat: no-repeat;
}

.gl-i-3 {
	background: url(/images/gl-i-3.png);
	height: 45px;
    width: 15%;
    background-size: contain;
    background-repeat: no-repeat;
}

.for-gl {
	align-items: center;
    justify-content: space-around;
}

.for-gl p {
	width: 75%;
}

.vr-block .price-nipt {
	font-size: initial;
}

.vr-desc {
	text-align: left;
}

.grn-pr {
	color: #67ae2f;
}

.news-gl .home__block_news {
	background: #fff!important;
}

.news-gl .home__block_news {
	margin-bottom: 0!important;
}

.news-gl .home__block_new-title a {
	color: #014c73!important;
}

.descr .right {
	margin-top: 10px;
}

.descr p {
	line-height: 1.2em;
}

.banner-text h1, .slide-hg {
	color: #014c73!important;
}

.h-mob-t {
	margin-bottom: 15px;
}

.banner-text .table-mob-gl p {
	color: #014c73!important;
}

/* главная мобильная версия */
@media (min-width: 1200px) {
	.pc-only-gl {
		display: initial;
	}

	.mobile-only-gl {
		display: none;
	}

	.banner-gl {
		/*background: url('/images/gl-t-p.png')!important;*/
		background: url('/images/fbs1.png')!important;
	}

	.banner-gl-2 {
		background: url('/images/sbs1.png')!important;   
	}

	.banner-gl-32 {
		background: url('/images/sochi-b1.png')!important;
	}

	.banner-gl-33 {
		background: url('/images/33.png')!important;
	}

	.banner-gl-34 {
		background: url('/images/112.png')!important;
	}

	.banner-gl-35 {
		background: url('/images/114.png')!important;
	}

	.banner-gl-36 {
		background: url('/images/116.png')!important;
	}

	.banner-gl-37 {
		background: url('/images/118.png')!important;
	}

	.banner-gl-633 {
		background: url('/images/633.png')!important;
	}
	
	.banner-gl-21 {
		background: url('/images/ban-gr.png')!important;
	}

	.banner-gl-22 {
		background: url('/images/bn-22.png')!important;
	}

	.banner-gl-3 {
		background: url('/images/tbs1.png')!important; 
	}

	.banner-gl-4 {
		background: url('/images/cbs2.png')!important;
	}

	.banner-gl-5 {
		background: url('/images/16n.png')!important;
	}

	.banner-gl-6 {
		background: url('/images/19n.png')!important;
	}

	.banner-gl-12 {
		background: url('/images/gl-12.png');
	}

    .banner-gl-53 {
		background: url('/images/53.png')!important;
	}

    .banner-gl-55 {
		background: url('/images/55.png')!important;
	}

	.banner-gl, .banner-gl-2, .banner-gl-3, .banner-gl-5, .banner-gl-6, .banner-gl-12, .banner-gl-21, .banner-gl-22, .banner-gl-32, .banner-gl-33, .banner-gl-34, .banner-gl-35, .banner-gl-36, .banner-gl-37 .banner-gl-633, .banner-gl-53, .banner-gl-55 {
		background-size: cover!important;
	    background-repeat: no-repeat!important;
	    background-position: center!important;
	}
	
	.banner-gl h1 {
		text-align: left;
		font-size: 48px;
	}

	.vr-img-0 {
	background: url(/images/fbs2.png);
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
	}

	.vr-img-1 {
	background: url(/images/sbs2.png);
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
	}

	.vr-img-32 {
		background: url(/images/sochi-b1-i1.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
	}

    .vr-img-54 {
		background: url(/images/54.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
	}

    .vr-img-56 {
		background: url(/images/56.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
	}

	.vr-img-33 {
		background: url(/images/32.png);
   		height: 100%;
   		width: 839px;
   		background-size: contain;
   		position: absolute;
   		right: 0;
   		bottom: -139px;
   		background-repeat: no-repeat;
	}

	.vr-img-34 {
		background: url(/images/111.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
	}

	.vr-img-35 {
		background: url(/images/113.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
	}

	.vr-img-36 {
		background: url(/images/115.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
	}

	.vr-img-37 {
		background: url(/images/117.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
	}

	.vr-img-633 {
		background: url(/images/634.png);
    	height: 100%;
    	width: 100%;
    	position: absolute;
    	right: 0;
    	background-repeat: no-repeat;
    	background-size: contain;
	}

	.vr-img-2 {
		background: url('/images/tbs2.png');
    	height: 100%;
    	position: absolute;
    	width: 100%;
    	background-repeat: no-repeat;
	}

	.vr-img-4 {
		background: url('/images/cbs1.png');
    	height: 100%;
    	position: absolute;
    	width: 100%;
    	background-repeat: no-repeat;
	}

	.vr-img-5 {
		background: url('/images/17n.png');
    	height: 100%;
    	position: absolute;
    	width: 100%;
    	background-repeat: no-repeat;
	}

/*	.vr-img-6 {
		background: url('/images/19n.png');
    	height: 100%;
    	position: absolute;
    	width: 100%;
    	background-repeat: no-repeat;
	}*/

	.table-mob-gl {
		background: #fff;
   		padding: 10px;
   		width: 300px;
   		border-radius: 10px;
   		width: 430px;
   		color: #014c73!important;
	}

	.banner-text p {
		padding: 5px;
	}
}

@media (max-width: 1200px) {
	.mobile-only-gl {
		display: initial;
	}

	.pc-only-gl {
		display: none;
	}

	.banner-gl {
		/*background: url('/images/gl-t-p.png')!important;*/
		background: url('/images/fbs1.png')!important;
	}

	.banner-gl-2 {
		background: url('/images/sbs1.png')!important;   
	}

	.banner-gl-21 {
		background: url('/images/ban-gr.png')!important;
	}

	.banner-gl-32 {
		background: url('/images/sochi-b1.png')!important;
	}

	.banner-gl-33 {
		background: url('/images/33.png')!important;
	}

	.banner-gl-34 {
		background: url('/images/112.png')!important;
	}

	.banner-gl-35 {
		background: url('/images/114.png')!important;
	}

	.banner-gl-36 {
		background: url('/images/116.png')!important;
	}

	.banner-gl-37 {
		background: url('/images/118.png')!important;
	}

	.banner-gl-633 {
		background: url('/images/633.png')!important;
	}

	.banner-gl-22 {
		background: url('/images/bn-22.png')!important;
	}

	.banner-gl-4 {
		background: url('/images/cbs2.png')!important;
	}
	
	.banner-gl-3 {
		background: url('/images/tbs1.png')!important; 
	}

	.banner-gl-5 {
		background: url('/images/16n.png')!important; 
	}

	.banner-gl-6 {
		background: url('/images/19n.png')!important; 
	}

	.banner-gl-12 {
		background: url('/images/gl-12.png');
	}

    .banner-gl-53 {
		background: url('/images/53.png')!important;
	}

    .banner-gl-55 {
		background: url('/images/55.png')!important;
	}

	.banner-gl, .banner-gl-2, .banner-gl-3, .banner-gl-4, .banner-gl-5, .banner-gl-6, .banner-gl-12, .banner-gl-21, .banner-gl-22, .banner-gl-32, .banner-gl-33, .banner-gl-34, .banner-gl-35, .banner-gl-36, .banner-gl-37, .banner-gl-633, .banner-gl-53, .banner-gl-55 {
		background-size: cover!important;
	    background-repeat: no-repeat!important;
	    background-position: center!important;
	}

	.banner-gl h1, .banner-gl-12 h1 {
		text-align: left;
		font-size: 32px;
	}

	.table-mob-gl {
		background: #fff;
   		padding: 6px;
   		width: 300px;
   		border-radius: 10px;
	}
}

@media (min-width: 1100px) {
	.banner-text h1, .slide-hg {
		margin-bottom: 75px;
	}
}

@media (max-width: 1035px) {
	.ys-gl-bl {
		height: 120px;
	}

	.program-bl-gl {
		width: 100%;
		justify-content: space-around;
	}
}

@media (max-width: 960px) {
	.ys-gl-bl {
		width: 45%;
	}

	.form-gl-bg {
		background: #014c73!important;
	}

	.form-gl-content {
		width: 100%;
	}

	.form-gl-text {
		display: none;
	}

	.fm-nipt {
		background: #014c73;
	}

	.form-gl-content-p {
		text-align: center;
	}

	.form-gl-bg .white-bg {
		margin: 0 auto;
	}
}

@media (max-width: 900px) {
	
}

@media (max-width: 820px) {
	.vr-block {
		flex-wrap: wrap;
	}

	.vrach-gl {
		width: 100%;
		margin-bottom: 20px;
	}
}

@media (max-width: 620px) {
	.banner-gl .banner-text h1, .slide-hg {
		max-width: 475px;
		font-size: 34px;
	}

	.green-bg-nipt .right {
		text-align: left;
	}

}

@media (max-width: 550px) {
	.banner-gl .banner-text h1, .slide-hg {
		max-width: 300px;
	}
	.banner-gl .banner-text p {
		max-width: 300px;
	}

	.banner-gl .banner-text {
		position: relative;
	}

	.banner-gl .banner {
		height: 330px;
	}
}



.ys-gl-ct, .for-block-gl {
	font-size: 17px;
}


/* test head */
.test-h-cont {
	display: flex;
	justify-content: space-between;
    align-items: center;
}

.test-h-sec {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.test-h-pod {
	display: flex;
	align-items: center;
}

.test-h-pod svg {
	width: 20px;
}

.test-h-ad {
	width: 185px;
	font-size: 12px;
}

.test-h-20 {
	width: 20%;
}

.test-h-30 {
	width: 30%;
}

.test-h-35 {
	width: 35%;
}

.test-h-37 {
	width: 37%;
}

.test-h-40 {
	width: 40%;
}

.test-h-60 {
	width: 60%;
}

.text-h-66 {
	width: 66%;
}

.test-h-p {
	text-align: right;
	font-size: 12px;
}

.test-h-logo {
	flex-direction: column;
}

.test-h-logo p {
	margin-bottom: 2px;
}

.grn-bd-h {
	border: 1px solid #75bc20;
	border-radius: 5px;
}

.grn-bd-h .email-h-bl .search-container input {
	height: 34px;
}

.test-h-menu {
	display: flex;
    width: 60%;
    justify-content: space-evenly;
	font-size: 14px;
}

.test-h-cont-1 .test-h-60 a, .test-h-cont-1 .test-h-60 p {
	margin-left: 5px;
}

.test-h-menu a {
	transition: all .3s;
	outline: 0 !important;
	border-bottom: 1px solid transparent;
}

.test-h-menu a:hover {
	border-bottom: 1px solid;
    color: #75bc20;
}

.test-h-logo img {
	margin-bottom: 5px
}

.test-h-2r {
	display: flex;
	justify-content: flex-end;
}

@media (max-width: 960px) {
	.test-h-header {
		display: none;
	}
}

.email-h {
	margin-left: 5px;
}

.em-sv-g svg {
	width: 20px;
	fill: #67ae2f;
}

.email-h-bl {
	display: flex;
	justify-content: space-between;
	margin-bottom: 3px;
	margin-top: 20px;
	align-items: center;
}

.em-sv-g {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 5px;
}

.right-cont-l {
	display: flex;
	flex-direction: column;
}

.test-h-cont-2 {
	margin-top: 25px;
}

.sec-m-h .get-form {
	display: none;
}

.head-cont-l-a {
	display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.test-h-header70 {
	width: 75%;
}

.test-h-cont-2 .top_menu {
	height: initial!important;
}

.cl-h-n:before {
	content: '\e805';
}

.la-h-b:before {
	content: '\e815';
}

.cl-h-n:before, .la-h-b:before {
	color: #67ae2f;
	font-family: "arhimed";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    /* font-size: 120%; */
    -webkit-font-smoothing: antialiased;
}

.test-h-cont-1 {
    padding-bottom: 10px;
}

.head-s {
	-webkit-box-shadow: 0 5px 5px 0 rgb(227 227 227 / 75%);
    box-shadow: 0 5px 5px 0 rgb(227 227 227 / 75%);
}

.email-h-bl .search-block {
	width: 489px;
}

.h-b-g a {
	padding: 10px 33px;
    background-color: #75bc20;
    border: none;
    font-weight: bold;
    color: #fff;
    -webkit-box-shadow: 0 8px 18px 5px rgb(210 218 200 / 75%);
    box-shadow: 0 8px 18px 5px rgb(210 218 200 / 75%); 
    font-size: 14px;
    border-radius: 5px;
}

.h-b-g a:hover {
	background-color: #014c73;
    color: #fff;
}

.email-h-bl .search-container input {
	font-size: 13px;
	height: 30px;
    padding: 0 5px;
}

.email-h-bl .search-container input::before {
	content: '\1F50D';
}

.head-s {
	margin-top: 50px;
}

.head-cont-l-a {
	margin-bottom: 20px;
}

.email-h-bl .hint {
	display: none!important;
}

.email-h-bl #search-title {
	margin-top: 0!important;
}

.email-h-bl .grn-bg-h {
	background: #67ae2f;
    height: 40px;
    padding: 5px;
    border-radius: 8px;
}

.email-h-bl #catalog {
	padding: 0;
    margin-left: -140px;
    width: 215%;
}

.email-h-bl .search-block .icon-close {
	top: -15px; 
	right: -5px;
}


/* test head end */

/*sl mob*/
@media (max-width: 820px) {
	.vr-pc {
		display: none!important;
	}

	.vr-block-mob {
		display: initial!important;
	}
}

@media (min-width: 821px) {
	.vr-block-mob {
		display: none!important;
	}
}
/*sl mob end*/

.home__block_new:after {
	background: none!important;
}

.prot-sl {
	color: #014c73;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	font-weight: 100;
	font-size: 27px;
}


@media (min-width: 960px) {
	.m-h-mob {
		display: none;
	}

	.m-h-pc {
		display: block;
	}
}

@media (max-width: 960px) {
.m-h-mob {
	display: block;
}

.m-h-pc {
	display: none;
}
}

.container-nipt {
	width: 100%;
}

@media screen and (max-width: 960px) {
	.header {
		top: 39px;
	}
}

@media screen and (max-width: 550px) {
	.mobile-only-gl {
		/*margin-top: 113px;*/
	}

	.mobile-only-gl .banner-text h1, .mobile-only-gl .slide-hg {
		font-size: 20px;
		margin: 0 auto;
    	padding: 25px 0px;
	}

	.mobile-only-gl .banner-text {
		width: auto;

	}

	.mobile-only-gl .table-mob-gl {
		margin: 0 auto;
	}

	.mobile-only-gl .banner-text {
		padding: 5px;
	}

	.mobile-only-gl .banner-container {
		display: flex;
   	 	justify-content: center;
    	align-items: center;
	}
}

#mobile_menu_bg:after {
	top: 50px!important;
}

.m-h-pc {
	z-index: 5;
}

.whatsapp-m {
	bottom: 155px;
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: none!important;
    border: none;
}

.whatsapp-m img {
	background: none!important;
}

@media (max-width: 960px) {
	.wa {
		display: none;
	}

	.header {
		top: 0;
	}

	.whatsapp-m.active {
		bottom: 255px;
	} 
}

@media screen and (max-width: 375px) {
	.whatsapp-m.active {
		bottom: 270px;
	} 
}

@media screen and (max-width: 320px) {
	.whatsapp-m.active {
		bottom: 290px;
	} 
}

@media (min-width: 550px) and (max-width: 960px) {
	.mobile-only-gl {
		margin-top: 55px;
	}
}

@media (min-width: 960px) {
	.whatsapp-m {
		display: none;
	}
}

body {
	overflow-x:hidden;
}

.top_header .breadcrumb {
	margin-bottom: 0;
}

.detail_bg {
	display: none;
}

.page-content {
	margin-top: 0;
}

.img-al-c {
	width: 330px;
    height: 330px;
    display: block;
    margin: 0 auto;
}

.img-big-a-c {
	height: 330px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.item-preview {
	display: none;
}

.page_sub .top_header {
    margin-bottom: 0;
}

.gray_line {
	display: none;
}

.news-grn-btn {
	padding: 10px 33px;
    background-color: #75bc20;
    border: none;
    font-weight: bold;
    color: #fff;
    -webkit-box-shadow: 0 8px 18px 5px rgb(210 218 200 / 75%);
    box-shadow: 0 8px 18px 5px rgb(210 218 200 / 75%);
    font-size: 14px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
    max-width: 185px;
    text-align: center;
}

.news-grn-btn:hover {
	background-color: #014c73;
    color: #fff;
}

.wa {
	display: none!important;
}

@media (min-width: 960px) {
	.whatsapp-m img {
		height: 60px;
	}

	.whatsapp-m {
		position: fixed;
		right: 0;
		z-index: 99;
	}
}

.whatsapp-m {
	display: block!important;
}

.item-text a {
	color: #75bc20;
}


/* пцр */
.pcr-btn {
	position: initial;
}

.pcr-banner h1 {
	font-size: 48px;
	text-align: left;
	margin-bottom: 20px;
}

.pcr-banner .banner-text p {
	text-align: left;
	color: #014c73!important;
}

.banner-text-2 {
	text-align: left;
    display: flex;
    justify-content: space-evenly;
    font-size: 18px;
    padding: 5px;
    width: 100%;
    bottom: 0;
    /*position: absolute;*/
}

.pcr-b-bl {
	background: #f1f8e8;
    width: 250px;
    height: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-content: center;
    color: initial!important
}

.pcr-banner {
	background: url('/images/pcr-b.png');
	background-repeat: no-repeat;
	background-size: contain;
}

.pcr-banner .banner-text {
	display: flex;
	width: 100%;
}

.banner-pcr-img {
	background: url('/images/shield.png');
	width: 400px;
	height: 400px;
	background-repeat: no-repeat;
	background-size: contain;
}

.banner-pcr-txt {
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.pcr-v {
	margin-top: 30px;
    margin-bottom: 30px;
}

.pcr-v .variant {
	height: 415px;
	width: 40%;
}

.pcr-desc .green-bg-nipt {
	border-radius: 10px;
}

.pcr-desc {
	margin-top: 30px;
    margin-bottom: 30px;
}

.row-pcr {
	display: flex;
    justify-content: space-evenly;
    margin-bottom: 30px;
}

.pcr-parent p {
	width: 300px;
}

.pcr-bl-2 {
	background: url('/images/pcr2.png');
}

.pcr-bl-3 {
	background: url('/images/pcr3.png');
}

.pcr-bl-4 {
	background: url('/images/pcr4.png');
}

.pcr-bl-5 {
	background: url('/images/pcr7.png');
}

.pcr-bl-6 {
	background: url('/images/pcr6.png');
}

.pcr-bl {
	position: relative;
	width: 300px;
	height: 150px;
	text-align: left;
    font-size: 50px;
    font-weight: 600;
  
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-bottom: 15px;
}

.pcr-n {
	width: initial!important;
	position: absolute;
	font-weight: 600;
    color: #75bc20;
}

.pcr-parent a {
	width: 205px!important;
}

.pcr-40 {
	width: 40%!important;
}

.pcr-40-p {
	padding-left: 25px;
}

.pcr-20 {
	width: 20%;
}

.pcr-ant {
	align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    background: #f1f8e8;
    border-radius: 10px;
    padding: 20px 0px;
}

.pcr-cont-b {
	display: flex;
    justify-content: space-evenly;
}

.pcr-cont p {
	line-height: 1.5em;
}

.pcr-cont {
	border-radius: 10px;
	background: #f1f8e8;
    padding: 15px;
}

.pcr-bcg {
    margin-bottom: 30px;
}

.pcr-test-b {
	display: flex;
    justify-content: space-between;
}

.q-pcr {
	display: flex;
	justify-content: space-evenly;
	align-content: center;
}

.h-40 {
	height: 40px;
}

.q-pcr-p {
	display: flex;
    align-items: center;
}

.pcr-pol {
	width: 60%; 
	height: 22.1871px
}

/* мобильная версия pcr */
@media (max-width: 550px) {
	.pcr-banner {
		height: 285px;
	}

	.pcr-banner .banner-text {
		padding: 0;
	}

	.pcr-banner h1 {
		font-size: 30px;
	}

	.banner-pcr-img {
		width: 200px;
    	height: 200px;
	}

	.banner-text-2 {
		flex-wrap: wrap;
	}

	.pcr-b-m15 {
		margin-bottom: 15px;
	}

	.pcr-b-m30 {
		margin-bottom: 30px;
	}

	.pcr-b-m18 {
		margin-bottom: 18px;
	}

	.pcr-v .variant {
    	height: 100%;
    	width: 100%;
	}

	.pcr-v {
		flex-wrap: wrap;
	}

	.pcr-pol {
		width: 25%;
	}

	.row-pcr {
		flex-wrap: wrap;
	}

	.pcr-100m {
		width: 100%!important;
	}

	.pcr-30m {
		width: 30%!important;
	}

	.pcr-cont {
		width: 100%;
		border-radius: 0;
		display: flex;
  		flex-direction: column;
   		align-items: center;
	}

	.pcr-cont-b {
		flex-wrap: wrap;
	}

	.pcr-test-b {
		flex-wrap: wrap;
   		flex-direction: column;
	}

	.q-pcr {
		flex-wrap: wrap;
	}
}

/* планшетная версия */
@media (min-width: 550px) and (max-width: 1000px) {
	.banner-text-2 {
		flex-wrap: wrap;
	}

	.banner-pcr-img {
		width: 300px;
		height: 300px;
	}

	.pcr-banner h1 {
		font-size: 32px;
	}

	.pcr-banner {
		height: 385.5px;
	}
}

@media (min-width: 550px) and (max-width: 780px) {
	.pcr-b-m15 {
		margin-bottom: 15px;
	}

	.pcr-b-m30 {
		margin-bottom: 30px;
	}

	.row-pcr, .pcr-v {
		flex-direction: column;
    	align-content: center;
    	align-items: center;
	}

	.pcr-v .variant {
		height: 100%;
    	width: 60%;
	}

	.pcr-ant {
		flex-direction: initial;
		align-content: initial;
	}
}

.main_block .info_contacts {
display: none;
}

.banner-gl-5 h1, .banner-gl-6 h1 {
	font-size: 35px!important;
}

.vr-3-sec {
	position: absolute!important;
    bottom: -20px!important;
    left: -80px!important;
}

.vr-3-sec-c {
	position: relative!important;
}

.iga-banner {
	background: url('/images/igaban.png');
	background-repeat: no-repeat;
	background-size: contain;
}

.banner-pcr-img-iga {
	background: url('/images/shield2.png');
	width: 400px;
	height: 400px;
	background-repeat: no-repeat;
	background-size: contain;
}

.pcr-bl-mg {
	margin-bottom: 60px;
}

.iga-banner h1 {
	font-size: 36px!important;
	line-height: 1.2em!important;
}


@media (max-width: 1000px) {
	.iga-banner .banner-pcr-txt {
	justify-content: flex-start;
	}


}

@media (min-width: 550px) and (max-width: 1000px) {
	.banner-pcr-img-iga {
    width: 300px;
    height: 300px;
	}
}

@media (min-width: 550px) and (max-width: 1000px) {
	.iga-banner h1 {
		font-size: 30px!important;
	}
}

@media (max-width: 550px) {
	.banner-pcr-img-iga {
    width: 200px!important;
    height: 200px;
	}

	.iga-banner h1 {
		font-size: 26px!important;
	}

	.iga-banner {
		background: none;
		height: 100%!important;
		margin-bottom: 15px;
	}

	.vert-iga-pos {
		flex-direction: column;
    	align-content: center;
	}

	.vert-btn-iga .btn.btn-lg {
		min-width: 204px;
	}

	.variant-button.vert-btn-iga {
		position: initial!important;
	}

	.vert-iga-pos .pcr-100m {
		text-align: center;
    	padding: 5px 0px;
	}

	.iga-banner .banner-text {
		flex-direction: column;
    	align-items: center;
	}

	.banner-pcr-img-iga {
		background-position: center;
	}

	.pcr-ant.vert-iga-pos {
		padding: 20px 10px;
	}
}

.iga-sh {
	box-shadow: 0px 5px 10px 2px rgb(34 60 80 / 20%);
	background: #fff;
}

.cfff {
color: #fff!important;
}

.item-text .pcr-btn a {
 color: #fff!important;
}

.par-pcra {
	display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
}

.par-pcra-child {
	box-shadow: 0px 5px 10px 2px rgb(34 60 80 / 20%);
	width: 40%;
	height: 224px;
	padding: 15px 0 0 15px;
	text-align: left;
	background: url('/images/par-pcra-child.png');
	background-repeat: no-repeat;
    background-size: cover;
}


.par-pcra-child-1 {
	background: url('/images/par-pcra-child-1.png');
}
.par-pcra-child-2 {
	background: url('/images/par-pcra-child-2.png');
}
.par-pcra-child-3 {
	background: url('/images/par-pcra-child-3.png');
}
.par-pcra-child-4 {
	background: url('/images/par-pcra-child-4.png');
}
.par-pcra-child-5 {
	background: url('/images/par-pcra-child-5.png');
}
.par-pcra-child-6 {
	background: url('/images/par-pcra-child-6.png');
}


.par-pcra-child-1,.par-pcra-child-2,.par-pcra-child-3,.par-pcra-child-4,.par-pcra-child-5,.par-pcra-child-6 {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom right;
	height: 100%;
	width: 100%;
	position: relative;
}

.variant-par {
	position: absolute;
}

.par-pcra-banner {
	background: url('/images/par-pcra-banner.png');
}

.par-pcra-banner-2 {
	background: url('/images/par-pcra-banner-2.png');
	height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
}

.par-pcra-banner h1 {
	text-align: left;
    font-size: 48px;
    max-width: 100%;
}

.par-pcra-banner p {
	text-align: left;
}

@media (max-width: 1000px) {
	.par-pcra {
		flex-direction: column;
		margin-bottom: 0;
	}

	.par-pcra-child {
		width: 100%;
		background-size: cover;
		margin-bottom: 20px;
	}
}

.only-text-sh {
	padding: 20px;
}

.only-text-sh .block-title {
	margin-top: 0px;
}

.only-text-sh .descr {
	padding: 0 10px;
	font-size: initial;
}

.lh-sh p {
	line-height: initial!important;
}

.p25r {
	padding-right: 25px;
	padding-left: 25px;
}

.m0sh {
	margin-bottom: 0;
	background: #fff;
}

.pcr-30 {
	width: 30%;
}

.sh-ban {
	background: url('/images/shshsh1.png')!important;
	background-size: cover;
}

.sh-ban .par-pcra-banner-2 {
	background: url('/images/shshsh2.png');
}

.init-lh h1, .init-lh h2, .init-lh h3, .init-lh p, .init-lh li {
	line-height: initial;
}

.init-lh .banner-text p {
	color: #014c73!important;
}

.akc-sh {
	font-size: 20px;
    color: #75bc20;
}

.banner-gl-8 {
	background: url('/images/sbs8.png')!important;   
	background-size: cover!important;
}

.vr-img-8 {
	background: url('/images/tbs8.png');
    height: 100%;
    position: absolute;
    width: 100%;
    background-repeat: no-repeat;
}

.menu-item:first-child {
	font-weight: 600!important;
}

.telegram-m {
	bottom: 220px;
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: none!important;
    border: none;
}

.telegram-m img {
	background: none!important;
}

@media (max-width: 960px) {
	.telegram-m.active {
		bottom: 320px;
	} 
}

@media screen and (max-width: 375px) {
	.telegram-m.active {
		bottom: 340px;
	} 
}

@media screen and (max-width: 320px) {
	.telegram-m.active {
		bottom: 335px;
	} 
}

@media (min-width: 960px) {
	.telegram-m {
		display: none;
	}
}

@media (min-width: 960px) {
	.telegram-m img {
		height: 60px;
	}

	.telegram-m {
		position: fixed;
		right: 0;
		z-index: 99;
	}
}

.telegram-m {
	display: block!important;
}

.vrach-gl .price-nipt {
    padding-top: 0px;
    padding-bottom: 0px;
}

.at-svc-facebook, .at-svc-twitter, .icon-instagram, .icon-facebook {
display: none!important;
}

.ys-gl-bl a {
	display: block;
    text-align: center;
    height: 100%;
}

.us-r-c {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.us-img img {
	height: 70px;
}

.us-c {
	display: flex;
    flex-direction: column;
    align-items: center;
}

.us-r-c a {
	width: 11.6%;
	box-shadow: 0px 5px 10px 2px rgb(34 60 80 / 20%);
}

.us-r-c a:hover {
	background: #f0f0f0;
}

.us-r-c p {
	text-align: center;
	margin: 15px 0!important;
	font-size: 15px!important;
	line-height: 20px!important;
}

.us-img {
	padding-top: 10px;
}

@media screen and (max-width: 960px) {
.page_sub .page-inner::after {
	display: none!important;
}
}

.programs {
	width: auto!important;
    position: absolute!important;
    left: 0!important;
	margin-left: 0!important;
}

.programs li a {
	font-weight: initial!important;
}

.mg-none p {
margin: 0!important;
}

.mg-none ul {
margin: 0px 20px 0px!important;
}

.map_dark {
	color: #333435;
}

.map_logo {
	width: 300px;
    margin: 0 auto;
}

.region_active {
	font-weight: bold;
    text-decoration: underline;
}


.footer_item img {
	width: 200px;
}

/* модальные окна (всплывающие окна, попап) */


/* Всплывающее окно 
* при загрузке сайта            
*/
/* базовый контейнер, фон затемнения*/
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999;
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
    overflow: auto;
}
/* модальный блок */
.popup {
    top: 25%;
    left: 0;
    right: 0;       
    font-size: 14px;
    margin: auto;
    width: 85%;
    min-width: 320px;
    max-width: 600px;
    position: absolute;
    padding: 15px 20px;
    border: 1px solid #383838;
    background: #fefefe;
    z-index: 1000;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    font: 14px/18px 'Tahoma', Arial, sans-serif;
    -webkit-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -moz-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -ms-box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    box-shadow: 0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
}
/* заголовки в модальном блоке */
.popup h2, .popup h3 {
    margin: 0 0 1rem 0;
    font-weight: 300;
    line-height: 1.3;
    color: #009032;
    text-shadow: 1px 2px 4px #ddd;
}
/* кнопка закрытия */
.close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    position: absolute;
    border: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(0, 131, 119, 0.9);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    outline: none;

}
.close:before {
    color: rgba(255, 255, 255, 0.9);
    content: "X";
    font-family:  Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    text-shadow: 0 -1px rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
/* кнопка закрытия при наведении */
.close:hover {
    background-color: rgba(252, 20, 0, 0.8);
}
/* изображения в модальном окне */
.popup img {
    width: 100%;
    height: auto;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
/* миниатюры изображений */
.pl-left,
.pl-right {
    width: 25%;
    height: auto;
}
/* миниатюры справа */
.pl-right {
    float: right;
    margin: 5px 0 5px 15px;
}
/* миниатюры слева */
.pl-left {
    float: left;
    margin: 5px 18px 5px 0;
}
/* анимация при появлении блоков с содержанием */
@-moz-keyframes fade {
    from { opacity: 0; }
    to { opacity: 1 }
}
@-webkit-keyframes fade {
    from { opacity: 0; }
    to { opacity: 1 } 
}
@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1 }
}


/* модальные окна (всплывающие окна, попап) end */

.region_buttons {
	display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {
	.region_buttons	{
		justify-content: center;
	}
}

.popup p {
	font-size: 16px;
	margin-bottom: 15px;
}

.region_buttons .btn {
	width: 256px!important;
}

.small-gray-text {
	font-size: 12px!important;
    margin-bottom: 15px;
    color: #898989;
    text-align: left;
    margin-top: 15px;
}

.for-fl-gl {
	display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}

.sochi-m-logo img {
	height: 33px!important;
}

@media (min-width: 1199px) {
	.head-s {
		margin-top: 30px!important;
	}
}

.city-name p {
margin-bottom: 4px;
}

.usl-news a {
color: #fff;
}

.page_sub .page-content li {
	list-style: initial;
	margin-left: 35px;
}

.page_sub .page-content li p {
 margin: 0!important;
}

/* Новая шапка стили */
.header-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.sec-m-h .flex-end {
    justify-content: space-between;
}
.search-header {
    margin-bottom: 0;
    margin-top: 0;
}
.email-h-bl .search-container input {
    height: 50px;
    font-size: 15px;
    width: 90%;
    margin-left: 35px;
}
.email-h-bl .search-container {
    position: relative;
}
.email-h-bl .search-container::before {
    content: url(/images/search-new-30.png);
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 5px;
    top: 10px;
}
.h-b-g a {
    font-size: 16px;
    text-transform: uppercase;
}
.sec-m-h .top_menu li.menu-item {
    margin-right: 0;
}
.test-h-p {
    text-align: left;
    margin-left: 5px;
}
.test-h-pod a {
    margin-left: 5px;
}
.city-name p, .test-h-p, .test-h-ad {
    font-size: 14px;
    line-height: 1.2em;
}
.lk-header {
    margin-left: 8px;
    font-size: 14px;
    line-height: 1.2em;
}
.phone-header {
    font-size: 20px;
}
.h-b-g a {
    background: #9DC458;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%), 4px 4px 26px rgb(32 55 56 / 13%);
    border-radius: 15px;
    padding: 15px 33px;
}
.head-s {
    background: #FFFEFE;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.page_sub .top_cart {
    color: #fff!important;
    width: 2em!important;
    height: 2em!important;
    background: url(/images/cart-new.png)!important;
    background-size: contain!important;
    border-radius: 0!important;
}
.top_cart {
    color: #fff!important;
    width: 2em!important;
    height: 2em!important;
    background: url(/images/cart-new.png)!important;
    background-size: contain!important;
    border-radius: 0!important;
}
.top_cart:after {
    top: -6px;
    right: 0px;
}
.icon-cart:before {
    content: none;
}
.m-h-pc {
	margin-bottom: 35px;
}
.sec-m-h {
	margin-top: 15px;
}
.grn-bd-h {
	border: 2px solid #9DC458;
	border-radius: 5px;
}
.page_sub .top_menu {
    height: inherit!important;
}

.lzgl {
    margin-bottom: 25px;
}

.lzgl img {
	max-width: 250px;
    border: 1px solid #75bc20;
}

.lzgl-c {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.display-flex {
    display: flex;
}

.justify-content-space-between {
    justify-content: space-between;
    flex-wrap: wrap;
}

/* footer */

.contact-block {
	display: flex;
	flex-direction: column;
	gap: 5vh;
}

.contact-block__buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2vh;
}

.contact-block__element {
	background: linear-gradient(105.8deg, #EDEDED -0.02%, #FFFFFF 107.54%);
	box-shadow: -8px -8px 11px rgba(255, 255, 255, 0.85), 4px 4px 26px rgba(32, 55, 56, 0.13);
	border-radius: 5px;
	width: 49%;
	padding: 15px 0;
}

.contact-block__time {
	width: 100%;
}

.contact-block__trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact-block__trust1, .contact-block__trust2, .contact-block__trust3, .contact-block__trust4 {
	max-width: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-block__trust img {
	max-width: 100%;
	max-height: 116px;
}

.footer-bcg {
	background: #F2FBE2;
}

.footer .row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.footer__style {
	padding: 30px 0 80px;
	background-color: #F2FBE2;
	font-size: 14px;
	text-align: left;
}

.footer__style h4 {
	font-size: 20px;
}

.footer__style a:hover {
	text-decoration: underline;
	transition: .1s;
}

.sitemap, .services-column, .contact-list, .social-media {
	max-width: 25%;
}

.aplications, .paid {
	display: flex;
	gap: 1vw;
}

.contact-list__row div {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	align-items: center;
	margin: 5px 0;
}

.contact-list__row div img {
	max-width: 30px;
	max-height: 30px;
}

.social-flex {
	display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
}

.social-flex img {
	max-height: 50px;
	max-width: 50px;
}

.social-media {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.footer__text-column1, .footer__text-column2 {
	max-width: 45%;
}

.warning__footer, .additional__block-element {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 5px 0;
}

.warning__footer img {
	max-width: 50px;
}

.additional__block-element img {
	max-width: 35px;
}

.additional__block-element strong {
	text-decoration: underline;
}

.footer__warning {
	color: #9DC458;
  font-size: 25px;
  line-height: 46px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer__copyright-block {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	gap: 15px;
}

.footer__logo img {
	max-height: 31px;
}

.contact-block__element {
	display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.contact-block__element img {
	max-width: 30px;
	max-height: 30px;
}

@media screen and (max-width: 960px) {
	.contact-block__element {
		width: 100%;
	}

	.contact-block .h-b-g, .contact-block__trust, .sitemap, .services-column, .contact-list {
		display: none;
	}

	.social-media {
		max-width: 100%;
	}

	.social-block .social-flex {
		justify-content: space-evenly;
	}

	.footer__text-column1, .footer__text-column2 {
		max-width: 100%;
	}

	.footer__warning {
		margin-top: 15px;
		text-align: center;
		font-size: 1rem;
		line-height: 1rem;
	}

	.footer__copyright-block {
		flex-direction: column-reverse;
		margin-top: 15px;
	}

	.footer__copyright {
		font-size: 1.2rem;
	}
}
/* footer end */

.youtube-m {
	bottom: 285px;
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: none!important;
    border: none;
}

.youtube-m img {
    background: #fff;
    border-radius: 50%;
}

@media (min-width: 960px) {
	.youtube-m img {
		height: 60px;
	}

	.youtube-m {
		position: fixed;
		right: 0;
		z-index: 99;
	}
}

.youtube-m {
    display: block!important;
}

body .swiper-pagination-bullet {
	width: 20px;
	height: 20px;
}

body .swiper-pagination-bullet {
	width: 20px;
	height: 20px;
	display: inline-block;
	border-radius: 100%;
	border: 2px solid #9DC458;
	background: none;
	opacity: initial;
	margin: 0 5px;
}

body .swiper-pagination-bullet-active {
	background: #9DC458;
}

body .swiper-button-prev {
	background-image: url(/images/aleft.png);
}
body .swiper-button-next {
	background-image: url(/images/aright.png);
}

body .swiper-button-next, body .swiper-button-prev {
	width: 50px;
	height: 50px;
	background-size: 50px 50px;
}

html body .swiper-button-next::after {
	content: none!important;
}

html body .swiper-button-prev::after {
	content: none!important;
}

.region_buttons {
	flex-direction: column;
	gap: 15px;
}

.popup .small-gray-text {
	text-align: center;
}

/* мобильный хедер */
@media (max-width: 960px) {
	.top_submenu img {
		filter: none;
	}

	.top_submenu {
		padding: 0px 0 15px 0;
	}

	.test-h-pod {
		justify-content: center;
	}

	.test-h-ad {
		width: auto;
	}

	.mobile_header_section {
		display: flex;
		justify-content: space-around;
    flex-wrap: wrap;
	}

	.mobile_header_submenu {
		gap: 15px;
	}

	.city-name {
		background: #ededed;
    padding: 15px;
	}

	.city-name_mobile {
		display: flex;
    justify-content: center;
    gap: 10px;
	}

	.city-name a {
		padding: 10px;
		background: #9DC458;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%), 4px 4px 26px rgb(32 55 56 / 13%);
    border-radius: 15px;
    color: #fff;
		font-size: 15px;
	}

	.city-name .region_active {
		background: #ff414c;
	}

	.top_menu {
		top: 150px!important;
		padding: 10px 40px 0px 40px;
		border-top: 2px solid #FF414C;
		border-bottom: 2px solid #FF414C;
		height: auto!important;
    max-height: 300px;
	}

	.top_menu li.menu-item {
		font-size: 15px;
		margin-bottom: 10px!important;
	}

	.top_menu li.menu-item:last-child {
		margin-top: 0!important;
	}

	.menu-switch:checked ~ .switch {
		position: static!important;
	}

	.top_menu li.root > ul {
		padding: 0 15px!important;
		list-style: none;
	}

	.top_menu li.root > ul li {
		padding: 5px 15px!important;
		font-size: 15px!important;
	}

	.top_menu li.root > ul li::before {
		content: "";
    width: 10px;
    height: 10px;
    border: 3px solid #9DC458;
    border-radius: 80px;
    position: absolute;
    left: 0;
    top: 9px;
	}

	.top_menu ul.flex-column-mobile {
		list-style: none;
	}

	.top_logo {
		left: 0;
    right: 0;
    margin-left: 0px;
	}

	.page_sub .top_submenu {
		padding: inherit!important;
	}

	.page_sub .top_logo {
		top: -5px!important;
    line-height: inherit!important;
	}

	.page_sub .header {
		height: 60px!important;
	}

	.page_sub .top_menu {
		margin-top: 0!important;
		top: 185px!important;
	}

	.page_sub .mobile_header_section {
		padding-bottom: 10px;
	}

	.top_submenu, .top_menu {
		background: #fff!important;
	}

	.top_submenu, .top_menu {
	    width: 100%;
    	left: 0!important;
    	right: 0!important;
	}
}

@media (max-width: 380px) {
	.mobile_header_section {
		flex-direction: column;
		gap: 10px;
	}

	.top_menu {
		top: 210px!important;
	}
}
/* мобильный хедер end */

.bnkkt {
	background: url(/images/bnkkt.png)!important;
	background-size: cover!important;
	background-position: bottom!important;
}

.bnkkt .table-mob-gl {
background: none!important;
}

.bnkkt .table-mob-gl {
    text-align: left!important;
}

.price table {
	width: 100%;
	border-collapse: collapse;
	-webkit-box-shadow: 0 5px 10px 5px rgba(245, 245, 245, .75);
	box-shadow: 0 5px 10px 5px rgba(245, 245, 245, .75);
}

.price table {
	border-collapse: initial;
	border-spacing: 0 20px;
	box-shadow: none;
}

.price tr {
	background: linear-gradient(105.8deg, #EDEDED -0.02%, #FFFFFF 107.54%);
	box-shadow: -8px -8px 11px rgba(255, 255, 255, 0.85), 4px 4px 26px rgba(32, 55, 56, 0.13);
	border-radius: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.price table tr:nth-child(odd) {
	background-color: #f1f8e8;
}

.price table td {
	padding: 20px 15px;
}

.price table td:nth-child(2n) {
	color: #7B9E45;
	font-weight: bold;
	font-size: 1.7rem;
}

@media screen and (max-width: 960px) {
	.price {
			margin: 0;
	}
}

@media screen and (max-width: 480px) {
	.price tr {
			background: linear-gradient(105.8deg, #EDEDED -0.02%, #FFFFFF 107.54%);
			box-shadow: -8px -8px 11px rgba(255, 255, 255, 0.85), 4px 4px 26px rgba(32, 55, 56, 0.13);
			border-radius: 15px;
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 15px;
	}
}

@media screen and (max-width: 480px) {
	.price table td {
			padding: 20px 15px;
	}
}

.uslugi .item-desc {
display: none;
}