* {
  box-sizing: border-box;
  margin: 0;
}

html {
  font-family: "Open Sans", sans-serif;
  color: #1d2a3b;
}

body {
  min-height: 99vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  line-height: 25px;
}
body main {
  margin: auto;
  padding-bottom: 25px;
}
body footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 99vw;
}
body footer > section {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
body footer .w-100 {
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}
body footer .w-75 {
  margin-top: 15px;
  width: 75%;
  display: flex;
  justify-content: center;
}
body footer .w-33 {
  margin-top: 15px;
  width: 33%;
  display: flex;
  justify-content: center;
}
body footer a {
  color: #DD743B;
  text-decoration: none;
  font-weight: 600;
}
body footer a:hover {
  text-decoration: underline;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 50px;
}
.logo img {
  max-height: 300px;
  margin-bottom: 25px;
  max-width: 90% !important;
}

.container {
  width: 75%;
  max-width: 1050px !important;
  margin: 0 auto;
}

h1 {
  line-height: 50px;
  color: #72A3CD;
  font-family: cursive;
}
h1 span {
  font-size: 1.8em;
}

.content {
  margin: 30px auto;
}

ul li {
  padding-bottom: 15px;
}

ul li ul li {
  padding-bottom: 5px;
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 90% !important;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 90% !important;
  }
  footer section {
    flex-direction: column;
    align-items: center;
  }
  footer section .w-33 {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: solid 1px #1d2a3b;
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .container {
    max-width: 95% !important;
  }
  footer section .w-33 {
    width: 60%;
  }
}
.text-center {
  text-align: center;
}

.hidden {
  opacity: 0;
}/*# sourceMappingURL=style.css.map */