* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #fff;
}

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

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

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

.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

@media (max-width: 767px) {
  .flex-sm-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767px) {
  .flex-sm-full {
    width: 100% !important;
  }
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.whiteBg {
  background: #fff;
}

.radius5 {
  border-radius: 5px;
  overflow: hidden;
}

.radius10 {
  border-radius: 10px;
  overflow: hidden;
}

.radius15 {
  border-radius: 15px;
  overflow: hidden;
}

.font-serif {
  font-family: serif;
}

.container {
  width: 1600px;
  margin: 0 auto;
}
@media (max-width: 1700px) {
  .container {
    width: 1200px;
  }
}
@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 5%;
  }
}

.hide {
  display: none;
}

.overHidden {
  overflow: hidden;
}

.img {
  max-width: 100%;
}

.widthfull {
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  height: 120px;
  z-index: 99;
}
@media (max-width: 1700px) {
  header {
    height: 100px;
  }
}
@media (max-width: 767px) {
  header {
    height: 60px;
    background: #000;
  }
}
header .logoa img {
  width: 290px;
}
@media (max-width: 767px) {
  header .logoa img {
    width: 150px;
  }
}
@media (min-width: 768px) {
  header .navBtnOpen {
    display: none;
  }
}
header .navBtnOpen div {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
          align-items: flex-end;
}
header .navBtnOpen div span {
  width: 25px;
  border-top: 2px solid #fff;
  margin: 3px 0;
}
header .navBtnOpen div span:first-child {
  width: 35px;
}
header .navBtnClose {
  display: none;
}
header .navBtnClose div {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
}
header > div {
  height: 100%;
}
@media (max-width: 767px) {
  header .nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: -webkit-calc(100vh - 60px);
    height: calc(100vh - 60px);
    padding: 0 5%;
    background: #000 url(../images/navbg.png) no-repeat;
    background-position: right bottom;
    background-size: 250px;
  }
}
header .nav .mobileNav {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  height: 100%;
  padding: 30px 0;
}
@media (min-width: 768px) {
  header .nav .mobileEmail {
    display: none;
  }
}
header .nav .mobileEmail a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  header .nav .headerNav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
  }
  header .nav .headerNav .mobplatform {
    display: block;
    margin-top: 20px;
  }
  header .nav .headerNav .mobplatform a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 6px;
    margin-right: 10px;
  }
}
header .nav li {
  margin: 0 30px;
}
@media (max-width: 767px) {
  header .nav li {
    font-size: 40px;
    margin: 5px 0;
  }
}

.block {
  margin: 150px 0;
}
@media (max-width: 767px) {
  .block {
    margin: 50px 0;
  }
}

.talk {
  font-size: 240px;
  font-weight: bold;
  background-image: linear-gradient(45deg, #f484d5 10%, #ffffff 40%, #5f5ef9 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1700px) {
  .talk {
    font-size: 200px;
  }
}
@media (max-width: 767px) {
  .talk {
    font-size: 56px;
  }
  .talk img {
    width: 60px;
  }
}
.talk a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

@media (max-width: 767px) {
  .swiper.brandloopSwiper {
    padding: 20px 0;
  }
}
.swiper.brandloopSwiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.swiper.brandloopSwiper .swiper-slide {
  width: auto;
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .swiper.brandloopSwiper .swiper-slide {
    height: 50px;
  }
}
.swiper.brandloopSwiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}

footer {
  background: #191715;
  padding: 50px 0;
}
footer .footerT {
  font-size: 36px;
  color: #fff;
  margin: 30px 0;
}
@media (max-width: 767px) {
  footer .footerT {
    font-size: 20px;
    margin-top: 0;
  }
}
footer .footerT .footerT-f {
  position: relative;
  padding-left: 20px;
}
footer .footerT .footerT-f::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
}
footer .footerC {
  border-top: 1px solid #413e3c;
  border-bottom: 1px solid #413e3c;
  padding: 20px 0;
}
@media (max-width: 767px) {
  footer .footerC {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
footer .footerC .footerlink {
  padding-left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
@media (max-width: 767px) {
  footer .footerC .footerlink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0;
  }
  footer .footerC .footerlink .link1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
            order: 1;
  }
  footer .footerC .footerlink .link2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
            order: 2;
  }
  footer .footerC .footerlink .link3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
            order: 3;
  }
  footer .footerC .footerlink .link4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
            order: 4;
  }
  footer .footerC .footerlink .link5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
            order: 5;
  }
}
footer .footerC .footerlink p {
  margin-right: 30px;
}
@media (max-width: 767px) {
  footer .footerC .footerlink p {
    width: 100% !important;
    display: contents;
  }
}
footer .footerC .footerlink p:first-child {
  width: 75px;
}
footer .footerC .footerlink p:nth-child(2) {
  width: 110px;
}
footer .footerC .footerlink p a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  margin: 6px 0;
}
@media (max-width: 767px) {
  footer .footerC .footerlink p a {
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid #413e3c;
  }
}
footer .footerC .footerlink p a span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  margin-left: 4px;
  padding: 6px;
  background: #2d2d2d;
  border-radius: 50%;
}
@media (max-width: 767px) {
  footer .footerC .type {
    margin-top: 20px;
  }
}
footer .footerC .type a {
  border: 1px solid #323232;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  padding: 8px;
  margin: 0 6px;
}
footer .footerB {
  color: #fff;
  margin: 20px 0;
}
footer .footerB p {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}
footer .footerB img {
  margin: 0 10px;
  height: 30px;
}

.marquee {
  width: 100%;
}

.marquee ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.marquee ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin: 0 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}/*# sourceMappingURL=common.css.map */