/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

@charset "UTF-8";

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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}


html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

* {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  box-sizing: border-box;
  cursor: default;
}

html, body {
  height: 100%;
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
  position: relative;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  vertical-align: bottom;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

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

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td, th {
  padding: 0;
}

body, button, input, select, textarea {
  color: #ffffff;
  font-family: 'Lato', sans-serif;
  line-height: 1.3;
  font-size: 14px;
  /*letter-spacing: 2px;*/
}

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;
 
	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
 
	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;
}
 
.fade-in.one {
-webkit-animation-delay: 0.7s;
-moz-animation-delay: 0.7s;
animation-delay: 0.7s;
}
 
.fade-in.two {
-webkit-animation-delay: 1.2s;
-moz-animation-delay:1.2s;
animation-delay: 1.2s;
}
 
.fade-in.three {
-webkit-animation-delay: 1.6s;
-moz-animation-delay: 1.6s;
animation-delay: 1.6s;
} 

.fade-in.four {
-webkit-animation-delay: 2.1s;
-moz-animation-delay: 2.1s;
animation-delay: 2.1s;
}

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

  body, button, input, select, textarea {
    font-size: 16px;
  }

}

@media screen and (min-width: 1025px) {

  body, button, input, select, textarea {
    font-size: 16px;
  }

}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h2 {
  font-size: 1.22em;
}

h3 {
  font-size: 1.34em;
  /*text-transform: uppercase;*/
  margin-bottom: 1em;
}

h4 {
  font-size: 1em;
  /*text-transform: uppercase;*/
  margin-bottom: .5em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 1em;
}

p {
  margin-bottom: .8em;
  font-family: 'Lato', sans-serif;
  letter-spacing:normal;
}

p:last-child {
  margin-bottom: 0;
}

p strong, p b {
  font-weight: 700;
}

a {
  /* 
  color: #3cffbc;
  */
  color: #fff;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  outline: 0;
}

strong {
  font-weight: 700;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote, q {
  quotes: "" "";
}

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

code, kbd, tt, var {
  font-family: "Andale Mono", Consolas, monospace;
}

abbr, acronym {
  cursor: help;
}

.bigger {
  font-size: 140%;
}

.big {
  font-size: 120%;
}

.smaller {
  font-size: 60%;
}

.serif {
  font-family: "Georgia", "Times New Roman", serif;
}

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

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

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

body {
  background-color: #292928;
  text-align: left;
}

body.noscroll {
  overflow: hidden;
}

figure img {
  width: 100%;
}

img {
  max-width: 100%;
}

img.full {
  width: 100%;
}

hr {
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #1a1a1a;
}

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

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix:after, .inner:after, header:after, section:after, footer:after {
  content: "";
  display: table;
  clear: both;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

[class^="col"] {
  float: left;
  width: 100%;
}

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

  .col-75 {
    width: 75%;
  }

  .col-66 {
    width: 66.6%;
  }

  .col-50 {
    width: 50%;
  }

  .col-33 {
    width: 33.3%;
  }

  .col-25 {
    width: 25%;
  }

  .col-20 {
    width: 20%;
  }
}

.relative {
  position: relative;
}

.bottom {
  position: absolute;
  bottom: 0;
}

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

  .mobile {
    display: none;
  }

}

.tablet {
  display: none;
}

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

  .tablet {
    display: block;
  }

}

.tablet-only {
  display: none;
}

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

  .tablet-only {
    display: block;
  }

}

.desktop {
  display: none;
}

@media screen and (min-width: 1025px) {

  .desktop {
    display: block;
  }
  
}

.inner {
  width: 85%;
  max-width: 640px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 10% 0;
}
@media screen and (min-width: 1025px) {

  .inner {
    padding: 90px 0;
  }

}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.bg-accent {
  background-color: #3cffbc;
  color: #ffffff;
}

.bg-mid {
  background-color: #1a1a1a;
}

.bg-dark {
  background-color: #000000;
  color: #ffffff;
}

.text-accent {
  color: #3cffbc;
}

.transition {
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.p-lr {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {

  .p-lr {
    padding-left: 15px;
    padding-right: 15px;
  }

}

@media screen and (min-width: 1025px) {

  .p-lr {
    padding-left: 30px;
    padding-right: 30px;
  }

}

.p-l {
  padding-left: 0;
}

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

  .p-l {
    padding-left: 15px;
  }

}

@media screen and (min-width: 1025px) {

  .p-l {
    padding-left: 30px;
  }

}

.p-r {
  padding-right: 0;
}

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

  .p-r {
    padding-right: 15px;
  }

}

@media screen and (min-width: 1025px) {

  .p-r {
    padding-right: 30px;
  }

}

.pb-0 {
  padding-bottom: 0;
}

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

  .pb-0 {
    padding-bottom: 15px;
  }

}

@media screen and (min-width: 1025px) {

  .pb-0 {
    padding-bottom: 30px;
  }

}

.p-90 {
  padding: 10%;
}
@media screen and (min-width: 768px) {

  .p-90 {
    padding: 6%;
  }

}

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

  .col-50 .p-90 {
    padding: 12%;
  }

}

table {
  width: 100%;
}

table thead {
  font-family: Helvetica, Arial, sans-serif;
}

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

table tr td {
  width: 33.3%;
  padding: 10px 0;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px
}

.container:after {
    content: "";
    display: table;
    clear: both
}

@media (min-width:576px) {
    .container {
        padding-right: 15px;
        padding-left: 15px
    }
}

@media (min-width:768px) {
    .container {
        padding-right: 15px;
        padding-left: 15px
    }
}

@media (min-width:992px) {
    .container {
        padding-right: 15px;
        padding-left: 15px
    }
}

@media (min-width:1200px) {
    .container {
        padding-right: 15px;
        padding-left: 15px
    }
}

@media (min-width:576px) {
    .container {
        width: 540px;
        max-width: 100%
    }
}

@media (min-width:768px) {
    .container {
        width: 720px;
        max-width: 100%
    }
}

@media (min-width:992px) {
    .container {
        width: 960px;
        max-width: 100%
    }
}

@media (min-width:1200px) {
    .container {
        width: 1140px;
        max-width: 100%
    }
}