/* fonts */
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.ephesis-regular {
  font-family: "Ephesis", cursive;
  font-weight: 400;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* Variables */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 147px;
  background: #fff;
  z-index: 99999;
  padding-top: 48px;
  transition: height 0.4s ease, padding-top 0.4s ease;
}
@media (max-width: 1023px) {
  .header {
    padding-top: 1rem;
  }
}
.header.scrolled {
  height: 104px;
  padding-top: 1rem;
}
.header.scrolled .header-content .logo {
  width: 160px;
}
.header.scrolled .header-content .logo a img {
  height: 72px;
}
@media (max-width: 1023px) {
  .header.scrolled .header-content .logo a img {
    height: 65px;
  }
}
.header-content {
  position: relative;
  max-width: 1728px;
  width: 90%;
  margin: auto;
  display: flex;
  gap: 4.5rem;
  align-items: center;
}
@media (max-width: 1365px) {
  .header-content {
    gap: 3rem;
  }
}
@media (max-width: 1023px) {
  .header-content {
    justify-content: space-between;
  }
}
.header-content .logo {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1023px) {
  .header-content .logo {
    justify-content: flex-start;
  }
}
.header-content .logo a {
  text-decoration: none;
}
.header-content .logo a img {
  height: 144px;
  transition: height 0.4s ease;
}
@media (max-width: 1365px) {
  .header-content .logo a img {
    height: 65px;
  }
}
.header-content .hamburger-menu {
  display: none;
  position: relative;
}
@media (max-width: 1023px) {
  .header-content .hamburger-menu {
    display: block;
    z-index: 99999;
  }
}
.header-content .hamburger-menu a .bars {
  display: block;
}
.header-content .hamburger-menu a .exit {
  display: none;
}
.header-content .hamburger-menu a.--exit .bars {
  display: none;
}
.header-content .hamburger-menu a.--exit .exit {
  display: block;
}
.header-content .nav {
  position: relative;
  display: flex;
  list-style: none;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1365px) {
  .header-content .nav {
    gap: 2rem;
  }
}
@media (max-width: 1023px) {
  .header-content .nav {
    display: block;
    right: -100%;
    transition: right 0.4s ease;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #068390;
    z-index: 9999;
    box-sizing: border-box;
    padding-top: 10rem;
  }
  .header-content .nav.--hamburger-open {
    right: 0;
  }
}
.header-content .nav li {
  position: relative;
}
.header-content .nav li a {
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 500;
  font-family: "Montserrat";
  text-decoration: none;
  color: #272727;
  position: relative;
}
.header-content .nav li a:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E87400;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.header-content .nav li a.btn:hover {
  color: #ffffff;
}
.header-content .nav li a.btn:after {
  display: none;
}
.header-content .nav li a:hover:after {
  opacity: 1;
}
@media (max-width: 1023px) {
  .header-content .nav li a {
    line-height: 2;
    border-bottom: 1px solid #fff;
    color: #fff;
    display: block;
    font-size: 2rem;
    padding: 0 1rem;
  }
  .header-content .nav li a:hover {
    background-color: #E87400;
  }
  .header-content .nav li:last-child {
    padding-top: 4rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .header-content .nav li:last-child .btn {
    border-bottom: 2px solid #E87400;
  }
}

.btn {
  padding: 1rem 1.5rem;
  border: 2px solid #E87400;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 500;
  color: #272727;
  text-decoration: none;
  transition: all 0.4s ease;
  display: inline-block;
  text-align: center;
}
.btn:hover {
  background-color: #E87400;
  color: #ffffff;
}
.btn.btn-orange {
  background-color: #E87400;
  color: #fff;
  opacity: 1;
}
.btn.btn-orange:hover {
  opacity: 0.8;
}

.footer {
  position: relative;
  background-color: #068390;
  padding: 114px 0;
}
.footer-content {
  position: relative;
  padding: 0 1rem;
}
.footer-content .flex {
  display: flex;
  gap: 100px;
  justify-content: center;
}
@media (max-width: 1025px) {
  .footer-content .flex {
    gap: 0;
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  .footer-content .flex {
    flex-direction: column;
  }
}
.footer-content .flex .col {
  width: 28%;
}
@media (max-width: 1025px) {
  .footer-content .flex .col {
    width: 30%;
  }
}
@media (max-width: 1023px) {
  .footer-content .flex .col {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.footer-content .flex .col:first-child {
  width: 15%;
}
@media (max-width: 1025px) {
  .footer-content .flex .col:first-child {
    width: 30%;
  }
}
@media (max-width: 1023px) {
  .footer-content .flex .col:first-child {
    width: 100%;
  }
}
.footer-content .flex .col:last-child {
  margin-bottom: 0;
}
.footer-content .flex .col p {
  color: #fff;
}
.footer-content .flex .col .social {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-content .flex .col .social li a svg path {
  transition: fill 0.4s ease;
}
.footer-content .flex .col .social li a:hover svg path {
  fill: #E87400;
}
.footer-content .flex .col .footer-logo {
  margin-bottom: 3rem;
  position: relative;
}
.footer-content .flex .col .footer-logo img {
  width: 100%;
  display: block;
  max-width: 328px;
}
.intro {
  position: relative;
  background: url("../../assets/ui-book-flower-with-bg.png") center right no-repeat transparent;
  background-size: 50% auto;
}
@media (max-width: 1023px) {
  .intro {
    background: url("../../assets/ui-hero.png") top right no-repeat transparent;
    background-size: 25% auto;
  }
}
.intro-content {
  position: relative;
  display: flex;
  box-sizing: border-box;
  padding-left: 15%;
  padding-top: 8rem;
}
@media (max-width: 1023px) {
  .intro-content {
    padding: 4rem 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.intro-content-copy {
  position: relative;
  max-width: 674px;
  width: 40%;
}
@media (max-width: 1023px) {
  .intro-content-copy {
    width: 100%;
  }
}
.intro-content-copy h1 {
  font-family: "Ephesis", sans-serif;
  color: #272727;
  font-size: clamp(120px, 10vw, 200px);
  line-height: 0.825;
  font-weight: 400;
  margin-bottom: 5.5rem;
  width: 86%;
}
@media (max-width: 1023px) {
  .intro-content-copy h1 {
    width: 100%;
  }
}
.intro-content-copy h1 .orange {
  color: #E87400;
  display: block;
  font-weight: 800;
  font-size: clamp(32px, 2vw, 40px);
  line-height: 1;
  font-family: "Poppins", sans-serif;
}
.intro-content-copy h1 .orange:last-child {
  text-align: right;
}
.intro-content-copy h1 .cursive {
  display: block;
  font: inherit;
  color: inherit;
}
.intro-content-copy p {
  font-size: 22px;
  color: #767676;
  line-height: 1.5;
}
.intro-content-ui img {
  display: none;
}
@media (max-width: 1023px) {
  .intro-content-ui img {
    display: block;
    width: 100%;
    margin: 3rem auto 0;
  }
}

.about {
  position: relative;
  margin-top: 300px;
}
@media (max-width: 767px) {
  .about {
    margin-top: 114px;
  }
}
.about-content {
  position: relative;
  display: flex;
  max-width: 1874px;
  width: 90%;
  margin: auto;
  gap: 4.5rem;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .about-content {
    flex-wrap: wrap;
    width: 100%;
    padding: 0 1rem;
    gap: 0;
    justify-content: center;
  }
}
.about-content-image {
  position: relative;
  padding-left: 6vw;
  box-sizing: border-box;
  width: 50%;
  padding-bottom: 10%;
}
@media (max-width: 1023px) {
  .about-content-image {
    padding-left: 0;
    margin-bottom: 132px;
    width: 100%;
    padding-bottom: 0;
  }
}
.about-content-image img {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
}
.about-content-image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../../assets/ui-circle-about.png) left bottom no-repeat transparent;
  width: 20vw;
  height: 100%;
  background-size: contain;
  z-index: 1;
}
@media (max-width: 1023px) {
  .about-content-image:after {
    width: 40vw;
    left: -25%;
    bottom: -25%;
  }
}
.about-content-copy {
  position: relative;
  width: 50%;
}
@media (max-width: 1023px) {
  .about-content-copy {
    width: 100%;
  }
}
.about-content-copy h2 {
  font-family: "Ephesis";
  font-weight: 400;
  font-size: clamp(72px, 5.2vw, 100px);
  color: #068390;
  line-height: 1;
  margin-bottom: 2rem;
}
.about-content-copy h2 .orange {
  color: #E87400;
  font-family: "Poppins";
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  display: block;
}
.about-content-copy h2 .cursive {
  display: block;
  font: inherit;
  color: inherit;
}
.guide {
  position: relative;
  padding: 115px 0 211px;
  margin-top: 150px;
}
@media (max-width: 1023px) {
  .guide {
    margin-bottom: 100px;
  }
}
.guide:before, .guide:after {
  content: "";
  position: absolute;
  z-index: 2;
}
.guide:before {
  background: url(../../assets/ui-circle-guidelines.png) bottom right no-repeat transparent;
  width: 16%;
  height: 100%;
  background-size: contain;
  bottom: 0;
  right: 0;
  z-index: 3;
}
@media (max-width: 1365px) {
  .guide:before {
    height: 16%;
  }
}
@media (max-width: 767px) {
  .guide:before {
    width: 226px;
    height: 216px;
    bottom: -2%;
  }
}
.guide:after {
  background: url(../../assets/ui-circle-teal-guidelines.png) bottom right no-repeat transparent;
  width: 10%;
  height: 100%;
  background-size: contain;
  bottom: 10%;
  right: 0%;
  z-index: 2;
}
@media (max-width: 1365px) {
  .guide:after {
    bottom: 3%;
    width: 10%;
    height: 15%;
  }
}
@media (max-width: 767px) {
  .guide:after {
    width: 180px;
    height: 190px;
    bottom: 0%;
    right: 0%;
  }
}
.guide .bg-guide {
  position: absolute;
  background: no-repeat transparent;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.guide .bg-guide.--top {
  top: 0;
  background-image: url(../../assets/ui-curve-teal-top.png);
  background-position: center top;
}
.guide .bg-guide.--bottom {
  bottom: 0;
  background-image: url(../../assets/ui-curve-teal-bottom.png);
  background-position: center bottom;
}
.guide-container {
  position: relative;
  z-index: 2;
}
.guide-container:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 65%;
  background: #068390;
  z-index: 1;
}
.guide-content {
  max-width: 1036px;
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 2;
}
.guide-content h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.guide-content p {
  color: #ffffff;
}
.guide-content-list {
  position: relative;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
@media (max-width: 1023px) {
  .guide-content-list {
    flex-direction: column;
  }
}
.guide-content-list .item {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem 1rem 1rem 2rem;
}
.guide-content-list .item p {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 75px;
  padding-right: 1rem;
  position: relative;
  z-index: 3;
}
.guide-content-list .item p.no-cta {
  margin-bottom: 0;
  text-align: right;
  font-weight: 400;
  padding: 0;
}
.guide-content-list .item a.click-area {
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 4;
  transition: opacity 0.4s ease;
}
.guide-content-list .item a.click-area:hover {
  opacity: 0.35;
}
.guide-content-list .item a.click-area:hover + p + a.link span {
  border-color: transparent;
}
.guide-content-list .item span.cover-area {
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 2;
}
.guide-content-list .item a.link {
  display: flex;
  justify-content: flex-end;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  position: relative;
  text-decoration: none;
  align-items: center;
}
.guide-content-list .item a.link:before {
  content: "";
  background: url(../../assets/ico-leaf-orange.png) center left no-repeat transparent;
  width: 23px;
  height: 45px;
  background-size: contain;
  display: block;
  margin-right: 0.5rem;
}
.guide-content-list .item a.link span {
  display: block;
  font: inherit;
  color: inherit;
  border-bottom: 1px solid #E87400;
  transition: border 0.4s ease;
}
.guide-content-list .item a.link:hover span {
  border-bottom: none;
}

.book {
  position: relative;
  margin-top: 150px;
  padding-bottom: 5rem;
}
.book-content {
  position: relative;
  display: flex;
  gap: 70px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .book-content {
    flex-direction: column;
  }
}
.book-content-copy {
  width: 42%;
}
@media (max-width: 1023px) {
  .book-content-copy {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }
}
@media (max-width: 1023px) {
  .book-content-copy h2 .orange {
    padding-left: 3rem;
  }
}
.book-content-copy p {
  padding-left: 3rem;
}
@media (max-width: 1023px) {
  .book-content-copy p {
    padding-left: 0;
  }
}
.book-content-image {
  width: 42%;
  position: relative;
}
@media (max-width: 1023px) {
  .book-content-image {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }
}
.book-content-image img {
  position: relative;
  z-index: 2;
  width: 80%;
  height: auto;
  display: block;
  max-width: 572px;
}
@media (max-width: 1023px) {
  .book-content-image img {
    width: 100%;
    margin: auto;
  }
}
.book-content-image:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -10%;
  right: 0%;
  background: url(../../assets/ui-book.png) no-repeat transparent right bottom;
  background-size: contain;
  width: 42%;
  height: 100%;
}
@media (max-width: 767px) {
  .book-content-image:after {
    background-position: right -10px bottom;
  }
}

.submission {
  padding-top: 150px;
}
.submission-content h2 {
  text-align: center;
  margin-bottom: 4.5rem;
}
@media (max-width: 1023px) {
  .submission-content h2 {
    text-align: left;
    line-height: 1.1;
    padding: 0 1rem;
  }
}
.submission-content-flex {
  display: flex;
  position: relative;
  gap: 140px;
  align-items: center;
}
@media (max-width: 1365px) {
  .submission-content-flex {
    gap: 70px;
  }
}
@media (max-width: 1023px) {
  .submission-content-flex {
    flex-direction: column;
    gap: 180px;
  }
}
.submission-content-image {
  position: relative;
  width: 42%;
  padding-bottom: 10%;
}
@media (max-width: 1365px) {
  .submission-content-image {
    width: 50%;
  }
}
@media (max-width: 1023px) {
  .submission-content-image {
    width: 100%;
    padding-bottom: 20%;
  }
}
.submission-content-image img {
  max-width: 388px;
  height: auto;
  width: 100%;
  display: block;
  position: relative;
}
@media (max-width: 1365px) {
  .submission-content-image img {
    max-width: 300px;
  }
}
.submission-content-image img.top {
  z-index: 1;
  margin: auto;
}
@media (max-width: 767px) {
  .submission-content-image img.top {
    margin: 0 0 0 1rem;
  }
}
.submission-content-image img.bottom {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: -10%;
}
@media (max-width: 1023px) {
  .submission-content-image img.bottom {
    right: 15%;
  }
}
@media (max-width: 767px) {
  .submission-content-image img.bottom {
    right: 1rem;
    bottom: -15%;
  }
}
.submission-content-image:before {
  content: "";
  background: url(../../assets/ui-submission.png) bottom left no-repeat transparent;
  position: absolute;
  bottom: -25%;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  max-width: 709px;
}
@media (max-width: 767px) {
  .submission-content-image:before {
    background-position: -100px bottom;
  }
}
.submission-content-copy {
  width: 37.5%;
  position: relative;
}
@media (max-width: 1023px) {
  .submission-content-copy {
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }
}
.poem {
  position: relative;
  margin-top: 25rem;
}
@media (max-width: 767px) {
  .poem {
    margin-top: 7.75rem;
  }
}
.poem-content {
  text-align: center;
  position: relative;
  background: url(../../assets/ui-daily-poem.png) center center no-repeat transparent;
  padding: 0 1rem 15rem;
}
@media (max-width: 767px) {
  .poem-content {
    padding-bottom: 10rem;
  }
}
.poem-content h2 {
  margin-bottom: 1rem;
}
.poem-content h3 {
  margin-bottom: 2rem;
}
.poem-content-main {
  text-align: center;
  position: relative;
}
.poem-content-main p {
  white-space: pre-line;
}

.gallery {
  position: relative;
  background: url(../../assets/ui-slanted-top-yellow.png) center top no-repeat transparent;
  padding-top: 20rem;
  margin-top: -10rem;
}
.gallery-poets {
  position: relative;
  text-align: center;
}
.gallery-poets:before {
  content: "";
  background: #FEF8EE;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate(0, -50%);
  position: absolute;
  z-index: 1;
}
.gallery-poets:after {
  content: "";
  position: absolute;
  bottom: -300px;
  left: 0;
  width: 100%;
  height: 300px;
  background: url(../../assets/ui-slanted-bottom-yellow.png) center bottom no-repeat transparent;
  z-index: 1;
}
.gallery-poets-content {
  position: relative;
  z-index: 2;
}
.gallery-poets h2 {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .gallery-poets h2 {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }
}
.gallery-poets .grid {
  display: grid;
  width: 75%;
  margin: auto;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1025px) {
  .gallery-poets .grid {
    width: calc(100% - 32px);
  }
}
@media (max-width: 767px) {
  .gallery-poets .grid {
    display: block;
  }
}
.gallery-poets .grid li {
  margin-bottom: 1rem;
  font-family: "Poppins";
  color: #595959;
  font-size: 22px;
  line-height: 36px;
}
.gallery-poets .grid li a {
  color: inherit;
  font: inherit;
}
.gallery-poets .grid li a:hover {
  text-decoration: none;
  color: #068390;
}
.gallery-poets .grid li:last-child {
  margin-bottom: 0;
}
.gallery-poets .flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 52%;
  margin: auto;
}
@media (max-width: 1025px) {
  .gallery-poets .flex {
    width: calc(100% - 32px);
  }
}
@media (max-width: 767px) {
  .gallery-poets .flex {
    flex-direction: column;
  }
}
.gallery-poets .flex .col {
  width: 30%;
  position: relative;
}
@media (max-width: 767px) {
  .gallery-poets .flex .col {
    margin-bottom: 1rem;
    width: 100%;
  }
}
.gallery-poets .flex .col ul {
  list-style: none;
  text-align: center;
}
.gallery-poets .flex .col ul li {
  margin-bottom: 1rem;
  font-family: "Poppins";
  color: #595959;
  font-size: 22px;
  line-height: 36px;
}
.gallery-poets .flex .col ul li:last-child {
  margin-bottom: 0;
}
.gallery-tiles {
  position: relative;
  z-index: 2;
  margin-top: 150px;
  padding-bottom: 150px;
}
.gallery-tiles:after {
  content: "";
  position: absolute;
  width: 350px;
  height: 337px;
  background: url(../../assets/ui-gallery.png) 0 0 no-repeat transparent;
  background-size: cover;
  z-index: 1;
  bottom: 0;
  left: 10%;
}
@media (max-width: 1025px) {
  .gallery-tiles:after {
    left: 0;
    background-position: -150px center;
  }
}
.gallery-tiles .flex {
  width: calc(100% - 32px);
  max-width: 1146px;
  margin: auto;
  position: relative;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  z-index: 2;
}
@media (max-width: 1023px) {
  .gallery-tiles .flex {
    gap: 1.5rem;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .gallery-tiles .flex {
    flex-direction: column;
  }
}
.gallery-tiles .item {
  width: 30%;
  height: 0;
  padding-top: 30%;
  position: relative;
}
@media (max-width: 767px) {
  .gallery-tiles .item {
    width: 100%;
    padding-top: 100%;
  }
}
.gallery-tiles .item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.gallery-tiles .item a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

#container {
  position: relative;
  padding-top: 147px;
}

html {
  scroll-behavior: smooth;
}

html.locked, body.locked {
  overflow: hidden;
}

#wpadminbar {
  display: none !important;
}

ol, ul {
  list-style: none;
}

h2, h3 {
  font-family: "Ephesis";
  font-weight: 400;
  font-size: clamp(72px, 5.2vw, 100px);
  color: #068390;
  line-height: 1;
  margin-bottom: 2rem;
}
h2 .orange, h3 .orange {
  color: #E87400;
  font-family: "Poppins";
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  display: block;
}
h2 .orange.lg, h3 .orange.lg {
  font-size: 48px;
}
h2 .light-orange, h3 .light-orange {
  color: #FAB758;
  font-family: "Poppins";
  font-weight: 800;
  font-size: 32px;
  line-height: 40px;
  display: block;
}
h2 .cursive, h3 .cursive {
  display: block;
  font: inherit;
  color: inherit;
}
h2.bg-green, h3.bg-green {
  color: white;
}

p {
  font-family: "Poppins";
  color: #595959;
  font-size: 22px;
  line-height: 36px;
  margin-bottom: 2rem;
}
p:last-child {
  margin-bottom: 0;
}
p em {
  font-style: italic;
}
p strong {
  font-weight: bold;
}
p .teal {
  color: #068390;
}
p .medium {
  font-weight: 500;
}
p .light-orange {
  color: #FAB758;
}
p .semibold {
  font-weight: 600;
}

a {
  font-family: "Poppins";
}/*# sourceMappingURL=index.css.map */