* {
  box-sizing: border-box;
}

/* Create two equal column1s that floats next to each other */
	.row1 {
    margin-right: 0px;
    margin-left: 0px;
}
.column1 {
  float: left;
  width: 50%;
  padding: 2px;
}
	.column1 img {
    max-height: 60px;
}
.row1.pasar img {
    width: 100%;
    height: 60px;
}
#below-menu {
    width: 100%;
    background: 
    #600102;
}
/* Clear floats after the column1s */
.row1:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two column1s stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column1 {
    width: 100%;
  }
	.row1.pasar img {
    width: 100%;
    height: 50px;
}
}