.information-wrapper{
 /* width: 90%;*/
  border-top:  2px solid #99b1d6;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-flow: wrap;
}

.title-wrapper h3{
  /*font-family: Light;*/
 /* font-size: 28.8px;*/
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.25px;
  text-align: left;
  /*color: #005595;*/
  margin-right: 60px;
  margin-top:20px;
}

.list{
  margin-top: 25px;
  list-style:none;
  /*padding-left: 16px;*/
  margin-left: 10px;
}

.list li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
 /* color: #089e9a; /* Change the color */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 16px; /* Also needed for space (tweak if needed) */
  margin-left: -16px; /* Also needed for space (tweak if needed) */
  font-weight: bold;
  font-size: 20px;
  line-height: 14px;
  vertical-align: middle;
}

.listItem{
  margin: 0 0 16px 0;
 /* font-family: Light;*/
  font-size: 20px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-align: left;
  color: #000000;    
}

.information-wrapper ul > li:nth-child(1) {
  display: none;
}

.hours-of-operation, .amenities, .service-offered, .accreditation {
  flex: 0 0 30%;
}

.hours-operation-wrapper {
  display: flex;
  margin-top: 26px;
  flex-direction: column;
}

.hours-operation-wrapper > div {
  display: flex;
  justify-content: space-between;
}

.mobile-detail-wrapper {
  display: none;
}

@media (max-width: 1024px) {
  .information-wrapper {
    width: auto;
    padding: 0px 16x;
    border-top: 2px solid #99b1d6;
  }
  .title-wrapper {
    margin-right: 0;
    font-size:20px;
  }
  .title-wrapper h1 {
    /*font-family: 'Medium';*/
    font-size: 16px;
  }
  .hours-operation-wrapper {
    margin-top: 16px;
  }
  .list {
    margin-top: 16px;
   /* padding-left: 12px;*/
  }
  
  .list li::before {
    width: 12px;
    margin-left: -12px;
    line-height: 14px;
  }
  .listItem {
    margin: 0 0 8px 0;
    font-size: 14px;
  }
   .information-wrapper{
    display: block;
  }
  .mobile-detail-wrapper {
    display: flex;
    flex-direction: column;
    flex:1;
  }
  .desktop-show {
    display: none;
  }
  .hours-of-operation {
    flex: 1;
   /* padding-right: 16px;
    padding-left: 15px;*/
  }
  .mobile-detail-wrapper {
    /*padding-left: 16px;*/
  }
   .service-offered, .amenities, .accreditation {
    padding-right: 15px;
  }
}

