/* Global */
.clear {
  clear: both;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  position: relative;
  font-size: 16px;
  line-height: 18px;
}
ul,
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
textarea {
  resize: none;
}
.hide {
  display: none;
}
/* Vendor */
.v-styleguide {
  margin: 3%;
}
.sg > h1 {
  font-size: 40px;
  margin: 3%;
}
/*
 * fullPage 2.9.4
 * https//github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;
/*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#superContainer {
  height: 100%;
  position: relative;
/* Touch detection for Windows 8 */
  -ms-touch-action: none;
/* IE 11 on Windows Phone 8.1*/
  touch-action: none;
}
.fp-section {
  position: relative;
  -webkit-box-sizing: border-box;
/* Safari<=5 Android<=3 */
  -moz-box-sizing: border-box;
/* <=28 */
  box-sizing: border-box;
}
.fp-slide {
  float: left;
}
.fp-slide,
.fp-slidesContainer {
  height: 100%;
  display: block;
}
.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
/* Safari<=6 Android<=4.3 */
  transition: all 0.3s ease-out;
}
.fp-section.fp-table,
.fp-slide.fp-table {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.fp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.fp-slidesContainer {
  float: left;
  position: relative;
}
.fp-controlArrow {
  -webkit-user-select: none;
/* webkit (safari,  chrome) browsers */
  -moz-user-select: none;
/* mozilla browsers */
  -khtml-user-select: none;
/* webkit (konqueror) browsers */
  -ms-user-select: none;
/* IE10+ */
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -38px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
  overflow: hidden;
  position: relative;
}
.fp-scroller {
  overflow: hidden;
}
.iScrollIndicator {
  border: 0 !important;
}
.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}
#fp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
}
#fp-nav.right {
  right: 17px;
}
#fp-nav.left {
  left: 17px;
}
.fp-slidesNav {
  position: absolute;
  z-index: 4;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.fp-slidesNav.bottom {
  bottom: 17px;
}
.fp-slidesNav.top {
  top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative;
}
.fp-slidesNav ul li {
  display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul lihover a.active span,
.fp-slidesNav ul lihover a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #333;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
#fp-nav ul lihover a span,
.fp-slidesNav ul lihover a span {
  width: 10px;
  height: 10px;
  margin: -5px 0px 0px -5px;
}
#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 0;
  width: 0;
  cursor: pointer;
}
#fp-nav ul lihover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1;
}
#fp-nav ul li .fp-tooltip.right {
  right: 20px;
}
#fp-nav ul li .fp-tooltip.left {
  left: 20px;
}
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
  height: auto !important;
}
.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
  height: auto !important;
}
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
/* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stageafter {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
/* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.no-js .owl-carousel {
  display: block;
}
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
.owl-height {
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-iconhover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*='owl-'] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*='owl-']hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dothover span {
  background: #869791;
}
/* Mixins */
@-moz-keyframes moveUpDown {
  0% {
    background-position: 0 0px;
  }
  100% {
    background-position: 0 -350px;
  }
}
@-webkit-keyframes moveUpDown {
  0% {
    background-position: 0 0px;
  }
  100% {
    background-position: 0 -350px;
  }
}
@-o-keyframes moveUpDown {
  0% {
    background-position: 0 0px;
  }
  100% {
    background-position: 0 -350px;
  }
}
@keyframes moveUpDown {
  0% {
    background-position: 0 0px;
  }
  100% {
    background-position: 0 -350px;
  }
}
@-moz-keyframes panel-animation {
  0% {
    transform: translateY(-20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes panel-animation {
  0% {
    transform: translateY(-20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@-o-keyframes panel-animation {
  0% {
    transform: translateY(-20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes panel-animation {
  0% {
    transform: translateY(-20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@-moz-keyframes lang {
  0%, 100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(10%);
  }
}
@-webkit-keyframes lang {
  0%, 100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(10%);
  }
}
@-o-keyframes lang {
  0%, 100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(10%);
  }
}
@keyframes lang {
  0%, 100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(10%);
  }
}
@-moz-keyframes chuan {
  0%, 100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(5%);
  }
}
@-webkit-keyframes chuan {
  0%, 100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(5%);
  }
}
@-o-keyframes chuan {
  0%, 100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(5%);
  }
}
@keyframes chuan {
  0%, 100% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(5%);
  }
}
@-moz-keyframes chuan2 {
  0%, 100% {
    transform: translateX(3%);
  }
  50% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes chuan2 {
  0%, 100% {
    transform: translateX(3%);
  }
  50% {
    transform: translateX(0%);
  }
}
@-o-keyframes chuan2 {
  0%, 100% {
    transform: translateX(3%);
  }
  50% {
    transform: translateX(0%);
  }
}
@keyframes chuan2 {
  0%, 100% {
    transform: translateX(3%);
  }
  50% {
    transform: translateX(0%);
  }
}
@-moz-keyframes star {
  0%, 100% {
    box-shadow: 0 0 25px transparent;
    opacity: 0.95;
  }
  50% {
    box-shadow: 0 0 5px #fff;
    opacity: 0.3;
  }
}
@-webkit-keyframes star {
  0%, 100% {
    box-shadow: 0 0 25px transparent;
    opacity: 0.95;
  }
  50% {
    box-shadow: 0 0 5px #fff;
    opacity: 0.3;
  }
}
@-o-keyframes star {
  0%, 100% {
    box-shadow: 0 0 25px transparent;
    opacity: 0.95;
  }
  50% {
    box-shadow: 0 0 5px #fff;
    opacity: 0.3;
  }
}
@keyframes star {
  0%, 100% {
    box-shadow: 0 0 25px transparent;
    opacity: 0.95;
  }
  50% {
    box-shadow: 0 0 5px #fff;
    opacity: 0.3;
  }
}
@-moz-keyframes star1 {
  0%, 100% {
    box-shadow: 0 0 5px transparent;
    opacity: 0.3;
  }
  50% {
    box-shadow: 0 0 25px #fff;
    opacity: 0.9;
  }
}
@-webkit-keyframes star1 {
  0%, 100% {
    box-shadow: 0 0 5px transparent;
    opacity: 0.3;
  }
  50% {
    box-shadow: 0 0 25px #fff;
    opacity: 0.9;
  }
}
@-o-keyframes star1 {
  0%, 100% {
    box-shadow: 0 0 5px transparent;
    opacity: 0.3;
  }
  50% {
    box-shadow: 0 0 25px #fff;
    opacity: 0.9;
  }
}
@keyframes star1 {
  0%, 100% {
    box-shadow: 0 0 5px transparent;
    opacity: 0.3;
  }
  50% {
    box-shadow: 0 0 25px #fff;
    opacity: 0.9;
  }
}
@-moz-keyframes star2 {
  0%, 100% {
    transform: translateX(0%);
    transform: opacity 0.6;
  }
  50% {
    transform: translateX(3%);
    transform: opacity 0.9;
  }
}
@-webkit-keyframes star2 {
  0%, 100% {
    transform: translateX(0%);
    transform: opacity 0.6;
  }
  50% {
    transform: translateX(3%);
    transform: opacity 0.9;
  }
}
@-o-keyframes star2 {
  0%, 100% {
    transform: translateX(0%);
    transform: opacity 0.6;
  }
  50% {
    transform: translateX(3%);
    transform: opacity 0.9;
  }
}
@keyframes star2 {
  0%, 100% {
    transform: translateX(0%);
    transform: opacity 0.6;
  }
  50% {
    transform: translateX(3%);
    transform: opacity 0.9;
  }
}
@-moz-keyframes creative {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes creative {
  to {
    stroke-dashoffset: 0;
  }
}
@-o-keyframes creative {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes creative {
  to {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes shake-leftright {
  0%, 100%, 60% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  20% {
    transform: rotate(7deg);
    transform-origin: 50% 95%;
  }
  40% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  80% {
    transform: rotate(6deg);
    transform-origin: 50% 95%;
  }
}
@-webkit-keyframes shake-leftright {
  0%, 100%, 60% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  20% {
    transform: rotate(7deg);
    transform-origin: 50% 95%;
  }
  40% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  80% {
    transform: rotate(6deg);
    transform-origin: 50% 95%;
  }
}
@-o-keyframes shake-leftright {
  0%, 100%, 60% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  20% {
    transform: rotate(7deg);
    transform-origin: 50% 95%;
  }
  40% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  80% {
    transform: rotate(6deg);
    transform-origin: 50% 95%;
  }
}
@keyframes shake-leftright {
  0%, 100%, 60% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  20% {
    transform: rotate(7deg);
    transform-origin: 50% 95%;
  }
  40% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  80% {
    transform: rotate(6deg);
    transform-origin: 50% 95%;
  }
}
@-moz-keyframes shake-leftright-2 {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  20%, 80% {
    transform: rotate(5deg);
    transform-origin: 50% 95%;
  }
  40% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  60% {
    transform: rotate(1deg);
    transform-origin: 50% 95%;
  }
}
@-webkit-keyframes shake-leftright-2 {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  20%, 80% {
    transform: rotate(5deg);
    transform-origin: 50% 95%;
  }
  40% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  60% {
    transform: rotate(1deg);
    transform-origin: 50% 95%;
  }
}
@-o-keyframes shake-leftright-2 {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  20%, 80% {
    transform: rotate(5deg);
    transform-origin: 50% 95%;
  }
  40% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  60% {
    transform: rotate(1deg);
    transform-origin: 50% 95%;
  }
}
@keyframes shake-leftright-2 {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  20%, 80% {
    transform: rotate(5deg);
    transform-origin: 50% 95%;
  }
  40% {
    transform: rotate(0deg);
    transform-origin: 50% 95%;
  }
  60% {
    transform: rotate(1deg);
    transform-origin: 50% 95%;
  }
}
@-moz-keyframes jiguang-1 {
  0%, 50%, 100% {
    opacity: 0.3;
    transform: translateX(0%);
  }
  25% {
    opacity: 1;
    transform: translateX(3%);
  }
  75% {
    opacity: 1;
    transform: translateX(-3%);
  }
}
@-webkit-keyframes jiguang-1 {
  0%, 50%, 100% {
    opacity: 0.3;
    transform: translateX(0%);
  }
  25% {
    opacity: 1;
    transform: translateX(3%);
  }
  75% {
    opacity: 1;
    transform: translateX(-3%);
  }
}
@-o-keyframes jiguang-1 {
  0%, 50%, 100% {
    opacity: 0.3;
    transform: translateX(0%);
  }
  25% {
    opacity: 1;
    transform: translateX(3%);
  }
  75% {
    opacity: 1;
    transform: translateX(-3%);
  }
}
@keyframes jiguang-1 {
  0%, 50%, 100% {
    opacity: 0.3;
    transform: translateX(0%);
  }
  25% {
    opacity: 1;
    transform: translateX(3%);
  }
  75% {
    opacity: 1;
    transform: translateX(-3%);
  }
}
@-moz-keyframes jiguang-2 {
  0%, 100% {
    opacity: 0.8;
    transform: translateX(2%);
  }
  50% {
    opacity: 0.1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes jiguang-2 {
  0%, 100% {
    opacity: 0.8;
    transform: translateX(2%);
  }
  50% {
    opacity: 0.1;
    transform: translateX(0%);
  }
}
@-o-keyframes jiguang-2 {
  0%, 100% {
    opacity: 0.8;
    transform: translateX(2%);
  }
  50% {
    opacity: 0.1;
    transform: translateX(0%);
  }
}
@keyframes jiguang-2 {
  0%, 100% {
    opacity: 0.8;
    transform: translateX(2%);
  }
  50% {
    opacity: 0.1;
    transform: translateX(0%);
  }
}
@-moz-keyframes jiguang-3 {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.1;
  }
}
@-webkit-keyframes jiguang-3 {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.1;
  }
}
@-o-keyframes jiguang-3 {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.1;
  }
}
@keyframes jiguang-3 {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.1;
  }
}
@-moz-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-moz-keyframes mirrowLight {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes mirrowLight {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@-o-keyframes mirrowLight {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@keyframes mirrowLight {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@-moz-keyframes easeIn {
  0% {
    top: 100px;
    opacity: 0.2;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
@-webkit-keyframes easeIn {
  0% {
    top: 100px;
    opacity: 0.2;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
@-o-keyframes easeIn {
  0% {
    top: 100px;
    opacity: 0.2;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
@keyframes easeIn {
  0% {
    top: 100px;
    opacity: 0.2;
  }
  100% {
    top: 0px;
    opacity: 1;
  }
}
@-moz-keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes btnscroll {
  0%, 100% {
    top: 0;
  }
  50% {
    top: 10px;
  }
}
@-webkit-keyframes btnscroll {
  0%, 100% {
    top: 0;
  }
  50% {
    top: 10px;
  }
}
@-o-keyframes btnscroll {
  0%, 100% {
    top: 0;
  }
  50% {
    top: 10px;
  }
}
@keyframes btnscroll {
  0%, 100% {
    top: 0;
  }
  50% {
    top: 10px;
  }
}
.bg--cover {
  background-size: cover;
}
.bg--transparent {
  background-color: transparent !important;
}
.bg--dark-grey--hover:hover,
.bg--dark-grey--hover.is-active {
  background-color: #2c2e2f !important;
}
.bg--dark-grey {
  background-color: #2c2e2f !important;
}
.bg--dark-grey.is-inactive {
  background-color: #232526 !important;
}
.bg--dark-grey.has-hover:hover {
  background-color: #232526 !important;
}
.bg--primary-yellow--hover:hover,
.bg--primary-yellow--hover.is-active {
  background-color: #ffd923 !important;
}
.bg--primary-yellow {
  background-color: #ffd923 !important;
}
.bg--primary-yellow.is-inactive {
  background-color: #e8c000 !important;
}
.bg--primary-yellow.has-hover:hover {
  background-color: #e8c000 !important;
}
.bg--black--hover:hover,
.bg--black--hover.is-active {
  background-color: #000 !important;
}
.bg--black {
  background-color: #000 !important;
}
.bg--black.is-inactive {
  background-color: #000 !important;
}
.bg--black.has-hover:hover {
  background-color: #000 !important;
}
.bg--white--hover:hover,
.bg--white--hover.is-active {
  background-color: #fff !important;
}
.bg--white {
  background-color: #fff !important;
}
.bg--white.is-inactive {
  background-color: #ccc !important;
}
.bg--white.has-hover:hover {
  background-color: #ccc !important;
}
@font-face {
  font-family: 'icoutune';
  src: url("../fonts/ico-utune.eot?s7de7d");
  src: url("../fonts/ico-utune.eot?s7de7d#iefix") format('embedded-opentype'), url("../fonts/ico-utune.ttf?s7de7d") format('truetype'), url("../fonts/ico-utune.woff?s7de7d") format('woff'), url("../fonts/ico-utune.svg?s7de7d#icomoon") format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="font-"],
[class*=" font-"] {
  font-family: 'icoutune' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.font-icon-btn:before {
  content: "\e900";
}
.font-icon-arrow:before {
  content: "\e901";
}
.font-icon-address:before {
  content: "\e902";
}
.font-icon-brand:before {
  content: "\e903";
}
.font-icon-btn-next:before {
  content: "\e904";
}
.font-icon-mail:before {
  content: "\e905";
}
.font-icon-phone:before {
  content: "\e906";
}
.font-icon-product:before {
  content: "\e907";
}
.font-icon-space:before {
  content: "\e908";
}
.font-icon-supply-chain:before {
  content: "\e909";
}
@font-face {
  font-family: 'Bomb';
  src: url("../fonts/bomb-webfont.eot");
/* IE9 Compat Modes */
  src: url("../fonts/bomb-webfont.eot?#iefix") format('embedded-opentype'), url("../fonts/bomb-webfont.woff") format('woff'), url("../fonts/Bomb.ttf") format('truetype'), url("../fonts/bomb-webfont.svg#") format('svg');
/* Legacy iOS */
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: 'Kilogram';
  src: url("../fonts/kilogram-webfont.eot");
/* IE9 Compat Modes */
  src: url("../fonts/kilogram-webfont.eot?#iefix") format('embedded-opentype'), url("../fonts/kilogram-webfont.woff") format('woff'), url("../fonts/Kilogram.ttf") format('truetype'), url("../fonts/kilogram-webfont.svg#") format('svg');
/* Legacy iOS */
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: 'Roboto Light';
  src: url("../fonts/roboto-light-webfont.eot");
/* IE9 Compat Modes */
  src: url("../fonts/roboto-light-webfont.eot?#iefix") format('embedded-opentype'), url("../fonts/roboto-light-webfont.woff") format('woff'), url("../fonts/roboto-light-webfont.ttf") format('truetype'), url("../fonts/roboto-light-webfont.svg#") format('svg');
/* Legacy iOS */
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: 'Roboto Regular';
  src: url("../fonts/roboto-regular-webfont.eot");
/* IE9 Compat Modes */
  src: url("../fonts/roboto-regular-webfont.eot?#iefix") format('embedded-opentype'), url("../fonts/roboto-regular-webfont.woff") format('woff'), url("../fonts/Roboto-Regular.ttf") format('truetype'), url("../fonts/roboto-regular-webfont.svg#") format('svg');
/* Legacy iOS */
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: 'Roboto Condensed';
  src: url("../fonts/roboto-condensed-webfont.eot");
/* IE9 Compat Modes */
  src: url("../fonts/roboto-condensed-webfont.eot?#iefix") format('embedded-opentype'), url("../fonts/roboto-condensed-webfont.woff") format('woff'), url("../fonts/Roboto-Condensed.ttf") format('truetype'), url("../fonts/roboto-condensed-webfont.svg#") format('svg');
/* Legacy iOS */
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: 'Roboto Bold';
  src: url("../fonts/roboto-bold-webfont.eot");
/* IE9 Compat Modes */
  src: url("../fonts/roboto-bold-webfont.eot?#iefix") format('embedded-opentype'), url("../fonts/roboto-bold-webfont.woff") format('woff'), url("../fonts/Roboto-Bold.ttf") format('truetype'), url("../fonts/roboto-bold-webfont.svg#") format('svg');
/* Legacy iOS */
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: 'Roboto Black';
  src: url("../fonts/roboto-black-webfont.eot");
/* IE9 Compat Modes */
  src: url("../fonts/roboto-black-webfont.eot?#iefix") format('embedded-opentype'), url("../fonts/roboto-black-webfont.woff") format('woff'), url("../fonts/Roboto-Black.ttf") format('truetype'), url("../fonts/roboto-black-webfont.svg#") format('svg');
/* Legacy iOS */
  font-style: normal;
  font-weight: 700;
}
.font--roboto-light {
  font-family: "Roboto Light", "Arial" !important;
}
.font--roboto-regular {
  font-family: "Roboto Regular", "Arial" !important;
}
.font--roboto-condensed {
  font-family: "Roboto Condensed", "Arial" !important;
}
.font--roboto-bold {
  font-family: "Roboto Bold", "Arial" !important;
}
.font--roboto-black {
  font-family: "Roboto Black", "Arial" !important;
}
.font--bomb {
  font-family: "Bomb", "Arial" !important;
}
.font--kilogram {
  font-family: "Kilogram", "Arial" !important;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
.c-intro__title {
  font-weight: normal;
}
h1,
.h1 {
  font-size: 3.5em;
  line-height: 110%;
}
h2,
.h2,
.c-intro__title {
  font-size: 58px;
  line-height: 105%;
}
h3,
.h3 {
  font-size: 2em;
}
h4,
.h4 {
  font-size: 1.5em;
}
hr.hr,
div.hr {
  text-align: left;
  display: block;
  border: none;
  width: 100px;
  margin: 25px 0;
  height: 1px;
}
hr.hr--content,
div.hr--content {
  background-color: #2c2e2f;
  width: 100%;
}
hr.hr--headline,
div.hr--headline {
  background-color: #ffd923;
  height: 2px;
  width: 70px;
}
.lnk--default.lnk--underline a,
a.lnk--default.lnk--underline {
  text-decoration: underline;
}
.lnk--default a:hover,
a.lnk--default:hover,
.lnk--default a:focus,
a.lnk--default:focus {
  text-decoration: underline;
}
.lnk--default.lnk--dark-grey a,
a.lnk--default.lnk--dark-grey {
  color: #2c2e2f;
}
.lnk--default.lnk--primary-yellow a,
a.lnk--default.lnk--primary-yellow {
  color: #ffd923;
}
.lnk--default.lnk--black a,
a.lnk--default.lnk--black {
  color: #000;
}
.lnk--default.lnk--white a,
a.lnk--default.lnk--white {
  color: #fff;
}
.lnk--animated a,
a.lnk--animated {
  text-decoration: none;
  padding-bottom: 2px;
  transition: 0.5s;
  border-bottom: solid 1px transparent;
  cursor: pointer;
}
.lnk--animated.lnk--dark-grey a,
a.lnk--animated.lnk--dark-grey {
  color: #2c2e2f;
}
.lnk--animated.lnk--dark-grey a:hover,
a.lnk--animated.lnk--dark-grey:hover,
.lnk--animated.lnk--dark-grey a:focus,
a.lnk--animated.lnk--dark-grey:focus,
.lnk--animated.lnk--dark-grey a.lnk--underline,
a.lnk--animated.lnk--dark-grey.lnk--underline {
  border-bottom: solid 1px #2c2e2f;
}
.lnk--animated.lnk--underline a,
a.lnk--animated.lnk--underline {
  border-bottom: solid 1px #2c2e2f;
}
.lnk--animated.lnk--primary-yellow a,
a.lnk--animated.lnk--primary-yellow {
  color: #ffd923;
}
.lnk--animated.lnk--primary-yellow a:hover,
a.lnk--animated.lnk--primary-yellow:hover,
.lnk--animated.lnk--primary-yellow a:focus,
a.lnk--animated.lnk--primary-yellow:focus,
.lnk--animated.lnk--primary-yellow a.lnk--underline,
a.lnk--animated.lnk--primary-yellow.lnk--underline {
  border-bottom: solid 1px #ffd923;
}
.lnk--animated.lnk--underline a,
a.lnk--animated.lnk--underline {
  border-bottom: solid 1px #ffd923;
}
.lnk--animated.lnk--black a,
a.lnk--animated.lnk--black {
  color: #000;
}
.lnk--animated.lnk--black a:hover,
a.lnk--animated.lnk--black:hover,
.lnk--animated.lnk--black a:focus,
a.lnk--animated.lnk--black:focus,
.lnk--animated.lnk--black a.lnk--underline,
a.lnk--animated.lnk--black.lnk--underline {
  border-bottom: solid 1px #000;
}
.lnk--animated.lnk--underline a,
a.lnk--animated.lnk--underline {
  border-bottom: solid 1px #000;
}
.lnk--animated.lnk--white a,
a.lnk--animated.lnk--white {
  color: #fff;
}
.lnk--animated.lnk--white a:hover,
a.lnk--animated.lnk--white:hover,
.lnk--animated.lnk--white a:focus,
a.lnk--animated.lnk--white:focus,
.lnk--animated.lnk--white a.lnk--underline,
a.lnk--animated.lnk--white.lnk--underline {
  border-bottom: solid 1px #fff;
}
.lnk--animated.lnk--underline a,
a.lnk--animated.lnk--underline {
  border-bottom: solid 1px #fff;
}
@media (min-width: 1025px) {
  a.lnk--phone {
    color: #000;
  }
  a.lnk--phone:hover {
    text-decoration: none;
    cursor: default;
  }
}
.clear {
  clear: both;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  position: relative;
  font-size: 16px;
  line-height: 18px;
}
ul,
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
textarea {
  resize: none;
}
.hide {
  display: none;
}
.theme--dark-grey.theme--colored-txt {
  color: #2c2e2f;
}
.theme--dark-grey.theme--colored-bg {
  background-color: #2c2e2f;
}
.theme--dark-grey .theme__txt {
  color: #2c2e2f;
}
.theme--dark-grey .theme__bg {
  background-color: #2c2e2f;
}
.theme--dark-grey .theme__link {
  color: #fff;
}
.theme--dark-grey .theme__link.is-active {
  color: #2c2e2f;
}
.theme--dark-grey .theme__link.has-hover:hover {
  color: #2c2e2f;
}
.theme--primary-yellow.theme--colored-txt {
  color: #ffd923;
}
.theme--primary-yellow.theme--colored-bg {
  background-color: #ffd923;
}
.theme--primary-yellow .theme__txt {
  color: #ffd923;
}
.theme--primary-yellow .theme__bg {
  background-color: #ffd923;
}
.theme--primary-yellow .theme__link {
  color: #fff;
}
.theme--primary-yellow .theme__link.is-active {
  color: #ffd923;
}
.theme--primary-yellow .theme__link.has-hover:hover {
  color: #ffd923;
}
.theme--black.theme--colored-txt {
  color: #000;
}
.theme--black.theme--colored-bg {
  background-color: #000;
}
.theme--black .theme__txt {
  color: #000;
}
.theme--black .theme__bg {
  background-color: #000;
}
.theme--black .theme__link {
  color: #fff;
}
.theme--black .theme__link.is-active {
  color: #000;
}
.theme--black .theme__link.has-hover:hover {
  color: #000;
}
.theme--white.theme--colored-txt {
  color: #fff;
}
.theme--white.theme--colored-bg {
  background-color: #fff;
}
.theme--white .theme__txt {
  color: #fff;
}
.theme--white .theme__bg {
  background-color: #fff;
}
.theme--white .theme__link {
  color: #fff;
}
.theme--white .theme__link.is-active {
  color: #fff;
}
.theme--white .theme__link.has-hover:hover {
  color: #fff;
}
html {
  font-family: 'Roboto Regular', Arial, sans-serif;
}
.txt--dark-grey {
  color: #2c2e2f !important;
}
.txt--primary-yellow {
  color: #ffd923 !important;
}
.txt--black {
  color: #000 !important;
}
.txt--white {
  color: #fff !important;
}
.txt--bold {
  font-weight: bold !important;
}
.txt--normal {
  font-weight: normal !important;
}
.txt--italic {
  font-style: italic !important;
}
.txt--nodecoration {
  text-decoration: none !important;
}
.txt--underline {
  text-decoration: underline !important;
}
.txt--ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.txt--uppercase {
  text-transform: uppercase;
}
.txt-copy-grey {
  color: #1e1e1e !important;
}
.txt-space-grey {
  color: #363f40 !important;
}
.txt--r {
  text-align: right !important;
}
@media (max-width: $mobile-max) {
  .txt--r-mobi {
    text-align: right !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--r-tabt {
    text-align: right !important;
  }
}
@media (min-width: 1025px) {
  .txt--r-desk {
    text-align: right !important;
  }
}
.txt--l {
  text-align: left !important;
}
@media (max-width: $mobile-max) {
  .txt--l-mobi {
    text-align: left !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--l-tabt {
    text-align: left !important;
  }
}
@media (min-width: 1025px) {
  .txt--l-desk {
    text-align: left !important;
  }
}
.txt--c {
  text-align: center !important;
}
@media (max-width: $mobile-max) {
  .txt--c-mobi {
    text-align: center !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--c-tabt {
    text-align: center !important;
  }
}
@media (min-width: 1025px) {
  .txt--c-desk {
    text-align: center !important;
  }
}
.txt--sz-0 {
  font-size: 0em !important;
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-sz-0 {
    font-size: 0em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lh-0 {
    line-height: 0em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-sz-0 {
    font-size: 0em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-sz-0 {
    font-size: 0em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-sz-0 {
    font-size: 0em !important;
  }
}
.txt--szp-0 {
  font-size: 0em !important;
}
@media (min-width: 1025px) {
  .txt--desk-szp-0 {
    font-size: 0em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-szp-0 {
    font-size: 0em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-szp-0 {
    font-size: 0em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-0 {
    font-size: 0em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-0 {
    line-height: 0em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lhp-0 {
    line-height: 0em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lhp-0 {
    line-height: 0em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-lhp-0 {
    line-height: 0em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-0 {
    line-height: 0em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lh-0 {
    line-height: 0em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-lh-0 {
    line-height: 0em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lh-0 {
    line-height: 0em !important;
  }
}
.txt--lh-0 {
  line-height: 0em !important;
}
.txt--sz-1 {
  font-size: 1em !important;
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-sz-1 {
    font-size: 1em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lh-1 {
    line-height: 1em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-sz-1 {
    font-size: 1em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-sz-1 {
    font-size: 1em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-sz-1 {
    font-size: 1em !important;
  }
}
.txt--szp-1 {
  font-size: 0.1em !important;
}
@media (min-width: 1025px) {
  .txt--desk-szp-1 {
    font-size: 0.1em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-szp-1 {
    font-size: 0.1em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-szp-1 {
    font-size: 0.1em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-1 {
    font-size: 0.1em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-1 {
    line-height: 0.1em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lhp-1 {
    line-height: 0.1em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lhp-1 {
    line-height: 0.1em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-lhp-1 {
    line-height: 0.1em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-1 {
    line-height: 0.1em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lh-1 {
    line-height: 1em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-lh-1 {
    line-height: 1em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lh-1 {
    line-height: 1em !important;
  }
}
.txt--lh-1 {
  line-height: 1em !important;
}
.txt--sz-2 {
  font-size: 2em !important;
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-sz-2 {
    font-size: 2em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lh-2 {
    line-height: 2em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-sz-2 {
    font-size: 2em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-sz-2 {
    font-size: 2em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-sz-2 {
    font-size: 2em !important;
  }
}
.txt--szp-2 {
  font-size: 0.2em !important;
}
@media (min-width: 1025px) {
  .txt--desk-szp-2 {
    font-size: 0.2em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-szp-2 {
    font-size: 0.2em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-szp-2 {
    font-size: 0.2em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-2 {
    font-size: 0.2em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-2 {
    line-height: 0.2em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lhp-2 {
    line-height: 0.2em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lhp-2 {
    line-height: 0.2em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-lhp-2 {
    line-height: 0.2em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-2 {
    line-height: 0.2em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lh-2 {
    line-height: 2em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-lh-2 {
    line-height: 2em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lh-2 {
    line-height: 2em !important;
  }
}
.txt--lh-2 {
  line-height: 2em !important;
}
.txt--sz-3 {
  font-size: 3em !important;
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-sz-3 {
    font-size: 3em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lh-3 {
    line-height: 3em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-sz-3 {
    font-size: 3em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-sz-3 {
    font-size: 3em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-sz-3 {
    font-size: 3em !important;
  }
}
.txt--szp-3 {
  font-size: 0.3em !important;
}
@media (min-width: 1025px) {
  .txt--desk-szp-3 {
    font-size: 0.3em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-szp-3 {
    font-size: 0.3em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-szp-3 {
    font-size: 0.3em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-3 {
    font-size: 0.3em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-3 {
    line-height: 0.3em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lhp-3 {
    line-height: 0.3em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lhp-3 {
    line-height: 0.3em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-lhp-3 {
    line-height: 0.3em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-3 {
    line-height: 0.3em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lh-3 {
    line-height: 3em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-lh-3 {
    line-height: 3em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lh-3 {
    line-height: 3em !important;
  }
}
.txt--lh-3 {
  line-height: 3em !important;
}
.txt--sz-4 {
  font-size: 4em !important;
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-sz-4 {
    font-size: 4em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lh-4 {
    line-height: 4em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-sz-4 {
    font-size: 4em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-sz-4 {
    font-size: 4em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-sz-4 {
    font-size: 4em !important;
  }
}
.txt--szp-4 {
  font-size: 0.4em !important;
}
@media (min-width: 1025px) {
  .txt--desk-szp-4 {
    font-size: 0.4em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-szp-4 {
    font-size: 0.4em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-szp-4 {
    font-size: 0.4em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-4 {
    font-size: 0.4em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-4 {
    line-height: 0.4em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lhp-4 {
    line-height: 0.4em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lhp-4 {
    line-height: 0.4em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-lhp-4 {
    line-height: 0.4em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-4 {
    line-height: 0.4em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lh-4 {
    line-height: 4em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-lh-4 {
    line-height: 4em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lh-4 {
    line-height: 4em !important;
  }
}
.txt--lh-4 {
  line-height: 4em !important;
}
.txt--sz-5 {
  font-size: 5em !important;
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-sz-5 {
    font-size: 5em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lh-5 {
    line-height: 5em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-sz-5 {
    font-size: 5em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-sz-5 {
    font-size: 5em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-sz-5 {
    font-size: 5em !important;
  }
}
.txt--szp-5 {
  font-size: 0.5em !important;
}
@media (min-width: 1025px) {
  .txt--desk-szp-5 {
    font-size: 0.5em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-szp-5 {
    font-size: 0.5em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-szp-5 {
    font-size: 0.5em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-5 {
    font-size: 0.5em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-5 {
    line-height: 0.5em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lhp-5 {
    line-height: 0.5em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lhp-5 {
    line-height: 0.5em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-lhp-5 {
    line-height: 0.5em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-5 {
    line-height: 0.5em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lh-5 {
    line-height: 5em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-lh-5 {
    line-height: 5em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lh-5 {
    line-height: 5em !important;
  }
}
.txt--lh-5 {
  line-height: 5em !important;
}
.txt--sz-6 {
  font-size: 6em !important;
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-sz-6 {
    font-size: 6em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lh-6 {
    line-height: 6em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-sz-6 {
    font-size: 6em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-sz-6 {
    font-size: 6em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-sz-6 {
    font-size: 6em !important;
  }
}
.txt--szp-6 {
  font-size: 0.6em !important;
}
@media (min-width: 1025px) {
  .txt--desk-szp-6 {
    font-size: 0.6em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-szp-6 {
    font-size: 0.6em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-szp-6 {
    font-size: 0.6em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-6 {
    font-size: 0.6em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-6 {
    line-height: 0.6em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lhp-6 {
    line-height: 0.6em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lhp-6 {
    line-height: 0.6em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-lhp-6 {
    line-height: 0.6em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-6 {
    line-height: 0.6em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lh-6 {
    line-height: 6em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-lh-6 {
    line-height: 6em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lh-6 {
    line-height: 6em !important;
  }
}
.txt--lh-6 {
  line-height: 6em !important;
}
.txt--sz-7 {
  font-size: 7em !important;
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-sz-7 {
    font-size: 7em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lh-7 {
    line-height: 7em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-sz-7 {
    font-size: 7em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-sz-7 {
    font-size: 7em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-sz-7 {
    font-size: 7em !important;
  }
}
.txt--szp-7 {
  font-size: 0.7em !important;
}
@media (min-width: 1025px) {
  .txt--desk-szp-7 {
    font-size: 0.7em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-szp-7 {
    font-size: 0.7em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-szp-7 {
    font-size: 0.7em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-7 {
    font-size: 0.7em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-7 {
    line-height: 0.7em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lhp-7 {
    line-height: 0.7em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lhp-7 {
    line-height: 0.7em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-lhp-7 {
    line-height: 0.7em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-7 {
    line-height: 0.7em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lh-7 {
    line-height: 7em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-lh-7 {
    line-height: 7em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lh-7 {
    line-height: 7em !important;
  }
}
.txt--lh-7 {
  line-height: 7em !important;
}
.txt--sz-8 {
  font-size: 8em !important;
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-sz-8 {
    font-size: 8em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lh-8 {
    line-height: 8em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-sz-8 {
    font-size: 8em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-sz-8 {
    font-size: 8em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-sz-8 {
    font-size: 8em !important;
  }
}
.txt--szp-8 {
  font-size: 0.8em !important;
}
@media (min-width: 1025px) {
  .txt--desk-szp-8 {
    font-size: 0.8em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-szp-8 {
    font-size: 0.8em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-szp-8 {
    font-size: 0.8em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-8 {
    font-size: 0.8em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-8 {
    line-height: 0.8em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lhp-8 {
    line-height: 0.8em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lhp-8 {
    line-height: 0.8em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-lhp-8 {
    line-height: 0.8em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-8 {
    line-height: 0.8em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lh-8 {
    line-height: 8em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-lh-8 {
    line-height: 8em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lh-8 {
    line-height: 8em !important;
  }
}
.txt--lh-8 {
  line-height: 8em !important;
}
.txt--sz-9 {
  font-size: 9em !important;
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-sz-9 {
    font-size: 9em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lh-9 {
    line-height: 9em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-sz-9 {
    font-size: 9em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-sz-9 {
    font-size: 9em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-sz-9 {
    font-size: 9em !important;
  }
}
.txt--szp-9 {
  font-size: 0.9em !important;
}
@media (min-width: 1025px) {
  .txt--desk-szp-9 {
    font-size: 0.9em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-szp-9 {
    font-size: 0.9em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-szp-9 {
    font-size: 0.9em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-9 {
    font-size: 0.9em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-9 {
    line-height: 0.9em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lhp-9 {
    line-height: 0.9em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lhp-9 {
    line-height: 0.9em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-lhp-9 {
    line-height: 0.9em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-9 {
    line-height: 0.9em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lh-9 {
    line-height: 9em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-lh-9 {
    line-height: 9em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lh-9 {
    line-height: 9em !important;
  }
}
.txt--lh-9 {
  line-height: 9em !important;
}
.txt--sz-10 {
  font-size: 10em !important;
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-sz-10 {
    font-size: 10em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lh-10 {
    line-height: 10em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-sz-10 {
    font-size: 10em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-sz-10 {
    font-size: 10em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-sz-10 {
    font-size: 10em !important;
  }
}
.txt--szp-10 {
  font-size: 1em !important;
}
@media (min-width: 1025px) {
  .txt--desk-szp-10 {
    font-size: 1em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-szp-10 {
    font-size: 1em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-szp-10 {
    font-size: 1em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-10 {
    font-size: 1em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-10 {
    line-height: 1em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lhp-10 {
    line-height: 1em !important;
  }
}
@media (min-width: $tablet-min) {
  .txt--tabt-min-lhp-10 {
    line-height: 1em !important;
  }
}
@media (max-width: $tablet-max) {
  .txt--tabt-max-lhp-10 {
    line-height: 1em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lhp-10 {
    line-height: 1em !important;
  }
}
@media (min-width: 1025px) {
  .txt--desk-lh-10 {
    line-height: 10em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .txt--tabt-lh-10 {
    line-height: 10em !important;
  }
}
@media (max-width: $mobile-max) {
  .txt--mobi-lh-10 {
    line-height: 10em !important;
  }
}
.txt--lh-10 {
  line-height: 10em !important;
}
.txt-color-blue {
  color: #00fffc;
}
.txt-center {
  text-align: center;
}
.txt-justify {
  text-align: justify;
}
.wrapper--desktop {
  left: 0;
  position: relative;
}
.wrapper--desktop.is-pushed {
  overflow: hidden;
}
/* Layout */
.l-grid >* {
  padding-left: 40px;
}
@media (max-width: $mobile-max) {
  .l-grid >*.l-grid__col--mobi-collapse {
    padding-left: 0;
  }
}
.l-grid__col {
  float: left;
}
.l-grid__col.l-col-10-5 {
  width: 50%;
}
.l-container {
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: $tablet-max) {
  .l-container {
    width: 90%;
  }
}
@media (min-width: 1025px) {
  .l-container {
    width: 980px;
  }
}
.l-container--wide,
.l-container--xwide {
  width: 1100px;
}
@media (max-width: $tablet-max) {
  .l-container--wide,
  .l-container--xwide {
    width: 100%;
  }
}
@media (min-width: $tablet-min) {
  .l-container--wide,
  .l-container--xwide {
    width: 940px;
  }
}
@media (min-width: 1025px) {
  .l-container--wide,
  .l-container--xwide {
    width: 1100px;
  }
}
@media (min-width: 1200px) {
  .l-container--xwide {
    width: 1200px;
  }
}
.l-container--narrow {
  max-width: 768px;
}
.l-mobi {
  display: none !important;
}
@media (max-width: $mobile-max) {
  .l-mobi {
    display: block !important;
  }
}
@media (max-width: $tablet-max) {
  .l-desk {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .l-tabt-max {
    display: none !important;
  }
}
@media (max-width: $tablet-max) {
  .l-tabt-max {
    display: block !important;
  }
}
@media (min-width: 1025px) {
  .l-tabt {
    display: none !important;
  }
}
@media (max-width: $tablet-max) {
  .l-tabt {
    display: block !important;
  }
}
@media (max-width: $mobile-max) {
  .l-tabt {
    display: none !important;
  }
}
.l-tabt-min {
  display: none !important;
}
@media (min-width: $tablet-min) {
  .l-tabt-min {
    display: block !important;
  }
}
.l-ghost,
.l-offscreen {
  width: 0;
  opacity: 0;
  position: absolute;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.l-offscreen {
  left: -1000px;
}
.l-flt--r {
  float: right !important;
}
.l-flt--l {
  float: left !important;
}
.l-hidden {
  display: none !important;
}
.l-block {
  display: block !important;
}
@media (max-width: $mobile-max) {
  .l-block--mobi {
    display: block !important;
  }
}
@media (min-width: $tablet-min) {
  .l-block--tabt-min {
    display: block !important;
  }
}
@media (max-width: $tablet-max) {
  .l-block--tabt-max {
    display: block !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-block--tabt {
    display: block !important;
  }
}
.l-inl-block {
  display: inline-block !important;
}
.l-inl {
  display: inline !important;
}
.l-relative {
  position: relative !important;
}
@media (max-width: $mobile-max) {
  .l-br-mobi {
    display: block !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-br-tabt {
    display: block !important;
  }
}
@media (min-width: 1025px) {
  .l-br-desk {
    display: block !important;
  }
}
.l-vcenter--l,
.l-vcenter,
.l-vcenter--r,
.c-parallax__btn {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.l-vcenter,
.c-parallax__btn {
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.l-vcenter--r {
  right: 0;
}
.l-center {
  margin-left: auto !important;
  margin-right: auto !important;
}
.l-mgn--0 {
  margin: 0em !important;
}
@media (max-width: $mobile-max) {
  .l-mgn--mobi-0 {
    margin: 0em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-mgn--tabt-0 {
    margin: 0em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-mgn--tabt-min-0 {
    margin: 0em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-mgn--tabt-max-0 {
    margin: 0em !important;
  }
}
@media (min-width: 1025px) {
  .l-mgn--desk-0 {
    margin: 0em !important;
  }
}
.l-mgn--fp-0 {
  margin: 0em !important;
}
.l-pad--0 {
  padding: 0em !important;
}
@media (max-width: $mobile-max) {
  .l-pad--mobi-0 {
    padding: 0em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-pad--tabt-0 {
    padding: 0em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-pad--tabt-min-0 {
    padding: 0em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-pad--tabt-max-0 {
    padding: 0em !important;
  }
}
@media (min-width: 1025px) {
  .l-pad--desk-0 {
    padding: 0em !important;
  }
}
.l-pad--fp-0 {
  padding: 0em !important;
}
.l-mgn--1 {
  margin: 1em !important;
}
@media (max-width: $mobile-max) {
  .l-mgn--mobi-1 {
    margin: 1em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-mgn--tabt-1 {
    margin: 1em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-mgn--tabt-min-1 {
    margin: 1em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-mgn--tabt-max-1 {
    margin: 1em !important;
  }
}
@media (min-width: 1025px) {
  .l-mgn--desk-1 {
    margin: 1em !important;
  }
}
.l-mgn--fp-1 {
  margin: 0.1em !important;
}
.l-pad--1 {
  padding: 1em !important;
}
@media (max-width: $mobile-max) {
  .l-pad--mobi-1 {
    padding: 1em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-pad--tabt-1 {
    padding: 1em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-pad--tabt-min-1 {
    padding: 1em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-pad--tabt-max-1 {
    padding: 1em !important;
  }
}
@media (min-width: 1025px) {
  .l-pad--desk-1 {
    padding: 1em !important;
  }
}
.l-pad--fp-1 {
  padding: 0.1em !important;
}
.l-mgn--2 {
  margin: 2em !important;
}
@media (max-width: $mobile-max) {
  .l-mgn--mobi-2 {
    margin: 2em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-mgn--tabt-2 {
    margin: 2em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-mgn--tabt-min-2 {
    margin: 2em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-mgn--tabt-max-2 {
    margin: 2em !important;
  }
}
@media (min-width: 1025px) {
  .l-mgn--desk-2 {
    margin: 2em !important;
  }
}
.l-mgn--fp-2 {
  margin: 0.2em !important;
}
.l-pad--2 {
  padding: 2em !important;
}
@media (max-width: $mobile-max) {
  .l-pad--mobi-2 {
    padding: 2em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-pad--tabt-2 {
    padding: 2em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-pad--tabt-min-2 {
    padding: 2em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-pad--tabt-max-2 {
    padding: 2em !important;
  }
}
@media (min-width: 1025px) {
  .l-pad--desk-2 {
    padding: 2em !important;
  }
}
.l-pad--fp-2 {
  padding: 0.2em !important;
}
.l-mgn--3 {
  margin: 3em !important;
}
@media (max-width: $mobile-max) {
  .l-mgn--mobi-3 {
    margin: 3em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-mgn--tabt-3 {
    margin: 3em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-mgn--tabt-min-3 {
    margin: 3em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-mgn--tabt-max-3 {
    margin: 3em !important;
  }
}
@media (min-width: 1025px) {
  .l-mgn--desk-3 {
    margin: 3em !important;
  }
}
.l-mgn--fp-3 {
  margin: 0.3em !important;
}
.l-pad--3 {
  padding: 3em !important;
}
@media (max-width: $mobile-max) {
  .l-pad--mobi-3 {
    padding: 3em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-pad--tabt-3 {
    padding: 3em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-pad--tabt-min-3 {
    padding: 3em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-pad--tabt-max-3 {
    padding: 3em !important;
  }
}
@media (min-width: 1025px) {
  .l-pad--desk-3 {
    padding: 3em !important;
  }
}
.l-pad--fp-3 {
  padding: 0.3em !important;
}
.l-mgn--4 {
  margin: 4em !important;
}
@media (max-width: $mobile-max) {
  .l-mgn--mobi-4 {
    margin: 4em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-mgn--tabt-4 {
    margin: 4em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-mgn--tabt-min-4 {
    margin: 4em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-mgn--tabt-max-4 {
    margin: 4em !important;
  }
}
@media (min-width: 1025px) {
  .l-mgn--desk-4 {
    margin: 4em !important;
  }
}
.l-mgn--fp-4 {
  margin: 0.4em !important;
}
.l-pad--4 {
  padding: 4em !important;
}
@media (max-width: $mobile-max) {
  .l-pad--mobi-4 {
    padding: 4em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-pad--tabt-4 {
    padding: 4em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-pad--tabt-min-4 {
    padding: 4em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-pad--tabt-max-4 {
    padding: 4em !important;
  }
}
@media (min-width: 1025px) {
  .l-pad--desk-4 {
    padding: 4em !important;
  }
}
.l-pad--fp-4 {
  padding: 0.4em !important;
}
.l-mgn--5 {
  margin: 5em !important;
}
@media (max-width: $mobile-max) {
  .l-mgn--mobi-5 {
    margin: 5em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-mgn--tabt-5 {
    margin: 5em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-mgn--tabt-min-5 {
    margin: 5em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-mgn--tabt-max-5 {
    margin: 5em !important;
  }
}
@media (min-width: 1025px) {
  .l-mgn--desk-5 {
    margin: 5em !important;
  }
}
.l-mgn--fp-5 {
  margin: 0.5em !important;
}
.l-pad--5 {
  padding: 5em !important;
}
@media (max-width: $mobile-max) {
  .l-pad--mobi-5 {
    padding: 5em !important;
  }
}
@media (min-width: $tablet-min) and (max-width: $tablet-max) {
  .l-pad--tabt-5 {
    padding: 5em !important;
  }
}
@media (min-width: $tablet-min) {
  .l-pad--tabt-min-5 {
    padding: 5em !important;
  }
}
@media (max-width: $tablet-max) {
  .l-pad--tabt-max-5 {
    padding: 5em !important;
  }
}
@media (min-width: 1025px) {
  .l-pad--desk-5 {
    padding: 5em !important;
  }
}
.l-pad--fp-5 {
  padding: 0.5em !important;
}
.l-mgn--l-0 {
  margin-left: 0em !important;
}
.l-mgn--r-0 {
  margin-right: 0em !important;
}
.l-mgn--t-0 {
  margin-top: 0em !important;
}
.l-mgn--b-0 {
  margin-bottom: 0em !important;
}
.l-pad--l-0 {
  padding-left: 0em !important;
}
.l-pad--r-0 {
  padding-right: 0em !important;
}
.l-pad--t-0 {
  padding-top: 0em !important;
}
.l-pad--b-0 {
  padding-bottom: 0em !important;
}
.l-mgn--l-1 {
  margin-left: 1em !important;
}
.l-mgn--r-1 {
  margin-right: 1em !important;
}
.l-mgn--t-1 {
  margin-top: 1em !important;
}
.l-mgn--b-1 {
  margin-bottom: 1em !important;
}
.l-pad--l-1 {
  padding-left: 1em !important;
}
.l-pad--r-1 {
  padding-right: 1em !important;
}
.l-pad--t-1 {
  padding-top: 1em !important;
}
.l-pad--b-1 {
  padding-bottom: 1em !important;
}
.l-mgn--l-2 {
  margin-left: 2em !important;
}
.l-mgn--r-2 {
  margin-right: 2em !important;
}
.l-mgn--t-2 {
  margin-top: 2em !important;
}
.l-mgn--b-2 {
  margin-bottom: 2em !important;
}
.l-pad--l-2 {
  padding-left: 2em !important;
}
.l-pad--r-2 {
  padding-right: 2em !important;
}
.l-pad--t-2 {
  padding-top: 2em !important;
}
.l-pad--b-2 {
  padding-bottom: 2em !important;
}
.l-mgn--l-3 {
  margin-left: 3em !important;
}
.l-mgn--r-3 {
  margin-right: 3em !important;
}
.l-mgn--t-3 {
  margin-top: 3em !important;
}
.l-mgn--b-3 {
  margin-bottom: 3em !important;
}
.l-pad--l-3 {
  padding-left: 3em !important;
}
.l-pad--r-3 {
  padding-right: 3em !important;
}
.l-pad--t-3 {
  padding-top: 3em !important;
}
.l-pad--b-3 {
  padding-bottom: 3em !important;
}
.l-mgn--l-4 {
  margin-left: 4em !important;
}
.l-mgn--r-4 {
  margin-right: 4em !important;
}
.l-mgn--t-4 {
  margin-top: 4em !important;
}
.l-mgn--b-4 {
  margin-bottom: 4em !important;
}
.l-pad--l-4 {
  padding-left: 4em !important;
}
.l-pad--r-4 {
  padding-right: 4em !important;
}
.l-pad--t-4 {
  padding-top: 4em !important;
}
.l-pad--b-4 {
  padding-bottom: 4em !important;
}
.l-mgn--l-5 {
  margin-left: 5em !important;
}
.l-mgn--r-5 {
  margin-right: 5em !important;
}
.l-mgn--t-5 {
  margin-top: 5em !important;
}
.l-mgn--b-5 {
  margin-bottom: 5em !important;
}
.l-pad--l-5 {
  padding-left: 5em !important;
}
.l-pad--r-5 {
  padding-right: 5em !important;
}
.l-pad--t-5 {
  padding-top: 5em !important;
}
.l-pad--b-5 {
  padding-bottom: 5em !important;
}
.l-section {
  padding-top: 2em;
  padding-bottom: 2em;
}
.l-section--alternate {
  padding-top: 0;
}
.l-section--alternate-b {
  padding-bottom: 0;
}
.l-full-width {
  width: 100%;
}
.l-display-middle {
  display: table-cell;
  vertical-align: middle;
}
.l-absolute {
  position: absolute;
}
.l-display-table {
  display: table;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
/* Components */
.c-about-us {
  background-image: url("../img/about-us-background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 134px;
}
.c-about-us__img {
  width: 225px;
  height: 48px;
  margin: 0 auto 43px;
}
.c-about-us__content {
  width: 90%;
  max-width: 990px;
  margin: auto;
}
.c-about-us__content p {
  line-height: 24px;
}
.c-about-us__content--zh p {
  font-size: 16px;
}
.c-about-us__content--en p {
  font-size: 14px;
}
.c-about-us__content--en p.txt-color-blue {
  font-size: 18px;
}
.c-about-us__map {
  position: relative;
  width: 952px;
  height: 671px;
  margin: 66px auto 0;
  background-image: url("../img/about-us-map.png");
}
.c-about-us__map__overlay {
  position: absolute;
  text-align: left;
  font-size: 14px;
  line-height: 24px;
}
.c-about-us__map__overlay--beijing {
  width: 364px;
  top: 135px;
  right: 5px;
}
.c-about-us__map__overlay--guangzhou {
  width: 300px;
  top: 399px;
  right: 75px;
}
.c-about-us__map__overlay--guangdong {
  width: 255px;
  top: 425px;
  left: 250px;
}
.c-about-us__map__overlay--hongkong {
  width: 350px;
  top: 566px;
  right: 42px;
}
.c-about-us__partners {
  position: relative;
  top: -10px;
  padding-bottom: 100px;
}
.c-about-us .c-legal-footnote a,
.c-about-us .c-legal-footnote p {
  color: #fff;
}
.c-about-us .c-legal-footnote a:active,
.c-about-us .c-legal-footnote a:hover,
.c-about-us .c-legal-footnote a:visited {
  color: #fff;
}
.c-btn {
  display: inline;
  display: inline-block;
  vertical-align: middle;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-decoration: none;
  cursor: pointer;
  border: none;
  text-align: center;
  font-size: 16px;
  padding: 11px 40px;
  background-color: transparent;
  border-radius: 2px;
}
.c-btn.txt--white:hover {
  color: #fff;
}
.c-btn--download {
  position: relative;
}
.c-btn--download:after {
  font-family: 'FontAwesome';
  content: '\f019';
  padding-left: 10px;
}
.c-btn--primary {
  background-color: #ffd923;
  color: #fff;
}
.c-btn--primary:hover {
  background-color: #ffd406;
}
.c-btn--primary--white {
  color: #ffd923;
  border: solid 2px #ffd923;
}
.c-btn--primary--white:hover {
  background-color: #ffd406;
  border-color: #ffd406;
  color: #fff;
}
.c-btn--secondary {
  background-color: #ffd406;
  color: #fff;
}
.c-btn--secondary:hover {
  background-color: #ffd923;
}
.c-btn--secondary--white {
  color: #ffd406;
  border: solid 2px #ffd406;
}
.c-btn--secondary--white:hover {
  background-color: #ffd923;
  border-color: #ffd923;
  color: #fff;
}
.c-chain {
  overflow: hidden;
  min-width: 1024px;
  width: 100%;
  text-align: center;
  color: #fff;
}
.c-chain__header {
  position: relative;
  display: table;
  width: 100%;
  height: 704px;
  min-height: 704px;
  text-align: center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background: #6b13d3;
  background: -moz-linear-gradient(45deg, #6b13d3 0, #7a25e1 25%, #4962dc 60%);
  background: -webkit-linear-gradient(45deg, #6b13d3 0, #7a25e1 25%, #4962dc 60%);
  background: -ms-linear-gradient(45deg, #6b13d3 0, #7a25e1 25%, #4962dc 60%);
  background: linear-gradient(45deg, #6b13d3 0, #7a25e1 25%, #4962dc 60%);
}
.c-chain__header .webgl {
  position: absolute;
  overflow: hidden;
  height: 100%;
}
.c-chain__header--title {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  z-index: 2;
}
.c-chain__header--title-content {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 300%;
  line-height: 1.5em;
  position: relative;
}
.c-chain__header--title-content:before {
  content: " ";
  display: table;
}
.c-chain__managment {
  margin-bottom: 0;
  background-position: top center;
  background-repeat: repeat-x;
  display: table;
  min-height: 800px;
}
.c-chain__managment--content {
  line-height: 1.5em;
  width: 50%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}
.c-chain__managment--content:nth-child(1) {
  padding-right: 50px;
}
@media (min-width: 320px) {
  .c-chain__managment--content:nth-child(1) {
    padding-left: 50px;
  }
}
@media (min-width: 1400px) {
  .c-chain__managment--content:nth-child(1) {
    padding-left: 100px;
  }
}
@media (min-width: 1800px) {
  .c-chain__managment--content:nth-child(1) {
    padding-left: 200px;
  }
}
.c-chain__managment--content:nth-child(2) {
  padding-left: 50px;
}
@media (min-width: 320px) {
  .c-chain__managment--content:nth-child(2) {
    padding-right: 50px;
  }
}
@media (min-width: 1400px) {
  .c-chain__managment--content:nth-child(2) {
    padding-right: 100px;
  }
}
@media (min-width: 1800px) {
  .c-chain__managment--content:nth-child(2) {
    padding-right: 200px;
  }
}
.c-chain__managment--content h2 {
  /*font-family: 'Microsoft YaHei';*/
  font-size: 50px;
}
.c-chain__managment--content h3 {
  line-height: 1.2em;
  opacity: 0.5;
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 5px;
}
.c-chain__managment--content p {
  line-height: 1.8em;
  margin-top: 2em;
  font-size: 14px;
}
.c-chain__managment--content img {
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}
.c-chain__footer {
  zoom: 1;
  text-align: center;
  height: auto;
  position: relative;
}
@media (min-width: 320px) {
  .c-chain__footer {
    padding: 2em 50px;
  }
}
@media (min-width: 1400px) {
  .c-chain__footer {
    padding: 2em 100px;
  }
}
@media (min-width: 1800px) {
  .c-chain__footer {
    padding: 2em 200px;
  }
}
.c-chain__footer ul {
  list-style: none;
}
.c-chain__footer li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 25%;
  margin-left: -6px;
  margin-bottom: -6px;
  height: 290px;
}
.c-chain__footer a {
  position: relative;
  color: #fff;
  z-index: 20;
  text-align: center;
  cursor: default;
}
.c-chain__footer span {
  display: block;
  padding-top: 1.5em;
  color: #7019d7;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  width: 180px;
  margin: auto;
}
.c-chain__footer img {
  height: 170px;
  outline: none !important;
}
.c-chain__footer--title {
  position: relative;
  display: table;
  width: 100%;
  margin: 48px 0px;
  overflow: hidden;
  z-index: 2;
}
.c-chain__footer--title h2 {
  width: 360px;
  font-size: 48px;
  font-weight: bold;
}
.c-chain__footer--line-before,
.c-chain__footer--line-after {
  position: relative;
  display: table-cell;
  text-align: center;
  width: 40%;
}
.c-chain__footer--line-before:before,
.c-chain__footer--line-after:before,
.c-chain__footer--line-before:after,
.c-chain__footer--line-after:after {
  background-color: #000;
  box-sizing: border-box;
  position: absolute;
  content: '';
  height: 1px;
}
.c-chain__footer--line-before:before,
.c-chain__footer--line-after:before {
  width: 100%;
  left: 0;
  bottom: 7px;
  opacity: 0.4;
}
.c-chain__footer--line-before:after,
.c-chain__footer--line-after:after {
  width: 50px;
  right: 0;
  bottom: 7px;
  height: 2px;
}
.c-chain__footer--line-after:after {
  left: 0;
}
.c-chain__footer h3 {
  margin: 1.5em 0;
  color: #7019d7;
  line-height: 1.5em;
  font-size: 36px;
  font-weight: 700;
}
.c-masonry {
  margin: 60px auto 150px;
  width: 90%;
  min-width: 1025px;
  text-align: left;
}
.c-masonry img {
  max-width: 120px;
  vertical-align: middle;
}
.c-masonry__item {
  text-align: center;
  width: 16%;
  height: 120px;
  display: inline-block;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
.c-masonry__item i {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.c-contact-msg {
  display: none;
}
.c-contact-msg p {
  line-height: 1.4em;
}
.c-contact-msg a:link,
.c-contact-msg a:visited,
.c-contact-msg a:hover,
.c-contact-msg a:focus {
  color: #fff;
}
.c-err-msg {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
.c-contact {
  background-image: url("../img/page-contact-background.jpg");
  background-size: cover;
  height: 100%;
}
.c-contact h1 {
  display: inline-block;
}
.c-contact canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.c-contact__form {
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: left;
  z-index: 1;
}
.c-contact__form .font-icon-mail,
.c-contact__form .font-icon-address,
.c-contact__form .font-icon-phone {
  font-size: 50px;
  width: 50px;
  display: table-cell;
  vertical-align: top;
}
.c-content {
  min-width: 1025px;
  width: 100%;
  text-align: center;
  color: #fff;
}
.c-content h1 {
  font-size: 58px;
  line-height: 105%;
  margin: 0 auto 100px;
  text-transform: uppercase;
}
form button {
  background-color: #07cbe9;
  font-size: 18px;
  font-family: "Roboto Condensed";
  height: 46px;
  width: 240px;
  line-height: 46px;
  color: #fff;
  border: 0;
  border-radius: 23px;
  cursor: pointer;
  outline: none;
}
form .text-input {
  position: relative;
  font-family: "Roboto Light";
  margin-bottom: 30px;
}
form .text-input input,
form .text-input textarea {
  padding: 1rem 1rem;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  position: relative;
  z-index: 1;
}
form .text-input input:focus,
form .text-input textarea:focus {
  outline: 0;
}
form .text-input input:focus ~ span,
form .text-input textarea:focus ~ span {
  width: 100%;
}
form .text-input input:focus ~ label,
form .text-input textarea:focus ~ label {
  top: -2.25rem;
}
form .text-input input:valid ~ label,
form .text-input textarea:valid ~ label {
  top: -2.25rem;
}
form .text-input input {
  height: 50px;
}
form .text-input label {
  top: 0;
  left: 0;
  position: absolute;
  padding: 15px 10px;
  transition: all 0.3s ease;
}
form .text-input span {
  display: block;
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
  background-color: #fff;
}
form .text-input textarea {
  min-height: 13em;
}
.c-gallery__item {
  margin: 0px;
  position: relative;
  width: 25%;
  padding: 5px;
}
.c-gallery__item::before,
.c-gallery__item::after {
  box-sizing: border-box;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}
.c-gallery__item img {
  display: inline;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s ease-out;
  border-radius: 10px;
}
.c-gallery__item:hover img {
  transform: scale(1.05);
  z-index: 99;
  position: relative;
}
.c-homepage .inPanel {
  opacity: 1;
  transition-duration: 0.6s;
}
.c-homepage .outPanel {
  opacity: 0;
  transition-duration: 0.6s;
}
.c-homepage h2 {
  margin: 140px auto 60px;
  text-transform: uppercase;
}
.c-homepage__1 {
  background-image: url("../img/homepage-utune-hero.jpg");
  background-size: 100% 200%;
  animation: moveUpDown 15s infinite alternate linear;
}
.c-homepage__1 svg {
  opacity: 0;
}
.c-homepage__next-button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -15px;
  height: 83px;
  width: 30px;
  cursor: pointer;
}
.c-homepage__next-button img {
  max-width: 100%;
}
.c-homepage__next-button .arrow {
  position: relative;
  top: 0;
  width: 30px;
  animation: btnscroll 1.5s linear 0s infinite;
}
.c-homepage__2 {
  background-color: #292b2f;
}
.c-homepage__tab-1,
.c-homepage__tab-2,
.c-homepage__tab-3,
.c-homepage__tab-4 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
}
.c-homepage__tab-1 {
  background-color: #000;
  overflow: hidden;
  opacity: 1;
}
.c-homepage__tab-1 .jiguang {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.c-homepage__tab-1 .jiguang1 {
  animation: jiguang-1 10s linear 0s infinite;
}
.c-homepage__tab-1 .jiguang2 {
  animation: jiguang-2 15s linear 0s infinite;
}
.c-homepage__tab-1 .jiguang3 {
  animation: jiguang-3 15s linear 0s infinite;
  transform: translateX(-20%);
  transform: scaleX(-1);
}
.c-homepage__tab-1 .star {
  position: absolute;
  left: -10%;
  bottom: 0px;
  width: 106%;
  height: 100%;
  opacity: 0.4;
}
.c-homepage__tab-2 {
  background-image: url("../img/background-wedo-tab2-stars.jpg");
}
.c-homepage__tab-2 .star {
  position: absolute;
  left: -10%;
  bottom: 0px;
  width: 106%;
  height: 100%;
  opacity: 0.4;
}
.c-homepage__tab-2 .mirrors {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 0;
}
.c-homepage__tab-2 canvas {
  width: 100%;
  height: 100%;
  transform: 1s;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}
.c-homepage__tab-2__mirror__cover,
.c-homepage__tab-2__mirror__cover-2,
.c-homepage__tab-2__mirror__cover-3 {
  -webkit-mask-image: url("../img/homepage-mirror-cover-1.png");
  background-color: transparent;
  width: 100%;
  height: 100%;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.c-homepage__tab-2__mirror__cover.active:after,
.c-homepage__tab-2__mirror__cover-2.active:after,
.c-homepage__tab-2__mirror__cover-3.active:after {
  content: "";
  position: absolute;
  width: 124px;
  height: 1570px;
  left: 0;
  top: 0;
  opacity: 0.6;
  overflow: hidden;
  background-image: url("../img/light.png");
  background-repeat: no-repeat;
  transform: rotate(8deg);
  animation: mirrowLight 10s linear 0s infinite;
}
.c-homepage__tab-2__mirror__cover-2 {
  -webkit-mask-image: url("../img/homepage-mirror-cover-2.png");
}
.c-homepage__tab-2__mirror__cover-2.active:after {
  transform: rotate(45deg);
  animation: mirrowLight 10s linear 2s infinite;
}
.c-homepage__tab-2__mirror__cover-3 {
  -webkit-mask-image: url("../img/homepage-mirror-cover-3.png");
}
.c-homepage__tab-2__mirror__cover-3.active:after {
  transform: rotate(45deg);
  animation: mirrowLight 10s linear 4.6s infinite;
}
.c-homepage__tab-3 {
  background-image: url("../img/background-wedo-water.jpg");
}
.c-homepage__tab-3 .hill,
.c-homepage__tab-3 .lake {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
}
.c-homepage__tab-3 .lang {
  width: 120%;
  left: -20%;
  animation: lang 9s linear 0s infinite;
}
.c-homepage__tab-3 .chuan {
  animation: chuan 20s linear 0s infinite;
}
.c-homepage__tab-3 .chuan2 {
  animation: chuan2 24s linear 0s infinite;
}
.c-homepage__tab-4 {
  background-image: url("../img/background-wedo-hill.jpg");
  background-size: 100% 100%;
  min-width: 1024px;
  min-height: 768px;
}
.c-homepage__tab-4 .star {
  position: absolute;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 5px #fff;
  border-radius: 50%;
  outline: none;
  animation: star 2s ease-in-out infinite;
  animation-fill-mode: both;
  filter: blur(1px);
}
.c-homepage__tab-4 .star1 {
  left: 25%;
  top: 15%;
  animation-name: star1;
  animation-duration: 3;
}
.c-homepage__tab-4 .star2 {
  left: 15%;
  top: 25%;
  animation-duration: 1;
}
.c-homepage__tab-4 .star3 {
  left: 6%;
  top: 35%;
  animation-name: star1;
  animation-duration: 1;
}
.c-homepage__tab-4 .star4 {
  left: 20%;
  top: 50%;
}
.c-homepage__tab-4 .star5 {
  left: 46%;
  top: 27%;
  animation-name: star1;
  animation-duration: 1;
}
.c-homepage__tab-4 .star6 {
  left: 75%;
  top: 17%;
  animation-duration: 1;
}
.c-homepage__tab-4 .star7 {
  left: 90%;
  top: 17%;
  animation-name: star1;
  animation-duration: 5;
}
.c-homepage__tab-4 .star8 {
  left: 87%;
  top: 36%;
  animation-duration: 3;
}
.c-homepage__tab-4 .tree {
  position: absolute;
  left: 0px;
  bottom: 0px;
  animation: shake-leftright 50s ease-in-out infinite;
}
.c-homepage__tab-4 .tree1 {
  left: -7%;
  height: 49%;
  animation-name: shake-leftright-2;
}
.c-homepage__tab-4 .tree2 {
  left: 0%;
  height: 56%;
}
.c-homepage__tab-4 .tree3 {
  left: 14%;
  height: 42%;
}
.c-homepage__tab-4 .tree4 {
  left: 30%;
  height: 24%;
  animation-name: shake-leftright-2;
}
.c-homepage__tab-4 .tree5 {
  left: 56%;
  height: 38%;
}
.c-homepage__tab-4 .tree6 {
  left: 69%;
  height: 42%;
}
.c-homepage__tab-4 .tree7 {
  left: 79%;
  height: 56%;
  animation-name: shake-leftright-2;
}
.c-homepage__tab-panel {
  position: relative;
  cursor: pointer;
  z-index: 2;
}
.c-homepage__tab-panel ul {
  width: 984px;
  margin: auto;
}
.c-homepage__tab-panel li {
  color: #fff;
  float: left;
  width: 118px;
  margin: 0 50px;
  opacity: 0;
}
.c-homepage__tab-panel span {
  margin: 30px 0 20px;
  display: block;
}
.c-homepage__tab-panel a {
  display: block;
  text-decoration: none;
  color: #fff;
}
.c-homepage__tab-panel__icon {
  font-size: 50px;
}
.c-homepage__tab-panel__button {
  border: 1px solid #fff;
  border-radius: 15px;
  height: 44px;
  width: 80px;
  border-radius: 44px;
  line-height: 44px;
  margin: auto;
  cursor: pointer;
}
.c-homepage__tab-panel__button:hover,
.c-homepage__tab-panel__button.active {
  background-color: #fff;
  color: #000;
}
.c-homepage__tab-panel.in li:nth-child(1) {
  animation: panel-animation 1s cubic-bezier(0.35, -0.1, 0.68, 1.1) 0s both;
}
.c-homepage__tab-panel.in li:nth-child(2) {
  animation: panel-animation 1s cubic-bezier(0.35, -0.1, 0.68, 1.1) 0.2s both;
}
.c-homepage__tab-panel.in li:nth-child(3) {
  animation: panel-animation 1s cubic-bezier(0.35, -0.1, 0.68, 1.1) 0.4s both;
}
.c-homepage__tab-panel.in li:nth-child(4) {
  animation: panel-animation 1s cubic-bezier(0.35, -0.1, 0.68, 1.1) 0.6s both;
}
.c-homepage__3 {
  background-color: #292b2e;
}
.c-homepage__3--main {
  width: 77%;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 50px;
}
.c-homepage__4 {
  background-color: #292b2e;
}
.c-homepage__5 {
  background-color: #fff;
}
.c-homepage__5 h2 {
  color: #000;
}
.c-homepage__5 .c-masonry__item img {
  max-height: 86px;
}
.c-homepage__6 {
  background-image: url("../img/background-contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
.c-homepage__6 h2 {
  margin: 0px auto 100px;
}
.c-homepage__6__email,
.c-homepage__6__location,
.c-homepage__6__phone {
  display: table-cell;
  vertical-align: top;
  line-height: 1.4em;
  padding: 4px 0 0 20px;
  word-break: break-all;
  font-family: "Roboto Regular";
}
.c-homepage__6__location {
  padding-bottom: 0.4em;
}
.c-homepage__6__location p {
  margin-bottom: 2em;
}
.c-homepage__6__email a {
  text-decoration: none;
  color: #fff;
}
.c-homepage__6__email a:hover {
  text-decoration: underline;
}
.c-homepage__6__email p {
  white-space: nowrap;
  margin-bottom: 2em;
  line-height: 1.4em;
}
.c-homepage__6__email p:last-child {
  margin-bottom: 0px;
}
.c-homepage__7 {
  background-color: #292b2e;
  position: relative;
  height: 100%;
}
.c-homepage__7--logo {
  margin: 100px auto;
}
.c-homepage__7 img {
  width: 181px;
  height: 69px;
}
.c-homepage__7--text {
  font-size: 20px;
  line-height: 1.5em;
}
.c-homepage__7--text span {
  color: #9ece12;
}
.c-homepage__7--footer {
  font-size: 16px;
  line-height: 1.5em;
  margin-top: 100px;
  margin-bottom: 100px;
}
.c-homepage .font-icon-btn-next:before {
  content: "" !important;
}
.c-image-hue {
  background-size: 100%;
  background-repeat: no-repeat;
}
.c-image-hue image {
  transition: all 0.6s ease;
  display: block;
}
.c-image-hue image:hover,
.c-image-hue image.is-active {
  cursor: pointer;
  opacity: 0;
}
.c-intro {
  text-align: center;
}
.c-intro__title {
  text-transform: uppercase;
}
.c-intro__txt {
  font-size: 110%;
  line-height: 140%;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1em;
  padding-bottom: 0.5em;
}
@media (max-width: $mobile-max) {
  .c-intro__txt {
    width: 80%;
  }
}
.c-intro__footer {
  padding-top: 2em;
  padding-bottom: 2em;
}
.c-legal-footnote {
  padding: 20px 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
.c-legal-footnote p {
  color: #939393;
  font-size: 14px;
}
.c-legal-footnote a {
  color: #939393;
  font-size: 14px;
}
.c-legal-footnote a:active,
.c-legal-footnote a:hover,
.c-legal-footnote a:visited {
  color: #939393;
}
@media (max-width: 1025px) {
  .loadingDiv img {
    width: 150px !important;
  }
}
.c-content__mall {
  background-color: #292b2e;
  background-image: url("../img/background-mall-hero.jpg");
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: 1024px;
}
.c-content__mall--tips {
  position: relative;
  width: 700px;
  margin: 0 auto;
  top: 300px;
}
.c-content__mall--tips h2 {
  font-size: 48px;
  line-height: 2em;
  /*font-family: 'Microsoft YaHei';*/
}
.c-content__mall--tips h3 {
  font-size: 35px;
  line-height: 1.5em;
}
.c-content__mall--tips p {
  font-size: 21px;
  line-height: 1em;
  /*font-family: 'Microsoft YaHei';*/
}
.c-content__mall--tips p:last-child {
  font-size: 18px;
}
.c-nav {
  position: fixed;
  z-index: 10;
  background-color: rgba(0,0,0,0.1);
  top: 0;
  width: 100%;
  height: 70px;
  padding: 20px 29px 0;
  min-width: 1025px;
}
.c-nav.invert {
  background-color: rgba(0,0,0,0.6);
}
.c-nav__logo,
.c-nav__menu {
  display: inline-block;
  vertical-align: middle;
}
.c-nav__logo {
  margin-right: 80px;
}
.c-nav__logo img {
  height: 25px;
}
.c-nav__menu ul li {
  float: left;
  margin-right: 50px;
}
.c-nav__menu ul li a {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 20px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-family: "Roboto Bold", "Arial";
}
.c-nav__menu ul li a.active {
  border-color: #fff;
}
.c-nav__menu ul li:nth-last-of-type(1) {
  margin-right: 0;
}
.c-nav__menu ul li:nth-last-of-type(1) a {
  border: 0;
}
.c-nav__menu ul li:nth-last-of-type(1) a.active {
  border: 0;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border: 1px solid #fff;
  background: transparent;
  height: 12px;
  width: 12px;
  margin: 0;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
  margin: 0;
  background: #fff;
}
#fp-nav ul li a:focus,
.fp-slidesNav ul li a:focus {
  outline: none;
}
#fp-nav.invert ul li a.active span {
  background: #000;
}
#fp-nav.invert ul li a span {
  border: 1px solid #000;
}
#fp-nav.right {
  right: 45px;
}
#fp-nav ul li,
.fp-slidesNav ul li {
  margin: 4px;
}
#fp-nav ul li:focus,
.fp-slidesNav ul li:focus {
  outline: none;
}
.fancybox-container button.fancybox-arrow--right,
.fancybox-container button.fancybox-arrow--left {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: #504f4f;
}
.fancybox-container button.fancybox-arrow--right:hover,
.fancybox-container button.fancybox-arrow--left:hover {
  background-color: rgba(0,0,0,0.4);
}
.fancybox-container button.fancybox-arrow--right:after,
.fancybox-container button.fancybox-arrow--left:after {
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  width: 20px;
  height: 20px;
  top: 18px;
}
.fancybox-container .fancybox-arrow:after {
  background: none;
}
.fancybox-container .fancybox-arrow--right {
  right: 2%;
  top: 50%;
}
.fancybox-container .fancybox-arrow--right:after {
  left: 15px;
  transform: rotate(45deg);
}
.fancybox-container .fancybox-arrow--left {
  left: 2%;
  top: 50%;
}
.fancybox-container .fancybox-arrow--left:after {
  left: 15px;
  transform: rotate(45deg);
}
.fancybox-container .fancybox-caption {
  display: none;
}
.c-parallax {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.c-parallax.has-dots .slick-dots {
  display: block;
}
.c-parallax .slick-dots {
  display: none;
  text-align: center;
}
.c-parallax .slick-dots li {
  display: inline;
  display: inline-block;
  vertical-align: middle;
  padding: 0.4em;
}
.c-parallax .slick-dots li button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffd923;
  height: 1.5em;
  width: 1.5em;
  border: 0;
  border-radius: 50%;
  color: #fff;
}
.c-parallax .slick-dots li button:hover {
  background-color: #ffd406;
}
.c-parallax__wrapper {
  background-size: cover;
  background-position: 50% 50%;
  height: 500px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
@media (max-width: $mobile-max) {
  .c-parallax__wrapper {
    background-attachment: inherit;
  }
}
.c-parallax__side-img {
  position: absolute;
  bottom: -100px;
  left: 137%;
}
@media (max-width: $tablet-max) {
  .c-parallax__side-img {
    bottom: -150px;
  }
}
@media (max-width: $mobile-max) {
  .c-parallax__side-img {
    bottom: -200px;
  }
}
.c-parallax__side-img img {
  width: 270px;
}
.c-parallax__btn {
  position: absolute;
  z-index: 100;
  height: 100%;
  cursor: pointer;
}
.c-parallax__btn:hover img {
  opacity: 1;
}
.c-parallax__btn img {
  transition: opacity 0.4s ease;
  top: 40%;
  position: relative;
  opacity: 0;
}
.c-parallax__prev {
  left: 5%;
}
.c-parallax__next {
  left: 95%;
}
.c-parallax__content {
  float: left;
  width: 100%;
  position: relative;
  padding: 2em;
  margin-left: 5em;
  height: 400px;
}
@media (max-width: $tablet-max) {
  .c-parallax__content {
    margin-top: 4em;
    margin-left: auto;
  }
}
.c-parallax__txt {
  bottom: 5%;
  position: absolute;
}
@media (max-width: $tablet-max) {
  .c-parallax__txt {
    bottom: 40px;
  }
}
@media (max-width: $mobile-max) {
  .c-parallax__txt {
    bottom: auto;
  }
}
.c-parallax__txt__body {
  font-size: 190%;
  line-height: 100%;
  text-transform: uppercase;
  color: #ffd923;
}
@media (max-width: $mobile-max) {
  .c-parallax__txt__body {
    max-width: 320px;
  }
}
.c-parallax h1 {
  font-size: 270%;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .c-plan__header {
    height: 600px;
    min-height: 600px;
  }
}
.c-plan__header-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #000;
  opacity: 0.9;
}
.c-plan__header-bg img {
  display: inline-block;
  opacity: 0.6;
  position: relative;
  height: 300%;
  width: 100%;
  animation: rotateBg 20s linear 0s infinite;
  top: -100%;
}
.c-plan__main {
  background-color: #fff;
  margin: 10px auto;
  color: #737373;
  max-width: 1440px;
}
.c-plan__main-design {
  display: table;
}
.c-plan__main-design img {
  width: 100%;
  display: table-cell;
}
.c-plan__main-design--text {
  /*font-family: 'Microsoft YaHei';*/
  font-size: 20px;
  line-height: 2em;
  text-align: right;
  vertical-align: top !important;
}
.c-plan__main-design:nth-child(1) {
  padding-top: 100px;
}
.c-plan__main-design--content {
  display: table-cell;
  min-height: 500px;
  width: 50%;
  vertical-align: bottom;
  position: relative;
}
.c-plan__main-design--content .js-fancybox-thumb {
  cursor: pointer;
}
.c-plan__main-design--content a:focus {
  outline: none;
}
.c-plan__main-design--content .fancybox-text {
  display: block;
  position: absolute;
}
.c-plan__main-design--content .fancybox-text.rp {
  left: 10%;
  top: 40%;
  width: 55%;
  height: 50%;
}
.c-plan__main-design--content .fancybox-text.lp {
  left: 35%;
  top: 35%;
  width: 50%;
  height: 60%;
}
.c-plan__main-design--content .hide {
  display: none !important;
}
.c-plan__footer {
  background-color: #292b2f;
}
.c-plan__footer .c-chain__footer--line-before:before,
.c-plan__footer .c-chain__footer--line-after:before,
.c-plan__footer .c-chain__footer--line-before:after,
.c-plan__footer .c-chain__footer--line-after:after {
  background-color: #fff;
}
.c-plan__footer .c-chain__footer--line-before:before,
.c-plan__footer .c-chain__footer--line-after:before {
  height: 2px;
  bottom: 6px;
}
.c-plan__footer--line-after,
.c-plan__footer h2 {
  color: #c1c1c1;
}
.c-plan__footer h3 {
  color: #c598ff;
}
.c-plan__footer .c-chain__footer--icon span {
  color: #c598ff;
}
.c-plan .gallery-carousel-control {
  display: none;
}
.c-side-nav {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
}
.c-side-nav__btn {
  cursor: pointer;
  height: 28px;
  top: 20px;
  left: 25px;
  position: absolute;
  z-index: 11;
}
.c-side-nav__btn__hamburger {
  width: 40px;
  height: 4px;
  background-color: #fff;
  transition: 0.3s;
  position: relative;
  display: inline-block;
}
.c-side-nav__btn__hamburger:before,
.c-side-nav__btn__hamburger:after {
  width: 40px;
  height: 4px;
  background-color: #fff;
  transition: 0.3s;
  display: inline-block;
  content: "";
  position: absolute;
}
.c-side-nav__btn__hamburger:before {
  top: -10px;
}
.c-side-nav__btn__hamburger:after {
  top: 10px;
}
.c-side-nav__btn__hamburger.active {
  background-color: transparent;
}
.c-side-nav__btn__hamburger.active:before,
.c-side-nav__btn__hamburger.active:after {
  width: 30px;
  height: 3px;
  background-color: #72706c;
  top: 0;
}
.c-side-nav__btn__hamburger.active:before {
  transform: rotate(45deg);
}
.c-side-nav__btn__hamburger.active:after {
  transform: rotate(-45deg);
}
.c-side-nav__panel {
  width: 400px;
  height: 100vh;
  position: absolute;
  z-index: 10;
  background-color: #333;
  top: 0;
  left: -400px;
}
.c-side-nav__panel__logo {
  padding: 80px 45px 48px;
}
.c-side-nav__panel__logo a {
  display: block;
  width: 194px;
}
.c-side-nav__panel__logo a img {
  width: 100%;
}
.c-side-nav__panel__menu li {
  border-bottom: 1px solid #72706c;
  position: relative;
}
.c-side-nav__panel__menu li:after {
  width: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #404040;
  transition: width 0.5s ease-in-out;
  content: "";
  position: absolute;
  z-index: -1;
}
.c-side-nav__panel__menu li:hover a,
.c-side-nav__panel__menu li.active a {
  color: #fff;
}
.c-side-nav__panel__menu li:hover:after,
.c-side-nav__panel__menu li.active:after {
  width: 100%;
}
.c-side-nav__panel__menu li a {
  display: block;
  color: #72706c;
  text-transform: uppercase;
  padding: 0 45px;
  line-height: 54px;
  transition: color 0.65s ease-in-out;
}
@media (max-width: 1024px) {
  .c-space__header {
    height: 600px;
    min-height: 600px;
  }
}
.c-space__footer {
  background-color: #fff;
}
.c-space__footer .c-chain__footer--line-before:before,
.c-space__footer .c-chain__footer--line-after:before,
.c-space__footer .c-chain__footer--line-before:after,
.c-space__footer .c-chain__footer--line-after:after {
  background-color: #000;
}
.c-space__footer--line-after,
.c-space__footer h2 {
  color: #363f40;
}
.c-space__footer h3 {
  color: #0078ff;
}
.c-space__footer .c-chain__footer--icon span {
  color: #0078ff;
}
.c-space__design {
  color: #fff;
  margin: 1em auto;
}
.c-space__design-p-r {
  padding-right: 0.5em;
}
.c-space__design-p-l {
  padding-left: 0.5em;
}
.c-space__design-row {
  display: table;
  width: 100%;
  height: 100%;
  padding: 0;
}
.c-space__design-col {
  display: table-cell;
  vertical-align: top;
  padding-bottom: 0.6em;
}
.c-space__design--item {
  position: relative;
}
.c-space__design--item> img {
  width: 100%;
  height: 100%;
  display: block;
}
.c-space__design--item:hover .c-space__design--item-mask {
  opacity: 1;
  transition: opacity 0.6s;
}
.c-space__design--item-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.c-space__design--item-mask-bg {
  background-color: #2d9eff;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  position: absolute;
}
.c-space__design--item-mask-txt {
  position: relative;
  margin: 0 auto;
  top: 35%;
}
.c-space__design--item-mask-txt img {
  width: 60px;
  height: 60px;
}
.c-space__design--item-mask-txt p {
  min-width: 300px;
  margin: 0 auto 1em auto;
  line-height: 1.5em;
}
.c-space__design-btn {
  padding: 0.5em 3em;
  border: 1px solid #000;
  font-size: 1.5em;
  line-height: 1.5em;
  max-width: 350px;
  cursor: pointer;
  margin: 0 auto;
  outline: none;
}
.section.c-homepage__1.in svg {
  opacity: 1;
}
.section.c-homepage__1.in #creative_word {
  stroke-dasharray: 1090.15px;
  stroke-dashoffset: 1090.15px;
  animation: creative 3s linear forwards;
}
.section.c-homepage__1.in #creative_t {
  stroke-dasharray: 52.2735px;
  stroke-dashoffset: 52.2735px;
  animation: creative 0.1s linear forwards;
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
}
.section.c-homepage__1.in #creative_dot {
  stroke-dasharray: 30.7049px;
  stroke-dashoffset: 30.7049px;
  animation: creative 0.1s linear forwards;
  animation-delay: 3.1s;
  -webkit-animation-delay: 3.1s;
}
.c-svg--responsive {
  display: inline;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.c-svg-stars {
  position: absolute;
  width: 400vw;
  height: 400vh;
  top: 50%;
  left: 50%;
  margin-top: -200vh;
  margin-left: -200vw;
  animation: spin 700s linear infinite;
  background-size: 240px;
  backface-visibility: visible;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8yIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDI0MCAyNDAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDI0MCAyNDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxyZWN0IHg9IjEwNiIgeT0iOTAiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiLz48cmVjdCB4PSI3NCIgeT0iNjMiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIyMyIgeT0iNjYiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSI1MCIgeT0iMTEwIiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iNjMiIHk9IjEyOCIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjEiIGhlaWdodD0iMSIvPjxyZWN0IHg9IjQ1IiB5PSIxNDkiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSI5MiIgeT0iMTUxIiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iNTgiIHk9IjgiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIxNDciIHk9IjMzIiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMiIgaGVpZ2h0PSIyIi8+PHJlY3QgeD0iOTEiIHk9IjQzIiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iMTY5IiB5PSIyOSIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjEiIGhlaWdodD0iMSIvPjxyZWN0IHg9IjE4MiIgeT0iMTkiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIxNjEiIHk9IjU5IiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iMTM4IiB5PSI5NSIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjEiIGhlaWdodD0iMSIvPjxyZWN0IHg9IjE5OSIgeT0iNzEiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIzIiBoZWlnaHQ9IjMiLz48cmVjdCB4PSIyMTMiIHk9IjE1MyIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjIiIGhlaWdodD0iMiIvPjxyZWN0IHg9IjEyOCIgeT0iMTYzIiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIi8+PHJlY3QgeD0iMjA1IiB5PSIxNzQiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIxNTIiIHk9IjIwMCIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjEiIGhlaWdodD0iMSIvPjxyZWN0IHg9IjUyIiB5PSIyMTEiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIyIiBoZWlnaHQ9IjIiLz48cmVjdCB5PSIxOTEiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiLz48cmVjdCB4PSIxMTAiIHk9IjE4NCIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjEiIGhlaWdodD0iMSIvPjwvc3ZnPg==");
}
.c-wedo {
  background-color: #464646;
}
.c-wedo .owl-item,
.c-wedo__title-container {
  min-height: 767px;
}
.c-wedo__title {
  background-image: url("../img/about-us-img-0.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
}
.c-wedo__title h1 {
  background-image: url("../img/about-us-img-8.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  text-align: left;
  top: 8%;
  right: 0;
  width: 96%;
  height: 400px;
  padding: 44% 0 0 9%;
  font-size: 60px !important;
  font-weight: bold;
  font-family: 'Helvetica';
}
.c-wedo__slider {
  height: 100%;
}
.c-wedo__slider-1 {
  background-color: #28b4cf;
}
.c-wedo__slider-2,
.c-wedo__slider-4 {
  background-color: #fff;
}
.c-wedo__slider-2 .c-wedo__thumb-wrap,
.c-wedo__slider-4 .c-wedo__thumb-wrap {
  height: 600px;
}
.c-wedo__slider-3 {
  background-color: #333;
}
.c-wedo__thumb-wrap {
  height: 440px;
  overflow: hidden;
}
.c-wedo__thumb-wrap__thumb {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: all 0.2s ease-in-out;
  display: block;
  height: 100%;
}
.c-wedo__thumb-wrap__thumb:hover {
  transform: scale(1.1);
}
.c-wedo__brief {
  color: #000;
  height: 100%;
  position: absolute;
  text-align: left;
  /*font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体";*/
  top: 250px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.c-wedo__brief-1 {
  background-image: url("../img/about-us-img-5.png");
}
.c-wedo__brief-1 .c-wedo__brief__heading {
  border-color: rgba(255,255,255,0.4);
}
.c-wedo__brief-1 .c-wedo__brief__heading:after {
  background-color: rgba(255,255,255,0.4);
}
.c-wedo__brief-2 .c-wedo__brief__heading {
  border-color: #e0e0e0;
}
.c-wedo__brief-2 .c-wedo__brief__heading:after {
  background-color: #e0e0e0;
}
.c-wedo__brief-3 {
  background-image: url("../img/about-us-img-6.png");
}
.c-wedo__brief-3 .c-wedo__brief__heading {
  border-color: #858585;
}
.c-wedo__brief-3 .c-wedo__brief__heading:after {
  background-color: #858585;
}
.c-wedo__brief-4 .c-wedo__brief__heading {
  border-color: #e0e0e0;
}
.c-wedo__brief-4 .c-wedo__brief__heading:after {
  background-color: #e0e0e0;
}
.c-wedo__brief-1,
.c-wedo__brief-3 {
  color: #fff;
}
.c-wedo__brief-2,
.c-wedo__brief-4 {
  background-image: url("../img/about-us-img-7.png");
}
.c-wedo__brief__heading {
  font-size: 36px;
  line-height: 36px;
  border-bottom: 1px solid;
  position: relative;
  padding-bottom: 17px;
  /*margin-bottom: 20px;*/
  margin-bottom: 10px;
  height: 90px;
}
.c-wedo__brief__heading:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: -1px;
  width: 40px;
  height: 2px;
}
@media (max-width: 1024px) {
  .c-wedo__brief__heading{
    font-size: 30px;
    line-height: 36px;
  }
}
.c-wedo__brief__content {
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 30px;
  height: 180px;
}
.c-wedo__brief a {
  font-family: "Roboto Light";
  color: inherit;
  font-size: 16px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding-right: 26px;
  line-height: 16px;
}
.c-wedo__brief a span {
  font-size: 11px;
}
.c-wedo__overlay {
  width: 80%;
  left: 10%;
  top: 20%;
}
@media (min-width: 1200px) {
  .c-wedo__overlay {
    top: 25%;
  }
}
@media (min-width: 1400px) {
  .c-wedo__overlay {
    top: 30%;
  }
}
@media (min-width: 1600px) {
  .c-wedo__overlay {
    top: 30%;
  }
}
.c-wedo__carousel-nav {
  position: fixed;
  bottom: 10px;
  width: 60px;
  height: 30px;
  z-index: 1;
  color: #d6d6d6;
  right: 10px;
}
.c-wedo__carousel-nav__btn {
  font-size: 30px;
  cursor: pointer;
}
.c-wedo__carousel-nav__prev {
  transform: rotate(180deg);
  float: left;
  margin-right: 10px;
}
.c-wedo .c-legal-footnote {
  position: relative;
  bottom: auto;
  transform: initial;
  left: 0;
}
/*.c-work {
  font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体";
}*/
.c-work__main__heading {
  text-transform: uppercase;
  font-weight: bold;
}
/*.c-work__main__heading.chinese {
  font-style: italic;
  font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体";
}*/
.c-work__main section:nth-of-type(1) {
  background: url("../img/work-section-bg-1.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--1 {
  padding-bottom: 150px;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--1 .c-work__main__heading {
  color: #6c66fc;
  text-align: center;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--1 .c-work__main__heading.english {
  font-size: 120px;
  padding-top: 250px;
  line-height: 120px;
  position: relative;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--1 .c-work__main__heading.chinese {
  font-size: 50px;
  padding-left: 150px;
  line-height: 50px;
  position: relative;
  padding-left: 30px;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--1 img {
  float: right;
  width: 40%;
  padding-top: 110px;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--1 p {
  width: 40%;
  position: relative;
  left: 10%;
  color: #968b93;
  font-size: 26px;
  line-height: 40px;
  position: relative;
  font-style: italic;
  font-weight: bold;
  text-align: right;
  margin-top: 10px;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--2 .c-work__main__section__overlay {
  float: left;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--2 .c-work__main__heading {
  color: #6c66fc;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--2 .c-work__main__heading.english {
  font-size: 120px;
  line-height: 120px;
  text-align: right;
  padding-right: 10%;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--2 .c-work__main__heading.chinese {
  text-align: left;
  font-size: 50px;
  line-height: 50px;
  font-weight: bold;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--2 img {
  float: left;
  width: 40%;
  padding-bottom: 200px;
}
.c-work__main section:nth-of-type(1) .c-work__main__section--2 p {
  position: relative;
  color: #968b93;
  font-size: 26px;
  line-height: 40px;
  position: relative;
  font-style: italic;
  font-weight: bold;
  text-align: left;
  float: left;
  margin-top: 20px;
}
.c-work__main section:nth-of-type(2) {
  background: url("../img/work-section-bg-2.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.c-work__main section:nth-of-type(2) .c-work__main__section__img a img {
  width: 60px;
}
.c-work__main section:nth-of-type(2) .c-work__main__heading {
  position: absolute;
}
.c-work__main section:nth-of-type(2) .c-work__main__heading.english {
  font-size: 75px;
  line-height: 75px;
}
.c-work__main section:nth-of-type(2) .c-work__main__heading.chinese {
  font-size: 65px;
  line-height: 75px;
}
.c-work__main section .c-work__main__section--3 {
  position: relative;
}
.c-work__main section .c-work__main__section--3 .c-work__main__section__img {
  position: relative;
  top: 0;
  width: 70%;
  margin: 0 10% 0 auto;
}
.c-work__main section .c-work__main__section--3 .c-work__main__section__img>img {
  width: 100%;
}
.c-work__main section .c-work__main__section--3 .c-work__main__section__img a {
  position: absolute;
  right: 10%;
  bottom: 5%;
}
.c-work__main section .c-work__main__section--3 .c-work__main__heading {
  position: absolute;
}
.c-work__main section .c-work__main__section--3 .c-work__main__heading.english {
  color: #adadad;
  left: 10%;
  top: 20%;
}
.c-work__main section .c-work__main__section--3 .c-work__main__heading.chinese {
  color: #00d5d1;
  left: 5%;
  top: 32%;
}
.c-work__main section .c-work__main__section--4 {
  position: relative;
  padding: 50px 0;
}
.c-work__main section .c-work__main__section--4 .c-work__main__section__img {
  position: relative;
  width: 70%;
}
.c-work__main section .c-work__main__section--4 .c-work__main__section__img>img {
  width: 100%;
}
.c-work__main section .c-work__main__section--4 a {
  position: absolute;
  bottom: 10%;
  right: -40px;
}
.c-work__main section .c-work__main__section--4 .c-work__main__heading.english {
  color: #adadad;
  top: 20%;
  right: 12%;
}
.c-work__main section .c-work__main__section--4 .c-work__main__heading.chinese {
  color: #db8085;
  top: 32%;
  right: 10%;
}
.c-work__main section .c-work__main__section--5 {
  position: relative;
  padding: 50px 0;
}
.c-work__main section .c-work__main__section--5 .c-work__main__section__img {
  position: relative;
  width: 70%;
  margin: 0 10% 0 auto;
}
.c-work__main section .c-work__main__section--5 .c-work__main__section__img>img {
  width: 100%;
  box-shadow: 1px 1px 80px rgba(108,102,252,0.3);
}
.c-work__main section .c-work__main__section--5 .c-work__main__section__img a {
  position: absolute;
  right: 0;
  bottom: -70px;
}
.c-work__main section .c-work__main__section--5 .c-work__main__section__text {
  position: absolute;
  top: 4%;
  left: 10%;
}
.c-work__main section .c-work__main__section--5 .c-work__main__heading {
  position: relative;
}
.c-work__main section .c-work__main__section--5 .c-work__main__heading.english {
  color: #adadad;
  float: left;
}
.c-work__main section .c-work__main__section--5 .c-work__main__heading.chinese {
  color: #9264a0;
  float: left;
  margin-left: 50px;
}
.c-work__main section .c-work__main__section--6 {
  position: relative;
  padding: 50px 0;
}
.c-work__main section .c-work__main__section--6 .c-work__main__section__img {
  position: relative;
  width: 70%;
  margin: 0 auto 0 10%;
}
.c-work__main section .c-work__main__section--6 .c-work__main__section__img>img {
  width: 100%;
}
.c-work__main section .c-work__main__section--6 .c-work__main__section__img a {
  position: absolute;
  right: -50px;
  bottom: 9.5%;
}
.c-work__main section .c-work__main__section--6 .c-work__main__heading.english {
  color: #adadad;
  top: 7%;
  right: 16%;
}
.c-work__main section .c-work__main__section--6 .c-work__main__heading.chinese {
  color: #db8085;
  right: 11%;
  top: 19%;
}
.c-work__main section .c-work__main__section--7 {
  position: relative;
  padding: 20px 0;
}
.c-work__main section .c-work__main__section--7 .c-work__main__section__img {
  position: relative;
  width: 55%;
  margin: 0 0 0 30%;
}
.c-work__main section .c-work__main__section--7 .c-work__main__section__img>img {
  width: 100%;
  box-shadow: 1px 1px 80px rgba(108,102,252,0.3);
}
.c-work__main section .c-work__main__section--7 .c-work__main__section__img a {
  position: absolute;
  left: -90px;
  bottom: 0;
}
.c-work__main section .c-work__main__section--7 .c-work__main__heading.english {
  color: #adadad;
  top: 15%;
  left: 10%;
}
.c-work__main section .c-work__main__section--7 .c-work__main__heading.chinese {
  color: #db8085;
  left: 32%;
  top: 39%;
}
.c-work__main section .c-work__main__section--8 {
  position: relative;
  padding: 200px 0 100px;
}
.c-work__main section .c-work__main__section--8 .c-work__main__section__img {
  position: relative;
  width: 70%;
  margin: 0 auto 0 10%;
}
.c-work__main section .c-work__main__section--8 .c-work__main__section__img>img {
  width: 100%;
}
.c-work__main section .c-work__main__section--8 .c-work__main__section__img a {
  position: absolute;
  right: -50px;
  bottom: 12%;
}
.c-work__main section .c-work__main__section--8 .c-work__main__heading.english {
  color: #adadad;
  top: 16%;
  right: 16%;
}
.c-work__main section .c-work__main__section--8 .c-work__main__heading.chinese {
  color: #ff70af;
  right: 11%;
  top: 7%;
}
.c-work__main section .c-chain__footer--line-before:before,
.c-work__main section .c-chain__footer--line-after:before,
.c-work__main section .c-chain__footer--line-before:after,
.c-work__main section .c-chain__footer--line-after:after {
  background-color: #363f40;
}
.gallery-cover {
  width: 100%;
  background: rgba(0,0,0,0.8);
  position: absolute;
  z-index: 19;
}
.gallery-popup {
  position: absolute;
  width: 80%;
  z-index: 20;
  max-width: 800px;
  overflow: hidden;
}
.gallery-popup img {
  width: 100%;
}
.gallery-popup-container {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.gallery-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #504f4f;
  cursor: pointer;
}
.gallery-popup-close:hover {
  background: rgba(0,0,0,0.4);
}
.gallery-popup-close:before,
.gallery-popup-close:after {
  content: "";
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  transform-origin: center center;
  top: 14px;
  left: 8px;
}
.gallery-popup-close:before {
  transform: rotate(45deg);
}
.gallery-popup-close:after {
  transform: rotate(-45deg);
}
.gallery-carousel-control-btn {
  width: 60px;
  height: 60px;
  background: #504f4f;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 30px);
}
.gallery-carousel-control-btn:hover {
  background: rgba(0,0,0,0.4);
}
.gallery-carousel-control-btn span {
  display: block;
  width: 20px;
  height: 20px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
  position: relative;
  top: 20px;
}
.gallery-carousel-control-prev {
  left: 2%;
}
.gallery-carousel-control-prev span {
  transform: rotate(45deg);
  margin-left: 40%;
}
.gallery-carousel-control-next {
  right: 2%;
}
.gallery-carousel-control-next span {
  transform: rotate(-135deg);
  margin-left: 30%;
}
.c-content__sustainability{
  width: 90%;
  max-width: 1024px;
  margin: auto;
  position: relative;
}
.c-content__sustainability__banner img.overlay-image{
  position: absolute;
  width: 30%;
  left: 53%;
  transform: translateX(-50%);
  top: 5%;
}

.c-content__sustainability__main{
  position: relative;
  padding: 160px 0 50px;

}
.c-content__sustainability__main img.overlay-image{
  position: absolute;
  width: 55%;
  left: 50%;
  transform: translateX(-50%);
  top: -2%;
}
.c-content__sustainability__carousel__container{
  position: relative;
  width: 80%;
  margin: 80px auto 50px;
}
.c-content__sustainability__carousel__container .owl-carousel .owl-stage-outer{
  border: 5px solid #fff;
  border-radius: 30px;
  box-sizing: border-box;
}
.c-content__sustainability__carousel__container .owl-carousel .item video{
  width: 100%;
  height: auto;
}
.c-content__sustainability__carousel__container .owl-carousel .item p{
  font-size: 24px;
  line-height: 28px;
  padding: 10px 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.2);
}
.c-content__sustainability__carousel__container .owl-carousel .owl-nav{
  position: absolute;
  width: calc(100% + 100px);
  top: 55%;
  margin-top: -50px;
  left: -50px;
  }
.c-content__sustainability__carousel__container .owl-carousel .owl-nav .owl-prev,
.c-content__sustainability__carousel__container .owl-carousel .owl-nav .owl-next{
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 30px solid #fff;
  position: absolute;
  font-size: 0;
  text-indent: -9999px;
}
.c-content__sustainability__carousel__container .owl-carousel .owl-nav .owl-prev{
  transform: rotate(-90deg);
  left: -90px;
}
.c-content__sustainability__carousel__container .owl-carousel .owl-nav .owl-next{
  transform: rotate(90deg);
  right: -90px;
}
.c-content__sustainability__carousel__container .decor-img-1{
  position: absolute;
  top: -40px;
  left: -60px;
  width: 50px;
}
.c-content__sustainability__carousel__container .decor-img-2{
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 50px;
}

.c-content__news{
    width: 90%;
    max-width: 800px;
    margin: auto;
    position: relative;
}
.c-content__news__inPageMenu{
  position: absolute;
  text-align: left;
  padding: 20px 0 0 20px;
}
.c-content__news__inPageMenu li{
  display: inline-block;
  margin-right: 10px;
}
.c-content__news__inPageMenu a{
  display: block;
  width: 120px;
  height: 40px;
  background-color: #fff;
  color: #5c5c5c;
  font-size: 16px;
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
}
.c-content__news__inPageMenu li.active a,
.c-content__news__inPageMenu li a:hover{
  background-color: #f7f7f7;
}
.c-content__news__inPageMenu--dark a{
  background-color: #20046a;
  color: #fff;
}
.c-content__news__inPageMenu--dark li a:hover{
  background-color: #3300b3;
}
.c-content__news__main{
  padding: 100px 0 0 60px;
}
.c-content__news__main li{
  padding: 20px 0;
}
.c-content__news__main li a{
  font-size: 0;
}
.c-content__news__main li a>div{
  display: inline-block;
  vertical-align: top;
}
.c-content__news__main__image{
  width: 40%;
  border-radius: 20px;
}
.c-content__news__main__image img{
  width: 100%;
}
.c-content__news__main__title{
  width: 60%;
  font-size: 16px;
  line-height: 18px;
  padding: 20px 0 0 20px;
  text-align: left;
  color: #333;
}
.c-content__news__main__back a{
  float: right;
  color: #000;
}
.c-content__news__main__back .icon-back{
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url("../img/news/icon-back.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  vertical-align: middle;
}

.c-post{
    width: 90%;
    max-width: 800px;
    margin: auto;
    position: relative;
    padding: 50px 0;
}
.c-post__pageheader{
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
}
.c-post__pageheader div{
  float: right;
  font-family: auto;
}
.c-post h1{
  font-size: 30px;
  line-height:40px;
  font-weight: bold;
  padding: 50px 0;
}
.c-post .h2,
.c-post h2{
  font-size: 24px;
  line-height:34px;
  margin: 15px 0 10px;
}
.c-post .h3,
.c-post h3{
  font-size: 18px;
  line-height:28px;
  margin: 10px 0 0;
}
.c-post ul li{
  font-size: 14px;
  line-height: 24px;
  list-style-type: disc;
  list-style-position: inside;
}
.c-post p{
  font-size: 14px;
  line-height: 24px;
}
.c-post .divider{
  height: 6px;
  border-top:2px solid #000;
  border-bottom: 1px solid #000;
}
.c-post__main img{
  width:700px;
}
.c-post__headerImg{
  margin: 35px 0;
}