* {
  box-sizing: boder-box;
}

@font-face {
font-family: 'mrs_whiteregular';
src: url('../font/mrswhite-webfont.woff2') format('woff2'),
 url('../font/mrswhite-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;

}
html
{
	width: 100%;
	height: 100%;
}

body {
	font-family: 'mrs_whiteregular';
	color: #000;
}

#main {
  position: relative;
  z-index: 20;
  background-color: #000;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}
@media (min-width: 640px) {
  #main {
    padding: 1em;
  }
}

.fake-section {
  background: #eee;
  height: 300px;
}

.tiles-a {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.tiles-a ul {
  margin: 0;
  padding: 0;
}
.tiles-a li {
  list-style: none;
}
@media (min-width: 640px) {
  .tiles-a li {
    float: left;
    width: 33.33%;
  }
}


.tiles-a span {
  margin: 1em;
  display: block;
  background: #222;
  padding-top: 73%;
  height: 0;
  cursor: pointer;
}

#aside {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background: #eee;
    background-image: url(../images/bgapp.jpg);
  overflow-y: scroll;
  z-index: 10;

}

.tiles-a li span
{
	background-size: 210%;
	-webkit-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    transition: all 500ms linear;
	border: none;
	border: 10px solid #fff;
}


.tiles-a li span:hover
{
	  background-size: 150%;
	  border: 10px solid #000;
}

@media (max-width: 830px)
{
	#aside {
  width: 100%;
}

.show-detail #aside
{z-index: 100;}
}

@media (min-width: 830px)
{
	#aside {
  width: 60%;
}
}
#aside img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
#aside .wrapper {
  padding: 1em;
}
#aside .close {
  width: 30px;
  height: 30px;
  display: block;
  position: fixed;
  top: 1em;
  right: 1em;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 2000;
}

.show-detail {
  overflow: hidden;
}
.show-detail #main {
  -webkit-transform: translateX(-60%);
          transform: translateX(-60%);
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}


.logo
{
	clear: both;
	background-repeat: no-repeat;
	background-image: url(../images/sm_logo.png);
	background-position:center;
	background-size: contain;
}

.logo
{
	width: 80vw;
	height: 20vh;
	margin-left: 10vw;
	margin-right: 10vw;
}

a, a:visited
{color: #000;
font-size: 3vh;
}
a:hover, a:active
{color: #000;
text-decoration: none;}



.menu a
{color: #fff;
padding-left: 5vw;
padding-right: 5vw;
display: inline-block;
line-height: 2;
}

.menu a.active
{
	background-color: #fff;
	color: #000;
	border-radius: 50px;
}


















