/**
 * 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;
  scroll-behavior: smooth;
}
@media (pointer: coarse) and (max-device-width: 567px) {
  html, body {
    background-color: #2f2c28;
  }
}
@media (prefers-color-scheme: dark) {
  html, body {
    background-color: #2f2c28;
  }
}

@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: absolute;
  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);
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .instagram svg {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
  }
}

.home-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  border-radius: 45px 45px 0 0;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .home-bg {
    height: 100%;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .home-bg {
    height: 100%;
  }
}
.home-bg .home-bg--img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.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-bg .home-bg--img::before {
    opacity: 0.3;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .home-bg .home-bg--img::before {
    opacity: 0.3;
  }
}
.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-bg .home-bg--img img {
    height: 130%;
    width: auto;
    top: -15%;
    left: -10%;
    filter: blur(140px);
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .home-bg .home-bg--img img {
    height: 130%;
    width: auto;
    top: -15%;
    left: -10%;
    filter: blur(140px);
  }
}
@media (pointer: coarse) {
  .home-bg .home-bg--img img {
    display: block;
  }
}
.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-bg .home-bg--img #canvas-container {
    height: 130%;
    width: auto;
    top: -15%;
    left: -10%;
    filter: blur(50px);
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .home-bg .home-bg--img #canvas-container {
    height: 130%;
    width: auto;
    top: -15%;
    left: -10%;
    filter: blur(50px);
  }
}
@media (pointer: coarse) {
  .home-bg .home-bg--img #canvas-container {
    display: none;
  }
}
.home-bg .home-bg--img.img-mode img {
  display: block;
}
.home-bg .home-bg--img.img-mode #canvas-container {
  display: none;
}

.home {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767.98px) {
  .home {
    height: 100%;
    border-top: 0;
    border-bottom: 0;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .home {
    height: 100%;
    border-top: 0;
    border-bottom: 0;
  }
}
.home .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;
  transition-delay: 0.3s;
  -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--text {
    font-size: 16vw;
    line-height: 23vw;
    letter-spacing: -1.4vw;
  }
}
@media (max-width: 767.98px) {
  .home .home-bg--text {
    font-size: 16vw;
    line-height: 23vw;
    letter-spacing: -1.4vw;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .home .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--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--text {
    font-size: 17vh;
    line-height: 14vh;
    letter-spacing: -1.4vh;
  }
}
.home .home-btn--block {
  text-align: center;
  position: absolute;
  bottom: 22vh;
  width: 100%;
  z-index: 21;
  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: calc(0% + 96px);
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .home .home-btn--block {
    bottom: calc(0% + 96px);
  }
}
.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;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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 (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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: 1199.98px) {
  .home .home-bottom-text .instagram {
    margin-left: 16px;
  }
}
@media (max-width: 767.98px) {
  .home .home-bottom-text {
    display: none;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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 .6s linear;*/
  -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;
}
@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;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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 (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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 (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .home .home-email--block .request-send-block.active {
    bottom: 68px;
  }
}

@media (max-width: 767.98px) {
  .home-bottom {
    display: none;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .home-bottom {
    display: none;
  }
}

.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;
  -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;
}
@media (max-width: 767.98px) {
  .content-text {
    font-size: 14px;
    line-height: 18px;
    width: 80vw;
    padding: 0 50px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-text {
    font-size: 14px;
    line-height: 18px;
    width: 80vw;
    padding: 0 50px;
  }
}
.content-text b {
  font-size: 24px;
  color: #ffffff;
  display: block;
  font-weight: 300;
  padding-bottom: 10px;
}
@media (max-width: 767.98px) {
  .content-text b {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-text b {
    font-size: 16px;
    line-height: 20px;
  }
}

.content {
  text-align: center;
  position: relative;
  z-index: 8;
  top: 0;
  /*@include add-transition-func(.5s,ease-in-out);*/
  -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;
  border-top: 0;
  border-bottom: 0;
  pointer-events: none;
  /* new for snap*/
  /*}*/
}
@media (max-width: 767.98px) {
  .content {
    pointer-events: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content {
    pointer-events: auto;
  }
}
.content .content-block {
  position: relative;
  top: 0;
  margin-top: -31vh;
  -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;
}
.content .content-block.no-transition {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
@media (max-width: 767.98px) {
  .content .content-block {
    top: 0;
    margin-top: -65px;
    /*-74%;/*365px;*/
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block {
    top: 0;
    margin-top: -65px;
    /*-74%;/*365px;*/
  }
}
.content .content-block.add-delay {
  top: 0;
  margin-top: 0;
  padding-top: 260px;
}
@media (max-width: 767.98px) {
  .content .content-block.add-delay {
    padding-top: 115px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block.add-delay {
    padding-top: 115px;
  }
}
.content .content-block .content-text {
  margin: auto;
  width: 384px;
  display: block;
  opacity: 0;
  pointer-events: none;
  -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;
}
@media (max-width: 767.98px) {
  .content .content-block .content-text {
    font-size: 14px;
    line-height: 18px;
    width: 80vw;
    padding: 0 50px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .content-text {
    font-size: 14px;
    line-height: 18px;
    width: 80vw;
    padding: 0 50px;
  }
}
.content .content-block .phone-wrapper {
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 7;
}
.content .content-block .phone-wrapper img {
  width: auto;
  height: 85vh;
}
@media (max-width: 1199.98px) {
  .content .content-block .phone-wrapper img {
    height: 75vh;
  }
}
@media (max-width: 991.98px) {
  .content .content-block .phone-wrapper img {
    height: 70vh;
  }
}
@media (max-width: 767.98px) {
  .content .content-block .phone-wrapper img {
    width: 96vw;
    height: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .phone-wrapper img {
    width: 96vw;
    height: auto;
  }
}
.content .content-block .video {
  width: auto;
  position: relative;
  top: 6px;
  z-index: 6;
  margin: auto;
  overflow: hidden;
  border-radius: 12vw;
  height: auto;
}
.content .content-block .video video, .content .content-block .video img {
  width: auto;
  height: calc(85vh - 12px);
  border-radius: 4vh;
}
@media (max-width: 1199.98px) {
  .content .content-block .video video, .content .content-block .video img {
    height: calc(75vh - 12px);
  }
}
@media (max-width: 991.98px) {
  .content .content-block .video video, .content .content-block .video img {
    height: calc(70vh - 12px);
  }
}
@media (max-width: 767.98px) {
  .content .content-block .video video, .content .content-block .video img {
    width: calc(96vw - 20px);
    height: auto;
    border-radius: 12vw;
    top: -10px;
    height: calc(100% - 40px);
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .video video, .content .content-block .video img {
    width: calc(96vw - 20px);
    height: auto;
    border-radius: 12vw;
    top: -10px;
    height: calc(100% - 40px);
  }
}
.content .content-block .video img {
  width: 101%;
}
.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;
    -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;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .content-inner-block {
    padding: 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;
  }
}
.content .content-block .content-inner-block:first-of-type .content-text {
  opacity: 0;
  /*height: 0;
  overflow: hidden;*/
}
.content .content-block .content-inner-block:first-of-type .content-text.active {
  opacity: 1;
  /*height: auto;
  overflow: visible;*/
  pointer-events: auto;
}
@media (max-width: 767.98px) {
  .content .content-block .content-inner-block:first-of-type {
    top: 0;
    left: 0;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .content-inner-block:first-of-type {
    top: 0;
    left: 0;
  }
}
.content.active .content-head {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 767.98px) {
  .content.active .content-block {
    top: 0;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content.active .content-block {
    top: 0;
  }
}
.content.active .content-block .content-inner-block:first-of-type .content-text {
  opacity: 1;
}
@media (max-width: 767.98px) {
  .content.active .content-block .content-blings-app .phone-wrapper img {
    height: 75vh;
    width: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content.active .content-block .content-blings-app .phone-wrapper img {
    height: 75vh;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .content.active .content-block .content-blings-app .video video, .content.active .content-block .content-blings-app .video img {
    height: calc(75vh - 12px);
    border-radius: 4vh;
    width: auto;
    left: 0;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content.active .content-block .content-blings-app .video video, .content.active .content-block .content-blings-app .video img {
    height: calc(75vh - 12px);
    border-radius: 4vh;
    width: auto;
    left: 0;
  }
}
@media (max-width: 767.98px) {
  .content.active .content-block .content-blings-app .content-text {
    width: 80%;
    padding: 0 50px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content.active .content-block .content-blings-app .content-text {
    width: 80%;
    padding: 0 50px;
  }
}
@media (max-width: 767.98px) {
  .content {
    display: none;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content {
    display: none;
  }
}
.content .content-block {
  scroll-behavior: smooth;
  -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) {
  .content .content-block {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 0;
    padding-right: 20px;
  }
  .content .content-block::-webkit-scrollbar {
    opacity: 0;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 0;
    padding-right: 20px;
  }
  .content .content-block::-webkit-scrollbar {
    opacity: 0;
  }
}
@media (max-width: 767.98px) {
  .content .content-block .content-inner-block {
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .content-inner-block {
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .content .content-block .phone-wrapper {
    width: auto;
    left: auto;
    right: -15px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .phone-wrapper {
    width: auto;
    left: auto;
    right: -15px;
  }
}
@media (pointer: coarse) and (max-device-width: 567px) {
  .content .content-block .phone-wrapper {
    /*right: -3.5vw;*/
  }
}
@media (max-width: 767.98px) {
  .content .content-block .phone-wrapper img {
    height: 75vh;
    width: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .phone-wrapper img {
    height: 75vh;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .content .content-block .video video, .content .content-block .video img {
    height: calc(75vh - 12px);
    border-radius: 4vh;
    width: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .video video, .content .content-block .video img {
    height: calc(75vh - 12px);
    border-radius: 4vh;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .content .content-block .content-text {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .content-text {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 767.98px) {
  .content .content-block .content-blings-app .phone-wrapper img {
    width: 96vw;
    height: auto;
    -webkit-transition: all 1.3s ease-out;
    -moz-transition: all 1.3s ease-out;
    -ms-transition: all 1.3s ease-out;
    -o-transition: all 1.3s ease-out;
    transition: all 1.3s ease-out;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .content-blings-app .phone-wrapper img {
    width: 96vw;
    height: auto;
    -webkit-transition: all 1.3s ease-out;
    -moz-transition: all 1.3s ease-out;
    -ms-transition: all 1.3s ease-out;
    -o-transition: all 1.3s ease-out;
    transition: all 1.3s ease-out;
  }
}
@media (max-width: 767.98px) {
  .content .content-block .content-blings-app .video video, .content .content-block .content-blings-app .video img {
    height: auto;
    border-radius: 15vw;
    width: calc(96vw - 20px);
    left: 4px;
    position: relative;
    -webkit-transition: all 1.3s ease-out;
    -moz-transition: all 1.3s ease-out;
    -ms-transition: all 1.3s ease-out;
    -o-transition: all 1.3s ease-out;
    transition: all 1.3s ease-out;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .content-blings-app .video video, .content .content-block .content-blings-app .video img {
    height: auto;
    border-radius: 15vw;
    width: calc(96vw - 20px);
    left: 4px;
    position: relative;
    -webkit-transition: all 1.3s ease-out;
    -moz-transition: all 1.3s ease-out;
    -ms-transition: all 1.3s ease-out;
    -o-transition: all 1.3s ease-out;
    transition: all 1.3s ease-out;
  }
}
@media (max-width: 767.98px) {
  .content .content-block .content-blings-app .content-text {
    width: 0;
    padding: 0 1.7vw;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content .content-block .content-blings-app .content-text {
    width: 0;
    padding: 0 1.7vw;
  }
}

@media (max-width: 767.98px) {
  .transfer-mode .content .content-block .content-blings-app {
    left: 65vw;
    top: -20vh;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .transfer-mode .content .content-block .content-blings-app {
    left: 65vw;
    top: -20vh;
  }
}
@media (max-width: 767.98px) {
  .transfer-mode .content .content-block .content-blings-app .phone-wrapper img {
    height: 75vh;
    width: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .transfer-mode .content .content-block .content-blings-app .phone-wrapper img {
    height: 75vh;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .transfer-mode .content .content-block .content-blings-app .video video, .transfer-mode .content .content-block .content-blings-app .video img {
    height: calc(75vh - 12px);
    border-radius: 4vh;
    width: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .transfer-mode .content .content-block .content-blings-app .video video, .transfer-mode .content .content-block .content-blings-app .video img {
    height: calc(75vh - 12px);
    border-radius: 4vh;
    width: auto;
  }
}

.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 (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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);
}
@media (max-width: 767.98px) {
  .show-app-mode .content {
    margin-top: 0;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .show-app-mode .content {
    margin-top: 0;
  }
}
.show-app-mode .content .content-head {
  pointer-events: auto;
  opacity: 1;
}
.show-app-mode .content .content-block {
  scroll-behavior: smooth;
  -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) {
  .show-app-mode .content .content-block {
    /*display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 0;
    padding-right: 20px;*/
    /*margin-top: 0;*/
    display: none;
  }
  .show-app-mode .content .content-block::-webkit-scrollbar {
    opacity: 0;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .show-app-mode .content .content-block {
    display: none;
  }
  .show-app-mode .content .content-block::-webkit-scrollbar {
    opacity: 0;
  }
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block.content-block-mobile {
    display: block;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .show-app-mode .content .content-block.content-block-mobile {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block .content-inner-block {
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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 .content-inner-block .content-text {
    opacity: 1;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .show-app-mode .content .content-block .content-inner-block .content-text {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block .phone-wrapper {
    width: auto;
    left: auto;
    right: -15px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .show-app-mode .content .content-block .phone-wrapper {
    width: auto;
    left: auto;
    right: -15px;
  }
}
@media (pointer: coarse) and (max-device-width: 567px) {
  .show-app-mode .content .content-block .phone-wrapper {
    right: -3.5vw;
  }
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block .phone-wrapper img {
    height: 75vh;
    width: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .show-app-mode .content .content-block .phone-wrapper img {
    height: 75vh;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block .video {
    width: auto;
    position: relative;
    top: 0;
    z-index: 6;
    margin: auto;
    overflow: hidden;
    border-radius: 12vw;
    height: auto;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .show-app-mode .content .content-block .video {
    width: auto;
    position: relative;
    top: 0;
    z-index: 6;
    margin: auto;
    overflow: hidden;
    border-radius: 12vw;
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block .video video, .show-app-mode .content .content-block .video img {
    height: calc(75vh - 9px);
    border-radius: 4vh;
    width: auto;
    left: 2px;
    top: 0;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .show-app-mode .content .content-block .video video, .show-app-mode .content .content-block .video img {
    height: calc(75vh - 9px);
    border-radius: 4vh;
    width: auto;
    left: 2px;
    top: 0;
  }
}
.show-app-mode .content .content-block .content-text {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 767.98px) {
  .show-app-mode .content .content-block .content-text {
    width: 80vw;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .show-app-mode .content .content-block .content-text {
    width: 80vw;
  }
}
.show-app-mode .home-bottom {
  position: relative;
  opacity: 1;
  z-index: 50;
  height: 100vh;
  overflow: auto;
  pointer-events: none;
}
.show-app-mode .home-bottom header {
  margin-top: 0;
}
.show-app-mode .home-bottom .home-bg--text {
  margin-top: 0;
}
.show-app-mode .home-bottom .home-email--block {
  margin-top: 0;
}

.home-bottom-mode .content {
  /*height: 0;
  overflow: hidden;*/
}
.home-bottom-mode .content .content-head {
  opacity: 0;
  pointer-events: none;
}
.home-bottom-mode .home-bottom {
  pointer-events: auto;
}

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

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

.swiper-slide {
  width: auto;
  height: 75vh;
  display: flex;
  align-items: center;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.content .content-block-mobile {
  display: none;
}

@media (max-width: 767.98px) {
  .show-app-mode .content .content-block-mobile {
    display: block;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .show-app-mode .content .content-block-mobile {
    display: block;
  }
}

.content-head {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  padding: 65px 0 0;
  border-radius: 45px 45px 0 0;
  width: calc(100% - 48px);
  left: 24px;
  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-head {
    left: 18px;
    width: calc(100% - 36px);
  }
}
@media (max-width: 767.98px) {
  .content-head {
    padding-top: 20px;
    padding-bottom: 20px;
    pointer-events: auto;
    left: 0;
    width: 100%;
    position: fixed;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-head {
    padding-top: 20px;
    padding-bottom: 20px;
    pointer-events: auto;
    left: 0;
    width: 100%;
    position: fixed;
  }
}
.content-head.active {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 991.98px) {
  .content-head .scroll-btn {
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  .content-head .scroll-btn {
    position: fixed;
    left: 18px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-head .scroll-btn {
    position: fixed;
    left: 18px;
  }
}
.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-head .scroll-btn .btn .icon {
  padding-right: 10px;
  display: flex;
  position: relative;
  top: -1px;
}
@media (max-width: 767.98px) {
  .content-head .scroll-btn .btn .icon {
    display: none;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-head .scroll-btn .btn .icon {
    display: none;
  }
}
.content-head .scroll-btn .btn .icon.icon-sm {
  display: none;
}
@media (max-width: 767.98px) {
  .content-head .scroll-btn .btn .icon.icon-sm {
    display: flex;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-head .scroll-btn .btn .icon.icon-sm {
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .content-head .scroll-btn .btn {
    font-size: 11px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-head .scroll-btn .btn {
    font-size: 11px;
  }
}
.content-head .section-nav {
  position: relative;
  left: -5px;
  top: -65px;
  padding: 65px 200px 7px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 1599.98px) {
  .content-head .section-nav {
    padding: 65px 120px 7px;
  }
}
@media (max-width: 1199.98px) {
  .content-head .section-nav {
    padding: 65px 90px 7px;
  }
}
@media (max-width: 991.98px) {
  .content-head .section-nav {
    padding: 65px 70px 7px;
  }
}
.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-head .section-nav ul li {
  display: flex;
  align-items: center;
}
.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-head .section-nav ul li a {
    font-size: 11px;
    line-height: 11px;
    white-space: nowrap;
    padding: 13px 14px 10px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .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-head .section-nav ul li a {
    font-size: 10px;
    line-height: 10px;
    padding: 13px 10px 11px;
  }
}
.content-head .section-nav ul li a.active, .content-head .section-nav ul li a:active {
  background-color: #5b504b;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .content-head .section-nav ul li a:hover {
    background-color: #eae8e5;
  }
  .content-head .section-nav ul li a:hover.active, .content-head .section-nav ul li a:hover:active {
    background-color: #5b504b;
    color: #ffffff;
  }
}
.content-head .section-nav ul li a sup {
  font-size: 17px;
  right: 7px;
  top: 7px;
  position: absolute;
}
@media (max-width: 767.98px) {
  .content-head .section-nav {
    position: fixed;
    bottom: 24px;
    width: 100%;
    justify-content: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    left: auto;
    top: auto;
    padding: 65px 0 7px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-head .section-nav {
    position: fixed;
    bottom: 24px;
    width: 100%;
    justify-content: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    left: auto;
    top: auto;
    padding: 65px 0 7px;
  }
}
.content-head .section-nav .instagram {
  display: none;
}
@media (max-width: 767.98px) {
  .content-head .section-nav .instagram {
    width: 40px;
    height: 40px;
    display: flex;
    margin-left: 5px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-head .section-nav .instagram {
    width: 40px;
    height: 40px;
    display: flex;
    margin-left: 5px;
  }
}
@media (max-width: 991.98px) {
  .content-head .close-btn {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .content-head .close-btn {
    position: fixed;
    right: 18px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-head .close-btn {
    position: fixed;
    right: 18px;
  }
}
.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-head .close-btn .btn .icon {
  padding-right: 10px;
  display: flex;
  position: relative;
  top: -1px;
}
.content-head .close-btn .btn .icon svg {
  stroke: #2f2c28;
}
@media (max-width: 767.98px) {
  .content-head .close-btn .btn .icon {
    padding-right: 0;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-head .close-btn .btn .icon {
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .content-head .close-btn .btn {
    font-size: 0;
    line-height: 1;
    padding: 0 11px;
    width: 40px;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-head .close-btn .btn {
    font-size: 0;
    line-height: 1;
    padding: 0 11px;
    width: 40px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .content-head .close-btn .btn:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
  }
  .content-head .close-btn .btn:hover .icon svg {
    stroke: #ffffff;
  }
}

.for-mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .for-mobile {
    display: block;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .for-mobile {
    display: block;
  }
}

.swiper {
  overflow-x: hidden;
  transition: opacity 0.5s;
  opacity: 0;
}

/* SWIPE CONTAINER */
.swipe_container {
  box-sizing: border-box;
  margin: 1rem 0 0 0;
  position: relative;
  height: 42rem;
  overflow: visible;
}
.swipe_container .el {
  position: absolute;
  color: #fff;
  border: 1px solid #aaa;
  padding: 0 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  left: 0;
  transform: translateZ(0);
  flex-grow: 1;
}
.swipe_container .el.future {
  display: flex;
  margin-left: calc(200% - 2.5rem);
}
.swipe_container .el.current, .swipe_container .el.next, .swipe_container .el.prev {
  display: flex;
  justify-content: center;
  align-items: start;
}
.swipe_container .el.moving {
  transition: none;
}
.swipe_container .el:not(.moving) {
  transition: left 0.3s, right 0.3s, margin 0.3s;
}
.swipe_container .el.next, .swipe_container .el.prev {
  right: 0;
  left: 0;
}
.swipe_container .el.current {
  margin-left: 1rem;
  z-index: 10;
}
.swipe_container .el.prev {
  margin-left: calc(-100% + 2.75rem);
}
.swipe_container .el.next {
  margin-left: calc(100% - .75rem);
}
.swipe_container .el.next + .swipe_container .el.future {
  margin-left: calc(200% - 2.5rem);
  display: flex;
}
.swipe_container .el .phone-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.swipe_container .el .phone-wrapper img {
  width: 20rem;
  height: 41rem;
  object-fit: cover;
}
.swipe_container .el .video {
  position: absolute;
  top: 0.5rem;
  left: 0.4rem;
  z-index: 1;
  width: 20rem;
  height: 40rem;
}
.swipe_container .el .video video {
  width: 19.15rem;
  height: 40rem;
  border-radius: 3rem;
}
.swipe_container .el .content-text {
  text-align: center;
  width: 70%;
  margin: 0 auto;
  padding: 0 30px;
}
.swipe_container .el .content-text b {
  display: block;
}
.swipe_container.product .el {
  flex-direction: column;
  padding: 0;
  border: 0;
  border-radius: 0;
  width: 20rem;
  height: 42rem;
  align-items: stretch;
}
@media (min-width: 600px) and (max-width: 800px) and (orientation: portrait) {
  .swipe_container.product .el {
    width: 27rem;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .swipe_container.product .el {
    width: 34rem;
  }
}
.swipe_container.product .el.prev {
  margin-left: calc(-22rem);
}
@media (min-width: 600px) and (max-width: 800px) and (orientation: portrait) {
  .swipe_container.product .el.prev {
    margin-left: calc(-29rem);
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .swipe_container.product .el.prev {
    margin-left: calc(-37rem);
  }
}
.swipe_container.product .el.next {
  margin-left: calc(20rem);
}
@media (min-width: 600px) and (max-width: 800px) and (orientation: portrait) {
  .swipe_container.product .el.next {
    margin-left: calc(27rem);
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .swipe_container.product .el.next {
    margin-left: calc(34rem);
  }
}
.swipe_container.product .el.next + .swipe_container.product .el.future {
  margin-left: calc(40rem);
  display: flex;
}
@media (min-width: 600px) and (max-width: 800px) and (orientation: portrait) {
  .swipe_container.product .el.next + .swipe_container.product .el.future {
    margin-left: calc(54rem);
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .swipe_container.product .el.next + .swipe_container.product .el.future {
    margin-left: calc(68rem);
  }
}
.swipe_container.product .el.next + .swipe_container.product .el.future + .swipe_container.product .el.future {
  margin-left: calc(60rem);
  display: flex;
}
@media (min-width: 600px) and (max-width: 800px) and (orientation: portrait) {
  .swipe_container.product .el.next + .swipe_container.product .el.future + .swipe_container.product .el.future {
    margin-left: calc(71rem);
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .swipe_container.product .el.next + .swipe_container.product .el.future + .swipe_container.product .el.future {
    margin-left: calc(102rem);
  }
}
.swipe_container.product .el.next + .swipe_container.product .el.future + .swipe_container.product .el.future + .swipe_container.product .el.future {
  margin-left: calc(80rem);
  display: flex;
}
@media (min-width: 600px) and (max-width: 800px) and (orientation: portrait) {
  .swipe_container.product .el.next + .swipe_container.product .el.future + .swipe_container.product .el.future + .swipe_container.product .el.future {
    margin-left: calc(88rem);
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .swipe_container.product .el.next + .swipe_container.product .el.future + .swipe_container.product .el.future + .swipe_container.product .el.future {
    margin-left: calc(136rem);
  }
}
.swipe_container.product .el.future {
  display: flex;
}

@media (max-width: 767.98px) {
  .content-inner-block {
    overflow: visible;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .content-inner-block {
    overflow: visible;
  }
}

.fs {
  position: fixed;
  bottom: -35rem;
  left: 0;
  right: 0;
  transform: scale(1.3);
  transition: transform 0.5s, margin 0.5s, opacity 0.5s;
  z-index: 16;
  display: none;
}
@media (device-posture: continuous) and (orientation: portrait) and (max-width: 350px) {
  .fs {
    bottom: -31rem;
  }
}
@media (max-width: 767.98px) {
  .fs {
    display: block;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .fs {
    display: block;
  }
}
.fs .wrappr {
  position: relative;
  width: 20rem;
  height: 40rem;
  margin: 0 auto;
}
@media (device-posture: continuous) and (orientation: portrait) and (max-width: 350px) {
  .fs .wrappr {
    width: 17rem;
    height: 34.5rem;
  }
}
.fs .wrappr .phone-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.fs .wrappr .phone-wrapper img {
  width: 20rem;
  height: 41rem;
  object-fit: cover;
}
@media (device-posture: continuous) and (orientation: portrait) and (max-width: 350px) {
  .fs .wrappr .phone-wrapper img {
    width: 17rem;
    height: 34.5rem;
  }
}
.fs .video {
  width: 20rem;
  height: 40rem;
}
.fs .video video {
  width: 19.9rem;
  height: 40rem;
  border-radius: 4rem;
}

@media (max-width: 767.98px) {
  .home {
    height: 90vh;
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .home {
    height: 90vh;
  }
}

.footer {
  display: none;
}
@media (max-width: 767.98px) {
  .footer {
    display: block;
    height: calc(50% - 21rem);
  }
}
@media (min-height: 600px) and (max-height: 800px) and (min-width: 800px) and (max-width: 1000px) and (orientation: landscape) {
  .footer {
    display: block;
    height: calc(50% - 21rem);
  }
}

.landscape-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: #2f2c28;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: none;
}
@media (max-width: 992px) and (max-height: 500px) and (orientation: landscape) and (pointer: coarse) {
  .landscape-message {
    display: flex;
  }
}
.landscape-message span {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  display: block;
  padding: 20px;
  text-align: center;
  width: 100%;
}

@media (max-width: 992px) and (max-height: 500px) and (orientation: landscape) and (pointer: coarse) {
  section.home, section.content, section.swiper.for-mobile {
    display: none;
  }
}

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