/* b-pi Styles */
/* -- Variables -- */
.borderBoxed {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}
.shadowed {
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}
/* -- Fonts -- */
/* Tags & Elements */
body {
  background: #f0f0f0;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  overflow: auto;
}
a {
  text-decoration: underline;
  color: #000;
}
a:hover {
  color: #666;
}
h1,
h2 {
  font-weight: 200;
}
h1 {
  margin-top: 10px;
  margin-bottom: 14px;
}
h2 {
  margin-bottom: 40px;
}
.image_container {
  position: relative;
}
.image_container img {
  width: 100%;
  height: auto;
  margin: 0px auto;
}
.image_container figcaption {
  font-size: 14px;
}
.mobileClear {
  clear: both;
  display: block;
}
#wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
}
#wrapper .container {
  max-width: 960px;
}
.contactData {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
/*###############################################################
Media Querie: Tablet Portrait
###############################################################*/
@media (min-width: 768px) {
  .container {
    position: relative;
  }
  #wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .textBox {
    position: static;
  }
  .contactData {
    position: absolute;
    bottom: 0px;
  }
  .mobileClear {
    clear: none;
    display: none;
  }
}
/*###############################################################
Media Querie: Tablet Landscape
###############################################################*/
@media (min-width: 992px) {
  #wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 1286px) {
  #wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/* Classes */
.clear {
  clear: both;
}
