/*
Orange:   #EB9027
Dk. Blue: #2F408D
Lt. Blue: #3D76BB
*/
/* h1 {
  color: #2f408d;
}
h2 {
  color: #3d76bb;
}
h3 {
  color: #3d76bb;
} */
/* .container {
  width: 80%;
  margin: 0 auto 48px auto;
  text-align: center;
} */
.button-container {
  width: 100%;
  overflow-y: auto;
  text-align: center;
}
.toggleOn {
  width: 185px;
  height: 150px;
  margin: 15px;
  border-radius: 10px;
  color: #3d76bb;
  font-size: 1em;
  font-weight: bolder;
  background-color: #fcf4e8;
  border: 2px solid #eb9027;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.toggleOn img {
  height: 40px;
  width: auto;
}
.toggleOff {
  width: 185px;
  height: 150px;
  margin: 15px;
  border-radius: 10px;
  color: #3d76bb;
  font-size: 1em;
  font-weight: bolder;
  background-color: #eff0f7;
  border: 2px solid #2f408d;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.toggleOff:hover,
.toggleOff:focus {
  border: 4px solid #2f408d;
  -webkit-transform: scale(0.96);
  -moz-transform: scale(0.96);
  -ms-transform: scale(0.96);
  -o-transform: scale(0.96);
  transform: scale(0.96);
}
.toggleOff img {
  height: 40px;
  width: auto;
}
.title {
  grid-area: header;
}
.content {
  grid-area: main;
  overflow: hidden;
}
.link {
  grid-area: footer;
  margin: 36px 0 0 0;
}
.grid-container {
  display: grid;
  grid-template-areas:
    "header header header header header header"
    "main main main main main main"
    "footer footer footer footer footer footer";
  border-radius: 10px;
  padding: 0px 0px 20px 0px;
  border: 2px solid #eb9027;
  background: #fcf4e8;
  text-align: center;
  margin-left: 25px;
  margin-right: 25px;
}
.column {
  float: left;
  width: 25%;
  padding: 0 2.5% 0 2.5%;
}
.column h4 {
  color: #2f408d;
  text-align: center;
  font-size: 3rem;
  line-height: 5.2vw;
  margin: 0 0 12px 0;
  padding: 0 0 0 0;
  font-weight: 700;
  white-space: no-wrap;
}
.column h5 {
  color: #3d76bb;
  text-align: center;
  font-size: 1.1vw;
  line-height: 1.3vw;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-weight: 400;
}
.pdfLink {
  padding: 12px 60px 12px 60px;
  background: #ee6d25;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pdfLink:hover,
.pdfLink:focus {
  background: #2f408d;
}
.exploreLink {
  padding: 12px 60px 12px 60px;
  background: #2f408d;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.exploreLink:hover,
.exploreLink:focus {
  background: #3d76bb;
}
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}