
section{
    padding: 0 !important;
}

input{
    height: 4rem;
}

.column-1{
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    padding: 0 35px 0 35px;
    text-align: center;
}

.column-2{
    height: 100%;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../resources/bkgnd-footer-about-us-mobile.jpg");
    background-size:cover;
    padding: 0 35px 0 35px;
}

#form_container
{
    width: 100%; 
}

.input-text{
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: 0;
    margin-top: 3rem;
    padding: 5px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;      
}

button{
    height: 4rem;
    font-size: 0;
    background: #000000;
    color: #ffffff;
    border: 0;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.5s ease-out;
}

.address-text{
    width: 50%;
    text-align: center;
    margin: 0 auto;
}

/*Tablet view styles--------------------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) {

  }
  
  /*Desktop view styles----------------------------------------------------------------------------------------------------------------*/
  @media only screen and (min-width: 992px) {

    section{
        padding: 0 70px 0 70px !important;
        background-image: url("../resources/bkgnd-contact.jpg");
        background-size:cover;
    }

    .input-text{
        margin-top: 2rem;     
    }
    

    .column-1{
        width: 60%;
        height: 100%;
        float: left;
        display: flex;
        align-items: center;
        padding: 0;
        text-align: left;
    }
    
    .column-2{
        width: 40%;
        height: 100%;
        float: left;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        padding: 0;
    }

    .address-text{
        width: 50%;
        text-align: left;
        margin: 0;
    }
  }


