#header {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  /* background-image: url("../images/etc-overlay.png"),
    linear-gradient(30deg, #795277 30%, #355192 85%);
  background-size: 256px, cover;
  background-position: center, center;
  background-repeat: repeat, no-repeat; */
  height: 3.5em;
  line-height: 3.5em;
  text-align: right;
  padding-right: 30px;
  padding-top: 30px;
}

#cookieWarnBox .btn {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 13px;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#cookieWarnBox .btn:hover {
  background-color: #28a745;
  color: #fff;
}

#header .logo {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  display: block;
  position: absolute;
  top: 0;
  left: 1em;
  height: inherit;
  line-height: inherit;
  border: 0;
  outline: 0;
  display: flex;
  align-items: center;
}

#header .logo>svg {
  width: 1.25em;
  height: 1.25em;
  fill: #fff;
  margin-right: 0.5em;
}

#header .logo>.label {
  display: block;
  letter-spacing: -0.025em;
  font-weight: bold;
  color: #fff;
}

#header nav {
  position: absolute;
  top: 0;
  right: 0;
  height: inherit;
  line-height: inherit;
}

.home-cart-icon {
  background: url('../images/cart-full.png') no-repeat center;
  width: 30px;
  background-size: 30px 28px;
  height: 28px;
  display: inline-block;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.home-cart-icon::before {
  content: '';
  background-image: url('../images/blue-cart-full.png');
}

.cart-icon:hover .home-cart-icon {
  background-image: url('../images/blue-cart-full.png');
}

a.cart-empty .home-cart-icon {
  background-image: url('../images/cart.png');
  background-size: 30px 28px;
}

a.cart-empty .home-cart-icon::before {
  content: '';
  background-image: url('../images/blue-cart.png');
}

.cart-icon.cart-empty:hover .home-cart-icon {
  background-image: url('../images/blue-cart.png');
}

.cart-icon:hover span.count-style {
  color: #008cff !important;
}

#header nav a[href="#menu"] {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  height: inherit;
  line-height: inherit;
  display: block;
  position: relative;
  outline: 0;
  border: 0;
  width: 4em;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

#header nav a[href="#menu"]>svg {
  transition: fill 0.2s ease-in-out;
  width: 1.75em;
  height: 1.75em;
  display: block;
  fill: rgba(255, 255, 255, 0.4);
}

#header nav a[href="#menu"]>.label {
  display: none;
}

#header nav a[href="#menu"]:hover {
  color: #fff;
}

#header nav a[href="#menu"]:hover>svg {
  fill: #fff;
}

#header~.inner {
  margin-top: 3.5em;
}

@media screen and (max-width: 736px) {
  #header {
    height: 3em;
    line-height: 3em;
  }

  #header nav a[href="#menu"] {
    width: 3em;
    text-indent: 3em;
  }

  #header~.inner {
    margin-top: 3em;
  }
}

body.index #header {
  background: none;
}

.cart-icon img {
  max-width: 30px;
}

body.index #header .logo {
  display: none;
}

#footer {
  text-align: center;
  width: 100%;
  background-color: #21222a;
  padding: 3em 2em;
  margin: 0;
}

#footer .menu {
  font-size: 0.8em;
  margin: 0;
}

#footer .menu a {
  color: rgba(255, 255, 255, 0.25);
}

#footer .menu a:hover {
  color: #fff;
}

#footer .copyright {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.25);
  margin: 1.75em 0 0 0;
  opacity: 1;
}

@media screen and (max-width: 736px) {
  #footer {
    padding: 2em;
  }
}

@media screen and (max-width: 480px) {
  #footer .menu li {
    padding-left: 0;
    border-left: 0;
    margin: 0.75em 1em;
  }
}

#menu {
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, visibility 0.25s;
  transition-delay: 0.25s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /* background-image: url("../images/etc-overlay.png"),
    linear-gradient(30deg, rgba(121, 82, 119, 0.975) 30%, #355192 85%);
  background-size: 256px, cover;
  background-position: center, center;
  background-repeat: repeat, no-repeat; */
  height: 100%;
  left: 0;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10001;
  visibility: hidden;
  opacity: 0;
  outline: 0;
}

#menu nav {
  position: absolute;
  top: 0;
  right: 0;
  height: 3.5em;
  line-height: 3.5em;
}

#menu nav a[href="#menu"] {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  height: inherit;
  line-height: inherit;
  display: block;
  position: relative;
  outline: 0;
  border: 0;
  width: 4em;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu nav a[href="#menu"]>svg {
  transition: fill 0.2s ease-in-out;
  width: 1.75em;
  height: 1.75em;
  display: block;
  fill: rgba(255, 255, 255, 0.4);
  position: relative;
  left: 0.25em;
}

#menu nav a[href="#menu"]>.label {
  display: none;
}

#menu nav a[href="#menu"]:hover {
  color: #fff;
}

#menu nav a[href="#menu"]:hover>svg {
  fill: #fff;
}

#menu>.inner {
  transform: scale(0.9875);
  transition: transform 0.3125s ease, opacity 0.25s ease;
  transition-delay: 0s;
  max-width: 80em;
  width: 100%;
  opacity: 0;
  padding: 3em;
}

#menu>.inner ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: solid 2px rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

#menu>.inner ul li {
  padding: 0;
  width: 33.3333333333%;
  border-top: solid 2px rgba(255, 255, 255, 0.075);
  border-left: solid 2px rgba(255, 255, 255, 0.075);
}

#menu>.inner ul li:nth-child(-n + 3) {
  border-top-width: 0;
}

#menu>.inner ul li:nth-child(-n + 3) a {
  padding-top: 2.125em;
}

#menu>.inner ul li:nth-last-child(-n + 3) a {
  padding-bottom: 2.125em;
}

#menu>.inner ul li:nth-child(3n + 1) {
  border-left-width: 0;
}

#menu>.inner ul li a {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  display: block;
  border: 0;
  padding: 2em 1em;
  height: 10em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease-in-out;
}

#menu>.inner ul li a h2 {
  margin: 0 0 0.35em 0;
}

#menu>.inner ul li a> :last-child {
  margin-bottom: 0;
}

#menu>.inner ul li a:hover {
  background-color: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.75);
}

#menu.visible {
  pointer-events: auto;
  transition-delay: 0s;
  visibility: visible;
  opacity: 1;
}

#menu.visible>.inner {
  transform: translateY(0);
  transition-delay: 0.25s;
  opacity: 1;
}

#menu.docked {
  align-items: flex-start;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

#menu.docked>.inner {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

#menu.docked>.inner>.content header {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

#menu.docked>.inner>.content header:before,
#menu.docked>.inner>.content header:after {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

@media screen and (max-width: 980px) {
  #menu>.inner ul li {
    width: 50%;
  }

  #menu>.inner ul li:nth-child(-n + 3) {
    border-top-width: 2px;
  }

  #menu>.inner ul li:nth-child(3n + 1) {
    border-left-width: 2px;
  }

  #menu>.inner ul li:nth-child(-n + 2) {
    border-top-width: 0;
  }

  #menu>.inner ul li:nth-child(2n + 1) {
    border-left-width: 0;
  }
}

@media screen and (max-width: 736px) {
  #menu nav {
    height: 3.5em;
    line-height: 3.5em;
  }

  #menu nav a[href="#menu"] {
    width: 3.5em;
  }
}

@media screen and (max-width: 480px) {
  #menu {
    text-align: left;
  }

  #menu .inner {
    padding: 0.5em 0;
    width: 100%;
  }

  #menu .inner ul {
    border-radius: 0;
    border: 0;
    display: block;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }

  #menu .inner ul li {
    width: 100%;
    border-left-width: 0 !important;
  }

  #menu .inner ul li:nth-child(-n + 2) {
    border-top-width: 2px;
  }

  #menu .inner ul li:nth-child(2n + 1) {
    border-left-width: 2px;
  }

  #menu .inner ul li:first-child {
    border-top-width: 0 !important;
  }

  #menu .inner ul li:nth-child(-n + 3) a {
    padding-top: 1.5em;
  }

  #menu .inner ul li:nth-last-child(-n + 3) a {
    padding-bottom: 1.5em;
  }

  #menu .inner ul li a {
    padding: 1.5em 1.5em;
    height: auto;
    display: block;
  }
}

body.is-touch #menu>.inner ul li a:hover {
  background: none;
}

body#website.default {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  text-align: left;
}

body#website.default:before {
  content: "";
  display: block;
}

body#website.default>.inner {
  padding: 6em 0;
  width: 40em;
  max-width: calc(100% - 5em);
  margin-left: auto;
  margin-right: auto;
}

body#website.default>.inner> :last-child {
  margin-bottom: 0 !important;
}

body#website.default>.inner>.box {
  background: rgba(71, 73, 88, 0.475);
  border-radius: 8px;
  padding: 2.5em 2.5em;
  max-width: 100%;
  margin-top: 3em;
  margin-bottom: 3em;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

body#website.default>.inner>.box>h2:first-child {
  margin-top: 0.25em;
}

body#website.default>.inner>.box> :last-child,
body#website.default>.inner>.box> :last-child> :last-child,
body#website.default>.inner>.box> :last-child> :last-child> :last-child {
  margin-bottom: 0;
}

body#website.default>.inner>.box.compact {
  padding: 2em;
}

body#website.default>.inner>.box footer.with-actions {
  border-top: solid 1px rgba(255, 255, 255, 0.075);
  bottom: -2.5em;
  left: -2.5em;
  margin-top: -2.5em;
  min-width: calc(100% + 5em);
  padding: 2.5em 2.5em;
  position: relative;
}

body#website.default>.inner>.box .field-group+footer.with-actions,
body#website.default>.inner>.box .field+footer.with-actions {
  margin-top: -1em;
}

body#website.default>.inner>.box.with-nav {
  display: flex;
  padding: 0;
}

body#website.default>.inner>.box.with-nav>nav {
  flex-grow: 0;
  flex-shrink: 0;
  background-color: rgba(14, 15, 25, 0.175);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 15em;
  padding-bottom: 2.5em;
}

body#website.default>.inner>.box.with-nav>nav>.thumbnail {
  display: none;
}

body#website.default>.inner>.box.with-nav>nav>a,
body#website.default>.inner>.box.with-nav>nav>span {
  display: block;
  padding: 1em 1.5em;
  border-bottom: 0;
  outline: 0;
}

body#website.default>.inner>.box.with-nav>nav>a:first-child,
body#website.default>.inner>.box.with-nav>nav>span:first-child {
  border-top-left-radius: inherit;
}

body#website.default>.inner>.box.with-nav>nav>a.active,
body#website.default>.inner>.box.with-nav>nav>span.active {
  background-color: rgba(71, 73, 88, 0.475);
  box-shadow: inset -2px 0 0 0 #33ada9;
  color: #fff;
}

body#website.default>.inner>.box.with-nav>nav>a:last-child,
body#website.default>.inner>.box.with-nav>nav>span:last-child {
  margin-bottom: 0;
}

body#website.default>.inner>.box.with-nav>nav>a .alerts,
body#website.default>.inner>.box.with-nav>nav>span .alerts {
  pointer-events: none;
  background: #cc666b;
  border-radius: 2em;
  color: #fff;
  display: inline-block;
  position: relative;
  top: -0.25em;
  margin-left: 0.75em;
  font-size: 0.6em;
  vertical-align: middle;
  font-weight: bold;
  height: 2em;
  line-height: 2em;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  width: 2em;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  -ms-border-radius: 2em;
  -o-border-radius: 2em;
}

body#website.default>.inner>.box.with-nav>nav>a {
  color: rgba(255, 255, 255, 0.375);
}

body#website.default>.inner>.box.with-nav>nav>a:hover {
  color: #fff;
}

body#website.default>.inner>.box.with-nav>nav>span {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.075);
  cursor: default;
}

body#website.default>.inner>.box.with-nav>section {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 15em;
  padding: 2.5em 2.5em;
}

body#website.default>.inner>.box.with-nav>section> :last-child,
body#website.default>.inner>.box.with-nav>section>form {
  margin-bottom: 0;
}

@media screen and (min-width: 981px) {
  body#website.default>.inner>.box.with-nav.flip-nav {
    flex-direction: row-reverse;
  }

  body#website.default>.inner>.box.with-nav.flip-nav>nav {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  body#website.default>.inner>.box.with-nav.flip-nav>nav>a:first-child,
  body#website.default>.inner>.box.with-nav.flip-nav>nav>span:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: inherit;
  }

  body#website.default>.inner>.box.with-nav.flip-nav>nav>a.active,
  body#website.default>.inner>.box.with-nav.flip-nav>nav>span.active {
    box-shadow: inset 2px 0 0 0 #33ada9;
  }
}

@media screen and (min-width: 981px) {
  body#website.default>.inner>.box.with-nav>nav>.thumbnail {
    display: block;
    width: 100%;
    border-radius: 8px 0 0 0;
    overflow: hidden;
    position: relative;
    -webkit-border-radius: 8px 0 0 0;
    -moz-border-radius: 8px 0 0 0;
    -ms-border-radius: 8px 0 0 0;
    -o-border-radius: 8px 0 0 0;
  }

  body#website.default>.inner>.box.with-nav>nav>.thumbnail .preview {
    display: block;
    width: 100%;
    border-radius: 8px 0 0 0;
    border: 0;
    overflow: hidden;
    position: relative;
    -webkit-border-radius: 8px 0 0 0;
    -moz-border-radius: 8px 0 0 0;
    -ms-border-radius: 8px 0 0 0;
    -o-border-radius: 8px 0 0 0;
  }

  body#website.default>.inner>.box.with-nav>nav>.thumbnail .preview.is-draft:before,
  body#website.default>.inner>.box.with-nav>nav>.thumbnail .preview.is-template:before {
    border-bottom-left-radius: inherit;
    border-top-right-radius: inherit;
    display: block;
    font-size: 0.7em;
    font-weight: bold;
    height: 2.25em;
    line-height: 2.25em;
    padding: 0 1em;
    pointer-events: none;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    z-index: 1;
  }

  body#website.default>.inner>.box.with-nav>nav>.thumbnail .preview.is-draft:before {
    background-color: #33ada9;
    color: #fff;
    content: "Draft";
  }

  body#website.default>.inner>.box.with-nav>nav>.thumbnail .preview.is-template:before {
    background-color: #8d73d5;
    color: #fff;
    content: "Template";
  }

  body#website.default>.inner>.box.with-nav>nav>.thumbnail .preview img {
    display: block;
    width: 100%;
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
  }

  body#website.default>.inner>.box.with-nav>nav>.thumbnail .preview:before {
    border-bottom-left-radius: 6px !important;
  }

  body#website.default>.inner>.box.with-nav>nav>a.break-after,
  body#website.default>.inner>.box.with-nav>nav>span.break-after {
    position: relative;
  }

  body#website.default>.inner>.box.with-nav>nav>a.break-after:after,
  body#website.default>.inner>.box.with-nav>nav>span.break-after:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.075);
    position: absolute;
    bottom: -0.625em;
    left: 0;
  }

  body#website.default>.inner>.box.with-nav>nav>a.break-after+a,
  body#website.default>.inner>.box.with-nav>nav>a.break-after+span,
  body#website.default>.inner>.box.with-nav>nav>span.break-after+a,
  body#website.default>.inner>.box.with-nav>nav>span.break-after+span {
    margin-top: 1.25em;
  }
}

@media screen and (max-width: 980px) {
  body#website.default>.inner>.box.with-nav {
    flex-direction: column;
  }

  body#website.default>.inner>.box.with-nav>nav {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    white-space: nowrap;
    width: 100%;
    border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
  }

  body#website.default>.inner>.box.with-nav>nav>.preview {
    display: none;
  }

  body#website.default>.inner>.box.with-nav>nav>a.active,
  body#website.default>.inner>.box.with-nav>nav>span.active {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: inset 0 -3px 0 0 #33ada9;
  }
}

@media screen and (max-width: 736px) {
  body#website.default>.inner>.box {
    padding: 2em 1.75em;
  }

  body#website.default>.inner>.box.compact {
    padding: 2em 1.75em;
  }

  body#website.default>.inner>.box footer.with-actions {
    bottom: -2em;
    left: -1.75em;
    margin-top: -2em;
    min-width: calc(100% + 3.5em);
    padding: 2em 1.75em;
  }

  body#website.default>.inner>.box .field-group+footer.with-actions,
  body#website.default>.inner>.box .field+footer.with-actions {
    margin-top: -0.5em;
  }

  body#website.default>.inner>.box.with-nav>section {
    padding: 2em 1.75em;
  }
}

@media screen and (max-width: 480px) {
  body#website.default>.inner>.box {
    background: rgba(0, 0, 0, 0);
    width: 100% !important;
    border-radius: 0;
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }

  body#website.default>.inner>.box.compact {
    padding: 0;
  }

  body#website.default>.inner>.box footer.with-actions {
    bottom: -2em;
    left: -1.75em;
    margin-top: -2em;
    min-width: calc(100% + 3.5em);
    padding: 2em 1.75em;
  }

  body#website.default>.inner>.box .field-group+footer.with-actions,
  body#website.default>.inner>.box .field+footer.with-actions {
    margin-top: -0.5em;
  }

  body#website.default>.inner>.box.with-nav>nav {
    height: 3.5em;
    line-height: 3.5em;
    background-color: #3f414e;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }

  body#website.default>.inner>.box.with-nav>nav>a,
  body#website.default>.inner>.box.with-nav>nav>span {
    padding: 0 1.25em;
  }

  body#website.default>.inner>.box.with-nav>nav>a.active,
  body#website.default>.inner>.box.with-nav>nav>span.active {
    box-shadow: inset 0 -3px 0 0 #8d73d5;
  }
}

@media screen and (max-width: 360px) {
  body#website.default>.inner>.box footer.with-actions {
    bottom: -2em;
    left: -1.5em;
    margin-top: -2em;
    min-width: calc(100% + 3em);
    padding: 2em 1.5em;
  }

  body#website.default>.inner>.box .field-group+footer.with-actions,
  body#website.default>.inner>.box .field+footer.with-actions {
    margin-top: -0.5em;
  }

  body#website.default>.inner>.box.with-nav>section {
    padding: 2em 1.5em;
  }
}

body#website.default>.inner>.box:first-child {
  margin-top: 0;
}

body#website.default>.inner.narrow {
  width: 23em;
}

body#website.default>.inner.narrow>.box {
  margin-top: 2em;
  margin-bottom: 2em;
}

body#website.default>.inner.wide {
  width: 54em;
}

body#website.default>.inner.special {
  text-align: center;
}

body#website.default>.inner.special.alt label {
  text-align: left;
}

body#website.default>.inner.always-special {
  text-align: center;
}

body#website.default>.inner.columned {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
  padding: 0;
  min-height: 100vh;
}

body#website.default>.inner.columned>.content {
  flex-grow: 1;
  flex-shrink: 1;
  overflow-x: hidden;
  padding: 3.5em 4em;
  max-width: 62em;
  width: 100%;
}

body#website.default>.inner.columned>.content> :last-child {
  margin-bottom: 0;
}

body#website.default>.inner.columned>.content .image {
  display: block;
  border-radius: 8px;
  margin: 2.5em 0;
  width: 100%;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

body#website.default>.inner.columned>.content .image img {
  display: block;
  width: 100%;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

body#website.default>.inner.columned>.content .image.mobile {
  max-width: 18em;
}

body#website.default>.inner.columned>.content .search {
  margin-bottom: 2em;
}

body#website.default>.inner.columned>.content .search .results {
  max-width: calc(100% - 3.625em);
  min-width: auto;
}

body#website.default>.inner.columned>.content .search .results li a {
  white-space: normal;
}

body#website.default>.inner.columned>.sidebar {
  flex-grow: 0;
  flex-shrink: 0;
  background-color: rgba(14, 15, 25, 0.175);
  width: 16em;
  padding: 3.5em 1.75em;
}

body#website.default>.inner.columned>.sidebar> :last-child {
  margin-bottom: 0;
}

body#website.default>.inner.columned>.sidebar a {
  border-bottom: 0;
}

body#website.default>.inner.columned>.sidebar a:hover {
  color: #fff;
}

body#website.default>.inner.columned>.sidebar>.inner {
  position: sticky;
  top: 7em;
}

body#website.default>.inner.columned>.sidebar>.inner>.search {
  margin-bottom: 1.25em;
}

body#website.default>.inner.columned>.sidebar>.inner>ul {
  list-style: none;
  padding-left: 0;
}

body#website.default>.inner.columned>.sidebar>.inner>ul>li {
  padding-left: 0;
}

body#website.default>.inner.columned>.sidebar>.inner>ul>li>a,
body#website.default>.inner.columned>.sidebar>.inner>ul>li>span {
  line-height: 2.5;
}

body#website.default>.inner.columned>.sidebar>.inner>ul>li>ul {
  list-style: none;
  padding-left: 1em;
  margin-bottom: 0.5em;
}

body#website.default>.inner.columned>.sidebar>.inner>ul>li>ul>li {
  padding-left: 0;
}

body#website.default>.inner.columned>.sidebar>.inner>ul>li>ul>li>a,
body#website.default>.inner.columned>.sidebar>.inner>ul>li>ul>li>span {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.375);
}

body#website.default>.inner.columned>.sidebar>.inner>ul>li>ul>li>a.todo,
body#website.default>.inner.columned>.sidebar>.inner>ul>li>ul>li>span.todo {
  color: #cc666b;
}

body#website.default>.inner.columned>.sidebar>.inner>ul>li>ul>li>span {
  opacity: 0.2;
  cursor: default;
}

body#website.default>.inner.columned>.sidebar>.inner>ul>li>ul>li.indent {
  padding-left: 1em;
}

body#website.default [data-anchor] {
  position: relative;
}

body#website.default [data-anchor]:before {
  pointer-events: none;
  user-select: none;
  content: "";
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.25em;
  margin-top: -5.25em;
}

body#website.default form#signup .field:nth-child(5) {
  display: none;
}

@media screen and (max-width: 1680px) {
  body#website.default>.inner {
    padding: 4em 0;
  }
}

@media screen and (max-width: 980px) {
  body#website.default>.inner.columned {
    padding: 4em 0;
    width: 54em;
    max-width: calc(100% - 5em);
    min-height: 0;
  }

  body#website.default>.inner.columned>.content {
    max-width: 100%;
    width: 100%;
    padding: 0;
    overflow: visible;
  }

  body#website.default>.inner.columned>.sidebar {
    display: none;
  }
}

@media screen and (max-width: 736px) {
  body#website.default>.inner {
    padding: 2em 0;
    max-width: calc(100% - 3.5em);
  }

  body#website.default>.inner>.box {
    margin: 2em 0;
  }

  body#website.default>.inner.columned {
    padding: 2em 0;
    max-width: calc(100% - 3.5em);
  }

  body#website.default>.inner.columned>.content .image {
    margin: 2em 0;
  }
}

@media screen and (max-width: 480px) {
  body#website.default {
    justify-content: stretch;
  }

  body#website.default>.inner {
    flex-grow: 1;
  }

  body#website.default>.inner>.box {
    margin: 0 0 2em 0;
  }

  body#website.default>.inner.narrow {
    width: 100%;
  }

  body#website.default>.inner.special {
    text-align: left;
  }
}

@media screen and (max-width: 360px) {
  body#website.default>.inner {
    max-width: calc(100% - 3em);
  }

  body#website.default>.inner.columned {
    max-width: calc(100% - 3em);
  }
}

body#website.index {
  text-align: center;
  cursor: default;
}

body#website.index:before,
body#website.index:after {
  content: "";
  display: block;
  position: fixed;
  bottom: -5vh;
  left: -5vw;
  width: 110vw;
  height: 110vh;
  pointer-events: none;
  transform: scale(1);
  z-index: -1;
}

/* body#website.index:before {
    background-image: url("../images/etc-overlay.png"),
      linear-gradient(45deg, #6e436c 25%, #2a4584 75%);
    background-size: 256px, cover;
    background-position: center, center;
    background-repeat: repeat, no-repeat;
  } */
body#website.index:after {
  /* background-image: url("../fonts/etc-bg.svg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat; */
  transition: filter 0.5s ease, opacity 1s ease;
}

body#website.index[data-browser="firefox"]:after {
  background-image: url("../fonts/etc-bg-static.svg");
}

body#website.index>.inner {
  width: calc(100% - 8em);
  max-width: 64em;
  margin: 0 auto;
}

body#website.index>.inner>section {
  border-radius: 8px;
  margin-top: 10em;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

body#website.index>.inner>section h1 {
  font-size: 3.5em;
  margin-bottom: 0.25em;
  letter-spacing: -0.025em;
}

body#website.index>.inner>section h2 {
  font-size: 2.125em;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em 0;
  color: #1a1a1a;
}

#subscribe-form .form-control {
  position: relative;
  width: 55%;
  margin: 0 auto;
}

#subscribe-form .form-control .input {
  border-radius: 8px;
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  height: 50px;
  padding: 12px 25px;
  width: 100%;
  border: 2px solid #d5d5d5;
  background: unset;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

#subscribe-form .form-control .btn {
  background-color: #363636;
  border: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  color: #fff;
  font-size: 16px;
  height: 50px;
  box-shadow: unset;
  line-height: 0;
  padding: 12px 40px;
  font-weight: 400;
  position: absolute;
  top: 0px;
  right: 0;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, transform 0.75s ease 0.5s, opacity 0.75s ease 0.5s;
}

#subscribe-form .form-control input::-webkit-input-placeholder {
  color: #ccc !important;
}

#subscribe-form .form-control input[type="email"]:focus {
  box-shadow: unset;
}

#subscribe-form .btn:hover {
  background: #4e4e4e;
  transition-duration: 80ms;
}

body#website.index>.inner>section h3 {
  font-size: 1.5em;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em 0;
  font-weight: 500;
}

body#website.index>.inner>section:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10em;
  left: calc(50% - 1px);
  width: 2px;
  height: 10em;
  background: rgba(55, 55, 55, 1);
}

body#website.index>.inner>section:first-child {
  margin-top: 0;
}

body#website.index>.inner>section:last-child:after {
  display: none;
}

body#website.index>.inner>section.style1 {
  background-color: rgba(255, 255, 255, 1);
}

body#website.index>.inner>section.style1 strong {
  color: #373737;
}

body#website.index>.inner>section.style2 {
  box-shadow: inset 0 0 0 2px rgba(55, 55, 55, 1);
}

@media screen and (max-width: 980px) {
  body#website.index>.inner>section h1 {
    font-size: 3.5em;
  }

  body#website.index>.inner>section h2 br {
    display: none;
  }

  body#website.index>.inner>section h3 {
    font-size: 1.25em;
  }
}

@media screen and (max-width: 736px) {
  body#website.index>.inner {
    width: calc(100% - 4em);
  }

  body#website.index>.inner>section {
    margin-top: 6em;
  }

  body#website.index>.inner>section h1 {
    font-size: 3em;
  }

  body#website.index>.inner>section h2 {
    font-size: 1.75em;
    line-height: 1.5;
  }

  body#website.index>.inner>section h3 {
    font-size: 1.25em;
    line-height: 2;
  }

  body#website.index>.inner>section:after {
    bottom: -6em;
    height: 6em;
  }

  body#website.index #footer .copyright {
    margin-top: 0.5em;
  }
}

@media screen and (max-width: 480px) {
  body#website.index>.inner {
    width: calc(100% - 1.5em);
  }

  body#website.index>.inner>section {
    transition: transform 0.5s ease, opacity 1s ease;
  }
}

@media screen and (max-width: 736px) {
  body#website.index[data-browser="safari"]>.inner>section {
    transition: opacity 1s ease;
  }
}

body#website.index #intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -8em;
  min-height: 100vh;
  padding: 0 0 8em 0;
  transition: transform 0.5s ease, opacity 1s ease;
}

body#website.index #intro:before {
  display: block;
  content: "";
}

body#website.index #intro:after {
  display: none;
}

body#website.index #intro .content {
  margin-top: 2em;
}

body#website.index #intro .content>svg {
  width: 6em;
  height: 6em;
  fill: #fff;
  margin: 0 0 0.25em 0;
}

body#website.index #intro .content .note {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.3);
  margin-top: -0.5em;
  margin-bottom: -0.5em;
}

body#website.index #intro .content .note a {
  border-bottom: dotted 1px rgba(255, 255, 255, 0.15);
  color: inherit;
}

body#website.index #intro .content .note a:hover {
  color: #fff;
  border-bottom-color: rgba(0, 0, 0, 0);
}

body#website.index #intro .button:not(.special) {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

body#website.index #intro .button:not(.special):hover {
  background-color: #fff;
  box-shadow: none;
  border-color: #373737;
}

body#website.index #intro .button:not(.special):focus,
body#website.index #intro .button:not(.special):active {
  outline: 0;
  /*  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.75);*/
}

body#website.index #intro a[href="#about"] {
  font-weight: bold;
  color: #373737;
  border-bottom: 0;
  box-shadow: inset 0 0 0 2px rgba(55, 55, 55, 1);
  border-radius: 8px;
  display: inline-block;
  height: 3.3em;
  line-height: 3.3em;
  padding: 0 1.5em;
  margin-top: 2em;
  position: relative;
  outline: 0;
  font-size: 0.8em;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, transform 0.75s ease 0.5s, opacity 0.75s ease 0.5s;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

body#website.index #intro a[href="#about"]:focus,
body#website.index #intro a[href="#about"]:active {
  outline: 0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.75);
}

body#website.index #intro a[href="#about"]:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -12.5em;
  left: calc(50% - 1px);
  width: 2px;
  height: 12.5em;
  background: rgba(55, 55, 55, 1);
}

@media screen and (max-width: 736px) {
  body#website.index #intro {
    justify-content: center;
    padding: 2em 0 1em 0;
    margin-bottom: -2em;
    min-height: 0;
  }

  body#website.index #intro:before {
    display: none;
  }

  body#website.index #intro a[href="#about"] {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  body#website.index #intro {
    padding: 3em 2em 2em 2em;
  }
}

body#website.index[data-browser="safari"] #intro {
  transition: opacity 1s ease;
}

body#website.index #about header {
  padding: 5em 4em 5em 4em;
}

body#website.index #about header h2 {
  font-size: 2.6em;
  line-height: 1.25;
  margin: 0.25em 0;
  letter-spacing: -0.025em;
  color: #1a1a1a;
}

body#website.index #about header p {
  margin: 1em 0 2em 0;
  color: #464646;
}

body#website.index #about header p.custom-para {
  margin-bottom: 0.7em;
}

body#website.index #about .carousel {
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background-color: rgba(36, 37, 45, 0.6);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
}

body#website.index #about .carousel .reel {
  display: flex;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  width: 400em;
}

@keyframes carousel-reel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-200em);
  }
}

body#website.index #about .carousel.active .reel {
  animation: carousel-reel 45s linear 0s infinite;
  opacity: 1;
}

body#website.index #about .carousel.active .reel:hover {
  animation-play-state: paused;
}


body#website.index #about .carousel.active.paused .reel {
  animation-play-state: paused;
}

body#website.index #about .carousel a {
  border: 0;
  display: block;
  position: relative;
  width: 100%;
}

body#website.index #about .carousel a:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 75%;
}

body#website.index #about .carousel a img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 980px) {
  body#website.index #about header {
    padding: 4em 4em 4em 4em;
  }

  body#website.index #about header h2 {
    font-size: 2.75em;
  }

  body#website.index #about header p br {
    display: none;
  }

  body#website.index #about .carousel .reel {
    width: 300em;
  }

  @keyframes carousel-reel {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-150em);
    }
  }
}

@media screen and (max-width: 736px) {
  body#website.index #about .carousel .reel {
    width: 250em;
  }

  @keyframes carousel-reel {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-125em);
    }
  }
}

@media screen and (max-width: 480px) {
  body#website.index #about header {
    padding: 3em 2em 3em 2em;
  }

  body#website.index #about header h2 {
    font-size: 1.75em;
    line-height: 1.4;
  }

  body#website.index #about .carousel .reel {
    width: 200em;
  }

  @keyframes carousel-reel {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100em);
    }
  }
}

@media screen and (max-width: 360px) {
  body#website.index #about .carousel .reel {
    width: 150em;
  }

  @keyframes carousel-reel {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-75em);
    }
  }
}

body#website.index #highlights {
  background: none;
}

body#website.index #highlights>section {
  display: flex;
}

body#website.index #highlights>section>* {
  flex-shrink: 0;
  width: 50%;
}

body#website.index #highlights>section:first-child {
  border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
}

body#website.index #highlights>section:first-child> :first-child {
  border-radius: 8px 0 0 0;
  -webkit-border-radius: 8px 0 0 0;
  -moz-border-radius: 8px 0 0 0;
  -ms-border-radius: 8px 0 0 0;
  -o-border-radius: 8px 0 0 0;
}

body#website.index #highlights>section:first-child> :last-child {
  border-radius: 0 8px 0 0;
  -webkit-border-radius: 0 8px 0 0;
  -moz-border-radius: 0 8px 0 0;
  -ms-border-radius: 0 8px 0 0;
  -o-border-radius: 0 8px 0 0;
}

body#website.index #highlights>section:last-child {
  border-radius: 0 0 8px 8px;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
}

body#website.index #highlights>section:last-child> :first-child {
  border-radius: 0 0 0 8px;
  -webkit-border-radius: 0 0 0 8px;
  -moz-border-radius: 0 0 0 8px;
  -ms-border-radius: 0 0 0 8px;
  -o-border-radius: 0 0 0 8px;
}

body#website.index #highlights>section:last-child> :last-child {
  border-radius: 0 0 8px 0;
  -webkit-border-radius: 0 0 8px 0;
  -moz-border-radius: 0 0 8px 0;
  -ms-border-radius: 0 0 8px 0;
  -o-border-radius: 0 0 8px 0;
}

body#website.index #highlights>section:nth-child(2n) {
  flex-direction: row-reverse;
}

body#website.index #highlights>section .pic {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  overflow: hidden;
  /* background-image: url("../images/etc-overlay.png");
  background-color: #ffffff;
  background-size: 256px, cover;
  background-position: center, center;
  background-repeat: repeat, no-repeat; */
}

body#website.index #highlights>section .pic:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 75%;
}

body#website.index #highlights>section .pic .highlight {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
}

.highlight img {
  margin: auto;
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
}

body#website.index #highlights>section .pic .highlight.played {
  cursor: pointer;
}

body#website.index #highlights>section .content {
  padding: 4em 4em 2em 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(55, 55, 55, 1);
}

body#website.index #highlights>section .content>* {
  width: 100%;
  color: #ffffff;
}

body#website.index #highlights>section .content>p {
  color: #bdbdbd;
}

@media screen and (max-width: 980px) {
  body#website.index #highlights {
    max-width: 32em;
    background: none;
  }

  body#website.index #highlights>section {
    display: block;
    position: relative;
    margin-top: 2.5em;
  }

  body#website.index #highlights>section>* {
    width: 100%;
  }

  body#website.index #highlights>section:last-child:after {
    display: none;
  }

  body#website.index #highlights>section:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -2.5em;
    left: calc(50% - 1px);
    width: 2px;
    height: 2.5em;
    background: rgba(55, 55, 55, 1);
  }

  body#website.index #highlights>section .pic {
    border-radius: 8px 8px 0 0 !important;
    -webkit-border-radius: 8px 8px 0 0 !important;
    -moz-border-radius: 8px 8px 0 0 !important;
    -ms-border-radius: 8px 8px 0 0 !important;
    -o-border-radius: 8px 8px 0 0 !important;
  }

  body#website.index #highlights>section .content {
    border-radius: 0 0 8px 8px !important;
    -webkit-border-radius: 0 0 8px 8px !important;
    -moz-border-radius: 0 0 8px 8px !important;
    -ms-border-radius: 0 0 8px 8px !important;
    -o-border-radius: 0 0 8px 8px !important;
  }
}

@media screen and (max-width: 480px) {
  body#website.index #highlights>section .content {
    padding: 3em 2em 1em 2em;
  }
}

body#website.index #pro header {
  padding: 6em 4em 6em 4em;
}

body#website.index #pro .content {
  padding: 3em 4em;
  background-color: rgba(55, 55, 55, 1);
  border-radius: 0 0 8px 8px;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
}

body#website #pro .content h2 {
  color: #fff;
  margin: 0 0 1.5em 0;
}

body#website.index #pro .pro-cta {
  border-top: solid 2px rgba(255, 255, 255, 0.075);
  margin-top: 6em;
  padding-top: 4em;
}

body#website.index #pro .pro-cta strong {
  color: #ffffff;
}

body#website.index #pro .pro-cta p {
  color: #ffffff;
}

body#website.index #pro .pro-features {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

body#website.index #pro .pro-features li {
  flex-shrink: 0;
  width: 50%;
  text-align: left;
  margin-bottom: 3em;
  padding: 0 1.5em 0 4.5em;
  position: relative;
}

body#website.index #pro .pro-features li:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='648' height='552' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%23bdbdbd' /%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1em;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1);
  display: block;
  width: 2.1em;
  height: 2.1em;
  border-radius: 2.1em;
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0.5em;
  -webkit-border-radius: 2.1em;
  -moz-border-radius: 2.1em;
  -ms-border-radius: 2.1em;
  -o-border-radius: 2.1em;
}

.subscribe-success-error-wrap div {
  opacity: 1;
}

.subscribe-success-error-wrap div label {
  text-align: left;
  margin-top: 5px;
  font-weight: 400;
  display: block;
  font-size: 16px;
  padding: 0;
}

.subscribe-success-error-wrap .subscribe_errors label {
  color: red;
}

.subscribe-success-error-wrap .subscribe_success label {
  color: green;
}

@media screen and (max-width: 736px) {
  body#website.index #pro .pro-features li:before {
    width: 1.5em;
    height: 1.5em;
    margin-top: 1px;
    background-size: 0.7em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 1);
  }
}

body#website.index #pro .pro-features li p {
  margin-bottom: 0;
  color: #bdbdbd;
}

body#website.index #pro .pro-features li:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

@media screen and (max-width: 980px) {
  body#website #pro .content h2 {
    margin: 0 0 1.3em 0;
  }

  body#website.index #pro header {
    padding: 5em 4em;
  }

  body#website.index #pro .content {
    padding: 3em 4em 3em 4em;
  }

  body#website.index #pro .pro-cta {
    margin-top: 4em;
    padding-top: 4em;
  }

  body#website.index #pro .pro-features {
    display: block;
  }

  body#website.index #pro .pro-features li {
    padding-right: 0;
    width: 100%;
  }

  /*body#website.index #pro .pro-features li:before {
      top: -0.5em;
    }*/
  body#website.index #pro .pro-features li:nth-last-child(-n + 2) {
    margin-bottom: 2em;
  }

  body#website.index #pro .pro-features li:last-child {
    margin-bottom: 0;
  }

  body#website.index #about header p.custom-para {
    font-size: 1em;
  }

  body#website.index #about header p {
    margin: 1em 0 1.5em 0;
  }
}

@media screen and (max-width: 736px) {
  body#website.index #pro .pro-features li {
    padding-left: 3.25em;
    margin-bottom: 2em;
  }

  /*body#website.index #pro .pro-features li:before {
      top: -0.175em;
    }*/
}

@media screen and (max-width: 480px) {
  body#website.index #pro header {
    padding: 3em 2em 3em 2em;
  }

  body#website.index #pro header br {
    display: none;
  }

  body#website.index #pro .content {
    padding: 3em 2em 3em 2em;
  }

  body#website.index #pro .pro-cta {
    margin-top: 2em;
    padding-top: 2em;
  }

  body#website #pro .content h2 {
    margin: 0 0 0.8em 0;
  }
}

body#website.index #cta {
  padding: 4em 4em 2em 4em;
  max-width: 32em;
}

@media screen and (max-width: 480px) {
  body#website.index #cta {
    padding: 2.5em 2em 0.1em 2em;
    max-width: 20.8em;
  }

  body#website.index #cta p {
    padding: 0 2em;
    margin-bottom: 1.5em;
  }
}

body#website.index #footer {
  color: rgba(255, 255, 255, 0.3);
  margin: 8em 0 4em 0;
  padding: 0 2em;
  background: none;
}

body#website.index #footer a {
  color: #373737;
}

body#website.index #footer a:hover {
  color: #008cff;
}

body#website.index #footer .copyright {
  color: #646464;
}

@media screen and (max-width: 736px) {
  body#website.index #footer {
    margin: 2em 0 2em 0;
  }
}

@keyframes highlight-simple {
  20% {
    transform: translateX(-50%);
  }

  25% {
    transform: translateX(-50%);
  }

  45% {
    transform: translateX(-50%) translateY(-50%);
  }

  50% {
    transform: translateX(-50%) translateY(-50%);
  }

  70% {
    transform: translateX(0) translateY(-50%);
  }

  75% {
    transform: translateX(0) translateY(-50%);
  }
}

body#website.index .highlight.simple .templates {
  display: flex;
  flex-wrap: wrap;
  width: 200%;
}

body#website.index .highlight.simple .templates .template {
  display: block;
  width: 50%;
  background-size: cover;
}

body#website.index .highlight.simple .templates .template:before {
  content: "";
  display: block;
  padding-top: 75%;
}

body#website.index .highlight.simple .templates .template.n1 {
  background-image: url("../images/landing-template-1.jpg");
}

body#website.index .highlight.simple .templates .template.n2 {
  background-image: url("../images/landing-template-2.jpg");
}

body#website.index .highlight.simple .templates .template.n3 {
  background-image: url("../images/landing-template-3.jpg");
}

body#website.index .highlight.simple .templates .template.n4 {
  background-image: url("../images/landing-template-4.jpg");
}

body#website.index .highlight.simple.active .templates {
  animation: highlight-simple 5s;
}

@keyframes highlight-responsive-phone-screen-image {
  0% {
    opacity: 1;
    background-image: url("../images/landing-site-3-mobile.jpg");
  }

  10% {
    opacity: 0;
    background-image: url("../images/landing-site-3-mobile.jpg");
  }

  22% {
    opacity: 0;
    background-image: url("../images/landing-site-3.jpg");
  }

  32% {
    opacity: 1;
    background-image: url("../images/landing-site-3.jpg");
  }

  70% {
    opacity: 1;
    background-image: url("../images/landing-site-3.jpg");
  }

  80% {
    opacity: 0;
    background-image: url("../images/landing-site-3.jpg");
  }

  90% {
    opacity: 0;
    background-image: url("../images/landing-site-3-mobile.jpg");
  }

  100% {
    opacity: 1;
    background-image: url("../images/landing-site-3-mobile.jpg");
  }
}

@keyframes highlight-responsive-phone {
  10% {
    margin-top: -0.25em;
    top: 15%;
    left: 35%;
    width: 30%;
    height: 70%;
  }

  20% {
    margin-top: 0;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
  }

  80% {
    margin-top: 0;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
  }

  90% {
    margin-top: -0.25em;
    top: 15%;
    left: 35%;
    width: 30%;
    height: 70%;
  }
}

@keyframes highlight-responsive-phone-trim {
  10% {
    opacity: 1;
  }

  20% {
    opacity: 0;
  }

  80% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }
}

body#website.index .highlight.responsive .phone {
  position: absolute;
  background: #fff;
  margin-top: -0.25em;
  top: 15%;
  left: 35%;
  width: 30%;
  height: 70%;
  box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
}

body#website.index .highlight.responsive .phone:before,
body#website.index .highlight.responsive .phone:after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  background: #fff;
}

body#website.index .highlight.responsive .phone:before {
  height: 1.5em;
  top: -1.5em;
  border-radius: 0.5em 0.5em 0 0;
  -webkit-border-radius: 0.5em 0.5em 0 0;
  -moz-border-radius: 0.5em 0.5em 0 0;
  -ms-border-radius: 0.5em 0.5em 0 0;
  -o-border-radius: 0.5em 0.5em 0 0;
}

body#website.index .highlight.responsive .phone:after {
  height: 2em;
  bottom: -2em;
  border-radius: 0 0 0.5em 0.5em;
  box-shadow: 0 -1px 0 0 rgba(5, 0, 8, 0.1);
  -webkit-border-radius: 0 0 0.5em 0.5em;
  -moz-border-radius: 0 0 0.5em 0.5em;
  -ms-border-radius: 0 0 0.5em 0.5em;
  -o-border-radius: 0 0 0.5em 0.5em;
}

/* body#website.index .highlight.responsive .phone .screen {
  background-image: url("../images/etc-overlay.png"),
    linear-gradient(45deg, #718dcd 0%, #b993b7 100%);
  background-size: 256px, cover;
  background-position: center, center;
  background-repeat: repeat, no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */

body#website.index .highlight.responsive .phone .screen:before,
body#website.index .highlight.responsive .phone .screen:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  background: rgba(5, 0, 8, 0.1);
}

body#website.index .highlight.responsive .phone .screen:before {
  width: 2em;
  height: 0.25em;
  border-radius: 0.25em;
  top: 0;
  margin-left: -1em;
  margin-top: -0.775em;
  -webkit-border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -ms-border-radius: 0.25em;
  -o-border-radius: 0.25em;
}

body#website.index .highlight.responsive .phone .screen:after {
  width: 1.25em;
  height: 1.25em;
  border-radius: 1.25em;
  top: 100%;
  margin-left: -0.625em;
  margin-top: 0.375em;
  -webkit-border-radius: 1.25em;
  -moz-border-radius: 1.25em;
  -ms-border-radius: 1.25em;
  -o-border-radius: 1.25em;
}

body#website.index .highlight.responsive .phone .screen .image {
  background-image: url("../images/landing-site-3-mobile.jpg");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body#website.index .highlight.responsive.active .phone {
  animation: highlight-responsive-phone 5s;
}

body#website.index .highlight.responsive.active .phone:before,
body#website.index .highlight.responsive.active .phone:after {
  animation: highlight-responsive-phone-trim 5s;
}

body#website.index .highlight.responsive.active .phone .screen:before,
body#website.index .highlight.responsive.active .phone .screen:after {
  animation: highlight-responsive-phone-trim 5s;
}

body#website.index .highlight.responsive.active .phone .screen .image {
  animation: highlight-responsive-phone-screen-image 5s;
}

@media screen and (max-width: 1280px) {
  body#website.index .highlight.responsive .phone:before {
    height: 1em;
    top: -1em;
  }

  body#website.index .highlight.responsive .phone:after {
    height: 1.5em;
    bottom: -1.5em;
  }

  body#website.index .highlight.responsive .phone .screen:before {
    margin-top: -0.575em;
    width: 1.5em;
    margin-left: -0.75em;
  }

  body#website.index .highlight.responsive .phone .screen:after {
    width: 1em;
    height: 1em;
    margin-left: -0.5em;
    border-radius: 1em;
    margin-top: 0.25em;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    -ms-border-radius: 1em;
    -o-border-radius: 1em;
  }
}

@keyframes highlight-free-site-n1 {
  0% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-1.jpg");
  }

  10% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-1.jpg");
  }

  11% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-2.jpg");
  }

  21% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-2.jpg");
  }

  40% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-2.jpg");
  }

  50% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-2.jpg");
  }

  51% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-3.jpg");
  }

  61% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-3.jpg");
  }

  80% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-3.jpg");
  }

  90% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-3.jpg");
  }

  91% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-1.jpg");
  }

  100% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-1.jpg");
  }
}

@keyframes highlight-free-site-n2 {
  0% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-2.jpg");
  }

  10% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-2.jpg");
  }

  11% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-3.jpg");
  }

  21% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-3.jpg");
  }

  40% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-3.jpg");
  }

  50% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-3.jpg");
  }

  51% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-4.jpg");
  }

  61% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-4.jpg");
  }

  80% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-4.jpg");
  }

  90% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-4.jpg");
  }

  91% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-2.jpg");
  }

  100% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-2.jpg");
  }
}

@keyframes highlight-free-site-n3 {
  0% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-3.jpg");
  }

  10% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-3.jpg");
  }

  11% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-4.jpg");
  }

  21% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-4.jpg");
  }

  40% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-4.jpg");
  }

  50% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-4.jpg");
  }

  51% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-5.jpg");
  }

  61% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-5.jpg");
  }

  80% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-5.jpg");
  }

  90% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-5.jpg");
  }

  91% {
    transform: translateX(1em);
    opacity: 0;
    background-image: url("../images/landing-site-3.jpg");
  }

  100% {
    transform: translateX(0);
    opacity: 1;
    background-image: url("../images/landing-site-3.jpg");
  }
}

body#website.index .highlight.free .site {
  display: block;
  width: 45%;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0.5em 1em 0 rgba(0, 0, 0, 0.1);
  background-size: cover;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

body#website.index .highlight.free .site:before {
  content: "";
  display: block;
  padding-top: 75%;
}

body#website.index .highlight.free .site.n1 {
  margin-top: 6%;
  margin-left: 6%;
  background-image: url("../images/landing-site-1.jpg");
}

body#website.index .highlight.free .site.n2 {
  margin-top: -19%;
  margin-left: 29%;
  background-image: url("../images/landing-site-2.jpg");
}

body#website.index .highlight.free .site.n3 {
  margin-top: -19%;
  margin-left: 49%;
  background-image: url("../images/landing-site-3.jpg");
}

body#website.index .highlight.free.active .site.n1 {
  animation: highlight-free-site-n1 6s ease 0.15s forwards;
}

body#website.index .highlight.free.active .site.n2 {
  animation: highlight-free-site-n2 6s ease 0.075s forwards;
}

body#website.index .highlight.free.active .site.n3 {
  animation: highlight-free-site-n3 6s ease 0s forwards;
}

body#website.index.is-blurred:after {
  filter: blur(1em);
}

body#website.index.is-loading:after {
  opacity: 0;
}

body#website.index.is-loading #intro {
  transform: translateY(0.5em);
  opacity: 0;
}

body#website.index.is-loading #intro a[href="#about"] {
  transform: translateY(5em);
  opacity: 0;
}

@media screen and (max-width: 480px) {
  body#website.index.is-loading>.inner>section {
    transform: translateY(0.5em);
    opacity: 0;
  }
}

body#website.pro {
  text-align: center;
  cursor: default;
}

body#website.pro>.inner {
  width: calc(100% - 8em);
  max-width: 64em;
  margin-left: auto;
  margin-right: auto;
  padding: 8em 0;
}

body#website.pro>.inner>section {
  border-radius: 8px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8em;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

body#website.pro>.inner>section> :last-child {
  margin-bottom: 0;
}

body#website.pro>.inner>section>header {
  margin: 0 0 5em 0;
}

body#website.pro>.inner>section>header> :last-child {
  margin-bottom: 0;
}

body#website.pro>.inner>section h1 {
  font-size: 3.5em;
  margin-bottom: 0.25em;
  letter-spacing: -0.025em;
}

body#website.pro>.inner>section h2 {
  font-size: 2.125em;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em 0;
}

body#website.pro>.inner>section h3 {
  font-size: 1.5em;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em 0;
}

body#website.pro>.inner>section:last-child {
  margin-bottom: 0;
}

body#website.pro>.inner>section.alt {
  max-width: 40em;
  border: solid 2px rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  padding: 4em;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

body#website.pro>.inner>section.or:before {
  content: "OR";
  position: absolute;
  top: -4.5em;
  left: calc(50% - 1.5em);
  width: 3em;
  height: 1em;
  line-height: 1em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  background: #24252d;
  z-index: 1;
}

body#website.pro>.inner>section.or:after {
  content: "";
  position: absolute;
  top: calc(-4em - 1px);
  left: calc(50% - 4em);
  width: 8em;
  height: 2px;
  background: rgba(255, 255, 255, 0.075);
}

@media screen and (max-width: 1680px) {
  body#website.pro>.inner {
    padding: 6em 0;
  }

  body#website.pro>.inner>section {
    margin-bottom: 6em;
  }

  body#website.pro>.inner>section>header {
    margin: 0 0 4em 0;
  }

  body#website.pro>.inner>section.or:before {
    top: -3.5em;
  }

  body#website.pro>.inner>section.or:after {
    top: calc(-3em - 1px);
  }
}

@media screen and (max-width: 980px) {
  body#website.pro>.inner>section>header {
    margin: 0 0 3em 0;
  }

  body#website.pro>.inner>section>header br {
    display: none;
  }

  body#website.pro>.inner>section h1 {
    font-size: 3.5em;
  }

  body#website.pro>.inner>section h3 {
    font-size: 1.25em;
  }

  body#website.pro>.inner>section.alt {
    max-width: 32em;
    padding: 4em 3em;
  }
}

@media screen and (max-width: 736px) {
  body#website.pro>.inner {
    width: calc(100% - 4em);
    padding: 3em 0;
  }

  body#website.pro>.inner>section {
    margin-bottom: 2.5em;
  }

  body#website.pro>.inner>section>header {
    margin: 0 0 2em 0;
    padding: 0 2em;
  }

  body#website.pro>.inner>section>header br {
    display: none;
  }

  body#website.pro>.inner>section h1 {
    font-size: 2.125em;
    line-height: 1.25;
  }

  body#website.pro>.inner>section h2 {
    font-size: 1.75em;
    line-height: 1.5;
  }

  body#website.pro>.inner>section h3 {
    font-size: 1em;
  }

  body#website.pro>.inner>section:after {
    bottom: -2.5em;
    height: 2.5em;
  }

  body#website.pro>.inner>section.or {
    margin-top: 4em;
  }

  body#website.pro>.inner>section.or:before {
    top: -2.5em;
  }

  body#website.pro>.inner>section.or:after {
    top: calc(-2em - 1px);
  }
}

@media screen and (max-width: 480px) {
  body#website.pro>.inner {
    width: calc(100% - 1.5em);
  }

  body#website.pro>.inner>section.alt {
    padding: 2.5em 2em 2em 2em;
    max-width: 20.8em;
  }
}

body#website.pro .features {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

body#website.pro .features>section {
  background: rgba(71, 73, 88, 0.475);
}

body#website.pro .features>section.minor {
  width: 50%;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.075);
  border-top-width: 1px;
  border-left-width: 1px;
  padding: 6em 5em 4em 5em;
}

body#website.pro .features>section.minor h2 {
  font-size: 1.5em;
  line-height: 1.6;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em 0;
}

body#website.pro .features>section.minor:nth-child(2n-1) {
  border-left-width: 0;
}

body#website.pro .features>section.minor:nth-last-child(1) {
  border-bottom-right-radius: 6px;
}

body#website.pro .features>section.minor:nth-last-child(2) {
  border-bottom-left-radius: 6px;
}

body#website.pro .features>section.minor:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvgxmlns='http://www.w3.org/2000/svg' width='648' height='552' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2333ada9' /%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.5em;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.075);
  display: block;
  width: 3em;
  height: 3em;
  border-radius: 3em;
  content: "";
  margin: 0 auto 1.5em auto;
  -webkit-border-radius: 3em;
  -moz-border-radius: 3em;
  -ms-border-radius: 3em;
  -o-border-radius: 3em;
}

body#website.pro .features>section.major {
  display: flex;
  width: 100%;
}

body#website.pro .features>section.major>* {
  flex-shrink: 0;
  width: 50%;
}

body#website.pro .features>section.major:first-child {
  border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  -o-border-radius: 8px 8px 0 0;
}

body#website.pro .features>section.major:first-child> :first-child {
  border-radius: 8px 0 0 0;
  -webkit-border-radius: 8px 0 0 0;
  -moz-border-radius: 8px 0 0 0;
  -ms-border-radius: 8px 0 0 0;
  -o-border-radius: 8px 0 0 0;
}

body#website.pro .features>section.major:first-child> :last-child {
  border-radius: 0 8px 0 0;
  -webkit-border-radius: 0 8px 0 0;
  -moz-border-radius: 0 8px 0 0;
  -ms-border-radius: 0 8px 0 0;
  -o-border-radius: 0 8px 0 0;
}

body#website.pro .features>section.major:last-child {
  border-radius: 0 0 8px 8px;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  -o-border-radius: 0 0 8px 8px;
}

body#website.pro .features>section.major:last-child> :first-child {
  border-radius: 0 0 0 8px;
  -webkit-border-radius: 0 0 0 8px;
  -moz-border-radius: 0 0 0 8px;
  -ms-border-radius: 0 0 0 8px;
  -o-border-radius: 0 0 0 8px;
}

body#website.pro .features>section.major:last-child> :last-child {
  border-radius: 0 0 8px 0;
  -webkit-border-radius: 0 0 8px 0;
  -moz-border-radius: 0 0 8px 0;
  -ms-border-radius: 0 0 8px 0;
  -o-border-radius: 0 0 8px 0;
}

body#website.pro .features>section.major:nth-child(2n) {
  flex-direction: row-reverse;
}

/* body#website.pro .features>section.major .pic {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  position: relative;
  overflow: hidden;
  background-image: url("../images/etc-overlay.png"),
    linear-gradient(45deg, #415d9d 0%, #896387 100%);
  background-size: 256px, cover;
  background-position: center, center;
  background-repeat: repeat, no-repeat;
} */

body#website.pro .features>section.major .pic img {
  display: block;
  width: 100%;
}

body#website.pro .features>section.major .content {
  padding: 4em 4em 2em 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body#website.pro .features>section.major .content>* {
  width: 100%;
}

body#website.pro .features>section.major .content:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvgxmlns='http://www.w3.org/2000/svg' width='648' height='552' viewBox='0 0 648 552'%3E%3Cpath d='M225.3,517.7L2.1,293.1l68.1-67.7L226,382.3L578.1,35.6l67.4,68.4L225.3,517.7z' fill='%2333ada9' /%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.5em;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.075);
  display: block;
  width: 3em;
  height: 3em;
  border-radius: 3em;
  content: "";
  margin: 0 auto 1.5em auto;
  -webkit-border-radius: 3em;
  -moz-border-radius: 3em;
  -ms-border-radius: 3em;
  -o-border-radius: 3em;
}

@media screen and (max-width: 1280px) {
  body#website.pro .features>section.minor {
    padding: 4em 4em 2em 4em;
  }
}

@media screen and (max-width: 980px) {
  #subscribe-form .form-control {
    width: 75%;
  }

  body#website.pro .features {
    max-width: 32em;
  }

  body#website.pro .features>section.major {
    display: block;
    position: relative;
    margin-top: 2.5em;
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
    -o-border-radius: 8px !important;
  }

  body#website.pro .features>section.major>* {
    width: 100%;
  }

  body#website.pro .features>section.major:first-child {
    margin-top: 0;
  }

  body#website.pro .features>section.major:last-child:after {
    display: none;
  }

  body#website.pro .features>section.major:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -2.5em;
    left: calc(50% - 1px);
    width: 2px;
    height: 2.5em;
    background: rgba(255, 255, 255, 0.075);
  }

  body#website.pro .features>section.major .pic {
    border-radius: 8px 8px 0 0 !important;
    -webkit-border-radius: 8px 8px 0 0 !important;
    -moz-border-radius: 8px 8px 0 0 !important;
    -ms-border-radius: 8px 8px 0 0 !important;
    -o-border-radius: 8px 8px 0 0 !important;
  }

  body#website.pro .features>section.major .content {
    border-radius: 0 0 8px 8px !important;
    -webkit-border-radius: 0 0 8px 8px !important;
    -moz-border-radius: 0 0 8px 8px !important;
    -ms-border-radius: 0 0 8px 8px !important;
    -o-border-radius: 0 0 8px 8px !important;
  }

  body#website.pro .features>section.minor {
    display: block;
    position: relative;
    width: 100%;
    border-left: 0;
  }

  body#website.pro .features>section.minor>* {
    width: 100%;
  }

  body#website.pro .features>section.minor:nth-last-child(1) {
    border-radius: 0 0 8px 8px !important;
    -webkit-border-radius: 0 0 8px 8px !important;
    -moz-border-radius: 0 0 8px 8px !important;
    -ms-border-radius: 0 0 8px 8px !important;
    -o-border-radius: 0 0 8px 8px !important;
  }

  body#website.pro .features>section.minor:nth-last-child(2) {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
  }

  body#website.pro .features>section.major+.minor {
    margin-top: 2.5em;
    border-top: 0;
    border-radius: 8px 8px 0 0 !important;
    -webkit-border-radius: 8px 8px 0 0 !important;
    -moz-border-radius: 8px 8px 0 0 !important;
    -ms-border-radius: 8px 8px 0 0 !important;
    -o-border-radius: 8px 8px 0 0 !important;
  }

  .form-control {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {


  .form-control .btn {
    padding: 12px 35px;
  }
}

@media screen and (max-width: 480px) {
  body#website.pro .features>section.minor {
    padding: 3em 2em 1em 2em;
  }

  body#website.pro .features>section.major .content {
    padding: 3em 2em 1em 2em;
  }

  #subscribe-form .form-control {
    margin-top: -10px;
    width: 100%;
  }

  #subscribe-form .form-control .input {
    display: block;
    height: 42px;
    padding: 12px 25px 12px 15px;
    width: 100%;
  }

  #subscribe-form .form-control .btn {
    display: inline-block;
    padding: 18px;
    height: 42px;
  }
}



/* ==========================
        Vivek Custom CSS
  =============================*/
.content h1.logo img {
  width: 224px;
}

.home-content p {
  font-size: 20px;
  line-height: 30px;
  color: #404040;
}

.button.custom-login {
  /*font-size: 22px;
  */
  color: #373737;
  background-color: #ffffff;
  border-radius: 8px;
  border: 2px solid #c6c6c6;
  line-height: 3em;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

ul.actions.stacked li a {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 330px;
}

#pro p {
  margin-bottom: 1em;
}

body#website.index>.inner>section#pro h3.wishlist-heading {
  font-size: 1.2em;
  color: #1a1a1a;
  margin-bottom: 1em;
}

form#subscribe-form {
  margin-bottom: 0;
}

#subscribe_email-error.error {
  color: red;
  text-align: left;
  margin-top: 5px;
  font-weight: 400;
  display: block;
  font-size: 16px;
}