* {
    margin: 0;
    padding: 0;
}

input:focus, textarea:focus {
    outline: 1px solid transparent;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: white;
    background: url('https://gist.github.com/stingmu/62d8cb7cbf72d860b676/raw/e26a71b1b3567bedac2b0e2dffc5780a40b0fe57/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    overflow-y: scroll;
}

a, a:hover {
    color: #fff;
    text-decoration: none;
}

.container {
    text-align: center;
    width: 800px;
    margin: 60px auto 0;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    text-shadow: 0 1px 7px rgba(0, 0, 0, .2);
    letter-spacing: -2px;
    margin: 0 0 30px 0;
    color:#F9DC0D;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    text-shadow: 0 1px 7px rgba(0, 0, 0, .2);
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 30px 0;
}

h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 5px;
    opacity: 0.3;
    margin-top: 40px;
}

h4 {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    line-height: 40px;
    display: inline-block;
    background: rgba(45, 45, 45, .3);
    margin-top: 50px;
    padding: 10px 20px;
    border-radius: 10px;
}

.desc {
    font-size: 18px;
    line-height: 36px;
    display: inline-block;
    background: rgba(45, 45, 45, .2);
    padding: 5px 10px;
    border-radius: 10px;
}

form {
    margin-top: 20px;
    position:relative;
}

form input {
    width: 310px;
    height: 46px;
    margin-bottom: 10px;
    padding: 0 10px;
    background: #fff;
    font-size: 16px;
    line-height: 46px;
    color: #777;
    border: 1px solid transparent;
    border-radius: 3px;
}

form textarea {
    width: 310px;
    height: 146px;
    margin-bottom: 10px;
    padding: 0 10px;
    background: #fff;
    font-size: 16px;
    line-height: 46px;
    color: #777;
    border: 1px solid transparent;
    border-radius: 3px;
}

input:focus, textarea:focus {
    border-color: #F9DC0D;
}

input.error, textarea.error {
    border-color: red;
    background-color: rgb(255, 228, 228);
}

form button {
    width: 130px;
    height: 46px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    background: #F9DC0D;
    border: 0;
    font-size: 16px;
    color: black;
    border-radius: 3px;
}

form button:hover {
    background: #e4c70d;
}

form button:active {
    background: #ffe20d;
}

form.proccess * {
    opacity:0.3;
}
form.proccess .loading {
    opacity:1;
    display:block;
    position:absolute;
    left: 368px;
    top:160px;
    z-index:2;
    width: 64px;
    height: 64px;
    background: url('https://gist.github.com/stingmu/62d8cb7cbf72d860b676/raw/e26a71b1b3567bedac2b0e2dffc5780a40b0fe57/loading.gif') no-repeat 0 0;
}

.success {
    display: none;
    margin-top:30px;
}
.success b {
    color:#F9DC0D;
}

.copyright {
    margin-top: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.copyright a:first-child {
    border-bottom: 1px dotted #F9DC0D;
}

/*
Форма обратной связи.
ФИО
ТЕЛ.
Эл. Почта
Сообщение.
*/