input, textarea, select {
    padding: 10px 20px;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.3), 2px 2px 3px rgba(0,0,0,.5);
}

input[type="submit"] {
    background-color: #2d98e6;
    color: white;
    font-weight: bold;
}

form input, form textarea, form input, form select {
    margin: 10px;
}

textarea {
    width: 300px;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 75px;
}
.contact-method > div + div {
    margin-left: 15px;
}
.contact-method:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 45px;
    color: #2d98e6;
    display: flex;
    align-items: center;
    width: 60px;
}
.contact-method.phone:before {
    content: "\f095";
}
.contact-method.fax:before {
    content: "\f1ac";
}
.contact-method.mail:before {
    content: "\f0e0";
}

@media screen and (min-width: 1020px) /* Desktop */ {

}

@media screen  and (max-width: 1019px) /* Tablet */ {

    .section.left.top > div:first-child {
        width: 50% !important;
    }
    .section.left.top > div:last-child {
        width: 50% !important;
    }

    .contact-method {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 70px;
        font-size: 12px;
    }
    .contact-method > div + div {
        margin-left: 15px;
    }
    .contact-method:before {
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 20px;
        color: #2d98e6;
        display: flex;
        align-items: center;
        width: 20px;
        margin-right: 5px;
    }
    form input, form textarea {
        width: 100%;
        margin: 10px;
    }



}

@media screen and (max-width: 575px) /* Mobile */ {

}