body {
  font-family: 'Segoe UI';
  margin: 0px;
}

button:hover {
  cursor: pointer;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 4rem;
  font-weight: lighter;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  font-weight: lighter;
}

.line-thing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.line-thing p {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  width: 30%;
}

.top-info-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.top-info-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-info-child img {
  margin-top: 0.5rem;
  width: 30px;
  height: 40px;
}

.top-info-child-child {
  padding: 0.2rem;
}

.top-info-child-child ul {
  margin-bottom: 5px;
  padding-left: 0.5rem;
}

.top-info-child-child ul li {
  list-style: none;
}

.logo {
  margin-left: 4rem;
  padding-right: 0.2rem;
}

.logo h1 {
  font-size: 2rem;
  color: white;
  font-weight: bold;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 4vh;
  background-color: #ff4e4e;
  overflow: hidden;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 65%;
  text-transform: uppercase;
}

.nav-links li {
  list-style: none;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  font-size: 1rem;
  color: white;
}

.current-tab li {
  text-decoration: underline;
}

/* Mobile Menu */
.burger {
  display: none;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #e2e2e2;
  margin: 5px;
}

.two-buttons {
  background-image: url(../assets/src/child-reading-book.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.two-buttons-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.two-buttons-center button {
  padding: 1vw;
  background-color: #ff4e4e;
  color: white;
  font-weight: bolder;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
}

.three-card-blurb {
  background-image: url(../assets/src/crayon-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.three-card-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 2%;
  width: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-width: 3px;
  background-color: white;
  border-radius: 20px;
  max-width: 17%;
  min-height: 650px;
  text-align: center;
}

.card img {
  width: 150px;
  height: 150px;
  padding: 10px;
  margin-top: 30px;
}

.card h4 {
  font-size: 1.4rem;
}

.card p {
  margin: 25px;
  padding: 10px;
}

.card button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #2799fa;
  color: white;
  margin-bottom: 20px;
  justify-items: flex-end;
}

.t-overall-container {
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(184, 155, 155, 0.199);
}

.t-header-container {
  min-height: 25vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.t-collection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 85%;
  min-width: 85%;
  min-height: 30vh;
  margin: 1em;
  background-color: white;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 1em;
}

.myTestimonials {
  display: none;
  margin: 1rem;
}

.myTestimonials p {
  font-size: 1em;
}

.t-arrow-container-left {
  padding-left: 1rem;
}

.t-arrow-container-left a {
  font-size: 30px;
}

.t-arrow-container-left a:hover {
  cursor: pointer;
}

.t-arrow-container-right {
  padding-right: 1rem;
}

.t-arrow-container-right a {
  font-size: 30px;
}

.t-arrow-container-right a:hover {
  cursor: pointer;
}

/* ABOUT US */
.about-us-intro {
  min-height: 135vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about-us-intro-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about-us-intro-header h1 {
  font-size: 4rem;
  font-weight: lighter;
}

.about-us-intro-blurb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 91%;
}

.about-us-intro-blurb img {
  width: 450px;
  height: 350px;
  -webkit-box-shadow: 0 8px 6px -6px black;
          box-shadow: 0 8px 6px -6px black;
}

.about-us-intro-blurb p {
  max-width: 30rem;
  margin-left: 2rem;
  line-height: 2rem;
}

.about-us-goals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about-us-goals-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about-us-goals-child img {
  width: 450px;
  height: 350px;
  -webkit-box-shadow: 0 8px 6px -6px black;
          box-shadow: 0 8px 6px -6px black;
  margin-left: 10px;
}

.about-us-goals-child ul {
  margin-right: 26px;
  margin-top: 3rem;
}

.about-us-goals-child li {
  margin-top: 1rem;
  list-style: none;
}

.subsidy-container-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* OUR PROGRAMS */
.our-programs-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.programs-intro-parent {
  background-image: url(../assets/src/alphabet-background.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 105vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.programs-intro-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.programs-intro-child img {
  width: 250px;
  height: 250px;
  border-radius: 20%;
  margin-top: 1rem;
}

.programs-intro-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.programs-writing-container {
  min-height: 18rem;
  background-color: rgba(5, 178, 255, 0.3);
  margin-left: 2rem;
  padding: 1rem;
  border-radius: 5%;
  max-width: 30rem;
}

.programs-writing-container h2 {
  margin-top: 0.5rem;
}

.programs-writing-container ul {
  list-style: circle;
}

.parent-handbook-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 40vh;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(../assets/src/flower-book-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.parent-handbook-written-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: white;
}

.parent-handbook-written-container h1 {
  font-weight: lighter;
  font-size: 4rem;
}

.parent-handbook-written-container p {
  max-width: 30%;
  text-align: center;
}

.parent-handbook-written-container a {
  margin-bottom: 1rem;
}

.space-bottom {
  margin-bottom: 15rem;
}

/* NUTRITION PAGE */
.nutrition-intro-parent {
  background-image: url(../assets/src/strawberries-background.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nutrition-intro-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nutrition-intro-header h1 {
  font-weight: lighter;
  font-size: 4rem;
  text-align: center;
}

.nutrition-intro-blurb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
  min-height: 45vh;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.nutrition-intro-blurb img {
  width: 350px;
  height: 250px;
}

.nutrition-intro-blurb p {
  max-width: 30rem;
  padding: 0.5rem;
  text-align: left;
  margin-left: 2rem;
}

.nutrition-meal-plan-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-bottom: 15rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.nutrition-meal-plan-container button {
  background-image: url(../assets/src/meal-plan.png);
  background-position: center;
  background-size: contain;
  margin-top: 4rem;
  padding: 7rem;
  font-weight: bold;
  font-size: 1.5rem;
  max-width: 350px;
}

/* PHOTO GALLERY PAGE */
.gallery-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery-header h1 {
  font-weight: lighter;
  font-size: 4rem;
  margin-bottom: 0;
}

.gallery-sub-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18rem;
}

.gallery-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery-child img {
  width: 500px;
  height: 350px;
  margin-bottom: 10px;
}

.test-slideshow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.mySlides {
  display: none;
}

.mySlides img {
  -webkit-box-shadow: 0 0 40px 6px darkgrey;
          box-shadow: 0 0 40px 6px darkgrey;
  width: 100%;
  max-width: 800px;
  height: auto;
}

.gallery-covid {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.slideshow-covid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.mySlides2 {
  display: none;
  width: 100%;
  max-width: 800px;
  height: auto;
}

.mySlides2 img {
  -webkit-box-shadow: 0 0 40px 6px darkgrey;
          box-shadow: 0 0 40px 6px darkgrey;
  width: 100%;
  max-width: 800px;
  height: auto;
}

.cursor {
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: black;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.arrows-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: black;
  margin: 10px;
  font-size: 25px;
}

.arrows-container a {
  margin-left: 10px;
}

.arrows-container a:hover {
  cursor: pointer;
}

.numbertext {
  display: none;
}

.gallery-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 5rem;
  margin-right: 5rem;
}

.gallery-nav img {
  margin: 5px;
  border-radius: 3px;
  border-color: black;
  border-style: solid;
  border-width: 3px;
}

.demo {
  opacity: 0.6;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.active,
.demo:hover {
  opacity: 1;
}

/* GALLLERY TEST */
.slider {
  overflow: hidden;
}

.slider figure {
  position: relative;
  width: 500%;
  margin: 0;
  -webkit-animation: 20s slider infinite;
          animation: 20s slider infinite;
}

.slider figure img {
  width: 20%;
  float: left;
}

@-webkit-keyframes slider {
  0% {
    left: 0;
  }
  20% {
    left: 0;
  }
  25% {
    left: -100%;
  }
  45% {
    left: -100%;
  }
  50% {
    left: -200%;
  }
  70% {
    left: -200%;
  }
  75% {
    left: -300%;
  }
  95% {
    left: -300%;
  }
  100% {
    left: -400%;
  }
}

@keyframes slider {
  0% {
    left: 0;
  }
  20% {
    left: 0;
  }
  25% {
    left: -100%;
  }
  45% {
    left: -100%;
  }
  50% {
    left: -200%;
  }
  70% {
    left: -200%;
  }
  75% {
    left: -300%;
  }
  95% {
    left: -300%;
  }
  100% {
    left: -400%;
  }
}

/* NEWSLETTERS PAGE */
.newsletter-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.newsletter-page-container {
  background-image: url(../assets/src/child-with-glasses-opaque.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.newsletter-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.newsletter-parent button {
  padding: 11rem;
  margin-left: 5rem;
  margin-right: 5rem;
  margin-top: 2rem;
  background-image: url(../assets/src/newsletter-spring.png);
  background-position: top;
  background-size: contain;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  font-weight: bold;
}

/* CONTACT US PAGE */
.map-page-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: lightsteelblue;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.map-page-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.map-page-header-container h1 {
  font-size: 4rem;
  font-weight: lighter;
}

.our-location-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gmap-api {
  height: auto;
  max-width: 500px;
}

.map-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
}

.map-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-feature iframe,
.map-feature object,
.map-feature embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 650px;
  height: auto;
}

.googlemaps-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.exact-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}

.exact-location img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.form-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.form-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
}

form {
  font-family: Arial, Helvetica, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 35%;
  min-height: 66vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #f6abab;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 5px 5px lightgrey;
          box-shadow: 0 0 5px 5px lightgrey;
}

form label {
  margin-top: 2rem;
  font-size: 1.5rem;
  margin-left: 20px;
}

form textarea {
  max-width: 80%;
  border-radius: 10px;
  border-style: none;
  margin-top: 10px;
  margin-left: 20px;
}

form input {
  margin: 5px;
  height: 30px;
  width: 80%;
  border-radius: 10px;
  border-style: none;
  margin-left: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form button {
  background-color: white;
  border-radius: 5px;
  border-color: #381111;
  margin-top: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  font-family: Arial, Helvetica, sans-serif;
}

/* BOTTOM BANNER */
.bottom-banner {
  background-color: #f47785;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bottom-banner h1 {
  color: white;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

.bottom-banner p {
  color: white;
}

.bottom-banner button {
  background-color: #05b2ff;
  color: white;
  border-radius: 6px;
  -webkit-box-shadow: 0px 4px 8px 0px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 8px 0px 0 rgba(0, 0, 0, 0.2);
  font-size: small;
  padding: 12px 28px;
  margin-bottom: 4px;
}

/*RESPONSIVE DESIGN */
/* IPHONE X */
@media screen and (max-width: 375px) {
  .top-info-parent {
    display: none;
  }
  body {
    overflow-x: hidden;
  }
  .logo h1 {
    font-size: 2rem;
  }
  .nav-links {
    position: fixed;
    right: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.98;
    background-color: #ff4e4e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    overflow-x: hidden;
    /* Disable horizontal scroll */
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s ease-in;
    transition: -webkit-transform 0.4s ease-in;
    transition: transform 0.4s ease-in;
    transition: transform 0.4s ease-in, -webkit-transform 0.4s ease-in;
    margin-top: 10%;
  }
  .nav-links .nav-responsive-active {
    margin-top: 0;
  }
  .nav-links ul li:hover {
    cursor: pointer;
  }
  .burger {
    display: block;
    cursor: pointer;
  }
  .two-buttons {
    display: none;
  }
  /* redo testimoinals */
  .testimonials-text-container-test {
    width: 85%;
  }
  .about-us-intro-header h1 {
    margin: 10px;
  }
  .about-us-intro-blurb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .about-us-intro-blurb img {
    width: 375px;
  }
  .about-us-intro-blurb p {
    text-align: center;
    margin: 1.5rem;
  }
  .about-us-goals {
    margin-bottom: 0;
  }
  .about-us-goals-child ul {
    margin-top: 0;
  }
  .about-us-goals-child img {
    margin: 0;
    margin-bottom: 1rem;
  }
  .our-programs-header h1 {
    text-align: center;
  }
  .programs-writing-container {
    margin: 0;
    margin-top: 0.5rem;
  }
  .programs-writing-container h2 {
    text-align: center;
  }
  .parent-handbook-container h1 {
    text-align: center;
  }
  .parent-handbook-written-container p {
    max-width: 70%;
  }
  .nutrition-intro-blurb img {
    height: 125%;
    width: 80%;
  }
  .form-container form {
    width: 85%;
  }
  .form-container input {
    min-width: 80%;
  }
  .form-container textarea {
    margin-top: 5px;
  }
  .form-container button {
    padding: 1rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 769px) {
  .top-info-parent {
    display: none;
  }
  body {
    overflow-x: hidden;
  }
  .logo h1 {
    font-size: 2rem;
  }
  .nav-links {
    position: fixed;
    right: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.98;
    background-color: #ff4e4e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    overflow-x: hidden;
    /* Disable horizontal scroll */
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s ease-in;
    transition: -webkit-transform 0.4s ease-in;
    transition: transform 0.4s ease-in;
    transition: transform 0.4s ease-in, -webkit-transform 0.4s ease-in;
    margin-top: 10%;
    padding: 0;
  }
  .nav-links .nav-responsive-active {
    margin-top: 0;
  }
  .nav-links ul li:hover {
    cursor: pointer;
  }
  .burger {
    display: block;
    cursor: pointer;
  }
  .two-buttons {
    display: none;
  }
  .three-card-blurb {
    min-height: 120vh;
    padding-bottom: 2%;
  }
  .cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .card {
    margin-top: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: 75%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 25%;
  }
  /* redo testimonials */
  .testimonials-text-one-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .testimonial-one-container {
    width: 80%;
  }
  .about-us-intro-header h1 {
    margin: 10px;
  }
  .about-us-intro-blurb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .about-us-intro-blurb img {
    width: 375px;
  }
  .about-us-intro-blurb p {
    text-align: center;
    margin: 1.5rem;
  }
  .about-us-goals {
    margin: 0;
  }
  .about-us-goals-child ul {
    margin-top: 0;
  }
  .about-us-goals-child img {
    margin: 0;
    margin-bottom: 1rem;
  }
  .our-programs-header h1 {
    text-align: center;
  }
  .programs-writing-container {
    margin: 0;
    margin-top: 0.5rem;
  }
  .programs-writing-container h2 {
    text-align: center;
  }
  .parent-handbook-container h1 {
    text-align: center;
  }
  .parent-handbook-written-container p {
    max-width: 70%;
  }
  .nutrition-intro-blurb img {
    margin-top: 30px;
    width: 60%;
    height: 70%;
  }
  .testimonials-text-container-test {
    width: 85%;
  }
  .t-written-container {
    margin: 1.5em;
  }
  .form-container form {
    width: 85%;
  }
  .form-container input {
    min-width: 80%;
  }
  .form-container textarea {
    margin-top: 5px;
  }
  .form-container button {
    padding: 1rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1100px) {
  body {
    overflow-x: hidden;
  }
  .logo h1 {
    font-size: 2rem;
  }
  .nav-links {
    position: fixed;
    right: 0px;
    height: 100%;
    width: 100%;
    opacity: 0.98;
    background-color: #ff4e4e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    overflow-x: hidden;
    /* Disable horizontal scroll */
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s ease-in;
    transition: -webkit-transform 0.4s ease-in;
    transition: transform 0.4s ease-in;
    transition: transform 0.4s ease-in, -webkit-transform 0.4s ease-in;
    margin-top: 0%;
    padding: 0;
  }
  .nav-links .nav-responsive-active {
    margin-top: 0;
  }
  .nav-links ul li:hover {
    cursor: pointer;
  }
  .burger {
    display: block;
    cursor: pointer;
  }
  .card {
    max-width: 25%;
  }
  .about-us-intro-blurb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-us-goals-child ul {
    margin-top: 0;
  }
  .testimonials-text-container-test {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 70vh;
  }
  .t-written-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
  }
  .form-container form {
    width: 65%;
  }
  .form-container input {
    min-width: 80%;
  }
  .form-container textarea {
    margin-top: 5px;
  }
  .form-container button {
    padding: 1rem;
    margin-bottom: 10px;
  }
}

.nav-responsive-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
/*# sourceMappingURL=style.css.map */