@font-face {
    font-family: 'montserratregular';
    src: url('montserrat-regular.eot');
    src: url('montserrat-regular.eot?#iefix') format('embedded-opentype'),
         url('montserrat-regular.woff2') format('woff2'),
         url('montserrat-regular.woff') format('woff'),
         url('montserrat-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

.content {
    padding: 0;
}

.introImage {
    width: 50%;
}

.children {
    font-size: 25px;
}

.container {
    display: flex;
}




@keyframes fadeInAndOut {
    0% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    66% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }

}

#images img:nth-of-type(1) {
    animation-delay: 10s;
  }
#images img:nth-of-type(2) {
    animation-delay: 5s;
  }
#images img:nth-of-type(3) {
    animation-delay: 0s;
  }

#images {
    position: relative;
	height: 100vh;
}


.slide {
    height: auto;
	width: 100%;
    position: absolute;
    -webkit-transition: opacity 5s ease-in-out;
    -moz-transition: opacity 5s ease-in-out;
    -o-transition: opacity 5s ease-in-out;
    transition: opacity 5s ease-in-out;

	animation-name: fadeInAndOut;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 10s;
	animation-direction: alternate;

	top:50%;
	left:50%;
	transform:translate(-50%,-50%);

	border: 0px solid transparent;


}



.kidsPar {
    position: relative;
    left: 5%;
    font-size: 20px;
    word-spacing: 5px;
    line-height: 30px;
    width: 95%;
    color: white;
}

.kidsImg {
    width: 50%;
}

.bannerHeading {
    font-family: "montserratregular";
    position: relative;
    top: -210px;
    left: 75px;
    color: #8bc53f;
}

.question {
    margin-top: 10%;
    font-size: 30px;
}

.q {
    color: #00a69c;
}

.a {
    color: #8bc53f;
}

.banner2 {
    position: relative;
    width: 100vw;
    background-color: #8bc53f;
    padding: 50px;
}

.quoteLeft {
    position: relative;
    margin: 0 auto;
    width: 65px;
    height: auto;
}
.quoteRight {
    position: relative;
    margin: 0 auto;
    width: 65px;
    height: auto;
    left: 80%;
}

.banner3 {
    width: 100vw;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.69);
    /* margin-top: -35px; */
    height: 45vh;
    padding: 20px 0 0 0;
}

.banner3Content {
    position: relative;
    margin: auto 0;
    color: white;
    font-size: 25px;
}

hr {
    width: 15%;
    color: black;
}

.learnMore {
    border-radius: 20px;
    width: 200px;
    border: 0;
    height: 50px;
    background-color: #8bc53f;
}

.learnMore a {
    color: white;
    text-decoration: none;
    font-family: "monsterregular";
    font-weight: 1000;
}


@media screen and (max-width: 600px) {
    .kidsPar {
        font-size: 15px;
    }
}

@media screen and (orientation: landscape) and (max-width: 1000px) {
    .banner3 {
        height: 90vh;
    }
}