@charset "UTF-8";

#wrapper {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

#wrapper main {
  position: relative;
}

img {
  height: auto;
  width: auto;
  max-width: 100%;
}

.container {
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}

.row {
  font-size: 0;
}

.row .row-item {
  font-size: 16px;
  vertical-align: top;
  display: inline-block;
  border-right: 1px solid black;
  border-right: none;
  box-sizing: border-box;
  text-align: center;
}

.row .row-item:last-child {
  border-right: none;
}

.row.two-in-row .row-item {
  margin: 20px;
  padding: 40px 20px;
  width: calc(50% - 40px);
  background: #eee;
}

.row.two-in-row .row-item:hover {
	background: #e6e6e6;
}

main p {
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
  margin-bottom: 20px;
  word-wrap: break-word;
}

main p:last-child {
  margin-bottom: 0;
}

main a {
  color: #0e83c3;
  text-decoration: none;
}

main a:hover {
  text-decoration: underline;
}

main img {
  max-height: 90px;
  width: auto;
}

@media (max-width: 767px) {
  .row.two-in-row .row-item {
    width: calc(100% - 40px);
    margin-bottom: 60px;
  }
  .row.two-in-row .row-item:last-child {
  	margin-bottom: 0;
  }
}