.container{
    width: 1150px;
    margin: 5em auto;
    padding: 2em;
    background: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;

}

.text-green{
    color: rgba(5,8,114,1);
}

.form-wrapper{
    padding: 5rem 0;
}

.form-wrapper .company-contact{
    float: left;
    width: 49%;
    padding: 1rem;
    height: 760px;
}

.form-wrapper::after{
    content: '';
    display: block;
    clear: both;
}

.form-wrapper .company-contact i{
    display: inline-block;
    margin-right: 1rem;
}
.form-wrapper .company-contact h2{
    text-transform: uppercase;
    display: inline-block;
}

.form-wrapper .address-group{
    margin-bottom: 3rem;
}
.form-wrapper .company-contact img{
    max-width: 90%;
    min-height: 20rem ;
    object-fit: cover;
    object-position: center;
}

/* ========================form style=========================== */


.form-wrapper .form{
    font-size: 1.3rem;
    background: #fff;
    float: right;
    width: 49%;  
    padding: 1rem;
    height: 760px;
}
.form h1{
    padding-bottom: 1em;
}
.form h1::after{
    content: "";
    display: block;
    /* border: 3px solid #ee4758; */
    border: 2px solid rgba(5,8,114,1);
    width: 100%;
}
.form p{
    padding-top: 1rem;
}


.form-wrapper .form label{
    display: block;
}

.form-wrapper .form input{
    padding: 0.5rem;
    width: 100%;
}

.form-wrapper .form .form-group{
    margin-bottom: 1.2rem;
}

.form-wrapper .form label::after{
    content: "*";
    color: #e63946;

}


.form-wrapper .form textarea{
    width: 100%;
    height: 300px;
    padding: 1rem;
}

.form-btn{
    display: block;
    margin: 0 auto;
    padding: 0.5em 3em;
    font-size: 1.8rem;
    text-transform: uppercase;
    /* background: #e63946; */
    background-image: radial-gradient( circle 610px at 5.2% 51.6%,  rgba(5,8,114,1) 0%, rgba(7,3,53,1) 97.5% );
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
}


.input-display{
    display: inline-block;
}



/* ==============================media quary=================================== */

@media all and (max-width: 500px){
    .container{
        max-width: 90%;
    }
    .form-wrapper .company-contact{
        float: none;
        width: 100%;
        height: auto;
        margin-bottom: 5rem;
    }
    .form-wrapper .form{
        float: none;
        width: 100%;
        height: auto;
    }
    .form .form-group{
        margin-top: 2rem;
    }

}

@media(min-width: 501px) and (max-width: 968px){
    .container{
        max-width: 90%;
    }
    .form-wrapper .company-contact{
        float: none;
        width: 100%;
        height: auto;
        margin-bottom: 5rem;
    }
    .form-wrapper .form{
        float: none;
        width: 100%;
        height: auto;
    }
    .form .form-group{
        margin-top: 2rem;
    }
}