.innerContactForm{
display: flex;
justify-content: space-between;
margin:0% 10%;
}
.innerContactForm form{
width:470px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
padding: 2rem;
}
.innerContactForm form input{
margin: .5rem 0;
}
.innerContactForm form button{
width: 130px;
border: none;
padding: .6rem;
background-color: orangered;
color: #fff;
border-radius: .5rem;
margin-top: 1.3rem;border: 1px solid transparent;
}
.innerContactForm form button:hover{
border: 2px solid orangered;
background-color: #fff;
color: #000;
}
.addressContainer{
width: 40%;
}
.addressBox{
text-align: center;
margin-top: 2rem;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
padding:2rem 0rem;
}
#h3BottomLine{
width: 100px;
height: 2px;
background-color: orangered;
display: block;
margin: auto;
margin-top: -10px;
margin-bottom: 1rem;
}
.addressBox a{
display: block;
}
.addressBox i{
font-size: 2rem;
margin-bottom: 1.5rem;
}

/* Mobile View Start */
@media(max-width:1050px)
{
.innerContactForm{
display: flex;
justify-content: space-between;
margin:0% 7%;
}
}
@media(max-width:950px){
    .innerContactForm form{
    width: 400px;
    }  
}
@media(max-width:830px){
    .innerContactForm form{
    width: 370px;
    }  
}
@media(max-width:750px)
{
.innerContactForm{
display: block;
justify-content: space-between;
margin:0% 5%;
}
.innerContactForm form{
width: 100%;
margin: auto;
}
.addressContainer{
    width: 100%;
    margin: auto;
    }   
}