@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,100italic,300italic");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

.headline-effect {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5em;
  color: #f9c851; /* Gold shade */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -webkit-text-size-adjust: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* Basic */

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html,
body {
  background: #1c1d26;
}

body.is-preload .preloader *,
body.is-preload .preloader *:before,
body.is-preload .preloader *:after {
  display: none !important;
  -moz-animation: initial !important;
  -webkit-animation: initial !important;
  -ms-animation: initial !important;
  animation: initial !important;
  -moz-transition: initial !important;
  -webkit-transition: initial !important;
  -ms-transition: initial !important;
  transition: initial !important;
}

body,
input,
select,
textarea {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Roboto", Helvetica, sans-serif;
  font-size: 15pt;
  font-weight: 100;
  line-height: 1.75em;
}

a {
  -moz-transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border-bottom: dotted 1px;
  color: #22aaff;
  text-decoration: none;
}

a:hover {
  color: #21e6c1 !important;
  border-bottom-color: transparent;
}

strong,
b {
  color: #ffffff;
  font-weight: 300;
}

em,
i {
  font-style: italic;
}

p {
  margin: 0 0 2em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #22aaff;
  font-weight: 700;
  line-height: 1em;
  margin: 0 0 1em 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  border: 0;
}

h2 {
  font-size: 2em;
  line-height: 1.5em;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.35em;
  line-height: 1.5em;
}

h4 {
  font-size: 1.1em;
  line-height: 1.5em;
}

h5 {
  font-size: 0.9em;
  line-height: 1.5em;
}

h6 {
  font-size: 0.7em;
  line-height: 1.5em;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  font-size: 0.8em;
  position: relative;
  top: -0.5em;
}

hr {
  border: 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  margin: 3em 0;
}

hr.major {
  margin: 4em 0;
}

blockquote {
  border-left: solid 4px rgba(255, 255, 255, 0.3);
  font-style: italic;
  margin: 0 0 2em 0;
  padding: 0.5em 0 0.5em 2em;
}

code {
  background: rgba(255, 255, 255, 0.075);
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  margin: 0 0.25em;
  padding: 0.25em 0.65em;
}

pre {
  -webkit-overflow-scrolling: touch;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  margin: 0 0 2em 0;
}

pre code {
  display: block;
  line-height: 1.75em;
  padding: 1em 1.5em;
  overflow-x: auto;
}

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

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

.align-right {
  text-align: right;
}

/* Loader */

@-moz-keyframes spinner-show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes spinner-show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes spinner-show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes spinner-show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes spinner-hide {
  0% {
    color: rgba(255, 255, 255, 0.15);
    z-index: 100001;
    -moz-transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }

  99% {
    color: #1c1d26;
    z-index: 100001;
    -moz-transform: scale(0.5) rotate(360deg);
    -webkit-transform: scale(0.5) rotate(360deg);
    -ms-transform: scale(0.5) rotate(360deg);
    transform: scale(0.5) rotate(360deg);
  }

  100% {
    color: #1c1d26;
    z-index: -1;
    -moz-transform: scale(0.5) rotate(360deg);
    -webkit-transform: scale(0.5) rotate(360deg);
    -ms-transform: scale(0.5) rotate(360deg);
    transform: scale(0.5) rotate(360deg);
  }
}

@-webkit-keyframes spinner-hide {
  0% {
    color: rgba(255, 255, 255, 0.15);
    z-index: 100001;
    -moz-transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }

  99% {
    color: #1c1d26;
    z-index: 100001;
    -moz-transform: scale(0.5) rotate(360deg);
    -webkit-transform: scale(0.5) rotate(360deg);
    -ms-transform: scale(0.5) rotate(360deg);
    transform: scale(0.5) rotate(360deg);
  }

  100% {
    color: #1c1d26;
    z-index: -1;
    -moz-transform: scale(0.5) rotate(360deg);
    -webkit-transform: scale(0.5) rotate(360deg);
    -ms-transform: scale(0.5) rotate(360deg);
    transform: scale(0.5) rotate(360deg);
  }
}

@-ms-keyframes spinner-hide {
  0% {
    color: rgba(255, 255, 255, 0.15);
    z-index: 100001;
    -moz-transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }

  99% {
    color: #1c1d26;
    z-index: 100001;
    -moz-transform: scale(0.5) rotate(360deg);
    -webkit-transform: scale(0.5) rotate(360deg);
    -ms-transform: scale(0.5) rotate(360deg);
    transform: scale(0.5) rotate(360deg);
  }

  100% {
    color: #1c1d26;
    z-index: -1;
    -moz-transform: scale(0.5) rotate(360deg);
    -webkit-transform: scale(0.5) rotate(360deg);
    -ms-transform: scale(0.5) rotate(360deg);
    transform: scale(0.5) rotate(360deg);
  }
}

@keyframes spinner-hide {
  0% {
    color: rgba(255, 255, 255, 0.15);
    z-index: 100001;
    -moz-transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }

  99% {
    color: #1c1d26;
    z-index: 100001;
    -moz-transform: scale(0.5) rotate(360deg);
    -webkit-transform: scale(0.5) rotate(360deg);
    -ms-transform: scale(0.5) rotate(360deg);
    transform: scale(0.5) rotate(360deg);
  }

  100% {
    color: #1c1d26;
    z-index: -1;
    -moz-transform: scale(0.5) rotate(360deg);
    -webkit-transform: scale(0.5) rotate(360deg);
    -ms-transform: scale(0.5) rotate(360deg);
    transform: scale(0.5) rotate(360deg);
  }
}

@-moz-keyframes spinner-rotate {
  0% {
    -moz-transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }

  100% {
    -moz-transform: scale(1) rotate(360deg);
    -webkit-transform: scale(1) rotate(360deg);
    -ms-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }
}

@-webkit-keyframes spinner-rotate {
  0% {
    -moz-transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }

  100% {
    -moz-transform: scale(1) rotate(360deg);
    -webkit-transform: scale(1) rotate(360deg);
    -ms-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }
}

@-ms-keyframes spinner-rotate {
  0% {
    -moz-transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }

  100% {
    -moz-transform: scale(1) rotate(360deg);
    -webkit-transform: scale(1) rotate(360deg);
    -ms-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }
}

@keyframes spinner-rotate {
  0% {
    -moz-transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
  }

  100% {
    -moz-transform: scale(1) rotate(360deg);
    -webkit-transform: scale(1) rotate(360deg);
    -ms-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
  }
}

@-moz-keyframes overlay-hide {
  0% {
    opacity: 1;
    z-index: 100000;
  }

  15% {
    opacity: 1;
    z-index: 100000;
  }

  99% {
    opacity: 0;
    z-index: 100000;
  }

  100% {
    opacity: 0;
    z-index: -1;
  }
}

@-webkit-keyframes overlay-hide {
  0% {
    opacity: 1;
    z-index: 100000;
  }

  15% {
    opacity: 1;
    z-index: 100000;
  }

  99% {
    opacity: 0;
    z-index: 100000;
  }

  100% {
    opacity: 0;
    z-index: -1;
  }
}

@-ms-keyframes overlay-hide {
  0% {
    opacity: 1;
    z-index: 100000;
  }

  15% {
    opacity: 1;
    z-index: 100000;
  }

  99% {
    opacity: 0;
    z-index: 100000;
  }

  100% {
    opacity: 0;
    z-index: -1;
  }
}

@keyframes overlay-hide {
  0% {
    opacity: 1;
    z-index: 100000;
  }

  15% {
    opacity: 1;
    z-index: 100000;
  }

  99% {
    opacity: 0;
    z-index: 100000;
  }

  100% {
    opacity: 0;
    z-index: -1;
  }
}

body.landing {
  text-decoration: none;
}

body.landing:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

body.landing:before {
  -moz-animation: spinner-show 1.5s 1 0.25s ease forwards,
    spinner-hide 0.25s ease-in-out forwards !important;
  -webkit-animation: spinner-show 1.5s 1 0.25s ease forwards,
    spinner-hide 0.25s ease-in-out forwards !important;
  -ms-animation: spinner-show 1.5s 1 0.25s ease forwards,
    spinner-hide 0.25s ease-in-out forwards !important;
  animation: spinner-show 1.5s 1 0.25s ease forwards,
    spinner-hide 0.25s ease-in-out forwards !important;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  color: rgba(255, 255, 255, 0.15);
  content: "\f1ce";
  cursor: default;
  display: block;
  font-size: 2em;
  height: 2em;
  left: 50%;
  line-height: 2em;
  margin: -1em 0 0 -1em;
  opacity: 0;
  position: fixed;
  text-align: center;
  top: 50%;
  width: 2em;
  z-index: -1;
}

body.landing:after {
  -moz-animation: overlay-hide 1.5s ease-in forwards !important;
  -webkit-animation: overlay-hide 1.5s ease-in forwards !important;
  -ms-animation: overlay-hide 1.5s ease-in forwards !important;
  animation: overlay-hide 1.5s ease-in forwards !important;
  background: #1c1d26;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}

body.landing.is-preload:before {
  -moz-animation: spinner-show 1.5s 1 0.25s ease forwards,
    spinner-rotate 0.75s infinite linear !important;
  -webkit-animation: spinner-show 1.5s 1 0.25s ease forwards,
    spinner-rotate 0.75s infinite linear !important;
  -ms-animation: spinner-show 1.5s 1 0.25s ease forwards,
    spinner-rotate 0.75s infinite linear !important;
  animation: spinner-show 1.5s 1 0.25s ease forwards,
    spinner-rotate 0.75s infinite linear !important;
  z-index: 100001;
}

body.landing.is-preload:after {
  -moz-animation: none !important;
  -webkit-animation: none !important;
  -ms-animation: none !important;
  animation: none !important;
  opacity: 1;
  z-index: 100000;
}

@media (-webkit-min-device-pixel-ratio: 2) {
  body.landing:before {
    line-height: 2.025em;
  }
}

/* Container */

.container {
  margin: 0 auto;
  max-width: calc(100% - 4em);
  width: 70em;
}

.container.xsmall {
  width: 17.5em;
}

.container.small {
  width: 35em;
}

.container.medium {
  width: 52.5em;
}

.container.large {
  width: 87.5em;
}

.container.xlarge {
  width: 105em;
}

.container.max {
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .container {
    width: 90%;
    max-width: 100%;
  }
}

@media screen and (max-width: 980px) {
  .container {
    width: 100% !important;
  }
}

/* Row */

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  align-items: stretch;
}

.row > * {
  box-sizing: border-box;
}

.row.gtr-uniform > * > :last-child {
  margin-bottom: 0;
}

.row.aln-left {
  justify-content: flex-start;
}

.row.aln-center {
  justify-content: center;
}

.row.aln-right {
  justify-content: flex-end;
}

.row.aln-top {
  align-items: flex-start;
}

.row.aln-middle {
  align-items: center;
}

.row.aln-bottom {
  align-items: flex-end;
}

.row > .imp {
  order: -1;
}

.row > .col-1 {
  width: 8.33333%;
}

.row > .off-1 {
  margin-left: 8.33333%;
}

.row > .col-2 {
  width: 16.66667%;
}

.row > .off-2 {
  margin-left: 16.66667%;
}

.row > .col-3 {
  width: 25%;
}

.row > .off-3 {
  margin-left: 25%;
}

.row > .col-4 {
  width: 33.33333%;
}

.row > .off-4 {
  margin-left: 33.33333%;
}

.row > .col-5 {
  width: 41.66667%;
}

.row > .off-5 {
  margin-left: 41.66667%;
}

.row > .col-6 {
  width: 50%;
}

.row > .off-6 {
  margin-left: 50%;
}

.row > .col-7 {
  width: 58.33333%;
}

.row > .off-7 {
  margin-left: 58.33333%;
}

.row > .col-8 {
  width: 66.66667%;
}

.row > .off-8 {
  margin-left: 66.66667%;
}

.row > .col-9 {
  width: 75%;
}

.row > .off-9 {
  margin-left: 75%;
}

.row > .col-10 {
  width: 83.33333%;
}

.row > .off-10 {
  margin-left: 83.33333%;
}

.row > .col-11 {
  width: 91.66667%;
}

.row > .off-11 {
  margin-left: 91.66667%;
}

.row > .col-12 {
  width: 100%;
}

.row > .off-12 {
  margin-left: 100%;
}

.row.gtr-0 {
  margin-top: 0;
  margin-left: 0em;
}

.row.gtr-0 > * {
  padding: 0 0 0 0em;
}

.row.gtr-0.gtr-uniform {
  margin-top: 0em;
}

.row.gtr-0.gtr-uniform > * {
  padding-top: 0em;
}

.row.gtr-25 {
  margin-top: 0;
  margin-left: -0.625em;
}

.row.gtr-25 > * {
  padding: 0 0 0 0.625em;
}

.row.gtr-25.gtr-uniform {
  margin-top: -0.625em;
}

.row.gtr-25.gtr-uniform > * {
  padding-top: 0.625em;
}

.row.gtr-50 {
  margin-top: 0;
  margin-left: -1.25em;
}

.row.gtr-50 > * {
  padding: 0 0 0 1.25em;
}

.row.gtr-50.gtr-uniform {
  margin-top: -1.25em;
}

.row.gtr-50.gtr-uniform > * {
  padding-top: 1.25em;
}

.row {
  margin-top: 0;
  margin-left: -2.5em;
}

.row > * {
  padding: 0 0 0 2.5em;
}

.row.gtr-uniform {
  margin-top: -2.5em;
}

.row.gtr-uniform > * {
  padding-top: 2.5em;
}

.row.gtr-150 {
  margin-top: 0;
  margin-left: -3.75em;
}

.row.gtr-150 > * {
  padding: 0 0 0 3.75em;
}

.row.gtr-150.gtr-uniform {
  margin-top: -3.75em;
}

.row.gtr-150.gtr-uniform > * {
  padding-top: 3.75em;
}

.row.gtr-200 {
  margin-top: 0;
  margin-left: -5em;
}

.row.gtr-200 > * {
  padding: 0 0 0 5em;
}

.row.gtr-200.gtr-uniform {
  margin-top: -5em;
}

.row.gtr-200.gtr-uniform > * {
  padding-top: 5em;
}

@media screen and (max-width: 1680px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-xlarge {
    order: -1;
  }

  .row > .col-1-xlarge {
    width: 8.33333%;
  }

  .row > .off-1-xlarge {
    margin-left: 8.33333%;
  }

  .row > .col-2-xlarge {
    width: 16.66667%;
  }

  .row > .off-2-xlarge {
    margin-left: 16.66667%;
  }

  .row > .col-3-xlarge {
    width: 25%;
  }

  .row > .off-3-xlarge {
    margin-left: 25%;
  }

  .row > .col-4-xlarge {
    width: 33.33333%;
  }

  .row > .off-4-xlarge {
    margin-left: 33.33333%;
  }

  .row > .col-5-xlarge {
    width: 41.66667%;
  }

  .row > .off-5-xlarge {
    margin-left: 41.66667%;
  }

  .row > .col-6-xlarge {
    width: 50%;
  }

  .row > .off-6-xlarge {
    margin-left: 50%;
  }

  .row > .col-7-xlarge {
    width: 58.33333%;
  }

  .row > .off-7-xlarge {
    margin-left: 58.33333%;
  }

  .row > .col-8-xlarge {
    width: 66.66667%;
  }

  .row > .off-8-xlarge {
    margin-left: 66.66667%;
  }

  .row > .col-9-xlarge {
    width: 75%;
  }

  .row > .off-9-xlarge {
    margin-left: 75%;
  }

  .row > .col-10-xlarge {
    width: 83.33333%;
  }

  .row > .off-10-xlarge {
    margin-left: 83.33333%;
  }

  .row > .col-11-xlarge {
    width: 91.66667%;
  }

  .row > .off-11-xlarge {
    margin-left: 91.66667%;
  }

  .row > .col-12-xlarge {
    width: 100%;
  }

  .row > .off-12-xlarge {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }

  .row.gtr-0 > * {
    padding: 0 0 0 0em;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0em;
  }

  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.625em;
  }

  .row.gtr-25 > * {
    padding: 0 0 0 0.625em;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -0.625em;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 0.625em;
  }

  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1.25em;
  }

  .row.gtr-50 > * {
    padding: 0 0 0 1.25em;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -1.25em;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 1.25em;
  }

  .row {
    margin-top: 0;
    margin-left: -2.5em;
  }

  .row > * {
    padding: 0 0 0 2.5em;
  }

  .row.gtr-uniform {
    margin-top: -2.5em;
  }

  .row.gtr-uniform > * {
    padding-top: 2.5em;
  }

  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3.75em;
  }

  .row.gtr-150 > * {
    padding: 0 0 0 3.75em;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -3.75em;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 3.75em;
  }

  .row.gtr-200 {
    margin-top: 0;
    margin-left: -5em;
  }

  .row.gtr-200 > * {
    padding: 0 0 0 5em;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -5em;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 5em;
  }
}

@media screen and (max-width: 1280px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-large {
    order: -1;
  }

  .row > .col-1-large {
    width: 8.33333%;
  }

  .row > .off-1-large {
    margin-left: 8.33333%;
  }

  .row > .col-2-large {
    width: 16.66667%;
  }

  .row > .off-2-large {
    margin-left: 16.66667%;
  }

  .row > .col-3-large {
    width: 25%;
  }

  .row > .off-3-large {
    margin-left: 25%;
  }

  .row > .col-4-large {
    width: 33.33333%;
  }

  .row > .off-4-large {
    margin-left: 33.33333%;
  }

  .row > .col-5-large {
    width: 41.66667%;
  }

  .row > .off-5-large {
    margin-left: 41.66667%;
  }

  .row > .col-6-large {
    width: 50%;
  }

  .row > .off-6-large {
    margin-left: 50%;
  }

  .row > .col-7-large {
    width: 58.33333%;
  }

  .row > .off-7-large {
    margin-left: 58.33333%;
  }

  .row > .col-8-large {
    width: 66.66667%;
  }

  .row > .off-8-large {
    margin-left: 66.66667%;
  }

  .row > .col-9-large {
    width: 75%;
  }

  .row > .off-9-large {
    margin-left: 75%;
  }

  .row > .col-10-large {
    width: 83.33333%;
  }

  .row > .off-10-large {
    margin-left: 83.33333%;
  }

  .row > .col-11-large {
    width: 91.66667%;
  }

  .row > .off-11-large {
    margin-left: 91.66667%;
  }

  .row > .col-12-large {
    width: 100%;
  }

  .row > .off-12-large {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }

  .row.gtr-0 > * {
    padding: 0 0 0 0em;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0em;
  }

  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.625em;
  }

  .row.gtr-25 > * {
    padding: 0 0 0 0.625em;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -0.625em;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 0.625em;
  }

  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1.25em;
  }

  .row.gtr-50 > * {
    padding: 0 0 0 1.25em;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -1.25em;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 1.25em;
  }

  .row {
    margin-top: 0;
    margin-left: -2.5em;
  }

  .row > * {
    padding: 0 0 0 2.5em;
  }

  .row.gtr-uniform {
    margin-top: -2.5em;
  }

  .row.gtr-uniform > * {
    padding-top: 2.5em;
  }

  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3.75em;
  }

  .row.gtr-150 > * {
    padding: 0 0 0 3.75em;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -3.75em;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 3.75em;
  }

  .row.gtr-200 {
    margin-top: 0;
    margin-left: -5em;
  }

  .row.gtr-200 > * {
    padding: 0 0 0 5em;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -5em;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 5em;
  }
}

@media screen and (max-width: 980px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-medium {
    order: -1;
  }

  .row > .col-1-medium {
    width: 8.33333%;
  }

  .row > .off-1-medium {
    margin-left: 8.33333%;
  }

  .row > .col-2-medium {
    width: 16.66667%;
  }

  .row > .off-2-medium {
    margin-left: 16.66667%;
  }

  .row > .col-3-medium {
    width: 25%;
  }

  .row > .off-3-medium {
    margin-left: 25%;
  }

  .row > .col-4-medium {
    width: 33.33333%;
  }

  .row > .off-4-medium {
    margin-left: 33.33333%;
  }

  .row > .col-5-medium {
    width: 41.66667%;
  }

  .row > .off-5-medium {
    margin-left: 41.66667%;
  }

  .row > .col-6-medium {
    width: 50%;
  }

  .row > .off-6-medium {
    margin-left: 50%;
  }

  .row > .col-7-medium {
    width: 58.33333%;
  }

  .row > .off-7-medium {
    margin-left: 58.33333%;
  }

  .row > .col-8-medium {
    width: 66.66667%;
  }

  .row > .off-8-medium {
    margin-left: 66.66667%;
  }

  .row > .col-9-medium {
    width: 75%;
  }

  .row > .off-9-medium {
    margin-left: 75%;
  }

  .row > .col-10-medium {
    width: 83.33333%;
  }

  .row > .off-10-medium {
    margin-left: 83.33333%;
  }

  .row > .col-11-medium {
    width: 91.66667%;
  }

  .row > .off-11-medium {
    margin-left: 91.66667%;
  }

  .row > .col-12-medium {
    width: 100%;
  }

  .row > .off-12-medium {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }

  .row.gtr-0 > * {
    padding: 0 0 0 0em;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0em;
  }

  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.625em;
  }

  .row.gtr-25 > * {
    padding: 0 0 0 0.625em;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -0.625em;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 0.625em;
  }

  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1.25em;
  }

  .row.gtr-50 > * {
    padding: 0 0 0 1.25em;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -1.25em;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 1.25em;
  }

  .row {
    margin-top: 0;
    margin-left: -2.5em;
  }

  .row > * {
    padding: 0 0 0 2.5em;
  }

  .row.gtr-uniform {
    margin-top: -2.5em;
  }

  .row.gtr-uniform > * {
    padding-top: 2.5em;
  }

  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3.75em;
  }

  .row.gtr-150 > * {
    padding: 0 0 0 3.75em;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -3.75em;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 3.75em;
  }

  .row.gtr-200 {
    margin-top: 0;
    margin-left: -5em;
  }

  .row.gtr-200 > * {
    padding: 0 0 0 5em;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -5em;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 5em;
  }
}

@media screen and (max-width: 736px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-small {
    order: -1;
  }

  .row > .col-1-small {
    width: 8.33333%;
  }

  .row > .off-1-small {
    margin-left: 8.33333%;
  }

  .row > .col-2-small {
    width: 16.66667%;
  }

  .row > .off-2-small {
    margin-left: 16.66667%;
  }

  .row > .col-3-small {
    width: 25%;
  }

  .row > .off-3-small {
    margin-left: 25%;
  }

  .row > .col-4-small {
    width: 33.33333%;
  }

  .row > .off-4-small {
    margin-left: 33.33333%;
  }

  .row > .col-5-small {
    width: 41.66667%;
  }

  .row > .off-5-small {
    margin-left: 41.66667%;
  }

  .row > .col-6-small {
    width: 50%;
  }

  .row > .off-6-small {
    margin-left: 50%;
  }

  .row > .col-7-small {
    width: 58.33333%;
  }

  .row > .off-7-small {
    margin-left: 58.33333%;
  }

  .row > .col-8-small {
    width: 66.66667%;
  }

  .row > .off-8-small {
    margin-left: 66.66667%;
  }

  .row > .col-9-small {
    width: 75%;
  }

  .row > .off-9-small {
    margin-left: 75%;
  }

  .row > .col-10-small {
    width: 83.33333%;
  }

  .row > .off-10-small {
    margin-left: 83.33333%;
  }

  .row > .col-11-small {
    width: 91.66667%;
  }

  .row > .off-11-small {
    margin-left: 91.66667%;
  }

  .row > .col-12-small {
    width: 100%;
  }

  .row > .off-12-small {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }

  .row.gtr-0 > * {
    padding: 0 0 0 0em;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0em;
  }

  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.625em;
  }

  .row.gtr-25 > * {
    padding: 0 0 0 0.625em;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -0.625em;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 0.625em;
  }

  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1.25em;
  }

  .row.gtr-50 > * {
    padding: 0 0 0 1.25em;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -1.25em;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 1.25em;
  }

  .row {
    margin-top: 0;
    margin-left: -2.5em;
  }

  .row > * {
    padding: 0 0 0 2.5em;
  }

  .row.gtr-uniform {
    margin-top: -2.5em;
  }

  .row.gtr-uniform > * {
    padding-top: 2.5em;
  }

  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3.75em;
  }

  .row.gtr-150 > * {
    padding: 0 0 0 3.75em;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -3.75em;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 3.75em;
  }

  .row.gtr-200 {
    margin-top: 0;
    margin-left: -5em;
  }

  .row.gtr-200 > * {
    padding: 0 0 0 5em;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -5em;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 5em;
  }
}

@media screen and (max-width: 480px) {
  .row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
  }

  .row > * {
    box-sizing: border-box;
  }

  .row.gtr-uniform > * > :last-child {
    margin-bottom: 0;
  }

  .row.aln-left {
    justify-content: flex-start;
  }

  .row.aln-center {
    justify-content: center;
  }

  .row.aln-right {
    justify-content: flex-end;
  }

  .row.aln-top {
    align-items: flex-start;
  }

  .row.aln-middle {
    align-items: center;
  }

  .row.aln-bottom {
    align-items: flex-end;
  }

  .row > .imp-xsmall {
    order: -1;
  }

  .row > .col-1-xsmall {
    width: 8.33333%;
  }

  .row > .off-1-xsmall {
    margin-left: 8.33333%;
  }

  .row > .col-2-xsmall {
    width: 16.66667%;
  }

  .row > .off-2-xsmall {
    margin-left: 16.66667%;
  }

  .row > .col-3-xsmall {
    width: 25%;
  }

  .row > .off-3-xsmall {
    margin-left: 25%;
  }

  .row > .col-4-xsmall {
    width: 33.33333%;
  }

  .row > .off-4-xsmall {
    margin-left: 33.33333%;
  }

  .row > .col-5-xsmall {
    width: 41.66667%;
  }

  .row > .off-5-xsmall {
    margin-left: 41.66667%;
  }

  .row > .col-6-xsmall {
    width: 50%;
  }

  .row > .off-6-xsmall {
    margin-left: 50%;
  }

  .row > .col-7-xsmall {
    width: 58.33333%;
  }

  .row > .off-7-xsmall {
    margin-left: 58.33333%;
  }

  .row > .col-8-xsmall {
    width: 66.66667%;
  }

  .row > .off-8-xsmall {
    margin-left: 66.66667%;
  }

  .row > .col-9-xsmall {
    width: 75%;
  }

  .row > .off-9-xsmall {
    margin-left: 75%;
  }

  .row > .col-10-xsmall {
    width: 83.33333%;
  }

  .row > .off-10-xsmall {
    margin-left: 83.33333%;
  }

  .row > .col-11-xsmall {
    width: 91.66667%;
  }

  .row > .off-11-xsmall {
    margin-left: 91.66667%;
  }

  .row > .col-12-xsmall {
    width: 100%;
  }

  .row > .off-12-xsmall {
    margin-left: 100%;
  }

  .row.gtr-0 {
    margin-top: 0;
    margin-left: 0em;
  }

  .row.gtr-0 > * {
    padding: 0 0 0 0em;
  }

  .row.gtr-0.gtr-uniform {
    margin-top: 0em;
  }

  .row.gtr-0.gtr-uniform > * {
    padding-top: 0em;
  }

  .row.gtr-25 {
    margin-top: 0;
    margin-left: -0.625em;
  }

  .row.gtr-25 > * {
    padding: 0 0 0 0.625em;
  }

  .row.gtr-25.gtr-uniform {
    margin-top: -0.625em;
  }

  .row.gtr-25.gtr-uniform > * {
    padding-top: 0.625em;
  }

  .row.gtr-50 {
    margin-top: 0;
    margin-left: -1.25em;
  }

  .row.gtr-50 > * {
    padding: 0 0 0 1.25em;
  }

  .row.gtr-50.gtr-uniform {
    margin-top: -1.25em;
  }

  .row.gtr-50.gtr-uniform > * {
    padding-top: 1.25em;
  }

  .row {
    margin-top: 0;
    margin-left: -2.5em;
  }

  .row > * {
    padding: 0 0 0 2.5em;
  }

  .row.gtr-uniform {
    margin-top: -2.5em;
  }

  .row.gtr-uniform > * {
    padding-top: 2.5em;
  }

  .row.gtr-150 {
    margin-top: 0;
    margin-left: -3.75em;
  }

  .row.gtr-150 > * {
    padding: 0 0 0 3.75em;
  }

  .row.gtr-150.gtr-uniform {
    margin-top: -3.75em;
  }

  .row.gtr-150.gtr-uniform > * {
    padding-top: 3.75em;
  }

  .row.gtr-200 {
    margin-top: 0;
    margin-left: -5em;
  }

  .row.gtr-200 > * {
    padding: 0 0 0 5em;
  }

  .row.gtr-200.gtr-uniform {
    margin-top: -5em;
  }

  .row.gtr-200.gtr-uniform > * {
    padding-top: 5em;
  }
}

/* Section/Article */

section.special,
article.special {
  text-align: center;
}

header p {
  color: #ffffff;
  position: relative;
  margin: 0 0 1.5em 0;
}

header h2 + p {
  font-size: 1.25em;
  margin-top: -1em;
  line-height: 1.75em;
}

header h3 + p {
  font-size: 1.1em;
  margin-top: -0.8em;
  line-height: 1.75em;
}

header h4 + p,
header h5 + p,
header h6 + p {
  font-size: 0.9em;
  margin-top: -0.6em;
  line-height: 1.5em;
}

header.major {
  margin: 0 0 4em 0;
  position: relative;
  text-align: center;
}

header.major:after {
  background: #22aaff;
  content: "";
  display: inline-block;
  height: 0.2em;
  max-width: 20em;
  width: 75%;
}

footer.major {
  margin: 4em 0 0 0;
}

/* Form */

form {
  margin: 0 0 2em 0;
}

form.cta {
  max-width: 35em;
  margin-left: auto;
  margin-right: auto;
}

label {
  color: #ffffff;
  display: block;
  font-size: 0.9em;
  font-weight: 300;
  margin: 0 0 1em 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: border-color 0.2s ease-in-out;
  -webkit-transition: border-color 0.2s ease-in-out;
  -ms-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
  background: transparent;
  border-radius: 4px;
  border: solid 1px rgba(255, 255, 255, 0.3);
  color: inherit;
  display: block;
  outline: 0;
  padding: 0 1em;
  text-decoration: none;
  width: 100%;
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
  box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: #22aaff;
}

select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='rgba(255, 255, 255, 0.3)' /%3E%3C/svg%3E");
  background-size: 1.25rem;
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  height: 3em;
  padding-right: 3em;
  text-overflow: ellipsis;
}

select option {
  color: #ffffff;
  background: #1c1d26;
}

select:focus::-ms-value {
  background-color: transparent;
}

select::-ms-expand {
  display: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
  height: 3em;
}

textarea {
  padding: 0.75em 1em;
}

input[type="checkbox"],
input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  display: block;
  float: left;
  margin-right: -2em;
  opacity: 0;
  width: 1em;
  z-index: -1;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: inline-block;
  font-size: 1em;
  font-weight: 100;
  padding-left: 2.55em;
  padding-right: 0.75em;
  position: relative;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  border-radius: 4px;
  border: solid 1px rgba(255, 255, 255, 0.3);
  content: "";
  display: inline-block;
  font-size: 0.8em;
  height: 2.25em;
  left: 0;
  line-height: 2.25em;
  position: absolute;
  text-align: center;
  top: 0;
  width: 2.25em;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  content: "\f00c";
}

input[type="checkbox"]:focus + label:before,
input[type="radio"]:focus + label:before {
  border-color: #22aaff;
}

input[type="checkbox"] + label:before {
  border-radius: 4px;
}

input[type="radio"] + label:before {
  border-radius: 100%;
}

::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1;
}

:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1;
}

::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1;
}

/* Box */

.box {
  border-radius: 4px;
  border: solid 1px rgba(255, 255, 255, 0.3);
  margin-bottom: 2em;
  padding: 1.5em;
}

.box > :last-child,
.box > :last-child > :last-child,
.box > :last-child > :last-child > :last-child {
  margin-bottom: 0;
}

.box.alt {
  border: 0;
  border-radius: 0;
  padding: 0;
}

/* Icon */

.icon {
  text-decoration: none;
  border-bottom: none;
  position: relative;
}

.icon:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.icon > .label {
  display: none;
}

.icon:before {
  line-height: inherit;
}

.icon.solid:before {
  font-weight: 900 !important;
}

.icon.brands:before {
  font-family: "Font Awesome 5 Brands" !important;
}

.icon.alt {
  text-decoration: none;
}

.icon.alt:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.icon.alt:before {
  color: #1c1d26 !important;
  text-shadow: 1px 0 0 #ffffff, -1px 0 0 #ffffff, 0 1px 0 #ffffff,
    0 -1px 0 #ffffff;
}

.icon.major {
  background: #272833;
  border-radius: 100%;
  cursor: default;
  display: inline-block;
  height: 6em;
  line-height: 5.65em;
  margin: 0 0 2em 0;
  text-align: center;
  width: 6em;
}

.icon.major:before {
  font-size: 2.25em;
}

.icon.major.alt {
  text-decoration: none;
}

.icon.major.alt:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.icon.major.alt:before {
  color: #272833 !important;
  text-shadow: 1px 0 0 #ffffff, -1px 0 0 #ffffff, 0 1px 0 #ffffff,
    0 -1px 0 #ffffff;
}

/* Image */

.image {
  border-radius: 4px;
  border: 0;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("images/overlay.png");
  width: 100%;
  height: 100%;
  z-index: 1;
}

.image img {
  border-radius: 4px;
  display: block;
}

.image.left {
  float: left;
  margin: 0 1.5em 1em 0;
  top: 0.25em;
}

.image.right {
  float: right;
  margin: 0 0 1em 1.5em;
  top: 0.25em;
}

.image.left,
.image.right {
  max-width: 40%;
}

.image.left img,
.image.right img {
  width: 100%;
}

.image.fit {
  display: block;
  margin: 0 0 2em 0;
  width: 100%;
}

.image.fit img {
  width: 100%;
}

/* List */

ol {
  list-style: decimal;
  margin: 0 0 2em 0;
  padding-left: 1.25em;
}

ol li {
  padding-left: 0.25em;
}

ul {
  list-style: disc;
  margin: 0 0 2em 0;
  padding-left: 1em;
}

ul li {
  padding-left: 0.5em;
}

ul.alt {
  list-style: none;
  padding-left: 0;
}

ul.alt li {
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  padding: 0.5em 0;
}

ul.alt li:first-child {
  border-top: 0;
  padding-top: 0;
}

dl {
  margin: 0 0 2em 0;
}

/* Icons */

ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
}

ul.icons li {
  display: inline-block;
  height: 2.5em;
  line-height: 2.5em;
  padding: 0 0.5em;
}

ul.icons li .icon {
  font-size: 0.8em;
}

ul.icons li .icon:before {
  font-size: 2em;
}

/* Actions */

ul.actions {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  cursor: default;
  list-style: none;
  margin-left: -1em;
  padding-left: 0;
}

ul.actions li {
  padding: 0 0 0 1em;
  vertical-align: middle;
}

ul.actions.special {
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 100%;
  margin-left: 0;
}

ul.actions.special li:first-child {
  padding-left: 0;
}

ul.actions.stacked {
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0;
}

ul.actions.stacked li {
  padding: 1.3em 0 0 0;
}

ul.actions.stacked li:first-child {
  padding-top: 0;
}

ul.actions.fit {
  width: calc(100% + 1em);
}

ul.actions.fit li {
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -moz-flex-shrink: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
  width: 100%;
}

ul.actions.fit li > * {
  width: 100%;
}

ul.actions.fit.stacked {
  width: 100%;
}

@media screen and (max-width: 480px) {
  ul.actions:not(.fixed) {
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    width: 100% !important;
  }

  ul.actions:not(.fixed) li {
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
    padding: 1em 0 0 0;
    text-align: center;
    width: 100%;
  }

  ul.actions:not(.fixed) li > * {
    width: 100%;
  }

  ul.actions:not(.fixed) li:first-child {
    padding-top: 0;
  }

  ul.actions:not(.fixed) li input[type="submit"],
  ul.actions:not(.fixed) li input[type="reset"],
  ul.actions:not(.fixed) li input[type="button"],
  ul.actions:not(.fixed) li button,
  ul.actions:not(.fixed) li .button {
    width: 100%;
  }

  ul.actions:not(.fixed) li input[type="submit"].icon:before,
  ul.actions:not(.fixed) li input[type="reset"].icon:before,
  ul.actions:not(.fixed) li input[type="button"].icon:before,
  ul.actions:not(.fixed) li button.icon:before,
  ul.actions:not(.fixed) li .button.icon:before {
    margin-left: -0.5em;
  }
}

/* Table */

.table-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

table {
  margin: 0 0 2em 0;
  width: 100%;
}

table tbody tr {
  border: solid 1px rgba(255, 255, 255, 0.3);
  border-left: 0;
  border-right: 0;
}

table tbody tr:nth-child(2n + 1) {
  background-color: rgba(255, 255, 255, 0.075);
}

table td {
  padding: 0.75em 0.75em;
}

table th {
  color: #ffffff;
  font-size: 0.9em;
  font-weight: 300;
  padding: 0 0.75em 0.75em 0.75em;
  text-align: left;
}

table thead {
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

table tfoot {
  border-top: solid 1px rgba(255, 255, 255, 0.3);
}

table.alt {
  border-collapse: separate;
}

table.alt tbody tr td {
  border: solid 1px rgba(255, 255, 255, 0.3);
  border-left-width: 0;
  border-top-width: 0;
}

table.alt tbody tr td:first-child {
  border-left-width: 1px;
}

table.alt tbody tr:first-child td {
  border-top-width: 1px;
}

table.alt thead {
  border-bottom: 0;
}

table.alt tfoot {
  border-top: 0;
}

/* Button */

input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
  background-color: transparent;
  border-radius: 4px;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  cursor: pointer;
  display: inline-block;
  font-weight: 300;
  height: 3em;
  line-height: 3em;
  padding: 0 2.25em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

input[type="submit"]:hover,
input[type="submit"]:active,
input[type="reset"]:hover,
input[type="reset"]:active,
input[type="button"]:hover,
input[type="button"]:active,
.button:hover,
.button:active {
  box-shadow: inset 0 0 0 1px #22aaff;
  color: #22aaff !important;
}

input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
.button:active {
  background-color: rgba(228, 76, 101, 0.15);
}

input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
.button.icon:before {
  margin-right: 0.5em;
}

input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
.button.fit {
  width: 100%;
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
.button.small {
  font-size: 0.8em;
}

input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
.button.large {
  font-size: 1.35em;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
.button.primary {
  background-color: #10182a;
  box-shadow: 0 2px 12px #22aaff55;
  color: #ffffff !important;
}

input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
input[type="button"].primary:hover,
.button.primary:hover {
  background-color: #22aaff;
  color: #10182a !important;
}

input[type="submit"].primary:active,
input[type="reset"].primary:active,
input[type="button"].primary:active,
.button.primary:active {
  background-color: #21e6c1;
  color: #10182a !important;
}

input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
.button.disabled,
.button:disabled {
  background-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: none !important;
  color: #ffffff !important;
  cursor: default;
  opacity: 0.25;
}

/* Goto Next */

.goto-next {
  border: 0;
  bottom: 0;
  display: block;
  height: 5em;
  left: 50%;
  margin: 0 0 0 -5em;
  overflow: hidden;
  position: absolute;
  text-indent: 10em;
  white-space: nowrap;
  width: 10em;
  z-index: 1;
}

.goto-next:before {
  background-image: url("images/arrow.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 1.5em;
  left: 50%;
  margin: -0.75em 0 0 -1em;
  position: absolute;
  top: 50%;
  width: 2em;
  z-index: 1;
}

/* Spotlight */

.spotlight {
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.25);
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.spotlight:nth-last-of-type(1) {
  z-index: 1;
}

.spotlight:nth-last-of-type(2) {
  z-index: 2;
}

.spotlight:nth-last-of-type(3) {
  z-index: 3;
}

.spotlight:nth-last-of-type(4) {
  z-index: 4;
}

.spotlight:nth-last-of-type(5) {
  z-index: 5;
}

.spotlight:nth-last-of-type(6) {
  z-index: 6;
}

.spotlight:nth-last-of-type(7) {
  z-index: 7;
}

.spotlight:nth-last-of-type(8) {
  z-index: 8;
}

.spotlight:nth-last-of-type(9) {
  z-index: 9;
}

.spotlight:nth-last-of-type(10) {
  z-index: 10;
}

.spotlight:nth-last-of-type(11) {
  z-index: 11;
}

.spotlight:nth-last-of-type(12) {
  z-index: 12;
}

.spotlight:nth-last-of-type(13) {
  z-index: 13;
}

.spotlight:nth-last-of-type(14) {
  z-index: 14;
}

.spotlight:nth-last-of-type(15) {
  z-index: 15;
}

.spotlight:nth-last-of-type(16) {
  z-index: 16;
}

.spotlight:nth-last-of-type(17) {
  z-index: 17;
}

.spotlight:nth-last-of-type(18) {
  z-index: 18;
}

.spotlight:nth-last-of-type(19) {
  z-index: 19;
}

.spotlight:nth-last-of-type(20) {
  z-index: 20;
}

.spotlight:before {
  background-image: url("images/overlay.png");
  content: "";
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.spotlight .image.main {
  display: none;
}

.spotlight .image.main img {
  position: relative;
}

.spotlight .content {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -moz-transition: -moz-transform 1s ease, opacity 1s ease;
  -webkit-transition: -webkit-transform 1s ease, opacity 1s ease;
  -ms-transition: -ms-transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  background: rgba(23, 24, 32, 0.95);
  border-style: solid;
  opacity: 1;
  position: absolute;
}

.spotlight .goto-next {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -moz-transition: -moz-transform 0.75s ease, opacity 1s ease-in;
  -webkit-transition: -webkit-transform 0.75s ease, opacity 1s ease-in;
  -ms-transition: -ms-transform 0.75s ease, opacity 1s ease-in;
  transition: transform 0.75s ease, opacity 1s ease-in;
  -moz-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  transition-delay: 0.5s;
  opacity: 1;
}

.spotlight.top .content,
.spotlight.bottom .content {
  left: 0;
  padding: 5.1em 0 3.1em 0;
  width: 100%;
}

.spotlight.top .content {
  border-bottom-width: 0.35em;
  top: 0;
}

.spotlight.bottom .content {
  border-top-width: 0.35em;
  bottom: 0;
}

.spotlight.left .content,
.spotlight.right .content {
  height: 101%;
  padding: 6em 3em;
  top: 0;
  width: 28em;
}

.spotlight.left .content {
  border-right-width: 0.35em;
  left: 0;
}

.spotlight.right .content {
  border-left-width: 0.35em;
  right: 0;
}

.spotlight.style1 .content {
  border-color: #21e6c1;
}

.spotlight.style2 .content {
  border-color: #5480f1;
}

.spotlight.style3 .content {
  border-color: #39c088;
}

.spotlight.inactive .content {
  opacity: 0;
}

.spotlight.inactive .goto-next {
  -moz-transform: translate(0, 1.5em);
  -webkit-transform: translate(0, 1.5em);
  -ms-transform: translate(0, 1.5em);
  transform: translate(0, 1.5em);
  opacity: 0;
}

.spotlight.inactive.top .content {
  -moz-transform: translate(0, -5em);
  -webkit-transform: translate(0, -5em);
  -ms-transform: translate(0, -5em);
  transform: translate(0, -5em);
}

.spotlight.inactive.bottom .content {
  -moz-transform: translate(0, 5em);
  -webkit-transform: translate(0, 5em);
  -ms-transform: translate(0, 5em);
  transform: translate(0, 5em);
}

.spotlight.inactive.left .content {
  -moz-transform: translate(-5em, 0);
  -webkit-transform: translate(-5em, 0);
  -ms-transform: translate(-5em, 0);
  transform: translate(-5em, 0);
}

.spotlight.inactive.right .content {
  -moz-transform: translate(5em, 0);
  -webkit-transform: translate(5em, 0);
  -ms-transform: translate(5em, 0);
  transform: translate(5em, 0);
}

body.is-touch .spotlight {
  background-attachment: scroll;
}

/* Wrapper */

.wrapper {
  padding: 6em 0 4em 0;
}

.wrapper.style2 {
  background: #10182a;
}

.wrapper.style2 input[type="text"]:focus,
.wrapper.style2 input[type="password"]:focus,
.wrapper.style2 input[type="email"]:focus,
.wrapper.style2 select:focus,
.wrapper.style2 textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.wrapper.style2 input[type="submit"]:hover,
.wrapper.style2 input[type="submit"]:active,
.wrapper.style2 input[type="reset"]:hover,
.wrapper.style2 input[type="reset"]:active,
.wrapper.style2 input[type="button"]:hover,
.wrapper.style2 input[type="button"]:active,
.wrapper.style2 .button:hover,
.wrapper.style2 .button:active {
  background-color: rgba(255, 255, 255, 0.075) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important;
}

.wrapper.style2 input[type="submit"]:active,
.wrapper.style2 input[type="reset"]:active,
.wrapper.style2 input[type="button"]:active,
.wrapper.style2 .button:active {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

.wrapper.style2 input[type="submit"].primary,
.wrapper.style2 input[type="reset"].primary,
.wrapper.style2 input[type="button"].primary,
.wrapper.style2 .button.primary {
  background-color: #ffffff;
  color: #22aaff !important;
}

.wrapper.style2 input[type="submit"].primary:hover,
.wrapper.style2 input[type="submit"].primary:active,
.wrapper.style2 input[type="reset"].primary:hover,
.wrapper.style2 input[type="reset"].primary:active,
.wrapper.style2 input[type="button"].primary:hover,
.wrapper.style2 input[type="button"].primary:active,
.wrapper.style2 .button.primary:hover,
.wrapper.style2 .button.primary:active {
  background-color: rgba(255, 255, 255, 0.075) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
  color: #ffffff !important;
}

.wrapper.style2 input[type="submit"].primary:active,
.wrapper.style2 input[type="reset"].primary:active,
.wrapper.style2 input[type="button"].primary:active,
.wrapper.style2 .button.primary:active {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

.wrapper.fade-down > .container {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -moz-transition: -moz-transform 1s ease, opacity 1s ease;
  -webkit-transition: -webkit-transform 1s ease, opacity 1s ease;
  -ms-transition: -ms-transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  opacity: 1;
}

.wrapper.fade-down.inactive > .container {
  -moz-transform: translate(0, -1em);
  -webkit-transform: translate(0, -1em);
  -ms-transform: translate(0, -1em);
  transform: translate(0, -1em);
  opacity: 0;
}

.wrapper.fade-up > .container {
  -moz-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -moz-transition: -moz-transform 1s ease, opacity 1s ease;
  -webkit-transition: -webkit-transform 1s ease, opacity 1s ease;
  -ms-transition: -ms-transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  opacity: 1;
}

.wrapper.fade-up.inactive > .container {
  -moz-transform: translate(0, 1em);
  -webkit-transform: translate(0, 1em);
  -ms-transform: translate(0, 1em);
  transform: translate(0, 1em);
  opacity: 0;
}

.wrapper.fade > .container {
  -moz-transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  transition: opacity 1s ease;
  opacity: 1;
}

.wrapper.fade.inactive > .container {
  opacity: 0;
}

/* Dropotron */

.dropotron {
  background: rgba(39, 40, 51, 0.965);
  border-radius: 4px;
  box-shadow: 0 0.075em 0.35em 0 rgba(0, 0, 0, 0.125);
  list-style: none;
  margin-top: calc(-0.25em + 1px);
  min-width: 12em;
  padding: 0.25em 0;
}

.dropotron > li {
  border-top: solid 1px rgba(255, 255, 255, 0.035);
  padding: 0;
}

.dropotron > li a,
.dropotron > li span {
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  padding: 0.1em 1em;
  text-decoration: none;
}

.dropotron > li:first-child {
  border-top: 0;
}

.dropotron > li.active > a,
.dropotron > li.active > span {
  color: #22aaff;
}

.dropotron.level-0 {
  font-size: 0.8em;
  margin-top: 1em;
}

.dropotron.level-0:before {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #272833;
  content: "";
  display: block;
  height: 1em;
  position: absolute;
  right: 1.5em;
  top: -0.5em;
  width: 1em;
}

body.landing .dropotron.level-0 {
  margin-top: 0;
}

/* Header */

#page-wrapper {
  padding-top: 3.5em;
}

#header {
  background: rgba(39, 40, 51, 0.965);
  box-shadow: 0 0 0.25em 0 rgba(0, 0, 0, 0.25);
  cursor: default;
  height: 3.5em;
  left: 0;
  line-height: 3.5em;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

#header h1 {
  height: inherit;
  left: 1.25em;
  line-height: inherit;
  margin: 0;
  position: absolute;
  top: 0;
}

#header nav {
  position: absolute;
  right: 1em;
  top: 0;
}

#header nav ul {
  margin: 0;
}

#header nav ul li {
  display: inline-block;
  margin-left: 1em;
}

#header nav ul li a,
#header nav ul li span {
  border: 0;
  color: inherit;
  display: inline-block;
  height: inherit;
  line-height: inherit;
  outline: 0;
}

#header nav ul li a.button,
#header nav ul li span.button {
  height: 2em;
  line-height: 2em;
  padding: 0 1.25em;
}

#header nav ul li a:not(.button):before,
#header nav ul li span:not(.button):before {
  margin-right: 0.5em;
}

#header nav ul li.active > a,
#header nav ul li.active > span {
  color: #22aaff;
}

#header nav ul li > ul {
  display: none;
}

body.landing #page-wrapper {
  padding-top: 0;
}

body.landing #header {
  background: transparent;
  box-shadow: none;
  position: absolute;
}

/* Banner */

#banner {
  background-attachment: fixed;
  background-color: #272833;
  background-image: url("../../images/banner.jpg");
  background-position: center center;
  background-size: cover;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.25);
  min-height: 100vh;
  position: relative;
  text-align: center;
  z-index: 21;
}

#banner:before {
  content: "";
  display: inline-block;
  height: 100vh;
  vertical-align: middle;
  width: 1%;
}

#banner:after {
  background-image: -moz-linear-gradient(
      top,
      rgba(23, 24, 32, 0.95),
      rgba(23, 24, 32, 0.95)
    ),
    url("images/overlay.png");
  background-image: -webkit-linear-gradient(
      top,
      rgba(23, 24, 32, 0.95),
      rgba(23, 24, 32, 0.95)
    ),
    url("images/overlay.png");
  background-image: -ms-linear-gradient(
      top,
      rgba(23, 24, 32, 0.95),
      rgba(23, 24, 32, 0.95)
    ),
    url("images/overlay.png");
  background-image: linear-gradient(
      top,
      rgba(23, 24, 32, 0.95),
      rgba(23, 24, 32, 0.95)
    ),
    url("images/overlay.png");
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

#banner .content {
  display: inline-block;
  margin-right: 1%;
  max-width: 95%;
  padding: 6em;
  position: relative;
  text-align: right;
  vertical-align: middle;
  z-index: 1;
}

#banner .content header {
  display: inline-block;
  vertical-align: middle;
}

#banner .content header h2 {
  font-size: 2.5em;
  margin: 0;
}

#banner .content header p {
  margin: 0.5em 0 0 0;
  top: 0;
}

#banner .content .image {
  border-radius: 100%;
  display: inline-block;
  height: 18em;
  margin-left: 3em;
  vertical-align: middle;
  width: 18em;
}

#banner .content .image img {
  border-radius: 100%;
  display: block;
  width: 100%;
}

body.is-touch #banner {
  background-attachment: scroll;
}

/* Footer */

#footer {
  background: #272833;
  padding: 6em 0;
  text-align: center;
}

#footer .icons .icon.alt {
  text-decoration: none;
}

#footer .icons .icon.alt:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

#footer .icons .icon.alt:before {
  color: #272833 !important;
  text-shadow: 1px 0 0 rgba(255, 255, 255, 0.5),
    -1px 0 0 rgba(255, 255, 255, 0.5), 0 1px 0 rgba(255, 255, 255, 0.5),
    0 -1px 0 rgba(255, 255, 255, 0.5);
}

#footer .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8em;
  line-height: 1em;
  margin: 2em 0 0 0;
  padding: 0;
  text-align: center;
}

#footer .copyright li {
  border-left: solid 1px rgba(255, 255, 255, 0.3);
  display: inline-block;
  list-style: none;
  margin-left: 1.5em;
  padding-left: 1.5em;
}

#footer .copyright li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

#footer .copyright li a {
  color: inherit;
}

/* XLarge */

@media screen and (max-width: 1680px) {
  /* Basic */

  body,
  input,
  select,
  textarea {
    font-size: 13pt;
  }
}

/* Large */

@media screen and (max-width: 1280px) {
  /* Basic */

  body,
  input,
  select,
  textarea {
    font-size: 11.5pt;
  }

  /* Spotlight */

  .spotlight.top .content {
    padding: 3.825em 0 1.825em 0;
  }

  .spotlight.bottom .content {
    padding: 3.825em 0 2.95em 0;
  }

  .spotlight.left .content,
  .spotlight.right .content {
    padding: 4.5em 2.5em;
    width: 25em;
  }

  /* Wrapper */

  .wrapper {
    padding: 4.5em 0 2.5em 0;
  }

  /* Dropotron */

  .dropotron.level-0 {
    font-size: 1em;
  }

  /* Banner */

  #banner .content {
    padding: 4.5em;
  }

  /* Footer */

  #footer {
    padding: 4.5em 0;
  }
}

/* Medium */

@media screen and (max-width: 980px) {
  /* Basic */

  body,
  input,
  select,
  textarea {
    font-size: 12pt;
  }

  /* Spotlight */

  .spotlight {
    background-attachment: scroll;
    height: auto;
  }

  .spotlight .image.main {
    display: block;
    margin: 0;
    max-height: 40vh;
    overflow: hidden;
  }

  .spotlight .content {
    background-color: #1c1d26;
    border-width: 0 !important;
    border-top-width: 0.35em !important;
    bottom: auto !important;
    left: auto !important;
    padding: 4.5em 2.5em 2.5em 2.5em !important;
    position: relative;
    right: auto !important;
    text-align: center;
    top: auto !important;
    width: 100% !important;
  }

  .spotlight .content ul.actions {
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }

  .spotlight .content ul.actions li:first-child {
    padding-left: 0;
  }

  .spotlight .goto-next {
    display: none;
  }

  /* Wrapper */

  .wrapper {
    padding: 4.5em 2.5em 2.5em 2.5em;
  }

  /* Banner */

  #banner {
    background-attachment: scroll;
  }

  #banner .goto-next {
    height: 7em;
  }

  #banner .content {
    padding: 9em 0;
    text-align: center;
  }

  #banner .content header {
    display: block;
    margin: 0 0 2em 0;
    text-align: center;
  }

  #banner .content .image {
    margin: 0;
  }

  /* Footer */

  #footer {
    padding: 4.5em 0;
  }
}

/* Small */

#navPanel,
#titleBar {
  display: none;
}

@media screen and (max-width: 736px) {
  /* Basic */

  html,
  body {
    overflow-x: hidden;
  }

  body,
  input,
  select,
  textarea {
    font-size: 12pt;
  }

  h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 1.2em;
  }

  h4 {
    font-size: 1em;
  }

  /* Section/Article */

  header p br {
    display: none;
  }

  header h2 + p {
    font-size: 1em;
  }

  header h3 + p {
    font-size: 1em;
  }

  header h4 + p,
  header h5 + p,
  header h6 + p {
    font-size: 0.9em;
  }

  header.major {
    margin: 0 0 2em 0;
  }

  /* Goto Next */

  .goto-next:before {
    height: 0.8em;
    margin: -0.4em 0 0 -0.6em;
    width: 1.2em;
  }

  /* Spotlight */

  .spotlight {
    box-shadow: 0 0.125em 0.5em 0 rgba(0, 0, 0, 0.25);
  }

  .spotlight .image.main {
    max-height: 60vh;
  }

  .spotlight .content {
    border-top-width: 0.2em !important;
    padding: 3.25em 1.5em 1.25em 1.5em !important;
  }

  /* Wrapper */

  .wrapper {
    padding: 3.25em 1.5em 1.25em 1.5em;
  }

  /* Header */

  #header {
    display: none;
  }

  /* Banner */

  #banner {
    box-shadow: 0 0.125em 0.5em 0 rgba(0, 0, 0, 0.25);
    min-height: calc(100vh - 44px);
  }

  #banner:before {
    height: calc(100vh - 44px);
  }

  #banner .content {
    padding: 4.0625em 1.5em 4.875em 1.5em;
  }

  #banner .content header h2 {
    font-size: 1.5em;
  }

  #banner .content .image {
    height: 9em;
    width: 9em;
  }

  /* Nav */

  #page-wrapper {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    padding-bottom: 1px;
    padding-top: 44px !important;
  }

  #titleBar {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 44px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001;
    background: #272833;
    box-shadow: 0 0.125em 0.125em 0 rgba(0, 0, 0, 0.125);
  }

  #titleBar .title {
    color: #ffffff;
    display: block;
    font-weight: 300;
    height: 44px;
    line-height: 44px;
    text-align: center;
  }

  #titleBar .title a {
    color: inherit;
    border: 0;
  }

  #titleBar .toggle {
    text-decoration: none;
    height: 60px;
    left: 0;
    position: absolute;
    top: 0;
    width: 90px;
    outline: 0;
    border: 0;
  }

  #titleBar .toggle:before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-transform: none !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }

  #titleBar .toggle:before {
    background: #22aaff;
    color: rgba(255, 255, 255, 0.5);
    content: "\f0c9";
    display: block;
    font-size: 18px;
    height: 44px;
    left: 0;
    line-height: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 54px;
  }

  #navPanel {
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateX(-275px);
    -webkit-transform: translateX(-275px);
    -ms-transform: translateX(-275px);
    transform: translateX(-275px);
    -moz-transition: -moz-transform 0.5s ease;
    -webkit-transition: -webkit-transform 0.5s ease;
    -ms-transition: -ms-transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
    height: 100%;
    left: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 275px;
    z-index: 10002;
    background: #181920;
    padding: 0.75em 1.25em;
  }

  #navPanel .link {
    border: 0;
    border-top: solid 1px rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.75);
    display: block;
    height: 3em;
    line-height: 3em;
    text-decoration: none;
  }

  #navPanel .link:hover {
    color: inherit !important;
  }

  #navPanel .link:first-child {
    border-top: 0;
  }

  #navPanel .link.depth-0 {
    color: #ffffff;
    font-weight: 300;
  }

  #navPanel .link .indent-1 {
    display: inline-block;
    width: 1.25em;
  }

  #navPanel .link .indent-2 {
    display: inline-block;
    width: 2.5em;
  }

  #navPanel .link .indent-3 {
    display: inline-block;
    width: 3.75em;
  }

  #navPanel .link .indent-4 {
    display: inline-block;
    width: 5em;
  }

  #navPanel .link .indent-5 {
    display: inline-block;
    width: 6.25em;
  }

  body.navPanel-visible #page-wrapper {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }

  body.navPanel-visible #titleBar {
    -moz-transform: translateX(275px);
    -webkit-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }

  body.navPanel-visible #navPanel {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  /* Footer */

  #footer {
    padding: 3.25em 1.5em;
  }
}

/* Testimonials Carousel Section - Adjust existing styles */
#testimonials {
  padding: 6em 0; /* Adjust padding as needed */
  background-color: #000; /* As per your current HTML */
  color: white; /* As per your current HTML */
}

#testimonials .container {
  /* Use the existing .container in this section */
  position: relative; /* For absolute positioning of arrows */
  max-width: 1200px; /* Adjust as per your layout needs */
  margin: 0 auto;
  padding: 0 40px; /* Space for arrows, adjust based on arrow size */
  box-sizing: border-box;
  display: flex; /* To align items horizontally, including arrows */
  flex-direction: column; /* Stack header, wrapper, etc. vertically */
  align-items: center; /* Center content horizontally */
}

#testimonials .major {
  /* Header styling within testimonial section */
  margin-bottom: 3.5em; /* Space below heading */
  text-align: center;
  width: 100%; /* Take full width */
}

#testimonials h2 {
  color: #fff; /* As per your current HTML */
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 0.5em;
}

#testimonials p {
  color: #aaa; /* As per your current HTML */
  font-size: 1.1em;
}

/* New Wrapper for Carousel Items */
.testimonial-carousel-inner-wrapper {
  width: 100%;
  overflow: hidden; /* Crucial to hide cards outside the 3-card view */
  padding-bottom: 2em; /* Space below carousel if needed */
}

.testimonial-carousel {
  display: flex;
  /* Instead of scroll-behavior, we'll use transform for smooth sliding */
  transition: transform 0.5s ease-in-out;
  will-change: transform; /* Performance hint */
  /* Remove overflow-x: scroll if it was here, JS will manage position */
  /* Ensure no default scrollbars */
}

.testimonial-card {
  flex: 0 0 calc(100% / 3); /* Display 3 cards per row */
  min-width: 300px; /* Minimum width for each card, adjust as needed */
  box-sizing: border-box;
  padding: 1.8em;
  text-align: center;
  background: #1a1a1a; /* Darker background for cards */
  border-radius: 12px;
  margin: 0 15px; /* Spacing between cards (30px total between each) */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out,
    box-shadow 0.3s ease;
  transform: scale(0.9); /* Default slightly smaller */
  opacity: 0.7; /* Default less prominent */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

/* Active (Center) Card Styling */
.testimonial-card.active-center {
  /* New class added by JS */
  transform: scale(1.08); /* Zoom effect for middle card */
  opacity: 1; /* Fully visible */
  box-shadow: 0 0 30px #21e6c166, 0 0 60px #22aaff33; /* Glow effect */
  z-index: 1; /* Ensure it's above others if overlaps */
}

.testimonial-card .avatar {
  width: 100px; /* Size of client images */
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2em;
  border: 3px solid #21e6c1; /* Border around avatar */
  box-shadow: 0 0 15px rgba(33, 230, 193, 0.5); /* Avatar glow */
}

.testimonial-card .stars {
  color: #f9c851; /* Star color */
  font-size: 1.2em;
  margin-bottom: 1em;
}

.testimonial-card .quote {
  font-size: 1.05em;
  line-height: 1.6em;
  color: #c0c0c0;
  margin: 0 0 1.5em 0;
  flex-grow: 1; /* Allow quote to take available space */
}

.testimonial-card .name {
  font-size: 0.95em;
  font-weight: 600;
  color: #22aaff;
  margin-top: 1em;
}

/* Carousel Navigation Buttons */
/* You had these under .carousel-nav in HTML, but we're changing structure */
.carousel-btn {
  background: transparent;
  border: none;
  font-size: 2.8em; /* Make icons larger */
  color: rgba(34, 170, 255, 0.3); /* Transparent blue, slightly visible */
  cursor: pointer;
  padding: 0 15px; /* Adjust padding to make them clickable */
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: absolute; /* Position them absolutely relative to .testimonial-section-container */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust for perfect vertical centering */
  z-index: 10; /* Ensure they are above testimonials */
  display: flex; /* To vertically align the Font Awesome icon if needed */
  align-items: center; /* To vertically align the Font Awesome icon if needed */
  justify-content: center; /* To horizontally align the Font Awesome icon if needed */
  height: 100%; /* Take full height of container for larger hover area */
}

.carousel-btn.prev-btn {
  left: 0;
}

.carousel-btn.next-btn {
  right: 0;
}

.carousel-btn:hover {
  color: #22aaff; /* Blue glow on hover */
  text-shadow: 0 0 15px #22aaff, 0 0 25px #22aaff88; /* Stronger glow */
}

.carousel-btn:active {
  color: #21e6c1; /* Greenish glow on click */
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 980px) {
  .testimonial-card {
    flex: 0 0 calc(100% / 2 - 15px); /* Show 2 items on medium screens, adjust margin */
    margin: 0 7.5px; /* Half of original margin for 2 columns */
  }
  /* Center the carousel within its wrapper when showing 2 items */
  .testimonial-carousel {
    justify-content: flex-start; /* Or space-around, depending on desired look */
  }
}

@media screen and (max-width: 736px) {
  .testimonial-card {
    flex: 0 0 100%; /* Show 1 item on small screens */
    margin: 0 5px; /* Adjust margin for single view */
  }
  #testimonials .container {
    padding: 0 15px; /* Less padding on smaller screens for arrows */
  }
  .carousel-btn {
    font-size: 2.2em; /* Smaller arrows */
    padding: 0 8px;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-card {
    padding: 1.5em;
  }
  #testimonials h2 {
    font-size: 2em;
  }
  .carousel-btn {
    font-size: 1.8em;
    padding: 0 5px;
  }
}

/* XSmall */

@media screen and (max-width: 480px) {
  /* Basic */

  html,
  body {
    min-width: 320px;
  }

  body,
  input,
  select,
  textarea {
    font-size: 12pt;
  }

  /* Button */

  input[type="submit"],
  input[type="reset"],
  input[type="button"],
  .button {
    padding: 0;
  }

  /* Spotlight */

  .spotlight .image.main {
    max-height: 50vh;
  }

  .spotlight .content {
    padding: 3em 1.25em 1em 1.25em !important;
  }

  /* Wrapper */

  .wrapper {
    padding: 3em 1.25em 1em 1.25em;
  }

  /* Banner */

  #banner .content {
    padding: 3em 1.5625em 5.25em 1.5625em;
  }

  /* Footer */

  #footer {
    padding: 3em 1.25em;
  }

  #footer .copyright {
    line-height: inherit;
  }

  #footer .copyright li {
    border-left: 0;
    display: block;
    margin: 0;
    padding: 0;
  }
}

.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-bottom: 20px;
  padding-top: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 370px;
  scroll-snap-align: center;
  margin: 0;
  border-radius: 18px;
  background: #181920;
  border: 2px solid #222;
  transition: box-shadow 0.3s, transform 0.28s, border-color 0.2s;
  box-shadow: 0 0 0 #22aaff;
  opacity: 0.85;
  z-index: 0;
}
@media (max-width: 800px) {
  .testimonial-card {
    flex-basis: 96vw;
  }
}
.testimonial-card.active {
  box-shadow: 0 0 26px 2px #22aaff, 0 0 38px 6px #21e6c1aa;
  border-color: #22aaff;
  opacity: 1;
  transform: scale(1.1);
  z-index: 1;
}
.testimonial-card:not(.active):hover {
  box-shadow: 0 0 16px #21e6c1, 0 0 6px #22aaff99;
  opacity: 1;
  transform: scale(1.06);
}
.carousel-nav {
  text-align: center;
  margin-top: 8px;
}
.carousel-nav button {
  background: transparent;
  color: #22aaff;
  border: none;
  padding: 10px 18px;
  font-size: 2em;
  border-radius: 50%;
  transition: box-shadow 0.3s, color 0.2s, background 0.2s;
  user-select: none;
  margin: 0 4px;
  outline: none;
}
.carousel-nav button:hover,
.carousel-nav button:focus {
  color: #f9c851;
  background: #111a;
  box-shadow: 0 0 18px #22aaff;
}

.testimonial-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-bottom: 20px;
  padding-top: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonial-carousel::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  scroll-snap-align: center;
  background: #111;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  flex: 0 0 300px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
  transform: scale(0.95);
  cursor: pointer;
}
.testimonial-card.active,
.testimonial-card:hover {
  transform: scale(1.1);
  opacity: 1;
  z-index: 3;
}
.testimonial-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.testimonial-card .stars {
  font-size: 18px;
  color: gold;
}
.testimonial-card .quote {
  font-style: italic;
  margin: 15px 0;
}
.testimonial-card .name {
  font-weight: bold;
  color: #f9c851;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: white;
  border: none;
  padding: 10px;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-arrow.left {
  left: 0;
}
.carousel-arrow.right {
  right: 0;
}
.carousel-arrow:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(249, 200, 81, 0.3);
}
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 80%;
  }
}
.testimonial-card.active {
  transform: scale(1.12);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 0 25px 0 #22aaff, 0 0 40px 0 #21e6c1aa;
  border: 2px solid #22aaff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:not(.active):hover {
  transform: scale(1.07);
  box-shadow: 0 0 12px #21e6c1;
  z-index: 1;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #22aaff;
  border: none;
  padding: 10px 16px;
  font-size: 2.3em;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: box-shadow 0.3s, color 0.2s, background 0.2s;
  user-select: none;
}
.carousel-arrow.left {
  left: 12px;
}
.carousel-arrow.right {
  right: 12px;
}
.carousel-arrow:hover,
.carousel-arrow:active {
  color: #f9c851;
  background: #222a;
  box-shadow: 0 0 20px #22aaff;
}
.testimonial-carousel-wrapper {
  position: relative;
}

/* === ULTIMATE LAYER CUSTOM TEXT COLORS === */

/* Headline Colors */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #22aaff !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Big headline sa special sections */
.headline-effect,
.wrapper.style2 .major h2,
.wrapper.style2 h2 {
  color: #f9c851 !important; /* gold accent for special sections */
}

.wrapper.style1 .major h2,
.wrapper.style1 h2 {
  color: #22aaff !important;
}

/* Paragraphs, lists, general text */
body,
p,
li,
.wrapper,
section,
.wrapper .major p,
section .major p,
.row,
.box {
  color: #d2e2ef !important;
}

/* Small text, notes, less important */
small,
.subtle,
.note,
.wrapper .major p,
section .major p {
  color: #8baecb !important;
  font-style: italic;
}

/* Table text */
table th,
table td {
  color: #d2e2ef !important;
}

/* Table headings */
table th {
  color: #22aaff !important;
}

/* Footer copyright */
#footer .copyright,
#footer .copyright li {
  color: #8baecb !important;
}

/* Form labels */
label {
  color: #f9c851 !important;
}

/* Override all header p (subheadline) to blue-gray */
header p,
header.major p {
  color: #8baecb !important;
}

/* Major blockquote color */
blockquote {
  color: #8baecb !important;
}

/* Para sa strong, b, icon */
strong,
b,
.icon,
.fa,
.fa-solid {
  color: #21e6c1 !important;
}

/* Para sa active tab o menu highlight */
#header nav ul li.active > a,
#header nav ul li.active > span {
  color: #f9c851 !important;
}

/* FAQ Section Styles */
.faq-list {
  max-width: 760px;
  margin: 2em auto 0 auto;
  text-align: left;
}
.faq-item {
  background: #131a26;
  border-radius: 1em;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px #10182a44;
  border: 1px solid #232f45;
  overflow: hidden;
  transition: box-shadow 0.22s;
}
.faq-item.open,
.faq-item:focus-within {
  box-shadow: 0 0 24px 1px #22aaff88;
  border-color: #22aaff;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.12em;
  font-weight: 700;
  color: #22aaff;
  padding: 1.1em 1.3em;
  cursor: pointer;
  transition: background 0.18s;
  text-align: left;
}
.faq-arrow {
  margin-left: 8px;
  transition: transform 0.23s cubic-bezier(0.45, 1.4, 0.72, 1.11);
  font-size: 1.24em;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #181f2d;
  color: #cbe6fe;
  padding: 0 1.5em;
  font-size: 1.07em;
  line-height: 1.65;
  transition: max-height 0.3s cubic-bezier(0.44, 1.4, 0.72, 1.11), padding 0.2s;
}
.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 1em 1.5em 1.25em 1.5em;
}
@media (max-width: 800px) {
  .faq-list {
    max-width: 99vw;
  }
  .faq-question {
    font-size: 1em;
  }
}

.logo-glow {
  border-radius: 50%;
  box-shadow: 0 0 32px 0 #22aaff, 0 0 48px 6px #21e6c180, 0 0 0 12px #22aaff11;
  transition: box-shadow 0.25s;
}
.logo-glow:hover {
  box-shadow: 0 0 64px 4px #22aaffcc, 0 0 88px 10px #21e6c180,
    0 0 0 22px #22aaff22;
}
@keyframes logoPulse {
  0% {
    box-shadow: 0 0 30px #22aaff99, 0 0 0 #21e6c133;
  }
  50% {
    box-shadow: 0 0 56px #22aaff, 0 0 26px #21e6c1aa;
  }
  100% {
    box-shadow: 0 0 30px #22aaff99, 0 0 0 #21e6c133;
  }
}
.logo-glow {
  border-radius: 50%;
  box-shadow: 0 0 30px #22aaff99, 0 0 0 #21e6c133;
  animation: logoPulse 2.3s infinite;
  transition: box-shadow 0.28s;
}
/* Neon Glow on Feature Icons */
.feature-glow {
  transition: box-shadow 0.22s, color 0.2s;
  box-shadow: 0 0 9px 0 #22aaff33;
}
.box.alt .row > section {
  transition: transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 2px 10px 0 rgba(21, 230, 193, 0.09);
  border-radius: 1em;
  background: #181b23;
}
.box.alt .row > section:hover {
  transform: translateY(-7px) scale(1.035);
  box-shadow: 0 8px 22px 0 rgba(21, 230, 193, 0.14);
  background: #232634;
}
.feature-glow {
  color: #21e6c1;
  text-shadow: 0 0 18px #21e6c1cc;
  transition: text-shadow 0.18s;
}
.box.alt .row > section:hover .feature-glow {
  text-shadow: 0 0 32px #00fff0;
}

.feature-glow:hover,
.feature-glow:focus {
  color: #22aaff;
  box-shadow: 0 0 24px 5px #22aaff88, 0 0 48px 10px #21e6c1aa;
  outline: none;
}
.comparison-table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.01em;
  background: #171f2e;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 4px 38px #22aaff12;
  text-align: center;
}

.comparison-table th,
.comparison-table td {
  padding: 0.93em 1.1em;
  text-align: center;
  border-bottom: 1px solid #232c40;
  vertical-align: middle;
}

.comparison-table th {
  background: #181f2e;
  font-weight: 700;
  font-size: 1.08em;
  letter-spacing: 0.02em;
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  color: #8baecb;
  font-weight: 500;
  text-align: left;
  width: 22%;
  background: #181f2e;
  border-right: 1px solid #232c40;
}

.comparison-table td.check {
  color: #34e59d;
  font-weight: 600;
  background: #181f2e;
}

.comparison-table td.cross {
  color: #f4776e;
  font-weight: 600;
  background: #181f2e;
}

.comparison-table tr:hover td {
  background: #21293a42;
  transition: background 0.19s;
}

.comparison-table thead th {
  text-align: center;
}
/* Force single column for feature icons on mobile, and make icons/text larger */
@media (max-width: 600px) {
  .features,
  .features-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2em; /* Add spacing between icons */
  }

  .features li,
  .features-list li {
    width: 100% !important;
    max-width: 350px; /* You can tweak this */
    text-align: center;
    margin: 0 auto;
    font-size: 1.2em;
    /* Optional: add a slight zoom */
    transform: scale(1.1);
  }

  .features .icon,
  .features-list .icon {
    font-size: 2.5em !important; /* Make icons bigger */
    margin-bottom: 0.5em;
  }
}
/* Zoom center testimonial */
.carousel-inner .testimonial {
  transition: transform 0.4s cubic-bezier(0.21, 0.61, 0.35, 1), box-shadow 0.3s;
  transform: scale(0.92);
  z-index: 1;
  box-shadow: none;
}

/* The centered/active testimonial */
.carousel-inner .testimonial.active {
  transform: scale(1.06);
  box-shadow: 0 0 24px 4px #20e2ff66;
  z-index: 2;
}

/* Stop zoom animation on hover/click */
.carousel-inner .testimonial.active:hover,
.carousel-inner .testimonial.active:active {
  transition: none !important;
  transform: scale(1.06) !important;
}

/* Arrows: style as circle or square with highlight on hover */
.arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%; /* makes it circular, remove for square */
  background: rgba(30, 255, 255, 0.1);
  border: 2px solid #20e2ff44;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #20e2ff;
  font-size: 2em;
  cursor: pointer;
  margin: 0 1em;
  transition: border 0.2s, background 0.2s;
  box-shadow: 0 0 8px 0 transparent;
}

/* Arrow icons using Font Awesome or Unicode */
.arrow.prev::before {
  content: "←"; /* Or use "\f060" if using Font Awesome and set font-family */
}
.arrow.next::before {
  content: "→"; /* Or use "\f061" for Font Awesome */
}

/* Highlight on hover */
.arrow:hover,
.arrow:focus {
  border: 2px solid #20e2ff;
  background: rgba(30, 255, 255, 0.22);
  box-shadow: 0 0 18px 4px #20e2ff55;
}

/* Optional: make sure arrows are always above the testimonials */
.arrow {
  z-index: 5;
  position: relative;
}
/* Testimonial carousel: zoom center/active card */
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.21, 0.61, 0.35, 1), box-shadow 0.3s;
  transform: scale(0.92);
  z-index: 1;
  box-shadow: none;
}
.testimonial-card.active {
  transform: scale(1.08);
  box-shadow: 0 0 24px 4px #20e2ff66;
  z-index: 2;
}
.testimonial-card.active:hover,
.testimonial-card.active:active {
  transition: none !important;
  transform: scale(1.08) !important;
}

/* Arrow buttons with glow on hover */
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(30, 255, 255, 0.12);
  border: 2px solid #20e2ff44;
  color: #20e2ff;
  font-size: 2em;
  cursor: pointer;
  margin: 0 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px 0 transparent;
  transition: border 0.2s, background 0.2s, box-shadow 0.2s;
}

.carousel-btn:hover,
.carousel-btn:focus {
  border: 2px solid #20e2ff;
  background: rgba(30, 255, 255, 0.22);
  box-shadow: 0 0 18px 4px #20e2ff55;
  color: #fff;
}

.carousel-btn i {
  pointer-events: none;
}
/* Make carousel buttons look like glowing arrow circles */
.carousel-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(32, 226, 255, 0.13);
  border: 2px solid #20e2ff80;
  color: #20e2ff;
  font-size: 2.2em;
  cursor: pointer;
  margin: 0 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px 0 transparent;
  transition: border 0.2s, background 0.2s, box-shadow 0.2s, color 0.2s;
  outline: none;
  padding: 0;
}

.carousel-btn:hover,
.carousel-btn:focus {
  border: 2px solid #20e2ff;
  background: rgba(32, 226, 255, 0.23);
  box-shadow: 0 0 18px 4px #20e2ff66;
  color: #fff;
}

.carousel-btn i {
  pointer-events: none; /* Let button get all clicks */
  margin: 0;
  font-size: 1em; /* inherit parent size */
}
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #14161eeb; /* semi-transparent dark */
  box-shadow: 0 2px 20px 0 rgba(33, 230, 193, 0.07);
  transition: background 0.3s, box-shadow 0.3s;
}
#header.scrolled {
  background: #10111aee; /* slightly more solid after scroll */
  box-shadow: 0 2px 24px 0 rgba(33, 230, 193, 0.13);
}
section.wrapper,
section.spotlight,
section.special {
  margin-bottom: 3.3em;
  margin-top: 3.3em;
}
@media (max-width: 980px) {
  section.wrapper,
  section.spotlight,
  section.special {
    margin-bottom: 2em;
    margin-top: 2em;
  }
}
a.button.primary,
.button.primary,
a[href="#buy-now"] {
  background: linear-gradient(92deg, #21e6c1 0%, #22aaff 100%);
  color: #111 !important;
  font-weight: bold;
  font-size: 1.16em;
  border-radius: 2em;
  padding: 0.72em 2.4em;
  box-shadow: 0 4px 16px 0 rgba(33, 230, 193, 0.14);
  border: none;
  transition: box-shadow 0.18s, transform 0.14s, background 0.17s;
}
a.button.primary:hover,
.button.primary:hover,
a[href="#buy-now"]:hover {
  background: linear-gradient(90deg, #00fff0 0%, #21e6c1 100%);
  box-shadow: 0 8px 32px 0 #21e6c19f, 0 0 0 2px #22aaff7f;
  transform: scale(1.08);
  color: #111 !important;
}
.comparison-table {
  width: 100%;
  border-radius: 1em;
  overflow: auto;
}
.comparison-table th,
.comparison-table td {
  padding: 1em 0.6em;
  text-align: left;
}
.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2) {
  background: rgba(33, 230, 193, 0.08);
  box-shadow: 0 0 14px #22aaff0b inset;
  font-weight: bold;
  border-radius: 0.4em;
}
@media (max-width: 800px) {
  .comparison-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  .comparison-table th,
  .comparison-table td {
    min-width: 160px;
    font-size: 0.97em;
  }
}
.section-animate {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s, transform 0.85s;
}
.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item {
  margin-bottom: 1.3em;
}
.faq-question {
  background: none;
  border: none;
  color: #21e6c1;
  font-weight: 700;
  font-size: 1.08em;
  text-align: left;
  padding: 0.6em 0;
  width: 100%;
  transition: color 0.15s;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0.2em 0 0.7em 0.6em;
  color: #fff;
}
.faq-question.active {
  color: #f9c851;
}

.trust-badges {
  color: #bbb;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 1rem;
  margin: 40px 0 32px 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.trust-badges span {
  white-space: nowrap;
  transition: color 0.2s;
}
.trust-badges span:hover {
  color: #22d3ee;
}
@media (max-width: 600px) {
  .trust-badges {
    gap: 10px;
    font-size: 0.95rem;
    flex-direction: column;
    align-items: center;
  }
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  min-width: 260px;
  background: linear-gradient(90deg, #09f0d1 0%, #2eafff 100%);
  color: #181818;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 32px;
  border: none;
  box-shadow: 0 4px 24px 0 rgba(9, 240, 209, 0.15);
  margin: 30px auto 0 auto;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
  cursor: pointer;
  padding: 0 32px;
  letter-spacing: 0.03em;
}
.cta-btn:hover {
  box-shadow: 0 6px 40px 0 #09f0d1;
  transform: scale(1.03);
  color: #181818; /* Keep text readable */
}

.buy-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap; /* good for mobile */
}

.buy-btn {
  min-width: 320px;
  padding: 1rem 2rem;
  font-size: 1.3rem;
  font-weight: bold;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-btn.buy-direct {
  background: linear-gradient(90deg, #10ffe8 0%, #2998ff 100%);
  color: #181c2f; /* Dark text for better contrast */
  box-shadow: 0 4px 24px 0 rgba(41, 152, 255, 0.12);
}

.buy-btn.buy-direct:hover {
  box-shadow: 0 6px 36px 0 rgba(16, 255, 232, 0.23);
  transform: translateY(-2px) scale(1.03);
  color: #181c2f;
}

.buy-btn.buy-mql5 {
  background: #23272f;
  color: #fff;
  border: 2px solid #454c64;
}

.buy-btn.buy-mql5:hover {
  background: #181c2f;
  color: #10ffe8;
  border-color: #10ffe8;
}
@media (max-width: 600px) {
  .buy-btn {
    min-width: 180px;
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }
  .buy-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}
.buy-btn.buy-direct {
  /* ...other styles... */
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.22);
}
.buy-btn,
.button, /* Add your button class here */
.demo-btn {
  /* If you use a special class for demo button */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px; /* or your preferred height */
  min-width: 240px; /* adjust as needed */
  padding: 0 32px; /* side padding */
  font-size: 1.2em;
  font-weight: 700;
  border-radius: 32px;
}
.site-header,
.main-header,
#header {
  z-index: 1000; /* keeps it above other content */
  background: rgba(17, 24, 39, 0.97); /* dark, almost opaque */
  box-shadow: 0 2px 16px 0 #00000022;
  transition: background 0.3s;
  /* If you want a slight blur (optional, modern look): */
  backdrop-filter: blur(8px);
}
.gallery-section {
  margin: 3em 0 4em 0;
  text-align: center;
}
.gallery-desc {
  color: #b0b8c9;
  margin-bottom: 2em;
  font-size: 1.13em;
}
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 420px;
  min-width: 220px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2em;
  justify-items: center;
  align-items: start;
  margin: 0 auto;
  max-width: 1200px;
}
.gallery-grid img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 2px 24px 0 #0af6c422, 0 2px 4px 0 #2228;
  transition: transform 0.22s, box-shadow 0.22s;
  background: #12161e;
  padding: 0.5em;
}
.gallery-grid img:hover {
  transform: scale(1.055) translateY(-4px);
  box-shadow: 0 8px 28px 0 #22d2ff55, 0 2px 8px 0 #0af6c4cc;
  z-index: 1;
}
.responsive-video {
  position: relative;
  width: 100%;
  max-width: 900px; /* adjust max size as needed */
  margin: 0 auto 1em auto;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 32px #2aceff29;
}
.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}
/* Global scrollbar styling for WebKit browsers */
::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #141b23;
}

::-webkit-scrollbar-thumb {
  background: #22aaff;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(34, 170, 255, 0.6);
}

::-webkit-scrollbar-thumb:hover {
  background: #2aceff;
}
a img {
  text-decoration: none;
  border: 0;
}
.chevron-animate {
  display: inline-block;
  animation: chevronBounce 1.5s infinite;
  font-size: 1.7em;
  color: #22aaff;
  text-align: center;
  margin-top: 0.5em;
}
@keyframes chevronBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(14px);
  }
}
/* Move buy-now button to bottom in mobile */
@media (max-width: 767px) {
  .buy-now-btn {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 16px;
    margin: 0 auto;
    width: 92vw;
    max-width: 480px;
    z-index: 9999;
    box-shadow: 0 8px 22px #21e6c1cc, 0 0 0 2px #22aaff7f;
    font-size: 1.15em;
    padding: 1em 0.5em;
    text-align: center;
    border-radius: 1.5em;
    background: linear-gradient(92deg, #21e6c1 0%, #22aaff 100%);
    color: #111 !important;
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  body {
    padding-bottom: 80px; /* space for fixed button */
  }
}
/* Responsive: Features section maging single column, left-aligned sa mobile */
@media (max-width: 767px) {
  #one .row {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  #one .col-4 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    margin-bottom: 0.5em;
  }
  #one ul {
    text-align: left !important;
    padding-left: 1.3em !important;
    list-style: none !important;
  }
  #one ul li {
    text-align: left !important;
    font-size: 1.1em;
    margin-bottom: 0.8em;
    width: 100% !important;
    margin-left: 0 !important;
  }
  #one header {
    text-align: left !important;
    margin-bottom: 1.2em;
  }
}
#notif-pop {
  color: #22aaff !important;
  text-shadow: 0 0 12px #22aaff, 0 0 24px #21e6c1aa;
  background: rgba(23, 30, 40, 0.91);
  border-radius: 18px;
  padding: 0.76em 1.45em;
  box-shadow: 0 2px 16px 0 #21e6c166;
  border: 1px solid #22aaff88;
  font-weight: 600;
  font-size: 1.06em;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  letter-spacing: 0.01em;
  transition: opacity 0.6s, background 0.2s;
  position: fixed;
  bottom: 16px;
  left: 24px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}
#promo-bar {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #21e6c1 40%, #22aaff 100%);
  color: #134052;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.08em;
  text-align: center;
  font-weight: 500;
  padding: 0.65em 0.9em 0.55em 0.9em;
  z-index: 1031;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px #22aaff0f;
  border-bottom: 1px solid #c7f5ef80;
}

#promo-bar .old-price {
  color: #e25c61;
  text-decoration: line-through;
  opacity: 0.75;
  margin: 0 0.15em;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 0.03em;
}

#promo-bar .new-price {
  color: #fff;
  background: #21e6c1;
  border-radius: 0.7em;
  padding: 0.08em 0.6em;
  font-size: 1.1em;
  font-weight: 700;
  margin: 0 0.25em;
  box-shadow: 0 0 8px #21e6c1a0;
  display: inline-block;
}

#promo-bar .promo-highlight {
  color: #16407a;
  font-weight: bold;
  margin-left: 0.45em;
  letter-spacing: 0.02em;
  font-size: 1.07em;
}

@media (max-width: 600px) {
  #promo-bar {
    font-size: 0.99em;
    padding: 0.63em 0.4em 0.53em 0.4em;
  }
  #promo-bar .promo-main {
    display: block;
    padding: 0;
    line-height: 1.6;
  }
}
.footer-main {
  background: #14151a;
  padding: 1.8em 0 1.2em 0;
  text-align: center;
  color: #aaa;
  font-size: 0.95em;
  animation: fadeIn 1.2s ease-in;
}

.footer-main a {
  color: #22aaff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-main a:hover {
  color: #ffffff;
}

.footer-disclaimer {
  margin-top: 1em;
  font-size: 0.98em;
}

.footer-credit {
  margin-top: 0.7em;
  font-size: 0.9em;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Preloader container */
/* Final Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0e0f13;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.7s ease;
}

.preloader-logo {
  width: 110px;
  animation: logoZoom 1s ease-out forwards;
  opacity: 0;
}

@keyframes logoZoom {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.powered-by {
  margin-top: 1em;
  color: #22aaff;
  font-size: 1em;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #22aaff;
  width: 0;
  animation: typing 2.4s steps(40, end) 1s forwards;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 320px;
  }
}

#custom-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0e0e0e;
  color: #00f0ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: monospace;
}

#loader-logo {
  width: 80px;
  opacity: 0;
  animation: logoZoom 1.2s ease-out forwards;
}

#loader-text {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #22aaff;
  width: 0;
  margin-top: 10px;
  font-size: 1rem;
  animation: typewriter 2.5s steps(40, end) 1.4s forwards,
    blinkCursor 0.75s step-end infinite;
}

@keyframes logoZoom {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: drop-shadow(0 0 2px #22aaff);
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 6px #22aaff);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 3px #22aaff);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 41ch;
  }
}

@keyframes blinkCursor {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: #22aaff;
  }
}
