html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: content-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#nav-bar {
  background-color: #ffffff;
  width: 100%;
}

#nav-bar > header {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #F7F3E9;
  max-width: 1300px;
  margin: 0 auto;
}
@media only screen and (min-width: 800px) {
  #nav-bar > header {
    flex-direction: row;
    justify-content: space-between;
    color: #F7F3E9;
  }
}

.logo {
  width: 200px;
}

#nav-bar > header > nav {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
@media only screen and (min-width: 360px) {
  #nav-bar > header > nav {
    flex-direction: row;
  }
}

#nav-bar > header > nav > a {
  padding: 5px 7px;
  color: black;
}
@media only screen and (min-width: 800px) {
  #nav-bar > header > nav > a {
    padding: 5px 15px;
  }
}

#nav-bar > header > nav > a:hover {
  color: #0e7ede;
}

.card {
  margin: 20px 10px;
  border: 2px solid #a0c3de;
  border-radius: 7px;
  max-width: 300px;
}

.card > h4 {
  background-color: #a0c3de;
  margin: 0;
  padding: 10px;
  text-align: center;
  color: white;
  font-size: 1.4rem;
}

.card > div {
  padding: 15px;
}

.card > div > p {
  margin: 0;
  line-height: 1.4;
  font-weight: bold;
}

.card > div > ul {
  padding: 0;
  list-style-position: inside;
  line-height: 1.5;
  list-style-image: url("../images/apple.png");
}

.card > div > ul > li {
  margin: 14px auto;
}

.card > div > a {
  background-color: #1394ff;
  color: #fcf6f6;
  padding: 7px;
  border-radius: 7px;
  display: inline-block;
  margin-top: 15px;
}

.card > div > a:hover {
  background-color: #0e7ede;
}

.primary-btn {
  background-color: #1394ff;
  color: #fcf6f6;
}

.primary-btn:hover {
  background-color: #0e7ede;
}

.secondary-btn {
  background-color: #f3f0f0;
  color: #111111;
}

.secondary-btn:hover {
  background-color: #e5e3e3;
}

#cards-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center;
}
@media only screen and (min-width: 800px) {
  #cards-container {
    justify-content: space-evenly;
    flex-direction: row;
  }
}

body {
  padding: 0;
  margin: 0 auto;
  min-width: 180px;
}
@media only screen and (min-width: 360px) {
  body {
    min-width: 360px;
  }
}

html {
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

#aboutUs, #programs, #contactUs, #landing > div {
  min-height: 75vh;
  min-width: 180px;
  max-width: 1300px;
  margin: 0 auto;
}
@media only screen and (min-width: 360px) {
  #aboutUs, #programs, #contactUs, #landing > div {
    min-width: 360px;
  }
}

#aboutUs, #programs, #contactUs {
  margin: 60px auto;
}

a {
  text-decoration: none;
  color: var(--link-color);
}

#landing {
  background-size: cover;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/playground.jpg") center;
}

#landing > div {
  padding: 100px 0;
  box-sizing: border-box;
}
@media only screen and (min-width: 360px) {
  #landing > div {
    padding: 100px 20px;
  }
}
@media only screen and (min-width: 800px) {
  #landing > div {
    width: 60%;
  }
}

#landing > div > h1 {
  margin-bottom: 15px;
  font-weight: bolder;
  font-size: 1.9rem;
  color: white;
}
@media only screen and (min-width: 360px) {
  #landing > div > h1 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 800px) {
  #landing > div > h1 {
    font-size: 3rem;
  }
}

#landing > div > p {
  line-height: 1.4;
  color: white;
}
@media only screen and (min-width: 800px) {
  #landing > div > p {
    font-size: 1.2rem;
  }
}

#landing > div > div {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 300px;
  margin-top: 30px;
}
@media only screen and (min-width: 360px) {
  #landing > div > div {
    display: flex;
    flex-direction: row;
    width: 300px;
  }
}

#landing > div > div > a {
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

#programs > h2 {
  text-align: center;
}

.error {
  background-color: rgba(255, 0, 0, 0.1);
  color: darkred;
  border-radius: 7px;
  padding: 15px;
}

.success {
  background-color: rgba(170, 248, 151, 0.25);
  color: #1c7500;
  border-radius: 7px;
  padding: 15px;
}

h2 {
  font-size: 1.9rem;
}

#aboutUs > div > img {
  width: 100%;
  max-width: 500px;
}
@media only screen and (min-width: 1300px) {
  #aboutUs > div > img {
    max-width: 40%;
  }
}

#aboutUs > article {
  text-align: center;
  padding: 7px 7px;
}
@media only screen and (min-width: 800px) {
  #aboutUs > article {
    width: 75%;
    margin: 0 auto;
  }
}

#aboutUs > article > h2 {
  margin: 20px 0 5px;
}

#aboutUs > article > p {
  line-height: 1.3;
}

#aboutUs > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

#aboutUs > div > div > h3 {
  font-weight: bold;
  margin: 0;
}

#aboutUs > div > div > p {
  margin: 0;
  line-height: 1.3;
}

#aboutUs > div > div {
  margin: 50px 0;
  padding: 30px;
}
@media only screen and (min-width: 800px) {
  #aboutUs > div > div {
    width: 30%;
  }
}

#aboutUs > div > div > span {
  display: block;
  text-align: right;
  font-style: italic;
}

#contactUs {
  text-align: center;
}

#contactUs > form {
  width: 95%;
  margin: 0 auto;
}

#contactUs > form > div {
  display: block;
  margin: 10px auto;
}

#contactUs > form > div > label {
  display: block;
  width: 20%;
  text-align: right;
  font-size: 1.1rem;
}
@media only screen and (min-width: 360px) {
  #contactUs > form > div > label {
    display: inline-block;
  }
}

#contactUs > form > div > input {
  display: block;
  width: 60%;
  border: none;
  border-bottom: 1px solid black;
  padding: 5px;
  font-size: 1.1rem;
}
@media only screen and (min-width: 360px) {
  #contactUs > form > div > input {
    display: inline-block;
  }
}

#form-textarea > label {
  vertical-align: top;
}

#contactUs > form > div > textarea {
  width: 60%;
}

#contactUs > #email-form > #btn-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#contactUs > #email-form > #btn-container button {
  display: inline-block;
  padding: 7px;
  border: none;
  border-radius: 7px;
  font-size: 1.1rem;
  margin: 0px 7px;
}

.calendar {
  width: 100%;
}
@media only screen and (min-width: 1300px) {
  .calendar {
    max-width: 100%;
  }
}

#calendar {
  min-height: 75vh;
  min-width: 180px;
  max-width: 1300px;
  margin: 0 auto;
}
@media only screen and (min-width: 360px) {
  #calendar {
    min-width: 360px;
  }
}

#calendar > article {
  text-align: center;
  padding: 7px 7px;
}
@media only screen and (min-width: 800px) {
  #calendar > article {
    width: 75%;
    margin: 0 auto;
  }
}

#calendar > article > h1 {
  margin: 20px 0 5px;
  font-size: 3rem;
}

#calendar > article > p {
  line-height: 1.3;
  font-size: 1rem;
}

#calendar > article > p > a {
  font-size: 1.25rem;
}
#calendar > article > p > a :hover {
  color: #F05945;
}

footer {
  padding-top: 15px;
  background-color: #F7F3E9;
  width: 100%;
  margin: 0 auto;
  min-width: 180px;
}
@media only screen and (min-width: 360px) {
  footer {
    min-width: 360px;
  }
}
footer section {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
}
@media only screen and (min-width: 800px) {
  footer section {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1300px) {
  footer section {
    max-width: 1300px;
  }
}
footer section img {
  width: 90%;
  max-width: 300px;
  margin: 0 auto;
}
@media only screen and (min-width: 800px) {
  footer section img {
    margin: 0;
  }
}
footer section div address {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.5;
}
@media only screen and (min-width: 800px) {
  footer section div address {
    text-align: left;
    flex-direction: column;
    margin-left: 30px;
  }
}
footer section div nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 75px;
  text-align: center;
  margin: 30px auto;
}
@media only screen and (min-width: 800px) {
  footer section div nav {
    flex-direction: column;
    height: auto;
    text-align: left;
    margin: 30px;
  }
}
footer section div nav a {
  padding: 5px;
  width: 30%;
}
@media only screen and (min-width: 800px) {
  footer section div nav a {
    width: 100px;
    color: black;
  }
}
@media only screen and (min-width: 800px) {
  footer section div nav a:hover {
    color: #0e7ede;
  }
}
footer section iframe {
  display: none;
}
@media only screen and (min-width: 650px) {
  footer section iframe {
    display: block;
  }
}
footer p {
  text-align: center;
  margin: 0;
  padding: 15px;
  background-color: #ffffff;
  color: white;
}

.business-name {
  font-weight: bold;
  font-size: 1.2rem;
}

.social-media {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 30px 0;
}
@media only screen and (min-width: 800px) {
  .social-media {
    flex-direction: column;
  }
}
.social-media a img {
  width: 45px;
}
.social-media a img:hover {
  transform: scale(1.125);
}
@media only screen and (min-width: 800px) {
  .social-media a img:hover {
    transform: scale(1.1);
  }
}

/*# sourceMappingURL=main.css.map */
