ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.span_2_of_3 {
    display: inline-block;
    float: left;
    width: 50%;
}

.span_1_of_3 {
    display: inline-block;
    float: left;
    padding-left: 30px;
}

.contact-form div {
    padding: 5px 0 15px;
}

.contact-form input[type="text"], .contact-form textarea {
    padding: 15px;
    display: block;
    width: 100%;
    background: #fff;
    outline: none;
    color: #888282;
    font-size: 0.8125em;
    -webkit-appearance: none;
    float: left;
    margin-right: 2em;
    font-family: 'Lato', sans-serif;
    font-style: italic;
    border: 2px solid #CACACA;
}

.contact-form input[type="text"]:nth-child(2) {
    margin-right: 0em;

}

.contact-form textarea {
    padding: 15px;
    display: block;
    width: 100%;
    background: #fff;
    outline: none;
    color: #888282;
    font-size: 0.8125em;
    -webkit-appearance: none;
    font-style: italic;
    border: 2px solid #CACACA;
    margin-bottom: 5px;
    height: 150px;
    resize: none;
}


.contact-form form input[type="submit"] {
    font-family: 'Lato', sans-serif;
    color: #fff;
    padding: 0.8em 1.5em;
    background: #1ca4bc;
    border: 1px solid #1ca4bc;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
    font-size: 1em;
    outline: none;
    text-transform: uppercase;
    float: right;
    margin-right: 2%;
}

.contact-form form input[type="submit"]:hover {
    background: #4ec5ca;
    border: 1px solid #4ec5ca;
}

.company_address p {
    color: #ffffff;
    font-size: 0.8125em;
    line-height: 1.8em;
    margin-bottom: 2%;
}

.company_address p a {
    color: #ffffff;
    font-size: 1.1em;
    line-height: 1.8em;
    margin-bottom: 2%;
}

.textbox{
    margin-bottom: 5px;
}


@media screen and (max-width: 767px) {
    .span_2_of_3 {
        width: 100%;
    }
    .span_1_of_3 {
        float: none;
        padding-left: 0;
    }
}

