﻿
/* styles/parts/main-header.scss */
.main-header {
  position: fixed;
  z-index: 120;
  top: 0;
  width: 100%;
  height: 4.11rem;
  transition: transform 0.2s linear;
  transform: translateY(-100%);
  background-color: #fff;
  box-shadow: 11px 11px 11px rgba(0, 0, 0, 0.06);
}
.main-header.is-shown {
  transform: none;
}
.main-header .container {
  display: block;
  box-sizing: border-box;
  width: auto;
  max-width: 1310px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1.66667rem;
}
.main-header .navbar-inner {
  position: relative;
  height: 100%;
}
.main-header .navbar-left.logo img {
  width: 8.61rem;
}
.main-header .navbar-left {
  line-height: 1;
  position: absolute;
  left: 0;
  display: flex;
  height: 100%;
  align-items: center;
}
.main-header .navbar-right .menu .menu-item a {
  font-size: 19px;
  padding-right: 1.67rem;
  letter-spacing: 0.012rem;
  color: #000;
  text-decoration: none;
}
.main-header .navbar-right .menu .menu-item.start-free-trial-button a {
  font-size: 14px;
  line-height: 1.2;
  display: block;
  padding: 10px 24px;
  transition: background 0.2s linear;
  letter-spacing: 1px;
  color: #fff;
  border-radius: 2.39rem;
  background: #9974ba;
}
.main-header .navbar-right .menu .menu-item.start-free-trial-button:hover a {
  background-color: #000;
}
.main-header .navbar-right .menu {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  list-style-type: none;
}
.main-header .navbar-right {
  font-family: 'ProximaNova', sans-serif;
  line-height: 1;
  position: absolute;
  right: 0;
  display: none;
  height: 100%;
}
.main-header .hamburger.is-active .menu-icon span:before {
  visibility: visible;
  transform: rotate(45deg);
}
.main-header .hamburger.is-active .menu-icon span:after {
  visibility: visible;
  transform: rotate(-45deg);
}
.main-header .hamburger.is-active .menu-icon span {
  visibility: hidden;
}
.main-header .hamburger:not(.is-active):hover span:before {
  transform: translateY(-8px);
}
.main-header .hamburger:not(.is-active):hover span:after {
  transform: translateY(8px);
}
.main-header .hamburger .menu-icon span:before,
.main-header .hamburger .menu-icon span:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: '';
  transition: all 0.2s ease;
  background-color: inherit;
  backface-visibility: hidden;
}
.main-header .hamburger .menu-icon span:before {
  transform: translateY(-6px);
}
.main-header .hamburger .menu-icon span:after {
  transform: translateY(6px);
}
.main-header .hamburger .menu-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 7px;
  cursor: pointer;
  transform: translateY(-50%);
  background-color: #000;
}
.main-header .hamburger .menu-icon {
  position: relative;
  display: block;
  width: 1.33rem;
  height: 14px;
  transition: none;
}
.main-header .hamburger {
  line-height: 1;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: flex;
  height: 100%;
  cursor: pointer;
  text-align: right;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .main-header .navbar-right {
    display: block;
  }
  .main-header .hamburger {
    display: none;
  }
}
@media screen and (max-width: 991.98px) {
  .main-header .container {
    padding: 0 1.11rem;
  }
}

/* styles/parts/menu.scss */
.overlay-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(153, 116, 186, 1);
}
.overlay-menu.is-shown .overlay-nav .menu-item {
  transform: none;
  opacity: 1;
}
.overlay-menu.is-shown {
  z-index: 119;
  opacity: 1;
}
.overlay-menu .overlay-menu-inner {
  width: calc(100% / 12 * 12);
  max-width: calc(100% / 12 * 12);
  flex: 0 0 auto;
  flex-basis: calc(100% / 12 * 12);
}
.overlay-menu .overlay-nav ul {
  padding-left: 0;
}
.overlay-menu .overlay-nav .menu-item:nth-child(2) {
  transition-delay: 0.1s;
}
.overlay-menu .overlay-nav .menu-item:nth-child(3) {
  transition-delay: 0.2s;
}
.overlay-menu .overlay-nav .menu-item:nth-child(4) {
  transition-delay: 0.3s;
}
.overlay-menu .overlay-nav .menu-item:last-child {
  transition-delay: 0.4s;
}
.overlay-menu .overlay-nav .menu-item a {
  font-family: 'Pano Bold', sans-serif;
  font-size: 1.33rem;
  font-weight: 400;
  font-style: normal;
  position: relative;
  display: inline-block;
  padding: 0.94rem 0;
  color: #fff;
  text-decoration: none;
}
.overlay-menu .overlay-nav .menu-item.start-free-trial-button a {
  font-size: 13px;
  margin-top: 20px;
  padding: 20px 34px;
  letter-spacing: 1px;
  color: #9974ba;
  border-radius: 2.39rem;
  background: white;
}
.overlay-menu .overlay-nav .menu-item.start-free-trial-button {
  margin-top: 15px;
}
.overlay-menu .overlay-nav .menu-item {
  list-style: none;
  transition: all 0.3s ease-in-out;
  transform: translateY(25px);
  opacity: 0;
}
.overlay-menu .overlay-nav {
  line-height: 1;
  position: absolute;
  top: 74px;
  left: 0;
  width: 100%;
  padding-top: 1.78rem;
  text-align: center;
}

/* unsupported/styles/fonts.scss */
@font-face {
  font-family: 'ProximaNova';
  src: url('https://static.cmcdn.net/kits/16/fonts/ProximaNova-Reg.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Pano Bold';
  src: url('../../fonts/pano_bold.woff') format('woff');
  font-weight: 700;
  font-style: bold;
}
body, html {
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  margin: 0;
  font: 13px / 18px 'Avenir Next Pro', 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.67;
  color: #666;
  -webkit-font-smoothing: antialiased;
}
#content {
  width: 100%;
  height: 100vh;
  position: relative;
  padding-bottom: 0;
  transition: opacity 0.2s linear;
  opacity: 0;
  background: center no-repeat url('../images/unsupported-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#content.is-shown {
  opacity: 1;
}
.unsupported {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  font-family: 'Manrope', sans-serif;
  align-items: flex-end;
}
.unsupported .notice .lhs h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  color: #3d2f4a;
}
.unsupported .notice .lhs p a {
  text-decoration: underline;
  color: #2ad4c4;
}
.unsupported .notice .lhs p {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #b5b1b8;
}
.unsupported .notice .lhs {
  width: 64%;
  text-align: left;
}
.unsupported .notice .rhs .button:hover {
  background-color: #000;
}
.unsupported .notice .rhs .button {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  padding: 11px 0;
  font: 12px 'Helvetica Neue', Helvetica, Arial;
  font-weight: 500;
  transition: background 0.2s linear;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.2em;
  color: #fff;
  border-radius: 20px;
  background-color: #00cbe3;
}
.unsupported .notice .rhs {
  width: 29.4%;
}
.unsupported .notice {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  width: 800px;
  height: max-content;
  margin: 0 auto 50px;
  padding: 23px 40px 25px;
  border-radius: 11px;
  background-color: #fff;
  align-items: center;
}
@media screen and (max-width: 991.98px) {
  #content #inner {
    width: 100%;
  }
  .unsupported {
    padding-right: 0.833rem;
    padding-left: 0.833rem;
  }
  .unsupported .notice .lhs,
.unsupported .notice .rhs {
    width: 100%;
    text-align: center;
  }
  .unsupported .notice .lhs h2 {
    margin-bottom: 5px;
    font-size: 25px;
    line-height: 1.3;
  }
  .unsupported .notice .lhs p {
    font-size: 17px;
  }
  .unsupported .notice .lhs {
    margin-bottom: 20px;
  }
  .unsupported .notice {
    display: block;
    width: 100%;
    margin-bottom: 0.833rem;
    padding: 25px;
  }
}