* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/**
 **************** bootstrap **************************
 */
.container-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.container-flex::before {
  position: absolute;
}

@media (min-width: 768px) {
  .container {
    width: 1200px;
    padding: 0px;
  }
}
/**
 **************** utils **************************
 */
.float-left {
  float: left;
}

.float-right {
  float: right;
}

.display-none {
  display: none;
}

.display-block {
  display: block;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

/**
 **************** animate **************************
 */
@-webkit-keyframes aniSpin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes aniSpin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.hover-pulse {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.hover-pulse:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.hover-shadow {
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}
.hover-shadow:hover {
  -webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
}

/**
 **************** animate **************************
 */
.button {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 12px 30px;
  font-size: 16px;
  line-height: 1.2;
  border-radius: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.button + .button {
  margin-left: 10px;
}

.button + a {
  margin-left: 10px;
}

a + .button {
  margin-left: 10px;
}

a.button {
  text-decoration: none !important;
}

.button.round {
  border-radius: 999px;
}

.button:hover {
  opacity: 0.8;
}

.button-blue {
  color: #fff;
  background-color: #000cff;
}

.button-blue-border {
  color: #6881c0;
  border: 1px solid #6881c0;
  background: transparent;
}
.button-blue-border.hover:hover {
  color: #fff;
  border: 1px solid #000cff;
  background-color: #000cff;
}

.button-gray {
  color: #212121;
  background-color: #f4f5f7;
}

.button-white {
  color: #000cff;
  background-color: #fff;
}

.button-white-border {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
}

.button-black {
  color: #fff;
  background-color: #24262b;
}

.button-light-purple-border {
  color: #606b8f;
  border: 1px solid #606b8f;
  background: transparent;
}

.button-golden {
  color: #212121;
  background-color: #e3c298;
  background-image: linear-gradient(36deg, #e3c298 0%, #fdf6e2 100%);
}

/**
 **************** header **************************
 */
#header,
#headzt {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  border-bottom: 1px solid #ccc;
  background: #fff;
  z-index: 1000;
  height: 80px;
}
#header a,
#headzt a {
  text-decoration: none;
  color: inherit;
  display: block;
}
#header .header-main,
#headzt .header-main {
  height: 80px;
  line-height: 80px;
}
#header .navs,
#headzt .navs {
  position: initial;
  margin-left: 10px;
}
#header .navs .glyphicon,
#headzt .navs .glyphicon {
  font-size: 12px;
}
#header .navs .nav-item,
#headzt .navs .nav-item {
  float: left;
  margin: 0px;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
  padding: 20px;
}
#header .navs .nav-item:hover .nav-item-title,
#headzt .navs .nav-item:hover .nav-item-title {
  color: #0056ff;
}
#header .navs .nav-item:hover .nav-item-sub,
#headzt .navs .nav-item:hover .nav-item-sub {
  height: 74px;
}
#header .navs .nav-item-title,
#headzt .navs .nav-item-title {
  height: 40px;
  line-height: 40px;
  font-weight: normal;
  border-bottom: 3px solid transparent;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
#header .navs .nav-item-sub,
#headzt .navs .nav-item-sub {
  position: absolute;
  top: 100%;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 0px;
  background-color: #f4f5f7;
  padding-left: 340px;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#header .navs .nav-item-sub li,
#headzt .navs .nav-item-sub li {
  display: inline-block;
  color: #333333;
  margin-right: 30px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  padding: 30px 0px;
  font-size: 14px;
  line-height: 14px;
}
#header .navs .nav-item-sub li.active, #header .navs .nav-item-sub li:hover,
#headzt .navs .nav-item-sub li.active,
#headzt .navs .nav-item-sub li:hover {
  color: #0056ff;
}
#header .navs .nav-item.active .nav-item-title,
#headzt .navs .nav-item.active .nav-item-title {
  color: #0056ff;
  border-bottom: 3px solid #2b62ec;
}
#header .call,
#headzt .call {
  margin-top: 20px;
}
#header .call .call-tel,
#headzt .call .call-tel {
  float: left;
  height: 40px;
  line-height: 40px;
  background-color: #f4f5f7;
  border-radius: 20px;
  font-size: 20px;
  color: #000000;
  padding: 0px 28px 0px 48px;
  position: relative;
  margin-right: 10px;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  cursor: pointer;
}
#header .call .call-tel:hover,
#headzt .call .call-tel:hover {
  color: #fff;
  background-color: #0c71f7;
}
#header .call .call-tel:hover .call-tel-icon,
#headzt .call .call-tel:hover .call-tel-icon {
  display: none;
}
#header .call .call-tel:hover .call-tel-icon.check,
#headzt .call .call-tel:hover .call-tel-icon.check {
  display: block;
}
#header .call .call-tel .call-tel-icon,
#headzt .call .call-tel .call-tel-icon {
  position: absolute;
  left: 5px;
  top: 3px;
}
#header .call .call-tel .call-tel-icon.check,
#headzt .call .call-tel .call-tel-icon.check {
  display: none;
}
#header .call .call-button,
#headzt .call .call-button {
  float: left;
  width: 128px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, right top, from(#0173ee), color-stop(0%, #0c71f7), color-stop(0%, #176fff), to(#003ef2));
  background-image: linear-gradient(90deg, #0173ee 0%, #0c71f7 0%, #176fff 0%, #003ef2 100%);
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
}
#header .btn-menu,
#headzt .btn-menu {
  float: right;
  margin-top: 23px;
  margin-left: 20px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  #header .logo img,
  #headzt .logo img {
    width: 100px;
    margin-left: 20px;
  }
  #header .navs,
  #headzt .navs {
    position: absolute;
    top: 100%;
    display: none;
    background: #fff;
    margin-left: 0px;
  }
  #header .navs .nav-item,
  #headzt .navs .nav-item {
    width: 100%;
    padding: 10px;
  }
  #header .navs .nav-item-title,
  #headzt .navs .nav-item-title {
    padding-left: 10px;
  }
  #header .navs .nav-item-sub,
  #headzt .navs .nav-item-sub {
    position: relative;
    padding: 0px;
    padding-left: 10px;
  }
  #header .navs .nav-item-sub li,
  #headzt .navs .nav-item-sub li {
    margin-right: 10px;
  }
}
/**
 **************** footer **************************
 */
#footer {
  background-color: #fafafa;
  padding: 0 20px;
}
#footer .contact {
  border-bottom: 1px solid #e7e7e7;
  text-align: center;
  padding-top: 50px;
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .contact-item {
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .contact img {
  height: 60px;
  margin-right: 10px;
}
#footer .contact a {
  color: #2b62ec;
  font-size: 18px;
}
#footer .contact p {
  font-size: 20px;
  margin-bottom: 0px;
}
#footer .links {
  padding: 50px 0px;
  border-bottom: 1px solid #e7e7e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .links dt {
  font-size: 26px;
  color: #000000;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}
#footer .links dt::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 50px;
  height: 1px;
  background: #c9ccd2;
}
#footer .links dd {
  padding: 10px 0px;
}
#footer .links a {
  display: inline-block;
  font-size: 16px;
  color: #666666;
  width: 135px;
}
#footer .ipc {
  font-size: 14px;
  color: #353535;
  text-align: center;
  padding: 30px;
}

@media (max-width: 768px) {
  #footer .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  #footer .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
/**
 **************** main **************************
 */
#main {
  margin-top: 80px;
}
#main > div {
  overflow: hidden;
}