
    /* ---------------------------------------------------------------- backgrounds */
  
  .wideStripe::before {
    background-color: #eff4ff;
  }
  
    /* ----------------------------------------------------------------text */
  .lightText {
    color: #3388ff;
  }
  
  /* ----------------------------------------------------------------img gallery */
  section#gallerySection {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    
    flex: 0 0 100% !important;
  }
  
  section#gallerySection img {
    margin: 0.5em 0em;
  }
  
/* ----------------------------------------------------------------page title */
  .pageTitle {
    text-align: center;
  }
  
  .pageTitle::before {
    background-color:  #eff4ff;
  }
  
  .pageTitle h1 {
    margin: 0em;
  }
  
  
  .pageTitle p {
    margin: 0em auto;
    max-width: 80%;
  }
  
  /* ----------------------------------------------------------------Page title landing page */
  
  .pageTitleLandingPage::before {
    background-color:  #eff4ff;
  }
  
  .pageTitleLandingPage.grid5x3{
    align-items: end;
  }
  
  .pageTitleLandingPageIntro {
    color:  #3388ff;
    font-weight: bold;
    font-size: 1.25rem;
  }
  
  .pageTitleLandingPage a.button.primaryButton {
    margin-bottom: 1em;
  }
  
  .pageTitleLandingPage img{
    margin-bottom: -2em;

  }

  .pageTitleLandingPage ul {
    font-size: 0.8em;
  }
  
  .pageTitleLandingPage li {
    align-items: center;
  }
  
  /* ---------------------------------------------------------------- content alignment */
  
  .centeredContentWide {
    text-align: center;
  }
  
  .centeredText {
    text-align: center;
  }
  
  /* ---------------------------------------------------------------- lists */
  
  ul.dots {
    list-style-type: disc;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 1em;
    margin-bottom: 1em;
  }
  
  /* ----------------------------------------------------------------testimonials */
  
  .testimonialsCont {
    display: grid;
    gap: 1em;
    
    padding-top: 2em;
  }
  
  .testimonialHeader > img {
    width: 2em;
  }
  
  .testimonialText {
    font-size: 0.9em;
  }

  .singleTestimonial {
    padding: 1em;
    border: 0.05em solid #cfcfcf;
    border-radius: 0.5em;
    display: grid;
    row-gap: 0.5em;
    grid-template-rows: auto 1fr auto;
    background-color: #eff4ff;
  }
  
  .wideStripe .singleTestimonial {
    
    background-color: #fff;
  }
  
  .singleTestimonial p {
    margin-bottom: 0em;
  }
  
  .singleTestimonial p.testimonialWriter {
    font-weight: bold;
  }
  
  .singleTestimonial .testimonialHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  
  .star {
    margin-right: 0.2em;
  }
  
  .star::before {
    font-family: "FONT_AWESOME_SOLID";
    content: "\f005";
    color: #ffd400;
  }
  
  .showLoading {
    position: relative;
    display: block;
  }
  
  .showLoading::after {
    
    content: "";
    
    background-image: url(https://nhclinic.it/pub/f540ebed/c2737565/loading.gif);
    background-repeat: no-repeat;
    background-size: contain;
    width: 2rem;
    
    display: block;
    
    position: absolute;
    top: 0em;
    bottom: 0em;
    right: 0em;
    left: 120%;
    
    z-index: 10;
  }
  
  .top1rem {
    margin-top: 1rem;
  }
  
  .bot1rem {
    margin-bottom: 1rem;
  }

  .alternateOrder {
    order: 2;
  }
  
  .doubleColumnGrid {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 2em;
    align-items: center;
  }
  
  .initialOrder > * {
    order: initial !important;
  }

  @media screen and (min-width: 320px) and (max-width: 650px) {
    
    .pageTitle p {
      max-width: 100%;
    }
  }
  
  @media screen and (min-width: 450px) {
    
    .singleTestimonial {
      padding: 1em;
    }
        
    .testimonialsCont {
      grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
    }
  }
  
  @media screen and (min-width: 850px) {
    
    .doubleColumnGrid {
      grid-template-columns: 1fr 1fr;
      grid-row-gap: 0em;
      grid-column-gap: 2em;
      padding: 2em 1em;
    }
    
    .doubleColumnGrid h2 {
      grid-column: initial;
    }
    
    .doubleColumnGrid:nth-of-type(2n+1) > img {
      order: 1;
      grid-row: span 2;
    }
    
    .doubleColumnGrid:nth-of-type(2n) > img {
      order: 2;
      grid-row: span 2;
    }
    
    .doubleColumnGrid:nth-of-type(2n) > div {
      order: 1;
    }
    
    .doubleColumnGrid:nth-of-type(2n+1) > div {
      order: 2;
    }
  }
  
  @media screen and (min-width: 900px) {
    
    .narrowContentCenter {
      max-width: 80%;
      margin: auto;
      text-align: center;
    }
    
    .narrowContentLeft {
      max-width: 80%;
    }
    
    .centeredContentWide {
      max-width: 90%;
    }
    
    section#gallerySection img {
      max-width: calc(100%/3 - 0.5em);
    }
  }

  @media screen and (min-width: 1010px) {
    .grid2x1Swap {
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-gap: 2em;
    }
    
    .grid5x3{
      display: grid;
      grid-template-columns: 3fr 2fr;
    }
  }
