@font-face {
  font-family: Quicksand variablefont wght;
  src: url('../fonts/Quicksand-VariableFont_wght.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Font awesome 5 free 400";
  src: url('../fonts/Font-Awesome-5-Free-Regular-400.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Font awesome 5 free solid 900";
  src: url('../fonts/Font-Awesome-5-Free-Solid-900.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: "Font awesome 5 brands 400";
  src: url('../fonts/Font-Awesome-5-Brands-Regular-400.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Moon;
  src: url('../fonts/Moon-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Moon;
  src: url('../fonts/Moon-Bold.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --rosy-brown: #be91a6;
  --medium-violet-red: #85536b;
  --black: black;
  --honeydew: #c8ded5;
  --text-colour: #4e4e4e;
  --white: white;
  --deep-sky-blue: #53b1d5;
  --goldenrod: #ecae3c;
}

body {
  padding-left: 0;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

h1 {
  color: var(--rosy-brown);
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Moon, sans-serif;
  font-size: 300%;
  font-weight: 300;
  line-height: 150%;
}

h2 {
  color: var(--medium-violet-red);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Moon, sans-serif;
  font-size: 175%;
  font-weight: 300;
  line-height: 150%;
}

h3 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 1vw;
  font-family: Quicksand variablefont wght, sans-serif;
  font-size: 125%;
  font-weight: 400;
  line-height: 1.4;
}

h4 {
  color: #c860db;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 125%;
  font-weight: 400;
  line-height: 1.2;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 100%;
  font-weight: 500;
  line-height: 1.2;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 95%;
}

a {
  color: #222;
  font-size: 100%;
  line-height: 1.4;
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 3px solid #ebebeb;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 150%;
  line-height: 1.6em;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 80px;
}

.footer {
  background-color: var(--honeydew);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  padding: 2rem;
  display: flex;
}

.white {
  color: #fff;
}

.centre {
  text-align: center;
}

.right {
  text-align: right;
}

.sp1 {
  width: 100%;
  height: 1rem;
}

.sp2 {
  width: 100%;
  height: 2vw;
}

.sp3 {
  height: 3vw;
}

.style-colour-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.colour-box {
  background-color: var(--text-colour);
  justify-content: center;
  align-items: center;
  width: 22%;
  height: 140px;
  display: flex;
}

.colour-box.primary-colour {
  background-color: #30c99d;
}

.colour-box.secondary-colour {
  background-color: #d85aa1;
}

.colour-box.third-colour {
  background-color: #afdf8f;
}

.link {
  color: #2074e1;
  font-weight: 500;
  transition: color .45s;
}

.link:hover {
  color: #e14020;
}

.header {
  z-index: 20;
  background-color: var(--white);
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navmenu {
  flex: 1;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  display: flex;
}

.navlink {
  color: var(--black);
  font-family: Moon, sans-serif;
  font-size: 85%;
  font-weight: 300;
  text-decoration: none;
  transition: color .45s;
}

.navlink:hover {
  color: var(--deep-sky-blue);
}

.navlink:focus {
  outline-offset: 0px;
  outline: 3px solid #53b1d5;
}

.header-spacer {
  display: none;
}

.mobile-menu {
  z-index: 10;
  background-color: var(--deep-sky-blue);
  object-fit: none;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: fixed;
  inset: 10% -100% 0% auto;
}

.mobile-navlink {
  color: var(--white);
  text-transform: uppercase;
  font-size: 100%;
  line-height: 80%;
  text-decoration: none;
}

.burger {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: .2rem;
  display: none;
  position: relative;
}

.hero {
  background-image: url('../images/adj-pexels-simon-berger-1323550.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding-left: 10rem;
  display: none;
}

.hero-text-wrapper {
  width: 50%;
  display: block;
}

.button_clear {
  border: 2px solid var(--white);
  background-color: #0000;
  border-radius: 6px;
  transition: border-color .45s, background-color .45s;
}

.button_clear:hover {
  border-color: var(--deep-sky-blue);
  background-color: var(--deep-sky-blue);
}

.logo-text {
  margin-bottom: 0;
  font-family: Moon, sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  text-decoration: none;
}

.link-block {
  width: 30%;
  color: var(--deep-sky-blue);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.strapline {
  margin-bottom: 0;
  font-size: .8rem;
  position: relative;
  top: -6px;
}

.standard-wrapper {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 5rem 0;
  display: flex;
}

.standard-wrapper.top-just {
  align-items: flex-start;
}

.standard-wrapper.vert-just {
  flex-direction: column;
  width: auto;
}

.col2 {
  width: 45%;
}

.link-dark {
  color: var(--medium-violet-red);
  font-weight: 500;
  text-decoration: none;
  transition: color .45s;
}

.link-dark:hover {
  color: var(--deep-sky-blue);
}

.footer_social-block {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  display: flex;
}

.footer_social-link {
  width: 12%;
  margin-right: 3rem;
}

.footer_cert-block {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 2vh;
  margin-bottom: 2vh;
  padding-left: 0;
  display: flex;
}

.footer_cert-link {
  width: 15%;
}

.col3 {
  flex-direction: column;
  width: 30%;
  display: flex;
}

.feature-photo {
  margin-bottom: 1rem;
}

.col2 {
  flex: 0 auto;
  width: 45%;
}

.col2.widecol {
  flex: 0 auto;
  width: 70%;
  padding: 1.3rem 1.3rem 1.3rem 0;
}

.col2.just-bottom {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.col2.right-just {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

._2cols {
  column-count: 2;
}

.grid-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  margin-bottom: 2rem;
}

.grid-wrapper.right-align {
  order: 0;
  align-items: flex-end;
}

.grid-wrapper.vert-align-centre, .grid-wrapper.vert-align-centre-copy {
  display: flex;
}

.grid-wrapper.top-just {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

._100 {
  width: 100%;
}

.list-item {
  font-family: Montserrat, sans-serif;
  font-size: 100%;
}

.footer_copyright-code {
  width: 100%;
  color: var(--black);
  text-align: center;
  margin-top: 2rem;
  font-family: Montserrat, sans-serif;
  font-size: 100%;
}

.footer-para-mobile {
  display: none;
}

.grid-wrapper_right-just {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 45%;
  margin-bottom: 2rem;
  display: flex;
}

.grid-item-holder {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  display: flex;
}

.grid-item-holder.top-just {
  align-items: flex-start;
}

.grid-item-holder.top-just.no-margin {
  margin-bottom: 0;
}

.grid-item-holder.centred {
  justify-content: space-between;
  align-items: center;
}

.burger-line1 {
  background-color: var(--deep-sky-blue);
  border-radius: 20px;
  width: 90%;
  height: 6px;
  position: absolute;
  top: 13px;
}

.burger-line2 {
  background-color: var(--deep-sky-blue);
  border-radius: 20px;
  width: 90%;
  height: 6px;
  position: absolute;
  top: 26px;
}

.burger-line-3 {
  background-color: var(--deep-sky-blue);
  border-radius: 20px;
  width: 90%;
  height: 6px;
  position: absolute;
  top: 39px;
}

.div-block {
  display: flex;
}

.form {
  width: 100%;
}

.standard-wrapper_top {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10rem 7rem 0;
  display: flex;
}

.standard-wrapper_top.top-just {
  align-items: flex-start;
}

.standard-wrapper_top.vert-just {
  flex-direction: column;
  width: auto;
}

.heading {
  line-height: 175%;
}

._90--image {
  width: 70%;
}

.test-slider {
  background-color: #be91a624;
  width: 100vw;
  height: 600px;
  margin-top: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  overflow: hidden;
}

.test-slide {
  height: 100%;
  padding: 2.5rem;
}

.slide-div {
  width: auto;
  height: 100%;
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 70%;
  display: flex;
}

.test-mask {
  width: 33%;
  overflow: visible;
}

.slide-nav {
  display: none;
}

.quote {
  color: var(--deep-sky-blue);
  font-size: 350%;
  font-weight: 600;
  line-height: 1;
}

.quote-end {
  color: var(--deep-sky-blue);
  font-size: 250%;
  line-height: .3;
}

.subscript {
  font-size: 125%;
  font-weight: 600;
}

.contact-map {
  margin-top: 4rem;
}

.mailchimp-form {
  margin-top: 1rem;
  margin-bottom: 0;
}

.grid-wrapper-100 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
}

.grid-wrapper-100.right-align {
  order: 0;
  align-items: flex-end;
}

.paragraph {
  align-self: center;
}

.top-wrapper {
  width: 100%;
  display: flex;
}

.about-me-top-wrapper {
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  display: flex;
}

.about-me-left-col {
  width: 30%;
}

.about-me-right-col {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  padding: 0 21px;
  display: flex;
}

.small {
  font-size: 80%;
}

.no-line-height {
  line-height: 100%;
}

.vs2 {
  width: 100%;
  height: 4vh;
}

.book-cover-link {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.book-cover-image {
  width: 60%;
  margin-top: 0;
}

.standard-wrapper_bstretch {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding: 10rem 7rem 0;
  display: flex;
}

.standard-wrapper_bstretch.top-just {
  align-items: flex-start;
}

.standard-wrapper_bstretch.vert-just {
  flex-direction: column;
  width: auto;
}

.beaverbrook-text {
  line-height: 1;
}

.grid-item-holder--single-col {
  background-color: var(--medium-violet-red);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  display: flex;
}

.grid-item-holder--single-col.top-just {
  align-items: flex-start;
}

.grid-item-holder--single-col.top-just.no-margin {
  margin-bottom: 0;
}

.grid-item-holder--single-col.centred {
  justify-content: space-between;
  align-items: center;
}

.centrerid-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin-bottom: 2rem;
  padding-top: 2vw;
  padding-bottom: 2vw;
}

.centrerid-wrapper.right-align {
  order: 0;
  align-items: flex-end;
}

.centrerid-wrapper.vert-align-centre, .centrerid-wrapper.vert-align-centre-copy {
  display: flex;
}

.link-light {
  color: var(--white);
}

.book-cover-image-2 {
  width: 45%;
  margin-top: 0;
  display: block;
}

.list {
  margin-top: 1vw;
}

.image-approved {
  width: 50%;
  margin-top: 2vw;
}

.standard-wrapper-2 {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 5vh;
  padding-left: 4vw;
  padding-right: 4vw;
  display: flex;
}

.vs2-2 {
  border: 1px #000;
  width: 100%;
  height: 4vh;
}

.col2-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48%;
  display: flex;
}

.poetry-images {
  border: 1px solid #f3ecf0;
  box-shadow: 3px 3px 5px #00000024;
}

@media screen and (max-width: 991px) {
  body {
    padding-top: 37px;
  }

  .footer {
    flex-direction: column;
    margin-top: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1rem;
  }

  .navmenu, .header-spacer {
    display: none;
  }

  .mobile-menu {
    background-color: var(--deep-sky-blue);
    display: none;
    top: 10%;
    right: 0%;
  }

  .mobile-navlink {
    text-transform: uppercase;
    font-family: Moon, sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
  }

  .burger {
    z-index: 20;
    width: 60px;
    height: 60px;
    padding: 0 1vw;
    display: flex;
    position: relative;
  }

  .hero {
    background-position: 100% 100%;
    padding-left: 5rem;
  }

  .hero-text-wrapper {
    width: 90%;
  }

  .link-block {
    width: 35%;
  }

  .standard-wrapper {
    flex-wrap: wrap;
    padding-top: 5rem;
    padding-left: 5rem;
    padding-right: 5rem;
    font-size: 1rem;
  }

  .col2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
  }

  .col2.centre {
    align-items: center;
  }

  .footer_social-block {
    justify-content: center;
  }

  .footer_cert-block {
    width: 100%;
  }

  .col3 {
    width: 100%;
    margin-bottom: 4rem;
  }

  .col2 {
    align-items: flex-start;
  }

  .col2.widecol {
    width: 100%;
  }

  .col2.just-bottom {
    justify-content: center;
    align-items: flex-start;
  }

  .grid-wrapper {
    width: 100%;
  }

  .grid-wrapper.right-align {
    align-items: flex-start;
  }

  .footer-para-desktop {
    display: none;
  }

  .footer-para-mobile {
    text-align: center;
    flex-direction: column;
    display: flex;
  }

  .grid-wrapper_right-just {
    order: -1;
    align-items: flex-start;
    width: 100%;
  }

  .grid-item-holder.top-just {
    margin-bottom: 0;
  }

  .burger-line {
    background-color: var(--white);
    border-radius: 13px;
    width: 90%;
    height: 7px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .burger-line1 {
    border-radius: 13px;
    width: 90%;
    height: 7px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    top: 13px;
  }

  .burger-line2 {
    border-radius: 13px;
    width: 90%;
    height: 7px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    top: 26px;
  }

  .burger-line-3 {
    border-radius: 13px;
    width: 90%;
    height: 7px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    top: 39px;
  }

  .div-block {
    right: -100vw;
  }

  .standard-wrapper_top {
    flex-wrap: wrap;
    padding-top: 5rem;
    padding-left: 5rem;
    padding-right: 5rem;
    font-size: 1rem;
  }

  .slide-div {
    font-size: 100%;
  }

  .test-mask, .grid-wrapper-100 {
    width: 100%;
  }

  .grid-wrapper-100.right-align {
    align-items: flex-start;
  }

  .about-me-top-wrapper {
    flex-wrap: wrap;
  }

  .about-me-left-col {
    width: 100%;
  }

  .about-me-right-col {
    padding-left: 0;
  }

  .small {
    font-size: 100%;
  }

  .standard-wrapper_bstretch {
    flex-wrap: wrap;
    padding-top: 5rem;
    padding-left: 5rem;
    padding-right: 5rem;
    font-size: 1rem;
  }

  .grid-item-holder--single-col.top-just {
    margin-bottom: 0;
  }

  .centrerid-wrapper {
    width: 100%;
  }

  .centrerid-wrapper.right-align {
    align-items: flex-start;
  }

  .standard-wrapper-2 {
    padding-top: 7vh;
  }

  .col2-2 {
    width: 100%;
    margin-top: 4vh;
  }

  .poetry-images {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 3rem;
  }

  h1 {
    margin-top: 0;
    font-size: 250%;
  }

  h2, h3 {
    margin-top: 0;
    margin-bottom: 1vw;
  }

  h4 {
    margin-bottom: 1rem;
  }

  h5 {
    margin-top: 0;
    margin-bottom: 1rem;
  }

  h6 {
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .navmenu, .mobile-menu {
    display: none;
  }

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-text-wrapper {
    width: 100%;
  }

  .link-block {
    width: 60%;
  }

  .standard-wrapper {
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .col2 {
    justify-content: center;
    align-items: center;
  }

  .footer-para-desktop {
    display: none;
  }

  .footer-para-mobile {
    text-align: center;
  }

  .standard-wrapper_top {
    padding-top: 3.9rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .test-slider {
    height: 700px;
  }

  .test-slide {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .slide-div {
    font-size: 90%;
  }

  .standard-wrapper_bstretch {
    padding-top: 3.9rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .standard-wrapper-2 {
    padding-top: 6vh;
  }

  .col2-2 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  body {
    padding-top: 5rem;
  }

  h1 {
    font-size: 200%;
  }

  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .mobile-menu {
    display: none;
    top: 15%;
    right: 0;
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 5rem;
    padding-right: 1rem;
  }

  .logo-text {
    text-align: left;
    line-height: 1.2;
  }

  .link-block {
    width: 75%;
  }

  .strapline {
    text-align: center;
  }

  .standard-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .col2 {
    justify-content: center;
    align-items: center;
  }

  .footer_social-block {
    width: 100%;
  }

  .footer_cert-block {
    justify-content: space-between;
  }

  .footer_cert-link {
    width: 45%;
    margin-right: 0;
  }

  .col2.widecol {
    padding-left: 0;
    padding-right: 0;
  }

  ._2cols {
    column-count: 1;
  }

  .standard-wrapper_top {
    padding-top: 2.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .test-slider {
    height: 800px;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .book-cover-image {
    width: 100%;
  }

  .standard-wrapper_bstretch {
    padding-top: 2.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .book-cover-image-2 {
    width: 100%;
  }

  .list {
    padding-left: 20px;
  }

  .image {
    margin-bottom: 2vw;
  }

  .poetry-images {
    width: 98%;
  }
}

#w-node-_79ba2852-7a16-4430-6461-aa3dd0c0a496-d58f203c, #w-node-ebf29296-4d31-2ba9-11d7-ae85346d8a57-d58f203c, #w-node-_809f6901-8ce8-50b0-b8af-4e40abe2c781-d58f203c, #w-node-_1e845b00-8fa1-285b-bf1d-d40378567cdd-d58f203c, #w-node-_087cf75e-4eef-aadb-8d47-7077fcc54c10-d58f203c, #w-node-_141d294b-0d69-b69d-6c7f-ab17517a3fdf-d58f203c, #w-node-_2e487038-2252-82eb-39ae-cd46971ef34c-d58f203c, #w-node-e94efec9-6bf6-40d9-8e66-43c63313c58a-d58f203c, #w-node-_4fddd156-5dc2-fba3-2c65-52d7869a617b-d58f203c, #w-node-_485b7bd1-b8e3-ed7c-4b58-b8a57c85fb36-d58f203c, #w-node-ff1bb250-3012-7782-4cca-393a712f8f1e-d58f203c, #w-node-ff1bb250-3012-7782-4cca-393a712f8f2c-d58f203c, #w-node-bf60f615-0d3f-e68e-8a1c-24fec54a916d-308f203e, #w-node-_4a0b657d-0fc8-88e7-b584-4078518d5234-308f203e, #w-node-b621aeab-9063-0141-7d9d-010364917384-308f203e, #w-node-_0bc0747e-19e2-c31b-dc36-6bcb996ba6fb-308f203e, #w-node-a6d2ed82-5f4e-7ec2-e904-ea0cfc3eea21-308f203e, #w-node-fb9ab8d1-a3a6-4693-2e91-fdcbd057d0df-308f203e, #w-node-ebf29296-4d31-2ba9-11d7-ae85346d8a57-0c8f203d, #w-node-_79ba2852-7a16-4430-6461-aa3dd0c0a496-0c8f203d, #w-node-c67e0361-da5f-3012-5863-2f1a211bc549-0c8f203d, #w-node-_182e0aaf-f072-4064-dd47-7c786cd4a0d3-0c8f203d, #w-node-_2d9f5a61-be36-45d9-1795-aa1924cbac17-0c8f203d, #w-node-_66fdf495-54cb-7759-75fc-3ea8b340610f-0c8f203d, #w-node-d233e938-a275-fe76-ccd9-f65d6f5b2b8a-0c8f203d, #w-node-c17778fc-913b-5922-c0b3-3b8146f01d74-0c8f203d, #w-node-f470b7b4-ef8b-a172-22bb-8ea159eaf7ec-0c8f203d, #w-node-_33d3f971-3b2c-b740-a68d-1c0479646a6c-0c8f203d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_79ba2852-7a16-4430-6461-aa3dd0c0a496-d58f203c {
    order: -9999;
  }
}


@font-face {
  font-family: 'Quicksand variablefont wght';
  src: url('../fonts/Quicksand-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Font awesome 5 free 400';
  src: url('../fonts/Font-Awesome-5-Free-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Font awesome 5 free solid 900';
  src: url('../fonts/Font-Awesome-5-Free-Solid-900.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Font awesome 5 brands 400';
  src: url('../fonts/Font-Awesome-5-Brands-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Moon';
  src: url('../fonts/Moon-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Moon';
  src: url('../fonts/Moon-Bold.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}