@charset "UTF-8";
/* Welcome to Compass. Use this file to write IE specific override styles.
 * Import this file using the following HTML or equivalent:
 * <!--[if IE]>
 *   <link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
 * <![endif]--> */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:700,900&display=swap");
.notoSans {
  font-family: 'noto sans TC';
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: '微軟正黑體';
  overflow-scrolling: touch;
  font-family: Arial, "微軟正黑體", sans-serif;
  -webkit-overflow-scrolling: touch;
}

body {
  overflow-x: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#9ceaff), to(#eaf8f9));
  background: linear-gradient(#9ceaff, #eaf8f9);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.navBar {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  background: transparent;
}

.navBar .container-fluid {
  width: 90%;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .navBar .container-fluid {
    width: 100%;
  }
}

.navBar .container-fluid .brand {
  display: inline-block;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin-right: auto;
}

.navBar .container-fluid .brand .DXCLogo {
  border-right: solid 1px #646569;
  padding-right: 30px;
}

.navBar .container-fluid .brand .MFLogo {
  padding-left: 30px;
}

@media only screen and (max-width: 767px) {
  .navBar .container-fluid .brand .DXCLogo {
    border-right: solid 1px #646569;
    padding-right: 10px;
    width: 120px;
  }
  .navBar .container-fluid .brand .MFLogo {
    padding-left: 10px;
    width: 120px;
  }
}

.navBar .container-fluid .menu {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .navBar .container-fluid .menu {
    display: none;
  }
}

.navBar .container-fluid .menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.navBar .container-fluid .menu ul a {
  color: #0f3250;
  text-decoration: none;
  font-weight: bold;
}

.navBar .container-fluid .menu ul a li {
  display: inline-block;
  border-radius: 4px;
  padding: 15px;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0);
}

.navBar .container-fluid .menu ul a:hover {
  color: #fff;
}

.navBar .container-fluid .menu ul a:hover li {
  background-color: #0f3250;
}

.navBar .container-fluid .burger {
  display: none;
  position: relative;
  width: 50px;
  height: 100%;
  cursor: pointer;
}

.navBar .container-fluid .burger .iconBar {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #FF8300;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transition: all .2s;
  transition: all .2s;
}

.navBar .container-fluid .burger .iconBar:nth-child(1) {
  top: 42%;
}

.navBar .container-fluid .burger .iconBar:nth-child(3) {
  top: 58%;
}

@media only screen and (max-width: 767px) {
  .navBar .container-fluid .burger {
    display: inline-block;
  }
}

.navBar .container-fluid .burger.x-shape .iconBar:nth-child(1) {
  transform: translate(-50%, 290%) rotate(-45deg);
  -webkit-transform: translate(-50%, 290%) rotate(-45deg);
  -moz-transform: translate(-50%, 290%) rotate(-45deg);
  -ms-transform: translate(-50%, 290%) rotate(-45deg);
}

.navBar .container-fluid .burger.x-shape .iconBar:nth-child(2) {
  opacity: 0;
}

.navBar .container-fluid .burger.x-shape .iconBar:nth-child(3) {
  transform: translate(-50%, -370%) rotate(45deg);
  -webkit-transform: translate(-50%, -370%) rotate(45deg);
  -moz-transform: translate(-50%, -370%) rotate(45deg);
  -ms-transform: translate(-50%, -370%) rotate(45deg);
}

.navBar .sidebar {
  position: absolute;
  z-index: 90;
  width: 100%;
  max-height: 0px;
  left: 0;
  top: 90px;
  background-color: rgba(255, 131, 0, 0.95);
  -webkit-box-shadow: 0px 3px 5px rgba(255, 255, 255, 0.3);
          box-shadow: 0px 3px 5px rgba(255, 255, 255, 0.3);
  overflow: hidden;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
}

.navBar .sidebar .menu-aside {
  position: relative;
  z-index: 80;
}

.navBar .sidebar .menu-aside ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.navBar .sidebar .menu-aside ul a li {
  color: #fff;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 16px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.navBar .sidebar .menu-aside ul a li i {
  margin-right: 10px;
}

.navBar .sidebar .menu-aside ul a:hover {
  text-decoration: none;
}

.navBar .sidebar .menu-aside ul a:hover li {
  background-color: #ff7600;
}

.navBar .sidebar.in {
  max-height: 1000px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.header {
  position: relative;
  width: 100%;
}

.header.confirm {
  height: calc(100vh - 60px);
}

@media only screen and (max-width: 767px) {
  .header {
    padding-top: 50px;
  }
}

.header .subtitle {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  z-index: 5;
}

.header .subtitle h3 {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 3vw;
  background-color: #0086af;
  padding: 30px 50px;
  margin: 0;
  border-radius: 50px;
  font-family: 'noto sans TC';
  border: 15px solid #fff;
  -webkit-box-shadow: 10px 10px 0px rgba(132, 210, 244, 0.7);
          box-shadow: 10px 10px 0px rgba(132, 210, 244, 0.7);
}

.header .subtitle h3:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 50px;
  height: 100px;
  transform: translate(100%, 100%);
  -webkit-transform: translate(100%, 100%);
  -moz-transform: translate(100%, 100%);
  -ms-transform: translate(100%, 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#84d2f4));
  background: linear-gradient(#fff 50%, #84d2f4);
  z-index: -1;
}

.header .subtitle h3:after {
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  width: 50px;
  height: 100px;
  transform: translate(-100%, 100%);
  -webkit-transform: translate(-100%, 100%);
  -moz-transform: translate(-100%, 100%);
  -ms-transform: translate(-100%, 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#84d2f4));
  background: linear-gradient(#fff 50%, #84d2f4);
  z-index: -1;
}

@media only screen and (max-width: 1279px) {
  .header .subtitle h3 {
    padding: 20px 50px;
    border: 10px solid #fff;
  }
}

@media only screen and (max-width: 767px) {
  .header .subtitle h3 {
    padding: 10px 20px;
    font-size: 20px;
    border: 5px solid #fff;
    margin-bottom: 30px;
  }
  .header .subtitle h3:before, .header .subtitle h3:after {
    display: none;
  }
}

.header .title {
  position: relative;
  margin: auto;
  width: 80vw;
  height: 22vw;
  background-image: url(../images/title.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  z-index: 10;
}

.header .title h1 {
  text-align: center;
  color: #0f3250;
  font-size: 5vw;
  letter-spacing: 5px;
  font-family: 'noto sans TC';
}

.header .title h2 {
  position: relative;
  text-align: center;
  font-size: 3vw;
  font-weight: bold;
  color: #0086af;
  border: 2px solid #0086af;
  padding: 10px 10vw;
}

.header .title h2:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 2vw;
  height: 100%;
  background-color: #0086af;
}

.header .title h2:after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 2vw;
  height: 100%;
  background-color: #0086af;
}

.header .title > .content {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  width: 80%;
  color: #0f3250;
  margin: auto;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}

@media only screen and (max-width: 1279px) {
  .header .title > .content {
    width: 90%;
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .header .title > .content {
    font-size: 14px;
  }
  .header .title > .content br.disappear {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .header .title {
    width: 100vw;
    height: 30vw;
  }
  .header .title h1 {
    letter-spacing: 1px;
    font-size: 28px;
  }
  .header .title h2 {
    margin-top: 0;
    font-size: 16px;
  }
}

.header .title.confirm {
  margin-top: 100px;
}

@media only screen and (max-width: 767px) {
  .header .title.confirm {
    background: none;
  }
  .header .title.confirm > .content {
    font-size: 18px;
  }
}

.header .content {
  width: 60%;
  color: #0f3250;
  margin: auto;
  margin-top: 30px;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}

@media only screen and (max-width: 1279px) {
  .header .content {
    width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .header .content {
    font-size: 14px;
  }
  .header .content br.disappear {
    display: none;
  }
}

.header .btnBar {
  margin-top: 50px;
  text-align: center;
}

.header .btnBar a {
  position: relative;
  display: inline-block;
  background-color: #fff;
  color: #FF8300;
  font-weight: bold;
  padding: 15px 70px 15px 30px;
  font-size: 28px;
  border-radius: 50px;
  text-decoration: none;
  -webkit-box-shadow: 10px 10px 0px #ADE1F0;
          box-shadow: 10px 10px 0px #ADE1F0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

.header .btnBar a h2 {
  font-weight: bold;
  margin: 0;
  margin-bottom: 5px;
}

.header .btnBar a h4 {
  font-weight: bold;
  margin: 0;
}

.header .btnBar a:hover:after {
  opacity: 1;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

.header .btnBar a .mouse {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -40%);
  -webkit-transform: translate(50%, -40%);
  -moz-transform: translate(50%, -40%);
  -ms-transform: translate(50%, -40%);
  width: 100px;
  height: 100px;
  background-image: url(../images/mouse.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 10;
}

.header .btnBar a:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  transform: translate(40%, -50%);
  -webkit-transform: translate(40%, -50%);
  -moz-transform: translate(40%, -50%);
  -ms-transform: translate(40%, -50%);
  width: 100px;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#bc6608), to(#e27905));
  background: linear-gradient(#bc6608, #e27905);
  border-radius: 50%;
}

.header .btnBar a:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  transform: translate(37%, -50%);
  -webkit-transform: translate(37%, -50%);
  -moz-transform: translate(37%, -50%);
  -ms-transform: translate(37%, -50%);
  width: 70px;
  height: 70px;
  background-color: #ef8200;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .header .btnBar a {
    font-size: 20px;
    margin-top: 30px;
  }
}

.header .headerBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 102vw;
  height: 43vw;
  z-index: -1;
  background-image: url(../images/headerBg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.section {
  position: relative;
  padding-bottom: 50px;
  padding-bottom: 150px;
}

@media only screen and (max-width: 767px) {
  .section {
    padding-bottom: 50px;
  }
}

.section .cloud1 {
  position: absolute;
  width: 20vw;
  height: 5.3vw;
  left: 10%;
  top: 5%;
  background-image: url(../images/cloud1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 1;
  -webkit-animation: swing 4s linear infinite alternate both;
          animation: swing 4s linear infinite alternate both;
}

@media only screen and (max-width: 767px) {
  .section .cloud1 {
    width: 60vw;
    height: 15vw;
    top: 15%;
  }
}

.section .cloud2 {
  position: absolute;
  width: 40vw;
  height: 7vw;
  right: -15%;
  top: -20%;
  background-image: url(../images/cloud2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: -1;
  animation: swing 7s linear infinite alternate-reverse both;
}

@media only screen and (max-width: 767px) {
  .section .cloud2 {
    width: 60vw;
    height: 15vw;
    bottom: 0%;
  }
}

.section .cloud3 {
  position: absolute;
  width: 50vw;
  height: 8vw;
  right: 5%;
  bottom: -5%;
  background-image: url(../images/cloud3.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: -1;
  animation: swing 7s linear infinite alternate-reverse both;
}

.section .container-fluid {
  width: 60%;
}

@media only screen and (max-width: 1279px) {
  .section .container-fluid {
    width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .section .container-fluid {
    width: 90%;
    padding-bottom: 50px;
  }
}

.section .container-fluid h2 {
  position: relative;
  font-size: 36px;
  line-height: 48px;
  font-family: 'noto sans TC';
  color: #0f3250;
  font-weight: bold;
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .section .container-fluid h2 {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}

.section .container-fluid .npcBar {
  position: relative;
  background-color: #fff;
  color: #0f3250;
  border-radius: 150px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

@media only screen and (max-width: 767px) {
  .section .container-fluid .npcBar {
    border-radius: 10px;
  }
}

.section .container-fluid .npcBar .content {
  padding: 50px 70px;
  width: 90%;
  overflow: hidden;
}

.section .container-fluid .npcBar .content h4 {
  line-height: 1.5;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .section .container-fluid .npcBar .content {
    padding: 10px 20px;
  }
  .section .container-fluid .npcBar .content h4 {
    font-size: 14px;
  }
}

.section .container-fluid .npcBar .circle {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 8vw;
  height: 8vw;
  border-radius: 50%;
  transform: translate(-20%, 50%);
  -webkit-transform: translate(-20%, 50%);
  -moz-transform: translate(-20%, 50%);
  -ms-transform: translate(-20%, 50%);
}

.section .container-fluid .npcBar .circle2 {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  transform: translate(-200%, 200%);
  -webkit-transform: translate(-200%, 200%);
  -moz-transform: translate(-200%, 200%);
  -ms-transform: translate(-200%, 200%);
}

.section .container-fluid .npcBar .npc {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(20%, -50%);
  -webkit-transform: translate(20%, -50%);
  -moz-transform: translate(20%, -50%);
  -ms-transform: translate(20%, -50%);
  width: 15vw;
  height: 15vw;
  background-image: url(../images/npc.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

@media only screen and (max-width: 767px) {
  .section .container-fluid .npcBar .npc {
    width: 30vw;
    height: 30vw;
  }
}

.section .container-fluid .npcBar:before {
  position: absolute;
  content: '';
  left: -10%;
  top: -20%;
  background-color: #fff;
  border-radius: 150px;
  width: 50%;
  height: 200px;
  opacity: 0.3;
  z-index: -1;
  -webkit-animation: swing 7s linear infinite alternate both;
          animation: swing 7s linear infinite alternate both;
}

.section .container-fluid .npcBar:after {
  position: absolute;
  content: '';
  right: -20%;
  bottom: -30%;
  background-color: #fff;
  border-radius: 150px;
  width: 100%;
  height: 150px;
  opacity: 0.3;
  z-index: -1;
  animation: swing 10s linear infinite alternate-reverse both;
}

.section .starCover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.section .starCover [class^="star"] {
  background-color: #fff;
  border-radius: 50px;
  -webkit-animation: sparkle 3s infinite;
          animation: sparkle 3s infinite;
  z-index: -1;
}

.section .starCover .star1 {
  left: 0;
  top: 0;
}

.section .starCover .star2 {
  left: 10%;
  top: 20%;
}

.section .starCover .star3 {
  left: 0%;
  top: 40%;
}

.section .starCover .star4 {
  left: 10%;
  top: 60%;
}

.section .starCover .star5 {
  left: 0%;
  top: 100%;
}

.section .starCover .star6 {
  right: 0;
  top: 0;
}

.section .starCover .star7 {
  right: 10%;
  top: 20%;
}

.section .starCover .star8 {
  right: 0%;
  top: 40%;
}

.section .starCover .star9 {
  right: 10%;
  top: 60%;
}

.section .starCover .star10 {
  right: 0%;
  top: 100%;
}

.section .starCover .star1 {
  position: absolute;
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
  width: 120px;
  height: 30px;
}

.section .starCover .star2 {
  position: absolute;
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
  width: 120px;
  height: 30px;
}

.section .starCover .star3 {
  position: absolute;
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
  width: 120px;
  height: 30px;
}

.section .starCover .star4 {
  position: absolute;
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
  width: 120px;
  height: 30px;
}

.section .starCover .star5 {
  position: absolute;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
  width: 120px;
  height: 30px;
}

.section .starCover .star6 {
  position: absolute;
  -webkit-animation-delay: -1.2s;
          animation-delay: -1.2s;
  width: 120px;
  height: 30px;
}

.section .starCover .star7 {
  position: absolute;
  -webkit-animation-delay: -1.4s;
          animation-delay: -1.4s;
  width: 120px;
  height: 30px;
}

.section .starCover .star8 {
  position: absolute;
  -webkit-animation-delay: -1.6s;
          animation-delay: -1.6s;
  width: 120px;
  height: 30px;
}

.section .starCover .star9 {
  position: absolute;
  -webkit-animation-delay: -1.8s;
          animation-delay: -1.8s;
  width: 120px;
  height: 30px;
}

.section .starCover .star10 {
  position: absolute;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  width: 120px;
  height: 30px;
}

@-webkit-keyframes sparkle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sparkle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media only screen and (max-width: 767px) {
  .section .starCover {
    display: none;
  }
}

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

@media only screen and (max-width: 767px) {
  .tower {
    -ms-flex-direction: column;
        flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    padding-top: 100px;
  }
}

.tower .left {
  position: relative;
  width: 50vw;
}

.tower .left img {
  position: relative;
  z-index: 20;
}

.tower .left .large {
  display: block;
}

.tower .left .small {
  display: none;
}

@media only screen and (max-width: 767px) {
  .tower .left {
    width: 100vw;
  }
  .tower .left .large {
    display: none;
  }
  .tower .left .small {
    display: block;
  }
}

.tower .left .robot1 {
  position: absolute;
  right: 5%;
  top: 10%;
  width: 10vw;
  height: 15vw;
  background-image: url(../images/robot1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 50;
  -webkit-animation: updown 1s infinite alternate both;
          animation: updown 1s infinite alternate both;
}

.tower .left .robot1 .light {
  position: absolute;
  left: -280%;
  top: 11%;
  width: 30vw;
  height: 30vw;
  background-image: url(../images/light1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 55;
}

@media only screen and (max-width: 767px) {
  .tower .left .robot1 {
    width: 20vw;
    height: 30vw;
  }
  .tower .left .robot1 .light {
    width: 60vw;
    height: 30vw;
    left: -230%;
    top: 30%;
  }
}

.tower .left .robot2 {
  position: absolute;
  left: 10%;
  top: -5%;
  width: 10vw;
  height: 15vw;
  background-image: url(../images/robot2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 50;
  -webkit-animation: updown 1s infinite alternate both;
          animation: updown 1s infinite alternate both;
}

.tower .left .robot2 .light {
  position: absolute;
  left: 5%;
  top: -10%;
  width: 30vw;
  height: 30vw;
  background-image: url(../images/light2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 55;
}

@media only screen and (max-width: 767px) {
  .tower .left .robot2 {
    width: 20vw;
    height: 30vw;
  }
  .tower .left .robot2 .light {
    width: 60vw;
    height: 60vw;
    left: 5%;
    top: -10%;
  }
}

.tower .left .robot3 {
  position: absolute;
  left: 30%;
  bottom: 0;
  width: 10vw;
  height: 15vw;
  background-image: url(../images/robot3.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 50;
  -webkit-animation: updown 1s infinite alternate both;
          animation: updown 1s infinite alternate both;
}

.tower .left .robot3 .light {
  position: absolute;
  left: -40%;
  top: -135%;
  width: 30vw;
  height: 30vw;
  background-image: url(../images/light3.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 55;
}

@media only screen and (max-width: 767px) {
  .tower .left .robot3 {
    width: 20vw;
    height: 30vw;
  }
  .tower .left .robot3 .light {
    width: 60vw;
    height: 60vw;
    left: -40%;
    top: -135%;
  }
}

.tower .left .robot4 {
  position: absolute;
  left: 30%;
  top: 50%;
  width: 30vw;
  height: 20vw;
  background-image: url(../images/police.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 50;
}

@media only screen and (max-width: 767px) {
  .tower .left .robot4 {
    width: 60vw;
    height: 40vw;
    top: 30%;
  }
}

.tower .right {
  width: 50vw;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

@media only screen and (max-width: 767px) {
  .tower .right {
    width: 100%;
  }
}

.tower .right .listArea {
  width: 90%;
}

@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .tower .right .listArea {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .tower .right .listArea {
    margin: auto;
  }
}

.tower .right .listArea .title {
  position: relative;
  display: inline-block;
  font-weight: bold;
  background-color: #FF8300;
  border-radius: 5px;
  color: #fff;
  font-size: 32px;
  padding: 10px 20px;
  margin-bottom: 20px;
  margin-left: 30px;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .tower .right .listArea .title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .tower .right .listArea .title {
    display: none;
  }
}

.tower .right .listArea .listBar {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  margin: auto;
  margin-bottom: 10px;
  width: 80%;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .tower .right .listArea .listBar {
    margin-bottom: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tower .right .listArea .listBar {
    margin-bottom: 10px;
  }
}

.tower .right .listArea .listBar .content h2 {
  position: relative;
  font-weight: bold;
  color: #FF8300;
  background-color: #0f3250;
  display: inline-block;
  font-size: 24px;
  border-radius: 50px;
  padding: 10px 30px 10px 70px;
}

.tower .right .listArea .listBar .content h2 .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  border: 5px solid #0f3250;
}

.tower .right .listArea .listBar .content h2 .icon img {
  max-width: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .tower .right .listArea .listBar .content h2 .icon {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tower .right .listArea .listBar .content h2 .icon {
    display: block;
  }
  .tower .right .listArea .listBar .content h2 .icon img {
    max-width: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .tower .right .listArea .listBar .content h2 .icon {
    padding: 10px;
  }
  .tower .right .listArea .listBar .content h2 .icon img {
    max-width: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .tower .right .listArea .listBar .content h2 {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tower .right .listArea .listBar .content h2 {
    padding: 10px 30px 10px 50px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .tower .right .listArea .listBar .content h2 {
    font-size: 18px;
    padding: 10px 30px;
  }
}

.tower .right .listArea .listBar .content h3 {
  position: relative;
  font-weight: bold;
  color: #fff;
  background-color: #FF8300;
  display: block;
  border-radius: 5px;
  font-size: 20px;
  padding: 10px 30px;
  margin-left: 40px;
  margin-top: -10px;
  z-index: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .tower .right .listArea .listBar .content h3 {
    display: none;
  }
}

@media only screen and (max-width: 1279px) {
  .tower .right .listArea .listBar .content h3 {
    font-size: 24px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .tower .right .listArea .listBar .content h3 {
    font-size: 18px;
    padding: 10px 20px;
    margin-left: 20px;
  }
}

.tower .right .listArea .listBar .content p {
  font-weight: bold;
  color: #0f3250;
  font-size: 16px;
  margin-left: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .tower .right .listArea .listBar .content p {
    margin-left: 0;
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tower .right .listArea .listBar .content p {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .tower .right .listArea .listBar .content p {
    margin-left: 20px;
    font-size: 14px;
  }
}

.towerB {
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .towerB {
    padding-bottom: 0;
  }
}

.towerBottom {
  padding-top: 20vh;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .towerBottom {
    padding-top: 0px;
  }
}

.towerBottom .leftBg {
  position: absolute;
  left: 0;
  top: 0;
  width: 50vw;
  height: 23.63vw;
  background-image: url(../images/tower1f.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

@media only screen and (max-width: 767px) {
  .towerBottom .leftBg {
    display: none;
  }
}

.towerBottom .rightBg {
  position: absolute;
  right: 10vw;
  top: 3vw;
  transform: translate(0%, 0%);
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  width: 30vw;
  height: 30vw;
  background-image: url(../images/tower1f-2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

@media only screen and (max-width: 767px) {
  .towerBottom .rightBg {
    display: none;
  }
}

.towerBottom .container-fluid {
  width: 100%;
}

@media only screen and (max-width: 1279px) {
  .towerBottom .container-fluid {
    width: 100%;
  }
}

.towerBottom .container-fluid .police {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  z-index: 10;
}

.towerBottom .container-fluid .police img {
  max-height: 500px;
}

@media only screen and (max-width: 767px) {
  .towerBottom .container-fluid .police {
    margin-top: 50px;
  }
  .towerBottom .container-fluid .police img {
    width: 100%;
  }
}

.towerBottom .container-fluid .content {
  width: 80%;
  margin-top: -50px;
}

.towerBottom .container-fluid .content h2 {
  position: relative;
  font-weight: bold;
  color: #FF8300;
  background-color: #0f3250;
  display: inline-block;
  border-radius: 50px;
  padding: 10px 30px 10px 70px;
  z-index: 10;
}

.towerBottom .container-fluid .content h2 .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  padding: 20px;
  border: 5px solid #0f3250;
}

.towerBottom .container-fluid .content h2 .icon img {
  max-width: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .towerBottom .container-fluid .content h2 .icon {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .towerBottom .container-fluid .content h2 .icon {
    padding: 10px;
  }
  .towerBottom .container-fluid .content h2 .icon img {
    max-width: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1400px) {
  .towerBottom .container-fluid .content h2 {
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .towerBottom .container-fluid .content h2 {
    font-size: 18px;
    padding: 10px 30px;
    margin-left: 20px;
  }
}

.towerBottom .container-fluid .content h3 {
  position: relative;
  font-weight: bold;
  color: #fff;
  background-color: #FF8300;
  display: block;
  max-width: 500px;
  border-radius: 5px;
  font-size: 36px;
  padding: 10px 30px;
  margin-left: 40px;
  margin-top: -10px;
  z-index: 0;
}

@media only screen and (max-width: 1279px) {
  .towerBottom .container-fluid .content h3 {
    font-size: 24px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .towerBottom .container-fluid .content h3 {
    font-size: 18px;
    padding: 10px 30px;
    margin-left: 40px;
  }
}

.towerBottom .container-fluid .content p {
  width: 80%;
  font-weight: bold;
  color: #0f3250;
  font-size: 16px;
  margin-left: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .towerBottom .container-fluid .content p {
    margin-left: 0;
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .towerBottom .container-fluid .content p {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .towerBottom .container-fluid .content p {
    margin-left: 0px;
    font-size: 14px;
    width: 100%;
  }
}

.towerBottom .cloud1 {
  position: absolute;
  width: 40vw;
  height: 10vw;
  left: 0%;
  top: 30%;
  background-image: url(../images/cloud1.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 1;
  -webkit-animation: swing 4s linear infinite alternate both;
          animation: swing 4s linear infinite alternate both;
}

@media only screen and (max-width: 767px) {
  .towerBottom .cloud1 {
    width: 60vw;
    height: 15vw;
    top: 15%;
    z-index: -1;
  }
}

.towerBottom .cloud2 {
  position: absolute;
  width: 40vw;
  height: 7vw;
  right: 20%;
  top: 50%;
  background-image: url(../images/cloud2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: 1;
  animation: swing 7s linear infinite alternate-reverse both;
}

@media only screen and (max-width: 767px) {
  .towerBottom .cloud2 {
    width: 60vw;
    height: 15vw;
    bottom: 0%;
    z-index: -1;
  }
}

.towerBottom .cloud3 {
  position: absolute;
  width: 50vw;
  height: 8vw;
  right: -10%;
  top: 20%;
  background-image: url(../images/cloud3.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: -1;
  animation: swing 7s linear infinite alternate-reverse both;
}

.conclude {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}

.conclude h2 {
  font-size: 36px;
  line-height: 48px;
  color: #0f3250;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .conclude h2 {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}

.conclude .cloud3 {
  position: absolute;
  width: 60vw;
  height: 15vw;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  -webkit-transform: translate(-50%, -60%);
  -moz-transform: translate(-50%, -60%);
  -ms-transform: translate(-50%, -60%);
  background-image: url(../images/cloud3.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .conclude .cloud3 {
    width: 100vw;
    height: 20vw;
  }
}

.registration {
  padding-top: 30px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .registration {
    padding-top: 0px;
  }
}

.registration .container-fluid {
  width: 80%;
}

@media only screen and (max-width: 767px) {
  .registration .container-fluid {
    width: 90%;
  }
}

.registration .container-fluid .title {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.registration .container-fluid .title h2 {
  font-size: 36px;
  line-height: 48px;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  margin: 50px auto;
  text-align: center;
  padding: 20px 50px;
  border-radius: 5px;
  background-color: #FF5F4B;
}

@media only screen and (max-width: 767px) {
  .registration .container-fluid .title h2 {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}

.registration .container-fluid .regisPad .form-group label {
  display: block;
  color: #333;
  font-size: 16px;
}

.registration .container-fluid .regisPad .form-group label sup {
  color: #FF8300;
}

.registration .container-fluid .regisPad .form-group label[for="password"] {
  color: #FF5F4B;
}

.registration .container-fluid .regisPad .form-group select {
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .registration .container-fluid .regisPad .form-group span {
    display: none;
  }
}

.registration .container-fluid .regisPad .form-group .form-control {
  display: inline-block;
}

.registration .container-fluid .regisPad .form-group .form-control[name="cTelephoneArea"] {
  width: 20%;
  min-width: 50px;
}

.registration .container-fluid .regisPad .form-group .form-control[name="cTelephone"] {
  width: 40%;
  min-width: 140px;
}

.registration .container-fluid .regisPad .form-group .form-control[name="cTelephoneExtension"] {
  width: 20%;
  min-width: 60px;
}

.registration .container-fluid .regisPad .form-group .form-control[name="cCelphone"] {
  width: 56%;
}

@media only screen and (max-width: 767px) {
  .registration .container-fluid .regisPad .form-group .form-control[name^="cTel"] {
    margin-bottom: 10px;
  }
  .registration .container-fluid .regisPad .form-group .form-control[name="cCelphone"] {
    width: 100%;
  }
}

.registration .container-fluid .regisPad .form-group .form-control:focus {
  border-color: #FF5F4B;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.registration .container-fluid .regisPad .form-group .inputGroup {
  display: block;
  position: relative;
}

.registration .container-fluid .regisPad .form-group .inputGroup label {
  padding: 6px 12px;
  width: calc(97% / 3);
  margin-right: 0.5%;
  margin-left: 0.5%;
  float: left;
  display: block;
  text-align: left;
  border: solid 1px #ccc;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  -webkit-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .registration .container-fluid .regisPad .form-group .inputGroup label {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

.registration .container-fluid .regisPad .form-group .inputGroup input {
  width: 32px;
  height: 32px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  z-index: 2;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.registration .container-fluid .regisPad .form-group .inputGroup input:checked ~ label {
  color: #fff;
  border: solid 1px #FF5F4B;
  background-color: #FF5F4B;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.registration .container-fluid .regisPad .form-group .fraction {
  font-size: 16px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
}

@media only screen and (max-width: 767px) {
  .registration .container-fluid .regisPad .form-group .fraction {
    display: none;
  }
}

.registration .container-fluid .regisPad .form-group .dib {
  display: inline-block;
  margin-right: 20px;
}

.registration .container-fluid .regisPad .form-group.submit {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.registration .container-fluid .regisPad .form-group.submit .submitBtn {
  padding: 5px 20px;
  background-color: #FF5F4B;
  outline: none;
  border: none;
  color: #fff;
  border-radius: 4px;
}

@media only screen and (max-width: 767px) {
  .registration .container-fluid .regisPad .form-group.submit .submitBtn {
    width: 100%;
  }
}

.registration .container-fluid .regisPad .form-group.submit .submitBtn:hover {
  background-color: #ff7665;
}

.registration .container-fluid .regisPad .form-group.submit .submitBtn:focus, .registration .container-fluid .regisPad .form-group.submit .submitBtn:active {
  background-color: #333333;
}

.registration .container-fluid .check {
  width: 60%;
  margin: auto;
  margin-top: 20px;
  text-align: center;
}

.registration .container-fluid .check .checkBtn {
  margin: 10px;
  padding: 10px 50px;
  outline: none;
  border: none;
  background-color: #FF5F4B;
  border-radius: 4px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.registration .container-fluid .check .checkBtn:hover {
  background-color: #ff4832;
}

@media only screen and (max-width: 450px) {
  .registration .container-fluid .check {
    width: 100%;
  }
  .registration .container-fluid .check .checkBtn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

.registration .moreInfo {
  color: #FF5F4B;
  padding-top: 30px;
  font-weight: bold;
}

.registration .otherInput {
  outline: none;
  border: none;
  background-color: transparent;
  font-weight: normal;
  border-bottom: 1px solid #333333;
}

.registration .otherInput:hover {
  border-bottom: 1px solid #FF5F4B;
}

.registration .otherInput:focus {
  border-bottom: 1px solid #FF5F4B;
}

.footer {
  background-color: #646569;
}

.footer .container-fluid .copyright {
  padding: 20px 0;
  text-align: center;
}

.footer .container-fluid .copyright small {
  color: #fff;
}

.btnContact {
  position: fixed;
  background-color: #FF8300;
  color: #fff;
  text-align: center;
  font-weight: bold;
  right: 20px;
  bottom: 20px;
  padding: 15px;
  border-radius: 5px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  -webkit-animation: updown 1s infinite alternate both;
          animation: updown 1s infinite alternate both;
  z-index: 100;
}

.btnContact h4 {
  font-weight: bold;
  margin: 0;
}

.btnContact:hover {
  background-color: #0f3250;
  color: #fff;
}

.btnContact:active {
  background-color: #071725;
  color: #fff;
}

.cf_block {
  background-color: rgba(255, 131, 0, 0.2);
  padding: 20px;
}

.cf_block h4 {
  line-height: 24px;
}

.cf_btnBar {
  text-align: center;
}

.cf_btnBar a {
  position: relative;
  display: inline-block;
  background-color: #FF8300;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

.cf_btnBar a:hover {
  background-color: #FF5F4B;
}

.cf_btnBar a:hover:after {
  opacity: 1;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

@media only screen and (max-width: 767px) {
  .cf_btnBar a {
    margin-top: 30px;
  }
}

@-webkit-keyframes updown {
  0% {
    transform: translate(0%, -5%);
    -webkit-transform: translate(0%, -5%);
    -moz-transform: translate(0%, -5%);
    -ms-transform: translate(0%, -5%);
  }
  100% {
    transform: translate(0%, 5%);
    -webkit-transform: translate(0%, 5%);
    -moz-transform: translate(0%, 5%);
    -ms-transform: translate(0%, 5%);
  }
}

@keyframes updown {
  0% {
    transform: translate(0%, -5%);
    -webkit-transform: translate(0%, -5%);
    -moz-transform: translate(0%, -5%);
    -ms-transform: translate(0%, -5%);
  }
  100% {
    transform: translate(0%, 5%);
    -webkit-transform: translate(0%, 5%);
    -moz-transform: translate(0%, 5%);
    -ms-transform: translate(0%, 5%);
  }
}

@-webkit-keyframes swing {
  0% {
    transform: translate(5%, 0%);
    -webkit-transform: translate(5%, 0%);
    -moz-transform: translate(5%, 0%);
    -ms-transform: translate(5%, 0%);
  }
  100% {
    transform: translate(-5%, 0%);
    -webkit-transform: translate(-5%, 0%);
    -moz-transform: translate(-5%, 0%);
    -ms-transform: translate(-5%, 0%);
  }
}

@keyframes swing {
  0% {
    transform: translate(5%, 0%);
    -webkit-transform: translate(5%, 0%);
    -moz-transform: translate(5%, 0%);
    -ms-transform: translate(5%, 0%);
  }
  100% {
    transform: translate(-5%, 0%);
    -webkit-transform: translate(-5%, 0%);
    -moz-transform: translate(-5%, 0%);
    -ms-transform: translate(-5%, 0%);
  }
}

@-webkit-keyframes swipe {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes swipe {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
/*# sourceMappingURL=style.css.map */