.feedBackContent{
    display: flex;
    justify-content: center;
    align-items: center;
}
#contactForm{
    width: auto;
    height: auto;
}
.formItemContainer{
    display: flex;
    width: auto;
    justify-content: space-between;
    margin-bottom: 30px;
}
#name,#phone,#email{
    width: 320px;
    height: 40px;
    padding-left:10px;
    font-size: 14px;
    border: 1px solid #ccc;
}
#name::placeholder,#phone::placeholder,#email::placeholder,#message::placeholder{
    color: #ccc;
}
#name,#phone{
    margin-right:20px;
}    
#message{
    width: 100%;
    height: 160px;
    padding-left:10px;
    padding-top: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
}
.btnSubmit{
    width: 140px;
    height: 52px;
    border: none;
    background-color: #1E50AE;
    color: #fff;
    margin: 0 auto;
    font-size:14px;
}
@media screen and (max-width: 992px) {
    .formItemContainer{
        flex-direction: column;
    }
    #name,#phone,#email{
        width: 100%;
        margin-right:0px;
    }
    #message{
        width: 100%;
    }
    #contactForm{
        width:100%;
    }
    #email {
        margin-top: 30px;
    }
}