/* RESET / NORMALIZE */
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;
  font-weight: normal;
  vertical-align: baseline;
  color: #252424;
}

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

/* BASE TYPOGRAPHY */
html {
  font-size: 10px; /* 1rem = 10px for easier math */
} 

b {
    font-weight: bold;
}

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1.6rem;
  line-height: 1.5;
  color: #343A40;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "pnum";
  font-variant-numeric: proportional-nums;
}

/* LINKS */
a {
  color: cadetblue;
  font-size: inherit;
  text-decoration: none;
  font-family: "Avenir Next Heavy", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

.big {
    font-size: 2.5rem;
}

.centered {
    text-align: center;
}

div {
  color: #343A40;
}

.green {
    color: darkseagreen;

}
.grower {
    transition: transform 0.5s ease;
}

.grower:hover {
    transform: scale(1.05);
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: "Avenir Next Heavy", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  color: #343A40;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 1rem;
}

h1 { font-size: 4.4rem; 
    margin-bottom: 5px;}
h2 { font-size: 3rem; }
h3 { font-size: 2.4rem; }
h5 { font-size: 4.4rem; }
h6 { font-size: 1.7rem; 
    font-style: italic; 
}

/* CONTAINERS */
.container {
  max-width: 99%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.2;
  display: block;
  align-items: center;
}

@media (min-width: 1300px) {
  .container {
    max-width: 703px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.2;
  }
}

/* UTILITIES */
hr {
  margin: 6rem auto 2.5rem;
  width: 303px;
  border: none;
  border-top: 1px solid #ccc;
}

.hide-mobile {
  display: none;
}

@media (min-width: 600px) {
  .hide-mobile {
    display: block;
  }
}

i {
  font-family: "Lato";
  font-style: italic;
  font-weight: normal;
}

.lesson-table {
  font-family: "Avenir Next Heavy", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  font-style: italic; 
  font-size: 2rem;
  color:#343A40;
  margin-top: 6rem;
  margin-bottom: 6rem;
  margin-left: auto;
  margin-right: auto;
}

.no-margin {
    margin: 0;
}

p {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.padded {
    padding: 1rem;
}

.phone-icon {
    margin-right: 12px;
    display: inline-block;
    width: 20px;
    height: 43px;
    background-color: rgb(52, 58, 64);
    border-radius: 3px;
    transform: rotate(15deg) translateY(14px);
}

/* IMAGES */
.responsive-image {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.regular {
  font-style: normal;;
}

.row {
    display: flex;
    flex-direction: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-bottom: 10px;
}

section {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.spacer {
    padding-top: 33px;
}

.special-subtitle {
right: 51px;
top: 5px;
position: relative;
margin-bottom: 20px;
text-align: right;
}


summary::marker {
    content: none;
}

summary {
    cursor: pointer;
    padding: 3rem;
    color: floralwhite;
    font-weight: bold;
    font-style: italic;
    font-size: 2rem;
    text-align: center;
    background-color: cadetblue;
    border: 1px solid cadetblue;
}

.testimonial {
    padding: 3rem;
    font-style: italic;;
    color: #343A40;
    font-size: 2rem;
}


ul li::before {
    content: "🎵"; /* or "\266B" for ♪ */
    margin-right: 0.5em;
  }
  
ol, ul {
  padding-left: 0;
  margin: 0 0 2rem 0;
  list-style: none;
}


.video-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 100%;
}

@media (max-width: 600px) {
    .video-container {
        max-width: 100%;
        height: auto;
    }
}

.white {
    color: white;
}