div.header{
	height: 60px;
}
div.header .logo{
	height: 50px;
	width: 150px;
	left: 0;
	top: 5px;
}
div.header .logo a{
	display: block;
	height: 50px;
	width: 182px;
  	background: url(../images/logo0.svg) center center no-repeat;
  	background-size: cover;
}
div.header .logo a img{
	display:none;
}

.header > .search {
	display: none;
}

.header .contact {
    width: 50px;
    height: 50px;
    top: 5px;
    right: 50px;
}
.header .contact .phone{
	top: 54px;
}
.header .contact:hover .phone{
	top: 44px;
}
.header > a.switch,
.header > a.login{
	display: none;
}
.panel {
    position: fixed;
    background: #ffffff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translate(100%,0);
    z-index: 10000;
    transition: 0.5s  ease-in-out all;
    --box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.35);
}

.panel.mm{
	left: auto;
	top: 0;
	width: auto;
	--width: 100vw;
	min-width: 350px;
    border-left: 1px #666666 solid;
	overflow: auto;
}
body.menuOpened{
	height: 100vh;
	overflow: hidden;
}
body.menuOpened .panel.mm {
   transform: translate(0,0);
   left: auto;
}
body.menuOpened .closePanelHelper {
    position: fixed;
    top: 0;
    left: 0;
	height: 100vh;
	width: 100vw;
    background: #ffffff;
	opacity:0.5;
    transition: 0.5s  ease-in-out all;
}
.panel.mm .head{
	display: block;
	height: 60px;
	position: relative;
}

.mm a.switch{
	display: block;
	position: absolute;
	left: 30px;
	top: 5px;
	padding: 16px 0 8px;
	text-decoration: none;
	height: 26px;
	text-transform: uppercase;
	font-size: 18px;
	text-align: left;
	color: #FF6E4F;
	font-weight: bold;
	width: 50px;
	text-align: center;
}

#nav, .subnav {
	height: auto;
	text-align: left;
	display: block;
	margin: 0;
}
#nav{
	padding-bottom: 10px;
}
#nav li, .subnav li {
    display: block;
    float: none;
    height: auto;
    margin: 0 0 0 0;
}
#nav li.expandable{
	position: relative;
}
#nav li.expandable .expander{
	position: absolute;
	display: block;
	width: 32px;
    height: 32px;
    background: url(../images/expander.svg) center center no-repeat;
    top: 4px;
    right: 26px;
    cursor: pointer;
}
#nav li.expandable.cur .expander{
    background-image: url(../images/expander_cur.svg);
}
#nav li a, #nav li span, #nav li a.pull, #nav li span.pull{
	font-size: 18px;
	padding: 10px 10px 0 40px;
	border-bottom: none;
	font-weight: bold;
}

.menuSwitcher {
	display: block;
    position: absolute;
	width: 50px;
	height: 50px;
	right:10px;
	top:5px;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	cursor: pointer;

}

.mm.panel .head .menuSwitcher {
    background: url(../images/close.svg) center center no-repeat;
}

.menuSwitcher .icon-left {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  height: 3px;
  width: 12px;
  top: 24px;
  background-color: #333;
  left: 12px;
}
.menuSwitcher .icon-left:before {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 12px;
  height: 3px;
  background-color: #333;
  content: '';
  top: -8px;
}
.menuSwitcher .icon-left:after {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 12px;
  height: 3px;
  background-color: #333;
  content: '';
  top: 8px;
}
.menuSwitcher .icon-left:hover {
  cursor: pointer;
}
.menuSwitcher .icon-right {
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	position: absolute;
	height: 3px;
	width: 12px;
	top: 24px;
	background-color: #333;
	left: 24px;
}
.menuSwitcher .icon-right:before {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 12px;
  height: 3px;
  background-color: #333;
  content: '';
  top: -8px;
}
.menuSwitcher .icon-right:after {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  position: absolute;
  width: 12px;
  height: 3px;
  background-color: #333;
  content: '';
  top: 8px;
}
body.menuOpened .menuSwitcher .icon-left {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  background: transparent;
}
body.menuOpened .menuSwitcher .icon-left:before {
  -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
          transform: rotateZ(45deg) scaleX(1.4) translate(2px, 2px);
}
body.menuOpened .menuSwitcher .icon-left:after {
  -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
          transform: rotateZ(-45deg) scaleX(1.4) translate(2px, -2px);
}
body.menuOpened .menuSwitcher .icon-right {
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  background: transparent;
}
body.menuOpened .menuSwitcher .icon-right:before {
  -webkit-transform: rotateZ(-45deg) scaleX(1.3) translate(-2px, 1px);
          transform: rotateZ(-45deg) scaleX(1.3) translate(-2px, 1px);
}
body.menuOpened .menuSwitcher .icon-right:after {
  -webkit-transform: rotateZ(45deg) scaleX(1.3) translate(-2px, -1px);
          transform: rotateZ(45deg) scaleX(1.3) translate(-2px, -1px);
}
#all > .searchform{
	display: none;
}
.mm.panel .searchform{
	position: relative;
	display: block;
	top: auto;
	left: auto;
	opacity: 1;
	box-shadow: none;
	width: auto;
	border: none;
	border-top: 1px #E8E8E8 solid;
	padding: 20px 40px 20px 40px;
}
.searchform form input[type=text] {
	width: calc( 100% - 18px);
	font-size: 16px;
	margin: 0;
}
.searchform form input[type=submit] {
	position: absolute;
	width: 36px;
    height: 36px;
    background: transparent url(../images/search.svg) center center no-repeat;
    top: 19px;
    right: 40px;
    cursor: pointer;
    color: transparent;
}

div.subheader{
	display: none;
}
#nav li .subnav {
    display: block;
}
#nav li .subnav li a, #nav li .subnav li span{
	height: auto;
	padding: 6px 10px 6px 60px;
	white-space: normal;
	max-width: calc( 100vw - 80px);
}
#nav li .subnav{
	display: none;
}
#nav li.cur .subnav{
	display: block;
}
#nav li.cur .subnav li a, #nav li.cur .subnav li span{
    color: #FF6E4F;
    position: relative;
}
#nav li.cur .subnav li a.cur::before, #nav li.cur .subnav li span.cur::before{
	content: '';
	display: block;
	position: absolute;
	width: 8px;
    height: 8px;
    background: #FF6E4F;
    top: 12px;
    left: 42px;
	border-radius: 4px;
}
#nav li.cur a.cur,
#nav li a:active, .subnav li a:active,
#nav li span, #nav li a.cur, .subnav li span, .subnav li a.cur {
    border-bottom: none;
    color: #FF6E4F;
}
#nav li.adm{
	display: none;
}

.site_footer.desktop{
	display: none;
}
.site_footer.mobile{
	display: block;
    padding-top: 10px;
    border-top: 1px #E8E8E8 solid;
}
.site_footer.mobile .banner {
	display: none;
}
.site_footer .menu{
	padding-top: 8px;
	height: auto;
}
.site_footer .container{
	padding: 0 12px;
	width: auto;
}
.site_footer .menu > .container > div,
.site_footer .menu > .container > div.right,
.site_footer .bottom .container div,
.site_footer .menu > .container > div.center {
	float: none;
	width: auto;
	line-height: 1.45;
}
.site_footer .menu > .container > div.nav{
    padding-bottom: 6px;
    margin-bottom: 10px;
    border-bottom: 1px #E8E8E8 solid;
}
.site_footer .menu > .container > div.center{
	display: none;
}
.site_footer .menu > .container > div.nav a{
	display: block;
	font-size: 18px;
	padding: 0 12px 8px 28px;
	text-transform: uppercase;
}
.site_footer .menu > .container > div.right{
	    text-align: left;
}
.site_footer .bottom .container div:first-child,
.site_footer .bottom .container div:last-child {
    padding: 8px 0;
    text-align: left;
}

.site_footer .social {
	padding: 8px 22px;
}
.site_footer .bottom{
	height: auto;
}
p.add_new,
span.controls{
	display: none;
}
.header .contact .phone{
	transform: none;
	left: auto;
	right: -30px;
}

.mainblock > .content > .article > .twocol .left,
.mainblock > .content > .twocol .right,
.mainblock > .content > .twocol .left,
.mainblock > .content .page_more .twocol .right,
.mainblock > .content .page_more .twocol .left{
	float: none;
	width: calc( 100vw - 80px);
}
.mainblock > .content > .article > .twocol .right,
.mainblock > .content > .twocol .right,
.mainblock > .content .page_more .twocol .right{
	text-align: center;
}
.articles, .article.project {
	width: calc( 100vw - 80px );
}
.articles.news.lenta{
	grid-template-columns: 1fr 1fr;
}
.articles.news.lenta .item {
	margin-bottom: 20px;
}

.content.index.articlesnews .articles.news .item{
	--width: calc( (100% - 30px) / 2 ) !important;
}
.content.index.articlesnews .articles.news .item:nth-child(2n) {
  margin-right: 0;
}
.content.index.articlesnews .articles.news .item:nth-child(3n) {
  display: none;
}
.article.jury .right {
	float: none;
	width: 100%;
	height: auto;
}
.article.jury .left {
	float: none;
	width: auto;
}

.jury{
	grid-template-columns: 1fr 1fr;
}

.illustrations.carousel .scrollable .item{
	width: calc( (100vw - 60px - 30px) / 2 ) !important;
	margin-bottom: 0px;
}

ymaps{
	margin: auto;
}
.articles.media .item .left {
	width: 150px;
}
.articles.media .item.twocol .right{
	width: calc( 100% - 20px - 150px );
}



.article .right {
	float: none;
	position: relative;
	overflow: hidden;
	height: 240px;
	width: 358px;
	margin: 0 auto 20px;
} 
.article .right .scroller {
	width: 20000em;
	height: 240px;
    position: absolute;
}
.article .right .scroller a {
	float: left;
}
.article .right .scroller a.cloned {
	display: block;
}

.archive{
	grid-template-columns: 1fr 1fr 1fr;
}

@media screen and  (max-width:640px) {
	.archive{
		grid-template-columns: 1fr 1fr;
	}
}