/* Eric Meyer's CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

strong, b {
	font-weight: bold;
}
/* End of Eric Meyer's CSS Reset */


@font-face {
	font-family: Roboto_Italic; 
	src: url(../fonts/Roboto-ThinItalic.ttf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: MyriadProItalic; 
	src: url(../fonts/MyriadProItalic.ttf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: MyriadPro; 
	src: url(../fonts/myriad-web-pro.ttf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: Roboto; 
	src: url(../fonts/roboto_regular.ttf);
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: Roboto_Bold; 
	src: url(../fonts/roboto_bold.ttf);
	font-weight: normal;
	font-style: normal;
}

body{
	font-family:Roboto;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}


/**** HEADER ***/

header{
	max-width:1220px;
	width:100%;
	padding: 0 20px;
	margin:0 auto;
}

header .logo{
	margin: 5px 0;
	display:block;
	
}


header .phone{
	margin-top:27px;
	background:url('../images/icon_phone.png') 0 0 no-repeat;
	min-height:18px;
	padding-left:32px;
	display: inline-block;
}

header .phone a{
	color:#000000;
	text-decoration:none !important;
	font-size:17px;
}

header .mail{
	margin-top:15px;
	background:url('../images/icon_mail.png') 0 0 no-repeat;
	min-height:13px;
	padding-left:32px;
	display: inline-block;
}

header .mail a{
	color:#000000;
	text-decoration:none !important;
	font-size:14px;
}

header .location{
	margin-top:27px;
	background:url('../images/icon_location.png') 0 0 no-repeat;
	min-height:13px;
	padding-left:32px;
	font-size:14px;
	display: inline-block;
}

header .links{
	-webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

header .download{
	background:url('../images/icon_down.png') 14px 50% no-repeat, #f0d60d;
	font-family:Roboto_Bold;
	font-size:13px;
	color:#084a98;
	padding:10px 15px 10px 45px;
	margin-top:15px;
	display:inline-block;
	text-decoration:none !important;
	transition:all 0.5s;
	/*max-width:180px;*/
	width:100%;
}

header .send{
	background:url('../images/icon_send.png') 14px 50% no-repeat, #084a98;
	font-family:Roboto_Bold;
	font-size:13px;
	color:#fff;
	padding:10px 15px 10px 45px;
	margin-top:15px;
	display:inline-block;
	text-decoration:none !important;
	transition:all 0.5s;
	max-width:180px;
	width:100%;
}

header .download:hover, header .send:hover{
	transform:scale(1.1);
}

header .action_menu{
	-webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
	margin-top:18px;

}

header .action_menu a{
	color:#084a98;
	font-size:14px;
	font-family:Roboto_Bold;
	text-decoration:none !important;
	transition:all 0.3s;
	padding-left:30px;
	min-height:20px;
	line-height: 21px;
}

header .action_menu a.new{
	background:url('../images/icon_new.png') 0 50% no-repeat;
}

header .action_menu a.sale{
	background:url('../images/icon_sale.png') 0 50% no-repeat;
}

header .action_menu a.action{
	background:url('../images/icon_action.png') 0 50% no-repeat;
}

header .action_menu a:hover{
	color:#f0d60d;
}

@media (max-width: 1178px){
	header .links {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-ms-flex-pack: justify;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		align-items: center;
	}
	
	header{
		padding-bottom:15px;
	}
}



@media (max-width: 768px){
	header{
		text-align:center;
	}
	
	header .phone, header .mail{
		margin:10px 15px;
	}
	
	header .phone{
		margin-top:15px;
	}
	
	
}

/**** END HEADER ***/


/*** MENU ***/
.topmenu-xs{
	width:100%;
	min-height:40px;
	background:#084a98;
}


.wrap_menu{
	width:100%;
	min-height:40px;
	background:#084a98;
}

.wrap_menu .menu{
	max-width:1220px;
	width:100%;
	margin:0 auto;
	padding:0 20px;
	
	-webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}



.wrap_menu .menu li a{
	color:#fff;
	line-height: 31px;
	display:block;
	text-decoration:none !important;
	border-bottom:5px solid #084a98;
	padding-top: 4px;
	transition: all 0.2s;
	font-size:13px;
}

.wrap_menu .menu li a:hover, .wrap_menu .menu li.active a{
	color:#fff200;
	border-bottom:5px solid #fff200;
}



@media (max-width: 767px){
	.wrap_menu .menu li a, .wrap_menu .menu li a:hover{
		border:none;
	}
	
	.wrap_menu{
		min-height:50px;
	}
	
	.navbar-toggle{
		border:1px solid #fff;
	}

	.navbar-toggle span{
		background:#fff;
	}

	.navbar-brand{
		color:#fff;
	}

	.wrap_menu .menu{
		display:none;
		padding-top: 8px;
	}
}

/*** END MENU ***/

/*** SLIDE ***/

.slider{
	max-width:1920px;
	width:100%;
	margin:0 auto;
	position:relative;
}

.slider li{

background-position:center !important;
}	

.slider li img {
	max-width: 100%;
    height: auto;
}

.lSSlideOuter .lSPager.lSpg {
    margin: 0 auto;
    width: 100%;
    position: absolute;
    top: 90%;
}	

.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background: url('../images/s_nav_active.png') 0 0 no-repeat;
	opacity: 1;
}

.lSSlideOuter .lSPager.lSpg > li a {
     background: url('../images/s_nav.png') 0 0 no-repeat;
	opacity: 1;
	width: 18px;
	height: 18px;
}	

.lSSlideOuter .lSPager.lSpg > li {
    padding: 0 2px;
}

.lSAction{
	position: absolute;
    max-width: 1220px;
    margin: 0 auto;
    width: 100%;
    top: 50%;
	left: 0;
    right: 0;
} 

.lSAction > .lSPrev{
	background:url("../images/l.png") 0 0 no-repeat;
	width: 27px;
	height:69px;
	z-index:10;
	left:20px;
}
.lSAction > .lSNext{
	background:url("../images/r.png") 0 0 no-repeat;
	width: 27px;
	height:69px;
	z-index:10;
	right:20px;
}

.wrapBlock{
	margin: 0 auto;
    width: 100%;
	top: 25%;
	position:absolute;
	z-index:995;
	text-align:right;
}

.slider  .block{
	background:#fff;
	background:url("../images/block.png") 0 0 repeat;
	max-width:432px;
	width:100%;
	padding: 35px 50px 50px 50px;
	display: inline-block;
    text-align: right;
	margin-right: 15%;
}

.slider  .block .title{
	color:#084a98;
	font-size:22px;
	text-transform:uppercase;
}

.slider  .block .text{
	color:#000;
	margin-top:25px;
	font-size:13px;
	line-height: 19px;
}
/*** END SLIDE ***/

/*** ADVANTAGES ***/

.dostigenia{
	/*-webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;*/
	
	-webkit-box-pack: justify;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-ms-flex-pack: justify;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: center;
	
	max-width:1220px;
	width:100%;
	margin:0 auto;
	padding:0 20px;
}

.all_page .dostigenia{
	padding:0;
}

.dostigenia .item{
	position:relative;
	width:279px;
	height:88px;
	background:#fbf8c0;
	border:1px solid #f0d60d;
	display: table;
	    margin: 20px 0 0 0;
}

.dostigenia .item img{
	position:absolute;
	top: -1px;
    left: -1px;
}

.dostigenia .item span{
	font-size:14px;
	font-family:Roboto_Bold;
	color:#084a98;
	padding-left:105px;
	padding-right: 17px;
	display: table-cell;
    vertical-align: middle;
}

/*** END ADVANTAGES ***/

/*** SALE BLOCK ***/

.sale_block_wrap{
	background:url('../images/sale_bg.jpg') 0 0 repeat;
	margin-top:35px;
}

.sale_block{
	max-width:1220px;
	width:100%;
	margin:0 auto;
	padding:0 20px;
	padding-top:30px;
}

.sale_block .title{
	color:#084a98;
	font-size:24px;
	font-family:Roboto_Bold;
	text-transform:uppercase;
	text-align:center;
	margin-bottom:35px;
}

.sale_block .title span.text{
	margin:0 15px;
}

.sale_block .title span.label{
	display:inline-block;
	background:url('../images/sale_lebel.png') 0 0 no-repeat;
	width:19px;
	height:22px;
	margin: 0 15px;
}

.sale_block .wrap {
	max-width:1220px;
	width:100%;
	margin:0 auto;
	padding:0 70px;
}

.sale_block .list li .wrapItem{
	max-width:282px;
	width:100%;
	margin: 0 auto;
}

.sale_block .list li a{
	color:#084a98;
	font-size:16px;
	text-decoration:none !important;
}



.sale_block .list li a img{
	margin-bottom:15px;
	max-width:282px;
	width:100%;
}

.sale_block .list li .text{
	font-size:13px;
	color:#000;
	text-align:justify;
	margin-top: 8px;
    line-height: 16px;
}

.sale_block .control{
	position: relative;
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    height: 20px;
    top: -295px;
}

.sale_block .control .prev{
	background: url("../images/l.png") 0 0 no-repeat;
    width: 27px;
    height: 69px;
    z-index: 10;
	position:absolute;
	cursor:pointer;
    left: -55px;
}

.sale_block .control .next{
	background: url("../images/r.png") 0 0 no-repeat;
    width: 27px;
    height: 69px;
    z-index: 10;
	position:absolute;
	cursor:pointer;
    right: -55px;
}


@media (max-width: 580px){
	.sale_block .wrap{
		padding:0 60px;
	}
	


}

/*** END SALE BLOCK ***/


/*** CONTANT MAIN ***/

.main_page .content{
	 max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    padding: 0 120px;
	padding-top:35px;
	background: url("../images/kosa.png") 0 0 no-repeat;
	text-align:justify;
}

.all_page{
	overflow: hidden;
}

.all_page .content{
	max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
	padding-top:35px;
	background: url("../images/kosa.png") 0 0 no-repeat;
	text-align:justify;
	position:relative;
	min-height:320px;
	
}

h1{
	font-size:18px;
	color:#084a98;
	font-family:Roboto_Bold;
}

.content{
	font-size:13px;
	color:#000;
	line-height:22px;
}

.content p{
	margin-top:20px;
	margin-bottom: 20px;
	
}


.content .nav{
	font-size:14px;
	font-family:MyriadProItalic;
	color:#084a98
}

.content .nav a{
	color:#084a98;
	margin-right: 7px;
}

.content .nav p{
	color:#000;
	display:inline-block;
	margin:0 auto;
}

.content .nav span{
	margin-right: 7px;
}

.all_page h1{
    margin-top: 5px;
    margin-bottom: 25px;
}

.content img.left{
	float:left;
	margin-right: 25px;
}

.content img.right{
	float:right;
	margin-left: 25px;
}


.content .bg{
	background:#fbf8c0;
	padding:40px 100px;
}

.content .v li{
	background:url('../images/li_type.png') 0 0 no-repeat;
	padding-left:60px;
	line-height: 25px;
    margin-bottom: 15px;
}

@media (max-width: 768px){
	.main_page .content{
		padding:0 40px;
	}
	
	.content img.left, .content img.right{
		float:initial;
		display:block;
		margin:0 auto;
	}

	.content .bg{
		padding:40px 20px;
	}

}

/*** END CONTANT MAIN ***/


/*** FOOTER ***/

footer{
	width:100%;
	background: url("../images/footer_1.png") left bottom no-repeat, url("../images/footer_2.png") right bottom no-repeat, #084a98;
	min-height:299px;
	border-bottom:8px solid #fff200;
	margin-top:55px;
}

.all_page footer{
	margin-top:25px;
}

.footer{
	max-width: 1220px;
    width: 100%;
    margin: 0 auto;
	padding:0 20px;
	padding-top:25px;
	font-family:Roboto;
}

.footer .copyright{
	color:#fff;
	font-size:13px;
	margin-top:19px;
	margin-bottom:20px;
}

.footer .phone{
	margin-bottom:15px;
	background:url('../images/icon_phone_f.png') 0 0 no-repeat;
	min-height:18px;
	padding-left:32px;
	display: inline-block;
}

.footer .phone a{
	color:#fff;
	text-decoration:none !important;
	font-size:17px;
}

.footer .mail{
	background:url('../images/icon_mail_f.png') 0 3px no-repeat;
	min-height:13px;
	padding-left:32px;
	display: block;
	margin-bottom:15px;
}

.footer .mail a{
	color:#fff;
	text-decoration:none !important;
	font-size:14px;
}

.footer .location{
	background:url('../images/icon_location_F.png') 0 0 no-repeat;
	min-height:13px;
	padding-left:32px;
	font-size:13px;
	display: block;
	color:#fff;
	min-height:22px;
	margin-bottom: 35px;
}

.footer .location br{
	display:none;
}

.footer .footer_menu{
	margin-bottom: 20px;
}

.footer .footer_menu li{
	display:inline-block;
	max-width:178px;
	width:100%;
	margin-bottom:8px;
}

.footer .footer_menu li a{
	color:#fff;
	font-size:13px;
	text-decoration:none !important;
}

.footer .footer_menu li a:hover{
	color:#fff200;
}

.footer .action_menu_f{
	margin-bottom:25px;
}

.footer .action_menu_f a{
	color:#fff;
	font-size:13px;
	font-family:Roboto_Bold;
	text-decoration:none !important;
	transition:all 0.5s;
	min-height:20px;
	line-height: 21px;
	display:block;
	padding-left:40px;
	margin-bottom: 10px;
}

.footer  .action_menu_f a.new{
	background:url('../images/icon_new_f.png') 0 0 no-repeat;
}

.footer  .action_menu_f a.sale{
	background:url('../images/icon_sale_f.png') 0 0 no-repeat;
}

.footer  .action_menu_f a.action{
	background:url('../images/icon_action_f.png') 0 0 no-repeat;
}

.footer  .action_menu_f a.new:hover{
	background:url('../images/icon_new_f_a.png') 0 0 no-repeat;
}

.footer  .action_menu_f a.sale:hover{
	background:url('../images/icon_sale.png') 0 0 no-repeat;
}

.footer  .action_menu_f a.action:hover{
	background:url('../images/icon_action.png') 0 0 no-repeat;
}

.footer .action_menu_f a:hover{
	color:#fff200;
}

.footer .it_studio{
	color:#fff;
	text-decoration:none !important;
	font-size:13px;
	margin-top: 6px;
    display: block;
	margin-bottom:25px;
}

.footer .it_studio img{
	display: block;
    margin-top: 8px;
}


.footer .social{
	color:#fff;
	font-family:Roboto_Bold;
	font-size:13px;
	display:table;
	margin-bottom:25px;
}

.footer .social span{
	display:table-cell;
	vertical-align:middle;
	padding-right: 14px;
}


@media (max-width: 768px){
	footer{
		background:#084a98;
	}

}
/*** END FOOTER ***/

/*** CALLBACK ***/


.overlay-block {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(21, 56, 94, 0.6);
	z-index: 995;
	overflow: auto;
	
}

.send-block{
	display: none;
}

.review-block{
	display: none;
}

.good-block{
	display: none;
}



.overlay-tb {
	display: table;
	width: 100%;
	height: 100%;
}

.overlay-td {
	width: 100%;
	height: 100%;
	vertical-align: middle;
	text-align: center;
	display: table-cell;
}

.overlay-main {
	width: 505px;
	margin: 0 auto;
	padding: 50px 60px;
	color: #444444;
	position: relative;
	text-align: left;
	border-radius: 2px;
	background-color: #ffde43;
	position:relative;
	z-index:100;
}

.review-main{
	height: 530px;
	padding-top: 95px;
}

.overlay-main .close-form{
	position:absolute;
	top:10px;
	right:15px;
	background:url('../images/close.png') 0 0 no-repeat;
	width:21px;
	height:21px;
	cursor:pointer;
	z-index:100;
}

.form_img{
	position: absolute;
    top: -10px;
    bottom: 0;
    left: -115px;
    right: 0;
}

.overlay-main .title{
	text-align:center;
	font-size:22px;
	color:#004390;
	font-family:Roboto_Bold;
	line-height: 16px;
    margin-bottom:30px;
	position: relative;
    z-index: 100;
}

.overlay-main form{
	max-width:415px;
	width:100%;
	margin:0 auto;
	font-size:15px;
	position: relative;
    z-index: 100;
}

.overlay-main form input[type="text"]{
	display:block;
	width:100%;
	background:#fff;
	margin-bottom:10px;
	height:38px;
	outline:none;
	border:none;
	box-shadow: inset 0px 1px 0px rgba(0, 0, 0, 0.19);
	padding-left:10px;
	line-height: 20px;
	color:#004390;
	border:1px solid #ffde43;
	position: relative;
    z-index: 150;
}

.overlay-main form textarea{
	display:block;
	width:100%;
	background:#fff;
	margin-bottom:17px;
	height:125px;
	resize: none;
	outline:none;
	border:none;
	box-shadow: inset 1px 1px 0px rgba(0, 0, 0, 0.19);
	padding-left:10px;
	line-height: 20px;
	color:#004390;
	border:1px solid #ffde43;
}



.overlay-main form input[type="text"].error{
	border:1px solid #e2001a;
}

.overlay-main form textarea.error{
	border:1px solid #e2001a;
}

.overlay-main form input[type="submit"]{
	border:none;
	text-align:center;
	margin:0 auto;
	display:block;
	outline:none;
	background:url('../images/icon_send.png') 14px 50% no-repeat, #084a98;
	font-family:Roboto_Bold;
	font-size:16px;
	color:#fff;
	padding:10px 15px 10px 45px;
	margin-top:15px;
	text-decoration:none !important;
	transition:all 0.5s;
	max-width:220px;
	width:100%;
	height:45px;

}

.overlay-main form input[type="submit"]:hover{
	transform:scale(1.1);
}

.overlay-main form input::-webkit-input-placeholder {color:#004390; text-align:center; font-style:italic; }
.overlay-main form input::-moz-placeholder          {color:#004390; text-align:center; font-style:italic;}/* Firefox 19+ */
.overlay-main form input:-moz-placeholder           {color:#004390; text-align:center; font-style:italic;}/* Firefox 18- */
.overlay-main form input:-ms-input-placeholder      {color:#004390; text-align:center; font-style:italic;}

.overlay-main form textarea::-webkit-input-placeholder {color:#004390; text-align:center; font-style:italic; }
.overlay-main form textarea::-moz-placeholder          {color:#004390; text-align:center; font-style:italic;}/* Firefox 19+ */
.overlay-main form textarea:-moz-placeholder           {color:#004390; text-align:center; font-style:italic;}/* Firefox 18- */
.overlay-main form textarea:-ms-input-placeholder      {color:#004390; text-align:center; font-style:italic;}

@media (max-width: 515px){
	.overlay-main{
		width: 280px;
		padding:50px 20px;
	}
	
	
	
}

.fileform { 
	display:block;
	width:100%;
	background:#fbf8c0;
	margin-bottom:10px;
	outline:none;
	box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.19);
	padding-left:10px;
	line-height: 20px;
	min-height: 38px;
	color:#004390;
	font-size:15px;
	border:3px solid #e7c524;
	position: relative;
    z-index: 150;
	overflow:hidden;
	
}

.fileform.error{
	border:3px solid red;
}

.fileform.ok{
	border:3px solid green;
}
 
 .fileform .selectbutton { 
    color: #c28b2c;
    font-size: 16px;
    line-height: 27px;
    overflow: hidden;
    padding: 2px 6px;
    text-align: center;
    vertical-align: middle;
	text-align:center;
	cursor:pointer;
}

 
.fileform #upload{
    position:absolute; 
    top:0; 
    left:0; 
    width:100%; 
    -moz-opacity: 0; 
    filter: alpha(opacity=0); 
    opacity: 0; 
    font-size: 150px; 
    height: 30px; 
    z-index:20;
	cursor:pointer;
}

/*** END CALLBACK ***/

/*** CONTACTS ***/

.feedback.overlay-main{
	padding-top: 25px;
	padding-bottom: 0px;
	height: 410px;
	max-width:505px;
	width:100%;
}

.feedback.overlay-main form input[type="submit"]{
	background: #084a98;
    padding: 0;
	margin-top: 35px;
}

.bg_feedback{
	position: absolute;
    top: -43px;
    bottom: 0;
    left: -91px;
    right: 0;
	background:url('../images/bg_feedback.png') 0 0 no-repeat;
	width:721px;
	height:545px;
}

.map {
	position:relative;
}

.map .scroll{
    width: 38px;
    height: 400px;
    background: rgba(8, 74, 152, 0.6);
    position: absolute;
    top: 48px;
    right: 0;
}

@media (max-width: 515px){
	.feedback.overlay-main{
		height:auto;
		margin-bottom:30px;
		padding-bottom:15px;
	}
}

/*** END CONTACTS ***/

/*** SHOPS ***/

.shop_list{
	-webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}

.shop_list .shop{
	max-width:380px;
	width:100%;
	text-decoration:none !important;
	border-bottom:6px solid #fff200;
	margin-bottom:20px;
	-moz-box-shadow: 0px 0px 5px rgba(8, 74, 152, 0.18);
	-webkit-box-shadow: 0px 0px 5px rgba(8, 74, 152, 0.18);
	box-shadow: 0px 0px 5px rgba(8, 74, 152, 0.18);
	transition: all 0.5s;
}

.shop_list .shop:hover{
	-moz-box-shadow: 0px 0px 15px rgba(8, 74, 152, 0.33);
	-webkit-box-shadow: 0px 0px 15px rgba(8, 74, 152, 0.33);
	box-shadow: 0px 0px 15px rgba(8, 74, 152, 0.33);
}

.shop_list .shop img{
	max-width:380px;
	width:100%;
}


.shop_list .shop .name{
	color:#084a98;
	font-family:Roboto_Bold;
	margin-top: 5px;
	padding: 0 15px;

}

.shop_list .shop .text{
	color:#000;
	padding: 0 15px 10px 15px;
}

@media (max-width: 1180px){
	.shop_list{
		-webkit-box-pack: justify;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-ms-flex-pack: justify;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		align-items: center;
	}
}



/*** ENS SHOPS ***/


/*** SALES ***/

.sale_list{
	-webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    /*align-items: center;*/
}

.sale_list .sale{
	max-width:282px;
	width:100%;
	margin-bottom:20px;

}



.sale_list .sale img{
	max-width:282px;
	width:100%;
}


.sale_list .sale .name{
	color:#084a98;
	font-family:Roboto_Bold;
	margin-top: 5px;
	padding: 0 15px;

}

.sale_list .sale .text{
	color:#000;
	padding: 0 15px 10px 15px;
}

@media (max-width: 885px){
	.sale_list{
		-webkit-box-pack: justify;
		-webkit-justify-content: space-around;
		justify-content: space-around;
		-ms-flex-pack: justify;
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		align-items: center;
	}
}
/*** ENS SALES ***/

/*** TENDERS ***/

.tender_list{}

.tender_list .tender{
	background:#fff;
	min-height:145px;
	display:block;
	-moz-box-shadow: 0px 0px 5px rgba(8, 74, 152, 0.18);
	-webkit-box-shadow: 0px 0px 5px rgba(8, 74, 152, 0.18);
	box-shadow: 0px 0px 5px rgba(8, 74, 152, 0.18);
	transition: all 0.5s;
	text-decoration:none !important;
	border-right:6px solid #fff200;
	margin-bottom:20px;
}

.tender_list .tender:hover{
	-moz-box-shadow: 0px 0px 15px rgba(8, 74, 152, 0.33);
	-webkit-box-shadow: 0px 0px 15px rgba(8, 74, 152, 0.33);
	box-shadow: 0px 0px 15px rgba(8, 74, 152, 0.33);
}

.tender_list .tender .date{
	width:300px;
	display:table-cell;
	vertical-align:middle;
	height:145px;
	font-size:18px;
	color:#084a98;
	font-family:Roboto_Bold;
	padding-left:20px;
	text-transform:lowercase;
}

.tender_list .tender .date span{
	font-size:48px;
}

.tender_list .tender .right{
	display: table-cell;
    vertical-align: middle;
	padding: 10px 20px 10px 0;
}

.tender_list .tender .right .name{
	color:#084a98;
	font-family:Roboto_Bold;
}

.tender_list .tender .right .text{
	color:#000;
}


.tender img{
	margin:0 auto;
	display:block;
}

.more{
	max-width:580px;
	height:45px;
	background:url('../images/bg_more.png') 100px 11px no-repeat, url('../images/bg_more.png') 460px 11px no-repeat, #e5e9ee;
	text-align:center;
	color:#084a98;
	font-size:18px;
	margin:0 auto;
	width:100%;
	font-family:MyriadProItalic;
	line-height: 45px;
	cursor:pointer;
	-moz-box-shadow: 0px 1px 1px rgba(8, 74, 152, 0.22);
	-webkit-box-shadow: 0px 1px 1px rgba(8, 74, 152, 0.22);
	box-shadow: 0px 1px 1px rgba(8, 74, 152, 0.22);
	transition:all 0.5s;
	margin-bottom:20px;
}

.more:hover{
	transform:scale(1.1);
}

@media (max-width: 768px){
	.tender_list .tender .date{
		width:auto;
		padding-right:20px;
	}
}

@media (max-width: 450px){
	.tender_list .tender .date{
		display:block;
		height:auto;
		padding:20px;
	}
}

/*** END TENDERS ***/

/*** REVIEWS ***/

.send_review{
	background: url('../images/icon_button_review.png') 50px 50% no-repeat, #f0d60d;
    font-family: Roboto_Bold;
    font-size: 16px;
    color: #084a98;
    padding: 10px 15px 10px 90px;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none !important;
    transition: all 0.5s;
    max-width: 242px;
    width: 100%;
	height:40px;
	cursor:pointer;
	position: absolute;
    top: 35px;
    right: 20px;
}

.send_review:hover{
	transform:scale(1.1);
}

.review_list {
	margin-top: 20px;
}

.review_list .review {}

.review_list .review .question {
	border:1px solid #fff200;
	background:#fff;
	padding:20px 15px;
	margin-bottom:5px;
}

.review_list .review .question .name{
	font-family:Roboto_Bold;
	font-size:16px;
}

.review_list .review .question .name span{
	color:#ffc000;
	font-size:14px;
	text-transform:lowercase;
}

.review_list .review .answer {
	background:#fbf8c0;
	border:1px solid #f0d715;
	padding:15px;
	margin-left:190px;
	margin-bottom: 15px;
}

.review_list .review .answer .img{
	display:table-cell;
	vertical-align:top;
	width:205px;
	text-align: center;
}

.review_list .review .answer .text{
	display:table-cell;
	vertical-align:top;
}

@media (max-width: 768px){
	.review_list .review .answer {
		margin-left:50px;
	}
	
	.review_list .review .answer .img{
		width:auto;
		padding-right:15px;
	}
	
}

@media (max-width: 450px){
	.send_review{
		position:initial;
		margin:0 auto;
		display: block;
	}
	
	.review_list .review .answer {
		margin-left:20px;
	}
	
	.review_list .review .answer .img{
		display:block;
	}
}

/*** END REVIEWS ***/

/*** 404 ***/

.all_page_404{
	max-width:1920px;
	width:100%;
	margin:0 auto;
}

.er404{
	max-width:1920px;
	height:553px;
	background:url('../images/404.png') 100% 0 no-repeat;
	position:relative;
	background-size:contain;
	margin-top: 15px;
}

.er404 .list{
	position: absolute;
    right: 26%;
    top: 45%;
    color: #fff;
}

.er404 .list li{
	padding-left:25px;
	background:url('../images/li_type_404.png') 0 0 no-repeat;
	margin-bottom: 10px;
}

.er404 .list a{
	color:#fff;
	font-size:18px;
}

.er404 h1{
	font-family:Roboto;
	font-size:18px;
	position:absolute;
	top: 22%;
    right: 24%;
}

@media (max-width: 1280px){
	.er404 .list{
		top:35%;
	}
	
	.er404 h1{
		top: 17%;
		right: 24%;
	}
}

@media (max-width: 1110px){
	.er404 .list{
		top:25%;
	}
	
	.er404 h1{
		top: 13%;
		right: 24%;
	}
}

@media (max-width: 900px){
	.er404 h1{
		top: 10%;
		right: 16%;
	}
}

@media (max-width: 865px){
	.er404 .list{
		top:19%;
	}
}

@media (max-width: 768px){
	.er404 .list{
		display:block;
		position:initial;
		background:#084a98;
		padding:20px 50px;
		margin-top:20px;
	}
	
	.er404{
		background:none;
	}
	
	.er404 h1{
		display:block;
		position:initial;
		margin-top:30px;
		padding-left:20px;
	}
}

/*** END 404 ***/