* {
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  background-color: #f9f9f9;
}

h1 {
  margin-top: 35px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 26px;
}

h2 {
  margin: 15px;
  font-weight: 400;
  font-size: 24px;
}

p {
  margin: 15px;
}

#wrapper {
  width: 1980px;
  margin: 0 auto;
}

h1:first-of-type {
  margin-top: 10px;
}

a {
  color: rgb(85, 85, 85) !important;
  text-decoration: none;
}

.sub-items {
  margin-top: 0;
}

.sub-items a {
  font-weight: bold;
  white-space: nowrap;
}

.row {
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
  margin-bottom: 10px;
}
.same-width-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.row div {
  border: 1px solid #e8e8e8;
  background-color: white;
  overflow: auto;
}

.row div:hover {
  background-color: #e6e6e6;
}

img.icon {
  float: left;
  margin: 15px 30px 15px 15px;
  width: 60px;
}

img.sub-icon {
  position: relative;
  top: 2px;
  width: 16px;
}

@media only screen and (max-width: 2000px) {
  #wrapper {
    width: 100%;
  }
}

@media only screen and (max-width: 900px) {
  .row {
    display: block;
    margin-bottom: 0;
  }
  .row div {
    margin-bottom: 10px;
  }
}
