/* #servicesContainer .box {
    display: inline-block;
    width: calc(33.3vw - 20px);
    height: 200px;
    margin: 0 20px;

    background-color: #000;

    font-size: 30px;
    line-height: 200px;
} */


label {
    /* width: 50%; */
    float: left;
    padding-top: 15px;

    font-size: 20px;
    text-align: left;
}
input, textarea {
    padding: 12px 16px;
    width: calc(100% - 32px);
    max-width: 800px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    font-weight: 400;
    border: 0;
    font-size: 18px;
    border: 1.5px solid #000;

    border-radius: 6px;
}
textarea {
    height: 100px;
    resize: vertical;
}
input:focus, textarea:focus {
    background-color: #EEF0F2;
    outline: #555759;
    border: #555759 1px solid;
    color: #555759;
}

label[for="name"] {
    margin-right: 50px;
}

label:last-child {
    width: 100%;
}

#submit {
    border-radius: 6px;
    padding: 9px 42px;
    background-color: #FC4237;
    font-weight: 700;
    margin-top: 23px;
    display: inline;
    color: #FFF;
    font-size: 19px;
    cursor: pointer;

    width: unset;
    border: unset;

    margin-bottom: 200px;

    margin-bottom: 18px;
    display: inline-block;
}
/* #submit:hover {
    color: #555759;
    background-color: #BBBDBF;
    outline: #555759;
    border: #555759 1px solid;
} */

#formDiv {
    padding-bottom: 200px;
}

#errorMsg {
    color: red;
    font-weight: 600;
}
#sentMsg {
    color: green;
    font-weight: 600;
}

p {
    margin: 30px auto;
}

#name {
    margin-right: 20px;
}

@media only screen and (max-width: 380px) {
    input {
        width: 100%;
    }
    label {
        font-size: 16px;
    }
}

@media only screen and (max-width: 445px) {
    .titleContainer h2 {
        font-size: 3em;
    }
}
@media only screen and (max-width: 335px) {
    .titleContainer h2 {
        font-size: 2em;
    }
}

#contactGap {
    margin-top: 250px;
}