:root {
  --primary-color: #0066FF;
  --error-color: #FF3B30;
  --text-color: #080808;
  --text-color-secondary: #666666;
  --border-color: #EAEFF8;
  --border-color-light: #F2F4F8
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, .05)
}

::-webkit-scrollbar-thumb {
  background-color: rgba(144, 147, 153, .3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .2);
  border-radius: 2px
}

::-webkit-scrollbar-thumb:hover {
  background-color: #b6b7b9
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-variant: tabular-nums;
  line-height: 1.57;
  font-size: 12px;
  color: #1a1a1a;
  position: relative;
  background: #eaeff8;
  font-family: "Gellix", Arial, Helvetica, sans-serif
}

#app {
  width: 100%;
  min-width: 1280px;
  position: relative;
  padding-top: 64px;
  margin: 0 auto
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0
}

dt {
  font-weight: normal
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0
}

img {
  max-width: 100%
}

input::-webkit-input-placeholder {
  color: #adb8c2
}

input::-webkit-input-placeholder,
input::placeholder {
  color: #adb8c2
}

a {
  text-decoration: none;
  color: var(--primary-color)
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-inline: 0;
  padding-block: 0;
  background-color: rgba(0, 0, 0, 0)
}

button:active {
  opacity: .8
}

.f12 {
  font-size: 12px
}

.f13 {
  font-size: 13px
}

.f14 {
  font-size: 14px
}

.f16 {
  font-size: 16px
}

.f18 {
  font-size: 18px
}

.mt5 {
  margin-top: 5px
}

.mt10 {
  margin-top: 10px
}

.mt15 {
  margin-top: 15px
}

.mt20 {
  margin-top: 20px
}

.mt25 {
  margin-top: 25px
}

.mt30 {
  margin-top: 30px
}

.ml5 {
  margin-left: 5px
}

.ml10 {
  margin-left: 10px
}

.ml15 {
  margin-left: 15px
}

.ml20 {
  margin-left: 20px
}

.ml30 {
  margin-left: 30px
}

.mb5 {
  margin-bottom: 5px
}

.mb10 {
  margin-bottom: 10px
}

.mb15 {
  margin-bottom: 15px
}

.mb20 {
  margin-bottom: 20px
}

.mb30 {
  margin-bottom: 30px
}

.mr5 {
  margin-right: 5px
}

.mr10 {
  margin-right: 10px
}

.mr15 {
  margin-right: 15px
}

.mr20 {
  margin-right: 20px
}

.mr30 {
  margin-right: 30px
}

.pt10 {
  padding-top: 10px
}

.pb10 {
  padding-bottom: 10px
}

.pb30 {
  padding-bottom: 30px
}

.text-l {
  text-align: left
}

.text-c {
  text-align: center
}

.text-r {
  text-align: right
}

.pr {
  position: relative
}

.float-l {
  float: left
}

.float-r {
  float: right
}

.pointer {
  cursor: pointer
}

.nowrap {
  white-space: nowrap
}

.overflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.primary-color {
  color: var(--primary-color)
}

.danger-color {
  color: var(--error-color)
}

.text-color {
  color: var(--text-color)
}

.text-color-secondary {
  color: var(--text-color-secondary)
}

.block {
  display: block
}

.flex-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}

.flex-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.flex-row.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

.flex-none {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none
}

.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1
}

.flex-2 {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2
}

.flex-3 {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3
}

.justify-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.justify-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center
}

.justify-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.justify-evenly {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly
}

.justify-around {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around
}

.justify-between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.align-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start
}

.align-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}

.align-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end
}

.inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex
}

.wrap {
  width: 100%;
  min-width: 1280px;
  position: relative;
  max-width: 1920px;
  margin: 0 auto
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  font-size: 20px;
  background: #fff;
  min-width: 1280px
}

#nav .wrap {
  padding: 0 20px;
  max-width: 1280px
}

#nav .logo {
  width: 56px;
  margin-right: 20px
}

#nav .logo img {
  display: block;
  width: 100%
}

.menus {
  margin-left: 300px;
  text-transform: uppercase
}

.menus .menu {
  height: 64px;
  line-height: 64px;
  font-size: 14px;
  padding: 0 20px;
  cursor: pointer
}

.menus .menu.active {
  background: #5d7b92;
  color: #fff
}

.lazy {
  position: relative
}

.lazy .content {
  position: absolute;
  line-height: 1
}

.lazy .menu {
  cursor: pointer
}

.lazy-0 .content {
  top: 180px;
  left: 50%;
  margin-left: -600px
}

.lazy-0 .title {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 60px;
}

.lazy-0 .sub {
  font-size: 30px;
  margin-bottom: 46px
}

.lazy-0 .extra,.lazy-1 .extra {
  font-size: 35px;
  margin-bottom: 106px
}

.lazy-0 .link {
  border: 1px solid #101010;
  font-size: 30px;
  padding: 12px 15px;
  display: inline-block;
  margin-left: 200px;
  color: #101010
}

.lazy-1 {
 color: #101010
}

.lazy-1 .content {
  top: 180px;
  left: 50%;
  margin-left: -600px
}

.lazy-1 .title {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 40px
}

.lazy-1 .sub {
  font-size: 30px;
  margin-bottom: 46px
}

.lazy-1 .link {
  color: #fff;
  border: 1px solid #101010;
  font-size: 30px;
  padding: 12px 15px;
  display: block;
  color: #101010;
  width: 260px
}

.lazy-2 {
  color: #fff;
  height: 600px
}

.lazy-2 .content {
  top: 110px;
  left: 50%;
  margin-left: -550px;
  line-height: 1.6
}

.lazy-2 .title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 40px
}

.lazy-2 .sub {
  font-size: 24px;
  margin-bottom: 6px
}

.lazy-2 .link {
  color: #fff;
  border: 1px solid #fff;
  font-size: 30px;
  padding: 12px 15px;
  display: block;
  margin-left: auto;
  width: 260px
}

.lazy-3 {
  height: 800px
}

.lazy-3 .content {
  top: 180px;
  left: 50%;
  line-height: 2;
  white-space: nowrap;
  margin-left: -20px
}

.lazy-3 .title {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 40px
}

.lazy-3 .sub {
  font-size: 30px;
  margin-bottom: 46px
}

.lazy-3 .link {
  border: 1px solid #101010;
  font-size: 30px;
  padding: 12px 15px;
  display: inline-block;
  margin-left: 100px;
  color: #101010
}

#banner {
  position: relative;
  overflow: hidden
}

#banner .slider-item {
  height: 800px;
  overflow: hidden
}

#banner .slider-prev,
#banner .slider-next {
  display: none;
  position: absolute;
  z-index: 2;
  width: 52px;
  height: 52px;
  line-height: 50px;
  top: 50%;
  margin-top: -25px;
  text-align: center;
  font-size: 40px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #101010;
  border-radius: 50%
}

#banner .slider-prev {
  left: 30px
}

#banner .slider-next {
  right: 30px
}

#summary {
  color: #131313;
  padding: 20px 0;
  background: #ebebeb;
  text-align: center;
  font-size: 14px
}

#summary .wrap {
  max-width: 1280px
}

#summary .number {
  padding: 0 20px;
  min-width: 104px;
  border: 1px solid #101010;
  border-radius: 17px;
  height: 42px;
  line-height: 40px;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 20px;
  font-weight: 700
}

#summary .number.dark {
  color: #ebebeb;
  background: #101010
}

#why .reason {
  background: #ededed;
  padding: 50px 0 60px
}

#why .title {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 50px;
  text-align: center;
  color: #121212
}

#why .wrap {
  max-width: 1080px;
  min-width: auto;
  font-size: 20px;
  line-height: 72px;
  color: #0c0c0c;
  font-weight: bold
}

#why .wrap .flex-1 {
  margin-left: 90px
}

#why .wrap p::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: #121212;
  margin-right: 35px
}

.cards {
  width: 1280px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto
}

.cards .card {
  width: 632px;
  min-height: 550px;
  padding: 24px;
  background: #d8d8d8;
  border-radius: 20px;
  margin: 24px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center
}

.cards .c-1-0,
.cards .c-2-1,
.cards .c-3-0 {
  font-weight: 900;
  text-align: center;
  background: #1a1a1a;
  color: #fff
}

.cards .c-1-0,
.cards .c-2-0,
.cards .c-3-0 {
  text-align: center;
  font-weight: 900;
  font-size: 54px
}

.cards .c-1-1,
.cards .c-3-1 {
  font-size: 32px
}

.cards .c-2-1 {
  text-align: left;
  font-weight: normal;
  font-size: 30px
}

#main-brands {
  text-align: center;
  padding: 20px 0 30px;
  background: #fff;
  color: #111
}

#main-brands .title {
  font-weight: 900;
  font-size: 50px;
  margin-bottom: 22px
}

#main-brands .sub {
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 30px
}

#main-brands .main-brands {
  max-width: 1000px
}

#partners {
  text-align: center;
  background: #fff
}

#partners .title {
  font-weight: 900;
  font-size: 50px;
  color: #161616
}

#partners .partners {
  max-width: 1000px
}

#distribution {
  height: 800px;
  padding: 530px 0 140px;
  text-align: center;
  font-size: 30px;
  background: url("../static/distribution.png") no-repeat center 30px #fff;
  background-size: contain
}

#about {
  padding: 75px 0 50px;
  background: url("../static/aboutus.png") no-repeat center 180px #fff
}

#about .wrap {
  padding: 0 120px;
  max-width: 1280px;
  margin: 0 auto
}

#about .title {
  font-weight: 900;
  font-size: 50px;
  color: #121212;
  text-align: center;
  margin-bottom: 50px
}

#about .li {
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  line-height: 44px;
  font-weight: bold;
  margin-bottom: 10px
}

#about .li .num {
  position: absolute;
  top: 10px;
  left: 0;
  width: 20px;
  height: 20px;
  line-height: 1;
  font-weight: normal;
  background: #5c7883;
  border-radius: 6px;
  text-align: center
}

#about .li .no {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  top: -7px
}

#footer {
  color: #fff;
  background: #090909;
  padding-top: 80px;
  font-size: 20px
}

#footer .warp {
  max-width: 1100px;
  margin: 0 auto 86px
}

#footer .dl {
  width: 450px;
  line-height: 40px;
  position: relative
}

#footer .dl .logo {
  width: 44px;
  position: absolute;
  left: 0;
  top: -30px
}

#footer .dl dt {
  font-family: Impact;
  margin-bottom: 40px
}

#footer .dd-text {
  color: #fff;
  display: inline-block;
  position: relative;
  font-family: Impact;
  font-size: 20px;
  padding: 0 10px
}

#footer .dd-text::before {
  content: "";
  position: absolute;
  height: 16px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #5b7882;
  border-radius: 6px
}

#footer .dd-contactus {
  position: relative;
  top: 6px
}

#footer .copyright {
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #000;
  font-size: 18px
}

@-webkit-keyframes waves-whatsapp {
  0% {
    -webkit-box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 0 rgba(251, 55, 65, .2), 0 0 0 0 rgba(251, 55, 65, .2);
    box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 0 rgba(251, 55, 65, .2), 0 0 0 0 rgba(251, 55, 65, .2)
  }

  40% {
    -webkit-box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 35px rgba(251, 55, 65, .2), 0 0 0 0 rgba(251, 55, 65, .2);
    box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 35px rgba(251, 55, 65, .2), 0 0 0 0 rgba(251, 55, 65, .2)
  }

  80% {
    -webkit-box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 55px rgba(251, 55, 65, 0), 0 0 0 26px rgba(251, 55, 65, .067);
    box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 55px rgba(251, 55, 65, 0), 0 0 0 26px rgba(251, 55, 65, .067)
  }

  100% {
    -webkit-box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 80px rgba(251, 55, 65, 0), 0 0 0 40px rgba(251, 55, 65, 0);
    box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 80px rgba(251, 55, 65, 0), 0 0 0 40px rgba(251, 55, 65, 0)
  }
}

@keyframes waves-whatsapp {
  0% {
    -webkit-box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 0 rgba(251, 55, 65, .2), 0 0 0 0 rgba(251, 55, 65, .2);
    box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 0 rgba(251, 55, 65, .2), 0 0 0 0 rgba(251, 55, 65, .2)
  }

  40% {
    -webkit-box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 35px rgba(251, 55, 65, .2), 0 0 0 0 rgba(251, 55, 65, .2);
    box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 35px rgba(251, 55, 65, .2), 0 0 0 0 rgba(251, 55, 65, .2)
  }

  80% {
    -webkit-box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 55px rgba(251, 55, 65, 0), 0 0 0 26px rgba(251, 55, 65, .067);
    box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 55px rgba(251, 55, 65, 0), 0 0 0 26px rgba(251, 55, 65, .067)
  }

  100% {
    -webkit-box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 80px rgba(251, 55, 65, 0), 0 0 0 40px rgba(251, 55, 65, 0);
    box-shadow: 0 8px 10px rgba(251, 55, 65, .3), 0 0 0 80px rgba(251, 55, 65, 0), 0 0 0 40px rgba(251, 55, 65, 0)
  }
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 50px;
  width: 60px;
  height: 60px;
  z-index: 100;
  background: url("./whatsapp.png") no-repeat center;
  background-size: 44px 44px;
  border-radius: 50%
}