body {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-stretch: normal;
	font: 16px Roboto-Regular, Arial, sans-serif;
	letter-spacing: .5px;
	color: black;
	background-color: white;
}

:root {
	--main-color: #1C4587;
	--secondary-color: #C9DAF8;
	--text-color: #333;
	--link-color: #1C4587;
	--bg-color-1: #B7B7B7;
}

@font-face {
	font-family: 'Roboto-Bold';
	src: url(/fonts/Roboto-Bold.ttf);
}

@font-face {
	font-family: 'Roboto-Regular';
	src: url(/fonts/Roboto-Regular.ttf);
}

@font-face {
	font-family: 'RobotoCondensed-Regular';
	src: url(/fonts/RobotoCondensed-Regular.ttf);
}

@font-face {
	font-family: 'RobotoCondensed-Bold';
	src: url(/fonts/RobotoCondensed-Bold.ttf);
}

* {
	box-sizing: border-box;
	outline: 0;
}

select, button {
	cursor: pointer;
}

figure, h1, h2, h3, p {
	margin: 0;
}

a {
	text-decoration: none;
	color: inherit;
	display: block;
}

p {
	font-size: 16px;
}

.page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
	position: relative;
}

footer {
	margin-top: auto;
}

.w-page {
	max-width: 1300px;
	margin: auto;
	padding: 0 10px;
}

.error-input {
	display: none;
	color: red;
	padding: 3px 0;
	font-size: 13px;
}

.none {
	display: none;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	background-color: #1C1C1C;
	color: white;
	padding: 0 20px;
}

.header__logo {
	display: flex;
	align-items: center;
}

.header .nav-item {
	display: inline-block;
	margin: 10px;
	padding: 3px 10px;
	font-size: 18px;
}

.header .nav-item:last-child {
	margin-right: 0;
	padding-right: 0;
}

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

main {
	margin-top: 60px;
}

.cover__inner {
	background-image: url(/images/pic_1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 94vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 0;
  	overflow: hidden;
}

.cover__inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* степень затемнения */
  z-index: -1;
}

.cover__txt {
	color: white;
	text-align: center;
	max-width: 1000px;
	padding: 0 20px;
}

.cover__txt p:first-child {
	font-size: 56px;
	margin-bottom: 20px;
}

.cover__txt p {
	font-size: 28px;
}

.cover__txt p:last-child {
	font-size: 20px;
	color: #00ff00;
	margin-top: 20px;
}

.cover__arrow {
	width: 32px;
	height: 32px;
	cursor: pointer;
	position: absolute;
	bottom: 20px;
	left: 50%;
}

.cover__arrow img {
	width: 100%;
	height: 100%;
}

.logo {
	font-size: 20px;
	color: white;
	margin: 0 20px;
}

.cmp-1 {
	background-color: #C9DAF8;
	padding: 40px;
}
.cmp-1__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 90%;
	max-width: 800px;
	margin: auto;
}

.cmp-1__header {
	font-family: "roboto-bold";
	font-size: 24px;
	margin-bottom: 40px;
	text-align: center;
  	letter-spacing: 2px;
}

.cmp-1__txt p {
	font-size: 16px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.menu-icon__body {
	width: 40px;
	height: 40px;
	background-color: transparent;
	position: relative;
	cursor: pointer;
}

.menu-icon {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	display: none;
}

.menu-icon__body span,
.menu-icon__body span::after,
.menu-icon__body span::before {
	height: 2px;
	width: 24px;
	background-color: white;
	position: absolute;
	top: 50%;
	margin-top: -1px;
	left: 50%;
	margin-left: -12px;
}

.menu-icon__body span::after,
.menu-icon__body span::before {
	content: '';
	transition: 0.5s;
}

.menu-icon__body span::before {
	transform: translateY(-5px);
}

.menu-icon__body span::after {
	transform: translateY(5px);
}

.menu-icon__body_active span {
	height: 0;
}

.menu-icon__body_active span::before {
	transform: rotate(-45deg)
}

.menu-icon__body_active span::after {
	transform: rotate(45deg)
}

.popup-menu {
	width: 250px;
	height: 100vh;
	padding: 10px;
	background-color: #1C1C1C;
	position: fixed;
	top: 60px;
	left: 0;
	z-index: 1000;
	display: none;
}

.popup-menu__nav a {
	display: inline-block;
	color: white;
	text-decoration: none;
	padding: 10px;
	font-size: 18px;
}

.popup-menu__nav {
	/* display: none; */
	margin-top: 10px;
}


.cmp-2__body {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.cmp-2__item {
	display: flex;
	flex-direction: column;
	max-width: 365px;
	margin: 15px;
}

.cmp-2 img {
	width: 100%;
	height: 245px;
}

.cmp-2__title{
	font-size: 20px;
	margin: 20px 0;
	background-color: var(--main-color);
	color: white;
	padding: 10px;
	text-align: center;
	width: 100%;
	border-radius: 4px;
}

.cmp-2__list li {
	font-size: 16px;
	margin-bottom: 7px;
}

.h {
	text-align: center;
	font-size: 42px;
	margin: 40px 0;
	color: var(--main-color);
}

.div-whats-app {
	text-align: center;
	margin: 40px 0;
}

.btn-1 {
	display: inline-block;
	font-size: 16px;
	background-color: var(--main-color);
	color: white;
	padding: 12px 45px;
	border-radius: 4px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin: 0 15px;
	text-align: center;
}

.cmp_3__body {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px;
}

.cmp_3__item {
	width: 365px;
	height: auto
}

.cmp_3__item img {
	width: 100%;
	height: auto;
}

.cmp-4 {
	display: flex;
	justify-content: center;
	background-color: #EEEEEE;
	padding: 40px 20px;
}

.cmp-4__body {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 20px;
	max-width: 1000px;
}

.cmp-4__item {
	width: 280px;
}


.cmp-4__group {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.cmp-4__group img {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}

.cmp-4__title {
	font-size: 18px;
	font-family: roboto-bold;
}

.slider-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: auto;
}

.slider-item img {
	width: 100%;
	height: 100%;
}


/* .main-slider */

.main-slider {
	width: 500px;
	margin: 40px auto;
}

.main-slider .owl-dots,
.main-slider .owl-dots.disabled {
   text-align: center;
   margin-top: 20px;
   display: block;
}

.main-slider button.owl-dot,
.main-slider button.owl-active {
   border: 1px solid gray;
   border-radius: 50%;
   width: 15px;
   height: 15px;
   margin: 0 5px;
}

.main-slider button.owl-dot.active {
   background-color: gray;
}

.cmp-6 {
	margin: 40px 0;
}

.cmp-6__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 84px;
	background-image: url(/images/bg.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
}

.cmp-7 {
	margin: 20px 0;
}

.cmp-7__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.cmp-7__inner .btn-1 {
	width: 220px;
}

.icon {
	width: 32px;
	height: 32px;
}

.cmp-8 {
	margin-top: 20px;
	padding: 20px;
	background-color: var(--bg-color-1);
}

.cmp-8__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.cmp-8__group-icons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: auto;
}

.cmp-8__txt {
	font-size: 13px;
	text-align: center;
	margin-bottom: 20px;
}

.cmp-8__txt span {
	padding-right: 5px;
}

.cmp-9__img-bg {
	width: 100%;
	height: 280px;
	background-image: url(/images/bg_2.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cmp-9 .reviews {
	background-image: url(/images/bg_3.jpg);
}

.cmp-9__txt {
	font-weight: normal;
	font-size: 64px;
	color: white;
	text-align: center;
	position: absolute;
	z-index: 1;
	padding: 20px;
	overflow: hidden;
}

.w-1	{
	width: 100%;
	max-width: 1150px;
	margin-left: auto;
	margin-right: auto;
}

.sep-line	{
	height: 1px;
	width: 100%;
	background-color: var(--bg-color-1);
	margin-top: 20px;
	margin-bottom: 20px;
}

.cmp-10 {
	text-align: center;
}

.cmp-10__inner {
	padding: 40px 20px ;
}

[data-page="about"] .cmp-10__inner {
	padding: 20px 20px 0 20px;
	margin-top: 30px;
}

.cmp-10 .txt-1 {
	font-size: 22px;
	color: var(--main-color);
	margin-bottom: 40px;
}

.p-header {
	font-family: 'Roboto-Bold';
	font-size: 30px;
	margin-bottom: 20px;
}

.p-txt {
	font-size: 16px;
	padding-bottom: 10px;
}

.cmp-10 .p-header {
	padding-top: 20px;
}

.cmp-11__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	padding: 0 15px;
}

.cmp-11__img {
	column-count: 2;
  	column-gap: 15px
}

.cmp-11__img img {
	width: 100%;
  	margin-bottom: 15px;
  	border-radius: 6px;
}

.p-1 {
	font-size: 16px;
	line-height: 1.2;
	color: var(--text-color);
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 15px;
}

.cmp-14 .p-1 {
	margin-bottom: 10px;
}

.cmp-15 {
	padding: 20px;
}

.cmp-15__row {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.cmp-15__col {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 50%;
	flex-grow: 1;
}

.cmp-15__col-l {
	width: 20%;
}

.cmp-15__col-r-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.cmp-15__img {
	width: 100%;
	max-width: 360px;
	height: auto;
	border-radius: 50%;
}

.cmp-15__img img {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.cmp-15__family {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.cmp-15__desc p {
	margin-bottom: 10px;
}

.cmp-15__footer p {
	font-style: italic;
	font-size: 15px;
	color: var(--main-color);
	margin-top: 10px;
}

.cmp-16__inner {
	text-align: center;
	padding: 0 20px;
}

.cmp-16__title {
	font-size: 36px;
	margin-bottom: 20px;
}

.cmp-16__date {
	font-size: 16px;
	color: gray;
	margin-bottom: 20px;
}

.cmp-17 {
	margin: 0 20px;
}

.cmp-17__inner {
	text-align: center;
}

.cmp-17__inner p {
	margin-bottom: 10px;
}

.cmp-17__title {
	font-size: 22px;
	font-family: 'Roboto-Bold';
	margin-bottom: 40px;
}

.moss-care__txt {
	margin-top: 40px;
	margin-left: 20px;
	margin-right: 18px;
	max-width: 800px;
	text-align: center;
	font-size: 22px;
}

ul {
	padding-left: 35px;
	padding-right: 20px
}

li {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 1.2;
}

ul > li > ul  {
	margin-left: -10px;
}

.moss-care li:last-child {
	margin-bottom: unset;
}

.moss-care__video {
	display: flex;
	justify-content: center;
	margin: 40px 20px;
}

.moss-care__video iframe {
	max-width: 560px;
}

b {
	font-family: 'Roboto-Bold';
}

.cmp-9 .moss-care {
	background-image: url(/images/bg_4.jpg);
}

.cmp-9 .about {
	background-image: url(/images/bg_5.jpg);
}

[data-page="about"] .cmp-15:last-child .sep-line	{
	height: 0;
}