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;

    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;

}

body{

    color: #FFF;
    width: 100%;

    background-color: #000;
}
.trans{
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.trans_btn{
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

main{ width: calc(100vw - 100px); margin: 50px auto;  position: relative;   transform: translateY(0px); opacity: 1; z-index: 9; }
main.hide{
    transform: translateY(-50px); opacity: 0;
}
main.hide2{
    transform: translateY(50px); opacity: 0;
}
main img{
    display: block; width: 180px; top: 0px; right: 0px; position: absolute;
}
main img.img-mob{
 display: none;
}


form{
    transform: translateY(0px); opacity: 1;
}
form.hide{
    transform: translateY(50px); opacity: 0;
}


.row-form{

    margin-bottom: 13px;
    width: 100%;

}
.row-form span{
    font-size: 12px;
    line-height: 28px;
    width: 100px;
    text-align: right;
    letter-spacing: 4px;
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;

}
.row-form input::placeholder{
    opacity: 0;
}
.row-form input{
    height: 28px;
    background-color: transparent;
    outline: none;
    border: 1px solid #979797;
    margin-left: 15px;
    width: 300px;
    color: #DDD;
    padding: 0px 5px;
    letter-spacing: 1px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    display: inline-block;

}
.second-form{

    margin-top: 30px;
    width: 100%;

}

.textarea{
    border: 1px solid #979797;
    width: calc(100% - 20px);
    height: 120px;
    padding: 10px;

    margin-bottom: 20px;
    font-size: 12px;
}

.textarea div{
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
}

textarea{
    font-family: Arial, Helvetica, sans-serif;

    resize: none;
    outline: none;
    height: calc(100% - 30px);

    width: 100%;
    background-color: transparent;
    color: #DDD;

    font-size: 13px;
    letter-spacing: 1.5px;

    margin-top: 10px;
    border: 0;
}

textarea::placeholder{
    color: #DDD;
    letter-spacing: 2px;
    font-size: 14px;

    opacity: 0;
}

.btn{
    font-size: 14px;
    letter-spacing: 3px;
    color: #DDD;
    border: 1px solid #DDD;
    padding: 0px 10px;
    width: 170px;
    margin: 10px auto;
    line-height: 40px;
    text-align: center;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

.btn:hover{
    background-color: #DDD;
    color: #000;
}

.btn.disabled{
    pointer-events: none;
    opacity: 0.5;
}


.sent{
    position: fixed;
    pointer-events: none;

    width: 460px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 90%;
    transform: translateY(-50px); opacity: 0;
    z-index: -1;
}

.sent.show{
    transform: translateY(0px); opacity: 1;
}

@media all and (max-width: 800px) {

    main{ width: calc(100vw - 60px); margin: 30px auto;  position: relative; }
    main img{display: none;}

    main img.img-mob{
        display: block;
        position: relative;
        margin: auto;
        width: 200px;
    }

    .first-form{
        padding-top: 20px;
    }

    .row-form input{
        width: calc(100% - 132px);
    }



}
