* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
}

body {
  position: relative;
  font-family: arial, sans-serif;
  font-size: 20px;
  line-height: 1.75em;
  color: #434343;
  /*
  color: #fff;
  background: url('../images/body_bg.jpg') center top;
  background-size: cover;
  background-attachment: fixed;
  */
}

.bg {
  position: absolute;
  z-index: -1;
  top: 40%;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
}

.bg:before {
  content: ' ';
  display: block;
  position: absolute;
  top: 10%;
  right: -15%;
  bottom: -15%;
  left: -15%;
  transform: rotate(-5deg) translateY(10%);
  background: url('../images/body_bg.jpg') center top;
  background-size: cover;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1em 0;
  line-height: 1.25em;
}

p, ul, ol {
  margin: 0 0 2em 0;
}

li {
  margin: 0 0 1em 0;
}

a {
  text-decoration: none;
  font-weight: bold;
  color: #52236C;
  border-bottom: 1px dotted;
}

a:hover {
  border-bottom: 1px solid;
}

#container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto -120px auto;
  padding: 40px;
  background: #fff;
}

#logo {
  margin-bottom: 60px;
  text-align: right;
}

#logo a {
  border: 0;
}

#logo img {
  width: 150px;
}

#image {
  display: none;
}

#content ol {
  font-weight: bold;
}

#content ol li span {
  display: block;
  font-size: .8em;
  font-weight: normal;
  line-height: 1.5em;
}

#contact {
  text-align: center;
  padding: 200px 40px 80px 40px;
  color: #fff;
/*
  background: url('../images/body_bg.jpg') center top;
  background-size: cover;
*/
}

#contact a {
  color: #fff;
  font-weight: normal;
}

#contact h2, #contact ul {
  display: inline-block;
  margin: 1em 2em;
  vertical-align: middle;
}

#contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#contact ul li {
  display: inline-block;
  margin: 1em;
}

#contact ul li i {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

#contact ul .web i {
  background-image: url('../images/icon_web.svg');
}

#contact ul .email i {
  background-image: url('../images/icon_email.svg');
}

@media (min-width: 720px) {
  #body {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  
  #image, #content {
    display: table-cell;
    vertical-align: top;
  }
  
  #image {
    width: 160px;
    padding-right: 80px;
  }
}