@charset "utf-8";
#wrapper {
    font: 28px Helvetica;
    float: left;
    width: 100%;
    opacity: 1;
    filter: alpha(opacity=70);
}

body {
    background-image: url("../images/contactus.png");
    background-repeat: no-repeat;
    background-color: #e9e9e9;
    background-attachment: fixed;
    background-position: top, center;
}

::-webkit-scrollbar {
    display: none;
}

#content {
    background-color: #e9e9e9;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    padding: 10px;
    margin-top: 250px;
}

#footer {
    font-size: 12;
}

a.back-to-top {
    display: none;
    width: 60px;
    height: 60px;
    text-indent: -9999px;
    position: fixed;
    z-index: 999;
    left: 20px;
    bottom: 20px;
    background: #00FFFF url("../images/up-arrow.png") no-repeat center 43%;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

a:hover.back-to-top {
    background-color: #323299;
}

.button {
    background-color: #646464;
    /* Green Grey */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.button:hover {
    background-color: #00FFFF;
}

.g-recaptcha {
    float: left;
}

#contactform {
    float: left;
    font-size: 18px;
    width: 600px;
    margin: 2em auto;
    overflow: hidden;
    background: #e9e9e9;
    border-radius: 5px;
}

.message,
.contact,
.name,
header,
textarea {
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    clear: both;
    overflow: hidden;
}

header {
    height: 75px;
    background: rgba(0, 0, 0, 0.05);
    line-height: 75px;
    padding-left: 20px;
    border-radius: 5px 5px 0 0;
}

header h1,
footer h1 {
    font-size: 1.2em;
    text-transform: uppercase;
    color: rgba(51, 51, 51, 0.4);
}

.fullname {
    float: left;
    width: 600px;
    margin: 0;
    padding: 0 0 0 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 50px;
}

.email,
textarea {
    height: 50px;
    width: 600px;
    line-height: 50px;
    padding: 0 0 0 20px;
    border-top: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

textarea {
    height: 200px;
}

#submit {
    height: 32px;
    background: #e74c3c;
    border-radius: 5px;
    border: 0;
    margin: 7px 0;
    color: white;
    float: left;
    padding: 0 20px 0 20px;
    border-bottom: 3px solid #c0392b;
    transition: all linear .2s;
}

#submit:hover {
    background: #c0392b;
}

#submit:focus {
    outline: none;
}

.fullname:focus,
.email:focus,
textarea:focus,
textarea:focus {
    outline: none;
    background: rgba(52, 152, 219, 0.1);
    color: rgba(51, 51, 51, 0.7);
}