html, body{
    margin:0;
    padding: 0;
    background: #F2F4F7;
    font-family: 'Open Sans',sans-serif;
}
section header{
    background: -webkit-linear-gradient(15deg, #06607A, #1F7F9B 40%, #1F7F9B 60%, #06607A) repeat scroll 0 0 rgba(31, 127, 155, 0); /*Safari*/
    background: -o-linear-gradient(15deg, #06607A, #1F7F9B 40%, #1F7F9B 60%, #06607A) repeat scroll 0 0 rgba(31, 127, 155, 0); /*Opera 11-12*/
    background: -moz-linear-gradient(15deg, #06607A, #1F7F9B 40%, #1F7F9B 60%, #06607A) repeat scroll 0 0 rgba(31, 127, 155, 0); /*Fx 3.6-15*/
    background: linear-gradient(15deg, #06607A, #1F7F9B 40%, #1F7F9B 60%, #06607A) repeat scroll 0 0 rgba(31, 127, 155, 0);
    height: 18em;
    max-width:100%;
    box-sizing: border-box;
    margin:0;
}

section header div{
    margin: 0 auto;
    position: relative;
    padding:2em;
}

section header div h1 {
    margin:0 auto;
    text-align: center;
    line-height:0.8em;
    color:#fff;
    font-size: 8em;
    position: relative;
}

section header div h1 span{
    -webkit-transform: rotate(343deg);
    -moz-transform: rotate(343deg);
    -o-transform: rotate(343deg);
    transform : rotate(343deg);
    writing-mode:horizontal-tb;
    display: inline-block;
    font-family: 'Great Vibes', cursive;
    font-weight: normal;
    color: #EE3333;

}

section header div h2{
    color: #fff;
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size:4em;
    line-height:0.5em;
}

article{
    height: 400px;
    margin: 0;
    padding: 0;
}
article div:first-child{
    width:50%;
    margin:0 auto;
}
article h2{
    font-family: 'Open Sans',sans-serif;
    font-weight: 300;
    line-height:36px;
    text-transform: uppercase;
    color:#E55D5D;
    font-size: 50px;
}

article label{
    width:30%;
    display: inline-block;
    vertical-align: top;
}

article input[type=text], article input[type=email]{
    height: 34px;
    width:50%;
    border: 1px solid #CCCCCC;
    margin-bottom: 5px;
    padding:6px;
}
article textarea{
    width:50%;
    height: 100px;
    border: 1px solid #CCCCCC;
    margin-bottom: 5px;
    padding:6px;
}

article button{
    background-color: #E55D5D;
    border: 1px solid #FFF;
    color: #fff;
    font-family: Abel,sans-serif;
    font-size: 17px;
    letter-spacing: 1px;
    margin-top: 20px;
    padding-top: 7px;
    height: 40px;
    margin-left:30%
}
article button:after{
    content: attr(data-longtext) ;
}
footer{
   background: #06607A;
   font-size: 80%;
   height:30px;
}
footer div{
   width: 30%;
   margin:0 auto;
   height:30px;
   position:relative;
}
footer p:first-child{
   text-align:center;
   color:#FFF;
   line-height: 30px;
   display:inline;
   height:30px;
   float:left;
   padding:0;
   margin:0;
}
footer p:last-child{
   float:right;
   display:inline;
}
footer a{
   text-decoration:none;
   border: none;
   top:-50%;
   position:absolute;
}
footer a:last-child{
margin-left:40px;
}
footer a img{
   max-width:100%;
}

@media screen and (max-width: 600px) {
    article div:first-child{
    width:90%;
    }
    body{
        font-size: 70%;
    }
   footer a img{
   max-width:90%;
   }
}
@media screen and (max-width: 380px) {
    body{
        font-size:70%;
    }
    section header{
        height:80%;
    }
    section header div{
        width:100%;
    }
    section header div h1 {
        font-size: 38px;
    }
    img{
      max-width:70%;     
    }
    article h2{
        font-size: 34px;
    }
    footer div{
        width:70%;
        margin:0;
    }
    footer div p:first-child{
        margin-left:5%;
font-size:120%;
    }
    footer a img{
   max-width:65%;
   }
    article button:after{
        content:attr(data-shorttext) ;
    }
}
