html, body {
	margin: 0;
	width:100%;
	overflow-x: hidden;
}

h1, h2, p, div, span, form, input, select, button, label, table, td, a {
	max-width: 100%;
	box-sizing: border-box;
	color: #000;
	font-family: Roboto;
	font-size: 17px;
}

img {
	max-width: 100%;
}

a, button {
	outline: 0;
}

a {
	text-decoration: none;
}

h1 {
	font-family: RobotoBold;
	color: #65c4c5;
	font-size: 38px;
	line-height: 45px;
	letter-spacing: 1px;
	text-align:center;
	/*text-shadow: 0px 3px 3px #fff;*/
	margin:30px 0 15px;
}

h2 {
	position:relative;
	font-family: RobotoBold;
	color: #65c4c5;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 15px;
    padding: 0;	
}

h3 {
	/*color: #fff;*/
	font-size: 15px;
	line-height:26px;
	text-align: center;
	text-transform: uppercase;
	margin-top: 0;
}

b, strong {
	font-family: RobotoBold;
}

td {
	padding:15px;
}

.container {
	width:1200px;
	margin:0 auto;
	padding:30px 0 30px;
	
}

.flex {
	display:flex;
	justify-content:space-between;
}

.divider {
	height:138px;
}

/* Шапка */

#header {
	position:fixed;
	z-index:10;
	width:100%;
	top:0;
	font-family:tryclotherbold;
	background: linear-gradient(to bottom, silver, #b6aa59);
	background: url(../img/bg_header.jpg?v=0.0.2) no-repeat;
	background-size: 100% 100%;
}	

#header:before {
	position:absolute;
	content:'';
	z-index:0;
	width:100%;
	height:145px;
	left:0;
	top:0;
	background: linear-gradient(to bottom, rgba(100,100,100,0.1), rgba(150,150,150,0.3));
	/*background: linear-gradient(to bottom, rgba(50,50,50,0.5), rgba(150,150,150,0.5));*/
	/*background-color: rgba(75,204,163,0.35);*/
}

.first_line {
	position: relative;
	z-index:1;
	display: flex;
	justify-content:space-between;
	align-items:center;
	padding:5px 15px 2px;
}

.first_line *{
	color: #fff;
}

.first_line .logo {
	height:100px;
}

.logo img {
	height: 100%;
	max-width: none;
}

.links_menu {
	margin-left:40px;
}

.location {
	
}

.links_menu *, .location * {
	color:#222;
}

.links_menu div {
	margin-left:15px;
}

.mini_logo {
	display: none;
}

.si_phone {
	color:#fff;
	font-size:17px;
}

.si_phone img {
	position: relative;
	top:8px;
}

.menu_trigger {
	display: none;
}

.popup_menu {
	display: none;
}

#header .icon_link {
	display:none;
} 

.soc_icons {
	display:flex;
	justify-content: center;
	align-items:center;
}

.soc_icon img {
	position: relative;
	width:35px;
	top:7px;
	margin-left:12px;
}

.soc_icon.last {
	margin-right: 30px;
}

.menu {
	position:relative;
	z-index:10;
	width:100%;
	display: flex;
	margin:0 auto;
	/*background: url(../img/fonz/fon3.jpg?v=0.0.1);*/
	background-color: #2ad8c6;
	/*background: #f0ee27;*/
	padding: 5px 15px 5px;
}

.menu.fixed {
	position:fixed;
	top:0;
	left:0;
}

.menu .logo {
	height:32px;
}

.menu a {
	position: relative;
	font-size: 14px;
	color: #fff;
	margin: 0 11px;
	text-decoration: none;
	text-transform: uppercase;
}

.without_submenu {
	padding-top:3px;
}

.with_submenu {
  position: relative;
  display: flex;
  margin-right: 5px;
  padding:6px;
}

.with_submenu:hover .submenu {
	display: block
}

.with_submenu:before {
	position: absolute;
	content: '';
	width: 6px;
	height: 12px;
	top: 5px;
	right: 0;
	background-size: cover;
	transform: rotate(90deg);
}

.submenu {
  display: none;
  position: absolute;
  z-index: 1;
  width: auto;
  min-width:180px;
  max-width: none;
  top: 26px;
  left: 0px;
  background: url(../img/fonz/fon3.jpg?v=0.0.1);
  background: #2ad8c6;
  padding-bottom: 10px;
}

.submenu div a {
  display: block;
  font-family: tryclotherbold;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  padding: 3px 5px 3px;
}

.submenu a:after {
	display: none;
}

.submenu div:hover {
	color: #fff;
	background-color: #2ad8c6;
}

.submenu div:hover a {
	color: #fff;
}

.popup_menu_trigger {
	display:none;
    position: fixed;
    content: "☰";
    right: 20px;
    top: 106px;
    z-index: 10;
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.popup_menu{
	display: none;
	position: absolute;
	right:10;
	top:200px;
	background: rgba(250,224,105,1);
}

/* Форма */

.form {
	position:relative;
    width: 380px;
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
    background: #2ad8c6;
    color: #212121;
    border-radius: 5px;
    text-align: center;
}

.form * {
	color:#fff;
}

.form__title {
	font-family: tryclotherbold;
    color: #fff !important;
    font-size: 22px;
	line-height:25px;
	margin: 0 0 20px;
}

.input_form {
    display: block;
    width: 100%;
    padding: 5px 10px;
    margin-bottom: 15px;
    border: 1px solid #65c4c5;
	border-radius:4px;
	color:#333;
	font-size:14px;
    font-weight: 300;
    border-radius: 3px;
    outline: 0;
    transition: all .2s ease-in
}

.form textarea {
	width:100%;
	height:80px;
	color:#333;
	margin-bottom:15px;
	border-radius:4px;
	padding:4px 8px;
}

.form-ui.form-ui_checkbox, .form__checkbox {
    font-size: 12px
}

.form__checkbox input, .form__checkbox span {
    display: inline-block;
    vertical-align: middle
}

.form__checkbox span {
    font-size: 12px;
    letter-spacing: .05rem
}

.form .btn {
	width: 100%;
	margin-bottom:15px;
}

.form.gorizontal {
	width: 100%;
	border-radius:0;
}

.form.gorizontal .fields {
	display:flex;
}

.form.gorizontal .fields input, .form.gorizontal .fields .predmets_select {
	margin-right:15px;
	margin-bottom:0;
}

.bg {
	background-color: rgb(100,170,179);
	background: url(../img/fonz/fon2.jpg?v=0.0.1);
}


.bg_white {
	background-color: rgb(255,255,255, 0.3);
}

#str1 {
	position:relative;
	min-height:700px;
	overflow:hidden;
	padding: 0 0 75px;
	margin-top:0;
}

#str1 .container {
	position: relative;
	width:1180px;
	margin:0 auto;
	padding-top:50px;
}

#str1 .video, #str1 .slider {
	position:absolute;
	z-index:-2;
	width:100%;
	height:100%;
}

#str1 .slider .item {
	position: relative;
}

#str1 .slider .item:before {
	position:absolute;
	content:'';
	z-index:1;
	width:100%;
	height:100%;
	left:0;
	top:0;
	background-color: rgba(0, 0, 0, 0.4);
}



#str1 video {
	width:100%;
	height:100%;
}

#str1 .title {
	position:relative;
	padding:20px;
	font-family: Gogol;
	margin-bottom:30px;
}

#str1 .title:before {
	position:absolute;
	content:'';
	z-index:-1;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

#str1 .offer {
	width:50%;
	font-family: 'nautilus pompilius';
	color:#fff;
	font-size:35px;
	font-style:italic;
	font-weight:bold;
}

#str1 .offer p {
	color:#fff;
}

#str1 .lead_magnit {
	color:#fff;
	font-size:17px;
	text-transform: uppercase;
	margin-bottom:10px;
}

#str1 img {
	position: relative;
	top:6px;
	margin-right:2px;
}

#str1 h2 {
	font-family: Gogol;
	color: #19fce4;
	font-size:95px;
	letter-spacing:2px;
	text-align: left;
	opacity:0.8;
}

#str2 {
	position: relative;
}

#str2:before {
	position:absolute;
	content:'';
	z-index:-2;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background: url('../img/fonz/fon1.png');
	opacity:0.5;
}

#str2:after {
	position:absolute;
	content:'';
	z-index:-1;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: rgba(100,170,179,0.6);
}

#str2 a {
	color:212121;
}

#str2 h2 {
	color: #212121;
}

#str2 .item .img img {
	transition: all 0.4s linear;
	
}

#str2 .item:hover .img img {
	width:110%;
}

#str3 h2, #str3 h3 {
	color: #65c4c5;
}

#str3{
	text-align: center;
}

.text {
	font-size: 20px; 
	text-align: center;
}

.advantage {
	display:flex;
	justify-content: space-between;
	width:990px;
	margin:40px auto;
	text-align: center;
	
}

.advantage a {
	text-align: center;
	
}

.btn {
	position: relative;
	width:320px;
	color: #fff;
	font-size: 16px;
	text-align: center;
	padding: 10px 25px;
	border: 1px solid #fff;
	border-radius: 5px;
	background-color: #65c4c5;
	margin:0 auto;
	cursor:pointer;
}

.btn:hover {
	opacity:0.9;
}

.plus .item {
	width:220px;
	margin:0 auto;
}

.plus .item a {
	color: #212121;
	text-align: center;
	
}

.plus .item .img {
	display: flex;
	width:100px;
	height: 100px;
	justify-content:center;
	align-items:center;
	margin: 0 auto 15px;
}

.plus .item img {
	max-width:80px;
	max-height:80px;
}

.plus .item .name {
	color:#fff;
}

.fotozal1 .item {
	width:320px;
	margin:0 auto;
}

.fotozal1 .item a {
	color: #444;
	text-align: center;
	
}

.fotozal1 .item .img {
	width:320px;
	height: 220px;
	margin: 0 auto 15px;
}

.fotozal1 .item img {
	width:auto;
	height:auto;
	min-width:100%;
	min-height:100%;
}


.sotrudniki .item {
	width:320px;
	margin:0 auto;
}

.sotrudniki .item a {
	color: #444;
	text-align: center;
	Font-size: 15px;
	
}

.sotrudniki .item .img {
	width:210px;
	height: 250px;
	overflow:hidden;
	text-align:center;
	margin: 0 auto 15px;
}

.sotrudniki .item img {
	max-width:100%;
}

.sotrudniki .owl-next, .sotrudniki .owl-prev {
	border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
}

/* Слайдер */

.owl-stage {
	max-width: none;
}

.owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-next, .owl-prev, .prev_sotr_link, .next_sotr_link {
    position: absolute;
	width: 30px;
    height: 30px;
    margin-top: -15px;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    text-indent: -200px;
    overflow: hidden;
    top: 50%
}

.owl-prev {
    transform: rotate(45deg);
    left: -50px
}

.owl-next {
    transform: rotate(225deg);
    right: -50px
}

.prev_sotr_link, .next_sotr_link {
	border-left: 4px solid #333;
    border-bottom: 4px solid #333;
}

.prev_sotr_link {
    transform: rotate(45deg);
    left: 20px
}

.next_sotr_link {
    transform: rotate(225deg);
    right: 20px
}


.name {
	font-family: RobotoBold;
	text-align: center;
}

.pos_gal {
	
	text-align: center;	
}

.pos_gal a{
	
	text-align: center;
}	

#contacts {
	position:relative;
}

#contacts h2 {
	position:absolute;
	top:15px;
	left:0;
	z-index:1;
	width:100%;
	background: transparent;
	color: #333;
}

#contacts h2:before, #contacts h2:after {
	display: none;
}


#map {
	width:100%;
	height:440px;
}

#map_foto {
	position:absolute;
	z-index: 5;
	bottom:8%;
	left:3%;
}

#map_foto img {
	width:320px;
	max-width:100%;
} 

#map_contacts {
	position:absolute;
	z-index: 5;
	width:320px;
	bottom:8%;
	right:4%;
	color:#212121;
	padding:12px 20px;
	background-color: rgba(200,200,200, 0.8);
}

#map_contacts * {
	color:#212121;
	font-size:15px;
	line-height:18px;
	letter-spacing:0;
}

#map_contacts .phone a {
	text-decoration:underline;
}

/* Подвал */
#floor {
	color: #fff;
	display: flex;
	justify-content: space-between;
	padding:18px 30px 13px 20px;
	background-color: #2ad8c6;
}

#floor a{
	color: #fffaeb;
}


.floor1 {
	display:flex;
}

.floor1 .links {
	padding-right:15px;
}

.floor1 .link {
	margin-bottom:3px;
}

.floor1 a {
	font-size: 15px;
	line-height: 20px;
	border-bottom: 1.3px solid #fff;
}

#floor .soc_icons {
	margin-top:5px;
}

#floor .soc_icons img {
	width:35px;
	margin:0 5px;
}

.links_menu_two a {
	font-size: 20px;
}

.parallax  { 
	text-align:right;
}

.online_btn {
	display: flex;
	position: fixed;
	z-index: 10;
	width: 100px;
	height:100px;
	bottom: 100px;
	right: 15px;
	align-items: center;
	justify-content: center;
	color:#fff;
	font-size: 15px;
	letter-spacing:0;
	text-align:center;
	background-color: #2ad8c6;
	border: 2px solid #fff;
	border-radius:50px;
	cursor:pointer;
}

.reservi-modal-wrapper {
	max-width:800px;
	max-height:640px;
	left: calc(50% - 400px) !important;
	top:20px !important;
}

.overlay {
	display:none;
	position:fixed;
	z-index:10;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background-color:rgba(0,0,0,0.5);
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: calc(50% - 175px) !important;
	top: calc(50% - 200px) !important
}

.js-modal-close {
	position: absolute;
	width: 20px;
	height: 20px;
	z-index:10;
	right: 7px;
	top: 7px;
	background: url(../img/icons/btn_close.svg);
	background-size: 100%;
	cursor: pointer
}

#lb_button-call_widjet {
	display:none;
}

#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_note.show{
    display: block;
    text-align: left;
}

.cookie_content {
  display: flex;
}

.cookie_content p{
    margin: 0;
    font-size: 14px;
    text-align: left;
    color: black;
}

.cookie_accept{
    width:50%;
}

@media (max-width: 990px){
   .cookie_content {
     display: block;
     text-align: center;
   }
   
   .cookie_accept{
    width:80%;
  }
}

@media screen and (max-width:1400px) {
	
}

@media screen and (max-width:1280px) {
	
}

@media screen and (max-width:990px) {
	h2 {
		font-size:26px;
	}
	
	td {
		padding:7px;
		font-size:13px;
	}
	
	/* Шапка */
	#header	.logo {
		display: none;
	}
	
	.mini_logo {
		display: block;
		position:fixed;
		left:5px;
		top:5px;
		width:67px;
	}

	.mini_logo img {
		width:100%;
	}
	
	#header {
		position:fixed;
		display:flex;
		z-index:10;
		width:100%;
		height:64px;
		left:0;
		top:0;
		justify-content: space-between;
		padding:5px 5px 50px 30px;
		background-color:rgb(0,201,185);
		box-shadow: none; 
	}

	#header:before {
		height: 64px;
	}

	#header .soc_icons {
		position:fixed;
		right:100px;
		top:5px;
	}
	
	.soc_icon img {
		width:28px;
		top:11px;
		margin-left:10px;
	}
	
	#header .si_phone {
		display: none;
	}
	
	#header .si_phone.mobile {
		display:block;
		position:fixed;
		width:25px;
		height:35px;
		overflow:hidden;
		right:50px;
		top:10px;
	}
	
	#header .location_link {
		width: 30px;
		height: 28px;
	}
	
	#header .location {
		position: fixed;
		display: block;
		width: 30px;
		height: 28px;
		overflow: hidden;
		right: 80px;
		top: 18px;
	}

	#header .location img {
		width:28px !important;
	}
	
	#header, .first_line {
		padding:0;
		margin:0;
	}
	
	.flex {
		display: block;
	}
	
	.divider {
		height:50px;
	}
	
	/* Меню */
	.menu {
		position: fixed;
		width: 100%;
		top:63px;
		padding:5px 0;
	}
	
	.menu.mobile {
		display: block;
	}
	
	.with_submenu {
		display:block;
		padding:6px 0 0;
	}

	.with_submenu .plusminus {
		display:inline-block;
		color:#fff;
		font-size:22px;
	}
	
	.submenu {
		position:relative;
		top:0;
	}

	.popup_menu_trigger {
		display: block;
		position: fixed;
		content: '☰';
		right: 20px;
		top: 10px;
		z-index: 10;
		display: flex;
		color:#fff;
		font-size: 30px;
		font-weight: bold;
		cursor: pointer;
	}	
	
	iframe {
		max-width:100%;
	}
	
	.container {
		width:100%;
	}
	
	#str1 {
		min-height: auto;
		padding:0;
	}
	
	/*
	#str1 .slider {
		height:80% !important;
	}
	
	#str1 .slider .item.mobile, #str1 .slider img {
		height:100%;
	}
	*/
	
	#str1 .slider .item.mobile, #str1 .slider .item.mobile img {
		width:115%;
		max-width: none;
	}
	
	#str1 h2 {
		font-size:24px;
	}
	
	#str1 .offer {
		width:100%;
		font-size:28px;
		margin-top:75px;
	}
	
	#str1 .offer p {
		font-size:28px !important;
	}
	
	#str1 .lead_magnit {
		text-transform: none;
	}

	#str3 img {
		float:none;
		width:100%;
		height:auto;
	}
	
	.cosmetology_text {
		width:100% !important;
		text-align: left !important;
		padding:0 !important;
		margin-bottom:20px;
	}
	
	.cosmetology_img {
		position:relative !important;
		top:0px !important;
		height: auto !important;
	}
	
	/* Слайдер */
	
	.slider .item .img, .slider img {
		min-height:500px;
	}
	
	.slider .owl-prev, .slider .owl-next {
		display: none;
	}
	
	.owl-prev {
		transform: rotate(45deg);
		left: 10px
	}

	.owl-next {
		transform: rotate(225deg);
		right: 10px
	}
	
	#map {
		height:300px;
	}

	#map_foto {
		display:none;
		position:static;
		width:100%;
		margin:0px auto;
	}

	#map_foto img {
		width:100%;
	} 
	
	#map_contacts {
		position: static;
		width:100%;
		text-align: center;
		margin:0px auto 0;
		border:none;
	}
	
	/* Подвал */
	
	#floor {
		display: block;
		text-align: center;
	}
	
	.floor1 {
		width:200px;
		justify-content: center;
		margin:0 auto;
	}
	
	#floor .soc_icons {
		width:200px;
		text-align:center;
		margin:5px auto;
	}
	
	.online_btn {
		width:80px;
		height:80px;
		font-size:13px;
		bottom:15px;
	}
	
	.reservi-modal-wrapper {
		width:100% !important;
		max-width:100%;
		max-height:100%;
		left: 0 !important;
		top:0 !important;
	}
  
  .parallax {
    text-align: center;
  }
}

@media screen and (max-width:540px) {
	td, td div, td p, td span, td font {
		font-size:13px !important;
	}
	
	#str1 .title {
		position: relative;
		padding: 20px 20px 0;
		font-family: Gogol;
		margin-bottom: 0px;
	}
	
	#str1 .offer {
		width:100%;
		font-size:21px;
		margin-top:100px;
	}
	
	#str1 .offer p {
		font-size:21px !important;
	}
	
	.fotozal1 .item {
		width:280px;
		margin:0 auto;
	}
	
	.modal {
		left:0;
		width:100%;
	}
}