/* Reset
-------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  color: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

*:focus {
  outline: 0;
}

body {
  position: relative;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

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;
}

/* Header
------------------------------------------------------------ */
header {
  position: absolute;
  top: 28px;
  z-index: 100;
  width: 100%;
  height: 64px;
  background-color: transparent;
  box-shadow: none;
}

header.fixed {
  position: fixed;
  top: 0;
  background-color: #fff;
  box-shadow: 0 -1px 20px rgba(0, 0, 0, 0.16);
  transition: all .3s;
  transition-property: box-shadow, background-color;
}

header.light-background .header-links li a {
  color: #727578;
}

header.light-background .header-links li a:hover {
  color: #242628;
}

header.light-background .header-links li a.button {
  color: #fff;
  background-color: #cc007a;
}

header.light-background .header-links li a.button:hover {
  background-color: #a90467;
}

header.light-background .header-logo svg path {
  fill: #10d4f1;
}

header .inner {
  width: 100%;
  max-width: 100%;
  padding: 0 60px;
}

@media (min-width: 1420px) {
  header .inner {
    padding: 0;
    margin: 0 auto;
    max-width: 1300px;
  }
}

header .header-logo {
  width: 138px;
  height: auto;
  margin-top: 19px;
  display: inline-block;
}

header .header-logo svg {
  width: 100%;
  height: auto;
}

header .header-logo svg path {
  fill: #fff;
}

header .header-links {
  position: absolute;
  right: 60px;
  top: 13px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

header .header-links li a {
  padding: 6px 14px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
}

header .header-links li a.button {
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 24px 10px 24px;
  margin-left: 12px;
  background-color: rgba(255, 255, 255, 0.25);
}

header .header-links li a.button:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.32);
}

header .header-links li a:hover {
  color: #fff;
}

@media (min-width: 1420px) {
  header .header-links {
    right: 0;
  }
}

/* Slide-in Menu
------------------------------ */
header button.lines-button {
  display: none;
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 5;
  float: right;
  padding: 14px 16px 24px;
  margin-right: -16px;
  cursor: pointer;
  background: transparent;
  box-shadow: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

header button.lines-button:hover {
  background-color: transparent;
}

header button.lines-button:hover .lines {
  opacity: 1;
}

header button.lines-button:focus {
  box-shadow: none;
}

header .lines {
  display: inline-block;
  width: 26px;
  height: 3px;
  opacity: .8;
  background: #242628;
  border-radius: 1.85714px;
  position: relative;
  transition: all .3s;
}

header .lines:before, header .lines:after {
  display: inline-block;
  width: 26px;
  height: 3px;
  background: #242628;
  border-radius: 1.85714px;
  transition: all .3s;
  position: absolute;
  left: 0;
  content: '';
  transform-origin: 1.85714px center;
}

header .lines:before {
  top: -6.93333px;
}

header .lines:after {
  top: 6.93333px;
}

header .slide-in-menu {
  position: fixed;
  z-index: 4;
  top: 0;
  right: -440px;
  transform: translateX(0);
  width: 440px;
  padding: 0 0 100%;
  text-align: left;
  transition: all .6s ease-in-out .15s;
}

@media (max-width: 440px) {
  header .slide-in-menu {
    width: 100%;
  }
}

header .slide-in-menu p {
  margin-bottom: 18px;
  color: #fff;
  font-size: 15px;
  line-height: 19px;
}

header .slide-in-menu .slide-in-links {
  height: 1000px;
  background: #fff;
}

header .slide-in-menu nav {
  opacity: 0;
  margin-left: 32px;
  transition: opacity .5s, transform .8s .8s;
  transform: translateY(-10px);
}

header .slide-in-menu nav .header-logo {
  margin: 40px 0 22px 13px;
}

header .slide-in-menu nav li {
  width: 100%;
  text-align: left;
}

header .slide-in-menu nav a {
  display: inline-block;
  padding: 10px 18px;
  margin-left: -4px;
  font-size: 16px;
  cursor: pointer;
  color: #242628;
}

header .slide-in-menu nav a:hover {
  color: blue;
}

header .slide-in-menu nav a.button {
  padding: 14px 24px;
  margin: 11px 0 0 14px;
  color: #fff;
}

header .slide-in-menu nav a.button:hover {
  color: #fff;
}

@media (max-width: 900px) {
  header button.lines-button {
    display: block;
    right: 7%;
  }
}

@media (max-width: 900px) and (max-width: 500px) {
  header button.lines-button {
    right: 0;
  }
}

@media (max-width: 900px) {
  header .header-links {
    display: none;
  }
  header .inner {
    padding: 0 7%;
  }
}

.mask {
  pointer-events: none;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  background: #000;
  transition: opacity .5s;
}

body.slide-in-nav {
  height: 100%;
  overflow: hidden;
}

body.slide-in-nav header .slide-in-menu {
  transform: translateX(-440px);
}

body.slide-in-nav header .slide-in-menu nav {
  opacity: 1;
  transform: translateY(0);
  transition: all .7s .75s;
}

body.slide-in-nav button.lines-button .lines {
  background: transparent;
}

body.slide-in-nav button.lines-button .lines:before, body.slide-in-nav button.lines-button .lines:after {
  transform-origin: 50% 50%;
  top: 0;
  width: 26px;
}

body.slide-in-nav button.lines-button .lines:before {
  transform: rotate3d(0, 0, 1, 45deg);
}

body.slide-in-nav button.lines-button .lines:after {
  transform: rotate3d(0, 0, 1, -45deg);
}

body.slide-in-nav .mask {
  z-index: 3;
  opacity: .5;
  pointer-events: initial;
}

/* Homepage
------------------------------------------------------------ */
.hero {
  height: 710px;
  text-align: center;
  background: 50%/cover url("../images/home-hero-background.jpg") no-repeat #000321;
}

.hero * {
  color: #fff;
}

body,
html {
  width: 100%;
  height: 100%;
}

body {
  color: #242628;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

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

a,
button {
  transition: all .2s;
}

h1 {
  font-size: 24px;
}

p {
  font-size: 14px;
  line-height: 1.3;
}

a {
  color: #cc007a;
}

/* Max Body Width */
html {
  background-color: #f8f8f8;
}

html body {
  max-width: 2100px;
  margin: 0 auto;
  color: inherit;
  background-color: #fff;
}

html body header {
  max-width: 2100px;
}

html * {
  font-family: "test", Arial, sans-serif;
  box-sizing: border-box;
  color: #242628;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

.inner {
  position: relative;
  max-width: 1300px;
  width: 86%;
  margin: 0 auto;
}

#content {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #cc007a;
  transition: all .17s;
}

p {
  line-height: 1.4;
  font-weight: 400;
}

.button,
button {
  display: inline-block;
  padding: 0.9em 1.7em;
  border-radius: 30px;
  font-weight: normal;
  color: #fff;
  line-height: 1em;
  background-color: #cc007a;
  cursor: pointer;
  transition: all .2s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}

.button:hover,
button:hover {
  background-color: #a90467;
}

.button.blue,
button.blue {
  background-color: #10d4f1;
}

.button.blue:hover,
button.blue:hover {
  background-color: blue;
}

.main-content > section {
  padding-top: 200px;
}

/* Fonts
-------------------------------------------------------------- */
@font-face {
  font-family: 'test';
  src: url("../fonts/CalibreRegular.woff") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: 'test';
  src: url("../fonts/CalibreMedium.woff") format("woff");
  font-weight: 500;
}

@font-face {
  font-family: 'test';
  src: url("../fonts/CalibreSemibold.woff") format("woff");
  font-weight: 600;
}
