@import './animation.css';

/* reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    box-sizing:border-box;
    -webkit-font-smoothing: antialiased
}
body {
    line-height:1;
}

:focus {
    outline: 1;
}

article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary { 
    display:block;
}

ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    border:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    color: #C8CBCC;
}

ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted #000;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
*::selection{
	background: #000;
	color: #fff;
}

/* 公共 */
.ts-1 {
  transition: all .3s;
}
.ts-2 {
  transition: all .5s;
}
.ts-3 {
  transition: all .7s;
}
.ts-4 {
  transition: all .9s;
}
.ts-5 {
  transition: all 1.3s;
}
.ts-6 {
  transition: all 1.5s;
}
.ts-7 {
  transition: all 1.7s;
}
.ts-8 {
  transition: all 1.9s;
}
.ts-down {
  transform: translateY(-15px);
  opacity: 0;
}
.ts-up {
  transform: translateY(15px);
  opacity: 0;
}
.is-ready-down {
  transform: translateY(0)!important;
  opacity: 1!important;
}

/* font */
@font-face {
  font-family: "Nexa";
  src: url("../font/Nexa-XBold.otf") format("opentype");
  font-weight: normal
}

@font-face {
  font-family: "NexaBold";
  src: url("../font/Nexa-Bold.otf") format("opentype");
  font-weight: normal
}

@font-face {
  font-family: "NexaLight";
  src: url("../font/Nexa-Light.otf") format("opentype");
  font-weight: normal
}
@font-face {
  font-family: 'iconfont';
  src: url('../font/iconfont.eot');
  src: url('../font/iconfont.eot?#iefix') format('embedded-opentype'),
      url('../font/iconfont.woff2') format('woff2'),
      url('../font/iconfont.woff') format('woff'),
      url('../font/iconfont.ttf') format('truetype'),
      url('../font/iconfont.svg#iconfont') format('svg');
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* loading */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: #191F23;
  opacity: 1;
  visibility: visible;
  transition: all .3s;
}
.loading.is-ready {
  opacity: 0;
  visibility: hidden;
}
.loading .loader {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #C8CBCC;
}
.loading .loader .loader_figure {
  width: 3.75rem;
  height: 3.75rem;
  box-sizing: border-box;
  border: 0 solid;
  border-radius: 50%;
  -webkit-animation: loader-figure 1.15s infinite cubic-bezier(.215, .61, .355, 1);
  animation: loader-figure 1.15s infinite cubic-bezier(.215, .61, .355, 1);
}

/* main */
body {
  width: 100%;
  height: 100%;
  background: #191F23;
  font-family: 'Microsoft Yahei', '微软雅黑', "Noto Sans SC", 'PingFang SC',  "Microsoft JhengHei", 'Myriad Pro', 'Hiragino Sans GB', sans-serif;
}
.container {
  padding: 160px 40px 0;
}

/* 顶部 */
.header {
  width: 100%;
  height: 125px;
  margin: auto;
  padding: 50px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
}
.header.scrolling {
  background: #191F23;
}
.header .header-container {
  width: 100%;
  max-width: 1720px;
  height: 25px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .1s;
}
.nav {
  display: flex;
  width: 340px;
  color: #C8CBCC;
  font-size: 14px;
  font-weight: 500;
  justify-content: space-between;
}
.nav .nav__item {
  text-align: center;
  width: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.masker-animation {
  content: '';
  display: block;
  width: 10vw;
  height: 10vw;
  position: fixed;
  left: 100px;
  top: 40px;
  margin: auto;
  border-radius: 50%;
  background: #171D21;
  z-index: 10;
  visibility: hidden;
  transform: scale(1, 1);
  transition: all .8s;
  opacity: 0;
}
.masker-animation.linking {
  opacity: 1;
  visibility: visible;
  transform: scale(25, 25);
}
.masker-animation.linking2 {
  opacity: 1;
  visibility: visible;
  transform: scale(60, 60);
}
.nav .nav__item .nav__link {
  display: inline-block;
  position: relative;
  font-weight: 600;
}
.header .nav__back {
  display: none;
}
.nav .nav__item .nav__link::before {
  content: '';
  border-radius: 2px;
  display: block;
  width: 100%;
  height: 4px;
  background: #C8CBCC;
  top: -10px;
  left: 0;
  position: absolute;
  transition: all .3s;
  transform: translateY(15px);
  opacity: 0;
}
.nav .nav__item .nav__link::after {
  content: '';
  border-radius: 2px;
  display: block;
  width: 100%;
  height: 4px;
  background: #C8CBCC;
  bottom: -10px;
  left: 0;
  position: absolute;
  transition: all .3s;
  transform: translateY(-15px);
  opacity: 0;
}
.nav .nav__item.is-active .nav__link::before,
.nav .nav__item:hover .nav__link::before {
  transform: translateY(0);
  opacity: 1;
}
.nav .nav__item.is-active .nav__link::after,
.nav .nav__item:hover .nav__link::after {
  transform: translateY(0);
  opacity: 1;
}
.header .logo {
  width: 160px;
  display: block;
}
.header .logo .logo__img {
  width: 100%;
  display: block;
  cursor: pointer;
}

/* slogan */
.slogan {
  width: 100%;
  height: 60px;
  max-width: 1620px;
  margin: 400px auto;
}
.slogan .slogan__tit {
  font-size: 54px;
  color: #C8CBCC;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.slogan .slogan__tit::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 54px;
  background: #C8CBCC;
  position: absolute;
  right: -10px;
  top: 0;
}
.slogan .slogan__sub {
  font-size: 20px;
  color: #C8CBCC;
  font-weight: 100;
  display: block;
}

/* part */
.part {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto 50px;
  position: relative;
}
.part .part__title {
  color: #4D4D4D;
  font-size: 40px;
  font-weight: 900;
}
.part .part__more {
  width: 100%;
  font-size: 16px;
  color: #C8CBCC;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 100px 0 200px;  
}
.part .part__more:hover {
  color: #fff;
}
.part .part__more:hover::after {
  border: 2px solid #fff;
}
.part .part__more::after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 5px solid #C8CBCC;
  border-radius: 50%;
  box-sizing: border-box;
  margin-left: 5px;
  cursor: pointer;
  transition: all .3s;
}

/* work */
.works {
  width: 1860px;
  margin-top: 20px;
  overflow: hidden;
  transition: all .3s;
}
.works.is-hid {
  transform: translateY(15px);
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.works.is-works-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-wrap: wrap;
  height: auto;
}
.works .work {
  width: 560px;
  margin-bottom: 144px;
  cursor: pointer;
  position: relative;
  float: left;
  margin-right: 60px;
}
.works .work:hover .work__img {
  filter: blur(10px);
  /* transform: translateY(-200px)  scale(1.01, 1.01);
  transition: transform 10s, filter .5s; */
}
.works .work:hover .work__masker {
  opacity: 1;
}
.works .work .work__view {
  width: 100%;
  height: 420px;
  max-height: 435px;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
  margin-bottom: 20px;
  background: #151916;
}
.works .work .work__img {
  width: 100%;
  position: absolute;
  left: -300%;
  right: -300%;
  margin: auto;
  transition: transform 1s, filter .5s;
  transform: translateY(0) scale(1, 1);
}
.works .work .work__masker {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works .work .work__masker .content {
  width: 100%;
  height: 40px;
  text-align: center;
}
.work__masker .content .tags {
  display: block;
  font-size: 14px;
  color: #C8C9C9;
  margin-bottom: 10px;
  font-weight: 400;
}
.work .model-tags, .work .model-date {
  display: none;
}
.work__masker .content .tags .tag {
  margin: 0 10px;
}
.work__masker .content .date {
  font-size: 16px;
  font-weight: 600;
  color: #C8C9C9;
}
.works .work .work__text {
  color: #C8CBCC;
  font-size: 24px;
  padding: 0 3px;
  font-weight: 600;
}

/* work-categorys */
.work-categorys {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 150px auto;
  width: 890px;
}
.work-category {
  width: 90px;
  text-align: center;
  opacity: .5;
  transition: all .3s;
  cursor: pointer;
}
.work-category:hover, .work-category.is-active {
  opacity: 1;
}
.work-category__focuse {
  position: absolute;
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
  bottom: -14px;
  transition: all .3s;
}
.work-category__focuse.focuse-1 {
  left: 24px;
}
.work-category__focuse.focuse-2 {
  left: calc(50% - 21px);
}
.work-category__focuse.focuse-3 {
  right: 24px;
}
.work-categorys .category__icon-box {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.work-category .work-category__icon {
  max-width: 100%;
  max-height: 100%;
}
.work-categorys .work-category__text {
  color: #C8C9C9;
  font-size: 12px;
}

/* methodology */
.methodology {
  display: flex;
  background: #0C1417;
  padding: 40px 40px 80px;
  flex-wrap: wrap;
  justify-content: space-around;
  border-radius: 10px;
  margin-bottom: 340px;
}
.method-title {
  font-size: 40px;
  color: #C8C9C9;
  font-weight: 800;
  width: 100%;
  margin-bottom: 40px;
}
.method-item__view {
  width: 98px;
  height: 278px;
  position: relative;
}
.method-item__img {
  width: 98px;
  height: 278px;
  border-radius: 10px;
}
.method-item__content {
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100px;
  height: 85px;
}
.method-item__content-tit {
  color: #C8C9C9;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 14px;
}
.method-item__content-txt {
  color: #C8C9C9;
  font-size: 12px;
  display: block;
  line-height: 15px;
}

/* insighte */
.insightes {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}
.insightes .insighte {
  width: 100%;
  height: 280px;
  position: relative;
  margin-bottom: 200px;
  cursor: pointer;
  transition: all 1.1s;
  opacity: .5;
  display: flex;
  align-items: center;
}
.insightes .insighte.insighte--left {
  justify-content: flex-end;
}
.insighte:hover {
  opacity: 1;
}
.insighte:hover .insighte__view {
  width: 50%!important;
}
.insighte:hover .insighte__img {
  opacity: 1;
  transform: scale(1.5, 1.5);
}
.insighte .insighte__view {
  width: 50%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
  top: 0;
  left: 0;
  transition: all 1.1s;
}
.insighte.is-ready-down .insighte__view {
  width: 65%;
}
.insighte.insighte--right .insighte__view {
  right: 0;
  left: auto;
}
.insighte .insighte__img {
  width: 100%;
  position: absolute;
  top: -300%;
  bottom: -300%;
  left: -300%;
  right: -300%;
  margin: auto;
  transition: all 1.1s;
  transform: translateY(0) scale(1, 1);
  opacity: .75;
  z-index: 1;
}
.insighte .insighte__content {
  width: 45%;
  position: relative;
  z-index: 2;
}
.insighte.insighte--right .insighte__content {
  right: auto;
  left: 0;
}
.insighte .insighte__title {
  font-size: 34px;
  line-height: 44px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}
.insighte .insighte__subtext {
  font-size: 18px;
  color: #fff;
}

/* about */
.about {
  height: 280px;
  background-size: 100%;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto 360px;
}
.about .about-title {
  width: 100%;
  color: #C8C9C9;
  font-size: 40px;
  font-weight: 800;
}
.about-1 {
  background: url(../image/about-bg3.png) no-repeat;
  background-size: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.about-1 .about-1__logo {
  width: 10%;
  margin: 0 7%;
}
.about-1 .about-1__text {
  width: 70%;
  font-size: 14px;
  color: #C8C9C9;
  line-height: 18px;
}
.about-2 {
  background: url(../image/about-bg1.png) no-repeat;
  background-size: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.about-2 .about-2__list {
  height: 100px;
  display: flex;
  flex-direction: column;
}
.about-2 .about-2__list-item {
  color: #C8C9C9;
  font-size: 12px;
  line-height: 24px;
}
.about-2 .about-2__logos {
  display: flex;
  width: 140px;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.about-2 .about-2__logo {
  width: 30px;
  margin: 10px;
}
.about-2 .about__subtext {
  width: 100%;
  color: #C8C9C9;
  font-size: 12px;
  line-height: 16px;
}

.about-3 {
  background: url(../image/about-bg2.png) no-repeat;
  background-size: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.about-3 .about-3__title {
  font-size: 24px;
  font-weight: 800;
  color: #C8C9C9;
  margin-bottom: 10px;
}
.about-3 .about-3__text {
  font-size: 12px;
  color: #C8C9C9;
  line-height: 24px;
  display: block;
}


/* brands */
.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 160px auto;
  width: 100%;
  max-width: 1800px;
  margin: 100px auto 150px;
}
.brands .brand {
  width: 150px;
  height: 120px;
  margin: 30px calc(16.66667% - 75px);
  text-align: center;
  position: relative;
}
.brands .brand.lengthy {
  width: 200px;
  height: 120px;
  margin: 30px calc(16.66667% - 100px);
}
.brand .brand__img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

/* detail-cover */
.detail-cover .detail-cover__img, .detail-cover img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  width: 100%;
}
.detail-cover p {
  font-size: 16px;
  line-height: 16px;
  color: #C8C9C9;
  transition: all .3s;
}

/* more */
.more {
  width: 100%;
  height: 42px;
  margin: 200px 0;
}
.more__link {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto;
}
.more__img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: .5;
  transition: all .3s;
}
.more__img:hover {
  opacity: 1;
}

/* article */
.article {
  color: #C8C9C9;
  margin: 0 auto;
  padding: 130px 50px;
  position: relative;
}
.article-bg {
  width: 1800px;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  height: 500px;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
}
.article-bg .article-bg__img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .1;
}
.article__header {
  width: 60%;
}
.article__header .article-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
}
.article__header .article-tags {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: 200;
}
.article__header .article-date {
  font-size: 16px;
  font-size: 500;
}
.article .article__content {
  width: 70%;
  margin-left: 30%;
  margin-top: 80px;
  line-height: 25px;
  display: flex;
  flex-direction: column;
}
.article .article__content h1 {
  font-size: 40px;
  line-height: 1.6em;
  margin: 20px 0;
}
.article .article__content h2 {
  font-size: 34px;
  line-height: 1.6em;
  margin: 16px 0;
}
.article .article__content h3 {
  font-size: 28px;
  line-height: 1.6em;
  margin: 14px 0;
}
.article .article__content h4 {
  font-size: 22px;
  line-height: 1.6em;
  margin: 11px 0;
}
.article .article__content h5 {
  font-size: 18px;
  line-height: 1.6em;
  margin: 9px 0;
}
.article .article__content h6 {
  font-size: 14px;
  line-height: 1.6em;
  margin: 7px 0;
}
.article .article__content img {
  max-width: 100%;
  margin: 20px 0;
}
.article .article__content ol,
.article .article__content ul {
  line-height: 30px;
  margin: 0 0 30px 30px;
}
.article .article__content ul li {
  height: 30px;
}
.article .article__content ul li::before {
  content: '•';
  margin-right: 6px;
}
.article .article__content strong {
  background: rgba(0, 0, 0, .3);
  padding: 10px;
  font-weight: bold;
  color: #fff;
}
.article .article__content blockquote {
  background: rgba(0, 0, 0, .3);
  padding: 10px;
  border-left: 10px solid #000;
}
.article .article__content-title {
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 100px;
  font-weight: 800;
  transform: translateY(15px);
  opacity: 0;
  transition: all .3s;
}
.article .article__content-text, .article p {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 25px;
  color: #C8C9C9;
  transition: all .3s;
}

/* message */
.message {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1800px;
  margin: 50px auto;
  padding: 40px;
  background: #0C1417;
  border-radius: 10px;
}
.message .message__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.message .message__title {
  font-size: 40px;
  color: #C8C9C9;
  font-weight: 900;
  margin-bottom: 10px;
}
.message .message__subtext {
  font-size: 20px;
  color: #C8C9C9;
  font-weight: 100;
}
.message .message__share {
  display: flex;
  margin-top: 40px;
}
.message .message__icon {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #C8C9C9;
  border-radius: 50%;
  font-size: 20px;
  color: #0C1417;
  text-align: center;
  margin-right: 16px;
  cursor: pointer;
}
.message__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.message .message__form {
  margin-top: 20px;
}
.message .message__form-item {
  height: 34px;
  margin-bottom: 20px;
  position: relative;
}
.message .message__form-item .message__submit {
  color: #C8C9C9;
  font-size: 12px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  width: 100px;
  display: block;
  background: #0C1417;
  left: 0;
  right: 0;
  bottom: -40px;
  margin: auto;
  position: absolute;
  cursor: pointer;
  transition: all .3s;
}
.message .message__form-item .message__submit::after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 5px solid #C8CBCC;
  border-radius: 50%;
  box-sizing: border-box;
  margin-left: 5px;
  cursor: pointer;
  transition: all .3s;
  margin-bottom: -3px;
}
.message .message__form-item .message__submit:hover::after {
  border: 2px solid #fff;
}
.message .message__form-item .message__submit:hover {
  /* background: #222; */
}
.message .message__input, .message .message__textarea {
  height: 34px;
  line-height: 34px;
  padding: 0 10px;
  width: 300px;
  background: none;
  border: none;
  border-bottom: 1px solid #31312E;
  outline: none;
  color: #fff;
}
.message .message__input::-webkit-input-placeholder,
.message .message__input::-moz-input-placeholder,
.message .message__input::-ms-input-placeholder {
  color: #C8C9C9;
}
.message .message__contact {
  text-align: right;
  font-size: 12px;
  color: #C8C9C9;
}
.message .message__contact {
  display: block;
  margin: 22px 0;
  font-weight: 100;
}

/* footer */
.footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1800px;
  margin: 50px auto 0;
  transition: all .3s;
  transform: translateY(10px);
}
.footer:hover {
  transform: translateY(0);
}
.footer:hover .footer__tit {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer .footer__tit {
  font-size: 14px;
  color: #C8C9C9;
  text-align: center;
  height: 32px;
  line-height: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.footer .footer__box {
  width: 100%;
  height: 50px;
  background: #0C1417;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  padding: 10px;
}
.footer .footer__icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
  color: #4D4D4D;
}
.footer .footer__text {
  position: absolute;
  right: 20px;
  margin: auto;
  height: 40px;
  line-height: 40px;
  color: #414141;
  font-size: 12px;
}

.mobel_nav {
  display: none;
}


/* 媒体查询 */
@media screen and (max-width: 1919px) {
  .header .header-container, .slogan {
    max-width: 1320px;
  }
  .part {
    max-width: 1400px;
  }
  .works {
    width: 1460px;
  }
  .about {
    max-width: 1400px;
  }
  .brands {
    max-width: 1400px;
  }
  .article-bg {
    width: 1400px;
  }
  .message {
    max-width: 1400px;
  }
  .footer {
    max-width: 1400px;
  }
  .works .work {
    width: 426px;
  }
  .works .work .work__view {
    height: 319px;
  }
}
@media screen and (max-width: 1439px) {
  .header .header-container, .slogan {
    max-width: 920px;
  }
  .part {
    max-width: 1000px;
  }
  .works {
    width: 1060px;
  }
  .about {
    max-width: 1000px;
  }
  .brands {
    max-width: 1000px;
  }
  .article-bg {
    width: 1000px;
  }
  .message {
    max-width: 1000px;
  }
  .footer {
    max-width: 1000px;
  }
  .works .work {
    width: 293px;
  }
  .works .work .work__view {
    height: 220px;
  }
}
@media screen and (max-width: 1079px) {
  .header {
    padding: 7vw 0;
    height: auto;
  }
  .container {
    padding: 30vw 0 0;
  }
  .header .header-container {
    max-width: 90vw;
  }
  .part {
    max-width: 90vw;
  }
  .works {
    width: 100%;
    margin: 6vw auto;
  }
  .about {
    max-width: 90vw;
    padding: 10vw 5vw;
    height: auto;
    margin: 0 auto 10vw;
    flex-wrap: wrap;
  }
  .brands {
    max-width: 90vw;
    margin: 10vw auto;
  }
  .article-bg {
    width: 90vw;
  }
  .message {
    max-width: 90vw;
  }
  .footer {
    max-width: 90vw;
  }

  .nav .nav__item {
    display: none;
  }
  .mobel_nav {
    position: fixed;
    z-index: 10;
    width: 100%;
    padding: 10px 5vw;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0C1417;
  }
  .mobel_nav, .mobel_nav .nav__item {
    display: flex;
  }
  .slogan {
    margin: 50vw auto;
    padding-left: 10vw;
  }
  .slogan .slogan__tit {
    font-size: 5.6vw;
  }
  .slogan .slogan__tit::after {
    height: 5.6vw;
  }
  .slogan .slogan__sub {
    font-size: 3vw;
  }
  .part .part__title {
    font-size: 5vw;
  }
  .part .part__more {
    justify-content: center;
    font-size: 3.5vw;
    margin: 0;
  }
  .part .part__more::after {
    width: 3.5vw;
    height: 3.5vw;
  }
  .message {
    padding: 8vw 8vw 0;
  }
  .message .message__header {
    flex-wrap: wrap;
  }
  .message .message__header div {
    width: 100%;
  }
  .message .message__title {
    font-size: 6vw;
  }
  .message .message__subtext {
    font-size: 4vw;
  }
  .message__form {
    width: 100%;
  }
  .message__content {
    flex-wrap: wrap;
  }
  .message .message__input, .message .message__textarea {
    width: 100%!important;
  }
  .message .message__form-item {
    width: 68vw;
  }
  .message .message__contact {
    font-size: 3vw;
    line-height: 4vw;
    margin: 5vw 0;
  }
  .works .work {
    width: 90vw;
    margin-bottom: 10vw;
    margin-right: 0;
  }
  .works .work .work__view {
    height: 68vw;
  }
  .works .work .work__text {
    width: 5.5vw;
  }
  .works .work .model-tags {
    display: block;
    font-size: 3.5vw;
    color: #C8C9C9;
    font-weight: 400;
  }
  .works .work .model-date {
    font-size: 4vw;
    font-weight: 600;
    color: #C8C9C9;
    display: block;
    margin: 2vw 0;
  }
  .insightes .insighte {
    margin-bottom: 10vw;
    height: 40vw;
  }
  .insightes .insighte .insighte__view {
    width: 100%;
    height: 40vw;
    opacity: .6;
  }
  .insighte .insighte__content {
    width: 100%;
  }
  .insighte .insighte__title {
    width: 80vw;
    margin: auto;
    line-height: 7vw;
    font-size: 5.5vw;
    text-align: center;
  }
  .insighte .insighte__subtext {
    font-size: 5vw;
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 2vw;
  }
  .work-categorys {
    margin: 22vw auto;
  }
  .work-category {
    width: 16vw;
  }
  .work-categorys .category__icon-box {
    width: 16vw;
    height: 16vw;
  }
  .work-category__focuse.focuse-1 {
    left: 2%;
  }
  .work-category__focuse.focuse-3 {
    left: calc(97% - 42px);
  }
  .methodology {
    display: none;
  }
  .about .about-title {
    margin-bottom: 8vw;
    font-size: 10vw;
  }
  .about-1 {
    background: url(../image/about-bg1.png) no-repeat;
    background-size: auto 100%;
  }
  .about-1 .about-1__logo {
    width: 40vw;
    margin: 5vw 10vw 10vw;
  }
  .about-1 .about-1__text {
    font-size: 4vw;
    width: 70vw;
    line-height: 5.5vw;
  }
  .about-2 {
    background: url(../image/about-bg2.png) no-repeat;
    background-size: auto 100%;
  }
  .about-2 .about-2__list {
    height: 100px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .about-2 .about-2__list-item {
    font-size: 4vw;
    line-height: 8vw;
    height: 8vw;
  }
  .about-2 .about-2__logos {
    padding: 4vw 0;
    width: 100%;
    justify-content: space-between;
  }
  .about-2 .about-2__logo {
    margin: 0;
  }
  .about-2 .about__subtext {
    font-size: 4vw;
    margin-top: 8vw;
    line-height: 6vw;
  }
  .about-3 {
    background: url(../image/about-bg3.png) no-repeat;
    background-size: auto 100%;
  }
  .about-3__item {
    width: 100%;
    text-align: center;
    margin-bottom: 8vw;
  }
  .brands .brand {
    text-align: center;
    position: relative;
    width: 25vw;
    height: 12vw;
    margin: 10vw 10vw;
  }
  .brands .brand.lengthy {
    width: 35vw;
    margin: 10vw 5vw;
  }
  .header .nav__back {
    align-items: center;
    display: flex;
    position: absolute;
    left: 10vw;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 4vw;
    color: #C8C9C9;
  }
  .article-bg {
    width: 100%;
  }
  .article {
    width: 100%;
    max-width: 100%;
    padding: 40vw 10vw;
  }
  .article .article__content {
    margin-left: 30%;
    margin-top: 80px;
    margin: 10vw 0;
    width: 100%;
  }
  .article .article__content-text, .article p {
    font-size: 4.5vw;
    line-height: 6.5vw;
    margin-bottom: 5vw;
  }
  .footer__box .footer__icon {
    display: none;
  }
}
