@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5em
}

body { 
background-color: #e6e6e6;
background-image:url(http://i.imgur.com/JDMmfbw.png);
background-attachment:fixed;
}

.accordion {
   margin: 50px;   
   label, response animate {
      padding: 10px;
      }
      a {
        display: block;
        color: black;
        font-weight: bold;
      }
}
a {
  text-decoration: none;
}
body {
  font: 16px Sans-Serif;   
}

section{
  padding: 10% 20%;
}
.animate{
  transition: all .3s;
}

input[name=question]{
    display: none;
}
input[name=question] + label {
    position: relative;
    font-family: arial, trebuchet ms, sans-serif;
    display: block;
    padding: 10px 20px;
    font-size: 1.2em;
    cursor: pointer;
    background: rgba(246, 246, 246, 1);
    color: #4f8b20;
    width: 800px;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    border-width: 3px 0 0 0; border-style: solid;
       -webkit-border-image: -webkit-linear-gradient(right, #d23606, #df8553, #d23606) 100% 1;
    -moz-border-image: -moz-linear-gradient(right, #d23606, #df8553, #d23606) 100% 1; 
    -o-border-image: -o-linear-gradient(right, #d23606, #df8553, #d23606) 100% 1;
    border-image: linear-gradient(to right, #d23606, #df8553, #d23606) 100% 1;;
}

.response{
    position: relative;
    background-color: #f8f8f8;
    color: #333333;
    font-family: arial, trebuchet ms, sans-serif;
    font-size:12px;
    line-height:13px;
    text-align:justify;
    text-transform: lowercase
    padding: 10px 20px;
    -webkit-transform: translate3d(0,-40px, 0) rotate(-.5deg);
    z-index: 1;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    opacity: 0;
    border-radius: 3px;
}

input[name=question]:checked + label{
    background: #F6F6F6;
    color: #d23606;
}
input[name=question]:checked + label + .response{
    opacity: 1;
    visibility: visible;
    padding: 10px 20px;
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    -webkit-filter: blur(0px);
    margin-bottom: 20px;
    color: #333333;
    width: 800px;
}

.fixed-height{
    height: 50px;
    overflow: hidden;
    opacity: 1 !important;
}

.back { text-align: right;
font-family: consolas; arial;
font-size: 8pt;
position:fixed;
visibility: visible;
color: #606060;
text-transform: uppercase;
}

/* links */
a {
color: #ff7508;
font-weight: bold;
text-decoration: none;
-moz-transition-duration: 1.5s;
-o-transition-duration: 1.5s;
-webkit-transition-duration: 1.5s;
}