#contact-box { 
    position: relative;
    height: 100%;
    width: 100%;
}
#contact-form,
#contact-form form{
    height: 100%;
    width: 100%;
}
#contact-box .half{
    width: 50%;
    width: -webkit-calc(100% / 2);
    width: calc(100% / 2);
    float: left;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 10px;
    height: 100%;
    background-color: #1e576f;
    background-color: rgba(30,87,111,0.7);
    position: relative;
    margin-top: 100%;
}

#contact-box .formblock { 
    display: inline-block; 
    position: relative;
    width: 100%;

}

#contact-box .formblock label { 
    display: block;
    font-size: 10px; 
    font-style: normal; 
    font-weight: normal; 
    color: #bcbec0; 
    font-family: "aller", Helvetica, arial, sans-serif;
    position: relative;
    width: 100%;
    text-align: left;
    height: 18px;
    line-height: 25px;
    padding: 0 0 0 0px;
    padding-bottom: 0 !important;
    text-transform: uppercase;
    display: none;
}

#contact-box .formblock label img{
    position: absolute;
    margin: 0 0 0 -20px;
    bottom: 0;
}
#contact-box .formblock .txt { 
    padding: 4px 10px; 
    font-size: 13px; 
    font-family: 'aller', sans-serif;
    color: #1e576f; 
    width: 100%;
    height: 66px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: none;
    margin-top: 1px;
}

#contact-box .formblock:first-of-type .txt{
    margin-top: 0px;
}
#contact-box .formblock .txt:focus,#contact-box .formblock .txtarea:focus{
    outline:none;
} 

#contact-box .formblock .txtarea { 
    font-size: 13px;
    font-family: 'aller', sans-serif;
    padding: 10px; 
    color: #1e576f; 
    width: 100%;
    height: 135px;
    resize: none;
    outline: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    margin: 0;
    display: block !important;
    position: relative;
    background-color: #fff;
}

#contact-box .formblock .error { 
    font-weight: normal;
    font-style: normal; 

    color: #1e576f;
    position: absolute;
    -webkit-animation: fade-text 2s 1;
    -moz-animation: fade-text 2s 1;
    -o-animation: fade-text 2s 1;
    -ms-animation: fade-text 2s 1;
    animation: fade-text 2s 1;
    width: 100%;
    text-align: left;
    font-size: 10px;
    margin: 0;
    text-transform: lowercase;
    bottom: 0;
    text-align: right;
    padding-right: 5px;

}
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #1e576f;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #1e576f;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #1e576f;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #1e576f;
}
#contact-box .formblock#messageid .error{
    margin-left: 0px;
}
#contact-box .info { 
    font-weight: normal; 
    font-size: 14px; 
    color: #000; 
    font-family: Tahoma, Geneva, sans-serif;
}
#contact-box .tick { 
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 11px; 
    height:50px;

    margin:0px 0 0 0px;
    color: #fff; 
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
    position: absolute;
    width: 100%;
    line-height: 220px;
    margin-left: -10px;
}
#contact-box .subbutton { 
    background-color: #1e576f;
    border:none;
    text-shadow:none;
    height: 67px;
    display: block;
    position: relative;
    width: 100%;
    color:#fff;
    font-size: 14px;
    line-height: 67px;
    margin: 0 0px;
    margin-top: -5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
@media screen and (max-width: 769px){
    #contact-box .half{
        margin-top: 0;
        height: auto;
    }
    #contact-box .formblock .txt { 
        height: 40px;
    }
    #contact-box .subbutton { 
    background-color: #000;
    }
}
#contact-box .subbutton:hover{
    opacity: 0.8;
}
@media screen and (max-width: 769px) {
    #contact-box .half{
        width: 100%;
        width: -webkit-calc(100% / 1);
        width: calc(100% / 1);
    }
}
