@charset "UTF-8";
#header {
  background-color: #fff;
  height: 75px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s ease all;
}

#header-logo {
  height: 40px;
  width: 300px;
  background-image: var(--logo-small);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 25px;
  transition: 0.2s ease all;
}

#menu {
  margin-right: 25px;
}
#menu a {
  text-decoration: none;
  font-size: 1em;
  color: var(--color-text);
  margin: 0 1em;
  padding: 0.5em 1em;
  display: inline-block;
  transition: 0.2s ease;
}
#menu a:hover {
  color: var(--color-highlight);
}

.header-light {
  background-color: transparent !important;
  transition: 0.3s ease all;
  box-shadow: none !important;
}
.header-light #header-logo {
  background-image: var(--logo) !important;
  transition: 0.3s ease all;
  height: 100px;
  margin-top: 60px;
}
.header-light #menu a {
  color: #ffffff;
}
.header-light #menu a:hover {
  color: var(--color-highlight);
}

.header-alert {
  top: 50px !important;
}

#menu li {
  display: inline-block;
}

.nav-cta a {
  border-radius: var(--corner-button);
  transition: 0.3s ease all;
  background-color: var(--color-highlight) !important;
  color: #fff !important;
}

.mobile-hamburger {
  display: none;
}

/*------------------------------*/
/*----------MOBILE CSS----------*/
/*------------------------------*/
@media (max-width: 1200px) {
  /*----------HEADER CSS----------*/
  #nav-cta {
    right: 50px;
    width: 2em;
    font-size: 2em;
    padding-left: 0.1em;
    padding-right: 0.1em;
    line-height: 2.5;
    text-align: center;
    color: var(--color-highlight);
  }

  #nav-cta .desktop {
    display: none;
  }

  #page-title {
    background-attachment: initial !important;
  }

  #blog-title {
    background-attachment: initial !important;
  }

  /*----------MOBILE MENU CSS----------*/
  .mobile-hamburger {
    position: absolute;
    right: 15px;
    top: 25px;
    display: block;
    z-index: 15;
  }

  #menu {
    visibility: hidden;
    top: 70px;
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 0;
    padding: 0;
    overflow: hidden;
    transition: 0.2s ease all;
  }
  #menu a {
    font-size: 1.5em;
    margin: 0.5em 1em;
  }

  #menu.mobile-active {
    visibility: visible;
    height: auto;
    padding: 20px 0;
  }

  .menu-wrapper {
    cursor: pointer;
  }

  ul#menu-main-menu {
    display: flex;
    flex-direction: column;
  }

  .hamburger-menu,
.hamburger-menu:after,
.hamburger-menu:before {
    width: 30px;
    height: 3px;
  }

  .hamburger-menu {
    position: relative;
    transform: translateY(8px);
    background: var(--color-highlight);
    transition: all 0ms 300ms;
  }

  .hamburger-menu.animate {
    background: rgba(255, 255, 255, 0);
  }

  .hamburger-menu:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    background: var(--color-highlight);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .hamburger-menu:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    background: var(--color-highlight);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .hamburger-menu.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .hamburger-menu.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}
#footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-bg-accent);
  position: relative;
  margin-top: 200px;
  padding: 50px 0;
  height: auto;
}
#footer img {
  height: 75px;
  width: 75px;
}
#footer h3 {
  color: var(--color-text);
}
#footer .icons {
  display: flex;
  background-color: var(--color-text);
  padding: var(--padding-button);
  border-radius: var(--corner-button);
}
#footer .icons a {
  color: var(--color-bg-accent);
  font-size: 1.5em;
  margin: 0 0.5em;
  transition: 0.2s ease all;
}
#footer .icons a:hover {
  color: var(--color-highlight);
}
#footer .icons a:first-child {
  margin-left: 0;
}
#footer .icons a:last-child {
  margin-right: 0;
}

/*------------------------------*/
/*----------MOBILE CSS----------*/
/*------------------------------*/
@media (max-width: 1000px) {
  #footer {
    height: auto;
    padding-bottom: 40px;
  }

  #footer-blocks {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #footer-blocks li:last-child {
    flex-grow: 1;
  }
}
@media (max-width: 750px) {
  #footer-blocks li {
    width: 100%;
  }
}
.contact-card {
  display: flex;
  border-radius: var(--corner-card);
}
.contact-card .info,
.contact-card .contact {
  width: 50%;
}
.contact-card .info {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  border-radius: var(--corner-card) 0 0 var(--corner-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.contact-card .contact {
  padding: 40px;
}
.contact-card .wpcf7,
.contact-card .form-fields {
  width: 100%;
}

.contact-info {
  display: flex;
  width: 60%;
  margin: 10px 0;
}
.contact-info h3,
.contact-info p,
.contact-info i {
  font-size: 1em;
  font-family: "Inter", sans-serif;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}
.contact-info p {
  line-height: 1.5em;
}
.contact-info i {
  margin-right: 20px;
  font-size: 1.5em;
}
.contact-info a {
  color: var(--color-highlight);
  text-decoration: none;
}
.contact-info h3 {
  margin-bottom: 10px;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=number],
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  width: 95%;
  height: 50px;
  font-size: 1em;
  color: var(--color-text);
  border: none;
  background-color: var(--color-bg-accent);
  padding: 0 2.5%;
  border-radius: calc(var(--corner-card)/2);
  font-family: "Inter";
  transition: 0.2s ease all;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=number]:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  background-color: #d0d0d0;
}

.wpcf7 select {
  font-size: 16px;
  font-family: sans-serif;
  color: var(--color-text);
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  -ms-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

span.wpcf7-list-item {
  margin: 0;
}

label.dropdown {
  position: relative;
}

label.dropdown::after {
  font-family: FontAwesome;
  content: "";
  color: var(--color-text);
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  position: absolute;
  top: 17px;
  right: 20px;
}

.wpcf7 textarea {
  height: 8em;
  padding: 1em 2.5%;
}

.wpcf7 input[type=submit] {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--color-highlight) !important;
  border-radius: var(--corner-button);
  padding: 0.5em 1em;
  color: var(--color-text);
  font-size: 1em;
  width: auto;
  font-weight: 500;
  height: auto;
  transition: 0.2s ease all;
  margin: 1em 0 0 0;
  display: block;
  cursor: pointer;
  -webkit-appearance: none;
}

.wpcf7 input[type=submit]:hover {
  background-color: var(--color-highlight);
  color: #fff;
}

.wpcf7-response-output {
  padding: 1em !important;
  border-radius: calc(var(--corner-card)/2);
  text-align: center;
  border: none !important;
  color: var(--color-bg);
  font-family: "inter";
}

.wpcf7-mail-sent-ok {
  background-color: #467552;
}

.wpcf7-validation-errors {
  background-color: #EF476F;
}

#post-18 {
  display: inline-block !important;
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.full-width-field {
  grid-column-start: 1;
  grid-column-end: -1;
}

.selection-items {
  position: relative;
}

.selection-items input[type=radio] {
  opacity: 0 !important;
  position: absolute;
  width: 0 !important;
}

.selection-items label {
  display: inline-block;
  background-color: var(--color-highlight);
  color: #fff;
  font-size: 16px;
  border-radius: var(--corner-button);
  transition: 0.2s ease all;
  padding: var(--padding-button-small);
  cursor: pointer;
  margin: 5px;
}

@media (max-width: 1000px) {
  .form-info {
    font-size: 0.8em;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .contact-card {
    flex-direction: column;
  }
  .contact-card .info {
    width: 100%;
  }
  .contact-card .contact {
    padding: 5%;
    width: 90%;
  }
  .contact-card .info {
    border-radius: var(--corner-card) var(--corner-card) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .contact-card .wpcf7,
.contact-card .form-fields {
    width: 100%;
  }

  .contact-info {
    width: 90%;
  }
  .contact-info i {
    font-size: 1em;
  }
}
.modalHeader {
  color: var(--color-text);
}

.modal {
  position: fixed;
  z-index: 150;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  color: #0e0e0e;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2em;
  max-width: 600px;
  min-width: 600px;
  margin: 0 20px;
  height: auto;
  max-height: 70vh;
  overflow: scroll;
  border-radius: calc(var(--corner-card) * 2);
}
.modal-content h2 {
  margin-top: 0;
}

.close-button {
  float: right;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5em;
  background-color: lightgray;
}

.close-button:hover {
  background-color: darkgray;
}

.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modal-content iframe {
  border-radius: var(--corner-card);
}

.address-item {
  padding: 20px 0;
}
.address-item p, .address-item a {
  margin: 0;
}
.address-item a {
  color: var(--color-highlight);
}
.address-item:nth-child(2) {
  border-top: 1px solid var(--color-bg-accent);
}

.address-item:not(:first-of-type) {
  border-top: 1px solid var(--color-bg-accent);
}

.modalHours .modal-content {
  min-width: auto;
}
.modalHours p.message {
  color: var(--color-highlight);
  border: 2px solid var(--color-highlight);
  border-radius: calc(var(--corner-card)/2);
  padding: 0.5em;
  max-width: 400px;
  line-height: 1.5em;
}
.modalHours .cta {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid var(--color-bg-accent);
  text-align: center;
}

.hours li {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0.25em 0.5em;
  border-radius: calc(var(--corner-card)/2);
}
.hours li:nth-child(odd) {
  background-color: var(--color-bg-accent);
}
.hours li p {
  margin: 0;
}
.hours li p:first-child {
  font-family: "basier_circlebold";
}

@media (max-width: 800px) {
  .modal-content {
    min-width: 0;
    margin: 0;
    width: 80%;
    max-height: 85vh;
    padding: 20px;
  }

  .modalHeader {
    max-width: 85%;
  }
}
body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
}

#content {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding: 50px 0;
}

.content-center {
  text-align: center;
}

ul {
  margin: 0;
  padding: 0;
}

.card {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: var(--corner-card);
}

.button {
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--corner-button);
  padding: var(--padding-button);
  font-weight: 500;
  transition: 0.2s ease all;
  display: inline-block;
}

.button:hover {
  background-color: var(--color-highlight);
  color: #fff;
}

.outline {
  border: 2px solid var(--color-highlight);
}

.solid {
  background-color: var(--color-highlight);
  color: #ffffff;
  border: 2px solid var(--color-highlight);
}

.entry-content a.button {
  color: #fff;
}

.solid::after,
.nav-cta a::after {
  content: "";
  font-family: unicons;
  font-style: normal;
  margin-left: -1em;
  opacity: 0;
  transition: 0.2s ease all;
}

.solid:hover::after,
.nav-cta a:hover::after {
  margin-left: 0;
  opacity: 1;
}

.margin-tb-wrapper {
  margin-top: 150px;
  margin-bottom: 150px;
}

#page-title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 500px;
  color: #fff;
  font-weight: bold;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}
#page-title h1 {
  margin: 0;
  color: #fff;
  font-size: 5em;
  text-align: center;
}
#page-title a {
  margin-top: 1em;
  color: #fff;
}

.page-overlay .contact-card,
.page-overlay article {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  z-index: 5;
  position: relative;
  margin-top: -300px;
  background-color: var(--color-bg);
}
.page-overlay .contact-card section,
.page-overlay article section {
  padding: 50px 100px;
}
.page-overlay h1 {
  margin: 1em 0;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--color-bg-accent);
}

#alert {
  background-color: var(--color-highlight);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
}
#alert h3,
#alert p,
#alert a {
  color: #fff;
  margin: 0 10px;
}
#alert h3 {
  font-size: 1.2em;
}
#alert p,
#alert a {
  font-size: 1em;
}
#alert a {
  text-decoration: underline;
  cursor: pointer;
}

.banner {
  width: 100%;
  height: 50px;
}

.service-map {
  border-radius: var(--corner-card);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  border: none;
}

.divider {
  height: 50px;
  width: 100%;
  margin: 100px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.15;
}

.not-found {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--color-bg-accent);
  margin-bottom: 50px;
}

.error {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  width: 80%;
  max-width: 400px;
  margin: auto;
}

#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
#hero svg {
  position: absolute;
  bottom: 0;
  fill: var(--color-bg);
  height: 65px;
}
#hero h1 {
  color: #fff;
  font-size: 115px;
  margin-bottom: 25px;
  text-align: center;
  max-width: 85%;
  text-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
}
#hero a {
  font-size: 1.3em;
}

.flavors {
  display: flex;
  flex-wrap: wrap;
}
.flavors li.flavor {
  list-style: none;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 20px;
  border-radius: var(--corner-card);
  flex-grow: 1;
  margin: 10px;
}
.flavors li.flavor h3 {
  font-size: 20px;
  margin: 0;
}
.flavors li.flavor p {
  margin: 0;
  color: var(--color-highlight);
}
.flavors li.flavor .flavor-image {
  height: 80px;
  width: 80px;
  min-width: 80px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-right: 20px;
}

.all-flavors {
  display: flex;
  flex-wrap: wrap;
}
.all-flavors p,
.all-flavors h3 {
  margin: 0;
}
.all-flavors .flavor-wrapper {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.all-flavors .flavor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  font-family: "basier_circlemedium";
  font-weight: 500;
  border-bottom: 2px solid var(--color-bg-accent);
}
.all-flavors .flavor-header h4 {
  font-size: 15px;
  margin: 0;
}
.all-flavors .flavor-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1em;
}
.all-flavors h3 {
  font-size: 20px;
  margin: 0;
  color: var(--color-highlight);
}
.all-flavors p {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.page-template-page-flavors .entry-content {
  text-align: center;
}

.allergy {
  background-color: var(--color-secondary);
  border-radius: var(--corner-button);
  color: #fff;
  padding: 0.2em 0.7em;
  display: flex;
  align-items: center;
  margin-top: 5px;
  line-height: 1;
  box-sizing: border-box;
}
.allergy::before {
  content: "";
  font-family: unicons;
  font-style: normal;
  font-weight: 400;
  margin-right: 5px;
  font-size: 20px;
}

.accordion {
  background-color: transparent;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  border-top: 2px solid var(--color-bg-accent);
  text-align: left;
  outline: none;
  font-size: 1.5em;
  display: flex;
  justify-content: space-between;
}
.accordion:last-child {
  border-bottom: 3px solid var(--color-bg-accent);
}
.accordion:hover {
  color: var(--color-highlight);
}

.accordion,
.accordion i {
  transition: 0.4s;
}

.accordion-active {
  margin-bottom: 0;
  border-bottom: 3px solid var(--color-highlight);
  color: var(--color-highlight) !important;
}
.accordion-active i {
  transform: rotate(45deg);
}

.panel {
  width: 100%;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.flavors-header {
  display: flex;
  flex-direction: column;
}

.featured-date {
  color: var(--color-highlight);
  border: 3px solid var(--color-highlight);
  border-radius: var(--corner-button);
  padding: var(--padding-button);
  margin: auto;
  font-family: "basier_circlebold", sans-serif;
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 150px 0;
}
.about h2 {
  color: var(--color-text);
  margin-top: 0;
}
.about .about-paragraph {
  max-width: 650px;
}
.about .about-image {
  height: 350px;
  width: 500px;
  background-size: cover;
  background-position: center;
  border-radius: var(--corner-card);
  margin-right: 40px;
}

/*------------------------------*/
/*----------MOBILE CSS----------*/
/*------------------------------*/
@media (max-width: 1200px) {
  #hero {
    height: 700px;
  }

  .header-top {
    flex-direction: column;
  }
  .header-top h1 {
    text-align: center;
  }
}
@media (max-width: 1000px) {
  #hero h1 {
    font-size: 75px;
  }

  #alert h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
  }
  #alert p {
    display: none;
  }
}
@media (max-width: 800px) {
  .about {
    flex-direction: column;
  }
  .about .about-image {
    height: 300px;
    width: 100%;
    margin: 0 0 30px 0;
  }
}
@media (max-width: 600px) {
  #hero h1 {
    font-size: 60px;
    margin-bottom: 1.5em;
  }
  #hero svg {
    height: 40px;
  }

  .margin-tb-wrapper {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  [data-aos=reveal-right].aos-animate {
    width: 100% !important;
  }

  .hero-contact-heading h2 {
    font-size: 1.2em;
  }

  .divider {
    margin: 50px 0;
  }

  .page-overlay article section {
    padding: 5px 25px;
  }

  .accordion {
    padding: 10px;
    font-size: 20px;
  }

  .all-flavors .flavor-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .allergy {
    border-radius: var(--corner-card);
    padding: 0.7em 0.7em;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
@font-face {
  font-family: "basier_circleregular";
  src: url("/wp-content/themes/Chocolate Chip/fonts/basiercircle-regular-webfont.eot");
  src: url("/wp-content/themes/Chocolate Chip/fonts//basiercircle-regular-webfont.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/Chocolate Chip/fonts//basiercircle-regular-webfont.woff2") format("woff2"), url("/wp-content/themes/Chocolate Chip/fonts//basiercircle-regular-webfont.woff") format("woff"), url("/wp-content/themes/Chocolate Chip/fonts//basiercircle-regular-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "basier_circlebold";
  src: url("/wp-content/themes/Chocolate Chip/fonts/basiercircle-bold-webfont.eot");
  src: url("/wp-content/themes/Chocolate Chip/fonts/basiercircle-bold-webfont.eot?#iefix") format("embedded-opentype"), url("/wp-content/themes/Chocolate Chip/fonts/basiercircle-bold-webfont.woff2") format("woff2"), url("/wp-content/themes/Chocolate Chip/fonts/basiercircle-bold-webfont.woff") format("woff"), url("/wp-content/themes/Chocolate Chip/fonts/basiercircle-bold-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "basier_circlemedium";
  src: url("/wp-content/themes/Chocolate Chip/fonts/basiercircle-medium-webfont.woff2") format("woff2"), url("/wp-content/themes/Chocolate Chip/fonts/basiercircle-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
h1,
h2,
a,
.menu-item a,
.accordion {
  font-family: "basier_circlebold";
  font-weight: 500;
  font-style: normal;
  color: var(--color-text);
}

h3,
h4 {
  font-family: "basier_circlemedium";
  font-weight: 500;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 2em;
}

h4 {
  font-size: 1.5em;
}

p {
  font-size: 1.1em;
  line-height: 1.8em;
  margin: 2em 0;
}

ul ul {
  margin-left: 1em;
}

a {
  cursor: pointer;
}

p,
cite,
figcaption,
blockquote,
label,
ul,
li {
  font-family: "basier_circleregular", sans-serif;
  color: var(--color-text);
  font-weight: 300;
}

.entry-content a {
  color: var(--color-highlight);
}

.heading-lg {
  font-size: 40pt;
  margin: 150px 0 50px 0;
}

.subhead {
  font-size: 3em;
  text-align: center;
}

blockquote {
  background-color: var(--color-bg-accent);
  padding: 1em 2em;
  border-radius: var(--corner-card);
}

/*------------------------------*/
/*----------MOBILE CSS----------*/
/*------------------------------*/
@media (max-width: 1000px) {
  .heading-lg {
    font-size: 30pt;
    text-align: center;
    margin: 1em 0;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.5em;
  }

  h4 {
    font-size: 1.3em;
  }

  p {
    font-size: 1.2em;
  }
}

/*# sourceMappingURL=style.css.map */
