/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  font-family: 'Neue Helvetica W02', sans-serif;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a {
  color: #000;
}
.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  color: #ffffff;
}
.image-container img {
  width: 100%;
  height: auto;
  opacity: 1;
}
.image-container img.hide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -moz-transition: all ease-out 0.4s;
  -o-transition: all ease-out 0.4s;
  -webkit-transition: all ease-out 0.4s;
  transition: all ease-out 0.4s;
}
.image-container img.active {
  opacity: 1;
}
@media only screen and (max-width: 700px) {
  .image-container {
    overflow: hidden;
  }
  .image-container img {
    width: 200%;
    transform: translateX(-25%);
  }
}
@media only screen and (max-width: 1025px) {
  .image-container {
    overflow: hidden;
  }
  .image-container img {
    width: 160%;
    transform: translateX(-15%);
  }
}
.image-container .buttons,
.image-container .open-button {
  position: absolute;
  z-index: 10;
  left: 2%;
}
.image-container .open-button {
  -moz-transition: all ease-out 0.32s;
  -o-transition: all ease-out 0.32s;
  -webkit-transition: all ease-out 0.32s;
  transition: all ease-out 0.32s;
  bottom: 80px;
  z-index: 20;
}
.image-container .open-button.active {
  bottom: 240px;
}
@media only screen and (max-width: 1025px) {
  .image-container .open-button.active {
    bottom: 230px;
  }
}
@media only screen and (max-width: 700px) {
  .image-container .open-button.active {
    bottom: 220px;
  }
}
.image-container .open-button span {
  background-color: #006da4;
  padding-left: .7em;
  z-index: 2;
  position: absolute;
  left: 0;
  width: 160px;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
}
.image-container .open-button span:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: skew(27deg);
  -ms-transform: skew(27deg);
  transform: skew(27deg);
  z-index: -1;
  background-color: #006da4;
}
.image-container .buttons {
  bottom: 3%;
  opacity: 0;
  -moz-transition: all ease-out 0.6s;
  -o-transition: all ease-out 0.6s;
  -webkit-transition: all ease-out 0.6s;
  transition: all ease-out 0.6s;
}
.image-container .buttons.active {
  opacity: 1;
}
.image-container .buttons .button {
  background-color: #98999b;
  padding: 1em .7em;
  width: 250px;
}
.image-container .buttons .button li {
  margin-bottom: 1em;
}
.image-container .buttons .button li:last-child {
  margin-bottom: 0;
}
.image-container .buttons .button li p {
  cursor: pointer;
}
.image-container .buttons .button li p.active {
  color: grey ;
}
.image-container .buttons .button li p:hover {
  color: darkgray;
}
