:root {
  --ivory: #f5fbef;
  --maroon: #51150a;
  --dark-sage: #596b5a;
  --old-lace: #f3f0e4;
  --floral-white: #fffdf4;
  --peru: #d38c54;
  --light-sage: #a5bea7;
  --gainsboro: #e5e2e0;
  --firebrick: #cd351a;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--ivory);
  color: var(--maroon);
  flex-direction: column;
  justify-content: space-between;
  font-family: Nunito Sans, sans-serif;
  font-size: 1.125rem;
  line-height: 1.4rem;
  display: flex;
}

h1 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-family: Philosopher, sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 4rem;
}

h2 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-family: Philosopher, sans-serif;
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 3.125rem;
}

h3 {
  color: var(--dark-sage);
  text-transform: uppercase;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-family: Philosopher, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5rem;
}

h4 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-family: Philosopher, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--maroon);
  text-decoration: none;
}

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

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

.navigation-section {
  z-index: 100;
}

.section-container {
  color: #001f3f;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  font-family: Merriweather, serif;
}

.nav-flex-block {
  flex-direction: column;
  align-items: center;
  padding-top: 1.25rem;
  display: flex;
}

.navbar {
  background-color: #0000;
}

.brand-logo {
  width: 200px;
  box-shadow: none;
  padding-top: 0;
  padding-right: 0;
}

.nav-link {
  box-shadow: none;
  color: #011e3d;
}

.nav-link.w--current {
  box-shadow: inset 0 -2px 0 0 var(--maroon);
  color: var(--maroon);
  margin-bottom: 5px;
  padding-bottom: 15px;
}

.section {
  padding: 2.5rem;
}

.section.background-section {
  position: relative;
  overflow: hidden;
}

.section.white-section {
  background-color: var(--floral-white);
  color: #033342;
  padding-left: 1rem;
  padding-right: 1rem;
}

.flex-col-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.title-block {
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5rem;
  display: flex;
}

.title-wrapper {
  grid-column-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.leaf-image {
  width: 15px;
}

.color-wrapper-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1.25rem;
  display: grid;
}

.color-block {
  background-color: var(--ivory);
  width: 100px;
  height: 100px;
  box-shadow: 0 2px 5px #0003;
}

.color-block.color-outline {
  border: 1px solid var(--peru);
}

.color-block.yellow-green {
  background-color: var(--light-sage);
}

.color-block.olive-green {
  background-color: var(--dark-sage);
}

.color-block.peru {
  background-color: var(--peru);
}

.color-block.maroon {
  background-color: var(--maroon);
}

.button {
  background-color: var(--ivory);
  color: var(--maroon);
  padding: 1.25rem;
}

.center-text {
  text-align: center;
  margin-top: .5rem;
  margin-bottom: .5rem;
}

.cta-text {
  color: var(--maroon);
  text-transform: capitalize;
  text-decoration: none;
}

.downward-arrow-image {
  width: 25px;
}

.downward-arrow-image.rotate-arrow {
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.button-block-centered {
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-block-left {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.link {
  box-shadow: inset 0 -2px 0 0 var(--maroon);
}

.link:hover {
  box-shadow: inset 0 -2px 0 0 var(--peru);
}

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

.blog-container {
  background-color: var(--ivory);
  max-width: 900px;
  box-shadow: 4px 4px 0 5px var(--peru);
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem;
}

.blog-post-content-rich-text h2 {
  margin-bottom: 2.5rem;
}

.blog-post-content-rich-text h3 {
  margin-bottom: 1.25rem;
}

.blog-post-content-rich-text ul {
  padding-left: 2.5rem;
}

.blog-post-content-rich-text li {
  margin-bottom: .8rem;
}

.blog-post-content-rich-text figcaption {
  color: var(--dark-sage);
  font-size: 1rem;
  line-height: 1.1rem;
}

.footer-section {
  background-color: var(--maroon);
  margin-top: auto;
  padding: 2.5rem;
}

.div-block {
  justify-content: center;
  display: flex;
}

.logo-brand {
  padding: 1.2rem;
}

.flex-footer-wrapper {
  grid-column-gap: 2.5rem;
  justify-content: space-between;
  display: flex;
}

.footer-link {
  color: var(--ivory);
  margin-bottom: 5px;
  font-size: 1rem;
}

.footer-link:hover {
  color: var(--light-sage);
}

.flex-vertical-footer {
  flex-direction: column;
  display: flex;
}

.light-sage-text {
  color: var(--light-sage);
}

.white-text {
  color: var(--ivory);
}

.form {
  grid-column-gap: 1rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1.25rem;
  display: flex;
}

.text-field {
  border: 1px solid var(--peru);
  height: 45px;
  margin-bottom: 0;
}

.copyright-block {
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.copyright-text {
  color: var(--ivory);
  font-size: .8rem;
  line-height: 1rem;
}

.social-block {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.social-block.centered-social-block {
  justify-content: center;
}

.social-link-block {
  width: 25px;
}

.social-link-block.youtube {
  width: 32px;
  margin-top: -4px;
}

.footer-small-text {
  color: var(--ivory);
  font-size: 1rem;
}

.hero-slider {
  background-color: #0000;
  width: 100%;
  min-height: 80vh;
}

.hero-slide {
  width: 100%;
  height: 100%;
}

.slide-image-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.slide-image {
  color: #033342;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slide-nav {
  display: none;
}

.mask {
  height: 100%;
}

.slide-content-wrapper {
  max-width: 1160px;
  color: var(--ivory);
  padding: 5rem;
  position: absolute;
  inset: 50% auto auto;
  transform: translate(0, -50%);
}

.slide-content {
  padding: 2.5rem;
}

.slider-overlay {
  background-image: linear-gradient(#0006, #0006);
  position: absolute;
  inset: 0%;
}

.small-title {
  color: var(--old-lace);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
}

.small-title.green-text {
  color: var(--dark-sage);
}

.left-arrow {
  filter: brightness(200%);
  width: 40px;
  transform: rotate(180deg);
}

.left-arrow.testimonial-left-arrow {
  filter: none;
}

.hero-left-arrow {
  inset: auto auto 0% 0%;
}

.hero-left-arrow.testimonial-left-arrow {
  inset: 0% auto auto 0%;
}

.hero-right-arrow {
  inset: auto 0% 0% auto;
}

.hero-right-arrow.testimonial-right-arrow {
  inset: 0% 0% auto auto;
}

.right-arrow {
  filter: brightness(200%);
  width: 40px;
  transform-style: preserve-3d;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
}

.right-arrow.testimonial-right-arrow {
  filter: none;
}

.copyright-centered {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  display: flex;
}

.copyright-link {
  color: var(--ivory);
  text-decoration: underline;
}

.copyright-link:hover {
  color: var(--old-lace);
}

.small-paragraph-centered {
  text-align: center;
  max-width: 804px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2rem;
}

.flex-centered {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.ayurvedic-icon {
  width: 3rem;
}

.choice-wrapper {
  flex-direction: column;
  align-items: center;
  max-width: 350px;
  display: flex;
}

.centered-paragraph {
  text-align: center;
}

.conditions-wrapper {
  flex-direction: column;
  align-items: center;
  max-width: 350px;
  display: flex;
}

.conditions-image-wrapper {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  overflow: hidden;
}

.conditions-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.souce-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-2 {
  margin-top: 60px;
}

.sun-image {
  z-index: -1;
  transform-style: preserve-3d;
  position: absolute;
  inset: auto 0% 0% auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.circle-image {
  z-index: -2;
  position: absolute;
  inset: auto auto 4% 3%;
}

.semi-circle {
  z-index: -3;
  position: absolute;
  inset: -11% 18% auto auto;
}

.testimonial-slider {
  background-color: #0000;
  height: 100%;
}

.testimonial-main-wrapper {
  justify-content: space-between;
  display: flex;
}

.testimonial-content {
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 3.75rem;
  display: flex;
}

.testimonial-image-block {
  justify-content: center;
  width: 50%;
  display: flex;
  position: relative;
}

.testimonial-image-wrapper {
  width: 400px;
  height: 600px;
  position: relative;
}

.testimonial-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.testimonial-name {
  color: var(--dark-sage);
  text-transform: uppercase;
}

.testimonial-overlay {
  background-color: var(--dark-sage);
  height: 100%;
  position: absolute;
  inset: 0%;
}

.testimonial-circle-image {
  z-index: -1;
  width: 25%;
  position: absolute;
  inset: 0% auto auto -10%;
}

.testimonial-sun-image {
  z-index: -1;
  width: 25%;
  position: absolute;
  inset: auto -15% 8% auto;
  transform: rotate(55deg);
}

.testimonial-leaf-pattern-image {
  z-index: -1;
  width: 25%;
  position: absolute;
  inset: 17% -10% auto auto;
}

.testimonial-shadow {
  z-index: -1;
  background-color: var(--light-sage);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 4% 4% auto auto;
}

.text-container {
  width: 50%;
}

.image-container {
  width: 50%;
  height: 600px;
}

.tara-reeves {
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 8px #596b5acc;
}

.div-block-3 {
  width: 100%;
}

.div-block-4 {
  height: 400px;
}

.image-wrapper-one {
  width: 50%;
  height: 600px;
}

.image-one-tara-reeves {
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 5px 0 var(--dark-sage);
  object-fit: cover;
}

.tara-images {
  align-items: center;
  display: flex;
}

.image-wrapper-two {
  width: 50%;
  height: 500px;
  margin-left: -29px;
}

.image-two-tara-reeves {
  width: 100%;
  height: 100%;
  box-shadow: 0 2px 5px 0 var(--dark-sage);
  object-fit: cover;
}

.about-herbalist {
  background-color: var(--ivory);
  max-width: 900px;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

.button-wrapper {
  margin-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  display: inline-block;
}

.button-border {
  background-color: var(--dark-sage);
  box-shadow: 0 0 0 1px var(--dark-sage);
  display: inline-block;
  transform: translate(11px, 11px);
}

.primary-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 1px solid var(--dark-sage);
  background-color: var(--ivory);
  min-width: 200px;
  box-shadow: 0 0 0 1px var(--dark-sage);
  color: var(--maroon);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  display: flex;
}

.bullet-list {
  padding-left: 0;
  list-style-type: none;
}

.bullet-list-item {
  background-image: url('../images/1526127548.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 20px;
  margin-bottom: 1.25rem;
  padding-left: 2.5rem;
}

.featured-image-link-block {
  width: 100%;
  height: 450px;
}

.featured-details-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  padding-top: 2rem;
  display: flex;
}

.blog-post-snippet {
  flex-direction: column;
  flex: none;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.category-name {
  background-color: var(--gainsboro);
  color: var(--dark-sage);
  text-transform: uppercase;
  border-radius: 50px;
  padding: .5rem;
  font-size: .8rem;
  line-height: 1rem;
}

.author-name {
  color: var(--dark-sage);
  font-size: .8rem;
  line-height: 1rem;
}

.blog-post-summary {
  flex: none;
  width: 50%;
}

.post-summary {
  font-size: 1rem;
}

.featured-blog-post-wrapper {
  margin-bottom: 3rem;
}

.blog-post-wrapper {
  background-color: var(--old-lace);
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.blog-post-image-wrapper {
  height: 300px;
}

.blog-collection-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-post-thumbnail {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-post-content-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem;
  display: flex;
}

.read-more-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.read-more-wrapper {
  margin-top: 2.5rem;
}

.blog-featured-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.category-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.featured-blog {
  width: 60%;
}

.all-blogs {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: flex-start;
  display: flex;
}

.all-blog-posts {
  width: 40%;
}

.featured-wrapper {
  height: 500px;
}

.image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.featured-blog-post-content {
  z-index: 1;
  background-color: var(--floral-white);
  max-width: 500px;
  margin-top: -68px;
  padding: 1.5rem;
  position: relative;
}

.all-blog-post-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--floral-white);
  width: 100%;
  display: flex;
}

.image-wrapper-blog {
  width: 100%;
  height: 100%;
}

.blog-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.content-wrapper {
  width: 70%;
  padding: 1rem;
}

.image-wrapper {
  width: 30%;
}

.side-blog-post-collection-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.page-count {
  color: var(--peru);
  text-align: left;
  font-family: Philosopher, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.1rem;
}

.previous-icon, .next-icon {
  border-color: var(--peru);
  background-color: var(--old-lace);
  border-radius: 50%;
  margin-top: 1rem;
}

.pagination-block {
  justify-content: space-between;
  align-items: flex-end;
}

.arrow-wrapper {
  display: flex;
}

.blog-post-header {
  text-align: center;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.blog-title-content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.horizontal-divider {
  background-color: var(--gainsboro);
  width: 100%;
  height: 1.5px;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.bio-block {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.author-block {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  align-items: center;
  display: flex;
}

.author-image-wrapper {
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.author-image {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.post-date {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.social-link-block-invert {
  filter: invert();
  width: 25px;
}

.full-width-image-wrapper {
  height: 500px;
  position: relative;
}

.blog-main-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.blog-post-container {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.full-width-cta-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.full-width-image-overlay {
  background-image: linear-gradient(#51150a80, #51150a80);
  position: absolute;
  inset: 0%;
}

.center-full-width-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.field-label {
  font-weight: 400;
}

.form-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2rem;
  display: grid;
}

.mandatory-field {
  color: var(--firebrick);
}

.text-field-area {
  border: 1px solid var(--peru);
  min-height: 100px;
}

.success-message-wrapper {
  background-color: var(--dark-sage);
  padding: 1.25rem;
}

.success-message {
  color: var(--ivory);
}

.error-message-wrapper {
  background-color: var(--firebrick);
  text-align: center;
  margin-top: 1.25rem;
  padding: 1.25rem;
}

.error-message {
  color: var(--ivory);
}

.col-65-percent {
  width: 65%;
}

.col-35-percent {
  width: 35%;
}

.col-35-percent.image-bg-wrapper {
  background-image: url('../images/josh-calabrese-XXpbdU_31Sg-unsplash.jpg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem;
}

.contact-information {
  margin-bottom: 2.5rem;
}

.flex-col-stretch-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.full-width-listings-image-wrapper {
  height: 800px;
  position: relative;
}

.full-width-image-gray-overlay {
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.header-wrapper {
  position: absolute;
  inset: 0%;
}

.flex-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.event-collection-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.event-wrapper {
  background-color: var(--old-lace);
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.event-image-wrapper {
  height: 300px;
}

.event-thumbnail {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.event-content-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem;
  display: flex;
}

.tag-name {
  background-color: var(--gainsboro);
  color: var(--dark-sage);
  text-transform: uppercase;
  border-radius: 50px;
  padding: .5rem;
  font-size: .8rem;
  line-height: 1rem;
}

.tag-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.content {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.tag-wrapper {
  width: 30%;
  height: auto;
}

.post-summary-tag {
  font-size: 1rem;
}

.author-main-image-wraper {
  width: 300px;
  height: 300px;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.empty-state-wrappper {
  background-color: var(--peru);
  color: var(--floral-white);
  text-align: center;
  padding: 1rem;
}

.service-wrapper {
  background-color: var(--old-lace);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
}

.collection-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.service-details {
  border: 1px solid var(--maroon);
  padding: 1rem 2rem;
}

.faq-question-wrapper {
  grid-column-gap: 1rem;
  cursor: pointer;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.faq-answer-wrapper {
  height: auto;
  margin-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  overflow: hidden;
}

.plus-line {
  background-color: var(--maroon);
  width: 1rem;
  height: 2px;
}

.plus-line.rotate-plus-line {
  transform: translate(-1rem)rotate(90deg);
}

.plus-line-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.featured-collection-item {
  overflow: hidden;
}

.listing-item {
  margin-bottom: 2rem;
}

.testimonial-section {
  padding: 2.5rem;
}

.container {
  color: #033342;
}

.container-full-bleed {
  color: #033342;
  max-width: 100%;
}

.container-full-bleed.hero {
  background-image: url('../images/flower.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  display: flex;
}

.body {
  color: #013342;
  font-family: Merriweather, serif;
}

.hero-quote {
  z-index: auto;
  color: var(--floral-white);
  padding-left: 10%;
  padding-right: 10%;
  font-size: 33px;
  line-height: 47px;
  display: block;
  position: relative;
  top: 50%;
  bottom: 50%;
}

.hero-quote.desktop {
  margin-bottom: 117px;
  font-size: 33px;
  line-height: 40px;
}

.block-quote {
  border: 1px #000;
  padding-left: 10%;
  padding-right: 10%;
}

.italic-text {
  color: var(--old-lace);
  padding-left: 0;
  font-size: 31px;
  line-height: 41px;
}

.heading {
  text-align: center;
}

.paragraph, .paragraph-2, .paragraph-3 {
  line-height: 2rem;
}

.heading-2, .div-block-5 {
  text-align: center;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

@media screen and (max-width: 991px) {
  .section.background-section {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
  }

  .flex-footer-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-wrap: wrap;
    align-content: space-between;
  }

  .slide-content-wrapper {
    padding: 3rem;
  }

  .choice-wrapper, .conditions-wrapper {
    max-width: 300px;
  }

  .sun-image {
    right: -13%;
  }

  .circle-image {
    bottom: -13%;
  }

  .semi-circle {
    top: -13%;
  }

  .testimonial-image-block {
    align-items: center;
  }

  .featured-image-link-block {
    height: 400px;
  }

  .blog-collection-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .featured-blog {
    width: 100%;
  }

  .all-blogs {
    flex-direction: column;
  }

  .all-blog-posts {
    width: 100%;
  }

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

  .event-collection-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .tag-wrapper {
    height: auto;
  }

  .container-full-bleed.hero {
    background-position: 50% 84%;
    min-height: 400px;
  }

  .heading {
    text-align: center;
  }

  .paragraph {
    line-height: 2rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 3rem;
    line-height: 3rem;
  }

  h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  p {
    font-size: 1.1rem;
  }

  .nav-flex-block {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
  }

  .brand-logo {
    width: 180px;
    padding: 0;
  }

  .line {
    background-color: var(--maroon);
    width: 35px;
    height: 2px;
    margin-bottom: 5px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .line.last {
    margin-bottom: 0;
  }

  .menu-button, .menu-button.w--open {
    background-color: #0000;
  }

  .nav-menu {
    background-color: var(--maroon);
    color: var(--old-lace);
  }

  .nav-link {
    box-shadow: none;
    color: var(--old-lace);
  }

  .nav-link.w--current {
    box-shadow: none;
    opacity: .8;
    color: var(--old-lace);
  }

  .section {
    padding: 1.5rem;
  }

  .flex-col-wrap {
    flex-direction: column;
  }

  .flex-col-wrap.reverse-col-wrap {
    flex-direction: column-reverse;
  }

  .title-block {
    font-size: 1.2rem;
  }

  .color-wrapper-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .blog-container {
    padding: 1.5rem;
  }

  .blog-post-content-rich-text li {
    margin-bottom: .5rem;
  }

  .blog-post-content-rich-text figcaption {
    font-size: .8rem;
  }

  .flex-footer-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-direction: column;
    align-items: stretch;
  }

  .slide-content-wrapper {
    padding: 1rem;
  }

  .slide-content {
    padding: .5rem;
  }

  .sun-image {
    right: -23%;
  }

  .circle-image {
    bottom: -9%;
  }

  .semi-circle {
    top: -9%;
  }

  .testimonial-main-wrapper {
    flex-direction: column;
  }

  .testimonial-content {
    width: 100%;
    padding: 2.5rem 1rem 1rem;
  }

  .testimonial-image-block {
    width: 100%;
  }

  .testimonial-image-wrapper {
    width: 250px;
    height: 400px;
  }

  .testimonial-circle-image, .testimonial-leaf-pattern-image {
    width: 35%;
  }

  .full-width-section {
    padding: 1.5rem;
  }

  .text-container {
    width: 100%;
  }

  .image-container {
    width: 100%;
    height: 400px;
  }

  .featured-image-link-block {
    height: 300px;
  }

  .featured-details-wrapper {
    flex-direction: column;
  }

  .blog-post-snippet {
    width: 100%;
  }

  .category-name {
    text-align: center;
  }

  .blog-post-summary {
    width: 100%;
  }

  .blog-collection-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .category-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .featured-wrapper {
    height: 350px;
  }

  .bio-block {
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
    flex-direction: column;
  }

  .author-block {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

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

  .col-65-percent, .col-35-percent {
    width: 100%;
  }

  .col-35-percent.image-bg-wrapper {
    background-position: 100%;
    padding-bottom: 2rem;
  }

  .flex-col-stretch-wrap {
    flex-direction: column;
  }

  .event-collection-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .tag-name {
    text-align: center;
  }

  .tag-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .tag-wrapper {
    height: auto;
  }

  .post-summary-tag {
    display: none;
  }

  .collection-list {
    grid-template-columns: 1fr;
  }

  .faq-question-wrapper {
    grid-column-gap: .5rem;
  }

  .testimonial-section {
    padding: 1.5rem;
  }

  .container-full-bleed.hero {
    min-height: 314px;
  }

  .hero-quote {
    font-size: 20px;
  }

  .block-quote {
    font-size: 13px;
  }

  .italic-text {
    font-size: 23px;
  }
}

@media screen and (max-width: 479px) {
  p {
    font-size: 1rem;
  }

  .section {
    padding: 1rem;
  }

  .color-wrapper-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-text {
    text-align: center;
    flex: 1;
  }

  .blog-container {
    padding: .8rem;
  }

  .blog-post-content-rich-text li {
    font-size: 1rem;
  }

  .sun-image {
    right: -42%;
  }

  .circle-image {
    bottom: -11%;
    left: -3%;
  }

  .full-width-section {
    padding: 1rem;
  }

  .image-wrapper-one {
    width: 100%;
    height: 250px;
  }

  .tara-images {
    flex-direction: column;
  }

  .image-wrapper-two {
    width: 100%;
    height: 250px;
    margin-left: 0;
  }

  .featured-image-link-block, .blog-post-image-wrapper, .featured-wrapper {
    height: 200px;
  }

  .featured-blog-post-content {
    margin-top: 0;
  }

  .content-wrapper {
    padding: .5rem;
  }

  .event-image-wrapper {
    height: 200px;
  }

  .testimonial-section {
    padding: 1rem;
  }

  .container-full-bleed.hero {
    background-position: 50% 100%;
    min-height: 200px;
  }

  .hero-quote {
    font-size: 9px;
  }

  .italic-text {
    font-size: 20px;
    line-height: 22px;
  }
}

#w-node-a034fc17-676c-eba0-1321-cf3d2035a1fb-005cb67b, #w-node-fde0a8e0-ed96-1d4e-4140-a800b03d8f95-005cb67b, #w-node-_0156c2a1-65d3-b976-13f5-78513450743b-005cb67b, #w-node-_53829880-93bc-8df2-cf86-e09a8f3b428b-005cb67b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_13ba5c4e-c9fe-e4cc-6c27-ed4320c56ebc-005cb67b, #w-node-eeedf9cd-edb7-5a69-696c-94408940ef65-005cb67b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f7ddc69f-d6d1-9122-d9bb-176de16bf4c8-005cb67b {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_89e427b7-0724-1445-8032-1254f6a8d136-005cb685, #w-node-_3c8fa000-0266-3afd-4ad0-8979f6ca8fde-005cb685 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5f2a8b86-9189-b1e1-0e55-41b573014eea-005cb685, #w-node-_031e5433-a4e7-d3db-9b09-5407c7861976-005cb685, #w-node-ba98060b-c297-afca-3dc3-479ac77e7f59-005cb685, #w-node-_46e9995a-2614-3e43-74dc-d55383f11c29-005cb685 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9ded2322-6683-fe38-bac0-0d08b4159a5e-005cb685, #w-node-_9ded2322-6683-fe38-bac0-0d08b4159a60-005cb685 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9ded2322-6683-fe38-bac0-0d08b4159a62-005cb685, #w-node-_9ded2322-6683-fe38-bac0-0d08b4159a64-005cb685, #w-node-_9ded2322-6683-fe38-bac0-0d08b4159a66-005cb685, #w-node-_9ded2322-6683-fe38-bac0-0d08b4159a68-005cb685 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9f49990c-1c18-fdfa-7fba-711491524e52-005cb685, #w-node-_9f49990c-1c18-fdfa-7fba-711491524e54-005cb685 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82cd3876-e391-3c2b-bc8d-3764acc919be-005cb685, #w-node-e460e4db-ba67-6d52-b5b4-1965f05972ff-005cb685, #w-node-_9f49990c-1c18-fdfa-7fba-711491524e5c-005cb685, #w-node-e4be4e1e-38e4-ef61-7dd4-d851689f753c-005cb685 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_13ba5c4e-c9fe-e4cc-6c27-ed4320c56ebc-005cb67b, #w-node-eeedf9cd-edb7-5a69-696c-94408940ef65-005cb67b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f7ddc69f-d6d1-9122-d9bb-176de16bf4c8-005cb67b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_13ba5c4e-c9fe-e4cc-6c27-ed4320c56ebc-005cb67b, #w-node-eeedf9cd-edb7-5a69-696c-94408940ef65-005cb67b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-f7ddc69f-d6d1-9122-d9bb-176de16bf4c8-005cb67b {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: center;
  }
}


