html,
body {
  font-family: 'PT Sans', sans-serif;
  font-size: 12pt;
  line-height: 1.4;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #666666;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-size: 18pt;
  color: #2c4b9c;
}

p {
  color: #666666;
}

.figure {
  float: right;
  width: 60%;
  padding: 20px;
  padding-bottom: 0;
}

.image {
  width: 100%;
  padding: 0px;
  max-width: 800px;
}

.figcaption {
  font-size: 8pt;
  float: right;
  opacity: 0;
  padding-bottom: 10px;
}

.image:hover + .figcaption {
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.box {
  margin-right: 5px;
}
.blue {
  color: #2c4b9c;
  font-weight: bold;
}

.container {
  overflow: hidden;
  *zoom: 1;
  margin: 0 20px;
  padding-left: 120px;
  padding-right: 120px;
}

.site-content {
  padding-top: 66px;
}

/* HEADER */
.header {
  font-weight: bold;
  position: fixed;
  left: 0;
  right: 0;
  height: 66px;
  line-height: 66px;
  color: #2c4b9c;
  background-color: #FFFFFF;
}

.header__logo {
  padding-left: 10px;
  float: left;
}

/* MENU */
.menu {
  float: right;
  margin-right: 10px;
}
.menu a {
  padding: 5px 10px;
  border: 1.5px #005dc1 solid;
}
.menu a:hover, .mobilemenu a:hover{
  background-color: #d8e0f3;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
}

.mobilemenu {
  display: none;
}

/* RESPONSIVE */
@media only screen and (max-width: 900px) {
  .site-pusher,
  .site-container {
    height: 100%;
  }

  .image {
    width: 100%;
    padding: 0;
    padding-bottom: 10px;
  }
  
  .figure {
  width: 100%;
  padding: 0;
  }


  .container {
   padding-left: 0px;
   padding-right: 0px;
  }

  .site-container {
    overflow: hidden;
  }

  .site-pusher {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  .site-content {
    position: absolute;
    top: 100px;
    right: 0;
    left: 0;
    bottom: 0;
    padding-top: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

 .header__logo {
  padding-left: 0;
}

  .header__icon {
    position: relative;
    display: block;
    float: left;
    width: 50px;
    height: 66px;
    cursor: pointer;
  }
  .header__icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 1rem;
    height: 0;
    top: 16px;
    left: 15px;
    box-shadow: 0 10px 0 1px #005dc1, 0 16px 0 1px #005dc1, 0 22px 0 1px #005dc1;
  }

  .menu {
    display: none;
  }

  .mobilemenu {
    padding-top: 0;
    display: inline;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    
    width: 250px;
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
  }
  .mobilemenu a {
    margin: 10px;
    border: 1.5px #2c4b9c solid;
    display: block;
    height: 40px;
    text-align: center;
    line-height: 40px;
  }

  .with--sidebar .site-pusher {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
  }
  .with--sidebar .site-cache {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
}
