/* 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;
}
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;
}

/* general settings */
html{
    min-height: 100%;
}
body{
    height:100%;
    background-image: linear-gradient(to top, #ffffff, #e6eaf0);
    display: table;
    margin: 0;
    width:100%;
    font:14px/20px 'Open Sans', Arial, Helvetica, sans-serif;
    color:#9c9fb8;
    text-align: center;
}
#wrapper{
    display: table-row-group;
    background: url(../images/line.svg) no-repeat 0 47px / 100% auto;
}
#footer{
    display: table-footer-group;
    height: 1px;
}
.icons{
    width:162px;
    margin:60px auto 75px;
    display: flex;
    justify-content: space-between;
    transition: all 300ms;
}
.logo{
    text-indent:-9999px;
    overflow: hidden;
    width: 451px;
    height: 67px;
    background: url(../images/logo.svg) no-repeat 0 / 100%;
    margin:0 auto 226px;
    transition: all 300ms;
}
.message{
    font-size: 21px;
    line-height: 40px;
    letter-spacing: 1.8px;
    text-align: center;
    color: #4f4a56;
    margin:0 0 75px;
    transition: all 300ms;
}
.message strong{
    display: block;
    font-size: 31px;
    line-height: 40px;
    letter-spacing: 2.6px;
    transition: all 300ms;
}
p{
    margin:0 0 23px;
    transition: all 300ms;
}
.btn{
    width:218px;
    display: block;
    margin:0 auto 116px;
    background-color: #ef385a;
    line-height:60px;
    color:#fff;
    text-decoration: none;
    transition: all 300ms;
    position: relative;
}
.btn:hover{
    transform: scale(0.95);
}
.btn:after{
    position: absolute;
    width: 174px;
    height: 35px;
    filter: blur(15px);
    display: block;
    content: '';
    top:25px;
    left:23px;
    z-index:-1;
    background: #ef385a;
    transition: all 300ms;
}
.btn:hover:after{
    /*top:20px;*/
    filter: blur(8px);
}
#footer .wrapper{
    border-top: 3px solid rgba(156, 159, 184, 0.2);
    padding:30px 10px;
    text-align: left;
    transition: all 300ms;
}
#footer .wrapper .holder{
    display: flex;
    max-width:1278px;
    margin:0 auto;
    justify-content: space-between;
    transition: all 300ms;
}
#footer h2{
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 1.5px;
    text-align: left;
    color: #4f4a56;
    text-transform: uppercase;
    margin:0 0 9px;
    transition: all 300ms;
}
#footer p,
#footer a{
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.5px;
    color: #9c9fb8;
    margin: 0;
    display: block;
    transition: all 300ms;
    text-decoration: none;
}
@media screen and (max-width: 1600px){
    .icons {
        margin: 40px auto 55px;
    }
    .logo {
        width: 242px;
        height: 44px;
    }
}
@media screen and (max-width: 1200px){
    #wrapper{
        background-position: 0 147px;
    }
}
@media screen and (max-width: 1100px){
    #wrapper{
        background-position: 0 200px;
    }
}
@media screen and (max-width: 700px){
    .icons {
        margin: 20px auto 25px;
    }
    #footer .wrapper .holder{
        display: block;
    }
    #footer .wrapper .holder .box{
        padding:20px 10px;
    }
    #wrapper{
        background-position: 0 50px;
    }
    .logo{
        margin-bottom: 75px;
    }
}
@media screen and (max-width: 600px){
    #wrapper{
        background-position: 0 100px;
    }
}