body *{
	box-sizing:border-box;
}
body {
	position:relative;
} 
@font-face {
    font-family: 'RobotoLight';
    src: url('fonts/RobotoLight.eot');
    src: url('fonts/RobotoLight.eot') format('embedded-opentype'),
         url('fonts/RobotoLight.woff2') format('woff2'),
         url('fonts/RobotoLight.woff') format('woff'),
         url('fonts/RobotoLight.ttf') format('truetype'),
         url('fonts/RobotoLight.svg#RobotoLight') format('svg');
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('fonts/RobotoRegular.eot');
    src: url('fonts/RobotoRegular.eot') format('embedded-opentype'),
         url('fonts/RobotoRegular.woff2') format('woff2'),
         url('fonts/RobotoRegular.woff') format('woff'),
         url('fonts/RobotoRegular.ttf') format('truetype'),
         url('fonts/RobotoRegular.svg#RobotoRegular') format('svg');
}
@font-face {
    font-family: 'RobotoMedium';
    src: url('fonts/RobotoMedium.eot');
    src: url('fonts/RobotoMedium.eot') format('embedded-opentype'),
         url('fonts/RobotoMedium.woff2') format('woff2'),
         url('fonts/RobotoMedium.woff') format('woff'),
         url('fonts/RobotoMedium.ttf') format('truetype'),
         url('fonts/RobotoMedium.svg#RobotoMedium') format('svg');
}

@font-face {
    font-family: 'RobotoCondensedBold';
    src: url('fonts/RobotoCondensedBold.eot');
    src: url('fonts/RobotoCondensedBold.eot') format('embedded-opentype'),
         url('fonts/RobotoCondensedBold.woff2') format('woff2'),
         url('fonts/RobotoCondensedBold.woff') format('woff'),
         url('fonts/RobotoCondensedBold.ttf') format('truetype'),
         url('fonts/RobotoCondensedBold.svg#RobotoCondensedBold') format('svg');
}

@font-face {
	font-family: 'FontAwesome';
	src: url('fonts/fontawesome-webfont.eot');
	src: url('fonts/fontawesome-webfont.eot') format('embedded-opentype'), 
		 url('fonts/fontawesome-webfont.woff2') format('woff2'), 
		 url('fonts/fontawesome-webfont.woff') format('woff'), 
		 url('fonts/fontawesome-webfont.ttf') format('truetype'), 
		 url('fonts/fontawesome-webfont.svg#fontawesomeregular') format('svg');
}

#wrap{
	position:relative;
}

.wrap{
	width:100%;
	max-width:1345px;
	margin: 0 auto;
	padding-left: 30px;
    padding-right: 30px;
	position: relative;
	box-sizing: border-box;
}
.wrapper{
	width:100%;
	margin: 0 auto;
}
#topinfo,
#header-wrap{
	background: #48526c;
}
.topinfo{
	display:table;
	padding-top: 15px;
    padding-bottom: 15px;
}
.topinfo>div{
	display:table-cell;
	vertical-align:middle;
}
.topcontacts{
	
}
.social-icons{
	text-align:right;
}
.topaddress,
a.topphone,
a.topgift,
.toptime{
	color:#fff;
	font-family: 'RobotoLight';
	font-size:18px;
	padding-left:25px;
	display:inline-block;
	margin-right:30px;
}
a.topphone{
	text-decoration:none;
	background: url(img/phone.png) left center no-repeat;
}
.topaddress{
	background: url(img/map.png) left center no-repeat;
}
.toptime{
	background: url(img/time.png) left center no-repeat;
}
a.topgift{
	background: url(img/gift.png) left center no-repeat;
}


a.social-icon{
	display:inline-block;
	width:25px;
	height:25px;
	text-align:left;
	text-indent:-9999px;
	border-radius:6px;
	margin-left: 4px;
    box-shadow: 0px 0px 2px #fff;
}
a.social-icon:hover{
	box-shadow: 0px 0px 4px #fff;
}
a.social-icon.inst{
	background: url(img/inst.png) center center no-repeat;
}
a.social-icon.youtube{
	background: url(img/youtube.png) center center no-repeat;
}

#logo {
    margin: 0px;
    padding: 0px;
    width: 320px;
    height: 90px;
}

#logo a {
    display: block;
    width: 320px;
    height: 90px;
    background: url(img/logo.png) left center no-repeat;
    text-indent: -9999px;
    margin: 0px auto;
}
#header{
	display:table;
}
#header>div{
	display:table-cell;
	vertical-align:middle;
	padding: 15px 0px;
}
#header>div.header-div1{
	width:320px;
}
#header>div.header-div2{
	padding-left:15px;
	padding-right:15px;
}
#header>div.header-div3{
	width:230px;
	text-align:right;
}




#mainmenu-wrap{
	background: #48526c;
}
#mainmenu{
	display:block;
	width:100%;
	max-width: 100%;
	margin:0px auto;
	text-align:center;
}
#mainmenu>li{
	display:inline-block;
	padding: 0px 5px;
	margin:10px;
	text-align:center;
}
#mainmenu>li>a{
	font-family: 'RobotoMedium';
	display:inline-block;
	background: none;
    border-radius: 5px;
	padding: 8px 8px 7px 8px;
    font-size: 16px;
	line-height:16px;
	text-transform: uppercase;
    color: #fff;
	text-decoration:none;
	min-width: 65px;
	position:relative;
	transition: all 0.3s ease;
}
#mainmenu>li>a:after{
	content: '';
    width: calc(100% + 20px);
    height: 5px;
    background: #fff;
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: -11px;
    left: -10px;
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
    z-index: -1;
    transition: all 0.3s ease;
}
#mainmenu>li>a:hover{
	color: #fff;
}
#mainmenu>li>a:hover:after{
	z-index: 1;
    -webkit-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
	background: #fff;;
}

#blogmenu,
#coursesmenu{
	text-align:center;
}
#blogmenu li,
#coursesmenu li{
	display:inline-block;
	padding: 5px;
}
#blogmenu li a,
#coursesmenu li a{
	padding: 10px 15px 8px 15px;
    line-height: 18px;
	font-size: 16px;
	text-transform: uppercase;
    font-family: RobotoCondensedBold;
	border-radius:4px;
	transition: all 0.3s ease;
}
#blogmenu li.current a,
#coursesmenu li.current a{
	background-color: #eee;
	border:1px solid #ccc;
	color:#e61b72;
}

p.readmore2p{
	line-height:20px;
}
.page-text a.readmore2{
	width:100%;
	max-width:500px;
}
.page-text p.readmore2p{
	margin-bottom: 20px;
}

.page-text h2{
	font-size: 20px;
}

a.button-enroll,
a.button-more,
a.readmore,
a.readmore2{
	display:inline-block;
	font-family: 'RobotoMedium';
	font-size: 16px;
	text-decoration:none;
	color:#fff;
	background: #e61b72;
	border-radius: 30px;
	padding: 16px 34px;
	min-width:230px;
	text-align:center;
	transition: all 0.3s ease;
}
a.button-enroll:hover,
a.button-more:hover,
a.readmore:hover,
a.readmore2:hover{
	background: #48526c;
}
a.button-more,
a.readmore{
	font-size: 20px;
	padding: 20px 34px;
}
.readmore3{
	text-align:center;
	margin:0px;
}
.readmore3 a{
	display: inline-block;
	font-family: 'RobotoMedium';
	font-size: 16px;
	text-decoration:none;
	color:#fff;
	background: #48526c;
	border: 1px solid #48526c;
	border-radius: 30px;
	padding: 16px 34px;
	min-width:230px;
	text-align:center;
	margin:0 auto;
	transition: all 0.3s ease;
}
.readmore3 a:hover{
	border: 1px solid #48526c;
	background: transparent;
	color: #48526c;
}
.blog-wrap .readmore3{
	margin-top:15px;
}

#slider-block{
	/* max-width:1345px; */
	margin:0 auto;
	/* display:none; */
}

.bxslide{
	width:100%;
	height:auto;
	border-top: 1px solid #666;
	border-bottom: 1px solid #666;
	position:relative;
}
.bxslide img{
	width:100%;
}
.bxslide .button-more{
	position:absolute;
	bottom:4em;
	left:8em;
}
.breadcrumb{
	padding:0px;
	background:none;
}
.breadcrumb>li:first-child{
	display:none;
}
.breadcrumb>li>a{
	font-family: 'RobotoRegular';
	color:#e61b72;
}
.breadcrumb>li>a:hover{
	color:#48526c;
}

.page-title2{
	text-align: center;
    color: #e61b72;
    text-transform: uppercase;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 30px;
	font-family: 'RobotoRegular';
}
.page-title{
	font-size:44px;
	font-family: 'RobotoLight';
	text-align:center;
	text-transform:uppercase;
	margin-top:0px;
	margin-bottom:35px;
	color: #e61b72;
}
.page-text{
	font-family: 'RobotoRegular';
	font-size:18px;
	color: #333;
	width: 100%;
	margin:0 auto;
	line-height:30px;
	position:relative;
	display:table;
}
.page-text>div{
	display:table-cell;
	vertical-align:top;
}
.page-text-image-block{
	width:40%;
	padding-right:30px;
	position:relative;
}
.page-text-block{
	width:auto;
}
.page-text p{
	margin-bottom:0px;
}
.page-text ul li{
	line-height: 30px;
}
img.page-text-image{
	max-width:500px;
	width:100%;
	margin-bottom: 20px;
	display:block;
}
.page-text-fields{
	margin-bottom:20px;
}

/* блок цены ------------------- start*/
.page-text-info{
	display:table;
	width:100%;
	margin-bottom:10px;
}
.page-text-info>div{
	display:table-cell;
	width:33.333333333%;
	padding: 15px 5px 13px 85px;
	
}
.price-one,
.price-group{
	border-right:10px solid #fff;
}
.duration-lesson{
	
}
.btn_zapis{
	display:inline-block;
}
.price-one{
	background: url(img/price-one.png) 10px center no-repeat #f4f4f4;
	margin-right:5px;
}
.price-group{
	background: url(img/price-team.png) 10px center no-repeat #f4f4f4;
	margin-right:5px;
}
.duration-lesson{
	background: url(img/duration-lesson.png) 10px center no-repeat #f4f4f4;
}
.price-title{
	margin: 0px 0px 7px 0px !important;
	text-transform:uppercase;
	font-size:15px;
	line-height: 15px;
	font-weight:bold;
}
.price-text{
	margin:0px;
	font-size:15px;
	line-height: 15px;
	font-weight:bold;
	color:#e61b72;
}
.price-text.old{
	color:#666;
	font-size:13px;
	text-decoration:line-through;
}
.bonus-one,
.bonus-group{
	display:inline-block;
	width:100%;
	padding: 15px 5px 10px 85px;
	margin-bottom:10px;
	background: url(img/gift-box.png) 10px 15px no-repeat #f4f4f4;
}
.bonus-one ul li,
.bonus-group ul li{
	line-height: 20px;
}

/* блок цены ------------------- end*/

.videoReview{
	display:table;
	width:100%;
	margin:0 auto;
}
.videoReview>div{
	display:table-cell;
	width:50%;
	padding-bottom:10px;
}
.videoReview>div.videoReviewDiv1{
	padding-right:10px;
}
.videoReview>div.videoReviewDiv2{
	padding-left:10px;
}

.mainpage-text{
	font-family: 'RobotoRegular';
	text-align:center;
	font-size:18px;
	color: #333;
	max-width: 1200px;
	margin:0 auto;
}
.mainpage-text p{
	margin:0px;
	line-height:30px;
}
.greeting .wrap,
.our-services .wrap,
.our-team .wrap,
.our-courses .wrap,
.blog-wrap .wrap,
.graduates-wrap .wrap,
.reviews-wrap .wrap,
.content{
	padding-top:55px;
	padding-bottom:45px;
}
.content .team-list,
.content .blog-list,
.content .courses-list{
	margin-top:0px;
}

.salon-images{
	font-size:0px;
}
.salon-images a{
	width:25%;
	line-height: 0;
    display: inline-block;
    overflow: hidden;
    position: relative;
	vertical-align:top;
}
.salon-images a:before{
	transition: all 0.4s ease;
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    box-shadow: 0px 0px 70px 200px rgba(255,255,255,0.4);
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}
.salon-images a:hover:before{
	visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.salon-images .bgimg3{
	background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	height:300px;
	width:100%;
	transition: all 0.35s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
	margin: 0 auto;
}
.salon-images a:hover .bgimg3{
	-webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);	
}

.our-services{
	background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	background-image: url(img/bg-1.jpg);
}
.our-courses{
	background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	background-image: url(img/bg-2.jpg);
}
.our-team{
	background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	background-image: url(img/bg-1.jpg);
}
.graduates-wrap{
	background-color: #fcf7f3;
}

.content{
	color: #333;
	max-width:1800px;
}


.team-list{
	margin-top:40px;
}
.team-item{
	text-align:center;
	margin-bottom:30px;
	padding-bottom:30px;
	background:#fff;
}
.bgimg1{
	box-sizing:border-box;
	background-position: center center;
    background-size: cover;
    height: 300px;
}
.team-item-photo{}
.team-item-photo a{
	line-height: 0;
    display: block;
    overflow: hidden;
    position: relative;
}
.team-item-photo a:before{
	transition: all 0.4s ease;
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    box-shadow: 0px 0px 70px 200px rgba(255,255,255,0.4);
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}
.team-item-photo a:hover:before{
	visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.team-item-photo .bgimg1{
	max-width: 100%;
	width: 100%;
	transition: all 0.35s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
	margin: 0 auto;
}
.team-item-photo a:hover .bgimg1{
	-webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);	
}

.team-item-name{
	text-transform:uppercase;
	font-size:28px;
	font-family: 'RobotoRegular';
	margin-top:30px;
	margin-bottom:0px;
}
.team-item-name a{
	color:#333;
	text-decoration:none;
}
.team-item-name a:hover{
	color:#e61b72;
}
.team-item-position{
	text-transform:uppercase;
	color:#e61b72;
	font-size: 18px;
	font-family: 'RobotoRegular';
	margin-bottom:20px;
}
.team-item-description{
	color:#333;
	font-size: 18px;
	line-height:30px;
	font-family: 'RobotoRegular';
	margin-bottom:25px;
	padding-left: 15px;
    padding-right: 15px;
	min-height: 90px;
}
.team-item-description p{
	margin:0px;
}

.certificate{
}
.certificate-wrap{
	display:table;
	min-height:500px;
	height:auto;
	width:100%;
	margin:0 auto;
	background: #48526c;
}
.certificate-wrap>div{
	display:table-cell;
	vertical-align:middle;
	width:50%;
}
.certificate-image{
	background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	background-image: url(img/certificate.jpg);
}
.certificate-text{
	padding: 9% 6% 9%;
	color:#fff;
	font-size: 18px;
    line-height: 30px;
    font-family: 'RobotoRegular';
}

.gift-cert{
	display:table;
	width:100%;
}
.gift-cert>div{
	display:table-cell;
	width:50%;
	vertical-align:middle;
}
.gift-cert-image img{
	max-width:100%;
	width:100%;
}
.gift-cert-text{
	padding-left:60px;
}

.akcia{
    width: 100px;
    height: 100px;
    background: url('img/akcia.png') left top no-repeat;
    position: absolute;
    top: 0px;
    left: 0px;
	z-index: 100;
}
.online-course{
    background: #e61b72;
    position: absolute;
    top: 0px;
    left: 0px;
	z-index: 100;
	color: #fff;
    text-align: left;
    padding: 5px 15px 3px 15px;
	font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    font-family: RobotoCondensedBold;
    
}
.discount {
    background: #e61b72;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 100;
    color: #fff;
    text-align: right;
    padding: 5px 15px 3px 15px;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    font-family: RobotoCondensedBold;
}
.discountFulltext{
	right: 30px;
}

.courses-list{
	margin-top:40px;
}
.courses-item{
	min-height:450px !important;
	text-align:center;
	margin-bottom: 20px;
    padding-bottom: 20px;
	background:#fff;
}
.bgimg2{
	box-sizing:border-box;
	background-position: center center;
    background-size: cover;
    height: 200px;
}
.courses-item-photo a{
	line-height: 0;
    display: block;
    overflow: hidden;
    position: relative;
}
.courses-item-photo a:before{
	transition: all 0.4s ease;
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    box-shadow: 0px 0px 70px 200px rgba(255,255,255,0.4);
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}
.courses-item-photo a:hover:before{
	visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.courses-item-photo .bgimg2{
	max-width: 100%;
	width: 100%;
	transition: all 0.35s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
	margin: 0 auto;
}
.courses-item-photo a:hover .bgimg2{
	-webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);	
}

.courses-item-title{
	font-size: 20px;
	line-height:22px;
	font-family: 'RobotoRegular';
	min-height: 45px;
	margin-top: 20px;
    margin-bottom: 10px;
	padding-left:10px;
	padding-right:10px;
}
.courses-item-title a{
	color:#333;
	text-decoration:none;
}
.courses-item-title a:hover{
	color: #e61b72;
}
.courses-item-text{
	min-height: 40px;
    font-family: 'RobotoMedium';
    margin-bottom: 15px
}
.courses-item-text p.price{
	font-size:18px;
	margin-bottom:0px;
	color: #e61b72;
}
.courses-item-text p.term{
	font-size:14px;
	margin-bottom:0px;
}

.courses-item-text p.price.old{
	color:#666;
	font-size:15px;
	text-decoration:line-through;
}

.row-fluid .span3:first-child,
.row-fluid .span3:nth-child(5),
.row-fluid .span3:nth-child(9),
.row-fluid .span3:nth-child(13),
.row-fluid .span3:nth-child(17),
.row-fluid .span3:nth-child(21),
.row-fluid .span3:nth-child(25),
.row-fluid .span3:nth-child(29),
.row-fluid .span3:nth-child(33),
.row-fluid .span3:nth-child(37),
.row-fluid .span3:nth-child(41),
.row-fluid .span3:nth-child(45),
.row-fluid .span3:nth-child(49),
.row-fluid .span3:nth-child(53),
.row-fluid .span3:nth-child(57),
.row-fluid .span3:nth-child(61),
.row-fluid .span3:nth-child(65),
.row-fluid .span4:first-child,
.row-fluid .span4:nth-child(4),
.row-fluid .span4:nth-child(7),
.row-fluid .span4:nth-child(10){
    margin-left: 0;
}
.row-fluid{
	display:block;
	text-align:center;
}
.row-fluid .span3{
	float:none;
	display:inline-block;
	vertical-align:top;
	width:23%;
}

.page-text .contacts{
	text-align:center;
}
.page-text .contacts .title{
	padding-top: 60px;
	font-family: 'RobotoCondensedBold';
}
.page-text .contacts .time .title{
	background: url(img/contacts/clock.png) center top no-repeat;
}
.page-text .contacts .address .title{
	background: url(img/contacts/address.png) center top no-repeat;
}
.page-text .contacts .phone .title{
	background: url(img/contacts/phone.png) center top no-repeat;
}
.page-text .contacts .email .title{
	background: url(img/contacts/email.png) center top no-repeat;
}

.enrollment{
	background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
	background-image: url(img/bg-4.jpg);
}
.enrollment .wrap{
	padding-top:55px;
	padding-bottom:45px;
}
.enrollment-title{
	text-align:center;
	text-transform:uppercase;
	font-size:36px;
	line-height:40px;
	font-family: 'RobotoCondensedBold';
	color: #e61b72;
	margin-bottom: 0px;
}
.enrollment-text{
	font-family: 'RobotoMedium';
	text-align:center;
	font-size:20px;
	line-height:26px;
	color:#333;
	margin-top: 20px;
    margin-bottom: 25px;
}

.formRed{
	text-align:center;
}
#userForm .formControlLabel,
#userForm2 .formControlLabel{
	display:none;
}
#userForm .formControls,
#userForm2 .formControls{
	margin:0px;
}
#userForm,
#userForm2{
    margin: 0px;
}
#userForm .rsform-block-rsname,
#userForm .rsform-block-rsphone {
    width:345px;
	display: inline-block;
	vertical-align: top;
	padding: 0px 5px;
	margin-bottom: 30px;
}
#userForm .formValidation .formError,
#userForm2 .formValidation .formError{
	margin:0px;
}
#userForm p.formDescription,
#userForm2 p.formDescription{
	display:none;	
}
#userForm fieldset,
#userForm2 fieldset{
	text-align: center;
}
#userForm input[type="text"],
#userForm2 input[type="text"]{
	box-sizing: border-box;
	border-radius: 30px;
	width: 100%;
	height: auto;
	color: #333;
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 20px;
	background: #fff;
    border: 1px solid #ccc;
	font-size: 16px;
	outline:none;
	margin-bottom:0px;
}
#userForm input.rsform-error,
#userForm2 input.rsform-error{
    color: #b94a48 !important;
    border-color: #b94a48 !important;
}
#userForm input[type="submit"],
#userForm2 input[type="submit"]{
	display:inline-block;
	font-family: 'RobotoMedium';
	font-size: 16px;
	text-decoration:none;
	color:#fff;
	background: #e61b72;
	border-radius: 30px;
	padding: 16px 34px;
	min-width:230px;
	text-align:center;
	transition: all 0.3s ease;
	margin:0px;
	outline:none;
}
#userForm input[type="submit"]:hover,
#userForm2 input[type="submit"]:hover{
	background: #48526c;
}
#userForm .rsform-block-rsformtitle,
#userForm2 .rsform-block-rsformtitle{
	display:none;
}

#userForm .rsform-block-rssoglasie {
    font-size: 12px;
    line-height: 14px;
    margin: 0px auto 10px auto;
    color: #333;
}
#userForm .rsform-block-rssoglasie a {
    text-decoration: underline;
    color: #333;
}
#userForm .rsform-block-rssoglasie a:hover {
    text-decoration: none;
    color: #e61b72;
}
#userForm2 .rsform-block-rssoglasie {
    font-size: 11px;
    line-height: 14px;
    max-width: 300px;
    margin: 0px auto 10px auto;
}

#popupform{
	display:none;
}
#popupform h3{
	font-family: 'RobotoCondensedBold';
	font-size: 24px;
	line-height:30px;
	text-align:center;
}
.formResponsive input[name="continue"]{
	display:none;
}
.popup-msg{
	background-color: rgba(255, 255, 255,1);
    border-radius: 30px;
    height: auto;
    left: 50%;
    margin-left: -150px;
    margin-top: -150px;
    position: fixed;
    top: 50%;
    width: 300px;
    z-index: 25;
	padding:20px;
	text-align:center;
	font-size:18px;
	box-shadow: 0px 0px 10px #e61b72 inset, 0px 0px 10px #e61b72;

}
.popup-bg{
	background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
}
.popup-msg p{
	color:#000;
}
.modal-message{
	
}
input.page-reload{
	width:100px;
	height:50px;
	text-align:center;
	border:1px solid #e61b72;
	border-radius:30px;
	color:#e61b72;
	font-size: 30px;
    background: #fff;
	margin-top:15px;
	outline:none;
}
input.page-reload:hover{
	background: #fafafa;
	box-shadow: 0px 0px 10px #e61b72;
}


.aktsii-list{
	
}
.aktsiya-item{
	overflow:hidden;
	width:100%;
	position:relative;
	margin-bottom:30px;
}
.aktsiya-item-image{
	background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
	padding-top:100px;
	padding-bottom:100px;
	text-align:center;
	transition: all 0.35s ease;
	margin: 0 auto;
	width:100%;
}
.aktsiya-item-image:hover{
	background-size: 110%;
}
.aktsiya-item-image:before{
	transition: all 0.4s ease;
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    box-shadow: 0px 0px 70px 200px rgba(255,255,255,0.4);
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}
.aktsiya-item-image:hover:before{
	visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.aktsiya-item-title{
	text-transform:uppercase;
	font-size:36px;
	line-height:40px;
	font-family: 'RobotoCondensedBold';
	margin-top: 0px;
	margin-bottom: 20px;
}
.aktsiya-item-title a{
	text-decoration:none;
	color:#e61b72;
}
.aktsiya-item-title a:hover{
	color: #48526c;
}
.aktsiya-item-text{
	position: relative;
	z-index:10;
	width:100%;
}
.aktsiya-item-introtext{
	font-family: 'RobotoRegular';
    font-size: 18px;
    color: #333;
    line-height: 30px;
	padding-bottom:30px;
}
.aktsiya-item-introtext p{
	margin:0px;
}

.category-description{
	font-family: 'RobotoRegular';
    font-size: 18px;
    color: #333;
    line-height: 30px;
	text-align:center;
	padding-bottom:30px;
}
.category-description2{
	position:relative;
	font-family: 'RobotoRegular';
    font-size: 18px;
    color: #333;
    line-height: 26px;
	max-height: 390px;
	overflow:hidden;
}
.category-description2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 50px;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
.category-description2 h2{
	text-align:center;
	font-size: 24px;
    line-height: 24px;
    font-family: 'RobotoRegular';
    margin-bottom: 20px;
}

.desk-btn{
	position:relative;
	text-align:center;
	cursor:pointer;
	color: #e61b72;
	font-size: 16px;
    line-height: 22px;
    font-family: 'RobotoCondensedBold';
	text-transform: uppercase;
}
.desk-show{}
.desk-hide{}
.desk-show:after{
	display:block;
	content:"\f078";
	font-family: 'FontAwesome';
}
.desk-hide:before{
	display:block;
	content:"\f077";
	font-family: 'FontAwesome';
}

.blog-item{
	margin-top:0px;
	margin-bottom:0px;
	background: rgb(251, 251, 251);
    padding: 30px 30px;
	transition: all 0.35s ease;
	border-left: 5px solid #fff;
	border-right: 5px solid #fff;
}
.blog-item:hover{
	background: rgb(242, 242, 242);
}
.blog-item-title{
    text-transform: uppercase;
    font-size: 24px;
	line-height:30px;
    margin-top: 0px;
	margin-bottom: 5px;
    font-family: 'RobotoRegular';
}
.blog-item-title a{
    color: #e61b72;
	text-decoration:none;
	transition: all 0.35s ease;
}
.blog-item-title a:hover{
	color: #333;
}
.blog-item-date{
	font-size:12px;
	color: #999;
	margin-bottom: 10px;
}
.blog-item-description{
	color: #333;
    font-size: 18px;
    line-height: 30px;
    font-family: 'RobotoRegular';
    margin-bottom: 10px;
    min-height: 200px;
	text-align:justify;
}
.blog-item-description p{
	margin:0px;
}
.blog-item-readmore{
	margin:0px;
	text-align:center;
}

.slick-prev, .slick-next { 
	cursor: pointer;
	display: block;
	width: 64px;
	height: 64px;
	position: absolute;
	top: 50%;
	margin-top: -32px;
	border: none;
	outline: none;
	padding: 0;
	text-indent: -9999px;
	z-index: 9999;
	border-radius:100%;
}
.slick-prev {
	left: 25px;
	opacity:0;
	-webkit-transition: left ease-out 0.3s;
     -moz-transition: left ease-out 0.3s;
     -o-transition: left ease-out 0.3s;
     transition: left ease-out 0.3s;
	 background: url(img/prev.png) center center no-repeat rgba(0,0,0,0.2);
}
.slick-next {
	right: 25px;
	opacity:0;
	-webkit-transition: right ease-out 0.3s;
     -moz-transition: right ease-out 0.3s;
     -o-transition: right ease-out 0.3s;
     transition: right ease-out 0.3s;
	 background: url(img/next.png) center center no-repeat rgba(0,0,0,0.2);
}
.slick-slider:hover .slick-prev {
	opacity:1;
}
.slick-slider:hover .slick-next {
	opacity:1;
}
.slick-slider .slick-prev:hover {
	background: url(img/prev.png) center center no-repeat rgba(0,0,0,0.5);
}
.slick-slider .slick-next:hover {
	background: url(img/next.png) center center no-repeat rgba(0,0,0,0.5);
}


.blogpage-list .blogpage-item:last-child{
	margin-bottom: 0px;
}
.blogpage-item{
	background: rgb(251, 251, 251);
    padding: 30px 30px;
    margin-bottom: 30px;
	transition: all 0.35s ease;
}
.blogpage-item:hover{
	background: rgb(242, 242, 242);
}

.blogpage-item-title{
    text-transform: uppercase;
    font-size: 24px;
	line-height:30px;
    margin-top: 0px;
	margin-bottom: 5px;
    font-family: 'RobotoRegular';
}
.blogpage-item-title a{
	color: #e61b72;
	transition: all 0.35s ease;
}
.blogpage-item-date{
	font-size:12px;
	color: #999;
	margin-bottom: 10px;
}
.blogpage-item-description{
	color: #333;
    font-size: 18px;
    line-height: 30px;
    font-family: 'RobotoRegular';
}
.blogpage-item-description p{
	margin:0px;
}
.blogpage-item-readmore{
	text-align:right;
	font-size: 18px;
    line-height: 18px;
    font-family: 'RobotoRegular';
	text-transform:uppercase;
	margin-top: 10px;
}
.blogpage-item-readmore a{
	color: #e61b72;
}


#yamap{
	height:500px;
	position:relative;
	padding: 1px 0px;
}
#footer{
	text-align: center;
	background: #48526c;
    color: #fff;
	font-family: 'RobotoLight';
	font-size:18px;
	padding-top: 55px;
    padding-bottom: 40px;
}
#footer a{
	color:#fff;
}
#sitemasters{}
#sitemasters a{
	display:inline-block;
	background: url(img/site-masters.png) center center no-repeat;
	background-size:100%;
	text-align:left;
	text-indent: -9999px;
    width: 125px;
    height: 25px;
    vertical-align: middle;
}


.whatsapp-block {
    position: fixed;
    bottom: 140px;
    right: 30px;
    z-index: 9999;
}
.whatsapp-inner {
    width: 70px;
    height: 70px;
	background-color:#009d00;
	
	-moz-border-radius:50%; 
	-webkit-border-radius:50%;
	border-radius:50%; 
	
	-webkit-box-shadow: 0 0 0 rgba(0,157,0, 0.4);
	-moz-box-shadow: 0 0 0 rgba(0,157,0, 0.4);
	-o-box-shadow: 0 0 0 rgba(0,157,0, 0.4);
	box-shadow: 0 0 0 rgba(0,157,0, 0.4);
	
	-webkit-animation: pulse 2s infinite;
	-moz-animation: pulse 2s infinite;
	-o-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
}
a.whatsapp {
    display: block;
    width: 70px;
    height: 70px;
    background:  url(img/what.png) center center no-repeat;
    transition-duration: 0.8s;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    overflow: hidden;
    box-shadow: 0 0 0 0 #009d00;
    border-radius: 50%;
    cursor: pointer;
	text-decoration:none;
	text-indent:-9999px;
}
a.whatsapp:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
}

@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(0,157,0, 0.5), 0 0 0 0 rgba(0,157,0, 0.5), 0 0 0 0 rgba(0,157,0, 0.5);
	}
	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(0,157,0 0),0 0 0 20px rgba(0,157,0, 0),0 0 0 20px rgba(0,157,0, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(0,157,0, 0),0 0 0 0 rgba(0,157,0, 0),0 0 0 0 rgba(0,157,0, 0);
	}
}
@-o-keyframes pulse {
	0% {
		-o-box-shadow: 0 0 0 0 rgba(0,157,0, 0.5), 0 0 0 0 rgba(0,157,0, 0.5), 0 0 0 0 rgba(0,157,0, 0.5);
	}
	70% {
		-o-box-shadow: 0 0 0 20px rgba(0,157,0, 0),0 0 0 20px rgba(0,157,0, 0),0 0 0 20px rgba(0,157,0, 0);
	}
	100% {
		-o-box-shadow: 0 0 0 0 rgba(0,157,0, 0),0 0 0 0 rgba(0,157,0, 0),0 0 0 0 rgba(0,157,0, 0);
	}
}
@-moz-keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(0,157,0, 0.5), 0 0 0 0 rgba(0,157,0, 0.5), 0 0 0 0 rgba(0,157,0, 0.5);
	}
	70% {
		-moz-box-shadow: 0 0 0 20px rgba(0,157,0, 0),0 0 0 20px rgba(0,157,0, 0),0 0 0 20px rgba(0,157,0, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(0,157,0, 0),0 0 0 0 rgba(0,157,0, 0),0 0 0 0 rgba(0,157,0, 0);
	}
}
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0,157,0, 0.5),0 0 0 0 rgba(0,157,0, 0.5),0 0 0 0 rgba(0,157,0, 0.5);
	}
	70% {
		box-shadow: 0 0 0 20px rgba(0,157,0, 0),0 0 0 20px rgba(0,157,0, 0),0 0 0 20px rgba(0,157,0, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(0,157,0, 0),0 0 0 0 rgba(0,157,0, 0),0 0 0 0 rgba(0,157,0, 0);
	}
}

/* кнопка наверх */
#totop {
    display: none;
    width: 60px;
    height: 60px;
    background: url('img/totop.png') center center no-repeat #333;
	border-radius:50%;
    text-indent: -9999px;
    position: fixed;
    bottom: 35px;
    right: 35px;
	opacity:0.6;
	z-index: 1000;
	transition: all 0.2s linear;
}
#totop:hover {
	opacity:1;
}

/* видео галерея */
.yendif-video-share{
	width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    box-sizing: border-box;
}
.yendif-video-share .page-header h1{
	font-size: 44px;
    font-family: 'RobotoLight';
    text-align: center;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 35px;
    color: #e61b72;
}

/* видео галерея на главной*/
.reviews-wrap .yendif-video-share{
	padding-left: 0px;
    padding-right: 0px;
}
.reviews-wrap{
	background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(img/bg-1.jpg);
}
.reviews-wrap ul>li{
	background:#fff;
}
.reviews-wrap ul>li .caption a{
	color: #333;
    font-size: 16px;
    font-family: 'RobotoRegular';
    font-weight: bold;
}
.reviews-wrap ul>li .caption a:hover{
	color: #e61b72;
}



/* убираем скидки*/
.akcia,
.discount,
.price.old,
.price-text.old{
	//display:none;
}