:root {
  --main-background-color: #fefcf6;
  --main-text-color: #162a2c;
  --secondary-text-color: #858585;
  --accent-color: #5e6c5b;
  --white: white;
  --secondary-background-color: #f4efe6;
  --light-grey: #bbb;
  --black: black;
  --buttons: #3898ec00;
}

body {
  background-color: var(--main-background-color);
  color: var(--main-text-color);
  font-family: Old Standard TT, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 120%;
}

h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 120%;
}

h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 120%;
}

h4 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 150%;
}

h5 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}

h6 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

p {
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 150%;
}

a {
  color: var(--main-text-color);
  font-style: italic;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
}

ul {
  margin-bottom: 16px;
  padding-left: 40px;
  line-height: 150%;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  line-height: 150%;
}

li {
  margin-bottom: 12px;
  line-height: 150%;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: 84px;
  display: inline-block;
}

label {
  color: var(--secondary-text-color);
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  display: block;
}

strong {
  font-style: italic;
  font-weight: 700;
}

blockquote {
  border-left: 5px solid var(--accent-color);
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 10px 20px;
  font-size: 18px;
  font-style: italic;
  line-height: 150%;
}

figure {
  max-width: 960px;
  margin: 32px auto;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 16px;
  line-height: 27px;
}

.main-section {
  padding-top: 85px;
  padding-bottom: 85px;
}

.main-container {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
}

.style-header-wrapper, .style-sub-header-wrapper {
  margin-bottom: 24px;
}

.h1-to-h6-tags-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  margin-bottom: 24px;
  display: flex;
}

.italic-span {
  font-family: Old Standard TT, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.two-column-flex {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  margin-bottom: 24px;
  display: flex;
}

.style-paragprah-wrapper {
  background-color: var(--white);
  padding: 16px;
}

.style-paragprah-wrapper.element-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.regular-paragraph {
  font-size: 16px;
  font-style: normal;
  line-height: 150%;
}

.accent-text {
  color: var(--secondary-text-color);
  text-align: center;
  letter-spacing: 6.4px;
  text-transform: uppercase;
  font-family: Heebo, sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 100%;
}

.menu-link {
  color: var(--secondary-text-color);
  letter-spacing: 5.6px;
  text-transform: uppercase;
  font-family: Heebo, sans-serif;
  font-weight: 300;
  line-height: 100%;
}

.button {
  background-color: var(--main-background-color);
  color: var(--secondary-text-color);
  text-align: center;
  letter-spacing: 5.6px;
  text-transform: uppercase;
  padding: 24px 48px;
  font-family: Heebo, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.accent-button {
  background-color: var(--secondary-background-color);
  color: var(--secondary-text-color);
  text-align: center;
  letter-spacing: 5.6px;
  text-transform: uppercase;
  border: 1px solid #0000;
  padding: 24px 48px;
  font-family: Heebo, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s;
}

.accent-button:hover {
  border-color: var(--secondary-text-color);
  background-color: var(--main-background-color);
  color: var(--main-text-color);
}

.contrast-wrapper {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
}

.secondary-button {
  border: 1px solid var(--secondary-text-color);
  background-color: var(--light-grey);
  color: var(--secondary-text-color);
  text-align: center;
  letter-spacing: 5.6px;
  text-transform: uppercase;
  flex: 0 auto;
  padding: 24px 48px;
  font-family: Heebo, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  transition: color .2s, background-color .2s;
}

.secondary-button:hover {
  background-color: var(--secondary-background-color);
  color: var(--main-text-color);
}

.buttons-style-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.color-style-wrapper {
  width: 100%;
  height: 100%;
}

.color-style-wrapper.white {
  background-color: var(--white);
}

.color-style-wrapper.balck {
  background-color: var(--black);
}

.color-style-wrapper.main-background-color {
  background-color: var(--main-background-color);
}

.color-style-wrapper.secondary-background-color {
  background-color: var(--secondary-background-color);
}

.color-style-wrapper.secondary-text-color {
  background-color: var(--secondary-text-color);
}

.color-style-wrapper.accent-text-color {
  background-color: var(--accent-color);
}

.color-style-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 200px 200px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.link {
  font-family: PT Serif, serif;
  font-size: 25px;
  font-style: normal;
  line-height: 150%;
  text-decoration: none;
}

.style-giude-wrapper {
  background-color: var(--secondary-background-color);
  padding: 24px;
}

.navbar {
  background-color: #eddbcd;
  padding-top: 24px;
  padding-bottom: 12px;
}

.navbar-content-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.navbar-container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-brand {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.brand-image {
  width: 50%;
  max-width: 370px;
  height: 100%;
  margin-left: 1px;
}

.navbar-sub-title {
  color: var(--secondary-text-color);
  text-align: center;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  margin-top: -19px;
  font-family: Heebo, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 150%;
}

.nav-link {
  color: var(--secondary-text-color);
  letter-spacing: 5.6px;
  text-transform: uppercase;
  border-bottom: 2px solid #f4efe600;
  padding: 12px;
  font-family: Heebo, sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  transition: border-color .25s;
}

.nav-link:hover {
  border-bottom-color: var(--secondary-background-color);
}

.nav-link.w--current {
  border-bottom-color: var(--secondary-background-color);
  color: var(--secondary-text-color);
  text-decoration: none;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-section {
  aspect-ratio: auto;
  padding-top: 160px;
}

.footer-cta-section {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.footer-title {
  text-align: left;
  max-width: 520px;
}

.footer-button {
  background-color: var(--light-grey);
  color: var(--secondary-text-color);
  text-align: center;
  letter-spacing: 5.6px;
  text-transform: uppercase;
  border: 1px solid #0000;
  padding: 24px 48px;
  font-family: Heebo, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  transition: color .2s, border-color .2s, background-color .2s;
}

.footer-button:hover {
  border-color: var(--secondary-text-color);
  background-color: var(--main-background-color);
  color: var(--main-text-color);
}

.footer-separator {
  background-color: var(--secondary-background-color);
  width: 164px;
  height: 2px;
  margin: 60px auto;
}

.footer-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template: ". . Area"
                 ". . ."
                 / 1.5fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-image {
  box-sizing: border-box;
  object-fit: cover;
  object-position: 100% 50%;
  height: 480px;
}

.footer-column-title {
  letter-spacing: 6.4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: Heebo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.footer-links-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  margin-bottom: 32px;
  display: flex;
}

.footer-link {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: Heebo, sans-serif;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  text-decoration: none;
}

.footer-link.w--current {
  margin-top: 0;
  padding-top: 0;
  font-style: normal;
}

.footer-link-text {
  letter-spacing: 3.6px;
  font-size: 18px;
  font-style: italic;
  line-height: 120%;
}

.background-cta-section {
  background-image: url('../images/Bg-Image_1Bg Image.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.cta-content-wrapper {
  justify-content: center;
  align-items: center;
  min-height: 75svh;
  display: flex;
}

.cta-32px-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.header-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header-wrapper.is-left {
  justify-content: center;
  align-items: flex-start;
}

.regular-separator {
  background-color: var(--secondary-background-color);
  width: 80px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
}

.regular-separator.left {
  margin-left: 0;
}

.regular-separator.secondary-reverse {
  background-color: var(--main-background-color);
  margin-left: 0;
}

.cta-title {
  color: var(--main-text-color);
  text-align: center;
}

.cta-button-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: grid;
}

.cta-card {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 1px solid var(--secondary-background-color);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 120px 100px;
  display: flex;
}

.image {
  margin-top: 0;
  padding-top: 0;
}

.cta-card-small {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 2px solid var(--secondary-background-color);
  background-color: var(--main-background-color);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 490px;
  padding: 64px;
  font-weight: 400;
  display: flex;
  position: absolute;
  inset: 0% 0 0% auto;
}

.testimonial-description {
  text-align: center;
  font-size: 20px;
  line-height: 150%;
}

.small-separator {
  background-color: var(--secondary-background-color);
  width: 40px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
}

.style-guide-blocks {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.intro-section {
  justify-content: center;
  align-items: center;
  min-height: 60svh;
  padding-top: 85px;
  padding-bottom: 85px;
  display: flex;
}

.two-column-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
  position: relative;
}

.two-column-grid.medium-gap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}

.about-me-copy-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.about-image-wrapper {
  width: 120%;
  margin-right: -260px;
}

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

.slider {
  background-color: #ddd0;
  height: 630px;
  position: relative;
}

.slide-nav {
  display: none;
}

.slider-mask {
  overflow: visible;
}

.testimonial-slide {
  margin-right: 240px;
}

.left-arrow {
  opacity: .7;
  width: 32px;
  height: 32px;
}

.right-arrow {
  background-color: var(--white);
  opacity: .7;
  width: 32px;
  height: 32px;
  right: 0;
}

.slider-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 100%;
  display: grid;
}

.slider-image-wrapper {
  position: relative;
}

.slider-content-card {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 1px solid var(--secondary-background-color);
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 420px;
  max-height: 600px;
  padding: 64px 48px;
  display: flex;
  position: absolute;
  inset: 0% 90px 0% auto;
}

.slider-child-wrapper {
  width: 180px;
  height: 220px;
  position: absolute;
  inset: auto auto -100px -90px;
}

.faq-header {
  max-width: 330px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.faq-grid {
  grid-column-gap: 48px;
  grid-row-gap: 64px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.faq-card {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  border: 1px solid var(--secondary-background-color);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: start;
  place-items: start;
  padding: 48px 64px;
  display: grid;
}

.text-left {
  text-align: left;
}

.faq-line {
  background-color: var(--secondary-background-color);
  width: 2px;
  height: 150px;
}

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

.avard-card {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

.award-logo {
  opacity: .5;
  width: 100px;
  margin-bottom: 24px;
  margin-left: 0;
}

.award-title {
  text-align: center;
  font-family: Old Standard TT, sans-serif;
  font-size: 20px;
  line-height: 150%;
}

.medium-center-grid {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.large-image-wrapper {
  max-width: 660px;
}

.regular-section {
  padding-top: 85px;
  padding-bottom: 85px;
  transition: border-color .2s;
  overflow: hidden;
}

.large-center-grid {
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-item {
  width: auto;
  max-width: 48%;
  height: auto;
  margin-left: 19px;
  display: block;
}

.gallery-item:first-child {
  flex-flow: wrap;
  max-width: 500px;
  display: flex;
}

.gallery-item:last-child {
  max-width: 500px;
}

.gallery-item.is-small {
  width: 90%;
  margin-left: 213px;
}

.small-header-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.small-header-wrapper.maximum-width-70 {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.regular-center-grid {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.one-column-gallery {
  grid-column-gap: 32px;
  grid-row-gap: 60px;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.huge-gallery-item {
  margin-bottom: 140px;
  display: block;
}

.huge-gallery-item:first-child {
  flex-flow: wrap;
}

.relative-image-wrapper {
  margin-bottom: 0;
  position: relative;
}

.child-wrapper {
  width: 120px;
  position: absolute;
  inset: 55% 0 auto 90%;
}

.huge-gallery-collection {
  grid-column-gap: 85px;
  grid-row-gap: 85px;
  column-count: 2;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  column-gap: 130px;
}

.process-section {
  padding-top: 85px;
  padding-bottom: 85px;
  overflow: hidden;
}

.process-grid {
  grid-column-gap: 48px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 85px;
  padding-bottom: 85px;
  display: grid;
  position: relative;
}

.large-header-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.huge-separator {
  background-color: var(--secondary-background-color);
  width: 340px;
  height: 2px;
  position: absolute;
  top: auto;
  bottom: 0%;
}

.left-child-wrapper {
  width: 180px;
  position: absolute;
  inset: auto auto -100px -100px;
}

.right-child-wrapper {
  width: 180px;
  position: absolute;
  inset: auto -100px -100px auto;
}

.maximum-width-390px {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.include-grid {
  grid-column-gap: 12px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  display: grid;
}

.include-crad {
  border: 2px solid var(--secondary-background-color);
  padding: 48px 32px;
}

.include-item-grid {
  grid-column-gap: 8px;
  grid-row-gap: 0px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr;
  grid-auto-columns: 1fr;
  place-items: center start;
  margin-bottom: 24px;
  display: grid;
}

.regular-icon {
  width: 16px;
  height: 16px;
}

.check-list-ttite {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 150%;
  text-decoration: none;
}

.template-intro-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  max-width: 390px;
  margin-bottom: -64px;
  display: flex;
}

.intro-template-child {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 320px;
  height: 180px;
}

.gallery-template-rich-text p {
  text-align: left;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 150%;
}

.gallery-template-rich-text h1, .gallery-template-rich-text h2, .gallery-template-rich-text h3 {
  text-align: left;
  margin-bottom: 16px;
}

.gallery-template-rich-text h6, .gallery-template-rich-text h4, .gallery-template-rich-text h5 {
  text-align: left;
  margin-bottom: 8px;
}

.gallery-template-rich-text blockquote {
  margin-top: 32px;
  margin-bottom: 32px;
  line-height: 150%;
}

.large-section {
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}

.gallery-column-left {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: right;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.gallery-column-right {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: right;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gallery-two-column-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 50% 50%;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  padding-top: 60px;
  display: grid;
  position: relative;
}

.large-child-wrapper {
  width: 330px;
  position: absolute;
  inset: auto -100px -100px auto;
}

.best-shorts-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 60px;
  display: grid;
}

.about-me-description-wrapper {
  max-width: 300px;
}

.about-child-wrapper {
  max-width: 220px;
}

.form-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 2px solid var(--secondary-background-color);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding: 85px;
  display: grid;
}

.form-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 32px;
  display: grid;
}

.input {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--secondary-background-color);
  color: var(--main-text-color);
  background-color: #fff0;
  height: 46px;
  margin-bottom: 0;
  padding-left: 0;
  font-size: 14px;
  font-style: normal;
  line-height: 120%;
  transition: border-color .2s;
}

.input:focus {
  border-bottom-color: var(--accent-color);
}

.input::placeholder {
  color: var(--light-grey);
}

.text-area {
  border: 2px solid var(--secondary-background-color);
  opacity: 1;
  background-color: #fff0;
  min-height: 180px;
  margin-bottom: 0;
  font-size: 16px;
  font-style: italic;
  line-height: 120%;
  transition: border-color .2s;
}

.text-area:focus {
  border-color: var(--accent-color);
}

.text-area::placeholder {
  color: var(--light-grey);
  font-style: normal;
}

.custom-section {
  padding-top: 85px;
  padding-bottom: 220px;
  overflow: hidden;
}

.border-image-wrapper {
  background-color: var(--white);
  padding: 10px;
}

.border-image-wrapper.portait {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--secondary-background-color);
  flex-flow: column;
  padding: 32px;
  display: flex;
}

.italic-subtitle {
  text-align: center;
  font-size: 32px;
  font-style: italic;
  line-height: 120%;
}

.team-title {
  color: var(--secondary-text-color);
  text-align: center;
  letter-spacing: 5.6px;
  text-transform: uppercase;
  border-bottom: 2px solid #f4efe600;
  padding: 12px;
  font-family: Heebo, sans-serif;
  font-weight: 300;
  line-height: 100%;
  transition: all .25s;
}

.team-title:hover {
  border-bottom-color: var(--secondary-background-color);
}

.team-title.w--current {
  border-bottom-color: var(--secondary-background-color);
  color: var(--secondary-text-color);
  text-decoration: none;
}

.about-description {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.intro-image {
  width: 100%;
  max-width: 700px;
  margin-left: -280px;
  position: relative;
}

.intro-copy-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  width: 50%;
  margin-left: auto;
  display: flex;
}

.intro-wrapper {
  display: flex;
  position: relative;
}

.intro-wrapper.medium-gap {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.hero-section {
  justify-content: center;
  align-items: center;
  padding-bottom: 200px;
  overflow: hidden;
}

.hero-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hero-copy-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.subtitle {
  text-align: center;
  font-size: 32px;
  line-height: 130%;
}

.hero-image-wrapper {
  width: 140%;
  position: relative;
}

.hero-child-image-wrapper {
  z-index: 1;
  width: 160px;
  height: 220px;
  position: absolute;
  inset: 82% 0% 0% -12%;
}

.hero-section-02 {
  justify-content: center;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 85px;
  overflow: hidden;
}

.hero-wrapper-02 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hero-image-wrapper-02 {
  width: 100%;
  min-height: 600px;
  max-height: 600px;
  margin-bottom: 16px;
  position: relative;
}

.hero-child-image-wrapper-02 {
  z-index: 1;
  width: 180px;
  max-width: 220px;
  height: 240px;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  inset: 0% 0 0% 90%;
}

.secondary-gallery-section {
  padding-top: 85px;
  padding-bottom: 85px;
  overflow: hidden;
}

.testimonial-child-wrapper {
  width: 240px;
  position: absolute;
  inset: 104% 0 auto 81%;
}

.solo-testimonial-img-wrapper {
  width: 620px;
  height: 760px;
  position: relative;
  left: -120px;
}

.intro-section-02 {
  justify-content: center;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 85px;
  display: flex;
  overflow: hidden;
}

.slider-section {
  padding-top: 85px;
  padding-bottom: 140px;
  overflow: hidden;
}

.hero-section-03 {
  justify-content: center;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 140px;
  overflow: hidden;
}

.gallery-main-image {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.maximum-width-600px {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.template-header {
  font-size: 48px;
  font-style: italic;
  line-height: 120%;
}

.gallery-card-image-wrapper {
  margin-bottom: 0;
  position: relative;
}

.h4-style-text {
  font-size: 32px;
  line-height: 150%;
}

.include-crad-two-columns {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 2px solid var(--secondary-background-color);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 48px 32px;
  display: grid;
}

.list {
  list-style-type: decimal;
}

.figure-caption {
  line-height: 150%;
}

.footer-column {
  flex-flow: column;
  justify-content: space-between;
  max-width: 180px;
  display: flex;
}

.copyright-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 16px;
  padding-bottom: 32px;
  display: flex;
}

.success-message {
  border: 1px dashed var(--secondary-text-color);
  background-color: var(--secondary-background-color);
  padding: 48px;
  font-size: 24px;
  line-height: 150%;
}

.image-2 {
  margin-left: 1px;
  padding-left: 116px;
}

.image-3 {
  width: 75%;
}

.image-4 {
  box-sizing: content-box;
  object-fit: fill;
  height: 150%;
  padding-left: 0;
}

.heading {
  padding-left: 0;
}

.bold-text {
  text-align: justify;
  padding-left: 24px;
  font-style: normal;
}

.bold-text-2 {
  padding-left: 17px;
  font-style: normal;
}

.bold-text-3 {
  padding-left: 27px;
  font-style: normal;
}

.bold-text-4 {
  padding-left: 10px;
  font-style: normal;
}

.bold-text-5 {
  padding-left: 21px;
  font-size: 30px;
  font-style: normal;
}

.image-5 {
  width: 85%;
  margin-left: 52px;
}

.image-6 {
  width: 80%;
  margin-left: 76px;
  padding-left: 0;
}

.div-block {
  padding-right: 140px;
}

.image-7 {
  width: auto;
  height: 75%;
  margin-left: 57px;
}

.image-8 {
  width: 85%;
  margin-left: -4px;
}

.text-block {
  text-align: center;
  letter-spacing: 12px;
  padding-bottom: 51px;
  font-family: Heebo, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.image-9 {
  text-align: left;
  vertical-align: middle;
  width: 50%;
  margin-left: 223px;
  margin-right: auto;
  padding-top: 42px;
  padding-left: 0;
  display: inline-block;
}

.image-10, .image-11 {
  height: 360px;
  margin-left: 1px;
}

.image-12 {
  width: 100%;
  margin-left: 20px;
}

.image-13 {
  margin-left: 10px;
}

.image-14 {
  margin-left: 1px;
}

.image-15 {
  margin-left: -1px;
}

.image-16 {
  margin-left: -5px;
}

.image-17 {
  margin-left: 206px;
}

.image-19 {
  height: 360px;
  margin-left: 0;
}

.image-23 {
  margin-left: 0;
}

.image-24 {
  margin-left: 2px;
}

.image-25 {
  margin-left: 1px;
}

.image-26 {
  margin-left: -1px;
}

.image-27 {
  margin-left: -14px;
}

.image-28 {
  margin-left: 141px;
}

.image-29 {
  margin-left: 22px;
}

.image-30 {
  margin-left: -60px;
}

.image-31 {
  margin-left: 171px;
}

.image-32 {
  margin-left: 39px;
}

.image-40 {
  margin-left: -14px;
}

.image-43 {
  margin-left: -2px;
}

.div-block-4 {
  padding-top: 49px;
}

.text-block-2 {
  letter-spacing: 5px;
  padding-top: 21px;
  font-family: Heebo, sans-serif;
  font-weight: 300;
}

.div-block-5 {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
}

.icon {
  color: #34ffda;
  width: 36px;
  height: 36px;
  margin-right: 16px;
}

.page-title {
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 1px;
  margin-bottom: -3px;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
}

.js-clock {
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  line-height: 100px;
  display: flex;
}

.box {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px;
  font-size: 12px;
  line-height: 20px;
  display: flex;
}

.clock-number {
  font-size: 6rem;
  font-weight: 600;
  line-height: 70px;
}

.clock-label {
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-right: -5px;
}

.div-block-6 {
  text-align: center;
  margin-bottom: 39px;
  text-decoration: underline;
}

.text-block-3 {
  font-size: 75px;
}

@media screen and (min-width: 1440px) {
  h1 {
    margin-top: 0;
    margin-bottom: 0;
  }

  h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 58px;
  }

  h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
  }

  h4 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 400;
    line-height: 42px;
  }

  h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
  }

  h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
  }

  .style-sub-header-wrapper {
    margin-bottom: 32px;
  }

  .h1-to-h6-tags-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    display: flex;
  }

  .style-guide-blocks-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
    display: flex;
  }

  .italic-span {
    font-style: italic;
    font-weight: 400;
  }

  .style-guide-blocks {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    background-color: var(--secondary-background-color);
    flex-flow: column;
    padding: 24px;
    display: flex;
  }

  .about-image-wrapper {
    right: -240px;
  }

  .hero-image-wrapper {
    width: 160%;
  }
}

@media screen and (max-width: 991px) {
  .main-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-section {
    z-index: 10;
    position: relative;
  }

  .navbar {
    padding-top: 12px;
  }

  .navbar-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
  }

  .menu-button {
    margin-left: auto;
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: var(--secondary-background-color);
  }

  .navbar-brand {
    margin-left: auto;
    margin-right: auto;
  }

  .brand-image {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 115px;
    padding-left: 111px;
  }

  .navbar-sub-title {
    line-height: 22px;
    display: none;
  }

  .nav-link {
    text-align: center;
    margin-bottom: 24px;
  }

  .nav-menu {
    background-color: var(--main-background-color);
    flex-flow: row;
    padding: 24px;
  }

  .menu-button-icon {
    color: var(--secondary-text-color);
  }

  .footer-section {
    padding-top: 85px;
  }

  .footer-cta-section {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: wrap;
  }

  .footer-title {
    text-align: left;
  }

  .footer-button {
    line-height: 22px;
  }

  .footer-grid {
    grid-column-gap: 32px;
  }

  .cta-title {
    font-size: 40px;
    line-height: 48px;
  }

  .cta-card {
    padding: 32px;
  }

  .image {
    margin-left: -1px;
  }

  .cta-card-small {
    justify-content: center;
    align-items: center;
    padding: 32px;
    position: static;
    right: 0;
  }

  .intro-section {
    min-height: 0;
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .two-column-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-column-grid.medium-gap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .about-image-wrapper {
    margin-left: 32px;
    position: static;
  }

  .slider {
    height: 480px;
  }

  .left-arrow {
    margin-top: auto;
    margin-bottom: 0;
    inset: auto 0% -64px -48px;
  }

  .right-arrow {
    margin-top: auto;
    margin-bottom: 0;
    inset: auto -48px -64px 0%;
  }

  .slider-image-wrapper {
    max-width: 370px;
  }

  .slider-content-card {
    padding: 64px 32px;
    position: static;
    right: 0;
  }

  .slider-child-wrapper {
    width: 140px;
    height: 160px;
    left: 32px;
  }

  .faq-grid {
    grid-column-gap: 32px;
    grid-row-gap: 48px;
  }

  .faq-card {
    padding: 32px 48px;
  }

  .three-column-grid {
    margin-left: -25px;
  }

  .award-logo {
    margin-left: 0;
  }

  .large-image-wrapper {
    max-width: 400px;
  }

  .large-center-grid {
    margin-bottom: 0;
  }

  .gallery-item {
    width: 100%;
    height: 100%;
    margin-left: 22px;
  }

  .gallery-item.is-small {
    margin-left: 48px;
  }

  .large-gallery-image-wrapper {
    height: 500px;
  }

  .regular-center-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .one-column-gallery {
    grid-column-gap: 16px;
  }

  .huge-gallery-item {
    max-width: 500px;
    margin-bottom: 60px;
  }

  .child-wrapper {
    width: 100px;
  }

  .huge-gallery-collection {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    column-count: 0;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .process-grid {
    grid-column-gap: 24px;
  }

  .left-child-wrapper {
    width: 120px;
    bottom: -80px;
    left: -60px;
  }

  .right-child-wrapper {
    width: 120px;
    bottom: -80px;
    right: -60px;
  }

  .include-grid {
    grid-column-gap: 16px;
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .include-crad {
    padding: 24px 16px;
  }

  .include-item-grid {
    grid-template-columns: .25fr;
  }

  .intro-template-child {
    width: 220px;
    height: 120px;
    position: static;
  }

  .large-section {
    padding-top: 85px;
    padding-bottom: 85px;
    padding-left: 0;
  }

  .gallery-two-column-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 50% 50%;
    place-items: start stretch;
  }

  .large-child-wrapper {
    width: 220px;
    margin-left: auto;
    position: static;
    bottom: -150px;
    right: -24px;
  }

  .wedding-image-wrapper {
    margin-left: 32px;
  }

  .form-wrapper {
    padding: 40px;
  }

  .custom-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .team-title {
    text-align: center;
    margin-bottom: 24px;
  }

  .intro-image {
    width: 50%;
    max-width: none;
    margin-left: 0;
    position: static;
  }

  .intro-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .hero-section {
    padding-top: 85px;
    padding-bottom: 100px;
  }

  .hero-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    grid-template-columns: 1fr;
  }

  .hero-image-wrapper {
    width: auto;
    max-width: 80%;
    height: 600px;
    margin-right: 0;
  }

  .hero-child-image-wrapper {
    width: 120px;
    height: 160px;
  }

  .hero-section-02 {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .hero-wrapper-02 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .hero-image-wrapper-02 {
    width: 70%;
    min-height: 400px;
  }

  .hero-child-image-wrapper-02 {
    max-width: 180px;
    bottom: 100px;
  }

  .secondary-gallery-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .testimonial-child-wrapper {
    display: none;
  }

  .solo-testimonial-img-wrapper {
    width: auto;
    height: auto;
    left: auto;
  }

  .intro-section-02 {
    min-height: 0;
  }

  .slider-section {
    padding-top: 85px;
    padding-bottom: 160px;
  }

  .slider-image {
    margin-left: 0;
  }

  .hero-section-03 {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .gallery-card-image-wrapper {
    max-width: 300px;
  }

  .include-crad-two-columns {
    padding: 24px 16px;
  }

  .image-2 {
    padding-left: 0;
  }

  .image-3 {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .image-4 {
    width: auto;
    height: auto;
    margin-left: 16px;
  }

  .image-5 {
    margin-left: 1px;
  }

  .image-6 {
    margin-left: 47px;
  }

  .image-7 {
    margin-left: 36px;
  }

  .image-10 {
    margin-left: -1px;
  }

  .image-11 {
    width: auto;
    margin-left: -2px;
  }

  .image-17 {
    margin-left: 133px;
  }

  .image-18 {
    margin-left: 3px;
  }

  .columns {
    padding-left: 0;
  }

  .image-19 {
    margin-left: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .image-33 {
    margin-left: 33px;
  }

  .image-34 {
    margin-left: -4px;
  }

  .image-35 {
    margin-left: 4px;
  }

  .image-40 {
    margin-left: 0;
  }

  .image-41 {
    margin-left: -17px;
  }

  .image-42 {
    margin-left: -21px;
  }
}

@media screen and (max-width: 767px) {
  .italic-span {
    margin-left: 2px;
    padding-right: 0;
  }

  .button, .accent-button, .secondary-button {
    padding-left: 24px;
    padding-right: 24px;
  }

  .buttons-style-grid {
    grid-template-columns: 1fr;
  }

  .color-style-grid {
    grid-template-rows: 200px 200px 200px auto;
    grid-template-columns: 1fr 1fr;
  }

  .brand-image {
    max-width: 320px;
    margin-left: 62px;
    padding-left: 79px;
  }

  .footer-section {
    padding-bottom: 23px;
  }

  .footer-title {
    letter-spacing: 1svw;
  }

  .footer-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1.5fr;
  }

  .footer-image {
    max-width: 320px;
  }

  .cta-title {
    font-size: 40px;
  }

  .cta-wrapper {
    grid-template-rows: minmax(auto, 360px);
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-card {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .image {
    object-fit: cover;
    object-position: 50% 100%;
  }

  .cta-card-small {
    max-width: none;
  }

  .testimonial-description {
    font-size: 20px;
    line-height: 30px;
  }

  .two-column-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin-bottom: 32px;
    margin-left: 0;
    margin-right: 0;
  }

  .slider-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .slider {
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-slide {
    margin-right: 120px;
  }

  .slider-grid {
    grid-template-columns: minmax(200px, 360px);
    place-content: start center;
  }

  .slider-content-card {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    max-width: none;
    padding: 16px;
    position: static;
  }

  .slider-child-wrapper {
    width: 140px;
    height: auto;
    bottom: -22px;
    left: -72px;
  }

  .faq-wrapper {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-line {
    height: 60px;
  }

  .awards-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .three-column-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .award-logo {
    margin-left: 0;
  }

  .regular-section {
    padding-right: 26px;
    overflow: hidden;
  }

  .large-center-grid {
    margin-bottom: 0;
  }

  .gallery-item {
    max-width: none;
  }

  .large-gallery-image-wrapper {
    max-width: 400px;
  }

  .regular-center-grid {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .huge-gallery-item {
    max-width: none;
  }

  .relative-image-wrapper {
    max-width: 350px;
  }

  .child-wrapper {
    width: 120px;
  }

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

  .process-section {
    margin-left: -16px;
    padding-left: 41px;
    overflow: hidden;
  }

  .process-grid {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .large-header-wrapper {
    max-width: 450px;
  }

  .left-child-wrapper {
    width: 120px;
    bottom: 50px;
  }

  .right-child-wrapper {
    width: 120px;
    bottom: 80px;
    right: -80px;
  }

  .include-wrapper {
    padding-left: 54px;
  }

  .include-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .include-crad {
    padding: 24px 101px 24px 16px;
  }

  .template-intro-wrapper {
    margin-bottom: 0;
  }

  .intro-template-child {
    left: -17px;
  }

  .large-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .gallery-two-column-grid {
    grid-template-columns: 1fr 1fr;
  }

  .large-child-wrapper {
    width: 220px;
    bottom: -150px;
  }

  .wedding-image-wrapper {
    max-width: 400px;
    margin-left: 0;
  }

  .about-me-description-wrapper {
    max-width: none;
  }

  .form-wrapper {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .custom-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .intro-image {
    width: 100%;
    max-width: 430px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .intro-copy-wrapper {
    width: 100%;
  }

  .intro-wrapper {
    flex-flow: column;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section {
    padding-bottom: 85px;
  }

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

  .hero-image-wrapper {
    max-width: none;
    height: 500px;
  }

  .hero-child-image-wrapper {
    max-width: 120px;
    bottom: -80px;
    left: -50px;
  }

  .hero-section-02 {
    padding-bottom: 85px;
  }

  .hero-image-wrapper-02 {
    max-width: 400px;
  }

  .hero-child-image-wrapper-02 {
    width: 120px;
    max-width: none;
    height: 160px;
  }

  .secondary-gallery-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .testimonial-child-wrapper {
    width: 120px;
  }

  .slider-section {
    padding-top: 85px;
    padding-bottom: 160px;
  }

  .slider-image {
    object-fit: cover;
    object-position: 50% 100%;
  }

  .hero-section-03 {
    padding-bottom: 85px;
  }

  .include-image, .gallery-card-image-wrapper {
    max-width: 350px;
  }

  .include-crad-two-columns {
    padding: 24px 16px;
  }

  .copyright-wrapper {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 32px;
  }

  .image-20 {
    margin-left: -5px;
  }

  .image-21 {
    margin-left: 2px;
  }

  .image-22 {
    margin-left: 0;
  }

  .image-23 {
    margin-left: 2px;
  }

  .image-24 {
    margin-left: 0;
  }

  .italic-text {
    padding-right: 37px;
  }

  .heading-2 {
    letter-spacing: 1svw;
  }

  .image-36 {
    margin-left: -5px;
  }

  .image-37 {
    margin-left: -1px;
  }

  .image-38 {
    margin-left: -14px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    font-size: 36px;
    line-height: 43px;
  }

  h3 {
    font-size: 32px;
    line-height: 38px;
  }

  h4 {
    font-size: 24px;
    line-height: 34px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
    line-height: 25px;
  }

  .main-container {
    margin-left: auto;
  }

  .italic-span {
    margin-left: -6px;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .two-column-flex {
    flex-flow: column;
  }

  .regular-paragraph {
    margin-left: -7px;
    padding-right: 20px;
  }

  .color-style-grid {
    grid-template-rows: 200px 200px 200px 200px;
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .link {
    margin-right: -54px;
    padding-right: 0;
    font-size: 22px;
  }

  .navbar-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-image {
    max-width: 270px;
    margin-left: 40px;
    padding-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1.5fr;
    grid-auto-flow: row dense;
  }

  .footer-image {
    max-width: 320px;
    height: 380px;
  }

  .header-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .cta-title {
    padding-left: 0;
    font-size: 32px;
    line-height: 38px;
  }

  .cta-card, .cta-card-small {
    padding: 24px 16px;
  }

  .testimonial-description {
    margin-bottom: 37px;
    padding-left: 0;
  }

  .style-guide-blocks {
    padding: 0;
  }

  .about-me-copy-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .slider-content-card {
    padding: 48px 16px;
  }

  .slider-child-wrapper {
    bottom: -30px;
    left: -70px;
  }

  .faq-header {
    max-width: 240px;
  }

  .faq-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .text-left {
    padding-right: 42px;
  }

  .three-column-grid {
    grid-template-columns: 1fr;
  }

  .avard-card {
    max-width: 320px;
  }

  .regular-section {
    padding-right: 0;
  }

  .gallery-item {
    width: 100%;
    margin-left: 0;
  }

  .gallery-item.is-small {
    width: 100%;
    margin-left: -1px;
  }

  .regular-center-grid {
    place-items: center;
  }

  .one-column-gallery {
    justify-content: center;
  }

  .child-wrapper {
    width: 100px;
    left: 80%;
  }

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

  .process-section {
    margin-left: 0;
    margin-right: -28px;
    padding-left: 0;
  }

  .process-grid {
    grid-row-gap: 32px;
  }

  .left-child-wrapper {
    width: 100px;
    bottom: 100px;
    left: -40px;
    right: auto;
  }

  .right-child-wrapper {
    width: 100px;
    right: -40px;
  }

  .include-wrapper {
    padding-left: 0;
  }

  .include-grid {
    grid-template-columns: 1fr;
  }

  .include-crad {
    text-align: center;
    border-style: none none solid;
    margin-left: 150px;
    padding: 32px 0;
  }

  .include-item-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-auto-flow: row;
    place-items: center stretch;
    margin-bottom: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .check-list-ttite {
    box-sizing: border-box;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    text-decoration: none;
  }

  .template-intro-wrapper {
    margin-bottom: 0;
  }

  .intro-template-child {
    position: static;
  }

  .large-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .gallery-two-column-grid {
    grid-template-columns: 1fr;
  }

  .large-child-wrapper {
    width: 180px;
    bottom: -150px;
    right: -16px;
  }

  .best-shorts-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  .wedding-image-wrapper {
    margin-left: 0;
  }

  .form-wrapper {
    margin-left: 10px;
    margin-right: -29px;
    padding: 24px 16px;
  }

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

  .custom-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .about-description {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .intro-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .hero-section {
    padding-bottom: 0;
  }

  .hero-copy-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .hero-image-wrapper {
    max-width: 100%;
  }

  .hero-child-image-wrapper {
    top: 80%;
  }

  .hero-section-02 {
    padding-bottom: 0;
  }

  .hero-image-wrapper-02 {
    width: 100%;
    max-width: 400px;
  }

  .hero-child-image-wrapper-02 {
    width: 120px;
    height: 160px;
    left: 80%;
  }

  .secondary-gallery-section {
    padding-top: 85px;
    padding-bottom: 85px;
  }

  .testimonial-child-wrapper {
    width: 100px;
    top: 56%;
    left: 79%;
  }

  .slider-section {
    padding-top: 85px;
    padding-bottom: 140px;
  }

  .hero-section-03 {
    padding-bottom: 0;
  }

  .gallery-main-image {
    aspect-ratio: 3 / 4;
  }

  .maximum-width-600px {
    margin-left: 174px;
  }

  .include-image {
    max-width: 400px;
  }

  .gallery-card-image-wrapper {
    height: 400px;
  }

  .include-crad-two-columns {
    border-style: none none solid;
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .image-3 {
    margin-left: 1px;
  }

  .bold-text {
    padding-left: 0;
  }

  .bold-text-2 {
    margin-left: -88px;
    padding-left: 79px;
    padding-right: 0;
  }

  .bold-text-3 {
    padding-left: 0;
  }

  .bold-text-5 {
    margin-left: -22px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-5 {
    margin-left: 27px;
  }

  .image-6 {
    margin-left: 34px;
  }

  .image-8 {
    margin-left: 21px;
  }

  .image-15 {
    margin-left: -14px;
  }

  .image-16 {
    margin-left: -15px;
  }

  .image-22 {
    margin-left: 3px;
  }

  .image-23 {
    margin-left: 0;
  }

  .image-26 {
    margin-left: -46px;
  }

  .image-27 {
    margin-left: 3px;
  }

  .image-28 {
    margin-left: 67px;
  }

  .image-33 {
    margin-left: 2px;
  }

  .italic-text {
    margin-left: 4px;
  }

  .div-block-2 {
    padding-left: 162px;
  }

  .image-35 {
    margin-left: -14px;
  }

  .image-39 {
    margin-left: -10px;
  }

  .div-block-3 {
    margin-left: -141px;
  }

  .image-42 {
    margin-left: 0;
  }

  .image-44 {
    margin-left: -13px;
  }

  .div-block-5 {
    max-width: 90%;
    font-size: 14px;
  }

  .page-title {
    text-align: center;
    font-size: 38px;
    line-height: 46px;
  }

  .js-clock {
    flex-wrap: wrap;
  }

  .box {
    margin-bottom: 10px;
  }
}

#w-node-cf7740a8-c163-477c-d7c7-ce178e446383-4b6b1626 {
  align-self: center;
}

#w-node-_6c1bab36-6b08-0061-fc9c-320c5a0665ed-4b6b1626 {
  align-self: start;
}

#w-node-_992bcfda-e176-7f9e-520f-760cdc3e2e3e-4b6b1626 {
  place-self: center;
}

#w-node-_992bcfda-e176-7f9e-520f-760cdc3e2e27-4b6b1626 {
  place-self: center end;
}

#w-node-_3382df07-247f-3795-cf0a-a62f1f92e911-1f92e906 {
  justify-self: end;
}

#w-node-_59968909-b740-8d25-8939-75fb6154ba19-1f92e906 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_97f1bbb5-0341-2960-9ba9-3b6710254f35-10254f2e {
  place-self: center end;
}

#w-node-_97f1bbb5-0341-2960-9ba9-3b6710254f39-10254f2e {
  place-self: center start;
}

#w-node-_97f1bbb5-0341-2960-9ba9-3b6710254f4e-10254f2e, #w-node-_5ba4198c-7fed-ff53-ec88-4ee9dad6890b-dad68908 {
  place-self: center stretch;
}

#w-node-_5ba4198c-7fed-ff53-ec88-4ee9dad6891c-dad68908 {
  place-self: center;
}

#w-node-ee55a647-702b-d19d-c66f-1ea7031e24b9-031e24b6 {
  align-self: stretch;
}

#w-node-ee55a647-702b-d19d-c66f-1ea7031e24bb-031e24b6 {
  place-self: center;
}

#w-node-beb94a42-fa4f-3c7f-d80e-91ce7529c1b1-7529c1a3, #w-node-beb94a42-fa4f-3c7f-d80e-91ce7529c1b5-7529c1a3, #w-node-beb94a42-fa4f-3c7f-d80e-91ce7529c1b9-7529c1a3, #w-node-_2672241f-8cd7-4fe5-461a-a869737db915-7529c1a3, #w-node-_2672241f-8cd7-4fe5-461a-a869737db919-7529c1a3, #w-node-_2672241f-8cd7-4fe5-461a-a869737db91d-7529c1a3 {
  place-self: center;
}

#w-node-_677b6ae8-624b-ea95-8b15-fa2377057a79-4b6b1627 {
  place-self: stretch stretch;
}

#w-node-a4fb24a2-a984-f76e-2b98-81c3efe2b6bf-4b6b1628 {
  order: 0;
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end start;
}

#w-node-a4fb24a2-a984-f76e-2b98-81c3efe2b6bd-4b6b1628 {
  place-self: center;
}

#w-node-_76f6cc6c-6b8f-1fed-cd8c-53aa7a109771-4b6b1628 {
  justify-self: stretch;
}

#w-node-_6cf9be74-ba5d-4e42-f4ae-804426341266-4b6b1628 {
  place-self: stretch stretch;
}

#w-node-e1dfbd65-8f21-4bb3-344f-18036d0f8c4a-6d0f8c39 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: auto;
}

#w-node-e1dfbd65-8f21-4bb3-344f-18036d0f8c56-6d0f8c39 {
  justify-self: center;
}

#w-node-adbd5761-c594-efd3-7311-8995d6d08c2d-4b6b1629 {
  align-self: start;
}

#w-node-ab5d8f6c-6cc8-b82f-c2f1-ab8b36950ef1-4b6b1629 {
  order: 0;
}

#w-node-d6f63079-79ae-b1c4-929d-15330f4fa026-4b6b1629 {
  place-self: start end;
}

#w-node-_03977eb9-458e-d53d-14fb-77bba563e2df-4b6b1629 {
  place-self: end start;
}

#w-node-_3062a5d8-4a69-1f22-429e-cf6d33a06a93-4b6b1629 {
  place-self: start end;
}

#w-node-a1200a11-9822-8c8f-fdd1-24f0042f04fa-042f04d2, #w-node-_5e87550c-ec80-be17-bf55-a6362a4d7b96-042f04d2, #w-node-_496bffc4-835a-5627-9036-e016fdfcc076-042f04d2, #w-node-_39b3ab49-eb4c-3e86-088b-e5bd49e99aec-042f04d2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a21974fd-a21974e6 {
  place-self: center;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197502-a21974e6 {
  justify-self: center;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197504-a21974e6 {
  place-self: center;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a219750f-a21974e6 {
  justify-self: center;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197515-a21974e6 {
  place-self: center;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a219751a-a21974e6 {
  justify-self: center;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a219751c-a21974e6 {
  place-self: center;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197525-a21974e6 {
  justify-self: center;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a219752b-a21974e6 {
  place-self: center;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197530-a21974e6 {
  justify-self: center;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197532-a21974e6 {
  place-self: center;
}

#w-node-_465e12c0-9a92-d75f-e0ca-cde8a219753b-a21974e6 {
  justify-self: center;
}

#w-node-ff669d68-61df-c593-caa0-c5a0935c3469-4b6b162a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center end;
}

#w-node-_48f7b251-17bb-3b90-8941-865af5d71964-4b6b162a {
  order: 0;
}

#w-node-_48f7b251-17bb-3b90-8941-865af5d71965-4b6b162a {
  justify-self: start;
}

#w-node-_5222edcf-85db-49c9-008e-dc156d183282-4b6b162a {
  place-self: center start;
}

#w-node-_5222edcf-85db-49c9-008e-dc156d183293-4b6b162a {
  place-self: center;
}

#w-node-_4db6f26d-5fcd-ebe9-6f3d-e8eb0ef9ae0a-4b6b162b {
  place-self: end center;
}

#w-node-_4db6f26d-5fcd-ebe9-6f3d-e8eb0ef9ae1d-4b6b162b {
  place-self: center stretch;
}

#w-node-_0c90db02-564d-c3ff-6ceb-bfbe18d162f8-4b6b162b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_6b5810a8-8b3e-b206-4914-480f53060945-53060942, #w-node-_6b5810a8-8b3e-b206-4914-480f53060955-53060942 {
  align-self: stretch;
}

#w-node-cf7740a8-c163-477c-d7c7-ce178e446383-4b6b162c {
  align-self: center;
}

#w-node-_801152d2-08b8-572c-22a2-d1c5e8aa7309-4b6b162c {
  order: 0;
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_801152d2-08b8-572c-22a2-d1c5e8aa7313-4b6b162c, #w-node-c782867d-acb7-58b6-aca4-c3bf310c80b1-310c80a4 {
  place-self: stretch stretch;
}

#w-node-c782867d-acb7-58b6-aca4-c3bf310c80b6-310c80a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c782867d-acb7-58b6-aca4-c3bf310c80b7-310c80a4 {
  place-self: stretch;
}

#w-node-c782867d-acb7-58b6-aca4-c3bf310c80bc-310c80a4 {
  place-self: stretch stretch;
}

#w-node-c782867d-acb7-58b6-aca4-c3bf310c80c1-310c80a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c782867d-acb7-58b6-aca4-c3bf310c80c2-310c80a4, #w-node-c782867d-acb7-58b6-aca4-c3bf310c80c7-310c80a4 {
  place-self: stretch stretch;
}

#w-node-c782867d-acb7-58b6-aca4-c3bf310c80cc-310c80a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c782867d-acb7-58b6-aca4-c3bf310c80cd-310c80a4, #w-node-ba8fd717-0933-88c7-13a5-66d967d9a6f9-310c80a4 {
  place-self: stretch stretch;
}

#w-node-ef95eac0-dc8f-7db3-f8e3-e7cbcdc32d1f-310c80a4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a82d38cd-8329-8d60-6bd6-6eb41ba40f88-310c80a4 {
  place-self: stretch stretch;
}

#w-node-_532bca90-fc81-cd95-75e0-ae8ca738dfa8-4b6b162d {
  align-self: center;
}

#w-node-_42e777ea-c28d-263d-f6c7-3d43ec779b5a-4b6b162d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_533e4ffc-3806-097c-70cb-85dea5203bff-4b6b162d {
  place-self: start end;
}

#w-node-_533e4ffc-3806-097c-70cb-85dea5203c01-4b6b162d {
  place-self: end start;
}

#w-node-_533e4ffc-3806-097c-70cb-85dea5203c03-4b6b162d, #w-node-d3ec3c5d-1fd5-12b1-8218-b38013b3b44c-4b6b162d {
  place-self: start end;
}

#w-node-_6088d343-5514-58e9-3ce4-e0f2cb5396ea-4b6b162d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cb716996-026b-6505-e46b-eb8701ff3188-4b6b162d {
  place-self: start end;
}

#w-node-cb716996-026b-6505-e46b-eb8701ff318a-4b6b162d {
  place-self: end start;
}

#w-node-cb716996-026b-6505-e46b-eb8701ff318c-4b6b162d {
  place-self: start end;
}

#w-node-cb716996-026b-6505-e46b-eb8701ff318e-4b6b162d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_63a84142-77ad-75bf-b9a9-a391439d9698-4b6b162d {
  place-self: start end;
}

#w-node-_63a84142-77ad-75bf-b9a9-a391439d969a-4b6b162d {
  place-self: end start;
}

#w-node-_63a84142-77ad-75bf-b9a9-a391439d969c-4b6b162d, #w-node-e78f87e7-03d5-3ca7-21fa-ee13665ddaf3-4b6b162d {
  place-self: start end;
}

#w-node-f6406545-57da-ea32-8b27-46c72b4e669e-4b6b162d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e78f87e7-03d5-3ca7-21fa-ee13665ddaf5-4b6b162d {
  place-self: end start;
}

#w-node-e78f87e7-03d5-3ca7-21fa-ee13665ddaf7-4b6b162d, #w-node-_1795f346-f0eb-add2-dc0b-332bf73c652e-4b6b162d, #w-node-_1795f346-f0eb-add2-dc0b-332bf73c6532-4b6b162d {
  place-self: start end;
}

#w-node-_091f3a8b-dd6b-942d-f8fc-1db53585683e-4b6b162e, #w-node-_238c33af-d079-49bc-037f-8d65572355ba-4b6b162e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-c782867d-acb7-58b6-aca4-c3bf310c80c2-310c80a4 {
    place-self: stretch stretch;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_6c1bab36-6b08-0061-fc9c-320c5a0665ed-4b6b1626 {
    order: -9999;
    justify-self: center;
  }

  #w-node-_992bcfda-e176-7f9e-520f-760cdc3e2e3e-4b6b1626 {
    place-self: stretch stretch;
  }

  #w-node-_97f1bbb5-0341-2960-9ba9-3b6710254f35-10254f2e {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: stretch end;
  }

  #w-node-_97f1bbb5-0341-2960-9ba9-3b6710254f39-10254f2e {
    align-self: center;
  }

  #w-node-_5ba4198c-7fed-ff53-ec88-4ee9dad6891c-dad68908, #w-node-ee55a647-702b-d19d-c66f-1ea7031e24b9-031e24b6, #w-node-ee55a647-702b-d19d-c66f-1ea7031e24bb-031e24b6 {
    place-self: stretch stretch;
  }

  #w-node-a4fb24a2-a984-f76e-2b98-81c3efe2b6bf-4b6b1628 {
    grid-column: span 1 / span 1;
  }

  #w-node-a4fb24a2-a984-f76e-2b98-81c3efe2b6bd-4b6b1628 {
    place-self: stretch stretch;
  }

  #w-node-e1dfbd65-8f21-4bb3-344f-18036d0f8c4c-6d0f8c39 {
    justify-self: center;
  }

  #w-node-_12897c7c-c453-b6b7-aa72-712e38fb5f07-4b6b1629 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a1200a11-9822-8c8f-fdd1-24f0042f04e3-042f04d2, #w-node-a1200a11-9822-8c8f-fdd1-24f0042f04fc-042f04d2, #w-node-_23e430b1-cc98-9d1f-cefd-a3797bea4cba-042f04d2, #w-node-_39d0c6e1-26b6-bf63-5f3d-78d2b20ba757-042f04d2 {
    place-self: stretch stretch;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a21974f9-a21974e6 {
    justify-self: end;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a21974fd-a21974e6 {
    justify-self: start;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197504-a21974e6 {
    justify-self: end;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a219750b-a21974e6 {
    justify-self: start;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197511-a21974e6 {
    justify-self: end;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197515-a21974e6 {
    justify-self: start;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a219751c-a21974e6 {
    justify-self: end;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197521-a21974e6 {
    justify-self: start;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197527-a21974e6 {
    justify-self: end;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a219752b-a21974e6 {
    justify-self: start;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197532-a21974e6 {
    justify-self: end;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197537-a21974e6 {
    justify-self: start;
  }

  #w-node-_5222edcf-85db-49c9-008e-dc156d183293-4b6b162a {
    place-self: stretch stretch;
  }

  #w-node-_6c1bab36-6b08-0061-fc9c-320c5a0665ed-4b6b162c {
    justify-self: center;
  }

  #w-node-_801152d2-08b8-572c-22a2-d1c5e8aa7309-4b6b162c {
    grid-column: span 1 / span 1;
  }

  #w-node-_801152d2-08b8-572c-22a2-d1c5e8aa7313-4b6b162c {
    place-self: stretch stretch;
  }

  #w-node-_532bca90-fc81-cd95-75e0-ae8ca738dfb1-4b6b162d {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_992bcfda-e176-7f9e-520f-760cdc3e2e3e-4b6b1626 {
    order: -9999;
  }

  #w-node-_3382df07-247f-3795-cf0a-a62f1f92e911-1f92e906 {
    justify-self: auto;
  }

  #w-node-_59968909-b740-8d25-8939-75fb6154ba19-1f92e906, #w-node-_97f1bbb5-0341-2960-9ba9-3b6710254f35-10254f2e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5ba4198c-7fed-ff53-ec88-4ee9dad6891c-dad68908 {
    order: -9999;
    justify-self: center;
  }

  #w-node-a4fb24a2-a984-f76e-2b98-81c3efe2b6bf-4b6b1628 {
    justify-self: start;
  }

  #w-node-a4fb24a2-a984-f76e-2b98-81c3efe2b6bd-4b6b1628 {
    order: -9999;
  }

  #w-node-e1dfbd65-8f21-4bb3-344f-18036d0f8c4c-6d0f8c39 {
    justify-self: center;
  }

  #w-node-_12897c7c-c453-b6b7-aa72-712e38fb5f07-4b6b1629, #w-node-a1200a11-9822-8c8f-fdd1-24f0042f04fc-042f04d2, #w-node-_23e430b1-cc98-9d1f-cefd-a3797bea4cba-042f04d2, #w-node-_39d0c6e1-26b6-bf63-5f3d-78d2b20ba757-042f04d2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a21974f9-a21974e6, #w-node-_465e12c0-9a92-d75f-e0ca-cde8a21974fd-a21974e6, #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197504-a21974e6 {
    justify-self: center;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a219750b-a21974e6 {
    order: -9999;
    justify-self: center;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197511-a21974e6, #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197515-a21974e6, #w-node-_465e12c0-9a92-d75f-e0ca-cde8a219751c-a21974e6 {
    justify-self: center;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197521-a21974e6 {
    order: -9999;
    justify-self: center;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197527-a21974e6 {
    place-self: auto center;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a219752b-a21974e6, #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197532-a21974e6 {
    justify-self: center;
  }

  #w-node-_465e12c0-9a92-d75f-e0ca-cde8a2197537-a21974e6 {
    order: -9999;
    justify-self: center;
  }

  #w-node-ff669d68-61df-c593-caa0-c5a0935c3469-4b6b162a {
    justify-self: start;
  }

  #w-node-_5222edcf-85db-49c9-008e-dc156d183293-4b6b162a {
    order: -9999;
  }

  #w-node-_4db6f26d-5fcd-ebe9-6f3d-e8eb0ef9ae0a-4b6b162b {
    justify-self: stretch;
  }

  #w-node-_4db6f26d-5fcd-ebe9-6f3d-e8eb0ef9ae0c-4b6b162b {
    order: 9999;
  }

  #w-node-_4db6f26d-5fcd-ebe9-6f3d-e8eb0ef9ae1d-4b6b162b {
    order: -9999;
  }

  #w-node-_0c90db02-564d-c3ff-6ceb-bfbe18d162f8-4b6b162b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6b5810a8-8b3e-b206-4914-480f53060955-53060942 {
    order: -9999;
  }

  #w-node-_801152d2-08b8-572c-22a2-d1c5e8aa7309-4b6b162c {
    justify-self: center;
  }

  #w-node-_801152d2-08b8-572c-22a2-d1c5e8aa7313-4b6b162c {
    order: -9999;
    place-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_3382df07-247f-3795-cf0a-a62f1f92e90f-1f92e906 {
    order: 9999;
  }

  #w-node-_3382df07-247f-3795-cf0a-a62f1f92e911-1f92e906 {
    justify-self: start;
  }

  #w-node-_5ba4198c-7fed-ff53-ec88-4ee9dad68918-dad68908 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3d8fe181-40b4-d5ab-fb46-d5ea9a0d842c-4b6b1627 {
    justify-self: stretch;
  }

  #w-node-a4fb24a2-a984-f76e-2b98-81c3efe2b6bf-4b6b1628 {
    order: 0;
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-e1dfbd65-8f21-4bb3-344f-18036d0f8c4c-6d0f8c39 {
    justify-self: center;
  }

  #w-node-ab5d8f6c-6cc8-b82f-c2f1-ab8b36950ef1-4b6b1629 {
    order: 0;
  }

  #w-node-_03977eb9-458e-d53d-14fb-77bba563e2df-4b6b1629 {
    justify-self: center;
  }

  #w-node-a1200a11-9822-8c8f-fdd1-24f0042f04ee-042f04d2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_23e430b1-cc98-9d1f-cefd-a3797bea4cbd-042f04d2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto;
  }

  #w-node-_48f7b251-17bb-3b90-8941-865af5d71964-4b6b162a {
    order: 0;
  }

  #w-node-_0c90db02-564d-c3ff-6ceb-bfbe18d162f8-4b6b162b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_801152d2-08b8-572c-22a2-d1c5e8aa7309-4b6b162c {
    order: 0;
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-_801152d2-08b8-572c-22a2-d1c5e8aa7313-4b6b162c {
    place-self: stretch stretch;
  }

  #w-node-_533e4ffc-3806-097c-70cb-85dea5203c01-4b6b162d, #w-node-cb716996-026b-6505-e46b-eb8701ff318a-4b6b162d, #w-node-_63a84142-77ad-75bf-b9a9-a391439d969a-4b6b162d, #w-node-e78f87e7-03d5-3ca7-21fa-ee13665ddaf5-4b6b162d {
    justify-self: center;
  }

  #w-node-e2a62749-b054-9787-a693-9c50119df9fd-4b6b1630, #w-node-e2a62749-b054-9787-a693-9c50119df9fd-4b6b1631, #w-node-_3a578d47-0536-6139-4843-b2a17495de68-4b6b1631 {
    order: -9999;
  }
}


