:root {
	--primary: #8b8561;
	--primaryLight: #f1eeda;
	--secondary: #f8b943;
	--third: #565454;
	--font: #565454;
    --h1: calc(2rem + 2vw);
    --h2: calc(1.3rem + 1vw);
    --h3: calc(1rem + 0.6vw);
    --p: calc(1rem + 0.5vw);
    --m-h1: 1.75rem;
    --border: 20px;
    --max: 1500px;
}
* {
    /*border: solid red 1px !important;*/
}
* {
    font-family: arial;
    font-size: 16px;
    margin: 0 auto;
    padding: 0;
    max-width: 100vw;
    position: relative;
    box-sizing: border-box;
}
body {
    max-width: 1500px;
    background-color: var(--primaryLight);
}

li {
	list-style: none;
}
a {
    border: none;
	text-decoration: none;
    color: var(--font);
}
h1, p, h2, h3 {
    color: var(--font);
}
h1 {
    font-size: var(--h1);
}
h2 {
    font-size: var(--h2);
}
h3 {
    font-size: var(--h3);
}
p {
    font-size: var(--p);
}
.button {
    border-radius: 30px;
    background-color: var(--secondary);
    font-weight: 600;
    padding: 5px 17px;
    width: auto;
    height: auto;
    color: var(--font);
    font-size: 1.5rem;
    text-align: center;
}
.button:hover {
    transform: scale(1.05);
}
.flare {
    background-color: var(--secondary);
    width: 25vw;
    max-width: 320px;
    height: 1.5px;
}
.circle {
    width: 20vw;
    height: 20vw;
    max-width: 150px;
    max-height: 150px;
    border: 1.5px solid var(--secondary);
    border-radius: 50%;
}
.header-flare {
    width: 80vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
}
 /*     ---------------------------------------
        ---------------------------------------
        ---------------------------------------
        ----------MOBILE iPhone/ONLY-----------
        ---------------------------------------
        ---------------------------------------
        ---------------------------------------  */
@media only screen and (min-width: 0rem) {
#landing {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    row-gap: 4vw;
    background-color: #fff;
    padding: 20px 0 50px 0;
}
#landing h1 {
    text-align: center;
    font-size: var(--m-h1);
}
#landing .landing-p1 {
    width: 85vw;
}
#landing .pic1 {
    clip-path: circle(48% at 75% 64%);
    margin: -15px 0 10px -55px;
    width: 80vw;
    height: auto;
}
#landing .img1 {
    width: 100%;
    object-position: 40px 30px;
    max-width: 736px;
    border-radius: 0;
    margin-right: 0;
    border: 7px solid var(--secondary);
}
#landing ul {
    padding-left: 30px;
    color: var(--font);
}
#landing li {
    list-style: inherit;
    font-size: var(--p);
}
#landing .landing-p2 {
    width: 85vw;
    max-width: 1275px;
}
#landing .pic2 {
    width: 45vw;
    height: 45vw;
    overflow: hidden;
    border-radius: 50%;
    border: solid var(--secondary) 3px;
}
#landing .img2 {
    object-fit: cover;
    object-position: 0 -45px;
    width: 100%;
    height: auto;
}
#landing #circles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    margin: 20px 0 20px 20px;
}
#landing .span-circles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#landing .top-c {
    margin: -40% 0 0 20%;
    overflow: hidden;
    z-index: 1;
    border: solid var(--secondary) 2px;
}
#landing .bottom-c {
    margin: 0 0 -40% -20%;
    overflow: hidden;
    border: solid var(--secondary) 2px;
}
#landing .span-circles img {
    width: 100%;
    height: auto;
}
#landing .span-circles .top-c-img {
    object-position: 0 -20px;
}
#landing .span-circles .bottom-c-img {
    object-position: 3px 0;
}
#landing .landing-button-container {
    width: 90vw;
    display: flex;
    justify-content: center;
}
#landing .button {
}
#cards {
    border: none;
    background-color: #fff;
    max-width: var(--max);
    padding: 7vw 2vw;
    margin: 0 auto;
}
#cards ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    row-gap: 100px;
    column-gap: 30px;
    margin-top: 50px;
}
#cards li {
    background-color: var(--primaryLight);
    width: 85vw;
    max-width: 340px;
    padding: 0 20px;
    border-radius: 20px;
}
#cards li a {
    display: flex;
    flex-direction: column;
}
#cards li a div {
    height: 88vw;
    max-height: 330px;
    margin-top: -55px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
#cards li:hover {
    transform: scale(1.05);
    transition: .5s;
}
#cards picture {
    position: relative;
    top: -55px;
    width: 55%;
    max-width: 165px;
    height: auto;
}
#cards img {
    width: 100%;
    border-radius: 20px;
}
#cards strong {
    font-size: 1.25rem;
    color: #000;
}
#cards p {
    font-size: 1rem;
    color: #000;
}
#cards span {
    font-size: 1.15rem;
    color: #000;
    background-color: var(--primary);
    padding: 3px 15px;
    border-radius: 50px;
    text-decoration: underline;
}
#about {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    padding: 0 7.5vw;
    margin: 30px 0;
}
#about .header-flare h1 {
    color: #000;
    font-size: var(--m-h1);
}
#about picture {
    width: 75vw;
    height: auto;
    margin-top: 30px;
}
#about img {
    width: 100%;
    height: auto;
    border-radius: var(--border);
}
#about p {
    margin-top: 30px;
    width: 85vw;
    color: #000;    
}
#about .button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
}
#map {
    background-color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
}
#map h1 {
    font-size: var(--m-h1);
}
#map img {
    width: 75vw;
    height: auto;
}
#reviews {
    background-color: #fff;
    padding: 30px;
}
#reviews .flare {
    width: 17vw;
}
#reviews h1 {
    font-size: var(--m-h1);
}
#reviews ul {
    display: flex;
    flex-flow: row wrap;
    column-gap: 30px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}
#reviews li {
    width: clamp(265px, 28%, 340px);
    background-color: #f5f5f5;
    margin: 30px 0 20px 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--border);
}
#reviews p {
    font-size: 1.1rem;
    color: #000;
    margin: 15px 0;
}
#reviews li span {
    font-size: 1.3rem;
    color: #000;
}



#footer {
    display: flex;
    flex-direction: column;
    grid-column-gap: 0;
    border: none;
    background-color: var(--primary);
    align-items: center;
    justify-content: center;
}
#footer ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
    padding: 15px 0;
}
#footer li {
    font-size: 1.1rem;
}
#footer a {
    color: black;
    font-size: 1.1rem;
}
#footer p {
    color: black;
    font-size: 1.1rem;
    padding-bottom: 30px;
    width: 80%;
}
#footer img {
    width: 25vw;
}
#footer #footer-button:hover {
    transform: scale(1.05);
}
#footer .links:hover {
    color: var(--secondary);
}

/*   ------------------------------
     ------ About Us ---------------
    ------------------------------*/
#about-page #about-bio {
    max-width: 1500px;
    background-color: white;
    margin-top: 30px;
    padding: 30px 30px 0 30px;
}
#about-page #about-bio #about-bio-content
 .button {
    display: block;
    width: fit-content;
    margin: 30px auto;
}
#about-page .about-bio1 {
    margin-top: 30px;
}
#about-page #about-bio .flare {
    width: 18vw;
}
#about-page #about-bio-content {
    max-width: 1500px;
}
#about-page #about-bio .about-bio-pic1 {
    float: right;
    margin: 30px 0 20px 30px;
    width: 30vw;
    height: auto;
    max-width: 450px;
}
#about-page #about-bio .about-bio-pic1 img {
    border-radius: var(--border);
    width: 100%;
    height: auto;
}
#about-page #about-bio p {
    margin-top: 30px;
}
#about-page #about-bio .about-bio2 {
    margin-top: 30px;
}
#about-page #about-bio .about-bio2 .flare {
    width: 13vw;
}
#about-page #about-bio ul {
    display: flex;
    flex-flow: row wrap;
    column-gap: 30px;
    align-items: center;
    justify-content: center;
}
#about-page #about-bio .about-cards li {
    width: clamp(265px, 28%, 340px);
    background-color: var(--primary);
    margin: 30px 0 20px 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--border);
}
#about-page #about-bio .about-cards li:hover {
    transform: scale(1.05);
    transition: .5s;
}
#about-page #about-bio .about-cards li img {
    width: 18%;
    margin-bottom: 10px;
}
#about-page #about-bio .about-cards
 li:nth-child(3) img {
    width: 21.5%;
 }
#about-page #about-bio .about-cards li p {
    color: #000;
}
#about-page #about-bio .about-cards li h3 {
    color: #000;
}
#about-page #testimonials {
    max-width: 1500px;
    clear: right;
    background-color: #fff;
    padding: 30px;
}
#about-page #testimonials .flare {
    width: 9vw;
}
#about-page #testimonials ul {
    display: flex;
    flex-flow: row wrap;
    column-gap: 30px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}
#about-page #testimonials li {
    width: clamp(265px, 28%, 340px);
    background-color: #f5f5f5;
    margin: 30px 0 20px 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--border);
}
#about-page #testimonials p {
    font-size: 1.1rem;
    color: #000;
    margin: 15px 0;
}
#about-page #testimonials li span {
    font-size: 1.3rem;
    color: #000;
}

/*   ------------------------------
     ------ READING ---------------
    ------------------------------*/
.read-math-ul {
    width: 90vw;
    padding: 0 20px;
}
.read-math-ul li {
    list-style: inherit;
    padding: 0 0 5px 0;
    font-size: var(--p);
    margin-left: 30px;
}
.read-math-ul .li-header {
    list-style: none;
    font-size: var(--p);
    color: #000;
    font-weight: 600;
    margin: 0;
}
.read-math-pic2 {
    margin: 0;
    width: 45vw;
}
.read-math-img2 {
    width: 100%;
    max-width: 420px;
    border-radius: 50%;
    object-position: 40px 0;
}
.read-math-p2 {
    padding: 30px;
    color: #000;
}
.read-math-p2 .contact-link {
    font-weight: 600;
    font-size: var(--p);
    cursor: pointer;
    background-color: var(--secondary);
    padding: 1px 7px;
    border-radius: 30px;
    white-space: nowrap;
}
.span-circles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.span-circles .top-c {
    margin: -40% 0 0 20%;
}
.span-circles .bottom-c {
    margin: 0 0 -40% -20%;
}

 /*        --------------------------------------
            ----- MATH PAGES-------
         --------------------------------------  */ 
.math-button {
    width: 325px;
    height: 65px;
}
.reading-button .early-ele-math {
    width: 30%;
    height: 85%;
    left: 1%;
    background-color: #fff;
}
.reading-button .upper-ele-math {
    width: 30%;
    height: 85%;
    left: 36%;
    background-color: var(--secondary);
    opacity: 0.25;
}
.reading-button .secondary-math {
    width: 30%;
    height: 85%;
    left: 69%;
    background-color: var(--secondary);
    opacity: 0.25;
    padding-top: 2.5%;
}
.open-upper .early-ele-math {
    background-color: var(--secondary);
    opacity: 0.25;
}
.open-upper .upper-ele-math {
    background-color: #fff;
    opacity: 1;
}
.open-secondary .early-ele-math {
    background-color: var(--secondary);
    opacity: 0.25;
}
.open-secondary .upper-ele-math {
    background-color: var(--secondary);
    opacity: 0.25;
}
.open-secondary .secondary-math {
    background-color: #fff;
    opacity: 1;
}

 /*        --------------------------------------
            ----- thank you PAGES-------
         --------------------------------------  */ 
#thank-you {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80vw;
    max-width: 375px;
    border-radius: 20px;
    border: .8px solid var(--primary);
    margin: 50px auto;
    padding: 30px;
}
#thank-you picture {
    background-color: rgba(241, 238, 218, 0.45);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}
#thank-you .thanks-checkmark {
    width: 30px;
}
#thank-you h1 {
    font-size: var(--h2Font);
}
#thank-you p {
    font-size: var(--pFont2);
    text-align: center;
}
#thank-you .mail-response {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    column-gap: ;
}
#thank-you .mail-response img {
    height: var(--pFont2);
}
#thank-you .mail-response span {
    font-size: var(--pFont2);
}
#thank-you .button {
    font-size: var(--pFont);
    margin-top: 30px;
}



}

 /*     ---------------------------------------
        ---------------------------------------
        ---------------------------------------
        --------MOBILE iPAD/only (772px)-------
        ---------------------------------------
        ---------------------------------------
        ---------------------------------------  */
@media only screen and (min-width: 48.3rem) {
#landing {
    padding: 4vw 0 4vw 0;
}
#landing h1 {
    font-size: var(--h1);
}
#landing .landing-p1 {
    width: 45vw;
    padding: 0;
    max-width: 560px;
}
#landing .pic1 {
    display: block;
    margin: 0;
    width: 40vw;
    max-width: 600px;
    position: relative;
    left: -11vw;
}
#landing .img1 {
    width: 100%;
    overflow: hidden;
}
#landing #circles {
    margin-bottom: 30px;
}
#landing .pic2 {
    width: 35vw;
    height: 35vw;
    max-width: 450px;
    max-height: 450px;
}
#landing .img2 {
    object-position: 0 -55px;
}
#landing .top-c {
    max-width: 225px;
    max-height: 225px;
}
#landing .bottom-c {
    max-width: 225px;
    max-height: 225px;
}
#cards ul {
    justify-content: space-evenly;
    column-gap: 0;
}
#cards li {
    width: 35vw;
}
@media only screen and (min-width: 938px) {
    #cards ul {
        column-gap: 30px;
    }
    #cards li {
        width: 29vw;
    }
}
#about {
    display: inherit;
}
#about .header-flare h1 {
    font-size: var(--h1);
}
#about picture {
    float: left;
    width: 25vw;
    max-width: 375px;
    margin: 30px 30px 20px 0;
}
#map h1 {
    font-size: var(--h1);
}
#reviews h1 {
    font-size: var(--h1);
}

#footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
}
#footer ul {
    row-gap: 10px;
    padding: 30px 0;
}
#footer li {
    font-size: 1rem;
}
#footer a {
    font-size: 1rem;
}
#footer p {
    font-size: 1rem;
    padding: 15px 0;
}
#footer img {
    width: 10vw;
}


 /*        --------------------------------------
            ----- READING PAGES-------
         --------------------------------------  */   
.read-math-ul {
    width: 60vw;
    max-width: 900px;
}
.read-math-ul .li-header {
    margin: 0;
}
.read-math-pic2 {
    margin: auto;
    width: 28vw;
    max-width: 420px;
}


}


 /*     ---------------------------------------
        ---------------------------------------
        ---------------------------------------
        -----------DESKTOP/LAPTOP--------------
        ---------------------------------------
        ---------------------------------------
        ---------------------------------------  */
@media only screen and (min-width: 64rem) {

#map {
    clear: left;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: white;
    max-width: 1500px;
    margin: 0 auto;
}
#map p {
    width: 45vw;
    max-width: 655px;
    margin: 35px 0;
    padding-right: 30px;
}
#map img {
    width: 45vw;
    max-width: 675px;
    margin: 30px 0;
}
#footer {
    padding: 0 10vw;
    max-width: 1500px;
}

.read-math-p2 {
    padding: 30px 10vw;
}

}



