/**
 * theme-aware - Change color of a css property based on the currently active theme
 *
 * @param  {key}     CSS property
 * @param  {color}   Color name defined in the themes under _color-palette.scss
 *
 * @example - @include theme-aware('background', 'color-background');
 * @returns - background: #FFF;
 */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1600px) {
  .d-xxxl-none {
    display: none !important;
  }

  .d-xxxl-inline {
    display: inline !important;
  }

  .d-xxxl-inline-block {
    display: inline-block !important;
  }

  .d-xxxl-block {
    display: block !important;
  }

  .d-xxxl-table {
    display: table !important;
  }

  .d-xxxl-table-row {
    display: table-row !important;
  }

  .d-xxxl-table-cell {
    display: table-cell !important;
  }

  .d-xxxl-flex {
    display: flex !important;
  }

  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1780px) {
  .d-xxxxl-none {
    display: none !important;
  }

  .d-xxxxl-inline {
    display: inline !important;
  }

  .d-xxxxl-inline-block {
    display: inline-block !important;
  }

  .d-xxxxl-block {
    display: block !important;
  }

  .d-xxxxl-table {
    display: table !important;
  }

  .d-xxxxl-table-row {
    display: table-row !important;
  }

  .d-xxxxl-table-cell {
    display: table-cell !important;
  }

  .d-xxxxl-flex {
    display: flex !important;
  }

  .d-xxxxl-inline-flex {
    display: inline-flex !important;
  }
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: 100%;
  font-family: "Ramillas", sans-serif;
  font-weight: 400;
  font-size: 14px;
  position: relative;
  color: #2f2c28;
  --shift: -100vh;
  background-color: #ffffff;
}
@media (pointer: coarse) and (max-device-width: 567px) {
  html, body {
    background-color: #2f2c28;
  }
}
@media (prefers-color-scheme: dark) {
  html, body {
    background-color: #2f2c28;
  }
}

body {
  /*	overflow: hidden;*/
  scroll-behavior: smooth;
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #2f2c28;
  }
}
body.overflow-hidden {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
body .spin {
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
body.spinner {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
body.spinner .spin {
  display: flex;
  opacity: 1;
  position: fixed;
  overflow: auto;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(47, 44, 40, 0.9);
  z-index: 100;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

header {
  text-align: center;
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 0;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  pointer-events: none;
}
header .logo {
  font-size: 0;
  padding: 14vh 0;
}

.instagram {
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}
@media (max-width: 991.98px) {
  .instagram {
    margin-left: 5px;
  }
}
.instagram .icon {
  display: flex;
  align-items: center;
}
.instagram svg {
  fill: #5b504b;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  transform-origin: center;
}
@media (max-width: 767.98px) {
  .instagram svg {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
  }
}

.home {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.home .home-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  border-radius: 45px 45px 0 0;
  overflow: hidden;
}
.home .home-bg .home-bg--text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0.07;
  text-transform: uppercase;
  font-size: 21vh;
  line-height: 17.5vh;
  letter-spacing: -1.8vh;
  pointer-events: none;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
@media (pointer: coarse) and (min-device-width: 320px) and (max-device-width: 1024px) {
  .home .home-bg .home-bg--text {
    font-size: 16vw;
    line-height: 23vw;
    letter-spacing: -1.4vw;
  }
}
@media (max-width: 767.98px) {
  .home .home-bg .home-bg--text {
    font-size: 16vw;
    line-height: 23vw;
    letter-spacing: -1.4vw;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 980px) and (orientation: portrait) {
  .home .home-bg .home-bg--text {
    font-size: 16vw;
    line-height: 23vw;
    letter-spacing: -1.4vw;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 980px) and (orientation: landscape) {
  .home .home-bg .home-bg--text {
    font-size: 17vh;
    line-height: 14vh;
    letter-spacing: -1.4vh;
  }
}
.home .home-bg .home-bg--img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.home .home-bg .home-bg--img::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#5b504b, #bcb9b5);
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .home .home-bg .home-bg--img::before {
    opacity: 0.3;
  }
}
.home .home-bg .home-bg--img img {
  width: 120%;
  height: auto;
  filter: blur(200px);
  position: absolute;
  left: -10%;
  top: -50%;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  display: none;
}
@media (max-width: 767.98px) {
  .home .home-bg .home-bg--img img {
    height: 130%;
    width: auto;
    top: -15%;
    left: -10%;
    filter: blur(140px);
  }
}
@media (pointer: coarse) {
  .home .home-bg .home-bg--img img {
    display: block;
  }
}
.home .home-bg .home-bg--img #canvas-container {
  width: 120%;
  height: auto;
  filter: blur(70px);
  position: absolute;
  left: -10%;
  top: 0;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
@media (max-width: 767.98px) {
  .home .home-bg .home-bg--img #canvas-container {
    height: 130%;
    width: auto;
    top: -15%;
    left: -10%;
    filter: blur(50px);
  }
}
@media (pointer: coarse) {
  .home .home-bg .home-bg--img #canvas-container {
    display: none;
  }
}
.home .home-bg .home-bg--img.img-mode img {
  display: block;
}
.home .home-bg .home-bg--img.img-mode #canvas-container {
  display: none;
}
.home .home-btn--block {
  text-align: center;
  position: absolute;
  bottom: 25vh;
  width: 100%;
  z-index: 17;
  opacity: 1;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
@media (max-width: 767.98px) {
  .home .home-btn--block {
    bottom: 180px;
  }
}
.home .home-btn--block .btn {
  width: 128px;
  height: 128px;
  border-radius: 120px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Suisse";
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: -1px;
  position: absolute;
  padding: 40px 30px 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #2f2c28;
}
@media (prefers-color-scheme: dark) {
  .home .home-btn--block .btn {
    color: #ffffff;
  }
}
@media (max-width: 767.98px) {
  .home .home-btn--block .btn {
    width: 96px;
    height: 96px;
    font-size: 11px;
    line-height: 11px;
    letter-spacing: 0;
    padding-top: 25px;
  }
}
.home .home-btn--block .btn::before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  content: "";
  background: linear-gradient(#d2c1a1, #f5eede);
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  z-index: -1;
  border-radius: inherit;
}
@media (prefers-color-scheme: dark) {
  .home .home-btn--block .btn::before {
    background: linear-gradient(#413027, #624d45);
  }
}
.home .home-btn--block .btn .icon {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -12px;
  top: 26px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  stroke: #2f2c28;
}
@media (prefers-color-scheme: dark) {
  .home .home-btn--block .btn .icon {
    stroke: #ffffff;
  }
}
@media (max-width: 767.98px) {
  .home .home-btn--block .btn .icon {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    transform-origin: center top;
    top: 19px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .home .home-btn--block .btn:hover {
    width: 180px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .home .home-btn--block .btn:hover .icon {
    top: 18px;
  }
}
.home .home-bottom-text {
  position: fixed;
  text-align: right;
  bottom: 24px;
  right: 24px;
  font-family: "Suisse";
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 1;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .home .home-bottom-text {
    font-size: 9px;
    line-height: 11px;
  }
}
.home .home-bottom-text .text {
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .home .home-bottom-text {
    display: none;
  }
}
.home .home-icons {
  display: flex;
  border-radius: 56px;
  background-color: #ffffff;
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 5;
  opacity: 1;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .home .home-icons {
    display: none;
  }
}
.home .home-icons .circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  overflow: hidden;
}
.home .home-icons .circle img {
  width: 100%;
  height: auto;
}
.home .home-icons .circle.circle-2 {
  position: relative;
  margin-left: -15px;
}
.home .home-icons .circle.circle-3 {
  position: relative;
  margin-left: -15px;
}
.home .home-email--block {
  position: absolute;
  z-index: 6;
  width: 472px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  height: 100%;
  display: flex;
  align-items: center;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  top: 0;
}
@media (max-width: 767.98px) {
  .home .home-email--block {
    width: calc(100% - 48px);
    z-index: 15;
  }
}
.home .home-email--block .home-email-field--wrapper {
  position: relative;
  width: 100%;
}
.home .home-email--block .home-email-field {
  width: 100%;
  position: relative;
  padding: 16px;
  border-radius: 114px;
  background-color: #ffffff;
  transition: box-shadow, transform 0.3s ease;
}
@media (prefers-color-scheme: dark) {
  .home .home-email--block .home-email-field {
    background-color: #2f2c28;
  }
}
@media (max-width: 767.98px) {
  .home .home-email--block .home-email-field {
    padding: 8px;
    height: 56px;
  }
}
.home .home-email--block .home-email-field.fix {
  -webkit-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
  box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.7);
  -moz-box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.7);
}
.home .home-email--block .home-email-field.err {
  box-shadow: 0px 0px 21px 7px #9a596d;
  -moz-box-shadow: 0px 0px 21px 7px #9a596d;
  -webkit-box-shadow: 0px 0px 21px 7px #9a596d;
}
.home .home-email--block .input {
  width: 100%;
  position: relative;
  border-radius: 27px;
}
.home .home-email--block .input input[type=email], .home .home-email--block .input input[type=text] {
  height: 56px;
  width: 100%;
  color: #2f2c28;
  text-transform: uppercase;
  font-family: "Suisse";
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  border: none;
  padding-left: 22px;
  padding-right: 70px;
  border-radius: 27px;
  background-color: transparent;
}
@media (max-width: 767.98px) {
  .home .home-email--block .input input[type=email], .home .home-email--block .input input[type=text] {
    font-size: 16px;
    height: 40px;
    padding-left: 16px;
  }
}
.home .home-email--block .input input[type=email]:active, .home .home-email--block .input input[type=email]:focus, .home .home-email--block .input input[type=text]:active, .home .home-email--block .input input[type=text]:focus {
  border: none;
  outline: none;
}
.home .home-email--block .input input[type=email]::-webkit-input-placeholder, .home .home-email--block .input input[type=text]::-webkit-input-placeholder {
  color: #2f2c28;
}
.home .home-email--block .input input[type=email]::-moz-placeholder, .home .home-email--block .input input[type=text]::-moz-placeholder {
  color: #2f2c28;
}
.home .home-email--block .input input[type=email]:-moz-placeholder, .home .home-email--block .input input[type=text]:-moz-placeholder {
  color: #2f2c28;
}
.home .home-email--block .input input[type=email]:-ms-input-placeholder, .home .home-email--block .input input[type=text]:-ms-input-placeholder {
  color: #2f2c28;
}
@media (prefers-color-scheme: dark) {
  .home .home-email--block .input input[type=email], .home .home-email--block .input input[type=text] {
    color: #ffffff;
  }
  .home .home-email--block .input input[type=email]::-webkit-input-placeholder, .home .home-email--block .input input[type=text]::-webkit-input-placeholder {
    color: #ffffff;
  }
  .home .home-email--block .input input[type=email]::-moz-placeholder, .home .home-email--block .input input[type=text]::-moz-placeholder {
    color: #ffffff;
  }
  .home .home-email--block .input input[type=email]:-moz-placeholder, .home .home-email--block .input input[type=text]:-moz-placeholder {
    color: #ffffff;
  }
  .home .home-email--block .input input[type=email]:-ms-input-placeholder, .home .home-email--block .input input[type=text]:-ms-input-placeholder {
    color: #ffffff;
  }
}
.home .home-email--block .input input[type=email]:-internal-autofill-selected, .home .home-email--block .input input[type=text]:-internal-autofill-selected {
  background-color: transparent !important;
}
.home .home-email--block .input input[type=email]:-webkit-autofill, .home .home-email--block .input input[type=email]:-webkit-autofill:focus, .home .home-email--block .input input[type=text]:-webkit-autofill, .home .home-email--block .input input[type=text]:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s !important;
}
.home .home-email--block .input input[type=email].err, .home .home-email--block .input input[type=text].err {
  border-bottom: 1px solid red;
}
.home .home-email--block .btn {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #5b504b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}
@media (max-width: 767.98px) {
  .home .home-email--block .btn {
    width: 40px;
    height: 40px;
    right: 8px;
    top: 8px;
  }
}
.home .home-email--block .btn .icon {
  position: relative;
  left: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) and (pointer: fine) {
  .home .home-email--block .btn:hover {
    background-color: #443e3b;
  }
  .home .home-email--block .btn:hover .icon {
    left: 4px;
  }
}
.home .home-email--block .request-send-block {
  opacity: 0;
  pointer-events: none;
  bottom: 500px;
  position: absolute;
  border-radius: 46px;
  width: 100%;
  padding: 38px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-image: radial-gradient(#d2c1a1, #f5eede);
}
.home .home-email--block .request-send-block .request-send-block--title {
  padding-top: 100px;
  font-size: 36px;
  line-height: 36px;
  font-family: "Ramillas";
  font-weight: 500;
  letter-spacing: -2px;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .home .home-email--block .request-send-block .request-send-block--title {
    padding-top: 6vh;
    font-size: 32px;
    line-height: 32px;
  }
}
@media (pointer: coarse) and (max-device-width: 375px) {
  .home .home-email--block .request-send-block .request-send-block--title {
    font-size: 30px;
    line-height: 30px;
  }
}
.home .home-email--block .request-send-block .request-send-block--text {
  padding-top: 15px;
  font-size: 20px;
  line-height: 24px;
  font-family: "Suisse-Book";
  font-weight: 300;
  width: 65%;
}
@media (max-width: 767.98px) {
  .home .home-email--block .request-send-block .request-send-block--text {
    width: 100%;
    font-size: 18px;
    line-height: 20px;
  }
}
@media (pointer: coarse) and (max-device-width: 375px) {
  .home .home-email--block .request-send-block .request-send-block--text {
    font-size: 16px;
    line-height: 18px;
  }
}
.home .home-email--block .request-send-block .request-send-block--top {
  display: flex;
  justify-content: flex-end;
}
.home .home-email--block .request-send-block .request-send-block--close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(47, 44, 40, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.home .home-email--block .request-send-block .request-send-block--close .icon {
  display: flex;
  stroke: #2f2c28;
}
@media (hover: hover) and (pointer: fine) {
  .home .home-email--block .request-send-block .request-send-block--close:hover {
    border-color: #2f2c28;
  }
}
.home .home-email--block .request-send-block .request-send-block--timer {
  font-size: 16px;
  line-height: 15px;
  font-family: "Suisse-Book";
  font-weight: 300;
  height: 40px;
  border: 1px solid rgba(47, 44, 40, 0.15);
  border-radius: 50%;
  color: #2f2c28;
  border-radius: 40px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 3px;
}
.home .home-email--block .request-send-block.active {
  bottom: 96px;
  opacity: 1;
  pointer-events: auto;
  z-index: 20;
}
@media (max-width: 767.98px) {
  .home .home-email--block .request-send-block.active {
    bottom: 68px;
  }
}

.content {
  text-align: center;
  position: relative;
  z-index: 8;
  top: 0;
  /*@include add-transition-func(.5s,ease-in-out);*/
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .content {
    pointer-events: auto;
  }
}
.content .content-head {
  display: flex;
  justify-content: center;
  padding-top: 65px;
  padding-bottom: 130px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 20;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .content .content-head {
    padding-right: 18px;
    padding-left: 18px;
    justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  .content .content-head {
    padding-top: 20px;
    padding-bottom: 20px;
    pointer-events: auto;
  }
}
.content .content-head .scroll-btn {
  margin-right: 190px;
}
@media (max-width: 991.98px) {
  .content .content-head .scroll-btn {
    margin-right: 0;
  }
}
.content .content-head .scroll-btn .btn {
  font-family: "Suisse-Book";
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
  border-width: 1.5px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  height: 40px;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 2px 12px 0;
  background-color: transparent;
  cursor: default;
}
.content .content-head .scroll-btn .btn .icon {
  padding-right: 10px;
  display: flex;
  position: relative;
  top: -1px;
}
@media (max-width: 767.98px) {
  .content .content-head .scroll-btn .btn .icon {
    display: none;
  }
}
.content .content-head .scroll-btn .btn .icon.icon-sm {
  display: none;
}
@media (max-width: 767.98px) {
  .content .content-head .scroll-btn .btn .icon.icon-sm {
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .content .content-head .scroll-btn .btn {
    font-size: 11px;
  }
}
.content .content-head .section-nav ul {
  display: inline-flex;
  border-radius: 40px;
  background-color: #ffffff;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
  height: 40px;
  overflow: hidden;
}
.content .content-head .section-nav ul li {
  display: flex;
  align-items: center;
}
.content .content-head .section-nav ul li a {
  color: #2f2c28;
  text-transform: uppercase;
  font-family: "Suisse";
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  border-radius: 40px;
  background-color: #ffffff;
  padding: 11px 17px 9px;
  text-decoration: none;
  outline: 3px solid #ffffff;
  margin: 0 3px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
}
@media (max-width: 767.98px) {
  .content .content-head .section-nav ul li a {
    font-size: 11px;
    line-height: 11px;
    white-space: nowrap;
    padding: 13px 14px 10px;
  }
}
@media (pointer: coarse) and (max-device-width: 375px) {
  .content .content-head .section-nav ul li a {
    font-size: 10px;
    line-height: 10px;
    padding: 13px 10px 11px;
  }
}
.content .content-head .section-nav ul li a.active, .content .content-head .section-nav ul li a:active {
  background-color: #5b504b;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .content .content-head .section-nav ul li a:hover {
    background-color: #eae8e5;
  }
  .content .content-head .section-nav ul li a:hover.active, .content .content-head .section-nav ul li a:hover:active {
    background-color: #5b504b;
    color: #ffffff;
  }
}
.content .content-head .section-nav ul li a sup {
  font-size: 17px;
  right: 7px;
  top: 7px;
  position: absolute;
}
@media (max-width: 767.98px) {
  .content .content-head .section-nav {
    position: fixed;
    bottom: 24px;
    width: calc(100% - 36px);
    justify-content: center;
  }
}
.content .content-head .section-nav .instagram {
  display: none;
}
@media (max-width: 767.98px) {
  .content .content-head .section-nav .instagram {
    width: 40px;
    height: 40px;
    display: flex;
    margin-left: 5px;
  }
}
@media (max-width: 767.98px) {
  .content .content-head .section-nav {
    display: flex;
    align-items: center;
  }
}
.content .content-head .close-btn {
  margin-left: 190px;
}
@media (max-width: 991.98px) {
  .content .content-head .close-btn {
    margin-left: 0;
  }
}
.content .content-head .close-btn .btn {
  font-family: "Suisse-Book";
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  color: #2f2c28;
  text-transform: uppercase;
  border-width: 1.5px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  height: 40px;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 2px 12px 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.content .content-head .close-btn .btn .icon {
  padding-right: 10px;
  display: flex;
  position: relative;
  top: -1px;
}
.content .content-head .close-btn .btn .icon svg {
  stroke: #2f2c28;
}
@media (max-width: 767.98px) {
  .content .content-head .close-btn .btn .icon {
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .content .content-head .close-btn .btn {
    font-size: 0;
    line-height: 1;
    padding: 0 11px;
    width: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .content .content-head .close-btn .btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
  }
  .content .content-head .close-btn .btn:hover .icon svg {
    stroke: #ffffff;
  }
}
.content .content-block {
  position: relative;
  top: 0;
  margin-top: -21vh;
}
@media (max-width: 767.98px) {
  .content .content-block {
    top: -120px;
    margin-top: 0;
  }
}
.content .content-block .content-text {
  font-family: "Suisse-Book";
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.35);
  padding-bottom: 4vh;
  margin: auto;
  width: 384px;
  display: none;
}
@media (max-width: 767.98px) {
  .content .content-block .content-text {
    font-size: 14px;
    line-height: 18px;
    width: 295px;
    padding: 0 50px;
  }
}
.content .content-block .content-text b {
  font-size: 24px;
  color: #ffffff;
  display: block;
  font-weight: 300;
  padding-bottom: 10px;
}
@media (max-width: 767.98px) {
  .content .content-block .content-text b {
    font-size: 16px;
    line-height: 20px;
  }
}
.content .content-block .phone-wrapper {
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 7;
}
.content .content-block .phone-wrapper img {
  width: auto;
  height: auto;
}
@media (max-width: 575.98px) {
  .content .content-block .phone-wrapper img {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .content .content-block .phone-wrapper {
    width: calc(100% - 10px);
    left: 5px;
  }
}
.content .content-block .video {
  width: 359px;
  position: relative;
  top: 6px;
  z-index: 6;
  margin: auto;
  border-radius: 55px;
  overflow: hidden;
}
.content .content-block .video video, .content .content-block .video img {
  width: 100%;
  height: auto;
}
@media (prefers-color-scheme: dark) {
  .content .content-block .video video, .content .content-block .video img {
    width: 100%;
    height: auto;
  }
}
.content .content-block .video img {
  width: 101%;
}
@media (max-width: 575.98px) {
  .content .content-block .video {
    width: calc(100% - 30px);
  }
}
.content .content-block .video-image {
  width: 375px;
  position: relative;
  top: 12px;
  left: 0;
  z-index: 6;
  margin: auto;
  border-radius: 55px;
  overflow: hidden;
}
.content .content-block .video-image video, .content .content-block .video-image img {
  width: 100%;
  height: auto;
}
@media (prefers-color-scheme: dark) {
  .content .content-block .video-image video, .content .content-block .video-image img {
    width: 100%;
    height: auto;
  }
}
.content .content-block .video-image img {
  width: 101%;
}
@media (max-width: 575.98px) {
  .content .content-block .video-image {
    width: calc(100% - 30px);
  }
}
.content .content-block .content-inner-block {
  padding: 15px 0 10vh;
  position: relative;
}
@media (max-width: 767.98px) {
  .content .content-block .content-inner-block {
    padding: 0;
  }
}

.show-app-mode {
  overflow: auto;
}
.show-app-mode header {
  margin-top: var(--shift);
}
.show-app-mode .home .home-bg--text {
  margin-top: var(--shift);
}
.show-app-mode .home .home-email--block {
  margin-top: var(--shift);
}
@media (max-width: 767.98px) {
  .show-app-mode .home .home-icons {
    opacity: 0;
    pointer-events: none;
  }
}
@media (max-width: 767.98px) {
  .show-app-mode .home .home-bottom-text {
    opacity: 0;
    pointer-events: none;
  }
}
.show-app-mode .home .home-btn--block {
  opacity: 0;
  pointer-events: none;
}
.show-app-mode .content {
  margin-top: var(--shift);
  /*calc(var(--shift) + 200px) ;*/
  height: 100vh;
}
@media (max-width: 767.98px) {
  .show-app-mode .content {
    display: flex;
    align-items: center;
    margin-top: calc(var(--shift) / 1.1);
  }
}
.show-app-mode .content .content-head {
  pointer-events: auto;
  opacity: 1;
}
.show-app-mode .content .content-block {
  top: 0;
  margin-top: 0;
  padding-top: 260px;
  scroll-behavior: smooth;
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 50px;
    padding-right: 20px;
  }
  .show-app-mode .content .content-block::-webkit-scrollbar {
    opacity: 0;
  }
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block .content-inner-block {
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block .phone-wrapper {
    width: auto;
    right: -5px;
  }
}
@media (max-width: 575.98px) {
  .show-app-mode .content .content-block .phone-wrapper {
    left: auto;
  }
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block .phone-wrapper img {
    width: 275px;
  }
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block .video {
    width: 254px;
    height: 550px;
    overflow: hidden;
    top: 2px;
    left: -6px;
    border-radius: 30px;
  }
}
.show-app-mode .content .content-block .content-text {
  display: block;
}

#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

canvas {
  width: 100% !important;
  height: 100% !important;
}

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