.pattern-sprinkle {
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0px;
    right: 0;
}

#blobs {
    display: none;
}


.price-card {
    color: var(--very-dark-grey);
    background-size: 100% 100%;
    display: flex;
    padding: 50px;

    margin: auto;
    background-color: var(--off-white);
    background-image: url("../../images/price_card_primary.svg");
}


.price-card ul {
    padding: 0;
}


.price-card.invert {
    background-color: var(--off-white);
    background-image: url("../../images/price_card_secondary.svg");
}

.price-card ul {
  list-style: none;
}

.price-card ul li:before {
  content: '✓';
}

.price-card div {
    width: fit-content;
    margin: auto;
}

.about-pic {
    border: 20px solid var(--primary);
    border-radius: 50%;
    max-height: 400px;
}

.about p {
    margin-bottom: 60px;
}

.contact input {
    width: 100%;
}

.contact textarea {
    width: 95%;
}

.blurred {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.grammar-lib a {
    color: var(--very-dark-grey);
    text-decoration: none;
    text-transform: capitalize;
}

.feature-nav-card {
    width: 160px;
    height: 160px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 15px;
    border: 1.5px solid #a8c8e8;
    box-sizing: border-box;
    justify-content: center;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.feature-nav-card:hover {
    border-color: #4a90c4;
    box-shadow: 0 2px 8px rgba(74, 144, 196, 0.2);
}

.grammar-lib a div:hover {
    background-color: var(--light-primary);
    color: white;
}

.grammar-lib a div:hover div span{
    color: white !important;
}

.grammar-lib a div span {
    text-transform: capitalize;
}

.grammar-lib a {
    flex-grow: 1;
    /*min-width: 50%;*/
    flex-basis: 45%;
}

.grammar-lib a div div span, .grammar-lib a div span{
    white-space:nowrap;
    overflow: hidden;
}

section#lesson table {
  border-collapse: collapse;
  width: 100%;
}

section#lesson table td, section#lesson table th {
  border: 1px solid #ddd;
  padding: 8px;
}

section#lesson table tr:nth-child(even){
    background-color: #f2f2f2;
}

section#lesson table tr:hover {
    background-color: #ddd;
}

section#lesson table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--primary);
  color: white;
}

#knowledge hr {
    border: 0;
    color: hsl(210, 8%, 85%);
    background-color: hsl(210, 8%, 85%);
    height: 1px;
    margin-bottom: 1.1em;
}

#knowledge blockquote {
    position: relative;
    margin: 0 1em 0 1em;
    color: hsl(210, 8%, 35%);
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 40px;
}

#knowledge blockquote::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  border-radius: 8px;
  background: hsl(210, 8%, 80%);
}

#knowledge blockquote ol, #knowledge blockquote ul {
    padding: 0;
}

@media only screen and (max-width: 600px) {
}

@media only screen and (max-width: 700px) {
}

@media only screen and (max-width: 900px) {
}

@media only screen and (max-width: 1200px) and (min-width: 800px) {
    .lesson-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 1200px) {
    .lesson-grid {
        grid-template-columns: 3fr 1fr 1fr;
    }
}
