.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.home-wrapper {
  height: 400px;
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background:linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),  url('assets/Axiomhero.jpeg');
  background-position-y:50%;
  background-size: cover;
  /**/
 
}
.home-wrapper  img {
  width: 300px;
  height: auto;
  object-fit: contain;
}
.content {
  margin-block: 40px;
}
.title {
  font-family: 'helvetica', serif;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
}
body {
  font-family: 'Roboto', sans-serif;
  font-weight: light;
}
.contact-info {
  list-style: none;
}
ul p {
  font-weight: bold;
  font-family: 'helvetica', serif;
  color: #0066AD;
  margin-bottom: 5px;
}
ul li + li {
  margin-top: 10x;
}
.col img {
  width: 100%;
  object-fit: contain;
}
.col img + img {
  margin-top: 20px;
}
.title::after {
  content: '';
  display: block;
  width: 40%;
  height: 4px;
  margin-top: 10px;
  background-color: #0066AD;
  position: absolute;
}
footer {
  padding-block: 40px;
  background-color: #0066AD;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:#fff;
}
.phone:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-inline-end: 5px;
  background-image: url('assets/phone.svg');
  background-repeat: no-repeat;
  background-size: contain
}
.fax:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-inline-end: 5px;
  background-image: url('assets/fax.svg');
  background-repeat: no-repeat;
  background-size: contain
}
.address:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-inline-end: 5px;
  background-image: url('assets/pin.svg');
  background-repeat: no-repeat;
  background-size: contain
}