:root {
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;

  --go-blue: #004a98;
  --go-yellow: #fec526;
  --go-turquoise: #0095a8;
  --go-light-blue: #ccdbea;
  --go-light-turquoise: #cceaee;
}

html,
body {
  color: #5a5a5a;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.font-Arvo {
  font-family: 'Arvo', serif;
}

.grid-x {
  max-width: 1200px;
  margin: auto;
}


.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }

a {
  color: var(--go-blue);
}

a:hover {
  color: var(--go-turquoise);
}


.section-banner {
  border-top: 20px solid var(--go-yellow);
  border-bottom: 20px solid var(--go-yellow);
  background-color: var(--go-light-blue)
}
  .section-banner .cell {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 500px;
  }

.section-white {
  background-color: #FFF;
}

.section-blue {
  background-color: var(--go-light-blue);
}

.section-turquoise {
  background-color: var(--go-light-turquoise);
}


.with-smile {
  background-image: url("../img/smile_ico.png");
  background-position: left bottom;
  background-repeat: no-repeat;
}


.cms-content:nth-child(odd) .grid-x {
  flex-direction: row-reverse;
}
  .content-img {
    text-align: center;
  }



#Header {
  padding: 25px;
}
  #Header > .grid-x {
    max-width: 80%;
    width: 1100px;;
  }
  #HeaderBtns {
    padding-top: 2.0833rem;
  }

#HeaderCallContainer {
  text-align: center;
}
#HeaderCall img {
  width: 19px;
}

#HeaderNavTrigger {
  line-height: 2rem;
  font-size: 2rem;
  text-align: center;
}


#Logo {
  max-width: 295px;
}





#NavContainer {
  position: fixed;
  right: -300px;
  top: 0;
  display: block;
  width: 300px;
  height: 100vh;
  background-color: var(--go-turquoise);
  transition: right 0.5s;
  padding: 10px;
  z-index: 999;
}
  #NavContainer.open {
    right: 0;
  }

  #NavClose {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 1.3333rem;
  }

  #NavBody > a {
    text-align: center;
    color: rgba(255, 255, 255, 0.8)!important;
    padding: 10px 0;
  }






#Footer {
  background: url('../img/footer_bg.png') center center no-repeat var(--go-blue);
  background-size: cover;
  border-top: 20px solid var(--go-yellow);
}
  #FooterAddress {
    padding: 20px;
    text-align: center;
    font-family: 'Arvo', serif;
    color: #FFF;
  }
    #FooterAddress a {
      color: var(--go-yellow);
    }

    #FooterSocialLinks {
      max-width: 200px;
    }
      #FooterSocialLinks a {
        color: #FFF;
        font-size: 1.3333rem;
      }

  #FooterMapSmile {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
    #FooterMapSmile img {
      max-width: 300px;
    }


@media (max-width: 600px) {

  #Header {
    padding: 5px;
  }

  #HeaderBtns { 
    padding-top: 0; 
  }

  #HeaderCallContainer {
    text-align: right;
  }
    #HeaderCallContainer img {
      height: 28px;
    }

  #HeaderNavTrigger {
    text-align: right;
    line-height: 1.7rem;
    font-size: 1.2rem;
  }

  .section-banner .cell {
    height: auto;
    padding-top: 40%;
  }



}
