@charset "UTF-8";
.button-group[data-align=center] {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}

a.button {
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.35rem;
  font-size: 1.2rem;
  position: relative;
  padding: 20px 30px;
  font-weight: 600;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
a.button:hover {
  background-color: #000;
  color: #FFF;
}
a.button.white {
  color: #000;
  background-color: #FFF;
  border: 1px solid #F5F5F5;
}
a.button.white:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #FFF;
}
a.button.gray {
  color: #201E1D;
  background-color: #F5F5F5;
}
a.button.gray:hover {
  background-color: #000;
  color: #FFF;
}
a.button.pink {
  color: #FFF;
  background-color: #F3967D;
}
a.button.pink:hover {
  background-color: #000;
  color: #FFF;
}
a.button.black {
  color: #FFF;
  background-color: #000;
}
a.button.black:hover {
  background-color: #F3967D;
  color: #FFF;
}
a.button.arrow {
  background-image: url(../assets/icons/arrow-right-long-dark.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
  padding: 20px 56px 18px 30px;
}
a.button.arrow:hover {
  background-image: url(../assets/icons/arrow-right-long-white.svg);
}
a.button.arrow.pink, a.button.arrow.black {
  background-image: url(../assets/icons/arrow-right-long-white.svg);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  padding: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2rem;
  margin: 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

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

html {
  font-size: 9px;
  color: #A9A4A3;
  height: 100%;
}

body {
  background-color: #FFF;
  font-family: "Lora", serif;
  font-size: 10px;
  line-height: 1.5rem;
  color: #A9A4A3;
  letter-spacing: -0.02em;
  font-weight: 400;
  height: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #736E6D;
}

:focus {
  outline: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none !important;
}
img.framed {
  border: 1px solid #E7E6E5;
}

.underline {
  text-decoration: underline;
}

.page-container {
  background-color: #FFF;
  padding-top: 90px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  height: auto;
  min-height: 100%;
}

.re-page-content {
  padding-top: 6rem;
  flex-grow: 1;
  -webkit-flex-grow: 1;
}

.re-page-width {
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.re-medium-width {
  max-width: 960px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.re-small-width {
  max-width: 720px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 640px) {
  .re-small-width {
    padding-left: 40px;
    padding-right: 40px;
  }
}

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

.width-10.center,
.width-20.center,
.width-30.center,
.width-40.center,
.width-50.center,
.width-60.center,
.width-70.center,
.width-80.center,
.width-90.center,
.width-100.center {
  margin-left: auto;
  margin-right: auto;
}

.width-10 {
  width: 10%;
}

.width-20 {
  width: 20%;
}

.width-30 {
  width: 30%;
}

.width-40 {
  width: 40%;
}

.width-50 {
  width: 50%;
}

.width-60 {
  width: 60%;
}

.width-70 {
  width: 70%;
}

.width-80 {
  width: 80%;
}

.width-90 {
  width: 90%;
}

.width-100 {
  width: 100%;
}

::-moz-selection {
  background-color: #FBE6E1;
  color: #000;
}

::selection {
  background-color: #FBE6E1;
  color: #000;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #F3967D;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #F3967D;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #F3967D;
}

:-moz-placeholder { /* Firefox 18- */
  color: #F3967D;
}

.re-404-page .re-page-section .re-page-title-section .re-page-description {
  margin-bottom: 30px;
}

.re-coming-soon-page .re-header-component,
.re-coming-soon-page .re-footer-component {
  display: none !important;
}
.re-coming-soon-page .page-container,
.re-coming-soon-page .re-page-content {
  padding: 0 !important;
}
.re-coming-soon-page .re-page-content {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
@media all and (max-width: 640px) {
  .re-coming-soon-page .re-page-section {
    padding: 0;
  }
}
.re-coming-soon-page .re-page-section .re-author-callout {
  background-color: #F9F7F4;
  padding: 20px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media all and (max-width: 640px) {
  .re-coming-soon-page .re-page-section .re-author-callout {
    gap: 18px;
  }
}
.re-coming-soon-page .re-page-section .re-author-callout .image {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 100px;
  overflow: hidden;
}
@media all and (max-width: 640px) {
  .re-coming-soon-page .re-page-section .re-author-callout .image {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
}
.re-coming-soon-page .re-page-section .re-author-callout .image img {
  object-fit: cover;
  object-position: center;
  object-view-box: inset(30% 30% 20% 0%);
}
.re-coming-soon-page .re-page-section .re-author-callout p.text {
  margin-bottom: 0;
}
@media all and (max-width: 640px) {
  .re-coming-soon-page .re-page-section .re-author-callout p.text {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
.re-coming-soon-page .re-page-section .re-author-callout p.text .signature {
  color: #000;
  font-weight: 600;
}
.re-coming-soon-page .re-page-section .hero-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.re-coming-soon-page .re-page-section .hero-image-grid .image:nth-child(1), .re-coming-soon-page .re-page-section .hero-image-grid .image:nth-child(4) {
  grid-column: span 2;
}
.re-coming-soon-page .re-page-section .hero-image-grid .image:nth-child(1), .re-coming-soon-page .re-page-section .hero-image-grid .image:nth-child(2) {
  height: 150px;
}
@media all and (max-width: 640px) {
  .re-coming-soon-page .re-page-section .hero-image-grid .image:nth-child(1), .re-coming-soon-page .re-page-section .hero-image-grid .image:nth-child(2) {
    height: 100px;
  }
}
.re-coming-soon-page .re-page-section .hero-image-grid .image:nth-child(3), .re-coming-soon-page .re-page-section .hero-image-grid .image:nth-child(4) {
  height: 200px;
}
@media all and (max-width: 640px) {
  .re-coming-soon-page .re-page-section .hero-image-grid .image:nth-child(3), .re-coming-soon-page .re-page-section .hero-image-grid .image:nth-child(4) {
    height: 120px;
  }
}
.re-coming-soon-page .re-page-section .hero-image-grid .image img {
  object-fit: cover;
  object-position: center;
}

@media all and (max-width: 768px) {
  .re-page-content {
    padding-top: 40px;
  }
}
h1 {
  text-align: center;
  font-size: 2.5rem;
  line-height: 2.9rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  color: #000;
  font-family: "DM Serif Text", serif;
  letter-spacing: 0rem;
  font-size: 4.2rem;
  line-height: 4.8rem;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  line-height: 2.9rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  color: #000;
  font-family: "DM Serif Text", serif;
  letter-spacing: 1.2rem;
  font-size: 2.8rem;
  line-height: 3.2rem;
  text-transform: uppercase;
  text-align: left;
}

h3 {
  text-align: center;
  font-size: 2.5rem;
  line-height: 2.9rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  color: #000;
  font-family: "DM Serif Text", serif;
  text-transform: uppercase;
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: 0;
  text-align: left;
}

h4 {
  text-align: center;
  font-size: 2.5rem;
  line-height: 2.9rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  color: #000;
  font-family: "DM Serif Text", serif;
  text-transform: none;
  font-size: 2.6rem;
  line-height: 3.4rem;
  letter-spacing: 0;
  text-align: left;
}

h5 {
  text-align: center;
  font-size: 2.5rem;
  line-height: 2.9rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  color: #000;
  font-family: "DM Serif Text", serif;
  text-transform: none;
  font-size: 2rem;
  line-height: 2.6rem;
  letter-spacing: 0;
  text-align: left;
}

h6 {
  text-align: center;
  font-size: 2.5rem;
  line-height: 2.9rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  color: #000;
  font-family: "DM Serif Text", serif;
  text-transform: none;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0;
  text-align: left;
}

p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #736E6D;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 20px;
}
p.center {
  text-align: center;
}
p strong {
  font-weight: 700;
}

ul {
  list-style: none;
}
strong {
  font-weight: 500;
  color: #423F3E;
}

a.highlighter {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4rem;
  letter-spacing: 0.23rem;
  color: #000;
  text-transform: uppercase;
  padding: 0 8px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
a.highlighter:after {
  content: "";
  height: 8px;
  background-color: #FBE6E1;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: -1;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

.re-richtext a {
  color: #201E1D;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 3px;
  text-decoration-color: #FBD6CB;
  text-decoration-style: solid;
  font-weight: 700;
  transition: background-size 0.3s;
  border-bottom: none;
}
.re-richtext a:hover {
  text-decoration-color: #000;
}
.re-richtext h1, .re-richtext h2 {
  font-family: "DM Serif Text", serif;
  font-size: 2.8rem;
  line-height: 3.6rem;
  text-align: left;
  margin-top: 45px;
  margin-bottom: 15px;
  font-weight: 500;
}
.re-richtext h1 a, .re-richtext h2 a {
  background-position: 0px 80%;
}
.re-richtext h3 {
  font-family: "DM Serif Text", serif;
  font-size: 4.2rem;
  line-height: 4.8rem;
  text-align: left;
  margin-top: 45px;
  margin-bottom: 15px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.re-richtext h3 a {
  background-position: 0px 100%;
}
.re-richtext h4 {
  font-family: "DM Serif Text", serif;
  font-size: 2.5rem;
  line-height: 3.5rem;
  text-align: left;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.1rem;
}
.re-richtext h4 a {
  background-position: 0px 80%;
}
.re-richtext h5, .re-richtext h6 {
  font-family: "DM Serif Text", serif;
  font-size: 2rem;
  line-height: 3rem;
  text-align: left;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}
.re-richtext p {
  font-size: 1.8rem;
  line-height: 3.6rem;
  color: #423F3E;
  margin-bottom: 30px;
}
@media all and (max-width: 640px) {
  .re-richtext p {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
}
.re-richtext ul {
  margin-bottom: 30px;
  padding-left: 20px;
  list-style: disc;
}
.re-richtext ul li {
  font-size: 1.8rem;
  line-height: 3.6rem;
  color: #423F3E;
  margin-bottom: 0px;
}
.re-richtext ol {
  margin-bottom: 30px;
  padding-left: 20px;
}
.re-richtext ol li {
  font-size: 1.8rem;
  line-height: 3.6rem;
  color: #423F3E;
  margin-bottom: 0px;
}
.re-richtext blockquote {
  border-left: none;
  margin: 0;
  padding-left: 0;
}
.re-richtext blockquote p {
  font-size: 2.5rem;
  line-height: 3.2rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 30px;
  color: #423F3E;
  width: 820px;
  position: relative;
  left: 0;
  background-size: 2px 1em;
  box-shadow: inset 0 -1px #F7F9FA, inset 0 -10px #FBE6E1;
  display: inline;
}
.re-richtext blockquote p:after {
  content: "";
  margin-bottom: 30px;
  display: block;
}
.re-richtext .wp-block-image img {
  max-width: initial;
}
.re-richtext img {
  width: 100%;
  margin-bottom: 50px;
  margin-top: 50px;
}
.re-richtext figure.wp-caption {
  width: auto !important;
}
.re-richtext figure.wp-caption img {
  margin-bottom: 20px;
}
.re-richtext figure.wp-caption figcaption {
  margin-bottom: 50px;
  text-align: center;
  font-style: italic;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #736E6D;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #736E6D;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #736E6D;
}

.re-schedule-page .service-picker {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  margin-bottom: 20px;
}
.re-schedule-page .service-picker a {
  width: calc(50% - 10px);
  display: block;
  padding: 16px;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #FFF;
  color: #A9A4A3;
  border: 1px solid #CECBCA;
  border-radius: 6px;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-schedule-page .service-picker a.selected {
  background-color: #000;
  color: #FFF;
  border: 1px solid #000;
}
.re-schedule-page .service-picker a:not(.selected):hover {
  color: #A9A4A3;
  border: 1px solid #A9A4A3;
}

.re-form-container {
  position: relative;
  z-index: 1;
}

.gform_wrapper .gform_body input,
.gform_wrapper .gform_body select,
.gform_wrapper .gform_body textarea {
  display: block;
  border: 1px solid #E7E6E5;
  width: 100%;
  height: 42px;
  color: #736E6D;
  text-align: left;
  font-size: 1.3rem;
  line-height: 1.7rem;
  font-weight: 500;
  padding-left: 15px;
  font-family: "Lora", serif;
  letter-spacing: -0.02rem;
  cursor: text;
  box-shadow: 0 0 0 1px #E7E6E5, 0 0 0 0px #FAFAFA;
  border-color: transparent;
  background-color: #FFF;
  margin-right: 0;
  outline: none;
  -webkit-appearance: none;
}
.gform_wrapper .gform_body input:focus,
.gform_wrapper .gform_body select:focus,
.gform_wrapper .gform_body textarea:focus {
  box-shadow: 0 0 0 1px #CECBCA, 0 0 0 0px #FAFAFA;
}
.gform_wrapper .gform_body input.search,
.gform_wrapper .gform_body select.search,
.gform_wrapper .gform_body textarea.search {
  background-image: url(../assets/icons/search-gray.svg);
  background-position: 12px 50%;
  background-repeat: no-repeat;
  background-size: 14px;
  padding-left: 36px;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield {
  margin-bottom: 30px;
  padding-right: 0 !important;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .charleft.ginput_counter {
  color: #000;
  font-size: 1.3rem;
  font-family: "DM Sans", sans-serif;
  margin-top: 5px;
  font-weight: 500;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.full-width .ginput_container.ginput_container_checkbox ul.gfield_checkbox li {
  width: auto;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.full-width .ginput_container.ginput_container_checkbox ul.gfield_checkbox li input[type=checkbox] + label {
  padding-right: 20px;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.gf_inline {
  width: calc(33.3333333333% - 10px) !important;
  padding-right: 0 !important;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield#field_1_9, .gform_wrapper .gform_body ul.gform_fields li.gfield#field_1_12 {
  width: calc(33.3333333333% - 0px) !important;
  display: inline-block;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield#field_1_9, .gform_wrapper .gform_body ul.gform_fields li.gfield#field_1_10, .gform_wrapper .gform_body ul.gform_fields li.gfield#field_1_12 {
  margin-right: 10px !important;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield#field_1_10, .gform_wrapper .gform_body ul.gform_fields li.gfield#field_1_11 {
  display: inline-block;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield#field_1_10 .gfield_label,
.gform_wrapper .gform_body ul.gform_fields li.gfield#field_1_10 .gfield_label, .gform_wrapper .gform_body ul.gform_fields li.gfield#field_1_11 .gfield_label,
.gform_wrapper .gform_body ul.gform_fields li.gfield#field_1_11 .gfield_label {
  color: transparent;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container {
  display: none;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.small-label label.gfield_label {
  font-size: 1.4rem;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.small-label {
  margin-bottom: 30px;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.gfield_html.style-break hr {
  border: none;
  height: 1px;
  background-color: #F5F5F5;
  margin-bottom: -5px;
  margin-top: 10px;
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
  left: -60px;
  width: calc(100% + 120px);
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.gfield_html.style-alert {
  background-color: #F5F5F5;
  padding: 20px;
  padding-right: 20px !important;
  position: relative;
  font-size: 1.5rem;
  line-height: 2.1rem;
  font-family: "DM Sans", sans-serif;
  color: #736E6D;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.gfield_html.style-alert:after {
  position: absolute;
  content: "";
  background-image: url(../assets/icons/alert-orange.svg);
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  top: 20px;
  left: 12px;
  display: block;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.gfield_html.style-default {
  background-color: #FFF;
  padding: 15px 25px;
  position: relative;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.gfield_html.style-default a {
  color: #423F3E;
  border-radius: 0;
  text-decoration: none;
  background-image: linear-gradient(#423F3E, #423F3E), linear-gradient(#F3967D, #F3967D);
  background-position: 0% 100%, 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px, 100% 2px;
  font-weight: 500;
  transition: background-size 0.3s;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.gfield_html.style-default a:hover {
  background-size: 100% 2px, 100% 2px;
  border-bottom: none;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield:not(.gfield_contains_required) label.gfield_label:after {
  content: "(optional)";
  color: #A9A4A3;
  font-weight: 400;
  font-size: 1.1rem;
  position: relative;
  top: -1px;
  margin-left: 5px;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.gfield_error .ginput_container_fileupload .ginput_preview {
  background-color: #fff5f5;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield.gfield_error .ginput_container_fileupload .ginput_preview strong {
  color: #F3967D;
  font-weight: 500;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield label.gfield_label {
  display: block;
  color: #201E1D;
  font-family: "DM Serif Text", serif;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin-bottom: 16px;
  letter-spacing: 0;
}
@media all and (max-width: 640px) {
  .gform_wrapper .gform_body ul.gform_fields li.gfield label.gfield_label {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
}
.gform_wrapper .gform_body ul.gform_fields li.gfield label.gfield_label .gfield_required {
  color: #F3967D;
  margin-left: 5px;
  display: none;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield label.gfield_label:has(+ .gfield_description) {
  margin-bottom: 8px;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container .hidden_sub_label {
  display: none;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_complex .clear-multi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media all and (max-width: 640px) {
  .gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_complex .clear-multi {
    gap: 8px;
  }
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_address {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_address label {
  margin-bottom: 5px;
  display: block;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_address .address_line_1,
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_address .address_line_2 {
  width: 100%;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_address .ginput_full {
  margin-bottom: 15px;
  display: block;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_address .address_city,
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_address .address_state {
  width: calc(40% - 15px);
  display: block;
  margin-right: 15px;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_address .address_zip {
  display: block;
  width: calc(20% - 0px);
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_address .address_country {
  margin-top: 15px;
  display: block;
  width: 100%;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_creditcard .ginput_full {
  margin-bottom: 20px;
  display: block;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_creditcard .ginput_full .StripeElement {
  background-color: #FFF;
  height: 48px;
  padding: 15px 10px;
  border-radius: 0px;
  border: 1px solid #E7E6E5;
  box-shadow: none;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_radio ul.gfield_radio {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: 16px;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_radio ul.gfield_radio li {
  margin-bottom: 0;
  height: 50px;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_radio ul.gfield_radio li input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_radio ul.gfield_radio li input[type=radio]:checked + label {
  background-color: #000;
  border: 1px solid #000;
  color: #FFF;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_radio ul.gfield_radio li input[type=radio] + label {
  background: #FAFAFA;
  color: #A9A4A3;
  text-align: center;
  width: 100%;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 48px;
  height: 50px;
  display: block;
  border: 1px solid #E7E6E5;
  cursor: pointer;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.2rem;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_checkbox ul.gfield_checkbox {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_checkbox ul.gfield_checkbox li {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
  width: calc(50% - 10px);
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_checkbox ul.gfield_checkbox li:only-child {
  margin-bottom: 0;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_checkbox ul.gfield_checkbox li input[type=checkbox] {
  display: none;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_checkbox ul.gfield_checkbox li input[type=checkbox]:checked + label {
  color: #201E1D;
  background-image: url(../assets/icons/icon-checkmark-pink.svg);
  box-shadow: none;
  background-repeat: no-repeat;
  background-position: 18px 50%;
  background-size: 14px;
  border: 1px solid #A9A4A3;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_checkbox ul.gfield_checkbox li input[type=checkbox] + label {
  background-image: url(../assets/icons/icon-checkmark-gray.svg);
  background-repeat: no-repeat;
  background-position: 18px 50%;
  background-size: 14px;
  border: 1px solid #E7E6E5;
  padding: 16px 10px;
  padding-left: 45px;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  color: #736E6D;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.05rem;
  -webkit-user-select: none; /* webkit (safari, chrome) browsers */
  -moz-user-select: none; /* mozilla browsers */
  -khtml-user-select: none; /* webkit (konqueror) browsers */
  -ms-user-select: none; /* IE10+ */
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_textarea textarea {
  min-width: 100%;
  max-width: 100%;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_fileupload .screen-reader-text {
  display: none;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_fileupload .jbfile-styler__left .jbfile-styler__button {
  padding: 11px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: #423F3E !important;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_fileupload .jbfile-styler__left .jbfile-styler__button:hover, .gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_fileupload .jbfile-styler__left .jbfile-styler__button:focus, .gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_fileupload .jbfile-styler__left .jbfile-styler__button:active {
  background-color: #201E1D !important;
  opacity: 1 !important;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_fileupload .jbfile-styler__left .jbfile-styler__caption {
  padding: 10px 10px 10px 15px;
  border-color: 1px solid #E7E6E5;
  font-size: 0.9rem;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_fileupload .ginput_preview {
  border: 1px solid #E7E6E5;
  padding: 10px;
  position: relative;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_fileupload .ginput_preview img {
  width: auto;
  height: auto;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_fileupload .ginput_preview img.gform_delete {
  object-position: -99999px 99999px;
  position: relative;
  background-image: url(../assets/icons/delete.svg);
  background-color: #f1f2f3;
  background-position: center;
  background-size: 14px;
  background-repeat: no-repeat;
  height: 100%;
  width: 45px;
  margin-top: 0;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .ginput_container.ginput_container_fileupload input[type=file] {
  height: auto;
  padding-left: 0;
  width: auto;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .gfield_description {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 400;
  margin-bottom: 12px;
  margin-top: 0px;
  color: #736E6D;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield .gfield_description.validation_message {
  color: #F3967D;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 10px;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield input,
.gform_wrapper .gform_body ul.gform_fields li.gfield select,
.gform_wrapper .gform_body ul.gform_fields li.gfield textarea,
.gform_wrapper .gform_body ul.gform_fields li.gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  display: block;
  border: 1px solid #CECBCA;
  width: 100%;
  height: 48px;
  color: #000;
  text-align: left;
  font-size: 1.4rem;
  line-height: 48px;
  font-weight: 500;
  padding-left: 15px;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0;
  box-shadow: none;
  cursor: text;
  background-color: #FFF;
  margin-right: 0;
  outline: none;
  -webkit-appearance: none;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield input:focus,
.gform_wrapper .gform_body ul.gform_fields li.gfield select:focus,
.gform_wrapper .gform_body ul.gform_fields li.gfield textarea:focus,
.gform_wrapper .gform_body ul.gform_fields li.gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus {
  border: 1px solid #000;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield input::placeholder,
.gform_wrapper .gform_body ul.gform_fields li.gfield select::placeholder,
.gform_wrapper .gform_body ul.gform_fields li.gfield textarea::placeholder,
.gform_wrapper .gform_body ul.gform_fields li.gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder {
  color: #CECBCA;
}
.gform_wrapper .gform_body ul.gform_fields li.gfield select {
  background-image: url(../assets/icons/arrow-down-black.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-color: #FFF;
  background-position: calc(100% - 15px) 50%;
  cursor: pointer;
}
@media all and (max-width: 640px) {
  .gform_wrapper .gform_body ul.gform_fields li.gfield select {
    background-size: 12px;
  }
}
.gform_wrapper .gform_body ul.gform_fields li.gfield textarea {
  padding: 15px;
  font-weight: 500;
  min-height: 120px;
  line-height: 2rem;
}
.gform_wrapper .gform_footer .gform_ajax_spinner {
  position: fixed;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  height: 120px;
  width: 120px;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 36px;
  border-radius: 0px;
}
.gform_wrapper .gform_footer .gform_button.re-button.pink {
  background-color: #201E1D;
  letter-spacing: 0.05rem;
  font-family: "DM Serif Text", serif;
  -webkit-appearance: none;
  color: #FFF;
  width: 100%;
  padding: 20px;
  font-size: 1.8rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
.gform_wrapper .gform_footer .gform_button.re-button.pink:hover {
  background-color: #000;
}
.gform_wrapper .gform_submission_error {
  border: 1px solid #FBE6E1;
  background-color: #FFF7F7;
  padding: 16px 12px;
  text-align: center;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.6rem;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: none;
}

.gform_confirmation_wrapper {
  position: relative;
  z-index: 1;
}
.gform_confirmation_wrapper .gform_confirmation_message {
  margin-bottom: -10px;
  font-size: 1.8rem;
  line-height: 3rem;
  color: #736E6D;
  text-align: center;
  font-weight: 500;
}

.re-header-component {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  background-color: #FFF;
  height: 90px;
  padding-left: 30px;
  padding-right: 30px;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
}
.re-header-component > .re-search-button,
.re-header-component > .re-search {
  display: none;
}
.re-header-component > .re-search-button {
  background-image: url(../assets/icons/icon-search.svg);
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
  cursor: pointer;
}
.re-header-component .re-search {
  padding: 20px 20px;
  min-width: auto;
  max-width: initial;
  width: calc(100% - 60px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  margin-top: 0;
  display: none;
  margin-bottom: 0;
}
.re-header-component .re-search.active {
  display: none;
}
.re-header-component .re-search form input.search {
  height: 52px;
  font-size: 1.5rem;
  padding-left: 50px;
  background-size: 18px;
}
@media all and (max-width: 640px) {
  .re-header-component .re-search form input.search {
    height: 48px;
    font-size: 1.3rem;
    line-height: 48px;
    padding-left: 56px;
    background-size: 18px;
  }
}
.re-header-component a.re-logo {
  background-image: url(../assets/re-logo.svg);
  background-size: contain;
  background-position: 0 center;
  background-repeat: no-repeat;
  width: 200px;
  height: 50px;
  display: block;
  font-family: "DM Serif Text", serif;
  font-size: 2.3rem;
  line-height: 2.5rem;
  padding-top: 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.45rem;
  color: #000;
  font-weight: 500;
}
.re-header-component nav {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-header-component nav .re-instagram {
  display: none;
}
.re-header-component nav ul {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
}
.re-header-component nav ul li {
  list-style: none;
}
.re-header-component nav ul li.current-menu-item a {
  color: #000;
}
.re-header-component nav ul li.current-menu-item a:after {
  height: 8px;
}
.re-header-component nav ul li a {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.23rem;
  color: #736E6D;
  text-transform: uppercase;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 500;
  position: relative;
  display: block;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-header-component nav ul li a:hover {
  color: #000;
}
.re-header-component nav ul li a:hover:after {
  height: 8px;
}
.re-header-component nav ul li a:after {
  content: "";
  height: 0px;
  background-color: #FBE6E1;
  position: absolute;
  bottom: 18px;
  left: 10%;
  width: 78%;
  z-index: -1;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-header-component nav.open {
  transform: translateX(0);
}
.re-header-component a.schedule {
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  background-color: #F3967D;
  background-image: url(../assets/icons/icon-rings.svg);
  background-position: 18px 50%;
  background-size: 22px;
  background-repeat: no-repeat;
  padding-left: 50px;
  padding-right: 15px;
  height: 45px;
  line-height: 45px;
  font-weight: 600;
  text-transform: uppercase;
  color: #FFF;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-header-component a.schedule:hover {
  background-color: #000;
}
.re-header-component a.schedule.mobile {
  display: none;
}
.re-header-component .hamburger {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000000;
  width: 80px;
  height: 65px;
  cursor: pointer;
  display: none;
}
.re-header-component .hamburger .patty {
  width: 25px;
  height: 2px;
  background: #313e4c;
  top: calc(50% - 2px);
  left: calc(50% - 10px);
  right: 0;
  border-radius: 5px;
  position: absolute;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-header-component .hamburger .patty.open {
  background: none !important;
}
.re-header-component .hamburger .patty.open:before {
  top: 0 !important;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.re-header-component .hamburger .patty.open:after {
  top: 0 !important;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.re-header-component .hamburger .patty:before, .re-header-component .hamburger .patty:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #313e4c;
  position: absolute;
  border-radius: 5px;
  right: 0;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-header-component .hamburger .patty:before {
  top: -9px;
}
.re-header-component .hamburger .patty:after {
  top: 9px;
}

@media all and (max-width: 1080px) {
  .re-header-component nav ul li a {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media all and (max-width: 959px) {
  .re-header-component {
    padding-left: 20px;
    padding-right: 20px;
  }
  .re-header-component > .re-search-button {
    display: block;
  }
  .re-header-component .re-search.active {
    display: block;
  }
  .re-header-component nav {
    position: fixed;
    height: calc(100% - 90px);
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #FFF;
    transform: translateX(100%);
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .re-header-component nav::before {
    content: "";
    background-image: url(../assets/images/home-callout-blog.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-y: 40%;
    height: 0;
    width: 100%;
    top: 0;
    position: absolute;
    left: 0;
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    transition-delay: 0.2s;
    transition-timing-function: cubic-bezier(0.9, 0, 0.1, 1);
  }
  .re-header-component nav.open::before {
    height: 24vh;
    background-position-y: 50%;
  }
  .re-header-component nav.open ul li a {
    opacity: 1;
    transform: translateY(0);
  }
  .re-header-component nav.open a.schedule {
    opacity: 1;
    transform: translateY(0);
  }
  .re-header-component nav ul {
    width: 100%;
    margin-top: 24vh;
    padding-top: 20px;
  }
  .re-header-component nav ul li {
    display: block;
    width: 100%;
  }
  .re-header-component nav ul li.current-menu-item a {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    text-decoration-color: #FBD6CB;
    text-decoration-style: solid;
  }
  .re-header-component nav ul li.current-menu-item a:after {
    display: none;
  }
  .re-header-component nav ul li a {
    text-align: center;
    font-size: 1.6rem;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #000;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    transition-timing-function: cubic-bezier(0.85, 0, 0.15, 1);
    transform: translateY(16px);
    opacity: 0;
  }
  .re-header-component nav ul li:nth-child(1) a {
    transition-delay: 0.3s;
  }
  .re-header-component nav ul li:nth-child(2) a {
    transition-delay: 0.35s;
  }
  .re-header-component nav ul li:nth-child(3) a {
    transition-delay: 0.4s;
  }
  .re-header-component nav ul li:nth-child(4) a {
    transition-delay: 0.45s;
  }
  .re-header-component nav ul li:nth-child(5) a {
    transition-delay: 0.5s;
  }
  .re-header-component a.schedule {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    background-position: calc(50% - 75px) 50%;
    text-align: center;
    font-size: 1.3rem;
    height: 52px;
    line-height: 52px;
    transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    transform: translateY(30px);
    opacity: 0;
    transition-delay: 0.55s;
  }
  .re-header-component a.schedule.desktop {
    display: none;
  }
  .re-header-component a.schedule.mobile {
    display: block;
  }
  .re-header-component a.re-logo {
    width: calc(100% - 140px);
    right: 70px;
    text-align: center;
    position: relative;
    background-position: 50% 50%;
  }
  .re-header-component > .re-instagram {
    display: none;
  }
  .re-header-component .hamburger {
    display: block;
    height: 90px;
    width: 60px;
  }
}
@media all and (max-width: 768px) {
  .re-header-component {
    padding-left: 10px;
    border-bottom: 1px solid #E8E8E8;
  }
  .re-header-component nav ul li a:after {
    left: 45%;
    width: 10%;
  }
}
@media all and (max-width: 640px) {
  .re-header-component a.re-logo {
    width: calc(100% - 100px);
    right: 40px;
    padding-bottom: 0;
    padding-top: 10px;
    font-size: 2.1rem;
    letter-spacing: 0.35rem;
  }
  .re-header-component nav ul li a {
    font-size: 1.4rem;
  }
  .re-header-component nav > .re-instagram {
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.6rem;
  }
  .re-header-component > .re-instagram {
    display: none;
  }
  .re-header-component .hamburger {
    display: block;
    height: 90px;
    width: 60px;
  }
}
.re-page-section {
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
}
.re-page-section .re-section-title {
  margin-bottom: 4rem;
  text-align: center;
}
.re-page-section[data-theme=cream] {
  background-color: #F9F7F4;
}
.re-page-section.inner-padding-none .re-page-width,
.re-page-section.inner-padding-none .re-medium-width,
.re-page-section.inner-padding-none .re-small-width {
  padding-left: 0;
  padding-right: 0;
}
.re-page-section.re-border-section {
  height: 1px;
  max-width: 1200px;
  width: 100%;
  background-color: #E7E6E5;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.re-page-section[data-padding-top=none] {
  padding-top: 0;
}
.re-page-section[data-padding-top=medium] {
  padding-top: 6rem;
}
.re-page-section[data-padding-top=small] {
  padding-top: 4rem;
}
.re-page-section[data-padding-top=xsmall] {
  padding-top: 2rem;
}
.re-page-section[data-padding-bottom=none] {
  padding-bottom: 0;
}
.re-page-section[data-padding-bottom=medium] {
  padding-bottom: 6rem;
}
.re-page-section[data-padding-bottom=small] {
  padding-bottom: 4rem;
}
.re-page-section[data-padding-bottom=xsmall] {
  padding-bottom: 2rem;
}
.re-page-section.padding-top-none {
  padding-top: 0;
}
.re-page-section.padding-bottom-none {
  padding-bottom: 0;
}
.re-page-section.padding-top-60 {
  padding-top: 6rem;
}
.re-page-section.padding-bottom-60 {
  padding-bottom: 6rem;
}
.re-page-section.padding-top-40 {
  padding-top: 4rem;
}
.re-page-section.padding-bottom-40 {
  padding-bottom: 4rem;
}
.re-page-section.padding-top-20 {
  padding-top: 2rem;
}
.re-page-section.padding-bottom-20 {
  padding-bottom: 2rem;
}
.re-page-section.border-top {
  border-top: 1px solid #E7E6E5;
}
.re-page-section.border-bottom {
  border-bottom: 1px solid #E7E6E5;
}
.re-page-section.bg-white {
  background-color: #FFF;
}
.re-page-section.bg-dark {
  background-color: #201E1D;
}
.re-page-section.overflow-auto {
  overflow: auto;
}
.re-page-section .re-page-title-section {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.re-page-section .re-page-title-section .re-rule {
  width: 25%;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  background-color: #CECBCA;
}
.re-page-section .re-page-title-section .re-page-title-prefix {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.35rem;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.2rem;
  color: #F3967D;
  margin-bottom: 30px;
  font-family: "DM Sans", sans-serif;
}
.re-page-section .re-page-title-section .re-page-title {
  font-size: 4.2rem;
  line-height: 4.8rem;
  letter-spacing: 0rem;
  font-family: "DM Serif Text", serif;
  color: #000;
}
@media all and (max-width: 640px) {
  .re-page-section .re-page-title-section .re-page-title {
    font-size: 3.8rem;
    line-height: 4.2rem;
  }
}
.re-page-section .re-page-title-section .re-page-description {
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-family: "DM Sans", sans-serif;
  color: #736E6D;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 0;
}
.re-page-section .re-tab-component {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
.re-page-section .re-tab-component ul.menu {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
.re-page-section .re-tab-component ul.menu li.current-menu-item a {
  color: #000;
  font-weight: 600;
}
.re-page-section .re-tab-component ul.menu li.current-menu-item a:after {
  height: 8px;
  background-color: #FBE6E1;
}
.re-page-section .re-tab-component ul.menu li.current-menu-item a:hover:after {
  background-color: #FBD6CB;
}
.re-page-section .re-tab-component ul.menu li a {
  padding: 20px;
  font-size: 1.3rem;
  letter-spacing: 0.4rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  position: relative;
  display: block;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-page-section .re-tab-component ul.menu li a:hover {
  color: #000;
}
.re-page-section .re-tab-component ul.menu li a:hover:after {
  height: 8px;
  background-color: #FBE6E1;
}
.re-page-section .re-tab-component ul.menu li a:after {
  content: "";
  height: 0px;
  background-color: transparent;
  position: absolute;
  bottom: 18px;
  left: 18%;
  width: 60%;
  z-index: -1;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-page-section .re-tab-component .re-search-button {
  background-image: url(../assets/icons/icon-search.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  margin-left: 10px;
  cursor: pointer;
}

.re-callout-section {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media all and (max-width: 768px) {
  .re-callout-section {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media all and (max-width: 640px) {
  .re-callout-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.re-callout-section .re-small-width {
  max-width: 820px;
}
.re-callout-section .re-callout-prefix {
  color: #F3967D;
  text-align: center;
  margin-bottom: 4rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.35rem;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.2rem;
  color: #F3967D;
  margin-bottom: 30px;
  font-family: "DM Sans", sans-serif;
}
@media all and (max-width: 640px) {
  .re-callout-section .re-callout-prefix {
    margin-bottom: 2rem;
  }
}
.re-callout-section .re-callout-title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 2.9rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  color: #000;
  font-family: "DM Serif Text", serif;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 0rem;
  font-size: 4.2rem;
  line-height: 4.8rem;
  text-transform: none;
}
@media all and (max-width: 640px) {
  .re-callout-section .re-callout-title {
    font-size: 3.6rem;
    line-height: 4.2rem;
    margin-bottom: 2rem;
  }
}
.re-callout-section .re-callout-description {
  font-family: "DM Sans", sans-serif;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 0;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 640px) {
  .re-callout-section .re-callout-description {
    max-width: 100%;
  }
}
.re-callout-section a.button {
  margin-top: 4rem;
}
@media all and (max-width: 640px) {
  .re-callout-section a.button {
    margin-top: 2rem;
  }
}
.re-callout-section[data-theme=image] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  position: relative;
  height: 540px;
}
@media all and (max-width: 768px) {
  .re-callout-section[data-theme=image] {
    height: auto;
  }
}
.re-callout-section[data-theme=image] .re-callout-title {
  font-size: 4.8rem;
  line-height: 4.8rem;
}
@media all and (max-width: 640px) {
  .re-callout-section[data-theme=image] .re-callout-title {
    font-size: 4.2rem;
    line-height: 4.4rem;
  }
}
.re-callout-section[data-theme=image] .re-callout-title,
.re-callout-section[data-theme=image] .re-callout-description {
  color: #FFF;
}
.re-callout-section[data-theme=image] .re-callout-description {
  font-family: "DM Sans", sans-serif;
}
.re-callout-section[data-theme=image] .overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.re-callout-section[data-theme=dark] {
  background-color: #201E1D;
}
.re-callout-section[data-theme=dark] .re-callout-title {
  color: #FFF;
}
.re-callout-section[data-theme=dark] .re-callout-description {
  color: #CECBCA;
}
.re-callout-section[data-theme=dark] a.button.white:hover {
  background-color: #F3967D;
  border: 1px solid #F3967D;
}
.re-callout-section[data-theme=cream] {
  background-color: #F9F7F4;
}
.re-callout-section[data-theme=cream] .re-callout-title {
  color: #000;
}
.re-callout-section[data-theme=cream] .re-callout-description {
  color: #736E6D;
}
.re-callout-section[data-theme=white] {
  background-color: #FFF;
}
.re-callout-section[data-theme=white] .re-callout-title {
  color: #000;
}
.re-callout-section[data-theme=white] .re-callout-description {
  color: #736E6D;
}

footer.re-footer-component {
  background-color: #FFF;
  padding-top: 12rem;
  position: relative;
}
footer.re-footer-component .re-footer-top {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  padding-top: 6rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #3D454D;
  z-index: 1;
}
footer.re-footer-component .re-footer-top .re-profile {
  height: 60px;
  border-radius: 8px;
  padding: 8px 12px 8px 8px;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
}
footer.re-footer-component .re-footer-top .re-profile .re-image {
  background-image: url(../assets/images/mattolpinski-square.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 45px;
  width: 45px;
  min-width: 45px;
  border-radius: 45px;
  margin-right: 15px;
}
footer.re-footer-component .re-footer-top .re-profile .re-text-group .re-name {
  font-weight: 600;
  color: #FFF;
  font-size: 1.2rem;
}
footer.re-footer-component .re-footer-top .re-profile .re-text-group .re-description {
  color: #ADBFCC;
}
footer.re-footer-component .re-footer-main {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  padding-top: 12rem;
  padding-bottom: 4rem;
  background-color: #201E1D;
}
@media all and (max-width: 768px) {
  footer.re-footer-component .re-footer-main {
    padding-top: 6rem;
  }
}
footer.re-footer-component .re-footer-main .instagram-container .insta-title {
  margin-bottom: 3rem;
  color: #FFF;
  font-size: 2.4rem;
  line-height: 3.2rem;
  text-align: center;
}
footer.re-footer-component .re-footer-main .instagram-container .insta-handle {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
footer.re-footer-component .re-footer-main .instagram-container .insta-handle a.insta-link {
  text-transform: uppercase;
  color: #CECBCA;
  display: inline-block;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.35rem;
  font-size: 1.2rem;
  position: relative;
}
footer.re-footer-component .re-footer-main .instagram-container .insta-handle a.insta-link span.at {
  position: relative;
  top: -1px;
}
footer.re-footer-component .re-footer-main .instagram-container .insta-handle a.insta-link:hover {
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  color: #FFF;
  text-decoration-color: #F3967D;
}
footer.re-footer-component .re-footer-main .instagram-container .insta-feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 6rem;
  margin-bottom: 8rem;
}
@media all and (max-width: 640px) {
  footer.re-footer-component .re-footer-main .instagram-container .insta-feed {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 420px) {
  footer.re-footer-component .re-footer-main .instagram-container .insta-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}
footer.re-footer-component .re-footer-main .instagram-container .insta-feed:has(a.re-image:hover) a.re-image:not(:hover) {
  opacity: 0.4;
}
footer.re-footer-component .re-footer-main .instagram-container .insta-feed a.re-image {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
  position: relative;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
footer.re-footer-component .re-footer-main .instagram-container .insta-feed a.re-image img {
  object-fit: cover;
  object-position: center;
}
footer.re-footer-component .re-footer-main .footer-utility {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6rem;
  margin-bottom: 4rem;
}
@media all and (max-width: 640px) {
  footer.re-footer-component .re-footer-main .footer-utility {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
footer.re-footer-component .re-footer-main .footer-utility .column.type-about {
  grid-column: span 2;
}
@media all and (max-width: 640px) {
  footer.re-footer-component .re-footer-main .footer-utility .column.type-about {
    order: 3;
  }
}
footer.re-footer-component .re-footer-main .footer-utility .column.type-about .about-title {
  color: #FFF;
  font-size: 2.4rem;
  line-height: 2.4rem;
  text-align: left;
  letter-spacing: 0;
}
footer.re-footer-component .re-footer-main .footer-utility .column.type-about p.about-description {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #CECBCA;
}
footer.re-footer-component .re-footer-main .footer-utility .column.type-nav {
  grid-column: span 1;
}
footer.re-footer-component .re-footer-main .footer-utility .column.type-nav .column-title {
  color: #F3967D;
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 2.4rem;
  text-align: left;
}
footer.re-footer-component .re-footer-main .footer-utility .column.type-nav a {
  font-family: "Lora", serif;
  font-size: 1.6rem;
  line-height: 1.6rem;
  letter-spacing: 0rem;
  color: #CECBCA;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  display: block;
  transition: none;
}
footer.re-footer-component .re-footer-main .footer-utility .column.type-nav a:hover {
  color: #000;
  text-decoration: underline #F3967D solid 1px;
  text-underline-offset: 2px;
  color: #FFF;
}
footer.re-footer-component .re-footer-main .footer-utility .column.type-nav p {
  font-family: "Lora", serif;
  font-size: 1.6rem;
  line-height: 1.6rem;
  letter-spacing: 0rem;
  color: #CECBCA;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  display: block;
}
footer.re-footer-component .re-footer-main .footer-utility .column.type-nav nav ul li {
  list-style: none;
}
footer.re-footer-component .re-footer-main .footer-utility .column.type-nav nav ul li.current-menu-item a {
  color: #000;
  text-decoration: underline #F3967D solid 1px;
  text-underline-offset: 2px;
  color: #FFF;
}
footer.re-footer-component .re-footer-main .re-rule {
  width: 100%;
  background-color: #423F3E;
  height: 1px;
}
footer.re-footer-component .re-footer-main .disclaimers {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  margin-top: 40px;
}
@media all and (max-width: 640px) {
  footer.re-footer-component .re-footer-main .disclaimers {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 8px;
  }
}
footer.re-footer-component .re-footer-main .disclaimers .copyright,
footer.re-footer-component .re-footer-main .disclaimers .developer {
  color: #A9A4A3;
  font-family: "Lora", serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
  letter-spacing: 0.01rem;
}
footer.re-footer-component .re-footer-main .disclaimers .developer a {
  color: #FFF;
}
footer.re-footer-component .re-footer-main .disclaimers .developer a:hover {
  text-decoration: underline;
}

.re-home-page .re-page-content {
  padding-top: 0;
}
.re-home-page .re-hero-section .re-hero-image {
  position: relative;
  height: calc(100vh - 300px);
  width: 100%;
}
@media all and (max-width: 640px) {
  .re-home-page .re-hero-section .re-hero-image {
    height: calc(100svh - 200px);
  }
}
.re-home-page .re-hero-section .re-hero-image img {
  object-fit: cover;
  object-position: 50% 35%;
}
@media all and (max-width: 640px) {
  .re-home-page .re-hero-section .re-hero-image img {
    object-position: 70% 35%;
  }
}
.re-home-page .re-hero-section .re-hero-image .re-intro-callout {
  position: absolute;
  bottom: 60px;
  left: max(20px, 50% - 600px);
  width: 100%;
  max-width: 520px;
  background-color: #F9F7F4;
  padding: 40px 56px;
}
@media all and (max-width: 640px) {
  .re-home-page .re-hero-section .re-hero-image .re-intro-callout {
    bottom: -90px;
    left: 20px;
    width: calc(100% - 40px);
    max-width: none;
    padding: 30px 40px;
  }
}
.re-home-page .re-hero-section .re-hero-image .re-intro-callout:after {
  content: "";
  position: absolute;
  height: calc(100% - 24px);
  width: calc(100% - 24px);
  bottom: -8px;
  right: -8px;
  border-right: 8px solid #201E1D;
  border-bottom: 8px solid #201E1D;
}
.re-home-page .re-hero-section .re-hero-image .re-intro-callout .intro-title {
  text-align: left;
  font-size: 2.6rem;
  line-height: 2.6rem;
}
.re-home-page .re-hero-section .re-hero-image .re-intro-callout .intro-description {
  font-family: "DM Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #736E6D;
  margin-top: 16px;
  margin-bottom: 16px;
}
.re-home-page .re-hero-section .re-hero-image .re-intro-callout .re-social-links {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: 20px;
}
.re-home-page .re-hero-section .re-hero-image .re-intro-callout .re-social-links .link-container {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: 12px;
}
.re-home-page .re-hero-section .re-hero-image .re-intro-callout .re-social-links .link-container .icon {
  height: 20px;
  width: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.re-home-page .re-hero-section .re-hero-image .re-intro-callout .re-social-links .link-container.re-instagram .icon {
  background-image: url(../assets/icons/icon-insta-dark.svg);
}
.re-home-page .re-hero-section .re-hero-image .re-intro-callout .re-social-links .link-container.re-pinterest .icon {
  background-image: url(../assets/icons/icon-pinterest-dark.svg);
}
.re-home-page .re-hero-section .re-hero-image .re-intro-callout .re-social-links .link-container a.highlighter {
  font-size: 1.2rem;
  line-height: 1.2rem;
  z-index: 2;
}
@media all and (max-width: 640px) {
  .re-home-page .re-promo-section {
    margin-top: 90px;
  }
}
.re-home-page .re-promo-section .re-callout-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media all and (max-width: 768px) {
  .re-home-page .re-promo-section .re-callout-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.re-home-page .re-promo-section .re-callout-grid a.re-grid-item {
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  overflow: hidden;
}
@media all and (max-width: 768px) {
  .re-home-page .re-promo-section .re-callout-grid a.re-grid-item {
    aspect-ratio: 16/9;
  }
}
.re-home-page .re-promo-section .re-callout-grid a.re-grid-item img {
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-home-page .re-promo-section .re-callout-grid a.re-grid-item .label {
  position: relative;
  z-index: 2;
  display: block;
  padding: 20px 36px;
  text-align: center;
  background-color: #F9F7F4;
  color: #201E1D;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-home-page .re-promo-section .re-callout-grid a.re-grid-item:hover .label {
  background-color: #201E1D;
  color: #FFF;
}
@media all and (max-width: 768px) {
  .re-home-page .re-promo-section .re-callout-grid a.re-grid-item.shop-intro {
    aspect-ratio: 3/2;
  }
}
.re-home-page .re-promo-section .re-callout-grid a.re-grid-item.shop-intro .re-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px; /* adjust to whatever gap size you want */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.re-home-page .re-promo-section .re-callout-grid a.re-grid-item.shop-intro .re-shop-item {
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F5F5F5;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-home-page .re-promo-section .re-callout-grid a.re-grid-item.shop-intro .re-shop-item.scale-down {
  background-size: 100%;
}
.re-home-page .re-promo-section .re-callout-grid a.re-grid-item.shop-intro .re-shop-item.white-bg {
  background-blend-mode: multiply;
}
.re-home-page .re-featured-posts-section .re-blog-grid {
  margin-bottom: 60px;
}
.re-home-page a.read-all {
  text-transform: uppercase;
  color: #000;
  display: inline-block;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.35rem;
  font-size: 1.2rem;
  position: relative;
  background-color: #F5F5F5;
  background-image: url(../assets/icons/arrow-right-long-dark.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
  padding: 20px 56px 18px 30px;
  font-weight: 600;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-home-page a.read-all:hover {
  background-color: #000;
  color: #FFF;
  background-image: url(../assets/icons/arrow-right-long-white.svg);
}
.re-home-page .re-shop-preview-section .re-shop-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
@media all and (max-width: 640px) {
  .re-home-page .re-shop-preview-section .re-shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.re-home-page .re-shop-preview-section a.re-shop-item {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  background-color: #F5F5F5;
  margin-bottom: 0;
}
.re-home-page .re-shop-preview-section a.re-shop-item img {
  object-fit: cover;
  object-position: center;
  margin-bottom: 0;
}
.re-home-page .re-shop-preview-section a.re-shop-item:last-child {
  background-image: url(../assets/icons/arrow-right-long-dark.svg);
  background-position: center;
  background-size: 36px;
  background-repeat: no-repeat;
}
.re-home-page .re-shop-preview-section a.re-shop-item:last-child::before {
  float: left;
  padding-top: 100%;
  content: "";
}
.re-home-page .re-shop-preview-section a.re-shop-item.scale-down .re-shop-image {
  transform: scale(0.8);
  object-fit: contain;
}
.re-home-page .re-shop-preview-section a.re-shop-item.white-bg .re-shop-image {
  mix-blend-mode: multiply;
}
.re-home-page .re-shop-preview-section a.re-shop-item:hover {
  opacity: 0.8;
}
.re-home-page .re-shop-preview-section a.re-more-item {
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-home-page .re-shop-preview-section a.re-more-item:hover {
  background-color: #F5F5F5;
}
.re-home-page .re-shop-preview-section a.re-more-item:active {
  transform: scale(0.9);
}
.re-home-page .re-shop-section a.highlighter {
  margin-bottom: 40px;
}

.re-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 60px;
}
@media all and (max-width: 640px) {
  .re-blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.re-pagination {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  margin-top: 20px;
}
.re-pagination:empty {
  display: none;
}
.re-pagination .page-numbers {
  display: block;
  background-color: #FFF;
  height: 40px;
  width: 40px;
  border: 1px solid #E7E6E5;
  margin-right: 10px;
  line-height: 40px;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 1.3rem;
  text-align: center;
  color: #736E6D;
}
.re-pagination .page-numbers:not(.current):hover {
  color: #000;
  border: 1px solid #CECBCA;
}
.re-pagination .page-numbers.current {
  background-color: #000;
  border: 1px solid #000;
  color: #FFF;
}
.re-pagination .page-numbers.next, .re-pagination .page-numbers.prev {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.re-pagination .page-numbers.next {
  background-image: url(../assets/icons/arrow-page-right.svg);
}
.re-pagination .page-numbers.prev {
  background-image: url(../assets/icons/arrow-page-left.svg);
}

.re-blog-detail-page .re-blog-detail-header {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.re-blog-detail-page .re-blog-detail-header .re-post-categories {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
.re-blog-detail-page .re-blog-detail-header .re-post-categories .re-post-category {
  text-transform: uppercase;
  color: #F3967D;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
  padding: 8px 0px;
}
.re-blog-detail-page .re-blog-detail-header .re-post-categories .re-post-category:hover {
  text-decoration: underline;
}
.re-blog-detail-page .re-blog-detail-header .re-post-categories .separator {
  padding-left: 8px;
  padding-right: 12px;
}
.re-blog-detail-page .re-blog-detail-header .re-post-title {
  font-size: 4.2rem;
  line-height: 4.8rem;
  letter-spacing: 0;
  font-family: "DM Serif Text", serif;
  margin-top: 16px;
  margin-bottom: 24px;
  color: #201E1D;
}
@media all and (max-width: 640px) {
  .re-blog-detail-page .re-blog-detail-header .re-post-title {
    font-size: 3.4rem;
    line-height: 4rem;
  }
}
.re-blog-detail-page .re-blog-detail-header .re-topics {
  margin-bottom: 30px;
}
.re-blog-detail-page .re-post-featured-image {
  margin-bottom: 40px;
}
.re-blog-detail-page .re-post-featured-image img {
  object-fit: cover;
}
.re-blog-detail-page .re-post-featured-image[data-style=wide] img {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16/9;
}
.re-blog-detail-page .re-post-featured-image[data-style=full] img {
  width: 100%;
  aspect-ratio: 16/9;
}
.re-blog-detail-page .re-post-featured-image[data-style=tall] img {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}
.re-blog-detail-page .re-post-featured-image[data-style=square] img {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 1/1;
}
@media all and (max-width: 768px) {
  .re-blog-detail-page .re-post-main-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.re-blog-detail-page .re-post-main-content .re-richtext {
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.re-blog-detail-page .re-post-main-content .re-richtext.border-section {
  border: 2px solid #F5F5F5;
  border-radius: 0;
  padding: 40px 60px 10px;
  position: relative;
}
.re-blog-detail-page .re-post-main-content .re-richtext.border-section + .re-image-section {
  margin-top: 30px;
}
.re-blog-detail-page .re-post-main-content .re-richtext.border-section + .re-image-section.re-image-full-width, .re-blog-detail-page .re-post-main-content .re-richtext.border-section + .re-image-section.wide-section {
  margin-top: 60px;
}
.re-blog-detail-page .re-post-main-content .re-richtext p {
  font-family: "Lora", serif;
}
.re-blog-detail-page .re-post-main-content .re-image-section {
  margin-bottom: 30px;
}
.re-blog-detail-page .re-post-main-content .re-image-section + .border-section {
  margin-top: 60px;
}
.re-blog-detail-page .re-post-main-content .re-image-section.wide-section {
  position: relative;
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
}
.re-blog-detail-page .re-post-main-content .re-image-section + .re-image-section {
  margin-top: -20px;
}
.re-blog-detail-page .re-post-main-content .re-image-section .re-image img {
  object-fit: cover;
  object-position: center;
}
.re-blog-detail-page .re-post-main-content .re-image-section .re-image {
  position: relative;
}
.re-blog-detail-page .re-post-main-content .re-image-section .re-image .image-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #201E1D;
  padding: 10px 12px;
  font-size: 1.3rem;
  color: #FFF;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  max-width: calc(100% - 30px);
  z-index: 2;
}
.re-blog-detail-page .re-post-main-content .re-image-section .re-image .image-title:empty {
  display: none;
}
.re-blog-detail-page .re-post-main-content .re-image-section.re-single-image .re-image {
  width: 100%;
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  display: block;
}
.re-blog-detail-page .re-post-main-content .re-image-section.re-image-pair {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
}
.re-blog-detail-page .re-post-main-content .re-image-section.re-image-pair .re-image {
  width: calc(50% - 5px);
  height: auto;
}
.re-blog-detail-page .re-post-main-content .re-image-section.re-image-triplets {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
}
.re-blog-detail-page .re-post-main-content .re-image-section.re-image-triplets .re-image {
  width: calc(33.3333333333% - 5px);
  height: auto;
}
.re-blog-detail-page .re-post-main-content .re-image-section.re-image-full-width {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  position: relative;
  left: -20px;
  width: calc(100% + 40px);
  margin-top: 60px;
  margin-bottom: 60px;
}
.re-blog-detail-page .re-post-main-content .re-image-section.re-image-full-width .re-image {
  width: 100%;
  position: relative;
  left: 0;
  height: auto;
}
.re-blog-detail-page .re-post-main-content .re-video-section {
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  display: block;
  margin-bottom: 30px;
  background-color: #201E1D;
  object-fit: cover;
  pointer-events: none;
}
.re-blog-detail-page .re-post-main-content .re-video-section[data-layout=auto] {
  aspect-ratio: unset;
}
.re-blog-detail-page .re-post-main-content .re-video-section[data-layout=wide] {
  aspect-ratio: 3/2;
}
.re-blog-detail-page .re-post-main-content .re-video-section[data-layout=square] {
  aspect-ratio: 1/1;
}
.re-blog-detail-page .re-post-main-content .re-video-section[data-layout=tall] {
  aspect-ratio: 2/3;
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-carousel-title {
  text-align: center;
  font-size: 1.3rem;
  line-height: 2.1rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.5rem;
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-nav-container {
  position: relative;
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-nav-container .carousel-nav {
  height: 48px;
  width: 48px;
  background-color: #000;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 24px);
  z-index: 2;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-nav-container .carousel-nav:hover {
  width: 52px;
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-nav-container .carousel-nav.nav-left {
  left: 0;
  background-image: url(../assets/icons/arrow-page-left-white.svg);
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-nav-container .carousel-nav.nav-right {
  right: 0;
  background-image: url(../assets/icons/arrow-page-right-white.svg);
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-image-container {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  gap: 8px;
  position: relative;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
@media all and (max-width: 640px) {
  .re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-image-container {
    gap: 8px;
  }
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-image-container a.re-shop-item {
  flex: 0 0 calc((100% - 24px) / 4);
  display: block;
  margin-bottom: 0;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
@media all and (max-width: 640px) {
  .re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-image-container a.re-shop-item {
    flex: 0 0 33.3333333333%;
  }
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-image-container a.re-shop-item .re-shop-image {
  position: relative;
  margin-bottom: 0;
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-image-container a.re-shop-item .re-shop-item-title {
  color: #000;
  font-size: 1.6rem;
  line-height: 2rem;
  margin-top: 12px;
  display: block;
  font-family: "DM Serif Text", serif;
  padding-right: 16px;
  display: none;
}
.re-blog-detail-page .re-post-main-content .re-shop-items-carousel .re-shop-items-image-container a.re-shop-item:hover {
  opacity: 0.8;
}
.re-blog-detail-page .re-post-main-content .re-small-width {
  padding-left: 0;
  padding-right: 0;
}
.re-blog-detail-page .re-post-main-content .re-disclaimer {
  background-color: #F9F7F4;
  padding: 20px;
  font-size: 1.4rem;
  line-height: 2rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  color: #736E6D;
}
.re-blog-detail-page .re-post-main-content .re-disclaimer a {
  color: #F3967D;
  text-decoration: underline;
}
.re-blog-detail-page .re-post-main-content .re-post-date {
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.3rem;
  color: #736E6D;
  text-align: center;
  width: 100%;
  margin-top: 30px;
}
.re-blog-detail-page .re-post-footer .re-shop-posts {
  margin-top: 0px;
}
.re-blog-detail-page .re-post-footer .re-shop-posts .re-medium-width {
  padding: 0;
}
.re-blog-detail-page .re-post-footer .re-shop-posts.hidden {
  display: none;
}
.re-blog-detail-page .re-post-footer .re-shop-posts .shop-posts-title {
  font-size: 2.4rem;
  line-height: 2.4rem;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}
.re-blog-detail-page .re-post-footer .re-shop-posts .re-shop-subtitle {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 15px;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.03rem;
}
.re-blog-detail-page .re-post-footer .re-shop-posts .re-shop-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media all and (max-width: 640px) {
  .re-blog-detail-page .re-post-footer .re-shop-posts .re-shop-posts-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.re-blog-detail-page .re-post-footer .re-shop-posts .re-shop-posts-grid a.re-shop-item .re-shop-image {
  aspect-ratio: 1/1;
}
.re-blog-detail-page .re-post-footer .re-shop-posts .re-shop-posts-grid a.re-shop-item .re-shop-image img {
  object-fit: cover;
  object-position: center;
}
.re-blog-detail-page .re-post-footer .re-topics {
  margin-top: 0;
  margin-bottom: 6rem;
}
.re-blog-detail-page .re-post-footer .re-topics:last-child {
  margin-bottom: 4rem;
}
.re-blog-detail-page .re-post-footer .re-related-posts {
  margin-top: 8rem;
  margin-bottom: 6rem;
}
@media all and (max-width: 640px) {
  .re-blog-detail-page .re-post-footer .re-related-posts .re-medium-width {
    padding: 0;
  }
}
.re-blog-detail-page .re-post-footer .re-related-posts .related-posts-title {
  font-size: 2.4rem;
  line-height: 2.4rem;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}

.re-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 60px;
}
@media all and (max-width: 640px) {
  .re-shop-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px;
    row-gap: 24px;
  }
}

.re-services-page .re-page-content {
  padding-top: 0;
}
.re-services-page .re-footer-component {
  padding-top: 0;
}
.re-services-page .re-page-section.re-services-section {
  padding-top: 12rem;
}
@media all and (max-width: 768px) {
  .re-services-page .re-page-section.re-services-section {
    padding-top: 4rem;
  }
}
.re-services-page .re-page-section.re-services-section .re-service-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  margin-bottom: 12rem;
}
@media all and (max-width: 768px) {
  .re-services-page .re-page-section.re-services-section .re-service-group {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
  }
}
.re-services-page .re-page-section.re-services-section .re-service-group:nth-child(odd) .service-text {
  order: 1;
}
.re-services-page .re-page-section.re-services-section .re-service-group:nth-child(odd) .service-image {
  order: 2;
}
@media all and (max-width: 768px) {
  .re-services-page .re-page-section.re-services-section .re-service-group:nth-child(odd) .service-text {
    order: 2;
  }
  .re-services-page .re-page-section.re-services-section .re-service-group:nth-child(odd) .service-image {
    order: 1;
  }
}
.re-services-page .re-page-section.re-services-section .re-service-group:nth-child(even) .service-text {
  order: 2;
}
.re-services-page .re-page-section.re-services-section .re-service-group:nth-child(even) .service-image {
  order: 1;
}
.re-services-page .re-page-section.re-services-section .re-service-group:last-of-type {
  margin-bottom: 0;
}
.re-services-page .re-page-section.re-services-section .re-service-group.makeup-application .re-richtext.service-description ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.re-services-page .re-page-section.re-services-section .re-service-group.makeup-application .re-richtext.service-description ul li {
  border: 1px solid #E7E6E5;
  padding: 12px 8px;
  color: #000;
  font-size: 1.4rem;
  line-height: 1.4rem;
  text-align: center;
  font-family: "DM Serif Text", serif;
  letter-spacing: 0.05rem;
}
.re-services-page .re-page-section.re-services-section .re-service-group .service-text {
  min-width: 0;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
.re-services-page .re-page-section.re-services-section .re-service-group .service-text h3.service-title {
  letter-spacing: 0rem;
  font-size: 4.2rem;
  line-height: 4.8rem;
  text-align: left;
  text-transform: none;
}
@media all and (max-width: 640px) {
  .re-services-page .re-page-section.re-services-section .re-service-group .service-text h3.service-title {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }
}
.re-services-page .re-page-section.re-services-section .re-service-group .service-text .service-metadata {
  font-family: "DM Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6rem;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
.re-services-page .re-page-section.re-services-section .re-service-group .service-text .service-metadata > span + span::before {
  content: "•";
  margin-right: 1.6rem;
  margin-left: 1.6rem;
  color: #000;
}
.re-services-page .re-page-section.re-services-section .re-service-group .service-text .service-metadata .service-price {
  color: #E08A73;
}
.re-services-page .re-page-section.re-services-section .re-service-group .service-text .service-metadata .service-location {
  color: #000;
}
.re-services-page .re-page-section.re-services-section .re-service-group .service-text .service-metadata .service-duration {
  color: #000;
}
.re-services-page .re-page-section.re-services-section .re-service-group .service-text .re-richtext p, .re-services-page .re-page-section.re-services-section .re-service-group .service-text .re-richtext ol li, .re-services-page .re-page-section.re-services-section .re-service-group .service-text .re-richtext ul li {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #736E6D;
  font-family: "DM Sans", sans-serif;
}
.re-services-page .re-page-section.re-services-section .re-service-group .service-text a.button {
  width: max-content;
}
.re-services-page .re-page-section.re-services-section .re-service-group .service-image {
  aspect-ratio: 1/1.1;
  max-width: 100%;
  min-width: 0;
}
@media all and (max-width: 768px) {
  .re-services-page .re-page-section.re-services-section .re-service-group .service-image {
    aspect-ratio: 16/9;
  }
}
.re-services-page .re-page-section.re-services-section .re-service-group .service-image img {
  object-fit: cover;
  object-position: center;
}
.re-services-page .re-services-marquee {
  overflow: hidden;
  background-color: #201E1D;
  padding: 2.4rem 0;
}
.re-services-page .re-services-marquee .re-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 2.4rem;
}
.re-services-page .re-services-marquee .re-marquee-track span {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-family: "DM Sans", sans-serif;
  color: #FFF;
  white-space: nowrap;
}
.re-services-page .re-services-marquee .re-marquee-track .separator {
  color: #736E6D;
  letter-spacing: 0;
}

.re-bridal-page .re-page-content {
  padding-top: 0;
}
.re-bridal-page .re-footer-component {
  padding-top: 0;
}
.re-bridal-page .re-page-section[data-theme=image] .re-callout-title {
  margin-bottom: 24px;
}
.re-bridal-page .re-page-section.re-style-section .re-callout-description {
  max-width: 100%;
}
.re-bridal-page .re-page-section.re-style-section .re-photos-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  margin-top: 4rem;
}
@media all and (max-width: 640px) {
  .re-bridal-page .re-page-section.re-style-section .re-photos-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-flow: column;
    overflow-x: scroll;
    left: -20px;
    position: relative;
    width: calc(100% + 40px);
  }
}
.re-bridal-page .re-page-section.re-style-section .re-photos-grid .re-gallery-image {
  aspect-ratio: 2/3;
}
.re-bridal-page .re-page-section.re-style-section .re-photos-grid .re-gallery-image img {
  object-fit: cover;
  object-position: center;
}
.re-bridal-page .re-page-section.re-expectations-section .re-split-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12rem;
}
@media all and (max-width: 640px) {
  .re-bridal-page .re-page-section.re-expectations-section .re-split-layout {
    grid-template-columns: repeat(1, 1fr);
    gap: 6rem;
  }
}
.re-bridal-page .re-page-section.re-expectations-section .re-split-layout .re-callout-prefix {
  text-align: left;
}
@media all and (max-width: 640px) {
  .re-bridal-page .re-page-section.re-expectations-section .re-split-layout .re-callout-prefix {
    text-align: center;
  }
}
.re-bridal-page .re-page-section.re-expectations-section .re-split-layout .re-callout-title {
  text-align: left;
}
@media all and (max-width: 640px) {
  .re-bridal-page .re-page-section.re-expectations-section .re-split-layout .re-callout-title {
    text-align: center;
  }
}
.re-bridal-page .re-page-section.re-expectations-section .re-split-layout .re-callout-description {
  text-align: left;
  margin-left: 0;
  max-width: 100%;
}
@media all and (max-width: 640px) {
  .re-bridal-page .re-page-section.re-expectations-section .re-split-layout .re-callout-description {
    text-align: center;
  }
}

body.modal-open {
  overflow: hidden;
}

.re-photos-page .re-footer-component {
  padding-top: 0;
}
.re-photos-page .re-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media all and (max-width: 768px) {
  .re-photos-page .re-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.re-photos-page .re-photos-grid .overlay {
  display: none;
}
.re-photos-page .re-photos-grid .re-gallery-image {
  overflow: hidden;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.re-photos-page .re-photos-grid .re-gallery-image img {
  object-fit: cover;
  object-position: center;
}
@media all and (max-width: 768px) {
  .re-photos-page .re-photos-grid .re-gallery-image img {
    pointer-events: auto !important;
  }
}
.re-photos-page .re-image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.re-photos-page .re-image-modal.open {
  display: block;
}
.re-photos-page .re-image-modal.open .re-image-modal-overlay {
  animation: scrim-in 0.3s ease forwards;
}
.re-photos-page .re-image-modal.open .re-image-modal-sheet {
  animation: sheet-in 0.35s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}
.re-photos-page .re-image-modal .re-image-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}
.re-photos-page .re-image-modal .re-image-modal-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #F9F7F4;
  border-radius: 0;
  padding: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: translateY(100%);
  max-height: 95vh;
}
.re-photos-page .re-image-modal .re-image-modal-sheet .re-image-modal-image {
  width: 100%;
  overflow: hidden;
}
.re-photos-page .re-image-modal .re-image-modal-sheet .re-image-modal-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  pointer-events: auto !important;
}
.re-photos-page .re-image-modal .re-image-modal-sheet .re-image-modal-close {
  width: 100%;
  padding: 14px;
  background-color: #000;
  border: none;
  border-radius: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  color: #FFF;
}
@keyframes scrim-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sheet-in {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.re-about-page .re-page-content {
  padding-top: 0;
}
.re-about-page .re-author-bio-intro {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
}
@media all and (max-width: 768px) {
  .re-about-page .re-author-bio-intro {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-direction: column;
    -webkit-flex-direction: column;
  }
}
.re-about-page .re-author-bio-intro .re-author-bio-text {
  background-color: #FAFAFA;
  padding: 12rem;
  width: 50%;
  align-content: center;
}
@media all and (max-width: 960px) {
  .re-about-page .re-author-bio-intro .re-author-bio-text {
    padding: 4rem;
  }
}
@media all and (max-width: 768px) {
  .re-about-page .re-author-bio-intro .re-author-bio-text {
    width: 100%;
    order: 2;
  }
}
.re-about-page .re-author-bio-intro .re-author-bio-text .re-page-title-prefix {
  color: #F3967D;
  font-size: 1.2rem;
  line-height: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.2rem;
}
.re-about-page .re-author-bio-intro .re-author-bio-text .re-page-title {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
}
.re-about-page .re-author-bio-intro .re-author-bio-image {
  width: 50%;
  aspect-ratio: 1/1;
}
@media all and (max-width: 768px) {
  .re-about-page .re-author-bio-intro .re-author-bio-image {
    width: 100%;
    aspect-ratio: 4/3;
    order: 1;
    min-height: 0;
  }
}
.re-about-page .re-author-bio-intro .re-author-bio-image img {
  object-fit: cover;
  object-position: center;
}
@media all and (max-width: 768px) {
  .re-about-page .re-author-bio-intro .re-author-bio-image img {
    object-position: 50% 40%;
  }
}
.re-about-page .re-qualifications-section .re-certifications {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  list-style: none;
  counter-reset: certifications;
  margin-top: 60px;
}
@media all and (max-width: 768px) {
  .re-about-page .re-qualifications-section .re-certifications {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 640px) {
  .re-about-page .re-qualifications-section .re-certifications {
    grid-template-columns: repeat(2, 1fr);
  }
}
.re-about-page .re-qualifications-section .re-certifications li {
  counter-increment: certifications;
  border: 1px solid #E7E6E5;
  padding: 36px 24px 72px;
  background-color: #F9F7F4;
  position: relative;
}
.re-about-page .re-qualifications-section .re-certifications li::before {
  content: counter(certifications, decimal-leading-zero);
  display: block;
  color: #F3967D;
  font-size: 4rem;
  font-family: "DM Serif Text", serif;
  opacity: 0.5;
  margin-bottom: 30px;
}
.re-about-page .re-qualifications-section .re-certifications li h3 {
  font-family: "DM Serif Text", serif;
  font-size: 2rem;
  line-height: 2.6rem;
  margin-bottom: 12px;
  color: #423F3E;
}
.re-about-page .re-image-grid-section {
  padding-bottom: 120px;
}
.re-about-page .re-image-grid-section .about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 100px;
}
.re-about-page .re-image-grid-section .about-image-grid .about-image {
  aspect-ratio: 1/1;
}
.re-about-page .re-image-grid-section .about-image-grid .about-image:first-child {
  grid-column: span 2;
  height: 640px;
  aspect-ratio: unset;
}
@media all and (max-width: 640px) {
  .re-about-page .re-image-grid-section .about-image-grid .about-image:first-child {
    height: 300px;
  }
}
.re-about-page .re-image-grid-section .about-image-grid .about-image img {
  object-fit: cover;
  object-position: center;
}
.re-about-page .re-featured-posts-section {
  padding-bottom: 120px;
}
.re-about-page .re-featured-posts-section .re-blog-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 6rem;
}
@media all and (max-width: 768px) {
  .re-about-page .re-featured-posts-section .re-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 640px) {
  .re-about-page .re-featured-posts-section .re-blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.re-about-page .re-footer-component {
  padding-top: 0;
}

.re-page-content:has(.re-contact-page) {
  padding-top: 0;
}
.re-page-content + .re-footer-component {
  padding-top: 0;
}

.re-contact-page.re-success-page .re-author-callout {
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
}
.re-contact-page.re-success-page .re-blog-section .re-page-title-section {
  max-width: 480px;
  margin-bottom: 4rem;
}
.re-contact-page.re-success-page .re-blog-section .re-page-title-section .re-page-title {
  text-transform: none;
  letter-spacing: 0rem;
  font-size: 3.6rem;
  line-height: 3.6rem;
  text-align: center;
}
.re-contact-page.re-success-page .re-blog-section .re-blog-grid {
  margin-bottom: 6rem;
}
.re-contact-page[data-type=bridal] .re-small-width {
  padding-left: 20px;
  padding-right: 20px;
}
.re-contact-page[data-type=bridal] .hero-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 8rem;
}
@media all and (max-width: 640px) {
  .re-contact-page[data-type=bridal] .hero-image-grid {
    margin-bottom: 4rem;
  }
}
.re-contact-page[data-type=bridal] .hero-image-grid .image:nth-child(1), .re-contact-page[data-type=bridal] .hero-image-grid .image:nth-child(4) {
  grid-column: span 2;
}
.re-contact-page[data-type=bridal] .hero-image-grid .image:nth-child(1), .re-contact-page[data-type=bridal] .hero-image-grid .image:nth-child(2) {
  height: 150px;
}
@media all and (max-width: 640px) {
  .re-contact-page[data-type=bridal] .hero-image-grid .image:nth-child(1), .re-contact-page[data-type=bridal] .hero-image-grid .image:nth-child(2) {
    height: 100px;
  }
}
.re-contact-page[data-type=bridal] .hero-image-grid .image:nth-child(3), .re-contact-page[data-type=bridal] .hero-image-grid .image:nth-child(4) {
  height: 200px;
}
@media all and (max-width: 640px) {
  .re-contact-page[data-type=bridal] .hero-image-grid .image:nth-child(3), .re-contact-page[data-type=bridal] .hero-image-grid .image:nth-child(4) {
    height: 120px;
  }
}
.re-contact-page[data-type=bridal] .hero-image-grid .image img {
  object-fit: cover;
  object-position: center;
}
.re-contact-page[data-type=general] .re-small-width {
  padding-left: 20px;
  padding-right: 20px;
}
.re-contact-page[data-type=general] .hero-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 8rem;
}
@media all and (max-width: 640px) {
  .re-contact-page[data-type=general] .hero-image-grid {
    margin-bottom: 4rem;
  }
}
.re-contact-page[data-type=general] .hero-image-grid .image:nth-child(1), .re-contact-page[data-type=general] .hero-image-grid .image:nth-child(2), .re-contact-page[data-type=general] .hero-image-grid .image:nth-child(3) {
  height: 150px;
}
@media all and (max-width: 640px) {
  .re-contact-page[data-type=general] .hero-image-grid .image:nth-child(1), .re-contact-page[data-type=general] .hero-image-grid .image:nth-child(2), .re-contact-page[data-type=general] .hero-image-grid .image:nth-child(3) {
    height: 100px;
  }
}
.re-contact-page[data-type=general] .hero-image-grid .image:nth-child(4), .re-contact-page[data-type=general] .hero-image-grid .image:nth-child(5), .re-contact-page[data-type=general] .hero-image-grid .image:nth-child(6) {
  height: 200px;
}
@media all and (max-width: 640px) {
  .re-contact-page[data-type=general] .hero-image-grid .image:nth-child(4), .re-contact-page[data-type=general] .hero-image-grid .image:nth-child(5), .re-contact-page[data-type=general] .hero-image-grid .image:nth-child(6) {
    height: 110px;
  }
}
.re-contact-page[data-type=general] .hero-image-grid .image img {
  object-fit: cover;
  object-position: center;
}
.re-contact-page .re-page-title-section {
  max-width: 100%;
}
.re-contact-page .re-page-title-section .re-page-title-prefix,
.re-contact-page .re-page-title-section .re-page-title {
  text-align: left;
}
.re-contact-page .re-page-title-section .re-page-title-prefix {
  margin-bottom: 2.4rem;
}
.re-contact-page .re-page-title-section .re-page-title {
  margin-bottom: 2.4rem;
}
.re-contact-page .re-author-callout {
  background-color: #F9F7F4;
  padding: 20px;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: 24px;
}
@media all and (max-width: 640px) {
  .re-contact-page .re-author-callout {
    gap: 18px;
  }
}
.re-contact-page .re-author-callout .image {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 100px;
  overflow: hidden;
}
@media all and (max-width: 640px) {
  .re-contact-page .re-author-callout .image {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }
}
.re-contact-page .re-author-callout .image img {
  object-fit: cover;
  object-position: center;
  object-view-box: inset(30% 30% 20% 0%);
}
.re-contact-page .re-author-callout p.text {
  margin-bottom: 0;
}
.re-contact-page .re-author-callout p.text .signature {
  color: #000;
  font-weight: 600;
}
@media all and (max-width: 640px) {
  .re-contact-page .re-author-callout p.text {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}

.re-contact-page .re-page-description {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.3rem;
  margin-top: 15px;
}
.re-contact-page .re-page-description a {
  color: #F3967D;
  text-decoration: underline;
  cursor: pointer;
}

a.re-post {
  display: block;
}
a.re-post:hover .re-post-image {
  opacity: 0.9;
}
a.re-post .re-post-image {
  aspect-ratio: 3/4;
  display: block;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
a.re-post .re-post-image img {
  object-fit: cover !important;
  object-position: center !important;
}
a.re-post .re-post-metadata {
  text-align: left;
  display: block;
}
a.re-post .re-post-metadata .re-post-categories {
  margin-bottom: 1.2rem;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
}
a.re-post .re-post-metadata .re-post-categories .re-post-category {
  text-transform: uppercase;
  color: #F3967D;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
}
a.re-post .re-post-metadata .re-post-categories .re-post-category:not(:only-child):after {
  content: ",";
  margin-right: 5px;
}
a.re-post .re-post-metadata .re-post-categories .re-post-category:last-child:after {
  display: none;
}
a.re-post .re-post-metadata .re-post-title {
  text-align: left;
  color: #000;
}

.re-search-page .re-topics {
  max-width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}
.re-search-page .re-topics .topics-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.re-search-page .re-topics a.re-tag {
  font-size: 1rem;
}

.re-search {
  margin-top: 30px;
  max-width: 55%;
  min-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.re-search.active {
  display: block;
}
.re-search input.search {
  background-color: #FFF;
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  width: 100%;
  background-image: url(../assets/icons/icon-search.svg);
  background-position: 24px 50%;
  background-size: 18px;
  background-repeat: no-repeat;
  border: none;
  border-radius: 100px;
  box-shadow: 0 0 0 1px #CECBCA;
  padding-left: 54px;
  letter-spacing: 0.2rem;
  height: 48px;
  font-weight: 600;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-search input.search:focus {
  box-shadow: 0 0 0 2px #000;
}
.re-search input.search:-webkit-autofill, .re-search input.search:-webkit-autofill:hover, .re-search input.search:-webkit-autofill:focus, .re-search input.search:-webkit-autofill:active {
  transition: background-color 0s 600000s, color 0s 600000s !important;
  padding-left: 24px;
}
.re-search #searchsubmit {
  display: none;
}

.re-topics {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
}
.re-topics:last-child {
  margin-bottom: 0;
}
.re-topics .topics-title {
  font-size: 2.4rem;
  line-height: 3rem;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}
.re-topics a.re-tag {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  color: #423F3E;
  padding: 12px 13px 12px 15px;
  border-radius: 0;
  border: 1px solid #E7E6E5;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
  display: block;
  text-align: center;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
.re-topics a.re-tag:hover, .re-topics a.re-tag.current {
  border: 1px solid #000;
  background-color: #000;
  color: #FFF;
}

.re-faq-section .re-faq-list {
  margin-top: 8rem;
}
.re-faq-section .re-faq-list .re-faq {
  border-top: 1px solid #E7E6E5;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.re-faq-section .re-faq-list .re-faq .faq-title {
  margin-bottom: 1.6rem;
}
.re-faq-section .re-faq-list .re-faq .faq-description {
  margin-bottom: 0;
}

.re-brand-section .re-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  gap: 8px;
  margin-top: 6rem;
}
@media all and (max-width: 640px) {
  .re-brand-section .re-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.re-brand-section .re-brand-grid .logo {
  border: 1px solid #E7E6E5;
  padding-top: 8px;
  padding-bottom: 8px;
}
.re-brand-section .pro-kit-hero {
  margin-top: 6rem;
  aspect-ratio: 3/2;
}
@media all and (max-width: 640px) {
  .re-brand-section .pro-kit-hero {
    margin-top: 2rem;
  }
}
.re-brand-section .pro-kit-hero img {
  object-position: center;
  object-fit: cover;
}

.re-partnership-section .re-opportunity-list {
  margin-top: 80px;
}
.re-partnership-section .re-opportunity-list .re-opportunity {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  gap: 36px;
  border-top: 1px solid #CECBCA;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media all and (max-width: 640px) {
  .re-partnership-section .re-opportunity-list .re-opportunity {
    gap: 24px;
  }
}
.re-partnership-section .re-opportunity-list .re-opportunity .icon-group {
  height: 48px;
  width: 48px;
  min-width: 48px;
  margin-top: 4px;
}
.re-partnership-section .re-opportunity-list .re-opportunity .icon-group img {
  object-fit: cover;
  object-position: center;
}
.re-partnership-section .re-opportunity-list .re-opportunity .text-group .opportunity-title {
  margin-bottom: 16px;
}
.re-partnership-section .re-opportunity-list .re-opportunity .text-group .opportunity-description {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #736E6D;
  margin-bottom: 0;
}

.re-reviews-section .re-stars {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  gap: 16px;
  margin-bottom: 3rem;
}
.re-reviews-section .re-stars img {
  height: 16px;
  width: 16px;
  object-fit: contain;
  object-position: center;
}
.re-reviews-section .re-reviews-header .re-stars {
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
.re-reviews-section .re-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-align-items: flex-start;
  gap: 20px;
  margin-top: 6rem;
}
@media all and (max-width: 768px) {
  .re-reviews-section .re-reviews-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    margin-top: 4rem;
  }
}
.re-reviews-section .re-reviews-grid .re-review-column {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  gap: 20px;
}
@media all and (max-width: 768px) {
  .re-reviews-section .re-reviews-grid .re-review-column {
    gap: 12px;
  }
}
.re-reviews-section .re-reviews-grid .re-review-column .re-review {
  background-color: #FFF;
  border: 1px solid #E7E6E5;
  padding: 30px;
}
.re-reviews-section .re-reviews-grid .re-review-column .re-review .re-stars {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -ms-justify-content: flex-start;
  gap: 4px;
  margin-bottom: 16px;
}
.re-reviews-section .re-reviews-grid .re-review-column .re-review p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-family: "DM Sans", sans-serif;
  color: #736E6D;
}
.re-reviews-section .re-reviews-grid .re-review-column .re-review p strong {
  color: #000;
}
.re-reviews-section .re-reviews-grid .re-review-column .re-review .re-reviewer {
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  color: #000;
}

a.re-shop-item {
  display: block;
  width: 100%;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
a.re-shop-item:hover .re-shop-image .overlay {
  transform: translateY(0);
}
a.re-shop-item:active {
  transform: scale(0.95);
}
a.re-shop-item.scale-down .re-shop-image img {
  transform: scale(0.8);
  object-fit: contain;
}
a.re-shop-item.white-bg .re-shop-image img {
  mix-blend-mode: multiply;
}
a.re-shop-item .re-shop-image {
  aspect-ratio: 1/1;
  display: block;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  position: relative;
  overflow: hidden;
  background-color: #F5F5F5;
}
a.re-shop-item .re-shop-image img {
  object-fit: cover;
  object-position: center;
}
a.re-shop-item .re-shop-image .overlay {
  position: absolute;
  height: 40px;
  width: 100%;
  left: 0px;
  bottom: 0px;
  transform: translateY(40px);
  background-color: #201E1D;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}
a.re-shop-item .re-shop-image .overlay .label {
  color: #FFF;
  font-family: "Lora", serif;
  letter-spacing: 0rem;
  font-size: 1.4rem;
  line-height: 40px;
  text-align: center;
  display: block;
}
a.re-shop-item .re-shop-metadata {
  display: block;
  padding-right: 10px;
}
a.re-shop-item .re-shop-metadata .re-shop-title {
  text-align: left;
  margin-bottom: 16px;
}
a.re-shop-item .re-shop-metadata .re-shop-description {
  font-size: 1.4rem;
  line-height: 2.2rem;
  display: block;
  font-family: "DM Sans", sans-serif;
  color: #736E6D;
}

.author-container {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
  aspect-ratio: 7/3;
  max-height: 60rem;
  width: 100%;
}
@media all and (max-width: 768px) {
  .author-container {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    max-height: none;
  }
}
.author-container .author-image-container {
  width: 50%;
}
@media all and (max-width: 768px) {
  .author-container .author-image-container {
    width: 100%;
    aspect-ratio: 3/2;
  }
}
.author-container .author-image-container img {
  object-fit: cover;
  object-position: 50% 30%;
}
.author-container .author-text {
  width: 50%;
  padding: 2rem 10rem;
  background-color: #F9F7F4;
  z-index: 1;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
@media all and (max-width: 768px) {
  .author-container .author-text {
    width: 100%;
    padding: 4rem;
  }
}
.author-container .author-text .author-title {
  font-family: "DM Serif Text", serif;
  font-size: 4.2rem;
  line-height: 4.8rem;
  color: #000;
  margin-bottom: 2rem;
}
@media all and (max-width: 640px) {
  .author-container .author-text .author-title {
    font-size: 3.2rem;
    line-height: 3.2rem;
  }
}
.author-container .author-text .author-description {
  font-size: 1.7rem;
  line-height: 3rem;
  color: #736E6D;
  margin-bottom: 3rem;
  max-width: 520px;
}
.author-container .author-text a.highlighter {
  width: max-content;
}

.social-links {
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  gap: 12px;
}
.social-links .social-item {
  padding-left: 15px;
  padding-right: 15px;
}
.social-links a.instagram,
.social-links a.pinterest {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  display: block;
  height: 50px;
  width: 50px;
  transition: all 0.15s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  background-color: #F3967D;
}
.social-links a.instagram:hover,
.social-links a.pinterest:hover {
  transform: translateY(-2px);
}
.social-links a.instagram {
  background-size: 20px;
}
.social-links a.instagram[data-theme=dark] {
  background-image: url(../assets/icons/icon-insta-dark.svg);
}
.social-links a.instagram[data-theme=light] {
  background-image: url(../assets/icons/icon-insta-light.svg);
}
.social-links a.pinterest {
  background-size: 15px;
}
.social-links a.pinterest[data-theme=dark] {
  background-image: url(../assets/icons/icon-pinterest-dark.svg);
}
.social-links a.pinterest[data-theme=light] {
  background-image: url(../assets/icons/icon-pinterest-light.svg);
}

a.shortcode {
  margin-bottom: 30px;
  background-color: #201E1D;
  display: block;
  text-decoration: none;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-align-items: stretch;
}
@media all and (max-width: 640px) {
  a.shortcode {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
}
a.shortcode .shortcode-image {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  width: 30%;
}
@media all and (max-width: 640px) {
  a.shortcode .shortcode-image {
    width: 100%;
  }
}
a.shortcode .shortcode-image img {
  object-fit: cover;
  object-position: center;
  margin-top: 0;
  margin-bottom: 0;
}
a.shortcode .shortcode-text {
  display: block;
  padding: 36px;
  width: 70%;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
}
@media all and (max-width: 640px) {
  a.shortcode .shortcode-text {
    width: 100%;
    padding: 30px;
  }
}
a.shortcode .shortcode-text .shortcode-category {
  color: #F3967D;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  width: 100%;
  text-align: left;
}
a.shortcode .shortcode-text .shortcode-title {
  display: block;
  font-family: "DM Serif Text", serif;
  font-size: 2.4rem;
  color: #FFF;
  line-height: 3.2rem;
  margin-bottom: 16px;
  letter-spacing: 0;
  text-align: left;
}
a.shortcode .shortcode-text .shortcode-description {
  display: block;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  color: #CECBCA;
  font-size: 1.5rem;
  line-height: 2.2rem;
  letter-spacing: 0;
  margin-bottom: 20px;
  text-align: left;
}
a.shortcode .shortcode-text .shortcode-link {
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  font-size: 1.3rem;
  line-height: 1.3rem;
  letter-spacing: 0.2rem;
  padding-right: 35px;
  background-image: url(../assets/icons/arrow-right-long-white.svg);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  font-weight: 500;
  text-align: left;
  color: #FFF;
  width: max-content;
}
a.shortcode.re-service .shortcode-text {
  width: 100%;
}
a.shortcode.re-service .shortcode-text .shortcode-category {
  margin-bottom: 15px;
}
.newsletter-component {
  background-color: #F5F1EC;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
}
.newsletter-component .image {
  width: 100%;
  max-width: 220px;
}
.newsletter-component .main-content {
  max-width: 600px;
  width: 100%;
}
.newsletter-component .main-content > .re-convertkit-form form.formkit-form > [data-style=clean] {
  padding: 0 !important;
}
.newsletter-component .main-content > .re-convertkit-form form.formkit-form ::placeholder {
  color: #736E6D;
}
.newsletter-component .main-content > .re-convertkit-form form.formkit-form .formkit-fields .formkit-field {
  width: 200px !important;
}
.newsletter-component .main-content > .re-convertkit-form form.formkit-form .formkit-fields .formkit-field .formkit-input {
  width: 100% !important;
}
.newsletter-component .main-content > .re-convertkit-form form.formkit-form .formkit-fields .formkit-submit {
  background-color: #000 !important;
  font-family: "Lora", serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.3rem !important;
  text-transform: uppercase;
}

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