#footer .container {
  padding-top: 70px;
}
#footer .container .bottom .qrCode {
  width: 50%;
  margin: 10px auto;
}

#header a.logo > img {
  height: 50px;
}
#header.fixed #topNav a.logo {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header.fixed #topNav a.logo > img {
  height: 40px;
}

.tp-bullets.preview2 .bullet {
  margin: 0 10px;
}
.tp-bullets.preview2 .bullet:hover, .tp-bullets.preview2 .bullet.selected {
  background: rgba(255, 255, 255, 0.8) !important;
  width: 16px !important;
  height: 16px !important;
  border: 0 !important;
}

html {
  font-size: 24px;
}

.container {
  width: 80vw !important;
}

section {
  margin: 8vw auto;
  padding: 0;
}
section .container .row.flex {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -moz-box-align: center;
   -ms-flex-align: center;
       align-items: center;
  -webkit-align-items: center;
}
section .container .row.flex.warp {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
section .container .title {
  position: relative;
  color: #202020;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 24px;
  text-transform: uppercase;
  line-height: 1.5;
}
section .container .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 4.4em;
  height: 0.35em;
  background: #006AFF;
  z-index: -1;
}
section .container .title.center {
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}
section .container .title.center::before {
  bottom: -0.1em;
  background: rgba(0, 106, 255, 0.05);
  height: 0.63em;
  width: 100%;
}
section .container .info {
  font-size: 0.6rem;
}
section .container .info p {
  margin-bottom: 20px;
}
section .container .btn {
  border: none;
  cursor: pointer;
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0;
  position: relative;
  width: 7rem;
  background: #006AFF;
  color: #FFF !important;
  text-align: center;
  max-width: 240px;
  height: 2rem;
  line-height: 2rem;
}
section .container .btn span {
  position: relative;
  z-index: 1;
}
section .container .btn::before {
  background: #000;
  color: #FFF;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0;
  z-index: 0;
}
section .container .btn::after {
  background: url(../../images/home/icon_arrow-w.png) no-repeat center center/contain;
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: -webkit-calc(50% - 7px);
  top: -moz-calc(50% - 7px);
  top: calc(50% - 7px);
  right: 16px;
  width: 12px;
  z-index: 2;
}
section .container .btn:hover {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section .container .btn:hover::before {
  width: 100%;
}

.pager li:focus, .pager li:hover {
  text-decoration: none;
  background-color: #006AFF;
}
.pager li span, .pager li a {
  border: 1px solid #006AFF;
  color: #006AFF;
}
.pager li span:hover, .pager li a:hover {
  color: #FFF;
  background-color: #006AFF;
}

table tbody tr:nth-child(even) {
  background-color: #F5F5F5;
}
table tbody tr:nth-child(odd) {
  background-color: #FFF;
}

@media only screen and (min-width: 1680px) {
  html {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1680px) {
  html {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1280px) {
  html {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .container {
    width: unset !important;
    min-width: unset;
  }
  section.page-header img {
    width: 100%;
  }
  section .container .btn::after {
    height: 10px;
    width: 10px;
    top: -webkit-calc(50% - 5px);
    top: -moz-calc(50% - 5px);
    top: calc(50% - 5px);
    right: 10px;
  }
  #footer .container {
    padding-top: 0;
  }
  #footer .container .row {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
  }
  #footer .container .row > div {
    margin-bottom: 10px;
    width: 100%;
  }
  #footer .container .row > div h4 {
    margin: 20px auto 0;
  }
  #footer .container .row > div ul {
    margin-bottom: 0;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-bottom: 1px solid;
  }
  #footer .container .row > div ul li {
    padding: 2vw 8vw 2vw 0;
  }
  #footer .container .row .bottom {
    width: 100%;
    border: 0;
    text-align: center;
    margin-top: 0;
  }
  #footer .container .row .bottom .list-unstyled {
    border: 0;
    margin-top: 10px;
  }
  #footer .container .row .bottom .list-unstyled li {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column-reverse;
       -moz-box-orient: vertical;
       -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #footer .container .row .bottom .list-unstyled li a {
    font-weight: bold;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
  }
  #footer .container .row .bottom .list-unstyled li .qrCode {
    width: 60%;
    margin: 0;
  }
  #footer .copyright > div {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 20px;
  }
  #footer .copyright .container {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #header #topNav {
    position: fixed;
    width: 100%;
    background: #fff;
  }
  #header #topNav a.logo {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header #topNav a.logo > img {
    height: 35px;
  }
}