* {
  box-sizing: border-box;
}

.selfhelp-container {
  display: flex;
  background-color: #fff;
  flex-wrap: wrap;
/*  font-size: 30px; */
  width: 100%;
  text-align: center;
  min-height: 100px;
}

.selfhelp-item-left {
  background-color: #fff;
  padding: 5px;
  flex: 50%;
}

.selfhelp-item-right {
  background-color: #fff;
  padding: 5px;
  flex: 50%;
}

.selfhelp-container2 {
  display: flex;
  background-color: #317aba;
  flex-wrap: nowrap;
  font-size: 30px;
  width: 100%;
  height: 100%;
    min-height: 100px;

}

.selfhelp-item-left2 {
  display: flex; 
  align-items: center;
  background-color: #317aba;
  padding: 10px;
}

.selfhelp-item-right2 {
  display: flex; 
  background-color: #317aba;
  text-align: left;
  padding: 15px;
  flex: 75%;
  font-size: .65em;
  align-items: center;
  color: #ffffff;
}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 600px) {
  .selfhelp-item-right, .selfhelp-item-left {
    flex: 100%;
  }

}