@font-face {
  font-family: 'Avenir Next';
  src: url("./fonts/AvenirNext-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: 'Avenir Next';
  src: url("./fonts/AvenirNext-Bold.woff2") format("woff2"), url("./fonts/AvenirNext-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal; }

html, body {
  margin: 0;
  font-family: 'Avenir Next', sans-serif; }

body {
  min-height: 100%;
  background-image: url(../img/white-background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

h1 {
  display: block;
  font-size: 60px;
  color: #5fa7b9; }
  @media (max-width: 767px) {
    h1 {
      font-size: 40px; } }

p {
  max-width: 600px;
  margin: auto; }

a {
  display: block;
  text-decoration: none; }

.btn {
  position: relative;
  margin: 1em;
  padding: .5em 2em;
  font-size: 24px;
  color: #5fa7b9;
  border: .2em solid #323232;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }
  .btn:hover {
    color: #fff;
    background-color: #5fa7b9; }
  .btn .text-over {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 101%;
    height: 101%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: .8em;
    color: #fff;
    background-color: #323232;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
  .btn:hover .text-over {
    opacity: 1; }

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s; }
  .header.solid {
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1); }
  .header .logo {
    width: calc(100% - 160px);
    max-width: 500px;
    margin: 40px; }

.hamburger {
  width: 80px;
  height: 60px;
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1001; }
  .hamburger > div {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s; }
  .hamburger > div:first-of-type {
    width: 35px;
    height: 4px;
    position: absolute;
    top: 22px;
    right: 15px;
    background-color: #323232; }
  .hamburger > div:last-of-type {
    width: 50px;
    height: 4px;
    position: absolute;
    top: 34px;
    right: 15px;
    background-color: #323232; }
  .hamburger.active > div {
    background-color: #fff;
    top: 50%;
    left: 50%;
    width: 50%; }
  .hamburger.active > div:first-of-type {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg); }
  .hamburger.active > div:last-of-type {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg); }
  @media (max-width: 767.98px) {
    .hamburger:not(.active) {
      width: 60px;
      height: 40px; }
      .hamburger:not(.active) > div:first-of-type {
        width: 25px;
        height: 3px;
        top: 23px; }
      .hamburger:not(.active) > div:last-of-type {
        width: 35px;
        height: 3px;
        top: 33px; } }

.slider-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  background-color: rgba(50, 50, 50, 0.98);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: 1000; }
  .slider-menu a {
    font-size: 24px;
    color: #fff;
    margin: 10px; }
    .slider-menu a span {
      margin: 10px; }
    .slider-menu a i {
      opacity: 0;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
      .slider-menu a i:first-of-type {
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px); }
      .slider-menu a i:last-of-type {
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px); }
    .slider-menu a:hover i {
      opacity: 1;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0); }
  .slider-menu.active {
    right: 0; }

#home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  #home .main {
    max-width: 90%;
    margin: auto;
    text-align: center; }
    #home .main .logo {
      width: 1200px;
      max-width: 90%;
      margin-bottom: 30px; }
  #home .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700; }
    @media (max-width: 767.98px) {
      #home .buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }

.game.swab-the-deck {
  display: block;
  width: 90%;
  max-width: 400px;
  margin: auto;
  padding: 140px 0;
  cursor: default; }
  .game.swab-the-deck .title-screen {
    width: 100%;
    border-radius: 20px;
    -webkit-box-shadow: 2px 16px 31px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 2px 16px 31px 0px rgba(0, 0, 0, 0.35);
    margin-bottom: 40px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer; }
    .game.swab-the-deck .title-screen:hover {
      -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
      transform: scale(1.03); }
  .game.swab-the-deck .app-store {
    display: block;
    width: 50%;
    margin: auto;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer; }
    .game.swab-the-deck .app-store:hover {
      -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
      transform: scale(1.03); }

h1 {
  margin-top: 140px;
  font-size: 40px;
  text-decoration: underline;
  color: #323232;
  text-align: center; }

.policy-content {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 50px; }
  .policy-content p {
    max-width: none; }
  .policy-content a {
    color: #1d88a8; }

.support {
  width: 90%;
  max-width: 800px;
  margin: auto;
  padding-top: 300px;
  text-align: center; }
  .support a {
    color: #1d88a8; }

/*# sourceMappingURL=main.css.map */