body {
  font-family: 'Source Sans Pro', sans-serif; }

.bubble_dot {
  position: absolute;
  width: 0;
  height: 0;
  z-index: 5;
  opacity: .9;
  -moz-transition: linear 150ms;
  -webkit-transition: linear 150ms;
  -ms-transition: linear 150ms;
  transition: linear 150ms; }
  .bubble_dot.hidden {
    opacity: 0; }
  .bubble_dot p {
    position: absolute;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 130%; }
  .bubble_dot i {
    position: absolute;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    width: 30px;
    height: 30px;
    overflow: hidden;
    z-index: 10; }
    .bubble_dot i:before {
      content: '';
      position: absolute;
      -moz-transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      background-color: #fff;
      top: -13px;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 5px; }
  .bubble_dot.big {
    z-index: 6; }
    .bubble_dot.big p {
      font-size: 18px; }
  .bubble_dot.small {
    z-index: 4; }
    .bubble_dot.small p {
      font-size: 14px;
      padding: 16px; }
  .bubble_dot.tiny {
    z-index: 3; }
    .bubble_dot.tiny p {
      font-size: 12px;
      padding: 14px; }

.logo {
  position: relative;
  height: 100px;
  width: 96px;
  margin: 0 auto; }
  .logo a {
    text-decoration: none; }
    .logo a span {
      position: absolute;
      left: 0;
      text-transform: uppercase;
      font-weight: 900;
      font-size: 100px;
      line-height: 100px;
      top: 0; }
      .logo a span.w {
        color: #FF00C9;
        left: 0; }
      .logo a span.hub {
        left: 33px;
        mix-blend-mode: multiply;
        color: #02FF00; }
  .logo.white a span.w {
    color: #FF0079; }
  .logo.white a span.hub {
    mix-blend-mode: screen;
    color: #00FFFF; }

h1 {
  font-weight: 900;
  font-size: 60px;
  line-height: 63px;
  position: relative;
  display: inline-block;
  white-space: nowrap; }
  @media screen and (max-width: 600px) {
    h1 {
      font-size: 42px;
      line-height: 46px; } }
  h1.wrap {
    white-space: normal;
    position: absolute;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  h1:after {
    content: attr(data-text);
    position: relative;
    z-index: 1; }
  h1:before {
    content: attr(data-text);
    z-index: 0;
    position: absolute;
    top: 0;
    -moz-transition: left ease-out 0.15s;
    -webkit-transition: left ease-out 0.15s;
    -ms-transition: left ease-out 0.15s;
    transition: left ease-out 0.15s; }
  h1.white:after {
    mix-blend-mode: screen;
    color: #00FFFF; }
  h1.white:before {
    color: #FF0079;
    left: 3px; }
  h1.black:after {
    mix-blend-mode: multiply;
    color: #02FF00; }
  h1.black:before {
    color: #FF00C9;
    left: -3px; }
  h1:hover.white:before {
    animation: header_white 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    -webkit-animation: header_white 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    left: -3px; }
  h1:hover.black:before {
    animation: header_black 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    -webkit-animation: header_black 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    left: 3px; }

@keyframes header_white {
  75% {
    left: -12px; }
  100% {
    left: -3px; } }
@-webkit-keyframes header_white {
  50% {
    left: -12px; }
  100% {
    left: -3px; } }
@keyframes header_black {
  50% {
    left: 12px; }
  100% {
    left: 3px; } }
@-webkit-keyframes header_black {
  50% {
    left: 12px; }
  100% {
    left: 3px; } }
h3 {
  font-weight: normal;
  font-size: 21px;
  line-height: 32px; }

.screen_wrapper {
  position: relative;
  z-index: 1;
  min-height: 100%;
  overflow: hidden; }
  .screen_wrapper .screen {
    position: relative; }
    .screen_wrapper .screen .screen_inner {
      z-index: 2;
      position: relative;
      height: 100%; }

button {
  border: 0 solid;
  width: 270px;
  font-weight: bold;
  font-size: 20px;
  line-height: 32px;
  padding: 16px 0 18px;
  text-align: center;
  cursor: pointer; }
  button.reg {
    background-color: #000;
    color: #fff; }
  button.next {
    width: 66px;
    height: 66px;
    padding: 0;
    border-radius: 50%;
    background-color: #000;
    position: relative; }
    button.next img {
      -moz-transform: rotate(-90deg);
      -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
      left: 21px;
      position: absolute;
      top: 26px; }

.sw_0 {
  height: 100%;
  background-color: #0E0971; }
  .sw_0 .logo_wrapper {
    width: 150px;
    height: 150px;
    background-color: #fff;
    margin: 0 auto 20px;
    border-radius: 50%;
    position: relative; }
    .sw_0 .logo_wrapper .logo {
      position: absolute;
      top: 50%;
      left: 50%;
      -moz-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .sw_0 .screen {
    height: 100%; }
    .sw_0 .screen .screen_bg {
      position: absolute;
      left: -100px;
      height: 100%;
      z-index: 0; }
      @media screen and (min-width: 600px) {
        .sw_0 .screen .screen_bg {
          position: absolute;
          top: 50%;
          left: 50%;
          -moz-transform: translate(-50%, -50%);
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
          height: auto;
          min-width: 100%; } }
    .sw_0 .screen:after {
      content: '';
      background-color: #0E0971;
      opacity: .75;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1; }
    .sw_0 .screen .screen_inner {
      text-align: center; }
      .sw_0 .screen .screen_inner .text {
        position: absolute;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 550px;
        margin-top: -70px; }
        .sw_0 .screen .screen_inner .text h3 {
          color: #fff;
          padding-top: 19px; }
        @media screen and (max-width: 600px) {
          .sw_0 .screen .screen_inner .text {
            width: 100%; }
            .sw_0 .screen .screen_inner .text h3 {
              margin: 0 16px; } }
      .sw_0 .screen .screen_inner button {
        position: absolute;
        left: 50%;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 82px; }

.sw_1 {
  background-color: #5455f3;
  padding: 0 64px 0;
  z-index: 2;
  box-shadow: 0 -10px 20px 0 rgba(0, 0, 0, 0.3); }
  .sw_1 .next {
    position: absolute;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 82px;
    z-index: 100; }
  @media screen and (max-width: 600px) {
    .sw_1 {
      padding: 50px 40px; } }
  .sw_1 .screen .screen_inner {
    text-align: center;
    padding-top: 43px; }
    @media screen and (max-width: 600px) {
      .sw_1 .screen .screen_inner h1 {
        max-width: 280px;
        white-space: pre-wrap; } }
    .sw_1 .screen .screen_inner h3 {
      color: #fff;
      padding-top: 27px;
      width: 610px;
      margin: 0 auto 42px; }
      @media screen and (max-width: 600px) {
        .sw_1 .screen .screen_inner h3 {
          width: auto;
          text-align: left; } }
    .sw_1 .screen .screen_inner .blocks {
      font-size: 0;
      white-space: nowrap;
      padding-bottom: 200px; }
      @media screen and (max-width: 600px) {
        .sw_1 .screen .screen_inner .blocks {
          padding-bottom: 120px; } }
      .sw_1 .screen .screen_inner .blocks li {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        width: 250px;
        margin-right: 36px; }
        .sw_1 .screen .screen_inner .blocks li:last-of-type {
          margin-right: 0; }
        .sw_1 .screen .screen_inner .blocks li .img_placeholder {
          height: 180px;
          margin-bottom: 35px;
          border-radius: 10px;
          position: relative; }
          .sw_1 .screen .screen_inner .blocks li .img_placeholder img {
            position: absolute;
            left: 50%;
            -moz-transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            bottom: -30px; }
          .sw_1 .screen .screen_inner .blocks li .img_placeholder span {
            position: absolute;
            top: 50%;
            left: 50%;
            -moz-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            font-size: 236px;
            line-height: 236px;
            font-weight: bold;
            color: #FFFFFF;
            z-index: 0;
            mix-blend-mode: normal;
            opacity: 0.3; }
        .sw_1 .screen .screen_inner .blocks li p {
          font-size: 16px;
          line-height: 24px;
          color: #fff;
          text-align: left;
          margin-left: 10px; }
        @media screen and (max-width: 600px) {
          .sw_1 .screen .screen_inner .blocks li {
            display: block;
            width: auto;
            margin-right: 0;
            margin-bottom: 40px; }
            .sw_1 .screen .screen_inner .blocks li .img_placeholder {
              margin-bottom: 40px; } }

.sw_2 {
  background-color: #fff;
  padding: 43px 0 50px;
  z-index: 3;
  box-shadow: 0 0px 20px 2px rgba(0, 0, 0, 0.3); }
  @media screen and (max-width: 600px) {
    .sw_2 {
      padding: 50px 0; } }
  .sw_2 .screen .screen_inner {
    text-align: center; }
    .sw_2 .screen .screen_inner .pano_centrer {
      position: relative; }
    .sw_2 .screen .screen_inner .screen_bg_wrapper {
      position: relative; }
    .sw_2 .screen .screen_inner .text {
      width: 610px;
      margin: 0 auto;
      position: relative;
      z-index: 2; }
      .sw_2 .screen .screen_inner .text h3 {
        padding-top: 27px; }
    .sw_2 .screen .screen_inner .screen_bg {
      width: 100%;
      position: relative;
      z-index: 1;
      margin-top: -27px;
      margin-bottom: 12px; }
    .sw_2 .screen .screen_inner .screen_bottom {
      position: relative;
      z-index: 2; }
      .sw_2 .screen .screen_inner .screen_bottom p {
        width: 756px;
        margin: 17px auto 27px;
        font-size: 16px;
        line-height: 24px; }
    @media screen and (max-width: 600px) {
      .sw_2 .screen .screen_inner .text {
        width: auto;
        margin: 0 40px 30px; }
        .sw_2 .screen .screen_inner .text h3 {
          text-align: left; }
      .sw_2 .screen .screen_inner .pano_centrer {
        height: 460px; }
      .sw_2 .screen .screen_inner .screen_bg_wrapper {
        height: 140%;
        position: absolute;
        left: 50%;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: -100px;
        margin-left: -120px; }
        .sw_2 .screen .screen_inner .screen_bg_wrapper .bubble_dot {
          margin-top: -20px; }
        .sw_2 .screen .screen_inner .screen_bg_wrapper img {
          height: 100%;
          width: auto; }
      .sw_2 .screen .screen_inner .screen_bottom p {
        width: auto;
        margin: 17px 40px 27px; } }

.sw_3 {
  background: linear-gradient(180deg, #FFE200 40.84%, #FF68FD 64.91%);
  padding: 43px 64px 46px;
  height: auto; }
  .sw_3 h1 {
    white-space: pre-wrap;
    margin-bottom: 14px; }
  .sw_3 .part_a h1 {
    max-width: 450px; }
  .sw_3 .part_b h1 {
    max-width: 600px; }
  @media screen and (max-width: 600px) {
    .sw_3 {
      padding: 50px 40px; } }
  .sw_3 .screen {
    height: auto; }
    .sw_3 .screen .screen_inner {
      height: auto;
      text-align: center; }
      .sw_3 .screen .screen_inner .part_a {
        margin-bottom: 140px; }
        @media screen and (max-width: 600px) {
          .sw_3 .screen .screen_inner .part_a {
            margin-bottom: 40px; } }
        .sw_3 .screen .screen_inner .part_a h1 {
          margin-bottom: 44px; }
          @media screen and (max-width: 600px) {
            .sw_3 .screen .screen_inner .part_a h1 {
              max-width: 240px;
              white-space: pre-wrap; } }
        .sw_3 .screen .screen_inner .part_a .screen_bg {
          width: 100%;
          margin-bottom: 42px; }
        .sw_3 .screen .screen_inner .part_a .blocks {
          font-size: 0;
          white-space: nowrap;
          width: 800px;
          margin: 0 auto; }
          .sw_3 .screen .screen_inner .part_a .blocks li {
            width: 45%;
            display: inline-block;
            vertical-align: top;
            text-align: left;
            white-space: normal; }
            .sw_3 .screen .screen_inner .part_a .blocks li:first-of-type {
              margin-right: 10%; }
            @media screen and (max-width: 600px) {
              .sw_3 .screen .screen_inner .part_a .blocks li {
                display: block;
                margin-bottom: 40px; }
                .sw_3 .screen .screen_inner .part_a .blocks li:first-of-type {
                  margin-right: 0; } }
            .sw_3 .screen .screen_inner .part_a .blocks li p {
              font-size: 16px;
              line-height: 24px; }
              .sw_3 .screen .screen_inner .part_a .blocks li p strong {
                display: block; }
          @media screen and (max-width: 600px) {
            .sw_3 .screen .screen_inner .part_a .blocks {
              width: 100%; }
              .sw_3 .screen .screen_inner .part_a .blocks li {
                width: 100%; } }
      .sw_3 .screen .screen_inner .part_b {
        position: relative;
        padding-top: 55px; }
        .sw_3 .screen .screen_inner .part_b h1 {
          top: 0; }
        .sw_3 .screen .screen_inner .part_b .blocks {
          font-size: 0;
          max-width: 1200px;
          margin: 0 auto; }
          .sw_3 .screen .screen_inner .part_b .blocks li {
            width: 30%;
            margin: 0 1% 30px 2%;
            display: inline-block;
            vertical-align: top;
            text-align: left;
            white-space: normal; }
            .sw_3 .screen .screen_inner .part_b .blocks li .img_placeholder {
              height: 120px;
              width: 160px;
              margin-bottom: 20px;
              border-radius: 10px;
              position: relative; }
              .sw_3 .screen .screen_inner .part_b .blocks li .img_placeholder img {
                position: absolute;
                left: 50%;
                -moz-transform: translateX(-50%);
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                transform: translateX(-50%);
                bottom: 0; }
            .sw_3 .screen .screen_inner .part_b .blocks li p {
              font-size: 16px;
              line-height: 24px;
              margin: 0 10px; }
              .sw_3 .screen .screen_inner .part_b .blocks li p strong {
                display: block; }
            @media screen and (max-width: 600px) {
              .sw_3 .screen .screen_inner .part_b .blocks li {
                display: block;
                margin: 0 0 30px;
                width: auto; }
                .sw_3 .screen .screen_inner .part_b .blocks li:first-of-type {
                  margin-right: 0; }
                .sw_3 .screen .screen_inner .part_b .blocks li .img_placeholder {
                  margin-bottom: 10px; } }

.sw_4 {
  min-height: 0;
  text-align: center;
  background-color: #530971;
  padding: 43px 64px 46px;
  z-index: 3;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); }
  .sw_4 h1 {
    margin-bottom: 68px; }
  @media screen and (max-width: 600px) {
    .sw_4 {
      padding-left: 0;
      padding-right: 0; }
      .sw_4 h1 {
        max-width: 240px;
        white-space: pre-wrap; } }
  .sw_4 .roadmap_wrapper {
    width: 980px;
    display: block;
    margin: 40px auto 44px;
    text-align: left;
    position: relative; }
    .sw_4 .roadmap_wrapper .check {
      position: absolute;
      left: -53px;
      top: -29px;
      z-index: 0; }
    @media screen and (max-width: 600px) {
      .sw_4 .roadmap_wrapper .check {
        left: -13px; } }
    .sw_4 .roadmap_wrapper .roadmap_inner {
      position: relative;
      z-index: 1;
      white-space: nowrap;
      font-size: 0; }
      @media screen and (max-width: 600px) {
        .sw_4 .roadmap_wrapper .roadmap_inner {
          padding-left: 40px; } }
      .sw_4 .roadmap_wrapper .roadmap_inner .rm_item {
        width: 170px;
        margin-right: 75px;
        position: relative;
        color: #fff;
        white-space: normal;
        display: inline-block;
        vertical-align: top; }
        .sw_4 .roadmap_wrapper .roadmap_inner .rm_item span {
          font-size: 16px;
          line-height: 16px;
          display: inline-block;
          margin-bottom: 4px;
          opacity: .5; }
        .sw_4 .roadmap_wrapper .roadmap_inner .rm_item p {
          font-size: 16px;
          line-height: 24px;
          position: relative;
          z-index: 2; }
          .sw_4 .roadmap_wrapper .roadmap_inner .rm_item p strong {
            display: inline-block;
            padding-right: 8px; }
        .sw_4 .roadmap_wrapper .roadmap_inner .rm_item .arrow {
          position: absolute;
          right: -65px;
          top: 29px;
          z-index: 0; }
        .sw_4 .roadmap_wrapper .roadmap_inner .rm_item.r0 {
          margin-top: 104px; }
        .sw_4 .roadmap_wrapper .roadmap_inner .rm_item.r1 {
          margin-top: 104px; }
          .sw_4 .roadmap_wrapper .roadmap_inner .rm_item.r1 .arrow {
            top: -73px;
            right: -70px;
            height: 166px;
            width: 127px;
            overflow: hidden; }
            .sw_4 .roadmap_wrapper .roadmap_inner .rm_item.r1 .arrow img {
              position: absolute;
              right: 0;
              top: 0; }
        .sw_4 .roadmap_wrapper .roadmap_inner .rm_item.r4 .arrow {
          height: 8px;
          width: 102px;
          overflow: hidden; }
          .sw_4 .roadmap_wrapper .roadmap_inner .rm_item.r4 .arrow img {
            position: absolute;
            right: 0;
            top: 0; }
      .sw_4 .roadmap_wrapper .roadmap_inner .rm_container {
        width: 490px;
        white-space: normal;
        display: inline-block;
        vertical-align: top; }
        .sw_4 .roadmap_wrapper .roadmap_inner .rm_container .rm_item {
          display: inline-block;
          vertical-align: top;
          margin-bottom: 72px; }
    @media screen and (max-width: 600px) {
      .sw_4 .roadmap_wrapper {
        width: 100%; }
        .sw_4 .roadmap_wrapper .roadmap_inner {
          width: 100%;
          overflow: auto; } }

.sw_gallery {
  padding: 10px;
  min-height: 0;
  background-color: #000; }
  @media screen and (max-width: 600px) {
    .sw_gallery {
      padding: 20px 0 0; } }
  .sw_gallery .gallery_wrapper {
    position: relative;
    font-size: 0;
    white-space: nowrap; }
    .sw_gallery .gallery_wrapper .gallery_view {
      position: relative;
      display: inline-block;
      vertical-align: top;
      width: calc(100% - 187px);
      height: 530px;
      background-color: #fff;
      overflow: hidden; }
      .sw_gallery .gallery_wrapper .gallery_view img {
        position: absolute;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 100%; }
    .sw_gallery .gallery_wrapper .gallery_preview {
      display: inline-block;
      vertical-align: top;
      width: 187px;
      height: 530px;
      white-space: normal; }
      .sw_gallery .gallery_wrapper .gallery_preview li {
        display: inline-block;
        vertical-align: top;
        width: 177px;
        height: 125px;
        margin: 0 0 10px 10px;
        overflow: hidden;
        background-color: #fff; }
        .sw_gallery .gallery_wrapper .gallery_preview li img {
          height: 100%; }
    @media screen and (max-width: 600px) {
      .sw_gallery .gallery_wrapper .gallery_view {
        width: auto;
        height: auto;
        margin: 5px; }
        .sw_gallery .gallery_wrapper .gallery_view img {
          top: auto;
          left: auto;
          right: auto;
          bottom: auto;
          -moz-transform: translate(0, 0);
          -webkit-transform: translate(0, 0);
          -ms-transform: translate(0, 0);
          transform: translate(0, 0);
          position: relative; }
      .sw_gallery .gallery_wrapper .gallery_preview {
        width: 100%;
        height: auto;
        text-align: center;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap; }
        .sw_gallery .gallery_wrapper .gallery_preview li {
          margin: 0 0 20px; } }

.sw_form {
  height: 100%;
  min-height: 400px;
  background-color: #2F2647; }
  .sw_form .form {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 750px;
    text-align: center; }
    .sw_form .form .form_wrapper {
      width: 450px;
      margin: 0 auto; }
    .sw_form .form .post_message {
      display: none; }
    .sw_form .form.submitted .form_holder {
      display: none; }
    .sw_form .form.submitted .post_message {
      display: block; }
      .sw_form .form.submitted .post_message h1 {
        white-space: pre-wrap;
        max-width: 100%;
        margin-bottom: 30px; }
    .sw_form .form p {
      color: #fff;
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 32px; }
    .sw_form .form input {
      width: 450px;
      height: 53px;
      background: #FFFFFF;
      border: 1px solid #D4D4D4;
      box-sizing: border-box;
      border-radius: 4px;
      margin-bottom: 16px;
      font-size: 16px;
      line-height: 20px;
      font-family: 'Source Sans Pro', sans-serif;
      padding: 0 15px;
      text-align: left; }
      .sw_form .form input.error {
        background-color: indianred; }
    .sw_form .form button {
      margin-top: 16px; }
    @media screen and (max-width: 600px) {
      .sw_form .form {
        width: calc(100% - 40px); }
        .sw_form .form .form_wrapper {
          width: 100%; }
        .sw_form .form input {
          width: 100%; } }

.footer {
  position: relative;
  height: 80px;
  padding-top: 8px;
  background-color: #2F2647; }
  .footer:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    background-color: #979797;
    opacity: .4; }
  .footer .social {
    position: absolute;
    z-index: 2;
    left: 42px;
    top: 8px;
    font-size: 0;
    white-space: nowrap; }
    .footer .social a {
      display: inline-block;
      vertical-align: top;
      text-decoration: none;
      opacity: .5;
      margin-right: 40px; }
      .footer .social a:hover {
        opacity: .7; }
  .footer .bottom_nav {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 18px; }
    .footer .bottom_nav a {
      display: inline-block;
      color: #fff;
      opacity: .5;
      text-decoration: none;
      margin: 0 15px; }
      .footer .bottom_nav a:hover {
        opacity: .7; }
  .footer .email {
    text-align: center;
    font-size: 14px;
    line-height: 20px; }
    .footer .email a, .footer .email span {
      display: inline-block;
      color: #fff;
      opacity: .5;
      text-decoration: none;
      margin: 0 15px; }
      .footer .email a:hover, .footer .email span:hover {
        opacity: .7; }
  .footer .cpr {
    position: absolute;
    right: 42px;
    top: 8px;
    white-space: nowrap; }
    .footer .cpr a, .footer .cpr span {
      display: inline-block;
      color: #fff;
      opacity: .5;
      text-decoration: none;
      margin: 0 15px; }
  @media screen and (max-width: 600px) {
    .footer {
      padding-top: 24px;
      padding-bottom: 26px;
      height: auto; }
      .footer .social {
        position: relative;
        text-align: center;
        top: auto;
        left: auto;
        margin-bottom: 16px; }
        .footer .social a {
          margin: 0 20px; }
      .footer .cpr {
        position: relative;
        right: auto;
        top: auto;
        text-align: center;
        padding-top: 5px; } }

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