@font-face {
  font-family: Myriadpro;
  src: url('../fonts/MyriadPro-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

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

@font-face {
  font-family: Matter;
  src: url('../fonts/Matter-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: auto;
}

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

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

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

:root {
  --white-smoke: #f1f1f3;
  --burlywood: #e1b788;
  --black: #09090a;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formrecaptcha {
  margin-bottom: 8px;
}

body {
  color: #333;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

h1 {
  color: #fff;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 18px;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 80px;
  font-weight: 100;
  line-height: 80px;
}

h2 {
  color: var(--white-smoke);
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
}

h3 {
  color: var(--white-smoke);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  color: var(--white-smoke);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: var(--white-smoke);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Gayathri, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  color: var(--white-smoke);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Cormorant Garamond, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}

p {
  color: var(--white-smoke);
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: Gayathri, sans-serif;
  font-size: 18px;
  font-weight: 100;
}

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

a:hover {
  text-decoration: underline;
}

.section {
  background-color: #09090a;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 16vh;
  padding-bottom: 16vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.full-width-slider {
  height: 600px;
  position: relative;
}

.section.split {
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  height: 700px;
  min-height: 85vh;
  padding-top: 0;
  padding-bottom: 0;
}

.section.split.highlights {
  height: auto;
}

.section.hero-section {
  background-color: var(--black);
  align-items: flex-start;
  height: 100vh;
}

.section.above-lifestyle {
  height: 80vh;
  min-height: auto;
  max-height: 700px;
  padding-top: 16vh;
  padding-bottom: 16vh;
  display: none;
}

.section.life-style {
  z-index: 0;
  margin-top: -46px;
  padding-top: 16vh;
  padding-bottom: 16vh;
  overflow: visible;
}

.section.form {
  background-color: var(--burlywood);
  perspective: 843px;
  transform: perspective(1118px);
}

.section.transform-perspective {
  perspective: 804px;
  transform: perspective(1137px);
}

.section.licensing {
  min-height: 100vh;
  max-height: none;
}

.text-wrap {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 575px;
  display: flex;
  position: relative;
}

.text-wrap.neighborhood {
  opacity: 1;
  background-color: #09090acc;
  border-radius: 2px;
  padding: 40px;
}

.video-lightbox-link {
  align-items: center;
  padding-top: 20px;
  padding-bottom: 30px;
  text-decoration: none;
  display: flex;
}

.video-lightbox-link:hover {
  text-decoration: none;
}

.white-text {
  color: #fff;
}

.play-circle {
  border: .07em solid #fff;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  transition: all .35s;
  display: flex;
}

.play-circle:hover {
  border-color: var(--burlywood);
  background-color: var(--burlywood);
}

.navbar {
  background-color: #0000;
  flex-direction: row;
  justify-content: space-between;
  padding: 9px 4vw;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-link {
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 14px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 200;
  text-decoration: none;
  transition: all .35s;
}

.nav-link:hover {
  color: var(--burlywood);
  text-decoration: none;
}

.nav-link.last {
  margin-right: 10px;
}

.div-block {
  background-color: var(--burlywood);
  border-radius: 0;
  width: 10px;
  height: 10px;
  margin-top: 24px;
  margin-bottom: 24px;
  transform: rotate(45deg);
}

.div-block.hero {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-right: 20px;
}

.full-width-slider {
  background-color: #0000;
  height: auto;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.left-arrow, .right-arrow {
  display: none;
}

.slider-image {
  background-image: url('../images/Image_9678.jpeg'), linear-gradient(to bottom, var(--black), var(--black));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: contain, auto;
  position: absolute;
  inset: 0%;
}

.slider-image._2 {
  background-image: url('../images/alevision-co-ZeNciLLPQas-unsplash.jpeg');
}

.slider-image._3 {
  background-image: url('../images/gordon-cowie-JbcOtH0W6UQ-unsplash.jpeg');
  background-position: 50%;
}

.slide-nav {
  margin-bottom: 16px;
  font-size: 12px;
  display: none;
}

.slide-nav._2 {
  text-align: left;
  margin-bottom: 15px;
  padding-left: 40px;
  display: block;
}

.slide-nav._2.hide {
  display: none;
}

._35-percent {
  background-color: var(--burlywood);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 35%;
  padding: 40px;
  display: flex;
  position: relative;
}

.slider {
  height: auto;
  position: absolute;
  inset: 0%;
}

.slider-wrap {
  height: 100%;
  display: flex;
}

.slider-image-wrap {
  flex: 1;
  overflow: hidden;
}

.half-slider-image {
  background-image: url('../images/3.png'), linear-gradient(to bottom, var(--burlywood), var(--burlywood));
  background-position: 100%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: contain, auto;
  height: 100%;
}

.half-slider-image._2 {
  background-image: url('../images/ralph-ravi-kayden-FqqiAvJejto-unsplash.png');
}

.half-slider-image._3 {
  background-image: url('../images/ralph-ravi-kayden-MyeOnGcibCQ-unsplash.png');
}

.half-slider-image.slide-2 {
  background-image: url('../images/5.png');
  background-position: 50% 0;
}

.half-slider-image.slide-2.slide-image-2 {
  background-image: url('../images/sidekix-media-_AK42TQRyCw-unsplash.png');
}

.half-slider-image.life-coach {
  background-image: url('../images/6.png'), linear-gradient(to bottom, var(--burlywood), var(--burlywood));
  background-position: 100%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: contain, auto;
}

.highlights-image-wrap {
  background-image: url('../images/Image_9594.jpeg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  flex: 1;
  overflow: hidden;
}

.highlight-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 14px;
  display: flex;
}

.highlight {
  color: var(--white-smoke);
  padding-left: 40px;
  padding-right: 40px;
  font-size: 16px;
  line-height: 20px;
}

.small-div {
  background-color: var(--burlywood);
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
}

._30px-div {
  width: 100%;
  height: 30px;
}

.form-block {
  z-index: 2;
  width: 700px;
  position: relative;
}

.field-label {
  color: var(--black);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

.field-label.white-text {
  color: #fff;
}

.text-field {
  border: 2px solid var(--black);
  color: var(--black);
  background-color: #0000;
  border-radius: 0;
  height: 60px;
  font-size: 24px;
}

.text-field:focus {
  border-color: var(--black);
  opacity: .84;
  background-color: #09090a12;
}

.text-field.color-boarder {
  border-color: var(--burlywood);
  color: #fff;
}

.text-field.color-boarder:active {
  border-color: var(--burlywood);
}

.text-field.color-boarder:focus {
  border-color: var(--burlywood);
  background-color: #e1b78899;
}

.text-field.large {
  height: 150px;
}

.field-wrap {
  margin-top: 24px;
  display: flex;
}

._50-percent {
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}

._100-percent {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.button {
  border: 2px solid var(--white-smoke);
  color: var(--white-smoke);
  letter-spacing: 3px;
  text-transform: uppercase;
  background-color: #0000;
  border-radius: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: all .35s;
}

.button:hover {
  border-color: var(--burlywood);
  background-color: var(--burlywood);
  color: var(--black);
  text-decoration: none;
}

.button.submit {
  border-color: var(--black);
  color: var(--black);
  align-self: center;
  margin-top: 30px;
}

.button.submit:hover {
  background-color: var(--black);
  color: var(--white-smoke);
}

.button.submit-form-2 {
  align-self: center;
  margin-top: 40px;
}

.form {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.footer {
  z-index: 1;
  background-color: var(--black);
  border-top: 1px solid #f1f1f34d;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
  font-family: Cormorant Garamond, sans-serif;
  display: flex;
  position: relative;
}

.stencil {
  position: absolute;
  inset: -171px auto auto -192px;
}

.stencil._1 {
  z-index: 2;
  inset: auto auto 34px -470px;
}

.stencil._2 {
  z-index: 2;
  inset: auto -940px -203px auto;
}

.stencil._3 {
  inset: auto auto -308px -534px;
}

.stencil._4 {
  inset: -13px -522px auto auto;
}

.stencil._5 {
  inset: -383px auto auto -579px;
}

.stencil._6 {
  z-index: 999999;
  inset: auto -502px -260px auto;
}

.play {
  margin-left: 3px;
}

.play-film {
  color: #fff;
  letter-spacing: 2.5px;
  line-height: 16px;
}

.lifestyle-image-wrap-1 {
  z-index: 3;
  border: 4px solid var(--burlywood);
  border-radius: 50%;
  width: 380px;
  height: 380px;
  display: none;
  position: absolute;
  inset: -9.2em auto auto 1.3em;
  overflow: hidden;
}

.lifestyle-image-1 {
  background-image: url('../images/humphrey-muleba-LOA2mTj1vhc-unsplash.png');
  background-position: 0%;
  background-size: cover;
  background-attachment: scroll;
  position: absolute;
  inset: 0%;
}

.lifestyle-image-wrap-2 {
  z-index: 3;
  border: 4px solid var(--burlywood);
  border-radius: 50%;
  width: 250px;
  height: 250px;
  display: none;
  position: absolute;
  inset: -8.3em 4.1em auto auto;
  overflow: hidden;
}

.lifestyle-image-2 {
  background-image: url('../images/heidi-fin-2TLREZi7BUg-unsplash.png');
  background-position: 50%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.lifestyle-image-wrap-3 {
  z-index: 3;
  border: 4px solid var(--burlywood);
  border-radius: 50%;
  width: 240px;
  height: 240px;
  display: none;
  position: absolute;
  inset: auto auto -6.6em 3.8em;
  overflow: hidden;
}

.lifestyle-image-3 {
  background-image: url('../images/carissa-rogers-KFp4brRzt64-unsplash.png');
  background-position: 30%;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.lifestyle-image-wrap-4 {
  z-index: 3;
  border: 4px solid var(--burlywood);
  border-radius: 50%;
  width: 350px;
  height: 350px;
  display: none;
  position: absolute;
  inset: auto .5em -8.2em auto;
  overflow: hidden;
}

.lifestyle-image-4 {
  background-image: url('../images/siamak-YduJNHSnJUU-unsplash.png');
  background-position: 50% 80%;
  background-size: cover;
  position: absolute;
  inset: 0% 0;
}

.popup-form {
  z-index: 10000;
  background-color: var(--black);
  opacity: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
  inset: 0%;
}

.close {
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.close-wrap {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  padding: 25px 60px 25px 40px;
  display: flex;
}

.close-line {
  background-color: #e9ecf5;
  width: 2px;
  height: 40px;
  transform: translate(0, -6px)rotate(45deg);
}

.close-line.line-2 {
  transform: translate(0, -6px)rotate(-45deg);
}

.success-message {
  background-color: var(--black);
  color: var(--white-smoke);
  margin-top: 20px;
  font-size: 24px;
}

.hamburger-wrap {
  display: none;
}

.dark-text {
  color: var(--black);
}

.slider-text-block {
  z-index: 1;
  background-color: var(--black);
  border: 1px solid #000;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  min-height: 60%;
  margin: 25% -142px 0 8vw;
  padding: 0;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  box-shadow: 1px 1px 20px 12px #0000000f;
}

.slider-text-block.highlights {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80%;
  margin-top: 13%;
  margin-left: -242px;
  margin-right: 8vw;
  display: flex;
  inset: 0% auto auto 0%;
}

.neighborhood-background-video {
  z-index: 2;
  opacity: 1;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.copyrights {
  color: #fdfdfd;
  text-align: right;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}

.copyrights-link {
  color: #fdfdfd;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
}

.copyrights-link:hover {
  color: var(--burlywood);
}

.text-block-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
}

.no-bottom-margin {
  margin-bottom: 0;
}

.hero-video-contain {
  border: 3px none var(--burlywood);
  perspective: 608px;
  background-color: #0000;
  width: 50%;
  height: 100%;
  margin-top: 0;
  padding-top: 0;
  position: fixed;
  inset: auto 0% 0% auto;
  transform: perspective(1098px);
}

.hero-video-wrap {
  z-index: 1;
  border: 3px solid var(--burlywood);
  background-color: var(--burlywood);
  transform-style: preserve-3d;
  background-image: url('../images/Image_9824.jpeg');
  background-position: 50% 0;
  background-size: cover;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 100%;
  height: 90%;
  max-height: 700px;
  margin-top: -86px;
  position: relative;
  top: 30.2%;
  bottom: 0;
  left: .9em;
  overflow: hidden;
  transform: rotateX(-11deg)rotateY(-14deg)rotateZ(6deg);
}

.hero-background-video {
  z-index: 2;
  opacity: 1;
  width: 150%;
  height: 135%;
  display: none;
  position: absolute;
  inset: -148px 0% 0 -116px;
  transform: rotate(-11deg);
}

.hero-title-contain {
  width: 45%;
  max-width: 500px;
  margin-left: 8vw;
  position: relative;
}

.hero-paragraph {
  text-align: left;
  max-width: 475px;
  font-size: 60px;
  line-height: 60px;
}

.hero-div-wrap {
  display: flex;
}

.hero-stencil {
  z-index: 1;
  border: 3px solid var(--burlywood);
  transform-style: preserve-3d;
  border-radius: 0;
  width: 350px;
  height: 200px;
  position: absolute;
  inset: 336px auto auto -62px;
  overflow: hidden;
  transform: rotateX(0)rotateY(10deg)rotateZ(77deg);
}

.div-block-home {
  z-index: 0;
  transform-style: preserve-3d;
  border-top-left-radius: 0;
  border-bottom-left-radius: 200px;
  height: 300px;
  left: 4px;
  transform: rotateX(9deg)rotateY(17deg)rotateZ(-6deg);
}

.div-block-home-2 {
  border-bottom-left-radius: 150px;
  width: 450px;
  height: 400px;
  top: 9.9em;
  left: 1.1em;
}

.div-block-home-3 {
  border-bottom-left-radius: 0;
}

.hero-stencill {
  width: 550px;
  top: 15.1em;
  left: 3.1em;
}

.social-media-links {
  display: flex;
  position: static;
}

.social-media-link {
  color: #fdfdfd;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s;
}

.social-media-link:hover {
  color: var(--burlywood);
}

.social-media-link.w--current {
  color: #d19b52;
  text-decoration: line-through;
}

.color {
  background-color: #f2f4f4;
  border: 1px solid #7f96913d;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.color._09090a {
  background-color: var(--black);
  border-color: #f1f1f333;
}

.color.f1f1f3 {
  background-color: var(--white-smoke);
  color: #364c4c;
}

.color.e1b788 {
  background-color: var(--burlywood);
  border: 1px #00000024;
}

.button-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-right: 30px;
  display: flex;
}

._20px-div {
  width: 100%;
  height: 20px;
}

.color-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33.33%;
  margin: 20px 0;
  display: flex;
}

.container {
  width: 100%;
  max-width: 1440px;
}

.color-heading {
  color: var(--white-smoke);
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.style-block {
  border: 1px solid var(--burlywood);
  box-shadow: none;
  background-color: #0000;
  border-radius: 0;
  width: auto;
  min-width: 80%;
  margin: 24px 8vw;
  padding: 45px;
}

.style-block.hide {
  display: none;
}

.color-hex {
  color: var(--burlywood);
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.colors-contain {
  border-bottom: 1px #9b9b9b4d;
  border-right: 1px #9b9b9b4d;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.align-left {
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  font-weight: 100;
}

.align-left.hide {
  display: none;
}

.heading-wrap {
  margin-left: 8vw;
  margin-right: 8vw;
}

.div-block-image-licensing {
  flex-direction: column;
  display: flex;
}

.utility-page-wrap {
  background-color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

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

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

._404-paragraph {
  color: var(--burlywood);
}

.popup-form-conatin {
  z-index: 200000000;
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup-form-conatin.intro {
  display: none;
}

.heading {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.heading-2 {
  font-family: Montserrat, sans-serif;
}

.heading-2.small {
  font-size: 40px;
}

.heading-3, .heading-4 {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.heading-5, .heading-6 {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.link {
  font-family: Montserrat, sans-serif;
}

.image {
  z-index: 2;
  object-fit: contain;
  width: 150%;
  height: 135%;
  margin-right: 0;
  padding-left: 110px;
  padding-right: 0;
  display: none;
  position: absolute;
  inset: -148px 0 0 -116px;
  overflow: hidden;
}

.bold-text, .bold-text-2, .bold-text-3 {
  font-size: 35px;
}

.select-field {
  object-fit: fill;
  background-color: #0000;
  border: 2px solid #000;
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  height: auto;
  min-height: 110px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gayathri, sans-serif;
  font-size: 18px;
  font-weight: 100;
  display: flex;
  overflow: visible;
}

.paragraph {
  margin-bottom: 30px;
}

.div-block-2 {
  min-height: 30px;
}

.div-block-3 {
  flex-direction: column;
  align-items: center;
  width: 70%;
  display: flex;
}

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

.div-block-4 {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-width: 33%;
  margin-top: 0;
  padding-top: 30px;
  display: flex;
}

.heading-7 {
  flex-direction: column;
  align-items: center;
  font-size: 22px;
  line-height: 28px;
  display: flex;
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: 100%;
  min-width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  display: block;
}

.paragraph-2 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.headline.hero {
  text-align: left;
  font-size: 50px;
  font-weight: 300;
  line-height: 50px;
}

.div-block-5 {
  border: 2px solid #000;
  margin-bottom: 30px;
  padding: 10px;
}

.checkbox-label {
  margin-bottom: 0;
  font-family: Gayathri, sans-serif;
  line-height: 20px;
}

.checkbox-field {
  flex-direction: row;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 20px;
  display: block;
}

.checkbox {
  margin-top: 3px;
}

.section-2 {
  display: none;
}

.small-role {
  font-size: 14px;
  line-height: 20px;
}

.div-block-6 {
  min-width: 50%;
}

.recaptcha {
  margin-top: 20px;
}

.recaptcha-2 {
  margin-top: 10px;
}

.small-text {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}

.small-text.gaygency {
  -webkit-text-fill-color: transparent;
  background-image: url('../images/e5899572ecace2b0895b36db7703a001-1.gif');
  background-position: 0 0;
  background-size: auto;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  transition: all .3s;
}

.small-text.gaygency:hover {
  background-color: var(--white-smoke);
  -webkit-text-fill-color: transparent;
  background-image: none;
  -webkit-background-clip: text;
  background-clip: text;
  text-decoration: none;
}

.link-block:hover {
  text-decoration: none;
}

.select-field-2 {
  color: var(--black);
  background-color: #f3f3f300;
  border: 1px solid #000;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Gayathri, sans-serif;
  font-size: 22px;
}

.copy-year {
  margin-left: 2px;
  margin-right: 3px;
}

.collection-item {
  justify-content: center;
  align-items: center;
  display: flex;
}

.collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

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

@media screen and (max-width: 991px) {
  h1 {
    font-size: 60px;
  }

  .section {
    padding-top: 12vh;
    padding-bottom: 12vh;
  }

  .section.full-width-slider {
    height: 500px;
  }

  .section.hero-section {
    height: auto;
    padding-top: 16vh;
  }

  .section.above-lifestyle {
    height: auto;
    max-height: none;
    padding-bottom: 25vh;
  }

  .section.life-style {
    padding-top: 20vh;
    padding-bottom: 25vh;
    overflow: visible;
  }

  .section.form {
    padding-top: 14vh;
    padding-bottom: 10vh;
  }

  .navbar {
    padding-right: 12px;
  }

  .nav-link.last {
    margin-right: 23px;
  }

  .div-block.hero {
    margin-top: 18px;
    margin-bottom: 28px;
  }

  .full-width-slider {
    height: auto;
  }

  ._35-percent {
    width: 45%;
    padding: 24px;
  }

  .half-slider-image {
    background-image: url('../images/3.png'), linear-gradient(#0000, #0000);
    background-position: 0%, 0 0;
    background-size: contain, auto;
  }

  .highlights-image-wrap {
    background-position: -80%;
  }

  .button {
    margin-top: 18px;
  }

  .footer {
    flex-direction: column-reverse;
    padding-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .stencil._1 {
    max-width: 50%;
    bottom: -50px;
    left: -326px;
  }

  .stencil._2 {
    max-width: 90%;
    bottom: 282px;
    right: -628px;
  }

  .stencil._3 {
    max-width: 70%;
    bottom: -343px;
    left: -410px;
  }

  .stencil._4 {
    max-width: 70%;
    top: -253px;
    right: -416px;
  }

  .stencil._5 {
    max-width: 80%;
    top: -304px;
    left: -492px;
  }

  .stencil._6 {
    max-width: 80%;
    bottom: -251px;
    right: -333px;
  }

  .lifestyle-image-wrap-1 {
    width: 300px;
    height: 300px;
    top: -7.5em;
    left: 1em;
  }

  .lifestyle-image-wrap-2 {
    width: 230px;
    height: 230px;
    top: -4.9em;
    right: 1.6em;
  }

  .lifestyle-image-wrap-3 {
    width: 250px;
    height: 250px;
    bottom: -3.3em;
    left: 1.4em;
  }

  .lifestyle-image-wrap-4 {
    opacity: 1;
    width: 300px;
    height: 300px;
    bottom: -5.2em;
    right: 1.7em;
  }

  .lifestyle-image-4 {
    opacity: 1;
    background-position: 50% 80%;
  }

  .popup-form {
    display: flex;
  }

  .menu-button {
    background-color: #0000;
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .nav-menu {
    background-color: var(--black);
    border-top: 1px solid #f1f1f31a;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hamburger-wrap {
    cursor: pointer;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 27px;
    display: block;
  }

  .hamburger-line {
    background-color: #fff;
    width: 35px;
    height: 2px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }

  .hamburger-line-2 {
    background-color: #fff;
    width: 30px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 0;
  }

  .hamburger-line-3 {
    background-color: #fff;
    width: 35px;
    height: 2px;
    padding: 0;
  }

  .slider-text-block {
    margin-top: 30%;
    margin-left: 5vw;
  }

  .slider-text-block.highlights {
    margin-top: 16%;
  }

  .copyrights {
    text-align: center;
    padding-top: 32px;
    padding-bottom: 0;
  }

  .hero-video-contain {
    z-index: 2;
    width: 100%;
    margin-top: 102px;
    position: relative;
  }

  .hero-video-wrap {
    height: 400px;
    left: 0;
    transform: rotateX(3deg)rotateY(-14deg)rotateZ(3deg);
  }

  .hero-background-video {
    top: -48px;
    left: -143px;
    transform: rotate(-3deg);
  }

  .hero-title-contain {
    width: 100%;
    max-width: 650px;
    margin-left: 5vw;
  }

  .hero-paragraph {
    max-width: none;
  }

  .div-block-home {
    width: 300px;
    height: 200px;
    display: none;
    top: 10.6em;
    left: 2.5em;
  }

  .social-media-links {
    display: flex;
  }

  .button-wrapper {
    width: 40%;
  }

  .style-block, .heading-wrap {
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .image {
    padding-left: 200px;
  }

  .section-2 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    text-align: center;
    font-size: 64px;
    line-height: 60px;
  }

  h2 {
    font-size: 36px;
  }

  h3, h4, h5, h6 {
    text-align: center;
  }

  p {
    font-size: 18px;
    line-height: 28px;
  }

  .section.split {
    flex-direction: column;
    height: 700px;
    min-height: auto;
  }

  .section.split.highlights {
    flex-direction: column-reverse;
  }

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

  .section.above-lifestyle {
    padding-top: 60px;
    padding-bottom: 150px;
  }

  .section.life-style {
    padding-top: 90px;
    padding-bottom: 150px;
  }

  .section.form {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .section.transform-perspective {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .text-wrap {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-wrap.neighborhood {
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .text-wrap.form-heading {
    margin-top: 0;
    position: static;
  }

  .div-block {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .full-width-slider {
    height: auto;
  }

  ._35-percent {
    width: 100%;
    height: 300px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .slider {
    height: auto;
  }

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

  .highlights-image-wrap {
    flex: 0 auto;
    height: 600px;
  }

  ._30px-div {
    height: 20px;
  }

  .form-block {
    width: 90%;
    margin-top: 0;
    margin-bottom: 0;
    position: static;
  }

  .field-wrap {
    flex-wrap: wrap;
    margin-top: 20px;
  }

  ._50-percent {
    width: 100%;
    margin-bottom: 20px;
  }

  .button {
    margin-top: 24px;
  }

  .button.submit {
    margin-top: 10px;
  }

  .button.submit-form-2 {
    margin-top: 6px;
  }

  .form {
    padding-bottom: 0;
  }

  .footer {
    flex-direction: column-reverse;
    padding: 30px 40px 20px;
  }

  .stencil._1 {
    opacity: 1;
    inset: auto auto -8% -45%;
  }

  .stencil._2 {
    opacity: 1;
    inset: -27% -83% auto auto;
  }

  .stencil._3 {
    opacity: 1;
    inset: auto auto -34% -61%;
  }

  .stencil._4 {
    opacity: 1;
    inset: -16% -64% auto auto;
  }

  .stencil._5 {
    opacity: 1;
    inset: -64% auto auto -61%;
  }

  .stencil._6 {
    opacity: 1;
    inset: auto -70% -45% auto;
  }

  .lifestyle-image-wrap-1 {
    border-width: 3px;
    width: 200px;
    height: 200px;
    top: -5.6em;
    left: 1.4em;
  }

  .lifestyle-image-wrap-2 {
    border-width: 3px;
    width: 180px;
    height: 180px;
    top: -3.5em;
    right: 1.3em;
  }

  .lifestyle-image-wrap-3 {
    border-width: 3px;
    width: 180px;
    height: 180px;
    bottom: -2.7em;
    left: .9em;
  }

  .lifestyle-image-wrap-4 {
    border-width: 3px;
    width: 200px;
    height: 200px;
    bottom: -3.8em;
    right: 1.4em;
  }

  .lifestyle-image-4 {
    background-position: 50% 70%;
  }

  .popup-form {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 160px;
    padding-bottom: 0;
    display: flex;
    overflow: visible;
  }

  .close-wrap {
    padding-right: 40px;
  }

  .nav-menu {
    padding-bottom: 20px;
  }

  .hamburger-line {
    height: 2px;
  }

  .slider-text-block {
    min-height: auto;
    margin-top: 18%;
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .slider-text-block.highlights {
    margin-top: 10%;
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .neighborhood-background-video {
    opacity: .7;
  }

  .copyrights {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 10px;
    line-height: 24px;
  }

  .text-block-wrap {
    padding: 30px;
  }

  .hero-video-contain {
    margin-top: 45px;
  }

  .hero-video-wrap {
    margin-top: -21px;
  }

  .hero-title-contain {
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    display: flex;
  }

  .hero-paragraph {
    text-align: center;
    font-size: 40px;
  }

  .hero-div-wrap {
    justify-content: center;
  }

  .social-media-links {
    display: flex;
  }

  .social-media-link {
    margin-top: 14px;
    margin-bottom: 14px;
    padding-left: 0;
    font-size: 20px;
  }

  .button-wrapper {
    margin-right: 0;
  }

  .style-block {
    padding: 35px;
  }

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

  .utility-page-content {
    width: auto;
  }

  .popup-form-conatin {
    min-height: auto;
    padding-bottom: 0;
    display: none;
    overflow: auto;
  }

  .div-block-style-guide {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-4.hide {
    display: none;
  }

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

  .section-2 {
    display: none;
  }

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

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

  h2 {
    font-size: 30px;
    line-height: 38px;
  }

  h6 {
    text-align: center;
  }

  .section.full-width-slider {
    height: 400px;
  }

  .section.split {
    height: 400px;
    min-height: 500px;
  }

  .section.split.highlights {
    flex-direction: row-reverse;
    justify-content: center;
    min-height: 500px;
  }

  .section.above-lifestyle {
    padding-bottom: 120px;
    display: none;
  }

  .section.life-style {
    padding-top: 130px;
    padding-bottom: 50px;
  }

  .section.transform-perspective {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .text-wrap {
    padding-left: 20px;
    padding-right: 20px;
    position: static;
  }

  .text-wrap.form-heading {
    margin-top: 84px;
  }

  .nav-link {
    width: 100%;
  }

  .nav-link.last.w--current {
    margin-right: 0;
  }

  .full-width-slider {
    height: auto;
  }

  .slider-image {
    background-position: 50%;
  }

  ._35-percent {
    flex-direction: column;
    flex: 1;
    margin-top: 0;
  }

  .slider-image-wrap {
    flex: 0 auto;
    height: 60%;
    display: none;
  }

  .half-slider-image {
    background-position: 50% -100%;
    background-size: contain;
    padding-top: 0;
  }

  .half-slider-image.life-coach {
    background-position: 50% 10%;
  }

  .highlights-image-wrap {
    background-position: 50% 150%;
    background-size: contain;
    background-attachment: scroll;
    height: 600px;
    display: none;
  }

  .highlight {
    padding-left: 0;
    padding-right: 0;
  }

  ._30px-div {
    height: 20px;
  }

  .field-label {
    text-align: center;
  }

  .text-field {
    height: 50px;
  }

  ._50-percent {
    margin-bottom: 18px;
  }

  .button {
    margin-top: 20px;
  }

  .button.submit-form-2 {
    margin-top: 0;
  }

  .footer {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .stencil._1 {
    max-width: 90%;
    inset: auto auto -17% -62%;
  }

  .stencil._2 {
    inset: -11% -66% auto auto;
  }

  .stencil._3 {
    inset: auto auto -15% -46%;
  }

  .stencil._4 {
    inset: -10% -48% auto auto;
  }

  .stencil._5 {
    inset: -23% auto auto -56%;
  }

  .stencil._6 {
    inset: auto -66% -15% auto;
  }

  .lifestyle-image-wrap-1 {
    width: 180px;
    height: 180px;
    top: -3.4em;
    left: .9em;
  }

  .lifestyle-image-wrap-2 {
    width: 150px;
    height: 150px;
    top: -2.5em;
    right: .9em;
  }

  .lifestyle-image-wrap-3 {
    width: 150px;
    height: 150px;
    bottom: -2.1em;
    left: .7em;
  }

  .lifestyle-image-3 {
    background-position: 10%;
  }

  .lifestyle-image-wrap-4 {
    width: 180px;
    height: 180px;
    bottom: -2.5em;
    right: .9em;
  }

  .popup-form {
    z-index: 200000000;
    padding-top: 95px;
    padding-bottom: 0;
    display: flex;
  }

  .close-wrap {
    padding: 20px 29px 12px 30px;
  }

  .nav-menu {
    border-top: 1px solid #f1f1f333;
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 30px;
    display: flex;
  }

  .hamburger-line {
    height: 2px;
  }

  .slider-text-block {
    margin-top: 16%;
  }

  .slider-text-block.highlights {
    min-height: auto;
    margin-top: 16%;
  }

  .copyrights {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 0;
    font-size: 16px;
  }

  .text-block-wrap {
    margin-bottom: 0;
    padding: 30px 24px;
  }

  .hero-video-contain {
    margin-top: 60px;
  }

  .hero-video-wrap {
    margin-top: -40px;
  }

  .hero-background-video {
    left: -89px;
  }

  .logo {
    max-width: 90%;
  }

  .social-media-links {
    display: flex;
  }

  .social-media-link {
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .button-wrapper {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .color-wrapper {
    width: 50%;
  }

  .style-block {
    padding: 20px 9px;
  }

  .colors-contain {
    justify-content: center;
  }

  .utility-page-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .popup-form-conatin {
    padding-bottom: 40px;
  }

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

  .headline.hero {
    font-size: 40px;
    font-weight: 300;
  }

  .section-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .recaptcha-2 {
    margin-bottom: 20px;
  }

  .small-text.gaygency {
    font-size: 12px;
  }

  .link-block {
    text-align: center;
  }

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

#w-node-_77f5ffa7-22ed-a47b-cc61-91b70079098c-acb45baf, #w-node-b9c7e9c7-0e4c-5fd9-c914-8e319e2947f6-acb45baf, #w-node-_19345450-2fd7-0b1e-3207-d35b0721de6d-56b45bb2, #w-node-_19345450-2fd7-0b1e-3207-d35b0721de73-56b45bb2, #w-node-_19345450-2fd7-0b1e-3207-d35b0721de79-56b45bb2, #w-node-_05b50af3-6f6d-45ad-9375-7a2a5e7f7c55-56b45bb2, #w-node-_281dc448-5570-b3f1-b287-2aad93f58ee4-a34fa739, #w-node-_310149c1-60b6-8421-0c5c-e994772972d6-a34fa739, #w-node-_1485f72b-98e5-0479-c99c-71a6b3396fd3-a34fa739 {
  justify-self: center;
}


@font-face {
  font-family: 'Myriadpro';
  src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Matter';
  src: url('../fonts/Matter-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Matter';
  src: url('../fonts/Matter-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Matter';
  src: url('../fonts/Matter-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Canela';
  src: url('../fonts/Canela-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}