/* CSS Stylesheet for main pages*/
/* @import url('https://fonts.googleapis.com/css?family=Questrial&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
    text-align: center;
    margin: 0px auto;
    max-width: 1200px;
    font-weight: normal;
    font-size: 20px;
    color: #1d1d22;
    font-family: "Open Sans", sans-serif;
    /*font-family: 'Questrial', sans-serif;*/
    /*Font-family: Dejavu Sans, Arial, Verdana, sans-serif;*/
}

h1 {
    text-align: left;
    font-weight: bold;
    font-size: 20px;
    color: rgb(255, 139, 47);
    font-family: "Open Sans", sans-serif;
    /*font-family: 'Questrial', sans-serif;*/
    /*Font-family: Dejavu Sans, Arial, Verdana, sans-serif;*/
    background-color: transparent;
    margin: 1rem;
}

h2 {
    text-align: left;
    font-weight: normal;
    font-size: 20px;
    color: #1d1d22;
    font-family: "Open Sans", sans-serif;
    /*font-family: 'Questrial', sans-serif;*/
    /*Font-family: Dejavu Sans, Arial, Verdana, sans-serif;*/
    background-color: transparent;
    margin: 1rem;
}

p {
    text-align: left;
    font-weight: normal;
    font-size: 16px;
    color: #1d1d22;
    font-family: "Open Sans", sans-serif;
    /*font-family: 'Questrial', sans-serif;*/
    /*Font-family: Dejavu Sans, Arial, Verdana, sans-serif;*/
    background-color: transparent;
    margin: 1rem;
}

a {
    text-align: center;
    font-weight: normal;
    font-size: 20px;
    color: #1d1d22;
    font-family: "Open Sans", sans-serif;
    /*font-family: 'Questrial', sans-serif;*/
    /*Font-family: Dejavu Sans, Arial, Verdana, sans-serif;*/
    background-color: transparent;
    text-decoration: none;
}

a:hover {
  color:#9ad9ea;
}

.banner-container {
    font-family: "Open Sans", sans-serif;
    /*font-family: 'Questrial', sans-serif;*/
    display: flex;
    flex-grow: 1;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    min-width: 300px;
    max-width: 1200px;
}

.banner {
  position: relative;
  display:flex;
  flex-grow: 1;
  align-items:center;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  background-color: white;
  border-bottom: 2px solid #9ad9ea;
}

.logo {
  width: 220px;
}

.logo img {
  width: 220px;
}

#navigation {
  width: 100%
}

#navigation ul {
  display: flex;
  min-width: 80px;
  width:100%;
  gap: 5%;
  font-size: 0;
  list-style: none;
  align-items: center;
}

#navigation ul li a {
  display: flex;
  gap: 2px;
  align-items: center;
  font-size: 20px;
}

.container {
    padding: 20px;
    margin-top: 80px;
    max-width: 1200px;
    min-width: 300px;
    font-family: "Open Sans", sans-serif;
    /*font-family: 'Questrial', sans-serif;*/
    background-color: rgb(245, 245, 245);
}

.section-container {
  display:flex;
  flex-flow: row wrap;
  justify-content:space-around;
  gap: 20px;
}

.section {
  flex-basis: 45%;
  flex-grow: 1;
  min-width: 300px;
  background-color: white;
  border: 2px solid #9ad9ea;
  border-radius: 5px;
  margin: 0px;
}

.classroom {
  flex-basis: 100%;
  flex-grow: 1;
}

.classroom img {
  width: 90%;
}

.comments-container {
  display:flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content:space-around;
  background-color: white;
  border: 2px solid #9ad9ea;
  border-radius: 5px;
}

.comment-title {
  flex-basis: 90%;
  flex-grow: 1;
}

.comment {
  flex-basis: 30%;
  flex-grow: 1;
  font-style:oblique;
  min-width: 300px;
}

.comment p {
  text-align: center;
  margin-top: 0px;
}

.quote {
  color: rgb(255, 139, 47);
  font-weight: 1000;
}

.footer-container {
    font-family: "Open Sans", sans-serif;
    /*font-family: 'Questrial', sans-serif;*/
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    border-top: 2px solid #9ad9ea;
    max-width: 1200px;
    min-width: 300px;
    width: calc(100% - 40px);
    height: 80px;
}

.footer {
  display:flex;
  justify-content:left;
  flex-flow: row wrap;
  align-items:center;
  height: 100%;
  width: 100%;
  background-color: white;
  /*border-bottom: 2px solid #9ad9ea;*/
  font-size: 16px;
}

.footer a {
  font-size: 16px;
}

.contact {
  display: flex;
  flex-flow: column;
  height: 100%;
  flex-basis: 40%;
  min-width: 260px;
  /*flex-grow: 1;*/
}

.find {
  display: flex;
  flex-flow: column;
  height: 100%;
  min-width: 260px;
  flex-basis: 40%;
  /*flex-grow: 1;*/
}

.links {
  display: flex;
  flex-flow: column;
  height: 100%;
  flex-basis: 20%;
  min-width: 130px;
  /*flex-grow: 1;*/
}

.links a {
  font-size: 16px;
}

.links div + div {
  margin-top: 0px;
}

.icontext {
  display: flex;
  flex-basis: 30%;
  text-align: left;
  align-items: center;
  gap: 2px;
  width: 100%;
  height: 100%;
}

.iconspacer {
  height: 10px;
}

.icontext a {
  display: flex;
  align-items: center;
  gap: 2px;
}

.icontext img {
  width: 24px;
  height: 24px;
  padding-right: 3px;
}

.address {
  display: flex;
  flex-flow: column;
  justify-content: left;
  text-align: left;
  height: 100%;
  width: 100%;
}

.address ul {
  list-style: none;
  margin-top:0;
  padding-left: 0px;
}

.address li + li {
  margin-top: 2px;
}

.overlay{
  position: fixed;
  z-index:-1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
  background: black;
}

#hamburger-input{
  display: none;
}

#hamburger-menu {
    position: fixed;
    top: 22px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: none;
    border: none;
    padding: 0px;
    margin: 0px;
    font-family: "Open Sans", sans-serif;
    /*font-family: 'Questrial', sans-serif;*/
    background: linear-gradient( to bottom, #9ad9ea, #9ad9ea 20%, white 20%, white 40%, #9ad9ea 40%, #9ad9ea 60%, white 60%, white 80%, #9ad9ea 80%, #9ad9ea 100% );
    cursor: pointer;
}

#hamburger-menu #sidebar-menu {
    /*visibility: hidden;*/
    overflow: hidden;
    position: fixed;
    top: 80px;
    left: calc(100% - 200px);
    width: 200px;
    height: 0px;
    background-color: #9ad9ea;
    padding: 0px 10px;
    transition: height 0.35s ease;
    box-sizing: border-box;
}

#hamburger-menu .close {
  display: flex;
  width: 100%;
  justify-content: right;
}

#hamburger-menu .close  p {
  font-size: 24px;
  color: white;
  margin: 5px;
}

#hamburger-menu h3 {
  color: white;
  font-size: 32px;
  margin: 0 5px;
}

#hamburger-menu ul {
  padding-left: 0px;
  width: 100%
}

#hamburger-menu li {
  list-style-type: none;
  vertical-align: center;
  width: 100%;
  line-height: 40px;
}

#hamburger-menu ul li a {
  display: flex;
  color: white;
  gap: 2px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
}

#hamburger-menu a:hover {
  text-decoration: underline;
}

#hamburger-input:checked + #hamburger-menu #sidebar-menu {
  visibility: visible;
  height: 320px;
}
#hamburger-input:checked ~ .overlay{
  visibility: visible;
  opacity: 0.4;
}

@media (max-width: 850px) {
  #navigation {
    display: none;
  }
  #hamburger-menu {
    display: inline;
  }

  .classroom img {
    width: 100%;
  }
}