@charset "UTF-8";
/* NEW MAIN PAGE */
/* Owl Carousel - Core */
.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden;
	/* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
	background: none;
	color: inherit;
	border: none;
	padding: 0 !important;
	font: inherit;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

/* No Js */
.no-js .owl-carousel {
	display: block;
}

/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* 	Owl Carousel - Auto Height Plugin */
.owl-height {
	-webkit-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

/* 	Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item {
	/**
  This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  calculation of the height of the owl-item that breaks page layouts */
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
	max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

/* 	Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url(images/owl.video.play.png) no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: -webkit-transform 100ms ease;
	transition: -webkit-transform 100ms ease;
	-o-transition: transform 100ms ease;
	transition: transform 100ms ease;
	transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transform: scale(1.3, 1.3);
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

/* 	Default theme - Owl Carousel CSS File */
.owl-theme .owl-nav {
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
	color: #FFF;
	font-size: 14px;
	margin: 5px;
	padding: 4px 7px;
	background: #D6D6D6;
	display: inline-block;
	cursor: pointer;
	border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
	background: #869791;
	color: #FFF;
	text-decoration: none;
}

.owl-theme .owl-nav .disabled {
	opacity: 0.5;
	cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
	margin-top: 10px;
}

.owl-theme .owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #D6D6D6;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity 200ms ease;
	-o-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: #869791;
}

.b-assortment-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto;
	font-family: "rotonda";
}

.b-assortment-top__title {
	display: block;
	font-size: 2.8em;
	font-weight: bold;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	margin-top: 60px;
}

@media print, screen and (min-width: 40em) {
	.b-assortment-top__title {
		margin-top: 0;
		font-size: 3.2em;
	}
}

.b-assortment-top__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.b-assortment-top__item {
	margin: 10px;
	position: relative;
	width: calc(100% / 1 - 20px);
	text-align: center;
}

@media print, screen and (min-width: 40em) {
	.b-assortment-top__item {
		width: calc(100% / 2 - 24px);
		margin: 12px 12px 0;
	}
}

@media print, screen and (min-width: 64em) {
	.b-assortment-top__item {
		width: calc(100% / 4 - 52px);
		margin: 0 20px;
	}
}

.b-assortment-top__item-link {
	text-decoration: none;
	font-size: 1.5em;
	color: #005EB8;
	font-family: "rotonda";
	text-align: center;
	display: inline-block;
}

.b-assortment-top__item-title {
	position: absolute;
	top: 0;
	left: auto;
	right: auto;
	display: inline-block;
	width: 100%;
	padding: 0 10%;
}

.b-assortment-top__item-img {
	max-width: 100%;
	width: 449px;
}

.b-assortment-top__info {
	display: none;
	width: 100%;
	color: #00A0DC;
	max-width: 1800px;
	margin: 0 auto;
}

@media print, screen and (min-width: 64em) {
	.b-assortment-top__info {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 60px auto 0;
	}
}

.b-assortment-top__info-title {
	width: 30%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: left;
	font-size: 1.5em;
}

.b-assortment-top__info-item-title {
	font-style: italic;
}

.b-assortment-top__info-items {
	width: 70%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.b-assortment-top__info-item {
	width: calc(100% / 3);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 25px;
	text-align: left;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.b-assortment-top__info-item-img {
	margin-left: 50px;
	width: 114px;
	height: 114px;
}

.b-assortment-top__info-item-img--per {
	width: 137px;
}

.b-faq-baby-care {
	background-image: url(images/bg-faq-baby-care.png);
	background-size: cover;
	background-position-x: center;
	background-position-y: top;
	background-repeat: no-repeat;
	min-height: 1040px;
}

.b-faq-baby-care__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 100%;
	font-family: "rotonda";
}

@media screen and (min-width: 90em) {
	.b-faq-baby-care__container {
		width: 90rem;
	}
}

.b-faq-baby-care__title {
	display: block;
	font-size: 3.2em;
	font-weight: bold;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	margin: 60px 0;
	font-family: "rotonda";
}

.b-faq-baby-care__faq {
	width: 90%;
	margin: 160px auto 0;
	position: relative;
}

@media print, screen and (min-width: 64em) {
	.b-faq-baby-care__faq {
		width: 30%;
		margin-left: 20%;
		margin-top: 185px;
	}
}

.b-faq-baby-care__faq-items {
	width: 100%;
	height: auto;
}

.b-faq-baby-care__faq-item {
	height: auto;
	width: 100%;
	text-align: right;
	margin-bottom: 40px;
	padding: 1px;
}

.b-faq-baby-care__faq-item-question {
	text-align: left;
	height: auto;
	width: 100%;
	border: 1px solid #005EB8;
	border-radius: 20px;
	padding: 35px 30px;
	position: relative;
	margin-bottom: 30px;
}

.b-faq-baby-care__faq-item-question::before {
	content: '';
	position: absolute;
	left: 20px;
	top: 100%;
	height: 30px;
	width: 20px;
	background-image: url(images/arrow.svg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	margin-top: 0;
}

.b-faq-baby-care__faq-item-title {
	font-size: 1.5em;
	color: #005EB8;
	font-weight: bold;
	margin-bottom: 15px;
}

.b-faq-baby-care__faq-item-text {
	color: #00A0DC;
	font-style: italic;
}

.b-faq-baby-care__faq-item-btn {
	background: #00A0DC;
	border-radius: 20px;
	padding: 10px 50px;
	font-family: "rotonda";
	line-height: 1;
	font-size: 1.15em;
	color: #fff;
	font-weight: bold;
	margin-top: -25px;
	border: none;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid #00A0DC;
}

.b-faq-baby-care__faq-item-btn:hover {	
	background-color: #fff;
	color: #00A0DC;
}

.b-faq-baby-care .owl-carousel .owl-nav button.owl-prev, .b-faq-baby-care .owl-carousel .owl-nav button.owl-next, .b-faq-baby-care .owl-carousel button.owl-dot {
	padding: 5px !important;
	color: #005EB8;
	font-size: 2em;
}

.b-faq-baby-care .owl-nav .owl-next, .b-faq-baby-care .owl-nav .owl-prev {
	display: inline-block;
	position: absolute;
	top: 100%;
	margin: 0;
}

.b-faq-baby-care .owl-nav .owl-prev {
	right: 55px;
}

.b-faq-baby-care .owl-nav .owl-next {
	right: 20px;
}

.b-index-news {
	background-image: url(images/bg-main-page.png);
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: top;
	background-size: cover;
	margin-top: 70px;
	position: relative;
}

.b-index-news:after {
	position: absolute;
	width: 100%;
	height: 100px;
	background-color: #F5F5F5;
	background-image: url(images/bg-main-page-bottom.png);
	background-repeat: no-repeat;
	background-position-y: -50px;
	background-size: cover;
	content: '';
	display: block;
	bottom: 0;
}

@media screen and (max-width: 1023px) {
	.b-index-news {
		margin-top: 0;
	}
}

@media screen and (max-width: 600px) {
	.b-index-news {
		margin-top: 90px;
		background-size: inherit;
	}
}

.b-index-news__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 100%;
	font-family: "rotonda";
}

@media screen and (min-width: 90em) {
	.b-index-news__container {
		width: 90rem;
	}
}

.b-index-news__title {
	display: block;
	font-size: 3.2em;
	font-weight: bold;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	margin: 90px 0 70px;
}

.b-index-news__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	color: #005EB8;
}

.b-index-news__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: calc(100% / 1 - 20px);
	margin: 0 10px;
}

@media print, screen and (min-width: 40em) {
	.b-index-news__item {
		width: calc(100% / 2 - 24px);
		margin: 0 12px;
	}
}

@media print, screen and (min-width: 64em) {
	.b-index-news__item {
		width: calc(100% / 4 - 52px);
		margin: 0 21px;
	}
}

.b-index-news__item-img {
	max-width: 100%;
	max-height: 100%;
	border: none;
	margin: 0 auto;
}

.b-index-news__item-title {
	display: inline-block;
	color: #005EB8;
	text-transform: uppercase;
	font-size: 1.5em;
	letter-spacing: 0.24px;
	text-decoration: none;
	margin: 28px 0 25px;
}

.b-index-news__item-title:hover {
	text-decoration: underline;
}

.b-index-news__item-text {
	display: inline-block;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-size: 1em;
	font-style: italic;
	letter-spacing: 0.16px;
	overflow: hidden;
	margin: 0 0 34px;
}

.b-index-news__item-date {
	display: inline-block;
	color: #005EB8;
	text-transform: uppercase;
	font-size: 1.4em;
	letter-spacing: 0.24px;
	margin: 0 0 50px;
}

.b-ingredients-about {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: -100px;
}

.b-ingredients-about__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 100%;
	font-family: "rotonda";
}

@media screen and (min-width: 90em) {
	.b-ingredients-about__container {
		width: 90rem;
	}
}

.b-ingredients-about__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	width: 100%;
	height: 500px;
}

@media print, screen and (min-width: 64em) {
	.b-ingredients-about__item {
		width: 50%;
		height: 500px;
	}
}

.b-ingredients-about__item--ingredients .b-ingredients-about__item-semicircle {
	right: 0;
}

.b-ingredients-about__item--about .b-ingredients-about__item-semicircle {
	left: 0;
}

.b-ingredients-about__item-content {
	position: relative;
	z-index: 1;
	width: 90%;
	height: 100%;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
}

@media print, screen and (min-width: 70em) {
	.b-ingredients-about__item--about .b-ingredients-about__item-content {
		margin: 0 auto 0 250px;
	}
}

@media print, screen and (min-width: 40em) {
	.b-ingredients-about__item-content {
		width: 70%;
	}
}

.b-ingredients-about__item-more, .b-ingredients-about__item-title, .b-ingredients-about__item-text {
	width: 100%;
}

.b-ingredients-about__item-title {
	margin-top: 40px;
	color: #005EB8;
	font-family: "rotonda";
	font-size: 1.8rem;
	font-weight: 400;
	text-transform: uppercase;
}

@media print, screen and (min-width: 40em) {
	.b-ingredients-about__item-title {
		font-size: 2.3rem;
	}
}

.b-ingredients-about__item-text {
	color: #005EB8;
	font-family: "rotonda";
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 47.05px;
	letter-spacing: 0.28px;
	margin: 30px 0;
}

@media print, screen and (min-width: 40em) {
	.b-ingredients-about__item-text {
		margin: 40px 0;
		font-size: 2rem;
	}
}

@media print, screen and (min-width: 64em) {
	.b-ingredients-about__item-text {
		font-size: 2.5rem;
		margin: 70px 0;
	}
}

.b-ingredients-about__item-more-btn {
	font-family: "rotonda";
	font-size: 17px;
	font-weight: 400;
	line-height: 30px;
	color: #00A0DC;
	border-radius: 20px;
	border: 1px solid #00A0DC;
	padding: 9px 31px;
	text-decoration: none;
	text-transform: none;
	transition: all 0.3s ease;
}
a.b-ingredients-about__item-more-btn:hover {
    color: white;
    background-color: #00A0DC;
}

.b-ingredients-about__item-semicircle {
	z-index: 0;
	position: absolute;
	top: 0;
}

.b-header-contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 30%;
	-webkit-box-align: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
}

@media screen and (max-width: 1100px) {
	.b-header-contacts {
		width: 50%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		justify-content: flex-end;
	}
}

@media screen and (max-width: 1480px) {
	.b-header-contacts {
		width: 40%;
	}
}

.b-header-contacts__phone {
	display: block;
	width: 65%;
}

.b-header-contacts__phone::before, .b-header-contacts__phone::after {
	display: table;
	content: ' ';
}

.b-header-contacts__phone::after {
	clear: both;
}

@media screen and (max-width: 1302px) {
	.b-header-contacts__phone {
		width: 60px;
	}
}

.b-header-contacts__phone-call {
	display: inline-block;
	float: left;
}

.b-header-contacts__phone-img {
	width: 60px;
	height: 60px;
}

@media screen and (max-width: 560px) {
	.b-header-contacts__phone {
		margin-right: 10px;
	}
	.b-header-contacts__phone-img {
		width: 50px;
		height: 50px;
	}
}

.b-header-contacts__text, .b-header-contacts__number {
	padding: 3px 0 0 70px;
	display: block;
}

@media screen and (max-width: 1302px) {
	.b-header-contacts__text, .b-header-contacts__number {
		display: none;
	}
}

.b-header-contacts__text {
	font-size: 1rem;
	margin-top: 8px;
}

.b-header-contacts__number {
	font-size: 1.5rem;
}

.b-header-contacts__social {
	display: block;
	width: 35%;
}

@media screen and (max-width: 1302px) {
	.b-header-contacts__social {
		width: calc(100% - 60px);
	}
}
@media screen and (max-width: 1100px) {
	.b-header-contacts__social {
		width: 35%;
	}
}

@media screen and (max-width: 560px) {
	.b-header-contacts__social {
		display: none;
	}
}

.b-header-contacts__social-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0;
}

@media screen and (max-width: 1302px) {
	.b-header-contacts__social-list {
		padding: 0;
	}
}

.b-header-contacts__social-item {
	margin: 0 18px;
}

.b-header-contacts__social-item:first-child {
	margin-left: 0;
}

.b-header-contacts__social-item:last-child {
	margin-right: 0;
}

.b-header-contacts__social-icon {
	background-image: url(images/social-green.png);
	background-repeat: no-repeat;
	display: inline-block;
	width: 31px;
	height: 31px;
}

.b-header-contacts__social-icon--instagramm {
	background-position-x: 0;
	background-position-y: 0;
}

.b-header-contacts__social-icon--facebook {
	background-position-x: -67px;
	background-position-y: 0;
}

.b-header-contacts__social-icon--vk {
	background-position-x: -133px;
	background-position-y: 0;
}
.b-header-contacts__social-icon--vk__new {
	background-image: url(images/vk.svg);
	background-size: contain;
	width: 60px;
	height: 60px;
}
.slider-top {
	position: relative;
}

.slider-top__ext-img {
	display: block;
	position: absolute;
	max-width: 890px;
	bottom: -100px;
	right: -120px;
}

@media screen and (max-width: 1024px) {
	.slider-top__ext-img {
		display: none !important;
	}
}

.main-sldr__img-container, .main-sldr .slick-track .slick-slide {
	min-height: 900px !important;
	height: auto !important;
}

@media screen and (max-width: 1024px) {
	.main-sldr__img-container, .main-sldr .slick-track .slick-slide {
		min-height: 500px !important;
		height: 500px !important;
	}
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

ul,
li {
	padding: 0;
	margin: 0;
}

li {
	list-style: none;
}

body {
	font-family: 'Arial';
	color: #005EB8;
}

h1,
h2,
h3 {
	font-family: 'Rotonda';
}

@media screen and (max-width: 1300px) {
	body {
		font-size: 16px;
	}
}

html,
body {
	height: auto;
	min-height: 100%;
}

.wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: auto;
	min-height: 100%;
	overflow: hidden;
	max-width: 100%;
}

.content {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}

.footer {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

input {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

input:focus::-webkit-input-placeholder {
	color: transparent;
}

input:focus:-ms-input-placeholder {
	color: transparent;
}

input:focus::-ms-input-placeholder {
	color: transparent;
}

input:focus::placeholder {
	color: transparent;
}

@font-face {
	font-family: 'Rotonda';
	src: url("css/fonts/RotondaC-Bold.otf");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'Rotonda';
	src: url("css/fonts/RotondaC.otf");
	font-weight: normal;
	font-style: normal;
}

.content {
	padding-top: 120px;
	/*background: -o-linear-gradient(top, rgba(232, 246, 249, 0), #e8f6f9 600px), url("images/content-pattern-bg.png") left top repeat #e8f6f9;*/
	/*background: linear-gradient(to bottom, rgba(232, 246, 249, 0), #e8f6f9 600px), url("images/content-pattern-bg.png") left top repeat #e8f6f9;*/
	background-color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	padding-bottom: 60px;
}

@media screen and (max-width: 1100px) {
	.content {
		padding-top: 135px;
	}
}

@media screen and (max-width: 600px) {
	.content {
		padding-top: 80px;
	}
}

.btn {
	display: inline-block;
	padding: 0 2.6em;
	font-size: 1em;
	line-height: 2.5em;
	background: transparent;
	color: #fff;
	border: 1px solid transparent;
	border-radius: 20px;
	text-decoration: none;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	font-weight: normal;
	letter-spacing: 0.5px;
	cursor: pointer;
}

.btn_turq {
	border-color: #00A0DC;
	background: #00A0DC;
}

.btn_turq:hover {
	background: transparent;
	color: #00A0DC;
}

.btn_yell {
	background: #00A0DC;
}

.btn_yell:hover {
	background: #00A0DC;
	border-color: #00A0DC;
}

.btn_prp {
	background: #005EB8;
	border-color: #005EB8;
}

.btn_prp:hover {
	background: transparent;
	color: #005EB8;
}

.btn_white {
	background: transparent;
	border-color: #fff;
	color: #fff;
}

.btn_white:hover {
	background: #fff;
	color: #005EB8;
}

.btn_sml {
	padding: 0 2.2em;
	line-height: 2.2em;
}

.btn_with-arrow {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: url("images/bottom-arrow.png") 130px 10px no-repeat #fff;
	border-color: #c8dce7;
	color: #005EB8;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 0 2em;
	padding-right: 3em;
	z-index: 10;
}

.btn_with-arrow:hover {
	background-color: #c8dce7;
	color: blue;
}

.ttl {
	font-size: 3.25em;
	font-weight: bold;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

@media screen and (max-width: 600px) {
	.ttl {
		font-size: 1.8em;
	}
}

.hr_helper {
	width: 100%;
	height: 1px;
	background-color: #c8dce7;
	position: relative;
}

.hidden {
	opacity: 0;
}

header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 20;
	padding: 0 20px;
}

@media screen and (max-width: 600px) {
	header {
		border-bottom: none;
	}
}

header.stickytop {
	position: fixed;
	background: #fff;
	box-shadow: 0 2px 6px rgba(55, 77, 77, 0.15);
}

.header {
	margin: 0 auto;
	width: 100%;
	max-width: 1740px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	padding-bottom: 20px;
	padding-top: 15px;
}

@media screen and (max-width: 1100px) {
	.header {
		padding: 10px 0;
		/* justify-content: unset;
		-webkit-justify-content: unset; */
	}
}

.header-logo {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 239px;
	flex: 0 1 239px;
}

@media (max-width: 1100px) {
	.header-logo {
		margin-right: auto;
	}
}

@media screen and (max-width: 560px) {
	.header-logo {
		width: 50%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 1 !important;
		-ms-flex: auto !important;
		flex: auto !important;
	}
}

.header-logo svg {
	max-width: 100%;
}

.header-logo__img {
	display: block;
	width: 100%;
	height: auto;
}

.header-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-negative: 3;
	flex-shrink: 3;
	width: 60%;
	max-width: 900px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
}

@media screen and (max-width: 1100px) {
	.header-nav {
		visibility: hidden;
		opacity: 0;
		position: fixed;
		background-color: #fff;
		right: 0;
		top: 0;
		bottom: 0;
		width: 50%;
		z-index: 40;
		-webkit-transition: 0.4s ease-in-out;
		-o-transition: 0.4s ease-in-out;
		transition: 0.4s ease-in-out;
		text-align: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		/* padding-left: 10%; */
		z-index: 100;
	}
}

@media screen and (max-width: 600px) {
	.header-nav {
		width: 100%;
	}
}

.header-nav__item {
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
}

@media screen and (max-width: 1100px) {
	.header-nav__item {
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
	}
}

.header-nav__item_dropdown:hover {
	background: #f1f1f1;
}

.header-nav__item_dropdown:hover .dropdown {
	visibility: visible;
	opacity: 1;
}

@media screen and (max-width: 1100px) {
	.header-nav__item > ul {
		display: none;
	}
}


.header-nav__link_dropdown:before {
	content: '';
	display: block;
	width: 14px;
	height: 16px;
	background: url("images/menus.png") center center no-repeat;
	background-size: contain;
	margin: 0 10px 2px 0;
}

@media screen and (max-width: 1300px) {
	.header-nav__item_dropdown, .header-nav__item {
		padding-right: 20px;
		padding-bottom: 5px;
		height: 60px;
	}
}

@media screen and (max-width: 1100px) {
	.header-nav__link:before {
		display: none;
	}
	.header-nav__item {
		padding-right: 10%;
	}
}



.header-nav__link {
	position: relative;
	text-transform: uppercase;
	color: #005EB8;
	text-decoration: none;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	white-space: nowrap;
}

.header-nav__link-slash::after {
    content: "";
    height: 0.1875rem;
    background: #005EB8;
    border-radius: 0.625rem;
    width: 73%;
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.header-nav__link-slash:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}


@media screen and (max-width: 1100px) {
	.header-nav__link {
		font-size: 1.4em;
		line-height: 2em;
	}
	.header-nav__link-slash::after {
		content: unset;
	}
}

.dropdown {
	visibility: hidden;
	top: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 100%;
	background: #f1f1f1;
	padding: 20%;
	-webkit-box-shadow: 0 19px 28px rgba(106, 15, 54, 0.15);
	box-shadow: 0 19px 28px rgba(106, 15, 54, 0.15);
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	white-space: nowrap;
}

.dropdown__item {
	font-size: 0.9em;
	color: #800080;
}

.dropdown__item:not(:last-child) {
	padding-bottom: 1.6em;
}

.dropdown__link {
	display: block;
	text-decoration: none;
	color: #005EB8;
	width: 100%;
}

.dropdown__link:hover {
	text-decoration: underline;
	/* color: #00A0DC; */
}

.dropdown-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	width: 600px;
	position: relative;
}

.dropdown-row:not(:last-child) {
	margin-bottom: 10%;
}

.dropdown-row:before {
	content: '';
	display: block;
	position: absolute;
	width: 40px;
	height: 2px;
	background: #00A0DC;
	top: 7%;
	left: 50%;
}

.dropdown-row__ttl {
	position: relative;
	font-size: 1.1em;
	color: #005EB8;
	text-decoration: none;
	padding-left: 10%;
}

.dropdown-row__ttl:hover {
	text-decoration: underline;
	color: #00A0DC;
}

.dropdown-row__ttl:before {
	content: '';
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #00A0DC;
	top: 50%;
	left: 2%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.dropdown-row__ttl:after {
	content: '';
	position: absolute;
	display: block;
	width: 6px;
	height: 6px;
	border: 2px solid #00A0DC;
	border-bottom: 0px solid transparent;
	border-left: 0px solid transparent;
	top: 50%;
	left: calc(2% + 6px);
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.dropdown-row__list {
	margin-top: 3px;
}

.hamburger {
	display: none;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 46px;
	min-width: 46px;
	height: 27px;
	border: 4px solid #005EB8;
	margin: 0 10px;
	background: url("images/hamburger.png") center center no-repeat #005EB8;
	background-size: contain;
}

@media screen and (max-width: 1100px) {
	.hamburger {
		display: block;
	}
}

.close-menu {
	display: none;
	margin: 10px 0 30px 0;
	cursor: pointer;
	-ms-flex-item-align: end;
	align-self: flex-end;
}

@media screen and (max-width: 1100px) {
	.close-menu {
		display: block;
		margin: 40px 40px 30px;
		text-align: right;
	}
}

.close-menu img {
	width: 25px;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.close-menu img:hover {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.footer {
	position: relative;
	background-color: #005EB8;
	width: 100%;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	padding: 40px 40px;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

@media screen and (max-width: 1000px) {
	.footer {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
	}
}

.footer nav {
	font-size: 14px;
}

@media screen and (max-width: 1000px) {
	.footer nav {
		display: none;
	}
}

.footer__copy {
	width: 20%;
	color: rgba(225, 225, 225, 0.8);
	line-height: 24px;
}

@media screen and (max-width: 1000px) {
	.footer__copy {
		width: 100%;
	}
}

.footer-logo__img {
	margin-bottom: 25px;
	width: auto;
}

.footer-logo svg {
	max-width: 100%;
}

.footer-menu__link {
	color: #fff;
	text-decoration: none;
	font-weight: 200;
	line-height: 30px;
	position: relative;
	padding-left: 10px;
}

.footer-menu__link:before {
	content: '';
	position: absolute;
	display: block;
	width: 4px;
	height: 1px;
	background-color: #fff;
	text-decoration: none;
	left: 0;
	top: 50%;
}

.footer-menu__link:hover {
	text-decoration: underline;
}

.footer-menu__link:hover:before {
	text-decoration: none;
}

.footer-menu__link_bold {
	font-weight: 600;
	padding-left: 0;
}

.footer-menu__link_bold:before {
	display: none;
}

.footer__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-align-items: flex-end;
	-ms-flex-preferred-size: 30%;
	flex-basis: 30%;
	-webkit-flex-basis: 30%;
}

.footer__info h3 {
	width: 100%;
	margin-top: 0.5em;
	text-align: right;
}

.footer__info h3:first-child {
	margin-top: 0;
}

.footer__info .social {
	margin-top: 20px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}

.footer__info .digital-web {
	margin-top: 20px;
}

.footer__creator {
	font-size: 14px;
	line-height: 20px;
	margin-top: 20px;
	width: 100%;
	text-align: right;
}

.footer__creator-link {
	text-decoration: none;
	color: #fff;
}

.footer__creator-link:hover {
	text-decoration: underline;
}

@media screen and (max-width: 1000px) {
	.footer__info {
		width: 100%;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-align-items: center;
		margin-top: 30px;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		-webkit-flex-basis: 100%;
	}

	.footer__info h3 {
		width: 50%;
		margin-top: 0;
	}

	.footer__info h3:nth-child(2) {
		text-align: right;
	}

	.footer__info .social {
		width: 50%;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-webkit-justify-content: flex-end;
	}

	.footer__creator {
		width: 50%;
	}

	.footer__info .digital-web {
		width: 50%;
	}
}

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

.footer-phone {
	display: block;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	color: #005EB8;
	text-decoration: none;
}

.footer-phone:hover {
	text-decoration: underline;
}

.footer-phone__img {
	display: inline-block;
	vertical-align: middle;
}

@media screen and (max-width: 1300px) {
	.footer-phone__img {
		width: 40px;
	}
}

.footer-phone__txt {
	display: inline-block;
	font-size: 1.25em;
	font-weight: bold;
	color: #fff;
}

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

.footer-phone:hover .footer-phone__txt {
	text-decoration: inherit;
}

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

.social__link {
	padding-left: 20px;
	opacity: 0.6;
	-webkit-transition: 0.2s opacity ease-in-out;
	-o-transition: 0.2s opacity ease-in-out;
	transition: 0.2s opacity ease-in-out;
}

.social__link:hover {
	opacity: 1;
}

.breadcrumbs {
	color: #005EB8;
	text-align: center;
}

@media screen and (max-width: 600px) {
	.breadcrumbs {
		font-size: 14px;
	}
}

.breadcrumbs__link {
	color: #005EB8;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.breadcrumbs__link:hover {
	text-decoration: underline;
}

.breadcrumbs__link_activ {
	color: #005EB8;
	opacity: 0.6;
	text-decoration: none;
}

.breadcrumbs__link_activ:hover {
	text-decoration: none;
	cursor: default;
}

.mp-content {
	/*background: url("images/news-mp-bg.png") bottom center no-repeat;*/
	/*background-size: 100% auto;*/
}

@media screen and (max-width: 1700px) {
	.mp-content {
		background: none;
	}
}

.slider-wrap {
	position: relative;
	overflow: hidden;
}

.main-sldr .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	overflow: hidden;
}

@media screen and (max-width: 600px) {
	.main-sldr .slick-track {
		height: 100%;
	}
}

.main-sldr .slick-track .slick-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	height: auto;
	margin-bottom: 100px;
	outline: none;
}

@media screen and (max-width: 600px) {
	.main-sldr .slick-list {
		height: 100%;
	}
}

.main-sldr .slick-next,
.main-sldr .slick-prev {
	font-size: 1em;
	width: 3em;
	height: 3em;
	top: 75%;
	left: 25%;
	z-index: 9;
}

@media screen and (max-width: 1300px) {
	.main-sldr .slick-next,
	.main-sldr .slick-prev {
		left: 30%;
		top: 85%;
	}
}

.main-sldr .slick-next:before,
.main-sldr .slick-prev:before {
	content: '';
	display: block;
	font-size: 1em;
	width: 3em;
	height: 3em;
	border-radius: 50%;
	background: url("images/slide-arrow-hover.png") center center no-repeat rgba(0, 0, 0, 0.2);
	background-size: cover;
	color: #f00;
	-webkit-box-shadow: 0 0 21px rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 21px rgba(0, 0, 0, 0.4);
}

.main-sldr .slick-next:hover:before,
.main-sldr .slick-prev:hover:before {
	-webkit-box-shadow: none;
	box-shadow: none;
	background-image: url("images/slide-arrow.png");
}

.main-sldr .slick-next {
	left: 29.5%;
}

@media screen and (max-width: 1300px) {
	.main-sldr .slick-next {
		left: 36%;
	}
}

@media screen and (max-width: 600px) {
	.main-sldr .slick-next {
		left: 75%;
	}
}

.main-sldr .slick-next:before {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.main-sldr .slick-next:hover:before {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}

@media screen and (max-width: 600px) {
	.main-sldr .slick-prev {
		left: 60%;
	}
}

.main-sldr .slick-prev:hover:before {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.main-sldr .slick-dots {
	position: absolute;
	left: 40px;
	top: -25%;
	width: auto;
	-webkit-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	transform-origin: 0 100%;
}

.main-sldr .slick-dots li {
	width: 10px;
	height: 10px;
}

.main-sldr .slick-dots li button:before {
	color: #00A0DC;
	opacity: 1;
}

.main-sldr .slick-dots li button:before:hover {
	color: #005EB8;
	opacity: 1;
}

.main-sldr .slick-dotted.slick-slider {
	margin: 0;
}

.main-sldr {
	min-height: 100vh;
	height: 100vh;
}

@media screen and (max-width: 1000px) {

	.main-sldr:after {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		-webkit-box-shadow: inset 0 0 10px rgba(236, 234, 240, 0.5);
		box-shadow: inset 0 0 10px rgba(236, 234, 240, 0.5);
	}
}

@media screen and (max-width: 600px) {
	.main-sldr {
		height: 100vh;
	}
}

.main-sldr__slide {
	width: 100%;
	height: 100vh;
	position: relative;
}

@media screen and (max-width: 600px) {
	.main-sldr__slide {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-justify-content: center;
	}
}

@-webkit-keyframes fadeInDownRemastered {
	0% {
		opacity: 0.1;
		-webkit-transform: translate3d(0, -75%, 0);
		transform: translate3d(0, -75%, 0);
	}
	50% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	100% {
		opacity: 0.1;
		-webkit-transform: translate3d(0, -75%, 0);
		transform: translate3d(0, -75%, 0);
	}
}

@keyframes fadeInDownRemastered {
	0% {
		opacity: 0.1;
		-webkit-transform: translate3d(0, -75%, 0);
		transform: translate3d(0, -75%, 0);
	}
	50% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	100% {
		opacity: 0.1;
		-webkit-transform: translate3d(0, -75%, 0);
		transform: translate3d(0, -75%, 0);
	}
}

.main-sldr__scroll {
	position: absolute;
	left: calc(50% - 25px);
	bottom: 60px;
	width: 50px;
	height: 68px;
	-webkit-animation-name: fadeInDownRemastered;
	-moz-animation-name: fadeInDownRemastered;
	-o-animation-name: fadeInDownRemastered;
	-ms-animation-name: fadeInDownRemastered;
	animation-name: fadeInDownRemastered;
	-webkit-animation-duration: 2s;
	-moz-animation-duration: 2s;
	-o-animation-duration: 2s;
	-ms-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	-ms-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	cursor: pointer;
}

.main-sldr__scroll_inner {
	background-image: url("images/double-left-chevron.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 1000px) {
	.main-sldr__scroll {
		display: none;
	}
}

.main-sldr .slick-dots {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: box;
	display: flex;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-o-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	position: absolute;
	width: auto;
	right: 40px;
	left: auto;
	top: calc(50% - 40px);
}

.main-sldr .slick-dots li {
	margin: 10px 0;
}

.main-sldr .slick-dots li button {
	width: 18px;
	height: 18px;
	line-height: 18px;
}

.main-sldr .slick-dots li.slick-active button:before,
.main-sldr .slick-dots li button:before {
	color: #005EB8;
	opacity: 1;
	-ms-filter: none;
	filter: none;
	font-size: 10px;
	line-height: 20px;
	height: 18px;
	width: 18px;
	border: 2px solid transparent;
}

.main-sldr .slick-dots li.slick-active button:before {
	border-radius: 50%;
	border: 2px solid #005EB8;
}

.main-sldr__img {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}

.main-sldr__img-container {
	height: 100vh;
	width: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

@media screen and (max-width: 600px) {
	.main-sldr__img {
		height: auto;
		-webkit-transform: scale(3.6);
		-ms-transform: scale(3.6);
		transform: scale(3.6);
	}
}

.main-sldr__num-wrap {
	position: absolute;
	top: 15%;
	left: 10%;
	margin: 0;
	padding: 0;
	height: 0.65em;
	font-size: 11.8em;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.5);
	overflow: hidden;
}

@media screen and (max-width: 600px) {
	.main-sldr__num-wrap {
		font-size: 10em;
		top: 43%;
	}
}

.main-sldr__num {
	margin: 0;
	padding: 0;
	display: none;
}

.main-sldr__ttl {
	position: absolute;
	display: block;
	line-height: 1em;
	color: #005EB8;
	top: 25%;
	left: 10%;
	font: bold 4.4em "rotonda";
	bottom: 50%;
	margin: auto;
}

@media (max-width: 1024px) {
	.main-sldr__ttl {
		font-size: 3.5em;
	}
}

@media (max-width: 768px) {
	.main-sldr__ttl {
		display: none;
	}
}

.main-sldr__comment {
	display: block;
	margin-top: 1em;
	line-height: 1em;
	color: #005EB8;
	font: normal 0.5em "rotonda";
}

.main-sldr__btn {
	font-family: "rotonda";
	position: absolute;
	bottom: 120px;
	left: 10%;
	font-weight: bold;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

@media (max-width: 1024px) {
	.main-sldr__btn {
		bottom: 1%;
	}
}


@media screen and (max-width: 768px) {
	.main-sldr__btn {
		bottom: 10%;
		font-size: 1.2em;
	}
}

@media (max-width: 420px) {
	.main-sldr__btn {
		bottom: 0%;
		left: auto;
	}
}

.main-sldr__btn:hover {
	background: transparent;
	color: #00A0DC;
}

.main-sldr__rght-block {
	position: absolute;
	top: 30%;
	left: 85%;
}

.main-sldr__rght-block-inner {
	position: absolute;
	left: 0;
	top: 0;
	white-space: nowrap;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 0 100%;
	-ms-transform-origin: 0 100%;
	transform-origin: 0 100%;
}

.main-sldr__small-nam {
	position: relative;
	display: block;
	font-size: 2em;
	font-weight: bold;
	color: #005EB8;
	margin: 0;
}

@media screen and (max-width: 600px) {
	.main-sldr__small-nam {
		display: none;
	}
}

.main-sldr__small-nam:before {
	content: '';
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	background: #005EB8;
	top: calc(50% - 2px);
	right: calc(100% + 20px);
}

.main-sldr__usage {
	position: relative;
	display: block;
	font-size: 1.8em;
	font-weight: bold;
	color: #005EB8;
	margin: 0;
}

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

.main-sldr__usage:after {
	content: '';
	display: block;
	position: absolute;
	width: 30px;
	height: 2px;
	background: #005EB8;
	top: calc(50% - 2px);
	left: calc(100% + 20px);
}

.slide-scroll {
	display: none;
	width: 40px;
	height: 40px;
	position: absolute;
	left: 50%;
	top: calc(100% - 60px);
	font-size: 0.6em;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	color: #005EB8;
	background: url(images/double-left-chevron.svg) center center no-repeat;
	background-size: cover;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-animation: soaring 2s infinite;
	animation: soaring 2s infinite;
}

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

.slide-scroll:hover {
	text-decoration: underline;
}

.assortment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-justify-content: center;
}

.assortment__ttl {
	width: 100%;
}

.assortment__item {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-align-items: flex-start;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 2em;
}

.assortment__item_ratio {
	width: calc(25% - 20px);
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	margin: 0 10px 20px;
}

@media screen and (max-width: 1000px) {
	.assortment__item_ratio {
		width: calc(50% - 20px);
	}
}

@media screen and (max-width: 600px) {
	.assortment__item_ratio {
		width: calc(80% - 20px);
	}
}

.assortment__item_ratio:hover {
	-webkit-box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
	box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
}

.assortment__item_ratio:before {
	content: '';
	display: block;
	padding-top: 100%;
}

.assortment__item_ratio:nth-child(2):after,
.assortment__item_ratio:last-child:after {
	content: '';
	display: block;
	position: absolute;
	width: 64px;
	height: 20px;
	background: url("images/arrow-mp.png") center center no-repeat;
	background-size: cover;
	top: 2em;
	left: 2em;
}

@media screen and (max-width: 1300px) {
	.assortment__item_ratio:nth-child(2):after,
	.assortment__item_ratio:last-child:after {
		top: 1em;
		width: 45px;
		height: 13px;
	}
}

@media screen and (max-width: 1000px) {
	.assortment__item_ratio:nth-child(2):after,
	.assortment__item_ratio:last-child:after {
		display: none;
	}
}

.assortment__item_ratio:nth-child(2):after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	right: 2em;
	left: auto;
}

.mp-branch {
	background: url("images/branch-mp-bg.png") bottom left no-repeat #fff;
	background-size: 100% auto;
	padding: 5em 4em 4em;
}

@media screen and (max-width: 1600px) {
	.mp-branch {
		padding: 4em 2em 2em;
	}
}

@media (min-width: 1599px) and (max-width: 1300px) {
	.mp-branch {
		padding: 3em 2em 2em;
	}
}

@media (min-width: 1299px) and (max-width: 1001px) {
	.mp-branch {
		padding: 3em 2em 2em 1em;
	}
}

@media screen and (max-width: 600px) {
	.mp-branch {
		padding: 3em 2em 2em;
	}
}

.mp-branch__link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.mp-branch__ttl {
	font: 1.7em "rotonda";
	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
}

@media (max-width: 1599px) and (min-width: 1300px) {
	.mp-branch__ttl {
		font-size: 1.2em;
	}
}

@media (max-width: 1299px) and (min-width: 1101px) {
	.mp-branch__ttl {
		font-size: 1em;
	}
}

@media (max-width: 1100px) and (min-width: 1000px) {
	.mp-branch__ttl {
		font-size: 0.8em;
	}
}

@media (max-width: 600px) and (min-width: 401px) {
	.mp-branch__ttl {
		font-size: 1.4em;
	}
}

@media screen and (max-width: 400px) {
	.mp-branch__ttl {
		font-size: 1.1em;
	}
}

.mp-branch__txt {
	font-size: 0.8em;
	margin: 3em 0;
}

@media screen and (max-width: 1300px) {
	.mp-branch__txt {
		margin: 2em 0;
	}
}

@media (min-width: 1299px) and (max-width: 1001px) {
	.mp-branch__txt {
		margin: 1em 0;
		font-size: 0.6em;
	}
}

.mp-branch__btn {
	-ms-flex-item-align: start;
	align-self: flex-start;
	margin-top: auto;
	z-index: 10;
}

.mp-branch-item {
	background: url("images/mp-product-bg.png") center center no-repeat;
	background-size: cover;
}

.mp-branch-item__link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.mp-branch-item__ttl {
	margin: 0 0 1em 0;
	font: 2em "rotonda";
	height: 2em;
}

@media screen and (min-width: 1750px) {
	.mp-branch-item__ttl {
		font-size: 1.8em;
	}
}

@media (min-width: 1599px) and (max-width: 1301px) {
	.mp-branch-item__ttl {
		font-size: 1.6em;
	}
}

@media screen and (max-width: 1300px) {
	.mp-branch-item__ttl {
		font-size: 1.4em;
	}
}

.mp-branch-item__img {
	position: absolute;
	bottom: 2em;
	right: 2em;
	max-width: 60%;
	max-height: 60%;
	width: auto;
	height: auto;
}

.mp-branch-item__btn {
	-ms-flex-item-align: start;
	align-self: flex-start;
	z-index: 10;
}

.mp-branch-banner {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	background-repeat: no-repeat;
	background-image: url("images/circle-bg.png"), url("images/mp-banner-bg.png");
	background-position: bottom right, center center;
	background-size: 35% auto, cover;
	position: relative;
	width: calc(75% - 20px);
	height: auto;
	margin: 0 10px 20px;
}

@media screen and (max-width: 1000px) {
	.mp-branch-banner {
		display: none;
	}
}

.mp-branch-banner:hover {
	-webkit-box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
	box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
}

.mp-branch-banner__img {
	position: absolute;
	right: 5%;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	max-height: 70%;
	height: auto;
	width: auto;
}

.mp-branch-banner__link {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.mp-faq {
	margin-top: -20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 10em 0 10em 20%;
	background-image: url("images/feathers-mp.png"), url("images/mp-faq-bg.png");
	background-position: left bottom, right bottom;
	background-size: contain, auto 100%;
	background-repeat: no-repeat;
}

@media screen and (max-width: 1100px) {
	.mp-faq {
		background: url("images/feathers-mp.png") left bottom no-repeat rgba(219, 220, 241, 0.4);
		background-size: contain;
		-webkit-box-shadow: 0 0 50px 65px rgba(219, 220, 241, 0.4);
		box-shadow: 0 0 50px 65px rgba(219, 220, 241, 0.4);
	}
}

@media screen and (max-width: 1000px) {
	.mp-faq {
		padding: 0 10px 50px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-align-items: center;
	}
}

@media screen and (max-width: 600px) {
	.mp-faq {
		padding: 30px 10px;
	}
}

.mp-faq__ttl {
	font-size: 3em;
	text-transform: uppercase;
	margin-bottom: 0.4em;
}

@media screen and (max-width: 600px) {
	.mp-faq__ttl {
		font-size: 2em;
		text-align: center;
	}
}

.mp-faq__dcr {
	font-size: 1.2em;
	text-transform: uppercase;
	font-weight: bold;
	color: #00A0DC;
	margin: 0 0 2em 0;
}

@media screen and (max-width: 600px) {
	.mp-faq__dcr {
		margin-bottom: 0.8em;
	}
}

.mp-faq__txt {
	max-width: 620px;
	margin-bottom: 40px;
}

.mp-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
}

@media screen and (max-width: 1000px) {
	.mp-info {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.mp-info__block {
	position: relative;
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	padding: 10% 0;
}

@media screen and (max-width: 1000px) {
	.mp-info__block {
		width: 100%;
	}
}

.mp-info__block_ingredients {
	background: #e8f6f9;
}

@media screen and (max-width: 1000px) {
	.mp-info__block_about-us {
		background: #fff;
	}
}

@media screen and (max-width: 1000px) {
	.mp-ingredients {
		text-align: center;
	}
}

.mp-ingredients__ttl {
	position: relative;
	font: 3em "rotonda";
	color: #00A0DC;
	text-transform: uppercase;
	font-weight: bold;
	z-index: 10;
}

@media screen and (max-width: 600px) {
	.mp-ingredients__ttl {
		font-size: 1.9em;
	}
}

.mp-ingredients__txt {
	position: relative;
	font: 3em "rotonda";
	z-index: 10;
	margin: 1.5em 0;
}

@media screen and (max-width: 600px) {
	.mp-ingredients__txt {
		font-size: 2em;
	}
}

.mp-ingredients__txt span {
	font-weight: bold;
}

.mp-ingredients__semicircle {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	right: 0;
	height: 60%;
	width: auto;
}

.mp-about-us {
	position: relative;
	margin-left: 10%;
}

@media screen and (max-width: 1000px) {
	.mp-about-us {
		margin-left: 0;
		text-align: center;
	}
}

.mp-about-us__ttl {
	position: relative;
	font: 3em "rotonda";
	color: #00A0DC;
	text-transform: uppercase;
	font-weight: bold;
	z-index: 10;
}

@media screen and (max-width: 600px) {
	.mp-about-us__ttl {
		font-size: 2em;
	}
}

.mp-about-us__txt {
	position: relative;
	font: 3em "rotonda";
	z-index: 10;
	margin: 1.5em 0;
}

@media screen and (max-width: 600px) {
	.mp-about-us__txt {
		font-size: 1.9em;
	}
}

.mp-about-us__txt span {
	font-weight: bold;
}

.mp-about-us__semicircle {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	left: 0;
	height: 60%;
	width: auto;
}

.mp-news {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-justify-content: center;
}

.mp-news__ttl {
	width: 100%;
	margin: 1.5em 0;
}

.mp-news__line {
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
	margin-top: 0.3em;
}

.mp-news__btn {
	margin: 3em 0;
}

.news-item {
	position: relative;
	width: calc(25% - 20px);
	margin: 10px 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	text-align: center;
	padding-bottom: 5%;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

@media screen and (max-width: 1000px) {
	.news-item {
		width: calc(40% - 20px);
	}
}

@media screen and (max-width: 600px) {
	.news-item {
		width: calc(90% - 20px);
	}
}

.news-item:hover {
	-webkit-box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
	box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
	background: #fff;
}

.news-item__link {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.news-item__img {
	width: 100%;
	height: auto;
}

.news-item__ttl {
	font-size: 1.5em;
	padding: 0 10px;
}

.news-item__txt {
	font-size: 0.9em;
	margin-top: auto;
	margin-bottom: 15%;
	padding: 0 10px;
}

.news-item__date {
	color: #00A0DC;
	font-size: 0.9em;
	margin-top: auto;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.news-item:hover .news-item__date {
	-webkit-transform: translate(0, -150%);
	-ms-transform: translate(0, -150%);
	transform: translate(0, -150%);
	visibility: hidden;
	opacity: 0;
}

.news-item__btn {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	bottom: 5%;
	left: 50%;
	-webkit-transform: translate(-50%, -20%);
	-ms-transform: translate(-50%, -20%);
	transform: translate(-50%, -20%);
	z-index: 10;
}
.articles-item__btn {
	position: relative;
}

@media screen and (max-width: 1000px) {
	.news-item__btn {
		-webkit-transform: translate(-50%, 50%);
		-ms-transform: translate(-50%, 50%);
		transform: translate(-50%, 50%);
	}
}

.news-item:hover .news-item__btn {
	-webkit-transform: translate(-50%, -100%);
	-ms-transform: translate(-50%, -100%);
	transform: translate(-50%, -100%);
	visibility: visible;
	opacity: 1;
}

@media screen and (max-width: 1000px) {
	.news-item:hover .news-item__btn {
		-webkit-transform: translate(-50%, -30%);
		-ms-transform: translate(-50%, -30%);
		transform: translate(-50%, -30%);
	}
}

.branches {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	margin: 4em auto 60px;
	max-width: 1250px;
}

@media screen and (max-width: 600px) {
	.branches {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-align-items: center;
	}
}

.branch {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	padding: 1em 1.5em;
	width: 48%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	background: url("images/circle-bg.png") bottom right no-repeat rgba(255, 255, 255, 0.4);
	background-size: 40% auto;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

@media screen and (max-width: 600px) {
	.branch {
		width: 95%;
		margin-bottom: 1.2em;
	}
}

.branch:hover {
	background-color: #fff;
	-webkit-box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
	box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
}

.branch__ttl {
	-ms-flex-item-align: start;
	align-self: flex-start;
	font-size: 2em;
	font-weight: normal;
}

@media screen and (max-width: 1100px) {
	.branch__ttl {
		font-size: 1.4em;
	}
}

.branch__txt {
	position: absolute;
	top: 6em;
	left: 2em;
}

.branch__img {
	-ms-flex-item-align: end;
	align-self: flex-end;
	margin-top: 20px;
	max-width: 70%;
	width: auto;
	max-height: 60%;
	height: auto;
	margin-top: auto;
}

.branch__btn {
	-ms-flex-item-align: start;
	align-self: flex-start;
	position: relative;
	z-index: 10;
	margin-top: auto;
}

.branch__btn:hover {
	background: #00A0DC;
	color: #005EB8;
	border-color: #00A0DC;
}

.branch__link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.what-we-do_left {
	text-align: left;
}

.what-we-do__ttl {
	font-size: 1.8em;
	font-weight: bold;
	text-transform: uppercase;
	margin: 1.5em 0 1.2em;
	text-align: center;
}

.what-we-do__txt {
	line-height: 24px;
	font-size: 14px;
	margin: 0;
}

@media screen and (max-width: 600px) {
	.what-we-do__txt {
		margin: 20px 10px 0 15px;
	}
}

.what-we-do_left {
	text-align: left;
}

.branch-items,
.products-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	margin: 40px auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-justify-content: center;
	max-width: 1250px;
}

.branch-item {
	-webkit-box-shadow: 0 0 10px 0 #fff;
	box-shadow: 0 0 10px 0 #fff;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	width: calc(33.3% - 20px);
	margin: 10px;
	background: url("images/circle-bg.png") bottom right no-repeat #fff;
	background-size: 50% auto;
	padding: 2em;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

@media screen and (max-width: 1000px) {
	.branch-item {
		width: 40%;
	}
}

@media screen and (max-width: 600px) {
	.branch-item {
		width: 80%;
	}
}

.branch-item:hover {
	-webkit-box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
	box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
}

.branch-item:hover .branch-item__ttl {
	color: mainPink;
}

.branch-item__ttl {
	-ms-flex-item-align: left;
	-ms-grid-row-align: left;
	align-self: left;
	font: 2em "rotonda";
	margin: 0 0 35%;
}

@media (max-width: 1100px) and (min-width: 600px) {
	.branch-item__ttl {
		font-size: 1.5em;
	}
}

@media screen and (max-width: 599px) {
	.branch-item__ttl {
		font-size: 1.3em;
	}
}

.branch-item__img {
	position: absolute;
	max-height: 60%;
	max-width: 30%;
	width: auto;
	height: auto;
	bottom: 1.5em;
	right: 1.5em;
}

.branch-item__btn {
	-ms-flex-item-align: start;
	align-self: flex-start;
	z-index: 10;
}

.branch-item__btn:hover {
	background: #00A0DC;
	border-color: #00A0DC;
	color: #005EB8;
}

.branch-item__link {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.product-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	position: relative;
	width: 350px;
	margin: 10px;
	padding: 30px 35px;
	height: 470px;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

@media screen and (max-width: 600px) {
	.product-card {
		width: 290px;
		height: 370px;
	}
}

.product-card:hover {
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}

.product-card_hit:before {
	content: 'HIT';
	display: block;
	position: absolute;
	top: 20px;
	left: -1px;
	background-color: #00A0DC;
	padding: 5px 15px;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
}

.product-card__ttl {
	font: 20px "rotonda";
	line-height: 24px;
	text-align: center;
	margin: 15px auto;
	height: 68px;
}

@media screen and (max-width: 600px) {
	.product-card__ttl {
		font-size: 16px;
		line-height: 20px;
	}
}

.product-card__img {
	max-height: 265px;
	margin-top: auto;
	/* max-width: 195px; */
}

@media screen and (max-width: 600px) {
	.product-card__img {
		max-height: 200px;
	}
}

.product-card__btn {
	position: relative;
	z-index: 10;
	background: transparent;
	color: #005EB8;
}

.product-card__btn:hover {
	background: #005EB8;
	color: #fff;
}

.product-card__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.page-nav {
	width: 100%;
	text-align: center;
	margin-top: 40px;
}

.page-nav__link {
	display: inline-block;
	text-decoration: none;
	color: #005EB8;
	line-height: 26px;
	width: 30px;
	border: 2px solid transparent;
	border-radius: 50%;
}

.page-nav__link:hover {
	color: #00A0DC;
	text-decoration: underline;
}

.page-nav__link_cur {
	border-color: #00A0DC;
	color: #00A0DC;
}

.page-nav__link_cur:hover {
	text-decoration: none;
}

.page-nav__arrow {
	display: inline-block;
	width: 45px;
	height: 12px;
	margin: 0 15px;
	background: url("images/page-nav-arrow-hover.svg") no-repeat;
	background-size: cover;
}

.page-nav__arrow_prev {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.page-nav__arrow:hover {
	background: url("images/page-nav-arrow.svg") no-repeat;
	opacity: 0.6;
}

.column {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
}

@media screen and (max-width: 1000px) {
	.column {
		width: 100%;
	}

	/* .column:first-child {
		display: none;
	} */
}

.assortment-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	margin: 60px 0;
	max-width: 1250px;
	width: 100%;
	padding: 0 10px;
}

@media screen and (max-width: 1000px) {
	.assortment-product {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-top: 0;
	}
}

@media screen and (max-width: 600px) {
	.assortment-product {
		margin: 10px 0;
	}
}

.assortment-product__prev-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-justify-content: center;
	/* margin-right: 60px; */
	width: calc(100% - 60px);
	/* padding: 60px 60px 110px; */
	position: relative;
}

.assortment-product__external-shop {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.assortment-product__external-shop-title {
	width: auto;
	color: #00A0DC;
	padding: 0 10px 0 0;
	font-size: 2em;
	font-weight: bold;
	text-align: left;
	font-family: 'Rotonda';
	text-transform: lowercase;
}

.btn_external_shop {
	padding: 0 18px;
	font-size: 0.8em;
	line-height: 2em;
	margin: 10px 10px 0 0;
	border-color: #00A0DC;
    background: #00A0DC;
}
.btn_external_shop:hover {
	color: #00A0DC;
    
}

.assortment-product__external-shop--mobile {
	position: relative;
	width: 100%;
	/*display: block;*/
}

.assortment-product__block {
	width: 100%;
}



/* === === === === === === === === === === === === === === */
/* === скрываем то что не должно быть видно на desktop === */
@media print, screen and (min-width: 1001px) {

	.assortment-product__external-shop {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-line-pack: center;
		align-content: center;
	}

	.assortment-product__external-shop-title {
		width: auto;
		font-size: 1.8em;
	}

	.assortment-product__external-shop--mobile {
		display: none;
	}

	.btn_external_shop {
		margin: 0;
		line-height: 2.5em;
		font-size: 0.8em;
		padding: 0 10px;
	}
}

/* === скрываем то что не должно быть видно на desktop === */
/* === === === === === === === === === === === === === === */
@media print, screen and (min-width: 1090px) {
	.btn_external_shop {
		font-size: 1em;
		padding: 0 10px;
	}
}

.prev-block__img {
	max-width: 501px;
	width: 100%;
	height: auto;
	/* background: transparent url(images/ellipse.png) center center no-repeat;
	background-size: contain; */
}

.social-share {
	-ms-flex-item-align: left;
	align-self: left;
	margin-top: 30px;
	margin-bottom: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	width: 100%;
}

.social-share__txt {
	display: inline-block;
	text-transform: uppercase;
	font-size: 16px;
	margin-right: 20px;
}

.social-share__link {
	display: inline-block;
	padding: 0 10px;
	vertical-align: middle;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.social-share__link:hover {
	opacity: 0.6;
}

.product__ttl {
	text-align: left;
}

@media screen and (max-width: 1100px) {
	.product__ttl {
		text-align: center;
		font-size: 30px;
	}
}

@media screen and (max-width: 600px) {
	.product__ttl {
		font-size: 24px;
	}
}

.product__img {
	display: none;
}

@media screen and (max-width: 1000px) {
	.product__img {
		display: block;
		background-size: auto 100%;
		padding: 10%;
		margin-top: 20px;
	}

	.product__img img {
		display: block;
		width: 80%;
		margin: 0 auto;
	}
}

.product__article {
	-ms-flex-item-align: flex-start;
	-ms-grid-row-align: flex-start;
	align-self: flex-start;
	margin-top: 5px;
	font-size: 16px;
	font-weight: bold;
	color: #00A0DC;
	text-transform: uppercase;
}

@media screen and (max-width: 600px) {
	.product__article {
		font-size: 14px;
		margin-top: 15px;
	}
}

.product__volume {
	text-transform: uppercase;
	margin-top: 0.4em;
	-ms-flex-item-align: left;
	-ms-grid-row-align: left;
	align-self: left;
	margin-bottom: 0;
}

.product__volume--scope {
	color: #00A0DC;
	padding: 0 10px 0 0;
	font-size: 2em;
	font-weight: bold;
	text-align: left;
	font-family: 'Rotonda';
	text-transform: lowercase;
	display: inline-block;
	width: 100%;
}

.product__tabs {
	width: 100%;
	text-align: left;
	position: relative;
	margin-bottom: auto;
}

.product__tabs * {
	color: #777;
}

.product .certificate__img {
	display: inline-block;
	width: 20%;
	min-width: 16%;
	margin: 0 10px;
}

.product .certificate__img img {
	width: 100%;
	height: auto;
}

.product .certificate__ttl {
	display: inline-block;
	font-size: 2em;
	width: 100%;
}

@media screen and (max-width: 800px) {
	.product .certificate__ttl {
		text-align: center;
	}
}

.product .certificate__get {
	color: #005EB8;
	font-size: 0.5em;
}

.tab {
	position: absolute;
	top: 100%;
	left: 0;
	padding: 15px;
	background: none;
	font-size: 14px;
	line-height: 24px;
	margin: 20px 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 100%;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tab img {
	margin: 10px 10px 0 0;
}

.tab ul,
.tab ol {
	display: block;
}

.tab ul li,
.tab ol li {
	display: block;
	position: relative;
	margin-bottom: 15px;
	padding-left: 5px;
}

.tab ul li:before,
.tab ol li:before {
	position: absolute;
	top: 7px;
	content: '';
	display: inline-block;
	background: #00A0DC;
	left: -15px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
}

@media screen and (max-width: 1000px) {
	.tab ul li:before,
	.tab ol li:before {
		left: -15px;
	}
}

.tab_visible {
	visibility: visible;
	opacity: 1;
}

.tab-btn {
	display: inline-block;
	border-color: #005EB8;
	color: #005EB8;
	font-size: 1.05em;
	line-height: 1.05em;
	-webkit-box-shadow: none;
	box-shadow: none;
	margin-top: 40px;
	margin-right: 10px;
	padding: 8px 20px;
}

.tab-btn:hover {
	background-color: #005EB8;
	color: #fff;
}

@media screen and (max-width: 600px) {
	.tab-btn {
		margin-top: 10px;
	}
}

.tab-btn_active {
	background-color: #005EB8;
	color: #fff;
}

.certificate {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
}

@media screen and (max-width: 600px) {
	.certificate {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-ms-flex-pack: distribute;
		justify-content: space-around;
		-webkit-justify-content: space-around;
	}
}

.buy {
	width: 800px;
	margin: 40px auto 0;
	padding: 40px 40px;
	background-color: rgba(255, 255, 255, 0.7);
	-webkit-box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.7);
	box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.7);
	z-index: 10;
}

@media screen and (max-width: 1000px) {
	.buy {
		width: 95%;
	}
}

@media screen and (max-width: 600px) {
	.buy {
		padding: 20px 10px;
	}

	.buy .button {
		font-size: 12px;
		padding: 0 10px;
		line-height: 24px;
	}
}

.city {
	font-size: 16px;
	position: relative;
}

@media screen and (max-width: 600px) {
	.city {
		font-size: 14px;
	}
}

.city__actual {
	display: inline-block;
}

.city__actual span {
	font-weight: bold;
	margin-left: 10px;
}

.city__choose {
	display: inline-block;
	text-decoration: underline;
	color: mainBlue;
	cursor: pointer;
	margin-left: 30px;
}

@media screen and (max-width: 600px) {
	.city__choose {
		display: block;
		margin-left: 0;
		margin-top: 10px;
	}
}

.city__list {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	width: 100%;
	left: 0;
	top: 100%;
	background-color: #fff;
	padding: 20px;
	z-index: 10;
	-webkit-box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.16);
	box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.16);
	max-height: 200px;
	overflow: auto;
	overflow-X: hidden;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.city__list_visible {
	visibility: visible;
	opacity: 1;
}

.city__list a {
	padding: 5px 0;
	display: block;
	color: #000;
	cursor: pointer;
	text-decoration: none;
}

.city__list a:hover {
	text-decoration: underline;
}

.city__feedback {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
}

.city-search {
	position: relative;
	width: 100%;
	display: block;
	border-radius: 20px;
	line-height: 45px;
	border: 1px solid #c8dce7;
	padding-left: 20px;
	margin: 20px 0;
	font-size: 16px;
}

.city-search:after {
	content: '';
	display: block;
	position: absoute;
	right: 10px;
	background: url("images/search.png");
	width: 25px;
	height: 25px;
	top: 50%;
}

.shop {
	padding: 10px 10px;
	border-bottom: 1px solid #ccc;
	margin: 10px 20px;
}

@media screen and (max-width: 600px) {
	.shop {
		margin: 10px 0;
	}
}

.shop-notf {
	display: none;
	color: mainPink;
}

.shop-notf_visible {
	display: block;
}

.shop-list {
	margin-bottom: 20px;
}

.shop_hide {
	display: none;
}

.shop__ttl {
	position: relative;
	padding-left: 30px;
	color: mainBlue;
	font-weight: bold;
}

@media screen and (max-width: 600px) {
	.shop__ttl {
		font-size: 14px;
	}
}

.shop__ttl a {
	float: right;
	color: #005EB8;
	font-weight: normal;
	text-decoration: none;
}

.shop__ttl a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 600px) {
	.shop__ttl a {
		font-size: 10px;
	}
}

.shop__ttl:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("images/adr-tag.png");
	top: 0;
	width: 13px;
	height: 17px;
}

.shop__adr,
.shop__phone {
	position: relative;
	padding-left: 30px;
	font-size: 14px;
	margin: 10px 0;
}

.shop__adr:before,
.shop__phone:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	background-size: contain;
	background-repeat: no-repeat;
}

.shop__adr:before {
	background-image: url("images/adr-tag.png");
	top: 0;
	width: 13px;
	height: 17px;
}

.shop__phone:before {
	background-image: url("images/phone-tag.png");
	width: 17px;
	height: 17px;
}

.shop__feedback {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-justify-content: space-around;
}

.shop__feedback .social-share {
	margin-top: auto;
}

.news-detail {
	padding: 0 60px;
}

@media screen and (max-width: 600px) {
	.news-detail {
		padding: 0 15px;
	}
}

.news-detail__txt {
	background-color: rgba(255, 255, 255, 0.6);
	position: relative;
	margin: 60px 10%;
	padding: 20px;
}

@media screen and (max-width: 1000px) {
	.news-detail__txt {
		margin: 30px 0;
	}
}

.news-detail__txt p {
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 30px;
}

.news-detail__date {
	background-color: #005EB8;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	color: #fff;
	padding: 0 10px;
}

.news-detail__img {
	float: left;
	border: 10px solid #fff;
	-webkit-transform: translate(-40px, -40px);
	-ms-transform: translate(-40px, -40px);
	transform: translate(-40px, -40px);
	width: 50%;
}

@media screen and (max-width: 1000px) {
	.news-detail__img {
		width: 100%;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		transform: translate(0, 0);
		float: none;
	}
}

.news-page-nav {
	width: 100%;
	text-align: center;
}

.news-page-nav__arrow {
	position: relative;
	padding: 0 20px;
	font-size: 16px;
	text-transform: uppercase;
	color: #00A0DC;
	font-weight: bold;
	text-decoration: none;
}

@media screen and (max-width: 600px) {
	.news-page-nav__arrow {
		padding: 0 5px;
	}
}

.news-page-nav__arrow:after {
	content: '';
	display: block;
	position: absolute;
	width: 45px;
	height: 12px;
	background: url("images/page-nav-arrow.svg") center center no-repeat;
	top: 50%;
}

.news-page-nav__arrow:hover {
	opacity: 0.6;
}

.news-page-nav__arrow_next:after {
	left: 100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.news-page-nav__arrow_prev:after {
	right: 100%;
	-webkit-transform: rotate(180deg) translateY(50%);
	-ms-transform: rotate(180deg) translateY(50%);
	transform: rotate(180deg) translateY(50%);
}

.ingredients {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 10px;
}

.ingredients__info {
	padding: 50px 60px;
	background-color: rgba(255, 255, 255, 0.6);
	font-size: 16px;
	line-height: 30px;
}

@media screen and (max-width: 600px) {
	.ingredients__info {
		padding: 15px;
	}
}

.ingredients__ttl {
	font-size: 40px;
	text-align: left;
	line-height: 60px;
	margin-bottom: 60px;
}

@media screen and (max-width: 1000px) {
	.ingredients__ttl {
		font-size: 34px;
		line-height: 40px;
		margin-bottom: 40px;
	}
}

@media screen and (max-width: 600px) {
	.ingredients__ttl {
		font-size: 24px;
		line-height: 30px;
	}
}

.ingredients__ttl span {
	color: #59317C;
}

.ingredients__attention {
	font-size: 18px;
	font-weight: bold;
	line-height: 36px;
	margin-bottom: 80px;
	padding: 0 60;
}


@media screen and (max-width: 600px) {
	.ingredients__attention {
		padding: 0 15px;
	}
}

.ingredients-list_negative .ingredients-list-item__img:after {
	content: '-';
}

.ingredients-list_plus .ingredients-list-item__img:after {
	content: '+';
}

.ingredients-list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	margin-bottom: 40px;
}

@media screen and (max-width: 600px) {
	.ingredients-list-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.ingredients-list-item__img {
	position: relative;
	display: block;
	width: 150px;
	height: 150px;
	min-width: 150px;
	border-radius: 50%;
	background: #f3f3f3;
	border: solid 10px #fff;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.19);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.19);
}

@media screen and (max-width: 600px) {
	.ingredients-list-item__img {
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
		margin-bottom: 15px;
	}
}

.ingredients-list-item__img:after {
	content: '';
	position: absolute;
	display: block;
	top: -10px;
	right: -10px;
	font-size: 40px;
	line-height: 40px;
	color: #fff;
	text-align: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #005EB8;
}

.ingredients-list-item__txt {
	font-size: 16px;
	line-height: 30px;
	margin-left: 20px;
}

@media screen and (max-width: 600px) {
	.ingredients-list-item__txt {
		margin-left: 0;
	}
}

.ingredients-list-item__ttl {
	font-size: 34px;
	font-weight: bold;
	margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
	.ingredients-list-item__ttl {
		font-size: 22px;
	}
}

.ingredients-list-item__ttl span {
	font-size: 24px;
	font-weight: normal;
}

@media screen and (max-width: 600px) {
	.ingredients-list-item__ttl span {
		font-size: 18px;
	}
}

.event {
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
}

.event-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	margin: 40px 0;
}

.event-item:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

@media screen and (max-width: 1000px) {
	.event-item:nth-child(even) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.event-item:nth-child(even) .event-item__ttl:before {
	right: -140px;
	left: initial;
}

@media screen and (max-width: 1000px) {
	.event-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.event-item__img {
	width: 40%;
	height: auto;
	border: 10px solid #fff;
}

@media screen and (max-width: 1000px) {
	.event-item__img {
		max-width: 380px;
		width: 100%;
		min-width: 280px;
	}
}

.event-item__txt {
	width: 50%;
	font-size: 16px;
	line-height: 30px;
}

@media screen and (max-width: 1000px) {
	.event-item__txt {
		width: 100%;
		padding: 4%;
	}
}

@media screen and (max-width: 600px) {
	.event-item__txt {
		line-height: 25px;
	}
}

.event-item__date {
	background-color: #005EB8;
	padding: 0 15px;
	line-height: 25px;
	display: inline-block;
	color: #fff;
}

@media screen and (max-width: 1000px) {
	.event-item__date {
		margin-top: 10px;
	}
}

.event-item__ttl {
	position: relative;
	font-size: 34px;
	line-height: 45px;
	font-weight: bold;
	margin: 30px 0;
}

@media screen and (max-width: 600px) {
	.event-item__ttl {
		font-size: 28px;
		line-height: 32px;
		margin: 20px 0;
	}
}

.event-item__ttl:before {
	content: '';
	display: block;
	position: absolute;
	top: 20px;
	left: -140px;
	width: 120px;
	height: 2px;
	background-color: #005EB8;
}

@media screen and (max-width: 1000px) {
	.event-item__ttl:before {
		display: none;
	}
}

.event-item__btn {
	margin-top: 20px;
}

.event-detail {
	padding: 0 60px;
	max-width: 1240px;
	width: 100%;
}

@media screen and (max-width: 600px) {
	.event-detail {
		padding: 0 15px;
	}
}

.event-detail__txt {
	background-color: rgba(255, 255, 255, 0.6);
	position: relative;
	margin: 30px 10%;
	padding: 20px;
}

@media screen and (max-width: 1000px) {
	.event-detail__txt {
		margin: 30px 0;
	}
}

.event-detail__txt p {
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 30px;
}

.event-detail__date {
	background-color: #00A0DC;
	display: inline-block;
	color: #fff;
	padding: 0 10px;
}

@media screen and (max-width: 1000px) {
	.event-detail__date {
		margin-top: 15px;
	}
}

.event-detail__img {
	float: left;
	border: 10px solid #fff;
	-webkit-transform: translate(-40px, -40px);
	-ms-transform: translate(-40px, -40px);
	transform: translate(-40px, -40px);
	width: 50%;
}

@media screen and (max-width: 1000px) {
	.event-detail__img {
		width: 100%;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		transform: translate(0, 0);
		float: none;
	}
}

.event-page-nav {
	width: 100%;
	text-align: center;
}

.event-page-nav__arrow {
	position: relative;
	padding: 0 20px;
	font-size: 16px;
	text-transform: uppercase;
	color: #00A0DC;
	font-weight: bold;
	text-decoration: none;
}

@media screen and (max-width: 600px) {
	.event-page-nav__arrow {
		padding: 0 5px;
	}
}

.event-page-nav__arrow:after {
	content: '';
	display: block;
	position: absolute;
	width: 45px;
	height: 12px;
	background: url("images/page-nav-arrow.svg") center center no-repeat;
	top: 50%;
}

.event-page-nav__arrow:hover {
	opacity: 0.6;
}

.event-page-nav__arrow_next:after {
	left: 100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.event-page-nav__arrow_prev:after {
	right: 100%;
	-webkit-transform: rotate(180deg) translateY(50%);
	-ms-transform: rotate(180deg) translateY(50%);
	transform: rotate(180deg) translateY(50%);
}

.certificate-page {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	width: 100%;
	margin-top: 40px;
	max-width: 1240px;
}

@media screen and (max-width: 600px) {
	.certificate-page {
		margin-top: 20px;
	}
}

.certificate-page-item {
	width: calc(33.3% - 20px);
	margin: 10px;
	padding: 2%;
	background: rgba(255, 255, 255, 0.6);
	position: relative;
}

@media screen and (max-width: 600px) {
	.certificate-page-item {
		width: calc(50% - 20px);
	}
}

.certificate-page-item__img {
	width: 100%;
	height: 100%;
}

.certificate-page-item__link {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.certificate-page-item__link:before {
	content: '';
	display: block;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: url("images/certificate-zoom.png") center center no-repeat rgba(91, 47, 131, 0.6);
	border: 20px solid rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 600px) {
	.certificate-page-item__link:before {
		border-width: 5px;
		background-size: 20px;
	}
}

.certificate-page-item__link:hover:before {
	visibility: visible;
	opacity: 1;
}

.certificate-page-item__ttl {
	font-size: 14px;
	color: mainBlue;
	margin-top: 10px;
}

.about-us {
	padding: 30px 50px;
	margin-top: 30px;
	background-color: rgba(255, 255, 255, 0.4);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	-webkit-box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
	box-shadow: 0 0 47px rgba(219, 220, 241, 0.49);
	max-width: 1240px;
	width: 100%;
}

@media screen and (max-width: 1000px) {
	.about-us {
		padding: 20px;
	}
}

.about-us__img {
	border: 5px solid #fff;
	max-width: 530px;
	height: auto;
	-webkit-transform: translateX(-80px);
	-ms-transform: translateX(-80px);
	transform: translateX(-80px);
	float: left;
	margin-right: -40px;
	vertical-align: middle;
}

@media screen and (max-width: 1000px) {
	.about-us__img {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		float: none;
		margin: 0 auto;
		display: block;
		max-width: 490px;
	}
}

@media screen and (max-width: 600px) {
	.about-us__img {
		max-width: 100%;
	}
}

.about-us__ttl {
	font-size: 34px;
	font-weight: normal;
	font-weight: bold;
	line-height: 45px;
	margin: 30px 0;
	text-align: center;
}

@media screen and (max-width: 1000px) {
	.about-us__ttl {
		text-align: center;
	}
}

@media screen and (max-width: 600px) {
	.about-us__ttl {
		font-size: 28px;
		line-height: 40px;
	}
}

.about-us__ttl_light {
	color: #00A0DC;
	font-size: 30px;
	line-height: 48px;
	font-weight: normal;
}

@media screen and (max-width: 600px) {
	.about-us__ttl_light {
		font-size: 24px;
		line-height: 40px;
	}
}

.conformity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-align-items: center;
	margin: 20px 0;
}

@media screen and (max-width: 1000px) {
	.conformity {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.conformity__img {
	margin-right: 50px;
}

@media screen and (max-width: 1000px) {
	.conformity__img {
		margin: 15px 0;
	}
}

.conformity__txt {
	font-size: 16px;
	line-height: 30px;
}

.industry {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-line-pack: end;
	align-content: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	height: 410px;
	position: relative;
	width: 100%;
	margin-left: auto;
}

@media screen and (max-width: 1000px) {
	.industry {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-align-items: center;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		height: auto;
	}
}

.industry__ttl {
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	font-size: 50px;
	font-weight: bold;
	text-transform: uppercase;
	color: rgba(136, 158, 194, 0.2);
	left: 0;
	top: 77%;
	width: 10%;
	margin: 25px 0;
}

@media screen and (max-width: 1000px) {
	.industry__ttl {
		position: initial;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		color: #00A0DC;
		width: 100%;
		text-align: center;
		margin: 25px 0;
	}
}

@media screen and (max-width: 600px) {
	.industry__ttl {
		font-size: 30px;
	}
}

.industry__ttl:before {
	position: absolute;
	content: '';
	display: block;
	top: 130px;
	left: 280px;
	height: 2px;
	width: 160px;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	background-color: #00A0DC;
}

@media screen and (max-width: 1000px) {
	.industry__ttl:before {
		display: none;
	}
}

.industry__img {
	margin: 5px;
	border: 10px solid #fff;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.19);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.19);
	height: 195px;
}

@media (max-width: 1000px) and (min-width: 600px) {
	.industry__img {
		width: calc(25% - 10px);
		height: auto;
	}
}

@media screen and (max-width: 599px) {
	.industry__img {
		width: calc(50% - 10px);
		height: auto;
	}
}

.industry__img:last-child {
	height: 400px;
}

@media screen and (max-width: 1000px) {
	.industry__img:last-child {
		width: 100%;
		height: auto;
	}
}

.about-us .certificate {
	margin: 40px 0;
	position: relative;
	/* -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start; */
}

@media screen and (max-width: 1000px) {
	.about-us .certificate {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
	}
}

.about-us .certificate__img {
	width: 25%;
	margin: 5px;
	-webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.19);
	box-shadow: 0 0 9px rgba(0, 0, 0, 0.19);
	border: 10px solid #fff;
}

@media screen and (max-width: 1000px) {
	.about-us .certificate__img {
		width: calc(33.3% - 10px);
	}
}

.about-us .certificate img {
	width: 100%;
	height: auto;
}

.about-us .certificate__ttl {
	position: relative;
	right: -40px;
	top: -141px;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	font-size: 50px;
	font-weight: bold;
	text-transform: uppercase;
	color: rgba(136, 158, 194, 0.2);
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	width: 10%;
	text-align: center;
	margin: 25px 0;
}

@media screen and (max-width: 1000px) {
	.about-us .certificate__ttl {
		position: initial;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

@media screen and (max-width: 600px) {
	.about-us .certificate__ttl {
		font-size: 30px;
	}
}

/* .about-us .certificate__ttl:before {
	position: absolute;
	content: '';
	display: block;
	top: 130px;
	left: 0;
	height: 2px;
	width: 160px;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	background-color: #00A0DC;
} */

@media screen and (max-width: 1000px) {
	.about-us .certificate__ttl:before {
		display: none;
	}
}

.faq {
	/*padding: 30px;*/
	/*background-color: rgba(255, 255, 255, 0.6);*/
	margin: 0;
	max-width: 1240px;
}

@media screen and (max-width: 1000px) {
	.faq {
		padding: 10px;
	}
}

.quest {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	background-color: white;
	padding: 40px 35px;
	position: relative;
	z-index: 10;
}

.quest .author {
	font-size: 16px;
	font-style: italic;
	font-weight: normal;
	white-space: nowrap;
	color: #c6b1a4;
}

.quest::after {
	content: '';
	position: absolute;
	top: 100%;
	right: 35px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 30px 30px 0;
	border-color: transparent white transparent transparent;
}

.quest__ttl {
	color: #005EB8;
	font: 700 30px "rotonda";
	margin-bottom: 20px;
	margin-top: 0;
	width: 70%;
	display: flex;
    align-items: center;
    gap: 20px;
}
.quest__ttl-img {
	max-width: 35px;
}

@media screen and (max-width: 1000px) {
	.quest__ttl {
		font-size: 20px;
	}
}
@media (max-width: 768px) {
	.quest__ttl {
		width: 60%;
	}
}

@media (max-width: 600px) {
	.quest__ttl {
		width: 100%;
	}
}
.quest__txt {
	font-size: 15px;
	line-height: 24px;
	color: #5e5864;
	width: 100%;
}

@media screen and (max-width: 1000px) {
	.quest__txt {
		width: 100%;
	}
}

.ans-show-btn {
	font-size: 14px;
	border: 1px solid #005EB8;
	color: #005EB8;
	height: 35px;
	line-height: 1em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 1000px) {
	.ans-show-btn {
		max-width: 30%;
	}
}
@media (max-width: 768px) {
	.ans-show-btn {
		max-width: 40%;
	}
}
@media (max-width: 600px) {
	.ans-show-btn {
		max-width: unset;
		margin: 5px auto;
	}
}

.ans-show-btn:hover {
	color: #fff;
	background-color: #005EB8;
}

/*.ans-show-btn_opened {*/
/*color: #00A0DC;*/
/*border-color: #00A0DC;*/
/*}*/
/*.ans-show-btn_opened:hover {*/
/*color: #fff;*/
/*background-color: #00A0DC;*/
/*}*/
.ans {
	padding: 20px;
	background-color: #005EB8;
	visibility: hidden;
	opacity: 0;
	max-height: 0;
	-webkit-transform: translateY(-20px);
	-ms-transform: translateY(-20px);
	transform: translateY(-20px);
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.ans a:link {
	color: #00A0DC;
}

.ans a:visited {
	color: #2fc7f7;
}

.ans::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 35px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 30px 0 0;
	border-color: #005EB8 transparent transparent transparent;
}

@media screen and (max-width: 1000px) {
	.ans {
		padding: 10px;
	}
}

.ans__ttl {
	color: white;
	font: 700 30px "rotonda";
	margin-bottom: 20px;
	margin-top: 0;
}

.ans__txt {
	font-size: 14px;
	color: white;
	line-height: 24px;
}

.ans_visible {
	visibility: visible;
	opacity: 1;
	max-height: 1000px;
	margin-bottom: 55px;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.map {
	position: relative;
	width: 100%;
	height: 670px;
	margin-top: 60px;
	z-index: 20;
	max-width: 1240px;
}

@media screen and (max-width: 1000px) {
	.map {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		display: -webkit-flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-justify-content: center;
		height: 100%;
	}
}

.map:after {
	content: '';
	position: absolute;
	display: block;
	width: 80%;
	height: 100%;
	border: 2px solid #fff;
	top: -30px;
	left: 100px;
	z-index: -1;
}

@media screen and (max-width: 1000px) {
	.map:after {
		display: none;
	}
}

.contacts {
	width: 520px;
	padding: 40px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 47px rgba(241, 219, 235, 0.47);
	box-shadow: 0 0 47px rgba(241, 219, 235, 0.47);
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 10;
}

@media screen and (max-width: 1000px) {
	.contacts {
		position: static;
		top: auto;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		width: 50%;
	}
}

@media screen and (max-width: 600px) {
	.contacts {
		width: 100%;
	}
}

.contacts .social-share {
	margin: 0 0 30px 0;
}

.contacts__address {
	position: relative;
	font-size: 30px;
	line-height: 48px;
	color: mainBlue;
	font-weight: bold;
	text-transform: uppercase;
}

@media screen and (max-width: 1000px) {
	.contacts__address {
		font-size: 20px;
		line-height: 28px;
	}
}

.contacts__address:after {
	content: '';
	position: absolute;
	display: block;
	width: 80px;
	height: 2px;
	background-color: pink;
	bottom: -10px;
	left: 0;
}

.contacts__phone {
	position: relative;
	font-size: 30px;
	line-height: 48px;
	padding-left: 40px;
	color: #000;
	text-decoration: none;
	display: block;
	margin-top: 30px;
}

@media screen and (max-width: 1000px) {
	.contacts__phone {
		font-size: 20px;
	}
}

.contacts__phone:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: calc(50% - 16px);
	width: 32px;
	height: 32px;
	background: url("images/smartphone.png") center center no-repeat;
}

.contacts__email {
	position: relative;
	font-size: 24px;
	line-height: 48px;
	padding-left: 40px;
	color: #000;
	display: block;
	margin-bottom: 40px;
}

@media screen and (max-width: 1000px) {
	.contacts__email {
		font-size: 18px;
		margin-bottom: 20px;
	}
}

.contacts__email:before {
	content: '';
	display: block;
	position: absolute;
	width: 31px;
	height: 27px;
	left: 0;
	top: calc(50% - 14px);
	background: url("images/telegram.png") center center no-repeat;
}

#mapCont {
	margin-left: auto;
	background-color: #ccc;
	width: 80%;
	height: 100%;
}

@media screen and (max-width: 1000px) {
	#mapCont {
		width: 100%;
		height: 40vh;
	}
}

.block-404 {
	margin: 3% auto;
	text-align: center;
}

@media screen and (max-width: 600px) {
	.block-404 {
		max-width: 300px;
	}
}

@media screen and (max-width: 600px) {
	.block-404__img {
		width: 100%;
	}
}

.block-404__ttl {
	font-size: 3em;
	text-transform: uppercase;
	color: #00A0DC;
	font-weight: bold;
	margin: 0.2em 0;
}

@media screen and (max-width: 600px) {
	.block-404__ttl {
		font-size: 2em;
	}
}

.block-404__txt {
	font-size: 1.2em;
}

@media screen and (max-width: 600px) {
	.block-404__txt {
		font-size: 1em;
	}
}

.block-404__btn {
	margin: 1em auto;
}

@-webkit-keyframes soaring {
	0% {
		-webkit-transform: translateY(0) rotate(-90deg);
		transform: translateY(0) rotate(-90deg);
	}
	50% {
		-webkit-transform: translateY(-4px) rotate(-90deg);
		transform: translateY(-4px) rotate(-90deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(-90deg);
		transform: translateY(0) rotate(-90deg);
	}
}

@keyframes soaring {
	0% {
		-webkit-transform: translateY(0) rotate(-90deg);
		transform: translateY(0) rotate(-90deg);
	}
	50% {
		-webkit-transform: translateY(-10px) rotate(-90deg);
		transform: translateY(-10px) rotate(-90deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(-90deg);
		transform: translateY(0) rotate(-90deg);
	}
}

.b-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	padding: 0 35px;
}

.b-form__header,
.b-form__body {
	width: 100%;
}

.b-form__header h3,
.b-form__body h3 {
	font: normal 30px 'rotonda';
	margin-top: 0;
}

.b-form__header p,
.b-form__body p {
	font: normal 17px / 1.7em 'arial';
}

.tao-form-field {
	width: 100%;
	margin-top: 20px;
}

.tao-form-field input,
.tao-form-field textarea {
	border: none;
	border-bottom: 1px solid #005EB8;
	border-radius: 10px;
	width: 100%;
	background-color: transparent;
	padding: 10px 16px 10px 16px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	min-width: 100%;
	max-width: 100%;
	max-height: 100px;
	min-height: 40px;
	height: 40px;
}

.tao-form-field-QUESTION {
	position: relative;
}

.tao-form-field-QUESTION .field {
	/* position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	border: none;
	border-bottom: 1px solid #005EB8;
	border-radius: 10px; */
}

.tao-form-field input::-webkit-input-placeholder {
	font: 16px 'arial';
	font-style: italic;
	color: #005EB8;
}

.tao-form-field input:-ms-input-placeholder {
	font: 16px 'arial';
	font-style: italic;
	color: #005EB8;
}

.tao-form-field textarea::-webkit-input-placeholder {
	font: 16px 'arial';
	font-style: italic;
	color: #005EB8;
}

.tao-form-field textarea:-ms-input-placeholder {
	font: 16px 'arial';
	font-style: italic;
	color: #005EB8;
}

.tao-form-field textarea::-ms-input-placeholder {
	font: 16px 'arial';
	font-style: italic;
	color: #005EB8;
}

.tao-form-field textarea::placeholder {
	font: 16px 'arial';
	font-style: italic;
	color: #005EB8;
}

.tao-form-field textarea {
	-webkit-transition: height 250ms;
	-o-transition: height 250ms;
	transition: height 250ms;
}

.tao-form-field textarea:focus {
	height: 100px;
}

.tao-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	width: 100%;
}

.tao-form .submit {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}

.tao-form .submit-button {
	margin-top: 45px;
	font-size: 14px;
	border: 1px solid #005EB8;
	color: white;
	background-color: #005EB8;
	height: 35px;
	line-height: 1em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 2.6em;
	border-radius: 20px;
	text-decoration: none;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	font-weight: normal;
	letter-spacing: 0.5px;
	cursor: pointer;
}

@media all and (min-width: 640px) {
	.b-form__header {
		width: 30%;
	}

	.b-form__body {
		width: 70%;
	}

	.tao-form-field {
		width: 47%;
	}
}

/* === === === === === === ===*/
/* === .b-product-props === */
.b-product-props {
	margin-top: 20px;
	margin-bottom: 20px;
	width: 100%;
}

.b-product-props__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* margin: 0 -23px; */
	padding: 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: space-evenly;
	width: 100%;
	align-items: baseline;
	
}

.b-product-props__item {
	display: block;
	max-width: calc((100% / 4) - 46px);
	text-align: center;
	margin: 0 20px 20px;
}

.b-product-props__item-img,
.b-product-props__item-title {
	max-width: 114px;
	display: block;
	margin: 0 auto;
}

.b-product-props__item-img {
	max-width: 100%;
}

.b-product-props__item-title {
	margin-top: 30px;
	font-size: 16px;
	font-family: 'Arial';
	font-style: italic;
	color: #00A0DC;
	line-height: 24px;
	word-spacing: 10px;
}

@media all and (max-width: 640px) {
	.b-product-props__list {
		justify-content: space-evenly;
		
	}
	.b-product-props__item {
		 max-width: calc((100% / 2) - 46px); 
		 margin: 0 10px 10px;
	}
	.b-product-props__item-title {
		font-size: 14px;
		word-spacing: unset;
		word-wrap: break-word;
		line-height: 20px;
	}

}



/* === .b-product-props === */
/* === === === === === === ===*/
/* === === === === === === ===*/
/* === b-catalog === */
.b-catalog {
	background: #ffffff;
	width: 100%;
	/* b-catalog__parent */
	/* b-catalog__child */
	/* b-catalog__props */
}

.b-catalog__container {
	padding-right: 0;
	padding-left: 0;
	max-width: 1740px;
	margin: 0 auto;
}

.b-catalog__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.b-catalog__ceil--parent, .b-catalog__ceil--prop {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__ceil--parent, .b-catalog__ceil--prop {
		width: 20%;
		margin-right: 0;
		margin-left: 0;
	}
}

.b-catalog__ceil--two, .b-catalog__ceil--four {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__ceil--two, .b-catalog__ceil--four {
		width: 80%;
		margin-right: 0;
		margin-left: 0;
	}
}

.b-catalog__ceil--parent {
	text-align: center;
	margin-bottom: 60px;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__ceil--parent {
		margin-bottom: 0;
		text-align: left;
	}
}

.b-catalog__ceil--prop {
	display: none;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__ceil--prop {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.b-catalog__parent-title {
	width: 100%;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__parent-title {
		margin-bottom: 60px;
	}
}

.b-catalog__parent-link {
	color: #00A0DC;
	font-family: 'Rotonda';
	text-align: center;
	font-size: 30px;
	font-weight: normal;
	line-height: 1.5em;
	text-transform: uppercase;
	text-decoration: none;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__parent-link {
		font-size: 50px;
	}
}

.b-catalog__parent-description {
	color: #005EB8;
	font-family: 'Arial';
	font-size: 18px;
	font-weight: normal;
	line-height: 1.5em;
	width: 100%;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__parent-description {
		width: auto;
	}
}

.b-catalog__child-item {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	text-align: center;
	position: relative;
	padding: 60px 40px;
	min-height: 445px;
	margin: 0 10px 20px;
	overflow: hidden;
	background-size: contain;
	background-color: #fbf8f6;
	background-repeat: no-repeat;
}

@media screen and (min-width: 64em) {
	.b-catalog__child-item {
		width: calc(100% / 3 - 20px);
	}
}

@media screen and (min-width: 103.25em) {
	.b-catalog__child-item {
		min-height: 400px;
		min-width: 400px;
		max-width: unset;
	}
}

@media screen and (min-width: 108.75em) {
	.b-catalog__child-item {
		text-align: left;
		height: 445px;
		min-width: 445px;
		max-width: 445px;
	}
}

@media screen and (min-width: 64em) {
	.b-catalog__child-item:nth-of-type(1n) {
		background-image: url(images/catalog/catalog-bg-1.png);
	}
}

@media screen and (min-width: 108.75em) {
	.b-catalog__child-item:nth-of-type(1n) {
		background-image: url(images/catalog/catalog-bg-1.png);
	}
}

@media screen and (min-width: 64em) {
	.b-catalog__child-item:nth-of-type(2n) {
		background-image: url(images/catalog/catalog-bg-2.png);
	}
}

@media screen and (min-width: 108.75em) {
	.b-catalog__child-item:nth-of-type(2n) {
		background-image: url(images/catalog/catalog-bg-2.png);
	}
}

@media screen and (min-width: 64em) {
	.b-catalog__child-item:nth-of-type(3n) {
		background-image: url(images/catalog/catalog-bg-3.png);
	}
}

@media screen and (min-width: 108.75em) {
	.b-catalog__child-item:nth-of-type(3n) {
		margin-right: 0;
		background-image: url(images/catalog/catalog-bg-3.png);
	}
}

.b-catalog__child {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.b-catalog__child--large .b-catalog__child-item {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	margin: 0 10px 20px;
	padding: 30px 40px;
}

@media screen and (min-width: 64em) {
	.b-catalog__child--large .b-catalog__child-item {
		background-image: url(images/catalog/catalog-bg-large-4.png);
	}
}

@media screen and (min-width: 103.25em) {
	.b-catalog__child--large .b-catalog__child-item {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		margin: 0 10px 20px;
		max-width: unset;
	}
}

@media screen and (min-width: 108.75em) {
	.b-catalog__child--large .b-catalog__child-item {
		margin-right: 0;
		padding: 60px 70px;
		max-width: 1450px;
		background-image: url(images/catalog/catalog-bg-large-4.png);
	}
}

.b-catalog__child--large .b-catalog__child-item:last-child {
	margin-bottom: 0;
}

.b-catalog__child--large .b-catalog__child-item-content {
	width: 100%;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__child--large .b-catalog__child-item-content {
		position: relative;
		width: 50%;
		padding: 0 0 0 23%;
		margin: 0 0 0 50%;
	}
}

.b-catalog__child--large .b-catalog__child-item-title {
	width: 100%;
	height: auto;
	overflow: unset;
}

.b-catalog__child--large .b-catalog__child-item-link {
	line-height: 1.3em;
	color: #00A0DC;
	text-transform: uppercase;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__child--large .b-catalog__child-item-link {
		font-size: 50px;
	}
}

.b-catalog__child--large .b-catalog__child-item-text {
	margin-bottom: 30px;
}

.b-catalog__child--large .b-catalog__child-item-img {
	right: auto;
	left: 0;
	top: 0;
}

.b-catalog__child-item-title {
	height: 3.5em;
	overflow-y: hidden;
	width: 100%;
	margin-bottom: 25px;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__child-item-title {
		width: 50%;
	}
}

.b-catalog__child-item-link {
	color: #005EB8;
	font-family: 'Rotonda';
	font-size: 30px;
	font-weight: normal;
	line-height: 1em;
	text-decoration: none;
}

.b-catalog__child-item-detail {
	font-family: 'Arial';
	text-decoration: none;
	padding: 12px 34px;
	background-color: #00A0DC;
	color: #fff;
	font-size: 17px;
	border-radius: 50px;
	font-weight: bold;
	display: none;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__child-item-detail {
		display: inline-block;
	}
}

.b-catalog__child-item-text {
	font-size: 18px;
	margin-bottom: 30px;
}

@media screen and (min-width: 108.75em) {
	.b-catalog__child-item-img {
		position: absolute;
		right: 10px;
		bottom: 35px;
	}
}

.b-catalog__props {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-right: 20px;
}

.b-catalog__props-item {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	overflow: hidden;
}

.b-catalog__props-item--rom .b-catalog__props-item-img {
	width: 114px;
	height: 114px;
}

.b-catalog__props-item--aloe .b-catalog__props-item-img {
	width: 114px;
	height: 114px;
}

.b-catalog__props-item--per .b-catalog__props-item-img {
	width: 137px;
	height: 114px;
}

.b-catalog__props-item-title {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-family: 'rotonda';
	font-weight: lighter;
	color: #00A0DC;
}

.b-catalog__props-item-img-block {
	width: 130px;
}

/* === b-catalog === */
/* === === === === === === ===*/

/* b-include */

.b-include {
	margin: 80px 0;
	padding: 0 20px;
	display: flex;
	justify-content: center;
}

.b-include:nth-of-type(4) {
	margin-top: -100px;
	margin-bottom: 180px;
}

.b-include__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 90rem;
}

.b-include__container {
	margin: 0 auto;
}

.b-include__content h1,
.b-include__content h2,
.b-include__content p {
	margin-top: 0;
}

.b-include__content h1,
.b-include__content h2 {
	text-align: center;
}

.b-include__content ul li {
	list-style: disc;
}

@media screen and (min-width: 320px) {
	.b-include__content h1,
	.b-include__content h2 {
		font-size: 2.2em;
		font-weight: bold;
	}

	.b-include__content p,
	.b-include__content ul li {
		font-size: 1em;
	}

	.b-include__container {
		width: 95%;
	}
}

@media screen and (min-width: 640px) {
	.b-include__container {
		width: 75%;
	}
}

@media screen and (min-width: 1024px) {
	.b-include__content h1,
	.b-include__content h2 {
		font-size: 3.2em;
		font-weight: bold;
	}

	.b-include__content p,
	.b-include__content ul li {
		font-size: 1.4em;
		line-height: 1.2em;
	}

	.b-include__container {
		width: 88%;
	}
}

@media screen and (min-width: 1400px) {
	.b-include__container {
		width: 85%;
	}
}

/* b-include */

/* b-review */


.b-review:not(:last-of-type) {
	margin-bottom: 25px;
}

.b-review__item {
	margin: 0;
	font-size: 16px;
}

.b-review__item:not(:last-of-type) {
	margin-bottom: 10px;
}



.b-review__name {
	font-weight: bold;
}


.b-review__link {
	text-decoration: none;
	color: #005EB8;
}

.b-review__head {
	display: flex;
}

.b-review__stars-container {
	display: flex;
	flex-grow: 0;
	position: relative;
	margin-right: 15px;
	order: -1;
}

.b-review__stars {
	font-size: 40px;
	line-height: 16px;
	position: relative;
}

.b-review__stars--off {
	color: #c7c7c7;
}

.b-review__stars--on {
	color: #00A0DC;
	overflow: hidden;
	position: absolute;
}

.b-review__stars--on_1 {
	width: 20%;
}

.b-review__stars--on_2 {
	width: 40%;
}

.b-review__stars--on_3 {
	width: 60%;
}

.b-review__stars--on_4 {
	width: 80%;
}

.b-review__stars--on_5 {
	width: 100%;
}
/* b-review */

.section-text li {
	list-style: disc;
}

.b-video {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.b-video__item {
	display: flex;
	flex-wrap: wrap;
	margin-right: 5%;
	flex-direction: column;
	width: 100%;
	margin: 15px 0;
}

@media (min-width: 620px) {
	.b-video__item {
		width: 47.5%;
	}
}

.b-video__item:nth-child(3n) {
	margin-right: 0;
}

.b-video__video {
	position: relative;
	flex-grow: 1;
	width: 100%;
	padding-top: 50%;
}

.b-video__video-iframe {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.b-video__name {
	flex-grow: 2;
	background-color: #00A0DC;
	padding: 15px;
	color: #ffffff;
}