@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,500i,700&subset=cyrillic');
@import url("content.css");
@import url("form.css");
html, body {
	width: 100%;
	height: 100%;
	font-family: 'Roboto', sans-serif;
	font-size: 10px;
	margin: 0;
	padding: 0;
}
body {
	background-color: #ffffff;
	font-size: 1.5rem;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0 0 25px 0;
	padding: 0;
}




/*Loading*/
.loaderArea {
	background: linear-gradient(40deg, #00b7b6 0%, #991f56 100%);
	overflow: hidden;
	position: fixed;
	left: 0;
	top: 0;
	right:0;
	bottom:0;
	z-index: 100000;
}

.loaderArea > div,
.object-location > i,
.post-loading > i {
	width: 80px;
	height: 80px;
	background-image: url(../images/ico/loading.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 100%;
	animation: loader-rotate 3s linear infinite;
	position: absolute;
	top: calc(50% - 40px);
	left: calc(50% - 40px);
	opacity: 0.8;
}

.posts-hide {
	position: relative;
}
.post-loading {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255,255,255, .6);
	display: block;
}
.post-loading > i {
	background-image: url(../images/ico/loading-post.svg);
	background-color: #fff;
	background-size: 70%;
	opacity: 1;
	box-shadow: 0 0 15px rgba(0,0,0,.1);
}

@keyframes loader-rotate {
	0% {
    	transform: rotate(0); 
    }
	100% {
		transform: rotate(360deg); 
	} 
}
/*Loading End*/


/*Alert*/
.alert {
	border: none;
	border-radius: 0px;
	margin: 0 0 25px;
	text-align: center;
	text-transform: uppercase;
	font-size: 1.3rem;
	padding: 25px;
	font-weight: 600;
}
.alert .close {
	outline: none;
}
.formResult .alert {
	margin: 0 10px 25px;
}
/*Alert End*/





/*Header*/
header {
	width: 100%;
	padding: 5px 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 25;
	background: #fff;
	box-shadow: 0 5px 17px rgba(0,0,0,0.2);
	/*transform: background .3s ease, box-shadow .3s ease;*/
}
header > div {
	letter-spacing: -0.3em;
}

.logo,
.top-contacts,
.menu-btn {	
	display: inline-block;
	vertical-align: middle;
}

.logo {
	width: 260px;
}
.logo a {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	height: 70px;
	background-image: url(../images/logo.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
}


/*Header contacts*/
.top-contacts {
	padding: 0 25px 0 0;
	margin: 0;
	list-style: none;
	width: calc(100% - 300px);
	text-align: right;
}
.top-contacts > li {
	display: inline-block;
	vertical-align: middle;
	margin-right: 25px;
	transition: opacity .3s ease;
}
body.in .top-contacts > li {
	opacity: 0;
}
.top-contacts > li > i {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: #10aead;
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
}
.top-contacts > li > i.phone {
	background-image: url(../images/ico/phone.svg);
	background-size: 60%;	
}
.top-contacts > li > i.email {
	background-image: url(../images/ico/email.svg);
	background-size: 60%;
}
.top-contacts > li > span {
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 40px);
	letter-spacing: normal;
	font-size: 1.5rem;
	color: #000;
	padding-left: 10px;
}


.top-social {
	padding-right: 10px;
}
.top-social strong {
	display: block;
	width: 100%;
	margin-bottom: 4px;
	font-size: 1.3rem;
	letter-spacing: normal;
	font-weight: normal;
}
.top-social ul {
	display: inline-block;
	width: auto;
	width: 100%;
	letter-spacing: -0.3em;
	list-style: none;
	text-align: left;
}
.top-social li {
	display: inline-block;
	vertical-align: top;
	width: 20px;
	margin: 0 0 0 10px;
}
.top-social li a {
	text-decoration: none;
}
.top-social i {
	font-size: 1.8rem;
	color: #10aead;	
	transition: all .4s ease; 
}
.top-social li a i:hover {
	opacity: .7;
	color: #d60c52;
}
/*Header End*/




/*Menu*/
.menu-btn {
	width: 40px;
	height: 22px;
	background: transparent;
	border: none;
	outline: none;
	position: relative;
	border-bottom: 2px solid #10aead;
	transition: all .3s ease; 
	cursor: pointer;
}
.menu-btn:before,
.menu-btn:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #10aead;
	transition: all .3s ease; 
}
.menu-btn:before {
	top: 50%;
}
body.in .menu-btn {
	border-bottom: 0px;
}
body.in .menu-btn:before {
	transform: rotate(45deg);
}
body.in .menu-btn:after {
	top: 50%;
	transform: rotate(-45deg);
}
/*Top menu End*/


/*Menu panel*/
.menu-panel {
	position: fixed;
	background: linear-gradient(40deg, #00b7b6 0%, #991f56 100%);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	z-index: 20;
}
.menu-panel > div {
	width: 100%;
	display: table-cell;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 50px;
    z-index: 2;	
    letter-spacing: -0.3em;
}
.mp-info > div {
	display: inline-block;
	vertical-align: top;
	width: 33.333%;
	letter-spacing: normal;
	padding: 0 15px 0 0;
    opacity: 0;
    transform: translateY(150px);
}
body.in .mp-info > div {
	opacity: 1;
	transform: translateY(0);
	transition: all .5s ease;
}
body.in .mp-info > div:nth-child(1) {
	transition-delay: .4s;
}
body.in .mp-info > div:nth-child(2) {
	transition-delay: .6s;
}
body.in .mp-info > div:nth-child(3) {
	transition-delay: .8s;
}



.mp-info h2 {
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 35px;
	padding: 0;
	text-transform: uppercase;
	font-weight: lighter;
}
.mp-info ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.mp-info ul > li {
	display: block;
	width: 100%;
}
.mp-info ul > li a {
	color: #fff;
	display: inline-block;
	padding: 5px 0 5px 15px;
	transition: all .3s ease;
	text-decoration: none;
	font-size: 1.6rem;
	position: relative;
}
.mp-info ul > li a:hover {
	opacity: 0.6;
}

.mp-info ul > li a:before {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	left: 0;
	top: calc(50% - 6px);
	background: url(../images/ico/arrow.svg) center left no-repeat;
	opacity: 0.6;
	background-size: 10px;
}
/*Menu panel End*/



/*Contacts*/
.contacts ul {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.contacts ul li {
	letter-spacing: -0.3em;
	width: 100%;
	margin-bottom: 25px;
}
.contacts ul li:last-child {
	margin-bottom: 0;
}
.contacts ul li i {
	width: 30px;
	height: 30px;
	display: inline-block;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.7;
}
.phone {
	background-image: url(../images/ico/phone.svg);
}
.email {
	background-image: url(../images/ico/email.svg);
}
.address {
	background-image: url(../images/ico/address.svg);
}

.contacts ul li span {
	color: #fff;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: normal;
    padding-left: 15px;
    font-size: 1.6rem;
    line-height: 22px;
    width: calc(100% - 35px);
}
/*Contacts*/



/*Lang*/
.lang-block {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	position: absolute;
	top: 90px;
	z-index: 15;
	opacity: .8;
}
.lang-block > div {
	text-align: right;
}
.yt-servicelink {
	display: none!important;
}
#yt-widget .yt-button_type_left {
   display: none!important;
}
#yt-widget .yt-button_type_right {
    border-radius: 0!important;
}



/*Banner*/
.banner {
	width: 100%;
	height: 630px;
	background: url(../images/banner-bg.jpg) center no-repeat;
	background-size: cover;
	margin-top: 70px;
	position: relative;
	overflow: hidden;
}

.banner:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 50px;
	bottom: 0;
	left: 0;	
	z-index: 10;
	opacity: .5;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+100 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */	
}

.banner:before {
	content: '';
	position: absolute;
	width: 80%;
	height: 50%;
	top: 25%;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: all .7s ease;
	transform: translateX(-100%);
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
	background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */	
}
.banner.show-info:before {
	opacity: .3;
	transform: translateX(0);
}


.banner .container {
	position: relative;
	height: 100%;
	z-index: 2;
}


.banner .container:before,
.banner .container:after,
.banner .container > span {
	content: '';
	width: 384px;
	height: 586px;
	position: absolute;
	bottom: 0;
	right: 15px;	
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
	opacity: 0;
	transition: all .7s ease;
}

.banner .container:before {
	background-image: url(../images/man.png);
	z-index: 3;
	transform: translateX(250px);
	right: 130px;
}
.banner.show-info .container:before {
	opacity: 1;
	transform: translateX(0);
	transition-delay: .1s;
}

.banner .container:after {
	background-image: url(../images/woman.png);
	z-index: 4;
	transform: translateX(250px);
}
.banner.show-info .container:after {
	opacity: 1;
	transform: translateX(0);
	transition-delay: .2s;
}

.banner .container > span {
	background-image: url(../images/woman2.png);
	z-index: 2;
	transform: translateX(300px);	
	right: 320px;
}
.banner.show-info .container > span {
	opacity: 1;
	transform: translateX(0);
}



.banner .container > div {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%) translateX(-100px);
	color: #fff;
	opacity: 0;
	transition: all .3s ease;
	text-shadow: 0 1px 7px rgba(0,0,0,0.3);
	z-index: 5;
}

.banner.show-info .container > div {
	transition-delay: .5s;
	transform: translateY(-50%) translateX(0);
	opacity: 1;
}

.banner .container > div h1 {
	font-size: 4.0rem;
	font-weight: bold;
	margin-bottom: 30px;
}

.banner .container > div span {
	font-size: 1.8rem;
}
/*Banner End*/




/*Breadcrumb*/
.page-title {
	width: 100%;
	height: auto;
	padding: 150px 0 50px;
	margin-top: 70px;
	position: relative;
	overflow: hidden;	
	background: url(../images/banner-bg.jpg) center no-repeat;
	/*background-attachment: fixed;*/
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;	
}
.page-title .container h1 {
	color: #fff;
	padding: 0;
	margin: 0;
	font-size: 2.8rem;
	text-transform: uppercase;
	font-weight: lighter;
}

.breadcrumb {
	background: none;
	padding: 0;
	margin: 0 0 20px;
	color: #fff;
	font-size: 1.4rem;
}
.breadcrumb > .active {
    color: rgba(255,255,255,0.6);
}
.breadcrumb a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: all 0.3s ease;
}
.breadcrumb a:hover {
	opacity: 0.7;
}
/*Breadcrumb*/



/*Category*/
.category {
	display: inline-block;
	vertical-align: top;
	padding: 80px 0 30px;
	background: #f7f6f6;
	width: 100%;
	overflow: hidden;
	text-align: center;
}

.category ul {
	letter-spacing: -0.3em;
	margin: 0 -25px;
	padding: 0;
	list-style: none;
}
.category ul > li {
	display: inline-block;
	vertical-align: top;
	width: calc(33.333% - 50px);
	height: 500px;
	margin: 0 25px 50px;
	box-shadow: 0 1px 15px rgba(0,0,0,0.1);
	background: #fff;
	transition: box-shadow .5s ease;
	overflow: hidden;
}
.category ul > li:hover {
	box-shadow: 0 1px 30px rgba(16,174,173,.8);
}
.category ul > li a {
	display: block;
	width: 100%;
	height: 100%;
}
.category ul > li a > span {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all .3s ease;
}
.category ul > li:hover a > span {
	opacity: .7;
}
.category ul > li a h4 {
	display: block;
	width: 110%;
	position: absolute;
	bottom: 0;
	left: -5%;
	padding: 90px 20px 20px;
	margin: 0;
	text-align: center;
	color: #000;
	letter-spacing: normal;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 1.3rem;
	z-index: 2;
	text-shadow: 0 0 15px #fff;
	transition: all .3s ease;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+27,ffffff+100&0+0,1+58 */
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.47) 27%, rgba(255,255,255,1) 58%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.47) 27%,rgba(255,255,255,1) 58%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.47) 27%,rgba(255,255,255,1) 58%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
.category ul > li:hover a h4 {
	color: #10aead;
}


.more-cat {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 30px;	
}
/*Category End*/



/*Title*/
.main-title {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	font-size: 2.8rem;
	text-transform: uppercase;
	font-weight: lighter;
	color: #000;
	margin-bottom: 80px;
	overflow: hidden;
}
.main-title.white {
	color: #fff;
}
.main-title > span {
	display: inline-block;
	vertical-align: top;
	position: relative;
	max-width: 70%;
	padding: 0 15px;
}
.main-title > span:before,
.main-title > span:after {
	content: "";
	position: absolute;
	display: block;
	width: 300%;
	height: 12px;
	left: -300%;
	top: calc(50% - 6px);
	border-top: 2px solid #10aead;
	border-bottom: 2px solid #10aead;
}
.main-title > span:after {
	left: auto;
	right: -300%;
}

.main-title.white > span:before,
.main-title.white > span:after {
	border-color: #fff;
	opacity: .5;
}
/*Title End*/



/*Advantage*/
.advant {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	position: relative;
	background-image: url(../images/advent-bg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 90px 0 20px;
	overflow: hidden;
}
.advant:before,
.advant:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: .4;
	z-index: 1;
}

.advant:before {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e00ab0+100&0+0,1+100 */
	background: -moz-linear-gradient(45deg, rgba(255,255,255,0) 0%, rgba(224,10,176,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, rgba(255,255,255,0) 0%,rgba(224,10,176,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, rgba(255,255,255,0) 0%,rgba(224,10,176,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#e00ab0',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */	
}

.advant:after {
	opacity: .2;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#3f9cd2+0,ffffff+100&1+0,0+100 */
	background: -moz-linear-gradient(45deg, rgba(63,156,210,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, rgba(63,156,210,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, rgba(63,156,210,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3f9cd2', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */	
}

.advant > div {
	position: relative;
	z-index: 5;
}
.advant > div ul {
	letter-spacing: -0.3em;
	padding: 0;
	margin: 0 -50px;
	list-style: none;
}
.advant > div ul li {
	display: inline-block;
	vertical-align: top;
	width: calc(25% - 100px);
	margin: 0 50px 50px;
	text-align: center;
	letter-spacing: normal;
}

.advant > div ul li > span {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 45px;
	position: relative;
	width: 160px;
	padding-top: 160px;
	background: #fff;
	border-radius: 100%;
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: center;
	box-shadow: 0 0 40px rgba(0,0,0,0.1);
}
.advant > div ul li > span:before {
	content: "";
	position: absolute;
	width: 150%;
	height: 4px;
	right: -150%;
	top: calc(50% - 2px);
	background: #fff; 
	display: block;
	opacity: 0.5;
}
.advant > div ul li:last-child > span:before {
	display: none;
}

.advant > div ul li h3 {
	color: #fff;
	text-transform: uppercase;
	font-size: 2.0rem;
	font-weight: normal;
	text-shadow: 0 1px 10px rgba(0,0,0,.2);
	padding: 0;
	margin-bottom: 30px;
}
.advant > div ul li > div {
	color: rgba(255,255,255,.7);
}
/*Advantage End*/



/*About*/
.about {
	width: 100%;
	padding: 0;
	position: relative;
	background-image: url(../images/about-bg.jpg);
	background-position: left center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.about:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	opacity: .3;
	display: block;
	width: 100%;
	height: 100%;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
	background: -moz-linear-gradient(45deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */	
}
.about > div {
	position: relative;
	height: 100%;
	min-height: 550px;
	padding: 90px 0;
	text-align: right;
}
.about > div:before {
	content: "";
	width: 400px;
	height: 90%;
	position: absolute;
	left: -65px;
	bottom: 0;
	background-image: url(../images/doctor.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
}

.about > div > div {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 60%;
	z-index: 10;
	position: relative;
	text-align: justify;
}

.more-about {
	width: 100%;
	display: block;
	text-align: center;
	margin-top: 40px;
}
.btn {
	display: inline-block;
	vertical-align: top;
	border-radius: 50px;
	background: #10aead;
	min-width: 160px;
	height: 46px;
	line-height: 46px;
	padding: 0 25px 0;
	color: #fff!important;
	text-transform: uppercase;
	font-size: 1.4rem;
	text-decoration: none;
	transition: all .3s ease;
}
.btn:hover {
	text-shadow: 0 2px 5px rgba(0,0,0,0.4);
	color: #fff;
	background: #04c6c5;
	box-shadow: 0 5px 10px rgba(16,174,173,0.5);
}
/*About End*/




/*Feedback*/
.feedback {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 100px 0 70px;
	overflow: hidden;
	background: #b71451;
	position: relative;
}
.feedback:before,
.feedback:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}

.feedback:before {
	opacity: .9;
	z-index: 2;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#279fb3+0,000000+100&0.65+0,0+100 */
	background: -moz-linear-gradient(45deg, rgba(39,159,179,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, rgba(39,159,179,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, rgba(39,159,179,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6279fb3', endColorstr='#00000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.feedback:after {
	opacity: .1;
	z-index: 1;
	background-image: url(../images/feedback-bg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.feedback > div {
	position: relative;
	z-index: 5;
}
/*Feedback End*/



/*Footer*/
footer {
	width: 100%;
	background: #103c42;
	position: relative;
	padding: 100px 0;
}
footer:after {
	content: "";
	width: 100%;
	height: 80px;	
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: .5;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
	background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */	
}

footer > div {
	letter-spacing: -0.3em;
	position: relative;
	z-index: 2;
}
footer > div h2 {
	color: #fff;
	font-weight: lighter;
	font-size: 2.4rem;
	text-transform: uppercase;
	margin-bottom: 60px;
}
footer > div > div {
	display: inline-block;
	vertical-align: top;
	padding-right: 20px;
}
footer > div > div:last-child {
	padding: 0;
}


/*Footer menu*/
.f-menu {
	width: 550px;
}
.f-menu > div {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	letter-spacing: normal;
}
.f-menu > div ul {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}
.f-menu > div ul li {
	width: 100%;
	padding-right: 10px;
	margin-bottom: 10px;
	max-width: 230px;
}
.f-menu > div ul li a {
	display: inline-block;
	color: #c0c8ca;
	position: relative;
	padding-left: 15px;
	transition: all 0.3s ease;
}
.f-menu > div ul li a:before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0;
	top: calc(50% - 6px);
	background: url(../images/ico/emerald-arrow.svg) center left no-repeat;
	background-size: 7px;
}
.f-menu > div ul li a:hover {
	opacity: .7;
	text-decoration: none;
	color: #fff;
}


/*Footer Contacts*/
.footer-contacts {
	letter-spacing: normal;
	width: calc(55% - 300px);
	padding-left: 20px;
}
.footer-contacts ul {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-contacts ul li {
	letter-spacing: -0.3em;
	width: 100%;
	margin-bottom: 25px;
	max-width: 250px;
}
.footer-contacts ul li:last-child {
	margin-bottom: 0;
}
.footer-contacts ul li i {
	width: 35px;
	height: 35px;
	display: inline-block;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.footer-contacts .phone {
	background-image: url(../images/ico/emerald-phone.svg);
}
.footer-contacts .email {
	background-image: url(../images/ico/emerald-email.svg);
}
.footer-contacts .address {
	background-image: url(../images/ico/emerald-address.svg);
}

.footer-contacts ul li span {
    display: inline-block;
    vertical-align: middle;
    letter-spacing: normal;
    padding-left: 20px;
    font-size: 1.5rem;
    line-height: 22px;
    color: #c0c8ca;
    width: calc(100% - 35px);
}


/*Copyright*/
.copyright {
	width: calc(45% - 250px);
	letter-spacing: normal;
}

.social {
	width: 100%;
	display: inline-block;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
}
.social li {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	margin: 0;	
}
.social li a {
	display: inline-block;
	width: auto;
	text-align: center;
	opacity: 0.8;
	margin: 0 20px 0 0;
	transition: all 0.2s ease;
}
.social li a:hover {
	opacity: 1;
	transform: scale(1.2);
}
.social li i {
	color: #10aead;
	font-size: 2.7rem;
}

.copyright > div {
	margin: 40px 0;
	color: #c0c8ca;
	font-size: 1.4rem;
}

.copyright > a {
	transition: all .3s ease;
	opacity: .7;
}
.copyright > a:hover {
	opacity: 1;
}
/*Footer End*/



/*Top btn*/
.top {
	position: fixed;
	bottom: 55px;
	right: 30px;
	width: 60px;
	height: 60px;
	border-radius: 100%;
	z-index: 7;
	background-color: #10aead;
	background-image: url(../images/ico/arrow.svg);
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
	transform: translateX(110px) rotate(-90deg);
	cursor: pointer;
	transition: all 0.5s ease;
	opacity: 1;
	border: 4px solid rgba(255,255,255,0.2);
	box-shadow: 0 0 10px rgba(16,174,173,0.7);
}
.top.show {
	transform: translateX(0px) rotate(-90deg);
}
.top:hover {
	opacity: .7;
	box-shadow: 0 0 25px rgba(16,174,173,1);
}
/*Top btn End*/



/*Content*/
.content-block {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 70px 0 30px;
	min-height: 200px;
}

.blocks {
	margin: 0 -20px;
	letter-spacing: -0.3em;
}
.blocks > div {
	display: inline-block;
	vertical-align: top;
	margin: 0 20px;
	letter-spacing: normal;
}
.right-block {
	width: calc(100% - 380px);
}
.left-block {
	width: 300px;
}
/*Content End*/



/*Left menu*/
.left-menu {
	width: 100%;
	padding: 25px;
	background: #f7f6f6;
	margin-bottom: 40px;
}
.left-menu h2 {
	text-transform: uppercase;
	font-size: 2.1rem;
	font-weight: normal;
}
.left-menu > ul {
	padding: 0;
	margin: 0;
    list-style: none;
}
.left-menu > ul > li {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-bottom: 1px solid #ececec;
}
.left-menu > ul > li:last-child {
	border-bottom: none;
}
.left-menu > ul > li > a {
	display: block;
	padding: 7px 0 7px 15px;
	position: relative;
	color: #6c6c6c;
	font-size: 1.6rem;
	transition: all 0.3s ease;
	text-decoration: none;
}
.left-menu > ul > li > a:hover {
	text-decoration: none;
	color: #b71451;
}
.left-menu > ul > li.active > a,
.left-menu > ul > li.active > a:before,
.left-menu > ul > li ul li.active a {
	color: #b71451;
	font-weight: 600;
}
.left-menu > ul > li > a:before {
    content: "\f111";
    font-family: "FontAwesome";
    width: 10px;
    height: 10px;
    left: 0;
    top: calc(50% - 5px);
    font-size: .8rem;
    line-height: 10px;
    display: block;
    position: absolute;
    transition: all 0.3s ease;
    color: #b71451;
}

.left-menu > ul > li ul {
	list-style: none;
	margin: 5px 0 5px 15px;
	padding: 0 0 0 15px;
	border-left: 1px solid rgba(0,0,0,.2);
}

.left-menu > ul > li ul li {
	display: block;
}
.left-menu > ul > li ul a {
	color: #000;
	font-size: 1.3rem;
	display: inline-block;
	padding: 3px 0;
	transition: all ease .4s;
	text-decoration: none;
	font-weight: 500;
}
.left-menu > ul > li ul a:hover {
	opacity: .5;
}
/*Left menu*/



/*Map*/
.object-location {
	width: 100%;
	height: 460px;
	position: relative;
	background: #10aead;
}
.object-location > i {
	width: 50px;
	height: 50px;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
}
/*Map End*/





/*Product*/
.product-list {
	margin: 0 -15px;
	letter-spacing: -0.3em;
}
.product-list a,
.product-slide .swiper-slide > a {
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
	width: calc(33.333% - 30px);
	height: 370px;
	margin: 0 15px 30px;
	text-align: center;
	text-decoration: none !important;
	transition: all 0.4s ease;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: relative;
	padding-bottom: 70px;
	overflow: hidden;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;	
}
.product-list a:hover,
.product-slide .swiper-slide > a:hover {
	box-shadow: 0 2px 20px rgba(16,173,174,0.5);
	opacity: 0.8;
}
.product-list a > strong,
.product-slide .swiper-slide > a > strong {
	display: block;
	width: 100%;
	color: #fff;
	font-weight: normal;
	font-size: 1.3rem;
	text-transform: none;
	transition: all 0.3s ease;
	padding: 15px 15px;
	position: absolute;
	bottom: 0;
	text-transform: uppercase;
	background: rgba(16,174,173,0.8);
}
.product-list a:hover > strong,
.product-slide .swiper-slide > a > strong:hover {
	opacity: 0.6;
}


.blocks > div.product-img {
	width: 400px;
	margin-bottom: 60px;
}
.product-img a {
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
.product-img img {
	width: 100%;
}

.product-info {
	width: calc(100% - 480px);
}
/*Product End*/



/*Product slide*/
.other-product {
	width: 100%;
	padding: 80px 0;
	background: #f7f6f6;
}
.product-slide {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	padding: 15px;
}	
.product-slide .swiper-slide > a {
	width: 100%!important;
	margin: 0!important;
}


/*Arrow*/
.product-button-prev,
.product-button-next {
	position: absolute;
	z-index: 5;
	top: 0;
	right: 20px;
	top: calc(50% - 25px);
	width: 50px;
	height: 50px;
	font-size: 0px;
	border: 0px;
	outline: none;
	transition: all 0.3s ease;
	background: url(../images/ico/arrow.svg) center no-repeat #10aead;
	background-size: 50%;
	border-radius: 100%;
	border: 4px solid rgba(255,255,255,0.2);
    box-shadow: 0 0 10px rgba(16,174,173,0.7);
}
.product-button-prev {
	right: auto;
	left: 20px;
	transform: rotate(180deg);
}
.product-button-prev:hover,
.product-button-next:hover {
	opacity: 0.6;
}
/*Product slide End*/



/*Pagination*/
.pagination-block {
	text-align: right;
	letter-spacing: normal;
	font-size: 1.4rem;
}
.pagination>li:first-child>a, 
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.pagination>li:last-child>a, 
.pagination>li:last-child>span {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.pagination>li>a, 
.pagination>li>span {
    color: #474747;
    border: 1px solid #dbdbdb;
    background: #dbdbdb;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 1px 2px;
}
.pagination>li>a:focus, 
.pagination>li>a:hover, 
.pagination>li>span:focus, 
.pagination>li>span:hover {
    z-index: 2;
    color: #fff;
    background-color: #10aead;
    border-color: #10aead;
    box-shadow: 0 0 10px #10aead;
}
.pagination>.active>a, 
.pagination>.active>a:focus, 
.pagination>.active>a:hover, 
.pagination>.active>span, 
.pagination>.active>span:focus, 
.pagination>.active>span:hover {
    background-color: #10aead;
    border-color: #10aead;
    color: #fff;
}
/*Pagination End*/



/* ==========================================================================
   01. PC
   ========================================================================== */
@media screen and (min-width: 991px) {

}


/* ==========================================================================
   02. PC: Notebook
   ========================================================================== */
@media screen and (max-width: 1440px) {

}


/* ==========================================================================
   03. Tablet: Landscape
   ========================================================================== */
@media screen and (max-width: 1280px) {

}



/* ==========================================================================
   03. Tablet: Landscape
   ========================================================================== */
@media screen and (max-width: 1024px) {

	/*Header*/
	.logo {
		width: 200px;
	}
	.logo a {
		height: 50px;
	}



	/*Header contacts*/
	.top-contacts {
		width: calc(100% - 240px);
	}
	.top-contacts > li > i {
		width: 30px;
		height: 30px;
	}
	.top-contacts > li > span {
		width: calc(100% - 30px);
		font-size: 1.4rem;
	}

	.top-social li {
		margin: 0 0 0 8px;
		width: 18px;
	}
	.top-social i {
		font-size: 1.6rem;
	}


	/*Menu panel*/
	.menu-panel {
		overflow-x: hidden;
		overflow-y: scroll;
	}		
	.menu-panel > div {
	    position: relative;
	    top: 0;
	    transform: translateY(0);
	    padding: 120px 25px 15px;
	}
	.mp-info > div {
		width: 100%;
		margin-bottom: 60px;
	}	
	.mp-info > div {
	    transform: translateX(150px);
	}
	body.in .mp-info > div {
		transform: translateX(0);
	}	


	/*Banner*/
	.banner {
		margin-top: 58px;
		height: 500px;
	}
	.banner:before {
		height: 40%;
		top: 30%;
	}
	.banner .container:before {
		width: 270px;
		right: 105px;
	}
	.banner .container:after {
		width: 290px;
	}
	.banner .container > span {	
		right: 240px;
		width: 290px;
	}	
	.banner .container > div h1 {
		font-size: 3.0rem;
	}
	.banner .container > div span {
		font-size: 1.6rem;
	}



	/*Advantage*/
	.advant > div ul li {
		width: calc(50% - 100px);
	}

	.advant > div ul li > span {
		width: 150px;
		padding-top: 150px;
	}
	.advant > div ul li:nth-child(2n+1) > span:before {
		width: 250%;
		right: -250%;
	}
	.advant > div ul li:nth-child(2n) > span:before {
		display: none;
	}


	/*Footer menu*/
	.f-menu {
		width: 100%;
		margin-bottom: 60px;
	}
	.f-menu > div ul li {
		padding-right: 15px;
		max-width: none;
	}


	/*Footer Contacts*/
	.footer-contacts {
		width: 50%;
		padding-left: 0;
	}

	.footer-contacts ul li {
		width: 100%;
	}


	/*Copyright*/
	.copyright {
		width: 50%;
	}


	/*Content*/
	.right-block {
		width: calc(100% - 330px);
	}
	.left-block {
		width: 250px;
	}
}



/* ==========================================================================
   05. Tablet: Portrait
   ========================================================================== */
@media screen and (max-width: 991px) {

	/*Content*/
	.blocks {
		margin: 0;
	}	
	.blocks > div.right-block {
		width: 100%;
		margin: 0;
	}
	.blocks > div.left-block {
		display: none;
	}


	/*Product*/
	.product-list a,
	.product-slide .swiper-slide > a {
		height: 350px;	
	}
	.product-list a > strong,
	.product-slide .swiper-slide > a > strong {
		font-size: 1.2rem;
		padding: 10px 15px;
	}

	.top {
		bottom: 15px;
		left: 15px;
		right: auto;
		transform: translateX(-110px) rotate(-90deg);
	}
}


/* ==========================================================================
   06. Mobile: Landscape
   ========================================================================== */
@media screen and (max-width: 768px) {


	/*Header contacts*/
	.top-contacts {
		opacity: 0;
	}
	.top-contacts > li {
		display: none;
	}



	/*Menu panel*/
	.mp-info h2 {
		font-size: 1.8rem;
		margin-bottom: 20px;
	}
	.mp-info ul > li a {
		padding: 5px 0 3px 15px;
		font-size: 1.3rem;
	}	

	.contacts ul li span {
	    font-size: 1.3rem;
	}


	/*Banner*/
	.banner {
		height: 400px;
	}
	.banner:before {
		height: 40%;
		top: 30%;
		opacity: .8;
	}

	

	.banner .container:before {
		width: 220px;
		right: 100px;
	}
	.banner .container:after {
		width: 230px;
	}
	.banner .container > span {	
		right: 220px;
		width: 230px;
	}	


	.banner .container > div h1 {
		font-size: 3.0rem;
	}
	.banner .container > div span {
		font-size: 1.6rem;
	}



	/*Breadcrumb*/
	.page-title {
		padding: 100px 0 30px;
		margin-top: 60px;
	}
	.page-title .container h1 {
		font-size: 2.2rem;
	}



	/*Title*/
	.main-title {
		font-size: 2.2rem;
		margin-bottom: 50px;
	}
	.main-title > span:before,
	.main-title > span:after {
		height: 8px;
		top: calc(50% - 4px);
	}



	/*Category*/
	.category {
		padding: 60px 0 10px;
	}

	.category ul {
		margin: 0 -15px;
	}
	.category ul > li {
		width: calc(33.333% - 30px);
		height: 330px;
		margin: 0 15px 30px;
	}
	.category ul > li a h4 {
	    font-size: 1.1rem;
	}


	/*Advantage*/
	.advant > div ul li > span {
		margin-bottom: 35px;
		width: 130px;
		padding-top: 130px;
		background-size: 70%;
	}
	.advant > div ul li h3 {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
	.advant > div ul li > div {
		font-size: 1.3rem;
	}


	/*About*/
	.about:before {
		display: none;
	}	
	.about > div {
		min-height: 0;
		padding: 50px 15px 50px;
	}
	.about > div:before {
		opacity: .1;
	}

	.about > div > div {
		max-width: 100%;
	}
	.more-about {
		margin-top: 20px;
	}	
	.btn {
		height: 40px;
		line-height: 40px;
		font-size: 1.2rem;
	}	


	/*Feedback*/
	.feedback {
		padding: 60px 0 40px;
	}


	/*Footer*/
	footer {
		padding: 40px 0;
	}
	footer > div h2 {
		margin-bottom: 30px;
		font-size: 1.8rem;
	}


	/*Footer menu*/
	.f-menu > div ul li {
		margin-bottom: 5px;
	}
	.f-menu > div ul li a {
		font-size: 1.3rem;
	}


	/*Footer Contacts*/
	footer {
		padding-bottom: 100px;
	}
	.footer-contacts ul li span {
	    font-size: 1.3rem;
	    line-height: 20px;
	}	


	/*Content*/
	.content-block {
		padding: 45px 0 15px;
	}	



	/*Map*/
	.object-location {
		height: 360px;
	}	


	/*Pagination*/
	.pagination-block {
		font-size: 1.3rem;
	}
	.pagination > li > a, 
	.pagination > li > span {
	    padding: 4px 10px;
	}



	/*Product*/
	.blocks > div.product-img {
		width: 300px;
		margin: 0 40px 40px 0;
	}
	.blocks > div.product-info {
		width: calc(100% - 340px);
		margin: 0;
	}	


	/*Product slide*/
	.other-product {
		padding: 50px 0;
	}	


}



/* ==========================================================================
   07. Mobile: Portrait
   ========================================================================== */
@media screen and (max-width: 550px) {


	/*Header*/
	.logo {
		width: 180px;
	}


	/*Header contacts*/
	.top-contacts {
		width: calc(100% - 220px);
	}


	/*Menu panel*/
	.menu-panel > div {
	    padding: 120px 0 15px;
	}	


	/*Banner*/
	.banner {
		height: 350px;
	}
	.banner:before {
		height: 50%;
		bottom: 0;
		top: auto;
		z-index: 5;
		opacity: .9;
	}


	.banner .container:before {
		width: 200px;
		right: 80px;
	}
	.banner .container:after {
		width: 200px;
	}
	.banner .container > span {	
		right: 190px;
		width: 200px;
	}	



	.banner .container > div {
		top: auto;
		bottom: 33px;
		transform: translateY(0) translateX(-100px);
	}	
	.banner.show-info .container > div {
		transform: translateY(0) translateX(0);
	}	
	.banner .container > div h1 {
		font-size: 2.4rem;
	}
	.banner .container > div span {
		font-size: 1.3rem;
	}



	/*Breadcrumb*/
	.page-title {
		margin-top: 58px;
		padding: 80px 0 20px;
	}
	.page-title .container h1 {
		font-size: 1.6rem;
	}
	.breadcrumb {
		margin-bottom: 10px;
		font-size: 1.2rem;
	}	


	/*Title*/
	.main-title {
		font-size: 1.6rem;
		margin-bottom: 40px;
		font-weight: normal;
	}
	.main-title > span:before,
	.main-title > span:after {
		height: 6px;
		top: calc(50% - 3px);
	}



	/*Category*/
	.category ul {
		margin: 0 -15px;
	}
	.category ul > li {
		width: calc(50% - 20px);
		height: 270px;
		margin: 0 10px 30px;
	}


	/*About*/
	.about > div {
	    padding: 40px 15px 40px;
	}
	.more-about {
		margin-top: 0px;
	}		


	/*Advantage*/
	.advant {
		padding: 40px 0 10px;
	}	
	.advant > div ul li {
		width: calc(100% - 100px);
		margin-bottom: 20px;
	}

	.advant > div ul li > span {
		width: 120px;
		padding-top: 120px;
	}
	.advant > div ul li:nth-child(2n+1) > span:before {
		display: none;
	}


	/*Feedback*/
	.feedback {
		padding: 40px 0 20px;
	}


	/*Footer*/
	footer {
		padding-bottom: 50px;
	}	
	footer > div h2 {
		margin-bottom: 30px;
		font-size: 1.6rem;
	}

	/*Footer menu*/
	.f-menu {
		margin-bottom: 0;
	}
	.f-menu > div {
	    display: inline-block;
	    vertical-align: top;
	    width: 100%;
	    letter-spacing: normal;
	    margin-bottom: 60px;
	}
	.f-menu > div ul li {
		padding-right: 0;
	}


	/*Footer Contacts*/
	.footer-contacts {
		width: 100%;
		padding-left: 0;
		margin-bottom: 60px;
	}

	.footer-contacts ul li {
		width: 100%;
		max-width: none;
	}


	/*Copyright*/
	.copyright {
	    width: 100%;
	    margin-bottom: 60px;
	}	


	/*Content*/
	.content-block {
		padding: 35px 0 10px;
	}




	/*Map*/
	.object-location {
		height: 300px;
	}		


	/*Pagination*/
	.pagination-block {
		font-size: 1.1rem;
	}
	.pagination > li > a, 
	.pagination > li > span {
	    padding: 3px 8px;
	}	



	/*Product*/
	.product-list {
		margin: 0 -10px;
	}
	.product-list a,
	.product-slide .swiper-slide > a {
		width: calc(50% - 20px);
		height: 260px;
		margin: 0 10px 20px;
		background-position: top center;	
	}
	.product-list a > strong,
	.product-slide .swiper-slide > a > strong {
		font-size: 1.0rem;
		padding: 7px 10px;
	}	


	.blocks > div.product-img {
		width: 100%;
		margin: 0 0 40px 0;
	}
	.blocks > div.product-info {
		width: 100%;
		margin: 0;
	}	



	/*Product slide*/
	.other-product {
		padding: 30px 0;
	}	

}


/* ==========================================================================
   08. Mobile: Ultra Small
   ========================================================================== */
@media screen and (max-width: 340px) {

	.banner {
		height: 300px;
	}

	.banner .container:before {
		width: 180px;
		right: 70px;
	}
	.banner .container:after {
		width: 180px;
	}
	.banner .container > span {	
		right: 150px;
		width: 180px;
	}	

}

