html,
body {
  position: relative;
  height: 100%;
}

@font-face {
  font-family: 'NexaBold';
  src: url("../fonts/NexaBold.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/NexaBold.eot?#iefix") format("embedded-opentype"), url("../fonts/NexaBold.woff") format("woff"), url("../fonts/NexaBold.ttf") format("truetype"), url("../fonts/NexaBold.svg#Nexa Bold") format("svg");
  /* Legacy iOS */
}

@font-face {
  font-family: 'NexaLight';
  src: url("../fonts/NexaLight.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/NexaLight.eot?#iefix") format("embedded-opentype"), url("../fonts/NexaLight.woff") format("woff"), url("../fonts/NexaLight.ttf") format("truetype"), url("../fonts/NexaLight.svg#Nexa Light") format("svg");
  /* Legacy iOS */
}

@font-face {
  font-family: 'NotoSansSCMedium';
  src: url("../fonts/NotoSansSCMedium.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/NotoSansSCMedium.eot?#iefix") format("embedded-opentype"), url("../fonts/NotoSansSCMedium.woff") format("woff"), url("../fonts/NotoSansSCMedium.ttf") format("truetype"), url("../fonts/NotoSansSCMedium.svg#NotoSansSCMedium") format("svg");
  /* Legacy iOS */
}

@font-face {
  font-family: 'NotoSansSC';
  src: url("../fonts/NotoSansSC.ttf");
  /* IE9 Compat Modes */
  src: url("../fonts/NotoSansSC.eot?#iefix") format("embedded-opentype"), url("../fonts/NotoSansSC.woff") format("woff"), url("../fonts/NotoSansSC.ttf") format("truetype"), url("../fonts/NotoSansSC.svg#NotoSansSC-Regular") format("svg");
  /* Legacy iOS */
}

#banner {
  background-size: cover;
  background-position: center bottom;
}

#banner::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}

#banner.complete::before {
  animation: page-load-anime 1000ms cubic-bezier(0.77, 0, 0.11, 1) 0ms both;
}

#banner .container {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#banner .container .inner {
  opacity: 0;
}

#banner .container .inner h1 {
  font-size: 48px;
  margin-top: 0;
  font-weight: 400;
}

#banner .container .inner h4 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #b1b1b1;
}

#banner .container .video-mask {
  position: relative;
  width: 50%;
}

#banner .container .video-mask video {
  max-width: 100%;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transition-delay: 1.5s;
}

#banner .container .down {
  position: absolute;
  right: 0;
  bottom: 120px;
  animation: down 1.5s linear infinite;
  cursor: pointer;
}

body {
  font-family: 'NotoSansSC',"Segoe UI","Lucida Grande",Helvetica,Arial,"Microsoft YaHei",FreeSans,Arimo,"Droid Sans","wenquanyi micro hei","Hiragino Sans GB","Hiragino Sans GB W3",FontAwesome,sans-serif;
  opacity: 0;
  width: 100%;
  overflow-x: hidden;
}

body.complete {
  opacity: 1;
}

body.complete #banner .container .inner {
  animation: page-load-slideIn 1200ms cubic-bezier(0.77, 0, 0.11, 1) 1000ms forwards;
}

body.complete #banner .container .video-mask video {
  transform: scale(1);
  opacity: 1;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-title h3 {
  font-size: 42px;
  color: #3B3B3B;
}

.swiper-slide.active .main-title {
  animation: page-load-slideIn 900ms cubic-bezier(0.77, 0, 0.11, 1) 500ms forwards;
}

@keyframes down {
  25% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
  25% {
    transform: translate(0, -5px);
    opacity: 0.7;
  }
  50% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
  75% {
    transform: translate(0, 5px);
    opacity: 0.9;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes ss {
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes scan {
  0% {
    background-size: 0 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}

@keyframes scroll-wheel {
  33.3% {
    top: 15px;
    height: 10px;
  }
  100% {
    top: 10px;
    height: 4px;
  }
}

@keyframes page-load-anime {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100vh);
  }
}

@keyframes page-load-slideIn {
  0% {
    transform: translateY(100px) translateZ(0) scaleY(1.4);
    opacity: 0;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}

.scroll-wheel {
  display: block;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  width: 24px;
  height: 36px;
  opacity: 0.5;
  filter: alpha(opacity=50);
  border: 2px solid #FFFFFF;
  border-radius: 24px;
  z-index: 9;
  transition: all 0.75s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1), inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.scroll-wheel::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  border-radius: 4px;
  top: 10px;
  left: 50%;
  margin-left: -2px;
  animation: scroll-wheel 1.75s ease-in-out infinite;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}

header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 80px;
  align-items: center;
}

header .container .logo .main-logo {
  height: 60px;
  width: auto;
}

header .container nav {
  display: flex;
  align-items: center;
}

header .container nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}

header .container nav ul li {
  position: relative;
  list-style-type: none;
  padding: 0 15px;
}

header .container nav ul li a {
  transition: all 0.4s ease-in-out;
  color: #a4a4a4;
  font-size: 18px;
}

header .container nav ul li a.am-active {
  color: #fff;
}

header .container nav .lng {
  color: #a4a4a4;
}

header .container nav .lng i {
  font-style: normal;
}

header .container nav .lng span {
  margin-left: 8px;
  letter-spacing: 1px;
}

header .container nav .lng:hover {
  color: blue;
}

header.fixed {
  background-color: white;
  box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.1);
}

header.fixed .container nav ul li a.am-active {
  color: #000;
}

.loader {
  height: 100%;
  width: 100%;
  background-color: #333;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.loader.complete {
  animation: page-load-anime 800ms cubic-bezier(0.77, 0, 0.11, 1) 400ms both;
}

#home #banner {
  height: 100vh;
}

#home #banner .container {
  height: 100%;
}

#home #banner .container .inner {
  position: relative;
}

#home #banner .container .inner h1 {
  font-size: 54px;
  margin-bottom: 80px;
}

#home #banner .container .inner h1 span {
  font-size: 42px;
}

#home #banner .container .inner .contact {
  width: 100%;
}

#home #banner .container .inner .contact a {
  color: #fff;
  font-size: 18px;
}

#home #banner .container .inner .contact a i {
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}

#home #banner .container .inner .contact a:hover i {
  margin-left: 15px;
}

#home #brandStory {
  padding: 100px 0;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  width: 100%;
}

#home #brandStory .container {
  max-width: 1200px;
}

#home #brandStory .container .main-title h3 {
  text-align: center;
}

#home #brandStory .container .inner {
  margin-top: 60px;
  width: 100%;
  position: relative;
}

#home #brandStory .container .inner .left {
  width: 100%;
}

#home #brandStory .container .inner .left h3 {
  font-size: 32px;
  color: #f68803;
  margin-bottom: 0;
  text-align: center;
}

#home #brandStory .container .inner .left p {
  color: #232323;
  letter-spacing: .05em;
  line-height: 30px;
  margin: 30px 0 20px;
  text-align: left;
}

#home #brandStory .container .inner .left ul {
  margin-left: 0;
  padding-left: 0;
}

#home #brandStory .container .inner .left ul li {
  list-style-type: none;
  line-height: 2;
  color: #6f6f6f;
}

#home #brandStory .container .inner .left ul li i {
  margin-right: 10px;
}

#home #brandStory .container .inner .right {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#home #brandStory .container .inner .right .content {
  width: 50%;
}

#home #brandStory .container .inner .right .content video {
  border: 6px solid #fff;
  border-radius: 3px;
  box-shadow: 3px 10px rgba(0, 0, 0, 0.01);
  width: 100%;
}

#home #brandStory .container .inner .right .content2 {
  width: 50%;
  display: flex;
  justify-content: center;
}

#home #brandStory .container .inner .right .content2 ul li {
  list-style-type: none;
  line-height: 2;
  color: #6f6f6f;
  font-size: 22px;
  display: flex;
  margin-bottom: 8px;
}

#home #brandStory .container .inner .right .content2 ul li::before {
  content: "\f00c";
  margin-right: 10px;
}

#home #brandStory .container .inner .right .content2 ul li i {
  margin-right: 10px;
}

#home #brandStory.swiper-slide-active .container .inner .item::before {
  top: 100%;
}

#home #brandStory.swiper-slide-active .container .inner .item::after {
  top: 100%;
}

#home #advantages {
  height: calc(100vh - 80px);
}

#home #advantages.swiper-container {
  position: relative;
  width: 100%;
}

#home #advantages.swiper-container .swiper-wrapper {
  position: relative;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide::after {
  content: '';
  width: 100px;
  display: block;
  height: 4px;
  background-color: #b9b9b9;
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  z-index: 99;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .left {
  position: relative;
  width: 50%;
  background-image: url(../images/logo1.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 0 60px;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .left::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4a4542;
  transition: all 0.6s linear;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .left::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4a4542;
  transition: all 0.03s linear;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .left .inner h4 {
  color: #939393;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .left .inner h3 {
  font-size: 42px;
  margin-top: 15px;
  color: #555555;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .left .inner p {
  font-size: 18px;
  font-weight: 600;
  color: #5D5D5D;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .right {
  width: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .right::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #a19c95;
  transition: all 0.6s linear;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .right::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #a19c95;
  transition: all 0.03s linear;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .right a {
  color: #fff;
  position: absolute;
  right: 60px;
  bottom: 60px;
  border-bottom: 2px solid #fff;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .right a i {
  transition: all 0.4s ease-in-out;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide .right a:hover i {
  transform: translateX(10px);
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide.ani-slide .left::before, #home #advantages.swiper-container .swiper-wrapper .swiper-slide.ani-slide .right::before {
  width: 0;
}

#home #advantages.swiper-container .swiper-wrapper .swiper-slide.ani-slide .left::after, #home #advantages.swiper-container .swiper-wrapper .swiper-slide.ani-slide .right::after {
  opacity: 0;
}

#home #advantages.swiper-container .swiper-pagination {
  width: auto;
  text-align: left;
  left: 60px;
  bottom: 60px;
}

#home #advantages.swiper-container .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  text-align: left;
  width: auto;
  height: auto;
  margin-right: 15px !important;
  margin-left: 0 !important;
  font-size: 20px;
  color: #000;
  opacity: 1;
  background: none;
  color: #C5C2C2;
  font-family: 'NexaLight';
  letter-spacing: 2px;
}

#home #advantages.swiper-container .swiper-pagination .swiper-pagination-bullet span {
  font-weight: bold;
  background: #C5C2C2 -webkit-linear-gradient(left, #747474, #747474) no-repeat 0 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 0 100%;
}

#home #advantages.swiper-container .swiper-pagination .swiper-pagination-bullet::before {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background-color: #e0e0e0;
  position: absolute;
  bottom: 0;
}

#home #advantages.swiper-container .swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background-color: #747474;
  position: absolute;
  bottom: 0;
}

#home #advantages.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  position: relative;
  color: #fff;
  background: none;
  color: #747474;
}

#home #advantages.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span {
  background-size: 100% 100%;
  animation: scan 4s linear;
}

#home #advantages.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  width: 100%;
}

#home #advantages.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  transition: all 4s ease-in-out;
  width: 100%;
}

#home #newProducts {
  padding: 100px 0;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  width: 100%;
}

#home #newProducts .container .inner {
  margin-top: 60px;
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#home #newProducts .container .inner .item {
  position: relative;
  transition: all 0.4s ease-in-out;
  top: 0;
  width: 32%;
  overflow: hidden;
}

#home #newProducts .container .inner .item img {
  max-width: 100%;
}

#home #newProducts .container .inner .item .desc {
  text-align: center;
}

#home #newProducts .container .inner .item .desc h3 {
  font-size: 20px;
}

#home #newProducts .container .inner .item .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

#home #newProducts .container .inner .item .cover h3 {
  color: #fff;
  font-size: 24px;
}

#home #newProducts .container .inner .item::before {
  opacity: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7DE8C7;
  position: absolute;
  top: -100%;
  left: 0;
  transition: all 1.2s ease 0.5s;
}

#home #newProducts .container .inner .item::after {
  opacity: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #7DE8C7;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 1.2s ease 0.8s;
}

#home #newProducts.swiper-slide-active .container .inner .item::before {
  top: 100%;
}

#home #newProducts.swiper-slide-active .container .inner .item::after {
  top: 100%;
}

#home #starProduct {
  padding: 100px 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 60px;
}

#home #starProduct .container .inner {
  margin-top: 20px;
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-self: center;
}

#home #starProduct .container .inner .left {
  width: 50%;
}

#home #starProduct .container .inner .left h3 {
  font-size: 32px;
  color: #f68803;
  margin-bottom: 0;
}

#home #starProduct .container .inner .left p {
  color: #232323;
  letter-spacing: .05em;
  line-height: 30px;
  margin: 30px 0 20px;
}

#home #starProduct .container .inner .left ul {
  margin-left: 0;
  padding-left: 0;
}

#home #starProduct .container .inner .left ul li {
  list-style-type: none;
  line-height: 2;
  color: #6f6f6f;
}

#home #starProduct .container .inner .left ul li i {
  margin-right: 10px;
}

#home #starProduct .container .inner .right {
  width: 50%;
}

#home #starProduct.swiper-slide-active .container .inner .item::before {
  top: 100%;
}

#home #starProduct.swiper-slide-active .container .inner .item::after {
  top: 100%;
}

#home #testimonials {
  padding: 100px 0;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  width: 100%;
}

#home #testimonials .container .swiper-container {
  position: relative;
}

#home #testimonials .container .swiper-container .swiper-wrapper {
  padding-top: 50px;
  position: relative;
}

#home #testimonials .container .swiper-container .swiper-wrapper .swiper-slide {
  opacity: 0.5;
  width: 75%;
  position: relative;
  text-align: center;
  font-size: 18px;
  background: #fff;
}

#home #testimonials .container .swiper-container .swiper-wrapper .swiper-slide .image {
  position: relative;
}

#home #testimonials .container .swiper-container .swiper-wrapper .swiper-slide .image img {
  max-width: 100%;
  position: relative;
}

#home #testimonials .container .swiper-container .swiper-wrapper .swiper-slide .image .cover {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
}

#home #testimonials .container .swiper-container .swiper-wrapper .swiper-slide .inner {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50px;
  right: -30px;
  width: 330px;
  height: 360px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

#home #testimonials .container .swiper-container .swiper-wrapper .swiper-slide .inner h3 {
  font-size: 20px;
  width: 100%;
}

#home #testimonials .container .swiper-container .swiper-wrapper .swiper-slide .inner p {
  font-size: 16px;
  text-align: left;
  line-height: 1.8;
}

#home #testimonials .container .swiper-container .swiper-wrapper .swiper-slide .inner .bd .ava {
  text-align: right;
}

#home #testimonials .container .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

#home #testimonials .container .swiper-container .swiper-pagination {
  width: auto;
  text-align: left;
  left: 0px;
  top: 0;
}

#home #testimonials .container .swiper-container .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  text-align: left;
  width: auto;
  height: auto;
  margin-right: 50px !important;
  margin-left: 0 !important;
  opacity: 1;
  background: none;
  font-size: 16px;
  color: #7e7e7e;
  letter-spacing: 1px;
}

#home #testimonials .container .swiper-container .swiper-pagination .swiper-pagination-bullet i {
  font-style: normal;
  font-family: 'NexaLight';
  letter-spacing: 2px;
}

#home #testimonials .container .swiper-container .swiper-pagination .swiper-pagination-bullet span {
  margin-left: 8px;
  background: #7e7e7e -webkit-linear-gradient(left, #fff, #fff) no-repeat 0 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 0 100%;
  letter-spacing: 1px;
}

#home #testimonials .container .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #fff;
}

#home #testimonials .container .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span {
  background-size: 100% 100%;
  animation: scan 10s linear;
}

#home #testimonials .container .swiper-container .swiper-button-next, #home #testimonials .container .swiper-container .swiper-button-prev {
  top: 25px;
}

#home #testimonials .container .swiper-container .swiper-button-next::after, #home #testimonials .container .swiper-container .swiper-button-prev::after {
  font-size: 16px !important;
  color: #9a9a9a;
}

#home #testimonials .container .swiper-container .swiper-button-prev {
  left: auto;
  right: 40px;
}

#home #testimonials .container .inner {
  margin-top: 40px;
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -20px;
}

#home #testimonials .container .inner .item {
  position: relative;
  transition: all 0.4s ease-in-out;
  top: 0;
  width: 18%;
  padding: 0 20px;
}

#home #testimonials .container .inner .item img {
  max-width: 100%;
}

#home #testimonials .container .inner .item .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

#home #testimonials .container .inner .item .cover h3 {
  color: #fff;
  font-size: 24px;
}

#footer {
  height: 70vh;
}

#footer footer {
  background-color: #101010;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  height: 100%;
}

#footer footer .ss {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#footer footer .ss img {
  margin: 0 auto;
  animation: ss 8s linear infinite;
}

#footer footer .container {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

#footer footer .container .left {
  width: 35%;
}

#footer footer .container .left .top {
  padding-left: 20px;
  position: relative;
}

#footer footer .container .left .top::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  width: 8px;
  background-image: linear-gradient(180deg, #D93244 0%, #9D2333 100%);
}

#footer footer .container .left .top h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1;
}

#footer footer .container .left .top h3 {
  font-size: 20px;
  font-weight: 100;
  margin-top: 0;
  color: #a3a3a3;
}

#footer footer .container .right {
  width: 65%;
}

#footer footer .container .right h2 {
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

#footer footer .container .right .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#footer footer .container .right .inner .item {
  width: 31%;
}

#footer footer .container .right .inner .item:last-child {
  width: 33%;
}

#footer footer .container .right .inner .item h3 {
  margin-bottom: 0;
  font-size: 16px;
  color: #939393;
}

#footer footer .container .right .inner .item p {
  margin-top: 0px;
  font-size: 14px;
  color: #b9b9b9;
}

#footer footer .container .bot img {
  width: 90px;
  border: 3px solid #fff;
}

#footer footer .container .bot p {
  font-size: 14px;
  color: #a3a3a3;
}
