body {font-family: Arial, Helvetica, sans-serif;}

.agencies{    
    display: flex; 
    justify-content: space-between;
    width: 100%;  
}
.company{    
    display: inline-block;
    margin: auto;        
    border: 3px solid rgb(150,0,0);
    vertical-align: top;
    width: 45%;    
    min-width: 400px;
    
}

.container {
    padding: 16px 16px 16px 16px; /* top right bottom left*/
}
  
.containerTable {
    padding: 0px 0px 0px 0px;
    width: 100%;
    margin: 0px; 
}

.containerTable:after {
content: "";
display: table;
clear: both;
}

.column3 {
float: left;
width: 33.33%;  
padding: 0px;
}
.column2 {
float: left;
width: 50%;  
padding: 0px;
}
.column1 {
float: left;  
width: 100%;  
padding: 0px;
}

textarea{
    width: 100%;    
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

/* Use a media query to add a break point at 800px: */
@media screen and (max-width:800px) {
    .company{        
        width:100%; /* The width is 100%, when the viewport is 800px or smaller */
    }
    .agencies{
        display: block;
    }
  }