#banner{
    display: none;
}


#contactUs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 200px 10% 100px 10%;
    background: linear-gradient(45deg, #A181E5, #AD2AD8);
    gap: 30px;
    position: relative;
    color: white;
}

#contactUs-form{
    font-size: 30px;
    max-width: 900px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    gap: 50px;
}

#contactUs-form h2{
    font-weight: 900;
}

#contactUs-form span{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 23px;
}

#contactUs-form span a{
    font-size: 16px;
}

#contactUs-form form{
    width: 100%;
    min-height: 500px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2,1fr);
    -ms-grid-rows: 1fr 50px;
    grid-template-rows: 1fr 50px;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
}

#contactUs-form form > *:nth-child(1){
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

#contactUs-form form > *:nth-child(2){
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

#contactUs-form form > *:nth-child(3){
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

#contactUs-form form > *:nth-child(4){
    -ms-grid-row: 2;
    -ms-grid-column: 3;
}

#contactUs-form-left{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    font-size: 20px;
}

#contactUs-form-left input{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 0;
    outline: 0;
    color: white;
    border-bottom: 2px solid white;
    margin-bottom: 25px;
    background-color: transparent;
}


#contactUs-form-right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    font-size: 20px;
}

#contactUs-form-right textarea{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 0;
    outline: 0;
    border: 2px solid white;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    resize: none;
    background-color: transparent;
}
#contactUs-form-submit{
    -ms-grid-column: 2;
        grid-column-start: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
}

#contactUs-form form input[type=submit]{
    display: inline-block;
    background-color: white;
    border: 0;
    color: #253C73;
    text-decoration: none;
    padding: 15px 45px;
    border-radius: 100px;
    font-size: 20px;
    cursor: pointer;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

#contactUs-form form input[type=submit]:hover{
    background-color: #253C73;
    color: white;
}







@media screen and (max-width: 650px) { 
    #contactUs-form form{
        display: block;
    }
    #contactUs-form-left input{
        padding: 10px 0;
    }
    
    #contactUs-form-right textarea{
        height: 400px;
    }
    #contactUs-form-submit{
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}