.contactUs_container {

}
.contactUs_container .contact_wrapper {
    margin: 10px auto;
    justify-content: space-between;
}
.contactUs_container .contact_wrapper .items_wrapper {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
}
.contactUs_container .contact_wrapper .items_wrapper button {
    display: block;
    width: 110px;
    height: 40px;
    padding: 5px;
    border: none;
    border-radius: 20px;
    background-color: #FF7840;
    box-shadow: 2px 4px 1em rgba(145, 145, 145, 0.5);
}
.contactUs_container .contact_wrapper .items_wrapper button:hover {
    background-color: #f86d39;
}
.connecting_ways .connect_item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FF7840;
    margin-right: 15px;
    box-shadow: 2px 4px 1em rgba(145, 145, 145, 0.5);
}
.connecting_ways .connect_item .icon a {
    display: block;
    text-align: center;
}
.connecting_ways .connect_item .icon a img {
    width: 28px
}
.connecting_ways .connect_item .icon a img:hover {
    filter: invert(25%) sepia(40%) saturate(240%) hue-rotate(160deg) brightness(75%) contrast(156%);
}

/******************************************* form ***************************************/
.contactUs_container .contactUs_form{
    align-items: center;
    width: 80%;
    text-align: center;
    padding: 20px 1px;
    /*background-color: #f3ece9;*/
    border-radius: 30px;
    margin: 0 auto;
}
.contactUs_container form div.item_wrapper {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}
.contactUs_container .itembox{
    display: flex;
    text-align: right;
    margin: 2% 3%;
}
.contactUs_container form label{
    display: inline-block;
    margin: 0 0 5px 15px;
    color: #171536;
    text-align:left;
}
.contactUs_container form input{
    display: block;
    width: 500px;
    height: 40px;
    margin: 5px 10px;
    padding-right: 15px;
    border-radius: 20px;
    border: none;
    color: #5f5f5f;
    outline: none;
    background-color: #f3f3f3;
    cursor: pointer;
    box-shadow: 3px 4px 8px rgba(99, 91, 102, 0.4);
    border-bottom: 1px solid #ece8ee;
    position: relative;
    z-index: 1;
    font-size: 12px;
}
.contactUs_container form input[type="button"] {
    width: 60%;
    height: 40px;
    color: white;
    border: none;
    box-shadow: 3px 4px 8px rgba(99, 91, 102, 0.4);
    background-color: #FF7840;
    margin: 10px auto;
}
.contactUs_container form input:hover{
    background-color: #f4f4f4;
    cursor: pointer;
    border-bottom: 1px solid #FF7840;
}
.contactUs_container form input[type="button"]:hover {
    background-color: #ee6733;
    border: none;
}
.contactUs_container form input:focus-visible {
    background-color: #f3f3f3;
    border-bottom: 1px solid #FF7840;
    color: #5f5f5f;
}
.contactUs_container form textarea{
    background-color: #f3f3f3;
    width: 650px;
    padding: 10px;
    margin: 5px 10px;
    border-radius: 20px;
    border: none;
    color: #3E2BA7;
    box-shadow: 3px 4px 8px rgba(99, 91, 102, 0.4);
    border-bottom: 1px solid #ece8ee;
    font-size: 12px;
}

/******************************************* responsive 1920px ***************************************/
@media only screen and (max-width: 1920px)
{
    .contactUs_container form input {
        width: 450px;
    }
    .contactUs_container form textarea {
        width: 550px;
    }
}
/******************************************* responsive 1440px ***************************************/
@media only screen and (max-width: 1440px)
{
    .contactUs_container form input {
        width: 350px;
    }
    .contactUs_container form textarea {
        width: 500px;
    }
    .contactUs_container .itembox{
        margin: 2% 2%;
    }
}

/******************************************* responsive 1210px ***************************************/
@media only screen and (max-width: 1210px)
{
    .contactUs_container form input {
       width: 320px;
    }
    .contactUs_container form textarea {
        width: 450px;
    }
}

/******************************************* responsive 992px ***************************************/
@media only screen and (max-width: 992px)
{
    .contactUs_container form input {
        width: 280px;
    }
    .contactUs_container form textarea {
        width: 400px;
    }
    .contactUs_container .contactUs_form {
        width: 93%;
    }
    .contactUs_container .itembox{
        margin: 2% 1%;
    }
}

/******************************************* responsive 768px ***************************************/
@media only screen and (max-width: 768px)
{
    .contactUs_container .contact_wrapper {
        flex-direction: column;
        align-items: center;
    }
    .contactUs_container .contact_wrapper .items_wrapper {
        width: 90%;
        margin-bottom: 15px;
    }
    .contactUs_container form div.item_wrapper{
       flex-direction: column;
    }
    .contactUs_container form input, .contactUs_container form textarea {
        width: 400px;
    }
    .contactUs_container form input {
        font-size: 11px;
    }
}

/******************************************* responsive 576px ***************************************/
@media only screen and (max-width: 576px)
{
    .contactUs_container form input, .contactUs_container form textarea {
        width: 320px;
    }
    .connecting_ways .connect_item .icon {
        width: 32px;
        height: 32px;
    }
    .connecting_ways .connect_item .icon a img {
        width: 26px;
    }
}

/******************************************* responsive 400px ***************************************/
@media only screen and (max-width: 400px)
{
    .contactUs_container .contactUs_form {
        width: 98%;
    }
    .contactUs_container form input, .contactUs_container form textarea {
        width: 260px;
    }
}

/******************************************* responsive 340px ***************************************/
@media only screen and (max-width: 340px)
{
    .contactUs_container form input, .contactUs_container form textarea {
        width: 220px;
    }
}
