* {
    box-sizing: border-box;
  }
  
  /* Style the body */
  body {
      margin: 0;
      font-family: 'Montserrat', sans-serif;
  }
  
  /* Header/logo Title */
  .header {
      padding: 15px;
  }
  
  .header img {
      height: 75px;
      display: block;
      margin-left: auto;
      margin-right: auto;
  }
  
  /* Style the top navigation bar */
  nav {
      display: flex;
      background-color: rgb(255, 255, 255);
      
  }
  
  /* Style the navigation bar links */
  nav a {
      color:rgb(120, 120, 120);
      font-size: 15px;
      margin-top: auto;
      margin-left: 20%;
      padding: 14px 5px;
      text-decoration: none;
      letter-spacing: 1px;
      text-transform: uppercase;
  }
  
  /* Change color on hover */
  nav a:hover {
      color: rgb(42, 142, 191);
      border-bottom: 1px solid rgb(238, 146, 24);
  }
  
  /* Column container */
  main {  
      display: flex;
      flex-wrap: wrap;
      border-top: solid 1.25px #f1f1f1;
  }
  
  /* Left sidebar column */
  .left {
      flex: 30%;
      background-color: #f1f1f1;
      padding: 20px;
  }
  
  .left h2, h5 {
      text-align: center;
      color: rgb(42, 142, 191);
  }
  
  .provider img {
      padding: 10px;
      height: 375px;
      margin-left: 35px;
      border: 2px solid rgb(238, 146, 24);
  }
  
  .left p {
      text-align: justify;
      line-height: 1.5em;
  }
  
  /* Right column */
  .right {
      flex: 70%;
      background-color: white;
      padding: 20px;
  }
  
  .right h2 {
      text-align: center;
      color: rgb(79, 173, 38);
      font-size: 60px;
      margin-top: 10px;
  }
  
  .right h3 {
      text-align: center;
      color:rgb(42, 142, 191);
      margin-top: 30px;
  }
  
  .right a {
      color: rgb(120, 120, 120);
      font-size: 11px;
      margin-left: 5%;
      padding: 14px 10px;
      text-decoration: none;
      letter-spacing: 1px;
      text-transform: uppercase;
  }
  
  .right a:hover {
      font-weight: bold;
      color:rgb(42, 142, 191);
      border-bottom: 3px solid rgb(238, 146, 24);
  }
  
  .collage img {
      width: 100%;
      padding: 10px;
      height: 300px;
  }
  
  hr {
      margin-top: 30px;
      margin-bottom: 30px;
      width: 75%;
      border: 1px solid rgb(238, 146, 24);
  }
  
  #justify {
      text-align: justify;
      line-height: 1.6;
      color:rgb(42, 142, 191);
      padding-left: 15%;
      padding-right: 15%;
  }
  
  .bottom img {
      width: 100%;
      padding: 10px;
      height: 175px;
  }
  
  .right p {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.8em;
      padding: 0px 175px;
      font-style: italic;
  }

  #hours {
    text-align: center;
    line-height: 1.6;
    color:rgb(42, 142, 191);
    padding-left: 15%;
    padding-right: 15%;
    font-style: normal;
  }
  
  
  /* Footer */
  footer {
      background-color:rgb(49, 50, 52);
      padding: 20px;
      text-align: center;
      color: rgb(255, 255, 255);
      line-height: 1.5em;
  }
  
  footer img {
      height: 75px;
      float: left;
      margin-top: 1em;
  }
  
  
  /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
  @media (max-width: 600px) {
      main, nav {   
      flex-direction: column;
    }
  }