
*,
*:after,
*:before {
	text-decoration: none;
	font-size: 1em;
	outline: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 0;
	margin: 0;
	}	
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	}
a, img, a img, i {
	border: none;
	}
body {
	background: white;
	line-height: 1;
	margin: 0;
	font-family: RobotoCondensed,sans-serif; color: #b7bbbf; height: 100%; min-height: 100%; position: relative;
	}
ul, ol, dir, menu {
	list-style: none;
	}
sub, sup {
	vertical-align: baseline;
	}
table {
	border-collapse: collapse;
	border-spacing: 0;
	}
a {
	color: inherit;
	}

@font-face {
    font-family: RobotoCondensed;
    src: url(../fonts/RobotoCondensed-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: RobotoCondensed;
    src: url(../fonts/RobotoCondensed-LightItalic.ttf) format("truetype");
    font-weight: 300;
    font-style: italic
}

@font-face {
    font-family: RobotoCondensed;
    src: url(../fonts/RobotoCondensed-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: RobotoCondensed;
    src: url(../fonts/RobotoCondensed-Italic.ttf) format("truetype");
    font-weight: 400;
    font-style: italic
}

@font-face {
    font-family: RobotoCondensed;
    src: url(../fonts/RobotoCondensed-Bold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: RobotoCondensed;
    src: url(../fonts/RobotoCondensed-BoldItalic.ttf) format("truetype");
    font-weight: 600;
    font-style: italic
}


.menu-header {
	height: 48px;
	background-color: #eee;
	overflow: hidden;
    position: fixed;
    z-index: 1001;
    width: 100%;
	opacity: 0.8;
	display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.logo2 {

	
}

.logo2 img {
	padding: 15px 15px 10px 15px;
	height: 43px;
}

.header-phones {
	text-align: center;
    font-size: 16px;
    padding-top: 5px;
	line-height: normal;
	width: 100%;
	color: #1c1f2a;
}

.header-phones p {
	float: right;
	padding-top: 9px; /* 22.05.2020*/
}

.container, 
.content-wrap {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.container {
	background: #373a47;
}

.menu-wrap a {
	color: #b8b7ad;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
	color: #e3cba4;
}

.content-wrap {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

.content {
	position: relative;
	background: #b4bad2;
}

.content::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: opacity 0.4s, transform 0s 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

/* Menu Button */
.menu-button {
	position: relative;
	z-index: 1002;
	margin: 7px;
	padding: 0;
	width: 1.5em;
	height: 34px;
	border: none;
	text-indent: 2.5em;
	font-size: 1.5em;
	color: transparent;
	background: rgba(238, 238, 238, 0.5);
	float: left;
}
		
.menu-button::before {
	position: absolute;
	top: 0.25em;
	right: 0.2em;
	bottom: 0.25em;
	left: 0.2em;
	background: linear-gradient(#373a47 20%, transparent 20%, transparent 40%, #373a47 40%, #373a47 60%, transparent 60%, transparent 80%, #373a47 80%);
	content: '';
}

.menu-button:hover {
	opacity: 0.6;
}

/* Close Button */
.close-button {
	width: 1em;
	height: 1em;
	position: absolute;
	right: 1em;
	top: 1em;
	/*overflow: hidden;*/
	text-indent: 1em;
	font-size: 0.75em;
	border: none;
	background: transparent;
	color: transparent;
}

.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #bdc3c7;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
	overflow: hidden;
	/*position: absolute;*/
        position: fixed;
	z-index: 1010;
	width: 310px;
	height: 100vh;
	background: #1c1f2a;
	padding: 60px 50px 30px;
	font-size: 1em;
	text-align: center;
	-webkit-transform: translate3d(-320px,0,0);
	transform: translate3d(-320px,0,0);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

/*.menu, 
.icon-list {
	height: 100%;
}*/

.icon-list {
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
	margin-top: 50px;
	
}

.icon-list a {
	color: #b7bbbf;
	display: block;
	padding: 5px 0;
	-webkit-transform: translate3d(0,500px,0);
	transform: translate3d(0,500px,0);
}

.icon-list,
.icon-list a {
	-webkit-transition: -webkit-transform 0s 0.4s;
	transition: transform 0s 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.icon-list a:nth-child(2) {
	-webkit-transform: translate3d(0,1000px,0);
	transform: translate3d(0,1000px,0);
}

.icon-list a:nth-child(3) {
	-webkit-transform: translate3d(0,1500px,0);
	transform: translate3d(0,1500px,0);
}

.icon-list a:nth-child(4) {
	-webkit-transform: translate3d(0,2000px,0);
	transform: translate3d(0,2000px,0);
}

.icon-list a:nth-child(5) {
	-webkit-transform: translate3d(0,2500px,0);
	transform: translate3d(0,2500px,0);
}

.icon-list a:nth-child(6) {
	-webkit-transform: translate3d(0,3000px,0);
	transform: translate3d(0,3000px,0);
}

.icon-list a span {
	
	font-size: 1em;
}

/* Shown menu */
.show-menu .menu-wrap {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: -webkit-transform 0.8s;
	transition: transform 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.show-menu .icon-list,
.show-menu .icon-list a {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: -webkit-transform 0.8s;
	transition: transform 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.show-menu .icon-list a {
	-webkit-transition-duration: 0.9s;
	transition-duration: 0.9s;
}

.show-menu .content::before {
	opacity: 1;
	-webkit-transition: opacity 0.8s;
	transition: opacity 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}







.sidebar {position: absolute;
    z-index: 900;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100vh;
    width: 310px;
    padding: 55px 50px 26px;
	background: #1c1f2a;
	text-align: center;
	
}
.sidebar li /* убрать потом*/{
    padding: 5px 0;
}
.logo {
	text-align: center;
   
	
	height: 120px;                                          /* убрать потом*/
}
.logo img {
	
	height: 100%;                                          /* убрать потом*/
}

.navilist {
	position: relative;
	text-transform: uppercase;
}
.copyright {
	position: relative; 
	font-size: 0.7em;
}

.sliderarea {
	position: relative;
    width: calc(100vw - 310px);
    margin-left: 310px;
    height: 100vh;
    overflow: hidden;
	object-fit: cover;
	background-color: #656e6f;
}


.bg-img {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-position: center center;
}

.bg-img-1 {
    background-image: url(../img/index/1.1.jpg);
}
.bg-img-2 {
    background-image: url(../img/index/2.2.jpeg);
}
.bg-img-3 {
    background-image: url(../img/index/3.3.jpg);
}
.bg-img-4 {
    background-image: url(../img/index/4.4.jpg);
}
.bg-img-5 {
    background-image: url(../img/index/5.5.jpg);
}
.bg-img-6 {
    background-image: url(../img/index/6.6.jpg);
}
.bg-img-c1 {
    background-image: url(../img/cont1.jpg);
}
.bg-img-c2 {
    background-image: url(../img/cont2.jpg);
}
.owl-carousel .owl-item img
 {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	display: inline-block;   
    position: absolute;

	overflow: hidden;
	width: auto;
	height: 100%;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-position: center center;
}


.owl-carousel .owl-item {height: 100vh;}



.owl-carousel blockquote {
	padding: 100px 80px 10px 80px;
	/*background: rgba(28, 31, 42, 0.6);*/
		background: rgba(28,31,42,0);
		background: -moz-linear-gradient(top, rgba(28,31,42,0) 0%, rgba(28,31,42,0) 72%, rgba(28,31,42,0.75) 89%, rgba(28,31,42,0.75) 79%, rgba(28,31,42,0.3) 100%);
		background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(28,31,42,0)), color-stop(72%, rgba(28,31,42,0)), color-stop(89%, rgba(28,31,42,0.45)), color-stop(79%, rgba(28,31,42,0.45)), color-stop(100%, rgba(28,31,42,0.3)));
		background: -webkit-linear-gradient(top, rgba(28,31,42,0) 0%, rgba(28,31,42,0) 72%, rgba(28,31,42,0.45) 89%, rgba(28,31,42,0.45) 79%, rgba(28,31,42,0.3) 100%);
		background: -o-linear-gradient(top, rgba(28,31,42,0) 0%, rgba(28,31,42,0) 72%, rgba(28,31,42,0.45) 89%, rgba(28,31,42,0.45) 79%, rgba(28,31,42,0.3) 100%);
		background: -ms-linear-gradient(top, rgba(28,31,42,0) 0%, rgba(28,31,42,0) 72%, rgba(28,31,42,0.45) 89%, rgba(28,31,42,0.45) 79%, rgba(28,31,42,0.3) 100%);
		background: linear-gradient(to bottom, rgba(28,31,42,0) 0%, rgba(28,31,42,0) 72%, rgba(28,31,42,0.45) 89%, rgba(28,31,42,0.45) 79%, rgba(28,31,42,0.3) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1c1f2a', endColorstr='#1c1f2a', GradientType=0 );
	/*max-width: 960px;*/
	color: #fff;
	margin: 0 auto;
	z-index: 100;
	padding-top: 10px;
	font-weight: 300;
	text-shadow: -2px 2px 0 rgba(0,0,0,0.7);
	font-size: 24px;
	position: absolute;
	bottom: 20vh;
}

.owl-carousel h2 {
	color: #fff;
	font-size: 2.2em;
	text-shadow: -2px 2px 0 rgba(0,0,0,0.7);
	display: block;
    position: relative;
	padding-top:200px;

	margin: 30px auto;
	
}


.owl-next{
	position: absolute;
    left: 50%;
	background-color: transparent;
    border: solid 2px #e5e6e7;
	border-color: #ffffff;
	background-image: url(../img/dark-arrow.svg);
	bottom: 20px;
    border-radius: 1.5em;
    margin-left: -1.5em;
	width: 3em;
    height: 3em;
    padding: 0;
	background-size: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
	cursor: pointer;
    display: inline-block;
	transition: background-color 0.2s ease-in-out;
}

.owl-next:hover{
	
	bottom: 25px;
	transition: all .4s cubic-bezier(.28,.72,.29,.91);
}

.owl-dots{
	position: absolute;
    top: 0;
    right: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
  /*  padding-right: 40px; */
	list-style: none;
    padding: 0;
    margin: 0;
	margin-right: 22px;
}

.owl-dot{
	transition-duration: 1s;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(250, 250, 250, 0.5);
    cursor: pointer;
	transition: all .4s cubic-bezier(.28,.72,.29,.91);
	display: list-item;
    text-align: -webkit-match-parent;
	margin-bottom: 10px;
    margin-top: 10px;
	border: solid 1px #b7bbbf;
}

.owl-dot.active{
	background: rgba(250, 250, 250, 1);
}

.color-list a {
    display: inline-block;
    height: 30px;
    width: 30px;
    margin-left: 8px;
    position: relative;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.color-list a::after {
    content: '';
    display: block;
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: -4px;
    top: -4px;
    border: 1px solid #e6e6e6;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.color-list a.active::after, .color-list a:hover::after {
    border-color: #000;
}

.color-list span {
    display: inline-block;
    line-height: 30px;
    vertical-align: top;
    margin-right: 5px;
}

.wrap-cont{position: absolute;
    bottom: 18px;
    left: 91px;}

.wrap-phones{text-align: center;
    font-size: 1em;
    padding-top: 5px;
    line-height: normal;
    width: 100%;
    color: #1c1f2a;
margin-bottom: 10px}


@media screen and (max-width: 960px) {
	.sidebar{
		display: none;
	}
	
	.sliderarea{
		width: 100vw;
		margin: 0;
	}
	
	.owl-carousel blockquote {
	padding: 0.5em 1.6em 0.5em 1.8em;
    width: 100%;
    font-size: 1.2em;
    bottom: 20vh;
	}
	
	.owl-carousel h2 {
		font-size: 1.8em;
	}
	
	.owl-dots {
		margin-right: 0px;
	}
}

@media screen and (min-width: 961px) {
	
	.menu-header {
		display: none;
	}
	
}

@media screen and (max-width:860px) and (orientation:landscape) {
	
	
	.wrap-cont{
        left: 71px;}
	
	.menu-wrap{
	width: 250px;
	font-size: 0.8em;
	padding: 35px 35px 20px;
	}
	
	.logo{
		height: 70px;
	}
	.icon-list{
		margin-top: 30px;
	}
	
	.icon-list a{
		padding: 3px 0;
	}
}