/* VARIABLE*/
/* MIXIN*/
.transition, a {
  -webkit-transition: all .5s;
  transition: all .5s;
}

.hover, a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
  /*background:none!important;*/
}

/* -js-display:flex; flex for IE8,9*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background: #f6f5ef;
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  color: #202020;
  text-decoration: none;
}

li {
  list-style: none;
}

.defs {
  display: none;
}

.visually-hidden {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
}

.container {
  width: 100%;
  height: 100%;
}

.no-action {
  pointer-events: none;
  cursor: default;
}

.Flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
  align-items: stretch;
}

.ai-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 404page */
#error-404 {
  text-align: center;
  padding: 10%;
}
#error-404 h1 {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 10%;
}
#error-404 p {
  margin-bottom: 10%;
}
#error-404 a {
  display: inline-block;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}
