@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:300,400,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap");
.notoSans {
  font-family: 'noto sans TC';
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: '微軟正黑體';
  overflow-scrolling: touch;
  font-family: 'Open Sans', 'Noto Sans TC', "微軟正黑體", sans-serif;
  -webkit-overflow-scrolling: touch;
}

body {
  overflow-x: hidden;
}

.navBar {
  position: relative;
  width: 100%;
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .navBar {
    position: fixed;
    top: 0;
    height: 90px;
    z-index: 100;
  }
}

.navBar .container-fluid {
  width: 80%;
  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 #D9D9D9;
  padding-right: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .navBar .container-fluid .brand {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .navBar .container-fluid .brand .DXCLogo {
    border-right: none;
    padding-right: 0px;
  }
  .navBar .container-fluid .brand .MFLogo {
    display: none;
  }
}

.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: #000;
  font-size: 16px;
}

.navBar .container-fluid .menu ul a:hover {
  text-decoration: none;
  color: #6F2C91;
}

.navBar .container-fluid .menu ul a li {
  display: inline-block;
  padding: 12px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all .2s;
  transition: all .2s;
}

.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: #000;
  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, 255, 255, 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: #000;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 16px;
  border-bottom: solid 1px silver;
}

.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: rgba(0, 0, 0, 0.1);
}

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

.fluid-bar {
  position: fixed;
  width: 100%;
  max-height: 0px;
  top: 0;
  left: 0;
  background-color: #666666;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 100;
}

.fluid-bar.show {
  max-height: 150px;
}

.fluid-bar .container-fluid {
  width: 90%;
  margin: auto;
  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;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}

.fluid-bar .container-fluid .brand {
  margin-right: auto;
}

.fluid-bar .container-fluid .brand .DXCLogo {
  border-right: solid 1px #fff;
  padding-right: 15px;
}

@media only screen and (max-width: 1199px) {
  .fluid-bar .container-fluid .brand {
    display: none;
  }
}

.fluid-bar .container-fluid .menu {
  display: inline-block;
  overflow: hidden;
}

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

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

.fluid-bar .container-fluid .menu ul a {
  color: #fff;
  font-size: 15px;
}

.fluid-bar .container-fluid .menu ul a:hover {
  text-decoration: none;
  color: #F7CF2B;
}

.fluid-bar .container-fluid .menu ul a li {
  display: inline-block;
  padding: 15px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: all .2s;
  transition: all .2s;
}

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

.header {
  position: relative;
  width: 100%;
  height: 30vw;
  background-image: url(../images/banner2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.header .container-fluid {
  position: relative;
  height: 100%;
  width: 80%;
}

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

.header .container-fluid .header-bar {
  position: absolute;
  top: 50%;
  left: 0%;
  z-index: 10;
  transform: translate(15px, -50%);
  -webkit-transform: translate(15px, -50%);
  -moz-transform: translate(15px, -50%);
  -ms-transform: translate(15px, -50%);
}

.header .container-fluid .header-bar h1 {
  color: #000;
  font-weight: bold;
  font-size: 38px;
  margin: 0;
  margin-bottom: 10px;
  color: #6F2C91;
}

.header .container-fluid .header-bar h1 .brLine {
  margin-left: 0.5em;
}

.header .container-fluid .header-bar h2 {
  color: #000;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
  font-size: 20px;
  margin-bottom: 10px;
}

.header .container-fluid .header-bar h2 .brLine {
  margin-left: 0.5em;
}

.header .container-fluid .header-bar a .register {
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #6F2C91;
  margin-top: 20px;
}

.header .container-fluid .header-bar a:hover {
  text-decoration: none;
}

.header .container-fluid .header-bar a:hover .register {
  background-color: #60267d;
}

.header:hover:after {
  opacity: 0.5;
}

@media only screen and (max-width: 1339px) {
  .header {
    height: 40vw;
  }
}

@media only screen and (max-width: 1079px) {
  .header {
    height: 60vw;
  }
}

@media only screen and (max-width: 767px) {
  .header {
    margin-top: 90px;
    height: 80vw;
  }
  .header .container-fluid .header-bar {
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .header .container-fluid .header-bar.bannerText {
    width: 100%;
    text-align: center;
  }
  .header .container-fluid .header-bar.bannerText h1 {
    font-size: 32px;
    line-height: 36px;
    font-weight: bold;
  }
  .header .container-fluid .header-bar.bannerText h1 .brLine {
    display: block;
  }
  .header .container-fluid .header-bar.bannerText h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .header .container-fluid .header-bar.bannerText h2 .brLine {
    display: block;
  }
}

@media only screen and (max-width: 499px) {
  .header {
    height: 120vw;
  }
  .header .container-fluid .header-bar.bannerText h1 {
    font-size: 24px;
  }
  .header .container-fluid .header-bar.bannerText h2 {
    font-size: 16px;
    line-height: 28px;
  }
}

@media only screen and (max-width: 399px) {
  .header {
    height: 150vw;
  }
  .header .container-fluid .header-bar.bannerText h1 .brLine {
    display: inline-block;
  }
  .header .container-fluid .header-bar.bannerText h2 .brLine {
    display: inline-block;
  }
}

.article {
  background-color: #fff;
  color: #666666;
  padding-top: 70px;
  padding-bottom: 90px;
}

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

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

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

.article .container-fluid .articleBar {
  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;
}

.article .container-fluid .articleBar h3 {
  font-size: 28px;
  margin: 0;
  font-weight: bold;
  white-space: nowrap;
  padding-right: 15px;
}

.article .container-fluid .articleBar p {
  margin: 0;
  border-left: 1px solid #D9D9D9;
  font-size: 16px;
  line-height: 24px;
  padding-left: 15px;
}

@media only screen and (max-width: 767px) {
  .article .container-fluid .articleBar {
    -ms-flex-direction: column;
        flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
  }
  .article .container-fluid .articleBar h3 {
    text-align: center;
    padding-right: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
  }
  .article .container-fluid .articleBar p {
    padding-left: 0;
    border-left: none;
    text-align: center;
  }
}

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

.section .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/background.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-filter: grayscale(1);
  z-index: -1;
}

.section .bg:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.8;
}

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

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

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

.section .container-fluid .boxArea {
  position: relative;
  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;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  transform: translate(0, -20%);
  -webkit-transform: translate(0, -20%);
  -moz-transform: translate(0, -20%);
  -ms-transform: translate(0, -20%);
  z-index: 20;
}

@media only screen and (max-width: 767px) {
  .section .container-fluid .boxArea {
    transform: translate(0, 0%);
    -webkit-transform: translate(0, 0%);
    -moz-transform: translate(0, 0%);
    -ms-transform: translate(0, 0%);
    -ms-flex-direction: column;
        flex-direction: column;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.section .container-fluid .boxArea .box {
  position: relative;
  margin: 0px 10px;
  padding: 20px 30px;
  width: 50%;
  border-radius: 0 64px 0 0;
  overflow: hidden;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.section .container-fluid .boxArea .box .background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-filter: grayscale(1);
}

.section .container-fluid .boxArea .box .content {
  position: relative;
  color: #fff;
  text-align: center;
  margin: auto;
  z-index: 20;
}

.section .container-fluid .boxArea .box .content h3 {
  font-weight: bold;
  font-size: 28px;
}

.section .container-fluid .boxArea .box .content h2 {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  margin-top: 0;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #fff;
}

.section .container-fluid .boxArea .box .content h4 {
  font-size: 20px;
}

.section .container-fluid .boxArea .box:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(111, 44, 145, 0.8);
  z-index: 10;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

.section .container-fluid .boxArea .box:hover:before {
  background-color: rgba(111, 44, 145, 0.9);
}

.section .container-fluid .boxArea .box:hover .btnArea a {
  background-color: #d5750b;
}

@media only screen and (max-width: 767px) {
  .section .container-fluid .boxArea .box {
    margin-bottom: 40px;
    width: 100%;
  }
}

.section .container-fluid .owl-carousel {
  position: relative;
}

.section .container-fluid .owl-carousel .item .slide .schedule h3 {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.section .container-fluid .owl-carousel .item .slide .schedule h3 .brLine {
  margin-left: 0.5em;
}

.section .container-fluid .owl-carousel .item .slide .schedule .thead {
  background-color: #6F2C91;
  color: #fff;
  letter-spacing: 1px;
}

.section .container-fluid .owl-carousel .item .slide .schedule .thead th {
  padding: 15px 5px;
  font-size: 16px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .section .container-fluid .owl-carousel .item .slide .schedule .thead {
    display: none;
  }
}

.section .container-fluid .owl-carousel .item .slide .schedule .tbody tr td {
  padding: 15px 5px;
  vertical-align: middle;
  text-align: center;
  color: #000;
  font-size: 16px;
  border-top: 1px solid #666666;
}

.section .container-fluid .owl-carousel .item .slide .schedule .tbody tr:hover td.title {
  color: #6F2C91;
}

@media only screen and (max-width: 767px) {
  .section .container-fluid .owl-carousel .item .slide .schedule .tbody h3 .brLine {
    margin-left: 0;
    display: block;
  }
  .section .container-fluid .owl-carousel .item .slide .schedule .tbody tr {
    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;
    text-align: center;
    border-bottom: 1px solid #666666;
    padding: 15px 5px;
  }
  .section .container-fluid .owl-carousel .item .slide .schedule .tbody tr td {
    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;
    border-top: none;
    padding: 0;
  }
  .section .container-fluid .owl-carousel .item .slide .schedule .tbody tr td.title {
    color: #6F2C91;
    font-weight: bold;
    margin: 10px 0;
  }
}

@media only screen and (max-width: 767px) {
  .section .container-fluid .owl-carousel .item .slide .schedule {
    overflow-x: scroll;
  }
}

.section .container-fluid .owl-carousel .owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  width: 100%;
}

.section .container-fluid .owl-carousel .owl-nav .owl-prev, .section .container-fluid .owl-carousel .owl-nav .owl-next {
  position: absolute;
  border: 1px solid #6F2C91;
  color: #6F2C91;
  font-size: 36px;
  line-height: 30px;
  width: 40px;
  height: 40px;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
}

.section .container-fluid .owl-carousel .owl-nav .owl-prev:hover, .section .container-fluid .owl-carousel .owl-nav .owl-next:hover {
  background-color: #6F2C91;
  color: #fff;
}

.section .container-fluid .owl-carousel .owl-nav .owl-prev {
  left: 0;
  transform: translate(-200%, 0%);
  -webkit-transform: translate(-200%, 0%);
  -moz-transform: translate(-200%, 0%);
  -ms-transform: translate(-200%, 0%);
}

.section .container-fluid .owl-carousel .owl-nav .owl-next {
  right: 0;
  transform: translate(200%, 0%);
  -webkit-transform: translate(200%, 0%);
  -moz-transform: translate(200%, 0%);
  -ms-transform: translate(200%, 0%);
}

@media only screen and (max-width: 767px) {
  .section .container-fluid .owl-carousel .owl-nav {
    display: none;
    width: auto;
    position: fixed;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    left: auto;
    top: auto;
    right: 0;
    bottom: 30px;
  }
  .section .container-fluid .owl-carousel .owl-nav .owl-prev, .section .container-fluid .owl-carousel .owl-nav .owl-next {
    position: relative;
    color: #fff;
    width: 50px;
    height: 50px;
    background-color: rgba(111, 44, 145, 0.7);
  }
  .section .container-fluid .owl-carousel .owl-nav .owl-prev:hover, .section .container-fluid .owl-carousel .owl-nav .owl-next:hover {
    background-color: #6F2C91;
  }
  .section .container-fluid .owl-carousel .owl-nav .owl-prev {
    left: 0;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
  }
  .section .container-fluid .owl-carousel .owl-nav .owl-next {
    right: 0;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
  }
}

.section .container-fluid .owl-carousel .owl-dots {
  display: none;
}

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

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

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

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

.registration .container-fluid h3 {
  font-size: 28px;
  color: #666666;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

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

.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;
  background-color: transparent;
  color: #666666;
}

.registration .container-fluid .regisPad .form-group .form-control.order {
  width: 30px;
  padding: 5px;
  text-align: center;
}

.registration .container-fluid .regisPad .form-group .form-control:focus {
  border-color: #6F2C91;
  -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 #6F2C91;
  background-color: #6F2C91;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.registration .container-fluid .regisPad .form-group .satisfy {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .registration .container-fluid .regisPad .form-group .satisfy {
    margin-top: 10px;
  }
}

.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: #6F2C91;
  outline: none;
  border: none;
  color: #fff;
  border-radius: 5px;
}

@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: #7e32a5;
}

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

.registration .container-fluid .regisPad .conclude p {
  color: #D9D9D9;
}

.registration .container-fluid .regisPad .explain {
  margin-top: 70px;
}

.registration .container-fluid .regisPad .explain ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.registration .container-fluid .regisPad .explain ul li {
  color: #777;
  margin-bottom: 5px;
}

.registration .container-fluid .regisPad ul {
  padding-left: 0;
  margin: auto;
  width: 365px;
}

.registration .container-fluid .regisPad ul li {
  color: #666666;
  font-weight: bold;
}

.registration .container-fluid .regisPad ul li a {
  color: #6F2C91;
}

@media only screen and (max-width: 499px) {
  .registration .container-fluid .regisPad ul {
    width: 100%;
  }
  .registration .container-fluid .regisPad ul li br {
    display: none;
  }
}

.registration .container-fluid .check {
  margin: auto;
  text-align: center;
}

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

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

@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 {
  padding: 50px 0;
}

.sponsor {
  padding: 50px 0;
  background-color: #666666;
}

.sponsor h3 {
  font-size: 28px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.sponsor p {
  color: #fff;
}

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

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

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

.sponsor .container-fluid img {
  margin-top: 20px;
}

.sponsor .container-fluid img.spdxc {
  margin-bottom: 23px;
}

.sponsor .container-fluid img.spmf {
  margin-bottom: 20px;
}

.footer {
  background-color: #D9D9D9;
}

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

.footer .container-fluid .copyright small {
  color: #666666;
}
/*# sourceMappingURL=style.css.map */