#body {
    height: 1143px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-image: url("../img/bg-ContactUs.png");
    background-size: cover;
    border-top: 1px solid #FFFFFF;
}
#body #content {
    width: 57%;
    max-width: 960px;
    /*min-width: 620px;*/
    padding: 0 23px;
}

/* contact text */
#contact-text {
    margin-bottom: 50px;
}
#contact-text span {
    display: block;
}
#contact-text #big-font {
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    color: #161412;
}
#contact-text #small-font {
    font-family: Proxima Nova, sans-serif;
    font-size: 20px;
    color: #161412;
    opacity: 0.6;
}

/* form */
#form {
    background-color: #FFFFFF;
    padding: 70px 131px 117px;
    border: 1px solid #EBF3FF;
    border-radius: 10px;
}
#form .form-title {
    font-family: Proxima Nova, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-align: left;
    color: #333333;
    margin-bottom: 6px;
}
#form #response {
    display: none;
    margin-bottom: 30px;

    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
    height: 50px;
    border-radius: 8px;
}
#form #response.successed {
    background: rgba(0, 150, 247, 0.1);
    border: 1px solid #0096F7;
    color: #031242;
}
#form #response.failed {
    background: rgba(226, 41, 41, 0.1);
    border: 1px solid #E22929;
    color: #E22929;
}
#form #response i.fa-circle-check{
    margin-right: 10px;
    width: 17px;
    height: 20px;
    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 20px;
    flex: none;
    order: 0;
    flex-grow: 0;
}
#form #response.successed i.fa-circle-check{
     color: #0096F7;
}
#form #response button.fa-xmark{
    width: 12px;
    height: 18px;

    font-family: 'Font Awesome 6 Pro', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 18px;
    flex: none;
    order: 2;
    flex-grow: 0;
    border: none;
    background: rgba(0, 150, 247, 0);
    cursor: pointer;
}
#form #response #response-text{
    font-family: 'Switzer', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    flex-grow: 1;
}

#form .error-msg {
    margin-top: 8px;
    margin-bottom: 4px;
    color: #E22929;
    visibility: hidden;
    font-size: 14px;
    font-family: Switzer,sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
#form form{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#form form > div {
    display: flex;
    flex-direction: column;
}

#form textarea,
#form input {
    height: 40px;
    Padding: 11px 10px 11px 10px;

    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #161412 ;

    background: #FFFFFF;
    border: 1px solid rgba(3, 18, 66, 0.2);
    border-radius: 6px;
}
#form input::placeholder,textarea::placeholder {
    opacity: 0.6;
}
#form input:focus,textarea:focus {
    border: 2px solid #0096F7;
    opacity: 0.8;
}
#form textarea {
    padding-top: 10px;
    height: 218px;
    resize: none;
}

#form #name {
    flex-direction: row;
    justify-content: space-between;
}
#form #name div {
    flex: 1;
}
#form #name div input {
    width: 100%;
}
#form #name div span {
    display: block;
}

#form form button {
    width: 100%;
    height: 44px;
    background: #031242;
    opacity: 0.4;
    border-radius: 10px;
    border: none;

    font-size: 18px;
    font-family: Proxima Nova, sans-serif;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.18px;
    color: #FFFFFF;
    cursor: pointer;
}
#form form button.can-submit {
    opacity: 1;
    background-color: #0080FF;
}

@media only screen and (max-width: 850px) and (min-width: 450px) {
    #body {
        height: 1592px;
        justify-content: flex-end;
        flex-direction: column-reverse;
        align-items: center;
    }
    #body #content {
        width: 98%;
        margin-top: 80px;
        margin-bottom: 40px;
    }
    #contact-us {
        /*min-width: 580px;*/
        width: 92%;
        height: 25%;
    }
    #contact-us #contact-us-title {
        width: 100%;
        height: 20%;
        margin-bottom: 40px;
    }
    #contact-us #contact-us-title span:nth-child(1) {

    }
    #contact-us #contact-us-title span:nth-child(2) {
        font-size: 20px;
    }
    #contact-us #contact-info {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #contact-us #contact-info div{
        width: 50%;
    }
    #contact-us #contact-info div div{
        width: 100%;
    }
    #form input{
        border: 1px solid rgba(3, 18, 66, 0.2);
    }
}

@media only screen and (max-width: 586px) {
    #body {
        display: flex;
        height: 900px;
    }
    #body #content {
        width: 90%;
        max-width: 420px;
        height: 93%;
        min-width: 360px;
        padding: 0;
    }
    #contact-us {
        display: none;
    }
    #contact-text {
        margin-bottom: 20px;
    }
    #contact-text #big-font {
        font-size: 26px;
    }
    #contact-text #small-font {
        font-size: 14px;
    }
    #form {
        padding: 20px 10px;
        border-radius: 10px;
    }
    #form #response {
        height: 40px;
        border-radius: 8px;
    }
    #form .error-msg {
        margin: 5px 0;
        font-size: 12px;
        line-height: 20px;
    }
    #form textarea {
        padding-top: 10px;
        height: 218px;
        resize: none;
    }
    #form form button {
        margin-bottom: 20px;
    }
}