@charset "UTF-8";
/* 用法範例
    @include maxWidth-xxl {
        margin: 20px;
    }
*/
body {
  padding: 0px;
  margin: 0px;
  font-family: Arial, "Noto Serif SC", "Noto Sans TC", sans-serif;
  color: #3a3a3a;
  font-size: 20px;
  line-height: 1.5;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%; /*強制瀏覽器不要縮放文字*/
  overflow-x: hidden;
}
@media screen and (max-width: 991px) {
  body {
    font-size: 14px;
    /* font-size: 16px; */
  }
}

/*控制文字選取時的顏色*/
::-moz-selection {
  background: #ffc000;
  color: #000;
}
::selection {
  background: #ffc000;
  color: #000;
}

a {
  text-decoration: none;
}

img {
  outline: none;
  border: none;
}

p {
  margin: 0px 0px 50px 0px;
  /* margin: 15px 0px; */
}

ul,
ol {
  margin: 15px 0px;
  padding-left: 20px;
}
ul li,
ol li {
  padding-bottom: 3px;
}
ul li:last-of-type,
ol li:last-of-type {
  padding-bottom: 0px;
}
ul li ul,
ul li ol,
ol li ul,
ol li ol {
  margin: 3px 0px 0px;
}

.checkbox {
  vertical-align: middle;
  display: inline-block;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox]:checked + span {
  background: #fae103;
  border-color: #fae103;
}
.checkbox input[type=checkbox]:checked + span i {
  color: #000;
}
.checkbox span {
  display: block;
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 2px #818181;
  background: #fff;
  border-radius: 3px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  position: relative;
}
.checkbox span i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  color: #fff;
  font-size: 15px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.radio {
  vertical-align: middle;
  display: inline-block;
}
.radio input[type=radio] {
  display: none;
}
.radio input[type=radio]:checked + .radio-fake {
  background: #fae103;
  border-color: #fae103;
}
.radio input[type=radio]:checked + .radio-fake i {
  color: #000;
}
.radio-fake {
  display: block;
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 2px #a4a4a4;
  background: #fff;
  border-radius: 100%;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  position: relative;
}
.radio-fake i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  color: #fff;
  font-size: 13px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.radio-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 17px;
  padding-left: 8px;
}

label {
  cursor: pointer;
}

button {
  border: none;
  color: #fff;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  border-radius: 5px;
  cursor: pointer;
}
button i {
  margin-left: 5px;
}

input,
button {
  outline: none;
  font-family: Arial, "Microsoft JhengHei", "Helvetica Neue", Helvetica, sans-serif;
}

input,
button,
select {
  outline: none;
  font-family: Arial, "Microsoft JhengHei", "Helvetica Neue", Helvetica, sans-serif;
}

.inputStyle, input[type=text], input[type=password], input[type=tel], input[type=search], input[type=number], input[type=email] {
  border-radius: 10px;
  border: solid 1px #c7c7c7;
  background: #fff;
  font-size: 17px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 10px;
  width: 100%;
}

select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 24px 0 10px;
  font-size: 17px;
  line-height: 50px;
  height: 54px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: #fff url(../images/icon-dropdown.png) right center no-repeat;
  background-size: 18px;
  border-radius: 10px;
  border: solid 2px #818181;
}
select::-ms-expand {
  display: none;
}

.container {
  margin: 0 auto;
  padding: 0px;
  width: 1000px;
}
@media screen and (max-width: 1199px) {
  .container {
    margin: 0px 65px;
    width: auto;
  }
}
@media screen and (max-width: 991px) {
  .container {
    margin: 0px 25px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    margin: 0px 10px;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.hide {
  display: none !important;
}

.mobileShow {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .pcShow {
    display: none !important;
  }
  .mobileShow {
    display: initial !important;
  }
}
.fontAwesomeIcon, .slick-arrow {
  display: inline-block;
  font: normal normal normal 14px/1 "Font Awesome 5 Free";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 900;
}

.animated {
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.dividingLine {
  margin: 40px 0px;
  border-bottom: dashed 1px #bbb;
  clear: both;
}

.youtube {
  width: 100%;
  max-width: 600px;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}
.youtube img {
  width: 100%;
  position: relative;
  display: block;
}
.youtube-content {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .youtube {
    max-width: 600px;
  }
}

.slick-slider {
  padding-bottom: 25px;
}
.slick-slide {
  outline: none;
}
.slick-slide a {
  outline: none;
}
.slick-slide img {
  max-width: 100%;
}
.slick-dots {
  list-style: none;
  font-size: 0px;
  text-align: center;
  margin: 0px;
  padding-left: 0px;
  width: 100%;
  position: absolute;
  bottom: 0px;
}
.slick-dots li {
  padding: 0px 7px;
  display: inline-block;
  vertical-align: top;
}
.slick-dots li button {
  font-size: 0px;
  padding: 0px;
  border-radius: 50px;
  width: 13px;
  height: 13px;
  background: #a5a5a5;
}
.slick-dots li.slick-active button {
  background: #005598;
  width: 25px;
}
.slick-arrow {
  font-size: 0px;
  position: absolute;
  top: -3px;
  padding: 0px;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  text-align: center;
  color: #505050;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  z-index: 1;
  background: none;
}
.slick-arrow:before {
  font-size: 36px;
  line-height: 1;
}
.slick-arrow:hover {
  color: #007eff;
}
.slick-prev {
  left: -35px;
}
.slick-prev:before {
  content: "\f104";
}
.slick-next {
  right: -35px;
}
.slick-next:before {
  content: "\f105";
}
@media screen and (max-width: 767px) {
  .slick-arrow {
    top: -48px;
  }
  .slick-arrow:before {
    font-size: 26px;
  }
  .slick-prev {
    left: -20px;
  }
  .slick-next {
    right: -20px;
  }
}

#content {
  overflow-x: hidden;
  overflow: hidden;
  -webkit-transition: 1s ease-in-out opacity;
  transition: 1s ease-in-out opacity;
  -webkit-animation: contentAinmt ease-in-out 0.2s;
          animation: contentAinmt ease-in-out 0.2s;
}

[v-cloak] {
  opacity: 0;
}

@-webkit-keyframes contentAinmt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
}

@keyframes contentAinmt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
}
body.fixedBody {
  overflow-y: hidden;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .yourClassName {
    /*css*/
  }
}
@media screen and (min-width: 992px) {
  ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  ::-webkit-scrollbar-track {
    background-color: #004790;
    background-color: #f5f5f5;
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #539011;
    background-color: #bfbdba;
    border-radius: 20px;
  }
  ::-webkit-scrollbar-button {
    background-color: #bfbdba;
    border-radius: 20px;
  }
  ::-webkit-scrollbar-corner {
    background-color: #bfbdba;
  }
}
.header-background {
  background-color: #fafafa;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
}

.header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.logo-img {
  display: block;
  width: 112px;
}

.header-title {
  font-size: 14px;
  font-weight: 700;
  color: #005598;
  margin: 0 0 0 8px;
}

@media (min-width: 768px) {
  .header-container {
    height: 56px;
  }
  .logo-img {
    width: 144px;
  }
  .header-title {
    font-size: 18px;
  }
}
@-webkit-keyframes mobileNav {
  0% {
    opacity: 0;
    right: -100%;
  }
}
@keyframes mobileNav {
  0% {
    opacity: 0;
    right: -100%;
  }
}
.menuBtn {
  display: none;
  position: fixed;
  width: 23px;
  top: 12px;
  right: 15px;
  cursor: pointer;
  display: none;
  z-index: 5;
  background: #114790;
  padding: 7px 12px;
  border-radius: 4px;
}
.menuBtn span {
  display: block;
  background: #fff;
  height: 2px;
  margin: 4px 0px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  border-radius: 3px;
}
.menuBtn span:nth-of-type(1), .menuBtn span:nth-of-type(2) {
  position: absolute;
  width: 23px;
  top: 13px;
}
.menuBtn.active span {
  opacity: 0;
}
.menuBtn.active span:nth-of-type(1), .menuBtn.active span:nth-of-type(2) {
  opacity: 1;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.menuBtn.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menuBtn.active span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 991px) {
  .menuBtn {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .menuBtn {
    right: 10px;
    top: 7px;
  }
}
@media screen and (max-width: 359px) {
  .menuBtn {
    right: 5px;
  }
}

.footer {
  position: relative;
  color: #313e54;
  background: #f2f2f2;
  padding: 40px 0px 0;
  --background-rainbow: linear-gradient(
      90deg,
      #df1c4b 0%,
      #f41f5e 15%,
      #f96585 25%,
      #f8613c 40%,
      #b495cd 50%,
      #ceabf9 60%,
      #797df2 75%,
      #489cf6 85%,
      #6f59ed 100%
  );
}

.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 16px;
  top: 0;
  background: var(--background-rainbow);
}

.footer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-company-name {
  font-size: 22px;
  margin: 16px 0;
}

.footer-company-desc {
  font-size: 14px;
}

.footer-head-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-weight: 700;
}

.footer-head-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.footer-head-phone-number {
  font-size: 36px;
  color: #021d3a;
  text-decoration: none;
}

.footer-social-media {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.footer-social-media-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  background: #021d3a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
}

.footer-warning {
  position: relative;
  padding: 24px 0 0;
}

.footer-warning::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: -2px;
  background: var(--background-rainbow);
}

.footer-warning ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  font-size: 15px;
}

.footer-warning ul li {
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-copyright-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 12px;
  border: solid 1px #50ffcf;
  margin: auto;
  padding: 4px 32px;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(75, 153, 255, 0.4)), to(rgba(214, 125, 255, 0.5)));
  background: linear-gradient(90deg, rgba(75, 153, 255, 0.4) 0%, rgba(214, 125, 255, 0.5) 100%);
  line-height: 1.2rem;
}

.footer-bottom-contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #fff;
  background-color: #021d3a;
  padding: 16px 0;
  margin: 40px 0 0;
}

.footer-bottom-contact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: -4px;
  background: var(--background-rainbow);
}

@media screen and (min-width: 768px) {
  .footer-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .footer-social-media {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (min-width: 1024px) {
  .footer-head {
    text-align: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-head-contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .footer-head-phone {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.topBtn {
  position: fixed;
  z-index: 1;
  bottom: 35px;
  right: 15px;
  -webkit-transition: 0.5s ease transform, 0.3s ease opacity;
  transition: 0.5s ease transform, 0.3s ease opacity;
  opacity: 0;
}
.topBtn a {
  display: block;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
  color: #fff;
  font-size: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  position: relative;
  top: 0px;
  padding-top: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 0px 2px #fff;
          box-shadow: 0px 0px 0px 2px #fff;
}
.topBtn a span {
  position: relative;
}
.topBtn a i {
  display: block;
  margin: 0 auto;
}
.topBtn a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1199px) {
  .topBtn {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .topBtn {
    bottom: 70px;
  }
  .topBtn a {
    width: 40px;
    height: 40px;
    font-size: 0px;
  }
  .topBtn a i {
    font-size: 20px;
  }
}

.item {
  padding: 30px 20px;
  position: relative;
}
.item .container {
  position: relative;
}
.item.lightBlueBg {
  background: #eaf3ff;
}
.item.blue {
  color: #fff;
  background: #005598;
}
.item.blue .tit-type1 {
  color: #fff;
}
.item.blue .tit-type1-content {
  background: none;
  border-color: #fcd2cc;
}
.item.blue .linkText {
  color: #fcd2cc;
}
.item.lozenge {
  background: #e8e8e8 url(https://event.franklin.com.tw/commonResources/images/bgTattoo.jpg) top left repeat;
}
.item.pinkBg {
  background: #f7efec;
}
.item.pinkBg2 {
  background: #ffe4e3;
}
.item2 {
  padding: 50px 0;
}
.item2 .container {
  position: relative;
}
.item.redBg {
  color: #fff;
  background: #cb4f4f;
}
.item.redBg .tit-type1 {
  color: #fff;
}
.item.creamBg {
  background: #efdcbb url(../images/bgTattoo2.png) bottom center no-repeat;
}
.item.creamBg .tit-type1.type2 .tit-type1-dot:before {
  background: #efdcbb;
}
.item.latticeBg {
  background: #fff url(../images/bgTattoo1.png) top left;
}
@media screen and (max-width: 767px) {
  .item {
    padding: 40px 0px;
  }
  .item.gift {
    padding-bottom: 40px;
  }
  .item2 {
    padding: 20px 0;
  }
  .item.latticeBg {
    background-size: 40px;
  }
}

.tit-type1 {
  margin: 25px 0;
  padding: 0em 0.3em;
  font-size: 38px;
  line-height: 1.2;
  color: #3769ff;
  font-weight: 700;
  text-align: center;
}
.tit-type1 .sTit {
  font-size: 30px;
  line-height: 1.6;
  color: #000;
  font-weight: normal;
}
.tit-type1-content {
  display: inline-block;
  position: relative;
}
.tit-type1 .hasTag {
  position: relative;
  margin-top: 42px;
  display: inline-block;
}
.tit-type1 .hasTag .tag {
  position: absolute;
  top: -42px;
  left: 0;
  color: #fff;
  background: #005598;
  border-radius: 5px;
  font-size: 21px;
  font-weight: bold;
  padding: 3px 11px;
}
.tit-type1 .hasTag .tag:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 13px;
  border-top: solid 5px #005598;
  border-left: solid 6px transparent;
  border-right: solid 6px transparent;
}
.tit-type1-dot {
  position: absolute;
  font-size: 100px;
  line-height: 1;
  top: -35px;
  left: -90px;
}
.tit-type1.type2 {
  line-height: 1.5;
}
.tit-type1.type2 .tit-type1-content {
  border: solid 4px #012b59;
  padding: 0 20px;
}
.tit-type1.type2 .tit-type1-dot {
  font-size: 50px;
  top: -16px;
  left: -12px;
}
.tit-type1.type2 .tit-type1-dot:before {
  background: #fff;
  content: "";
  position: absolute;
  top: 9px;
  left: 20px;
  height: 10px;
  width: 31px;
}
.tit-type1.type2 .tit-type1-dot span {
  position: relative;
}
.tit-type1.type3 .sTit {
  font-weight: 700;
}
.tit-type1.type3 .tit-type1-content {
  border: solid 1px;
  border-left: none;
  border-right: none;
  padding: 10px 0;
}
.tit-type1.type3 .tit-type1-dot {
  font-size: 50px;
  position: absolute;
  top: 0;
  left: 0;
  top: -14px;
  left: -12px;
}
.tit-type1.type3 .tit-type1-dot:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 18px;
  background: #efdcbb;
  width: 40px;
  height: 10px;
}
.tit-type1.type3 .tit-type1-dot span {
  position: relative;
}
.tit-type2 {
  margin: 10px 0px;
  text-align: center;
  font-size: 36px;
  line-height: 1.3;
  position: relative;
  font-weight: 700;
  color: #3769ff;
}
.tit-type2-tag {
  display: inline-block;
  color: #fff;
  background: #005598;
  padding: 3px 10px;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 24px;
  border-radius: 15px 0px;
}
.tit-type2 .content {
  display: inline-block;
  border-radius: 15px;
  background: #7e5847;
  color: #fff;
  padding: 5px 15px;
}
.tit-type3 {
  margin: 15px 0px;
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
}
.tit-type3 div {
  display: inline-block;
  border-radius: 100px;
  color: #fff;
  background: #006bb4;
  padding: 12px 40px;
}
.tit-type4 {
  font-size: 24px;
  line-height: 1.5;
  margin: 15px 0;
  font-weight: 500;
  color: #000;
}
@media screen and (max-width: 767px) {
  .tit-type1 {
    font-size: 24px;
  }
  .tit-type1 .sTit {
    font-size: 17px;
  }
  .tit-type1 .hasTag {
    margin-top: 36px;
  }
  .tit-type1 .hasTag .tag {
    top: -35px;
    font-size: 18px;
  }
  .tit-type1-content {
    padding: 5px 10px;
  }
  .tit-type1-dot {
    font-size: 50px;
    left: -33px;
    top: -13px;
  }
  .tit-type1.type2 .tit-type1-content {
    padding: 0 15px;
  }
  .tit-type1.type2 .tit-type1-dot {
    font-size: 30px;
    top: -10px;
    left: -7px;
  }
  .tit-type1.type2 .tit-type1-dot:before {
    top: 4px;
    left: 12px;
    width: 20px;
  }
  .tit-type1.type3 .sTit {
    font-size: 12px;
  }
  .tit-type1.type3 .tit-type1-dot {
    font-size: 30px;
    top: -6px;
    left: -7px;
  }
  .tit-type1.type3 .tit-type1-dot:before {
    top: 4px;
    left: 12px;
    width: 20px;
  }
  .tit-type2 {
    font-size: 36px;
  }
  .tit-type2-tag {
    font-size: 20px;
  }
  .tit-type3 {
    font-size: 36px;
  }
  .tit-type4 {
    font-size: 22px;
  }
}

.text {
  margin-bottom: 15px;
  font-size: 18px;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-red {
  color: #c73938 !important;
}
.text-blue {
  color: #005598 !important;
}
.text-blue2 {
  color: #01a3e7 !important;
}
.text-blue3 {
  color: #8794b8 !important;
}
.text-green {
  color: #9aa58c !important;
}
.text-black {
  color: #000 !important;
}
.text-yellow {
  color: #fff200 !important;
}
.text-orange {
  color: #da9225 !important;
}
.text-coffee {
  color: #65400a !important;
}
.text-coffee2 {
  color: #b88945 !important;
}
@media screen and (max-width: 991px) {
  .text {
    font-size: 16px;
  }
}

.remark {
  font-size: 14px;
}

.focus {
  border-bottom: solid 1px;
}

.linkText {
  color: #005598;
  border-bottom: solid 1px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  border-bottom-color: #005598;
}
.linkText strong {
  color: #333;
  font-weight: 700;
}
.linkText:hover {
  border-bottom-color: transparent;
}

code {
  background: #f2f2f2;
  padding: 0 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: monospace, "Noto Sans TC";
}

.btn {
  display: inline-block;
  vertical-align: top;
  padding: 8px 0px;
}
.btnArea {
  text-align: center;
  font-size: 0px;
  margin: 10px 0px;
}
.btnArea.twoBtn .btn, .btnArea.threeBtn .btn {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 50%;
}
.btnArea.threeBtn .btn {
  max-width: 33.3333333333%;
}
.btn a,
.btn button {
  font-size: 20px;
  display: block;
  color: #fff;
  line-height: 50px;
  border-radius: 30px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 42px;
  background: #005598;
  overflow: hidden;
  position: relative;
}
.btn a:before,
.btn button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.1);
  width: 0px;
  height: 0px;
  -webkit-transition: 0.6s ease-in-out all;
  transition: 0.6s ease-in-out all;
}
.btn a:hover,
.btn button:hover {
  -webkit-box-shadow: 0px 15px 10px -5px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 15px 10px -5px rgba(0, 0, 0, 0.3);
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.7);
}
.btn a:hover:before,
.btn button:hover:before {
  width: 800px;
  height: 800px;
}
.btn.twoLines a,
.btn.twoLines button {
  line-height: 1.2;
  padding-top: 16px;
  padding-bottom: 16px;
}
.btn.type2 a,
.btn.type2 button {
  background: #519e2f;
}
.btn.type3 a,
.btn.type3 button {
  background: #00a3e0;
}
.btn.red a,
.btn.red button {
  background: #ff0000;
  text-shadow: none !important;
}
.btn.yellow a,
.btn.yellow button {
  background: #ffff02;
  color: #000;
  text-shadow: none !important;
}
.btn.disable a,
.btn.disable button {
  background: #fff;
  color: rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.21);
          box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.21);
  cursor: auto;
}
.btn.disable a:hover,
.btn.disable button:hover {
  -webkit-box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.21);
          box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.21);
}
.btn.fixedWidth {
  width: 250px;
}
.btn-remark {
  font-size: 16px;
  text-align: center;
  padding-top: 10px;
}
.btn.white a,
.btn.white button {
  background: none;
  color: #fff;
  border: solid 1px;
}
.btn.white2 a,
.btn.white2 button {
  background: #fff;
  text-shadow: none !important;
  color: #000;
}
.btn.purple a,
.btn.purple button {
  background: #560083;
}
.btn.brown a,
.btn.brown button {
  background: #945c24;
}
.btn.borderType a,
.btn.borderType button {
  color: #005598;
  border: solid 2px;
  background: none;
}
.btn.borderType a:hover,
.btn.borderType button:hover {
  text-shadow: none;
}
.btn.borderType.whiteStyle a,
.btn.borderType.whiteStyle button {
  color: #fff;
}
.btn.borderType.redStyle a,
.btn.borderType.redStyle button {
  color: #d10031;
}
.btn.textBtn a,
.btn.textBtn button {
  color: #005598;
  background: none;
}
.btn.textBtn a:before,
.btn.textBtn button:before {
  background: rgba(0, 0, 0, 0.05);
}
.btn.textBtn a:hover,
.btn.textBtn button:hover {
  text-shadow: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn.textBtn.whiteStyle a,
.btn.textBtn.whiteStyle button {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
  }
  .btnArea.twoBtn .btn, .btnArea.threeBtn .btn {
    max-width: none;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 0px;
    padding-right: 0px;
  }
  .btn a,
  .btn button {
    font-size: 17px;
    line-height: 45px;
    width: 100%;
    padding: 0px 20px;
  }
  .btn-remark {
    padding: 5px 0px 10px;
  }
}

.normal a,
.normal button {
  font-size: 24px;
  line-height: 55px;
  padding: 0px 25px;
  border-radius: 18px;
}
@media screen and (max-width: 767px) {
  .normal a,
  .normal button {
    font-size: 17px;
    line-height: 45px;
    padding: 0px 10px;
  }
}

.sBtn a,
.sBtn button {
  font-size: 18px;
  line-height: 38px;
  padding: 0px 25px;
}
@media screen and (max-width: 767px) {
  .sBtn a,
  .sBtn button {
    font-size: 16px;
    line-height: 30px;
    padding: 0px 12px;
  }
}

.modal {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 50;
}
.modal-bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 700px;
  box-sizing: border-box;
}
.modal-container .closeBtn {
  z-index: 2;
}
.modal-container-infoArea {
  background: white;
  border-radius: 8px;
  padding: 15px 30px;
  -webkit-box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.54);
          box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.54);
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 80vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal-container-text {
  font-size: 17px;
  line-height: 30px;
  padding-top: 20px;
  margin-bottom: 20px;
}
.modal-container-text .focusText {
  color: #ab3533;
  font-size: 20px;
}
.modal-container-btnArea {
  margin-top: 30px;
  text-align: center;
  font-size: 0px;
}
.modal-container-btn {
  display: inline-block;
  padding: 0px 24px;
}
.modal-container.fixedHeight {
  top: 10vh;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.modal-container.fixedHeight > div {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 80vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal-youtube {
  position: relative;
  margin: 0 auto;
  padding-bottom: 56.25%;
}
.modal-youtube iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.modal.show {
  display: block;
}
.modal-enter-active, .modal-leave-active {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.modal-enter, .modal-leave-to {
  opacity: 0;
}
.modal.md .modal-container {
  max-width: 450px;
}
@media screen and (max-width: 991px) {
  .modal-container {
    width: 90%;
  }
  .modal-container-infoArea {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 30px 15px;
  }
  .modal-container .tit:before, .modal-container .tit:after {
    display: none;
  }
  .modal-container .tit > strong {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .modal-container-infoArea {
    border-width: 4px;
  }
  .modal-container-btn {
    margin-bottom: 15px;
  }
}

.openModal {
  cursor: pointer;
}

.closeBtn {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 25px;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 100%;
  color: #fff;
  background: #005598;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(0, 85, 152, 0.3);
          box-shadow: 0px 0px 0px 4px rgba(0, 85, 152, 0.3);
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.closeBtn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 0%;
  height: 0%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  border-radius: 100%;
}
.closeBtn i {
  position: relative;
}
.closeBtn:hover:before {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .closeBtn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
}

.fixedRightBtn {
  margin-bottom: 6px;
}
.fixedRightBtn-area {
  position: fixed;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.fixedRightBtn a {
  display: block;
  text-align: center;
  width: 43px;
  color: #ffffff;
  background: #004790;
  padding: 10px 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  line-height: 20px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  position: relative;
  left: 0px;
  border-radius: 10px 0px 0px 10px;
}
.fixedRightBtn a:hover {
  background: #00a3e0;
}
.fixedRightBtn a i {
  font-size: 13px;
}
.fixedRightBtn.type2 a {
  background: #519e2f;
}
.fixedRightBtn.type2 a:hover {
  background: #00a3e0;
}
.fixedRightBtn.type3 a {
  background: #007eff;
}
.fixedRightBtn.type3 a:hover {
  background: #00a3e0;
}
@media screen and (max-width: 991px) {
  .fixedRightBtn a {
    width: 36px;
    padding: 15px 6px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .fixedRightBtn {
    display: block;
    width: auto;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 0px;
  }
  .fixedRightBtn-area {
    top: auto;
    bottom: 15px;
    width: 100%;
    padding: 0px 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 0px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .fixedRightBtn-area.twoBtn .fixedRightBtn {
    display: inline-block;
    width: 50%;
  }
  .fixedRightBtn-area.twoBtn .fixedRightBtn:nth-of-type(1) a {
    border-radius: 50px 0px 0px 50px;
  }
  .fixedRightBtn a {
    width: auto;
    padding: 11px 0px;
    border-radius: 50px;
    font-size: 16px;
    line-height: 1;
    border: solid 4px #fff;
  }
  .fixedRightBtn:nth-of-type(2) a {
    border-radius: 0px 50px 50px 0px;
    border-left: none;
  }
}

.mobileHeader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 0px;
  display: none;
}
.mobileHeader-logo {
  width: 130px;
  float: left;
}
.mobileHeader-logo img {
  width: 100%;
}
.mobileHeader-shareLink {
  display: inline-block;
  vertical-align: middle;
}
.mobileHeader-shareLink-area {
  float: right;
  font-size: 0px;
  text-align: right;
  padding-top: 2px;
}
.mobileHeader-shareLink a {
  font-size: 22px;
  color: #333;
  padding: 0px 8px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .mobileHeader {
    display: block;
  }
}

.chart {
  margin: 15px 0px;
  text-align: center;
  width: 100%;
}
.chart-area {
  font-size: 0px;
  text-align: center;
  margin: 15px -30px;
}
.chart-area .chart {
  display: inline-block;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
  padding: 0px 30px;
  margin: 0px;
}
.chart-area.threeChart .chart {
  width: 33.3333333333%;
}
.chart-tit {
  font-size: 22px;
  margin: 10px 0px;
  text-align: center;
}
.chart-tit b {
  font-weight: 900;
}
.chart-tit.type2 {
  font-size: 24px;
}
.chart-tit.type2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: #005598;
  width: 8px;
  height: 26px;
  border-radius: 4px;
  position: relative;
  top: -3px;
}
.chart-tit-bg {
  display: inline-block;
  padding: 4px 18px;
  border: solid 2px #ccc;
}
.chart-tit-bg .focusText {
  color: #da9225;
}
.chart-img {
  max-width: 100%;
  display: block;
  margin: 15px auto;
}
.chart-img.type2 {
  width: 100%;
}
.chart-table {
  margin: 15px 0px;
  overflow-x: auto;
}
.chart-table table {
  width: 100%;
  border-spacing: 1px;
  font-size: 17px;
  background: #ccc;
}
.chart-table table thead tr {
  background: #d9e2f3;
}
.chart-table table thead tr td {
  font-weight: bold;
}
.chart-table table tr {
  background: #fff;
}
.chart-table table tr td {
  text-align: center;
  color: #353535;
  padding: 5px 5px;
}
.chart-table table tr td[align=left] {
  text-align: left;
}
.chart-table table tr td[align=right] {
  text-align: right;
}
.chart-table table tr:nth-of-type(2n + 0) {
  background: #fff;
}
.chart-table table tr.focusTr {
  background: #fff8e8;
}
.chart-remark {
  font-size: 14px;
  margin: 10px 0px;
  color: #666;
}
.chart-remark b,
.chart-remark strong {
  color: #333;
}
.chart-chartAndText {
  font-size: 0px;
}
.chart-chartAndText .chart,
.chart-chartAndText .chartText {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 50%;
}
.chart-chartAndText .chart-img {
  margin-top: 0px;
}
.chart-chartAndText .chartText {
  padding-left: 12px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .chart-area {
    margin: 15px 0px;
  }
  .chart-area .chart {
    display: block;
    padding: 0px;
    width: auto;
    margin: 15px 0px;
  }
  .chart-area .chart + .chart {
    margin-top: 25px;
  }
  .chart-area.threeChart .chart {
    width: auto;
  }
  .chart-tit {
    font-size: 17px;
  }
  .chart-tit.type2 {
    font-size: 17px;
  }
  .chart-tit.type2:before {
    width: 6px;
    height: 17px;
    top: -1px;
  }
  .chart-table table {
    font-size: 14px;
  }
  .chart-remark {
    font-size: 12px;
  }
  .chart-chartAndText .chart,
  .chart-chartAndText .chartText {
    display: block;
    width: auto;
  }
  .chart-chartAndText .chartText {
    padding-left: 0px;
    font-size: 16px;
  }
}

.row {
  margin: 5px -12px;
  font-size: 0px;
  text-align: center;
}

[class*=col-] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  [class*=col-] {
    font-size: 16px;
  }
}

.col-1 {
  width: 4.1666666667%;
}
.col-2 {
  width: 8.3333333333%;
}
.col-3 {
  width: 12.5%;
}
.col-4 {
  width: 16.6666666667%;
}
.col-5 {
  width: 20.8333333333%;
}
.col-6 {
  width: 25%;
}
.col-7 {
  width: 29.1666666667%;
}
.col-8 {
  width: 33.3333333333%;
}
.col-9 {
  width: 37.5%;
}
.col-10 {
  width: 41.6666666667%;
}
.col-11 {
  width: 45.8333333333%;
}
.col-12 {
  width: 50%;
}
.col-13 {
  width: 54.1666666667%;
}
.col-14 {
  width: 58.3333333333%;
}
.col-15 {
  width: 62.5%;
}
.col-16 {
  width: 66.6666666667%;
}
.col-17 {
  width: 70.8333333333%;
}
.col-18 {
  width: 75%;
}
.col-19 {
  width: 79.1666666667%;
}
.col-20 {
  width: 83.3333333333%;
}
.col-21 {
  width: 87.5%;
}
.col-22 {
  width: 91.6666666667%;
}
.col-23 {
  width: 95.8333333333%;
}
.col-24 {
  width: 100%;
}
@media screen and (max-width: 1399px) {
  .col-xl-1 {
    width: 4.1666666667%;
  }
  .col-xl-2 {
    width: 8.3333333333%;
  }
  .col-xl-3 {
    width: 12.5%;
  }
  .col-xl-4 {
    width: 16.6666666667%;
  }
  .col-xl-5 {
    width: 20.8333333333%;
  }
  .col-xl-6 {
    width: 25%;
  }
  .col-xl-7 {
    width: 29.1666666667%;
  }
  .col-xl-8 {
    width: 33.3333333333%;
  }
  .col-xl-9 {
    width: 37.5%;
  }
  .col-xl-10 {
    width: 41.6666666667%;
  }
  .col-xl-11 {
    width: 45.8333333333%;
  }
  .col-xl-12 {
    width: 50%;
  }
  .col-xl-13 {
    width: 54.1666666667%;
  }
  .col-xl-14 {
    width: 58.3333333333%;
  }
  .col-xl-15 {
    width: 62.5%;
  }
  .col-xl-16 {
    width: 66.6666666667%;
  }
  .col-xl-17 {
    width: 70.8333333333%;
  }
  .col-xl-18 {
    width: 75%;
  }
  .col-xl-19 {
    width: 79.1666666667%;
  }
  .col-xl-20 {
    width: 83.3333333333%;
  }
  .col-xl-21 {
    width: 87.5%;
  }
  .col-xl-22 {
    width: 91.6666666667%;
  }
  .col-xl-23 {
    width: 95.8333333333%;
  }
  .col-xl-24 {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .col-lg-1 {
    width: 4.1666666667%;
  }
  .col-lg-2 {
    width: 8.3333333333%;
  }
  .col-lg-3 {
    width: 12.5%;
  }
  .col-lg-4 {
    width: 16.6666666667%;
  }
  .col-lg-5 {
    width: 20.8333333333%;
  }
  .col-lg-6 {
    width: 25%;
  }
  .col-lg-7 {
    width: 29.1666666667%;
  }
  .col-lg-8 {
    width: 33.3333333333%;
  }
  .col-lg-9 {
    width: 37.5%;
  }
  .col-lg-10 {
    width: 41.6666666667%;
  }
  .col-lg-11 {
    width: 45.8333333333%;
  }
  .col-lg-12 {
    width: 50%;
  }
  .col-lg-13 {
    width: 54.1666666667%;
  }
  .col-lg-14 {
    width: 58.3333333333%;
  }
  .col-lg-15 {
    width: 62.5%;
  }
  .col-lg-16 {
    width: 66.6666666667%;
  }
  .col-lg-17 {
    width: 70.8333333333%;
  }
  .col-lg-18 {
    width: 75%;
  }
  .col-lg-19 {
    width: 79.1666666667%;
  }
  .col-lg-20 {
    width: 83.3333333333%;
  }
  .col-lg-21 {
    width: 87.5%;
  }
  .col-lg-22 {
    width: 91.6666666667%;
  }
  .col-lg-23 {
    width: 95.8333333333%;
  }
  .col-lg-24 {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .col-md-1 {
    width: 4.1666666667%;
  }
  .col-md-2 {
    width: 8.3333333333%;
  }
  .col-md-3 {
    width: 12.5%;
  }
  .col-md-4 {
    width: 16.6666666667%;
  }
  .col-md-5 {
    width: 20.8333333333%;
  }
  .col-md-6 {
    width: 25%;
  }
  .col-md-7 {
    width: 29.1666666667%;
  }
  .col-md-8 {
    width: 33.3333333333%;
  }
  .col-md-9 {
    width: 37.5%;
  }
  .col-md-10 {
    width: 41.6666666667%;
  }
  .col-md-11 {
    width: 45.8333333333%;
  }
  .col-md-12 {
    width: 50%;
  }
  .col-md-13 {
    width: 54.1666666667%;
  }
  .col-md-14 {
    width: 58.3333333333%;
  }
  .col-md-15 {
    width: 62.5%;
  }
  .col-md-16 {
    width: 66.6666666667%;
  }
  .col-md-17 {
    width: 70.8333333333%;
  }
  .col-md-18 {
    width: 75%;
  }
  .col-md-19 {
    width: 79.1666666667%;
  }
  .col-md-20 {
    width: 83.3333333333%;
  }
  .col-md-21 {
    width: 87.5%;
  }
  .col-md-22 {
    width: 91.6666666667%;
  }
  .col-md-23 {
    width: 95.8333333333%;
  }
  .col-md-24 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .col-sm-1 {
    width: 4.1666666667%;
  }
  .col-sm-2 {
    width: 8.3333333333%;
  }
  .col-sm-3 {
    width: 12.5%;
  }
  .col-sm-4 {
    width: 16.6666666667%;
  }
  .col-sm-5 {
    width: 20.8333333333%;
  }
  .col-sm-6 {
    width: 25%;
  }
  .col-sm-7 {
    width: 29.1666666667%;
  }
  .col-sm-8 {
    width: 33.3333333333%;
  }
  .col-sm-9 {
    width: 37.5%;
  }
  .col-sm-10 {
    width: 41.6666666667%;
  }
  .col-sm-11 {
    width: 45.8333333333%;
  }
  .col-sm-12 {
    width: 50%;
  }
  .col-sm-13 {
    width: 54.1666666667%;
  }
  .col-sm-14 {
    width: 58.3333333333%;
  }
  .col-sm-15 {
    width: 62.5%;
  }
  .col-sm-16 {
    width: 66.6666666667%;
  }
  .col-sm-17 {
    width: 70.8333333333%;
  }
  .col-sm-18 {
    width: 75%;
  }
  .col-sm-19 {
    width: 79.1666666667%;
  }
  .col-sm-20 {
    width: 83.3333333333%;
  }
  .col-sm-21 {
    width: 87.5%;
  }
  .col-sm-22 {
    width: 91.6666666667%;
  }
  .col-sm-23 {
    width: 95.8333333333%;
  }
  .col-sm-24 {
    width: 100%;
  }
}
@media screen and (max-width: 359px) {
  .col-xs-1 {
    width: 4.1666666667%;
  }
  .col-xs-2 {
    width: 8.3333333333%;
  }
  .col-xs-3 {
    width: 12.5%;
  }
  .col-xs-4 {
    width: 16.6666666667%;
  }
  .col-xs-5 {
    width: 20.8333333333%;
  }
  .col-xs-6 {
    width: 25%;
  }
  .col-xs-7 {
    width: 29.1666666667%;
  }
  .col-xs-8 {
    width: 33.3333333333%;
  }
  .col-xs-9 {
    width: 37.5%;
  }
  .col-xs-10 {
    width: 41.6666666667%;
  }
  .col-xs-11 {
    width: 45.8333333333%;
  }
  .col-xs-12 {
    width: 50%;
  }
  .col-xs-13 {
    width: 54.1666666667%;
  }
  .col-xs-14 {
    width: 58.3333333333%;
  }
  .col-xs-15 {
    width: 62.5%;
  }
  .col-xs-16 {
    width: 66.6666666667%;
  }
  .col-xs-17 {
    width: 70.8333333333%;
  }
  .col-xs-18 {
    width: 75%;
  }
  .col-xs-19 {
    width: 79.1666666667%;
  }
  .col-xs-20 {
    width: 83.3333333333%;
  }
  .col-xs-21 {
    width: 87.5%;
  }
  .col-xs-22 {
    width: 91.6666666667%;
  }
  .col-xs-23 {
    width: 95.8333333333%;
  }
  .col-xs-24 {
    width: 100%;
  }
}

.margin-top-0 {
  margin-top: 0px !important;
}
.margin-top-5 {
  margin-top: 5px !important;
}
.margin-top-10 {
  margin-top: 10px !important;
}
.margin-top-15 {
  margin-top: 15px !important;
}
.margin-top-20 {
  margin-top: 20px !important;
}
.margin-top-25 {
  margin-top: 25px !important;
}
.margin-top-30 {
  margin-top: 30px !important;
}
.margin-top-35 {
  margin-top: 35px !important;
}
.margin-top-40 {
  margin-top: 40px !important;
}
.margin-top-45 {
  margin-top: 45px !important;
}
.margin-top-50 {
  margin-top: 50px !important;
}
@media screen and (max-width: 1599px) {
  .margin-top-xxl-0 {
    margin-top: 0px !important;
  }
  .margin-top-xxl-5 {
    margin-top: 5px !important;
  }
  .margin-top-xxl-10 {
    margin-top: 10px !important;
  }
  .margin-top-xxl-15 {
    margin-top: 15px !important;
  }
  .margin-top-xxl-20 {
    margin-top: 20px !important;
  }
  .margin-top-xxl-25 {
    margin-top: 25px !important;
  }
  .margin-top-xxl-30 {
    margin-top: 30px !important;
  }
  .margin-top-xxl-35 {
    margin-top: 35px !important;
  }
  .margin-top-xxl-40 {
    margin-top: 40px !important;
  }
  .margin-top-xxl-45 {
    margin-top: 45px !important;
  }
  .margin-top-xxl-50 {
    margin-top: 50px !important;
  }
}
@media screen and (max-width: 1399px) {
  .margin-top-xl-0 {
    margin-top: 0px !important;
  }
  .margin-top-xl-5 {
    margin-top: 5px !important;
  }
  .margin-top-xl-10 {
    margin-top: 10px !important;
  }
  .margin-top-xl-15 {
    margin-top: 15px !important;
  }
  .margin-top-xl-20 {
    margin-top: 20px !important;
  }
  .margin-top-xl-25 {
    margin-top: 25px !important;
  }
  .margin-top-xl-30 {
    margin-top: 30px !important;
  }
  .margin-top-xl-35 {
    margin-top: 35px !important;
  }
  .margin-top-xl-40 {
    margin-top: 40px !important;
  }
  .margin-top-xl-45 {
    margin-top: 45px !important;
  }
  .margin-top-xl-50 {
    margin-top: 50px !important;
  }
}
@media screen and (max-width: 1199px) {
  .margin-top-lg-0 {
    margin-top: 0px !important;
  }
  .margin-top-lg-5 {
    margin-top: 5px !important;
  }
  .margin-top-lg-10 {
    margin-top: 10px !important;
  }
  .margin-top-lg-15 {
    margin-top: 15px !important;
  }
  .margin-top-lg-20 {
    margin-top: 20px !important;
  }
  .margin-top-lg-25 {
    margin-top: 25px !important;
  }
  .margin-top-lg-30 {
    margin-top: 30px !important;
  }
  .margin-top-lg-35 {
    margin-top: 35px !important;
  }
  .margin-top-lg-40 {
    margin-top: 40px !important;
  }
  .margin-top-lg-45 {
    margin-top: 45px !important;
  }
  .margin-top-lg-50 {
    margin-top: 50px !important;
  }
}
@media screen and (max-width: 991px) {
  .margin-top-md-0 {
    margin-top: 0px !important;
  }
  .margin-top-md-5 {
    margin-top: 5px !important;
  }
  .margin-top-md-10 {
    margin-top: 10px !important;
  }
  .margin-top-md-15 {
    margin-top: 15px !important;
  }
  .margin-top-md-20 {
    margin-top: 20px !important;
  }
  .margin-top-md-25 {
    margin-top: 25px !important;
  }
  .margin-top-md-30 {
    margin-top: 30px !important;
  }
  .margin-top-md-35 {
    margin-top: 35px !important;
  }
  .margin-top-md-40 {
    margin-top: 40px !important;
  }
  .margin-top-md-45 {
    margin-top: 45px !important;
  }
  .margin-top-md-50 {
    margin-top: 50px !important;
  }
}
@media screen and (max-width: 767px) {
  .margin-top-sm-0 {
    margin-top: 0px !important;
  }
  .margin-top-sm-5 {
    margin-top: 5px !important;
  }
  .margin-top-sm-10 {
    margin-top: 10px !important;
  }
  .margin-top-sm-15 {
    margin-top: 15px !important;
  }
  .margin-top-sm-20 {
    margin-top: 20px !important;
  }
  .margin-top-sm-25 {
    margin-top: 25px !important;
  }
  .margin-top-sm-30 {
    margin-top: 30px !important;
  }
  .margin-top-sm-35 {
    margin-top: 35px !important;
  }
  .margin-top-sm-40 {
    margin-top: 40px !important;
  }
  .margin-top-sm-45 {
    margin-top: 45px !important;
  }
  .margin-top-sm-50 {
    margin-top: 50px !important;
  }
}
@media screen and (max-width: 359px) {
  .margin-top-xs-0 {
    margin-top: 0px !important;
  }
  .margin-top-xs-5 {
    margin-top: 5px !important;
  }
  .margin-top-xs-10 {
    margin-top: 10px !important;
  }
  .margin-top-xs-15 {
    margin-top: 15px !important;
  }
  .margin-top-xs-20 {
    margin-top: 20px !important;
  }
  .margin-top-xs-25 {
    margin-top: 25px !important;
  }
  .margin-top-xs-30 {
    margin-top: 30px !important;
  }
  .margin-top-xs-35 {
    margin-top: 35px !important;
  }
  .margin-top-xs-40 {
    margin-top: 40px !important;
  }
  .margin-top-xs-45 {
    margin-top: 45px !important;
  }
  .margin-top-xs-50 {
    margin-top: 50px !important;
  }
}
.margin-right-0 {
  margin-right: 0px !important;
}
.margin-right-5 {
  margin-right: 5px !important;
}
.margin-right-10 {
  margin-right: 10px !important;
}
.margin-right-15 {
  margin-right: 15px !important;
}
.margin-right-20 {
  margin-right: 20px !important;
}
.margin-right-25 {
  margin-right: 25px !important;
}
.margin-right-30 {
  margin-right: 30px !important;
}
.margin-right-35 {
  margin-right: 35px !important;
}
.margin-right-40 {
  margin-right: 40px !important;
}
.margin-right-45 {
  margin-right: 45px !important;
}
.margin-right-50 {
  margin-right: 50px !important;
}
@media screen and (max-width: 1599px) {
  .margin-right-xxl-0 {
    margin-right: 0px !important;
  }
  .margin-right-xxl-5 {
    margin-right: 5px !important;
  }
  .margin-right-xxl-10 {
    margin-right: 10px !important;
  }
  .margin-right-xxl-15 {
    margin-right: 15px !important;
  }
  .margin-right-xxl-20 {
    margin-right: 20px !important;
  }
  .margin-right-xxl-25 {
    margin-right: 25px !important;
  }
  .margin-right-xxl-30 {
    margin-right: 30px !important;
  }
  .margin-right-xxl-35 {
    margin-right: 35px !important;
  }
  .margin-right-xxl-40 {
    margin-right: 40px !important;
  }
  .margin-right-xxl-45 {
    margin-right: 45px !important;
  }
  .margin-right-xxl-50 {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 1399px) {
  .margin-right-xl-0 {
    margin-right: 0px !important;
  }
  .margin-right-xl-5 {
    margin-right: 5px !important;
  }
  .margin-right-xl-10 {
    margin-right: 10px !important;
  }
  .margin-right-xl-15 {
    margin-right: 15px !important;
  }
  .margin-right-xl-20 {
    margin-right: 20px !important;
  }
  .margin-right-xl-25 {
    margin-right: 25px !important;
  }
  .margin-right-xl-30 {
    margin-right: 30px !important;
  }
  .margin-right-xl-35 {
    margin-right: 35px !important;
  }
  .margin-right-xl-40 {
    margin-right: 40px !important;
  }
  .margin-right-xl-45 {
    margin-right: 45px !important;
  }
  .margin-right-xl-50 {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 1199px) {
  .margin-right-lg-0 {
    margin-right: 0px !important;
  }
  .margin-right-lg-5 {
    margin-right: 5px !important;
  }
  .margin-right-lg-10 {
    margin-right: 10px !important;
  }
  .margin-right-lg-15 {
    margin-right: 15px !important;
  }
  .margin-right-lg-20 {
    margin-right: 20px !important;
  }
  .margin-right-lg-25 {
    margin-right: 25px !important;
  }
  .margin-right-lg-30 {
    margin-right: 30px !important;
  }
  .margin-right-lg-35 {
    margin-right: 35px !important;
  }
  .margin-right-lg-40 {
    margin-right: 40px !important;
  }
  .margin-right-lg-45 {
    margin-right: 45px !important;
  }
  .margin-right-lg-50 {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 991px) {
  .margin-right-md-0 {
    margin-right: 0px !important;
  }
  .margin-right-md-5 {
    margin-right: 5px !important;
  }
  .margin-right-md-10 {
    margin-right: 10px !important;
  }
  .margin-right-md-15 {
    margin-right: 15px !important;
  }
  .margin-right-md-20 {
    margin-right: 20px !important;
  }
  .margin-right-md-25 {
    margin-right: 25px !important;
  }
  .margin-right-md-30 {
    margin-right: 30px !important;
  }
  .margin-right-md-35 {
    margin-right: 35px !important;
  }
  .margin-right-md-40 {
    margin-right: 40px !important;
  }
  .margin-right-md-45 {
    margin-right: 45px !important;
  }
  .margin-right-md-50 {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 767px) {
  .margin-right-sm-0 {
    margin-right: 0px !important;
  }
  .margin-right-sm-5 {
    margin-right: 5px !important;
  }
  .margin-right-sm-10 {
    margin-right: 10px !important;
  }
  .margin-right-sm-15 {
    margin-right: 15px !important;
  }
  .margin-right-sm-20 {
    margin-right: 20px !important;
  }
  .margin-right-sm-25 {
    margin-right: 25px !important;
  }
  .margin-right-sm-30 {
    margin-right: 30px !important;
  }
  .margin-right-sm-35 {
    margin-right: 35px !important;
  }
  .margin-right-sm-40 {
    margin-right: 40px !important;
  }
  .margin-right-sm-45 {
    margin-right: 45px !important;
  }
  .margin-right-sm-50 {
    margin-right: 50px !important;
  }
}
@media screen and (max-width: 359px) {
  .margin-right-xs-0 {
    margin-right: 0px !important;
  }
  .margin-right-xs-5 {
    margin-right: 5px !important;
  }
  .margin-right-xs-10 {
    margin-right: 10px !important;
  }
  .margin-right-xs-15 {
    margin-right: 15px !important;
  }
  .margin-right-xs-20 {
    margin-right: 20px !important;
  }
  .margin-right-xs-25 {
    margin-right: 25px !important;
  }
  .margin-right-xs-30 {
    margin-right: 30px !important;
  }
  .margin-right-xs-35 {
    margin-right: 35px !important;
  }
  .margin-right-xs-40 {
    margin-right: 40px !important;
  }
  .margin-right-xs-45 {
    margin-right: 45px !important;
  }
  .margin-right-xs-50 {
    margin-right: 50px !important;
  }
}
.margin-bottom-0 {
  margin-bottom: 0px !important;
}
.margin-bottom-5 {
  margin-bottom: 5px !important;
}
.margin-bottom-10 {
  margin-bottom: 10px !important;
}
.margin-bottom-15 {
  margin-bottom: 15px !important;
}
.margin-bottom-20 {
  margin-bottom: 20px !important;
}
.margin-bottom-25 {
  margin-bottom: 25px !important;
}
.margin-bottom-30 {
  margin-bottom: 30px !important;
}
.margin-bottom-35 {
  margin-bottom: 35px !important;
}
.margin-bottom-40 {
  margin-bottom: 40px !important;
}
.margin-bottom-45 {
  margin-bottom: 45px !important;
}
.margin-bottom-50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 1599px) {
  .margin-bottom-xxl-0 {
    margin-bottom: 0px !important;
  }
  .margin-bottom-xxl-5 {
    margin-bottom: 5px !important;
  }
  .margin-bottom-xxl-10 {
    margin-bottom: 10px !important;
  }
  .margin-bottom-xxl-15 {
    margin-bottom: 15px !important;
  }
  .margin-bottom-xxl-20 {
    margin-bottom: 20px !important;
  }
  .margin-bottom-xxl-25 {
    margin-bottom: 25px !important;
  }
  .margin-bottom-xxl-30 {
    margin-bottom: 30px !important;
  }
  .margin-bottom-xxl-35 {
    margin-bottom: 35px !important;
  }
  .margin-bottom-xxl-40 {
    margin-bottom: 40px !important;
  }
  .margin-bottom-xxl-45 {
    margin-bottom: 45px !important;
  }
  .margin-bottom-xxl-50 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 1399px) {
  .margin-bottom-xl-0 {
    margin-bottom: 0px !important;
  }
  .margin-bottom-xl-5 {
    margin-bottom: 5px !important;
  }
  .margin-bottom-xl-10 {
    margin-bottom: 10px !important;
  }
  .margin-bottom-xl-15 {
    margin-bottom: 15px !important;
  }
  .margin-bottom-xl-20 {
    margin-bottom: 20px !important;
  }
  .margin-bottom-xl-25 {
    margin-bottom: 25px !important;
  }
  .margin-bottom-xl-30 {
    margin-bottom: 30px !important;
  }
  .margin-bottom-xl-35 {
    margin-bottom: 35px !important;
  }
  .margin-bottom-xl-40 {
    margin-bottom: 40px !important;
  }
  .margin-bottom-xl-45 {
    margin-bottom: 45px !important;
  }
  .margin-bottom-xl-50 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 1199px) {
  .margin-bottom-lg-0 {
    margin-bottom: 0px !important;
  }
  .margin-bottom-lg-5 {
    margin-bottom: 5px !important;
  }
  .margin-bottom-lg-10 {
    margin-bottom: 10px !important;
  }
  .margin-bottom-lg-15 {
    margin-bottom: 15px !important;
  }
  .margin-bottom-lg-20 {
    margin-bottom: 20px !important;
  }
  .margin-bottom-lg-25 {
    margin-bottom: 25px !important;
  }
  .margin-bottom-lg-30 {
    margin-bottom: 30px !important;
  }
  .margin-bottom-lg-35 {
    margin-bottom: 35px !important;
  }
  .margin-bottom-lg-40 {
    margin-bottom: 40px !important;
  }
  .margin-bottom-lg-45 {
    margin-bottom: 45px !important;
  }
  .margin-bottom-lg-50 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 991px) {
  .margin-bottom-md-0 {
    margin-bottom: 0px !important;
  }
  .margin-bottom-md-5 {
    margin-bottom: 5px !important;
  }
  .margin-bottom-md-10 {
    margin-bottom: 10px !important;
  }
  .margin-bottom-md-15 {
    margin-bottom: 15px !important;
  }
  .margin-bottom-md-20 {
    margin-bottom: 20px !important;
  }
  .margin-bottom-md-25 {
    margin-bottom: 25px !important;
  }
  .margin-bottom-md-30 {
    margin-bottom: 30px !important;
  }
  .margin-bottom-md-35 {
    margin-bottom: 35px !important;
  }
  .margin-bottom-md-40 {
    margin-bottom: 40px !important;
  }
  .margin-bottom-md-45 {
    margin-bottom: 45px !important;
  }
  .margin-bottom-md-50 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 767px) {
  .margin-bottom-sm-0 {
    margin-bottom: 0px !important;
  }
  .margin-bottom-sm-5 {
    margin-bottom: 5px !important;
  }
  .margin-bottom-sm-10 {
    margin-bottom: 10px !important;
  }
  .margin-bottom-sm-15 {
    margin-bottom: 15px !important;
  }
  .margin-bottom-sm-20 {
    margin-bottom: 20px !important;
  }
  .margin-bottom-sm-25 {
    margin-bottom: 25px !important;
  }
  .margin-bottom-sm-30 {
    margin-bottom: 30px !important;
  }
  .margin-bottom-sm-35 {
    margin-bottom: 35px !important;
  }
  .margin-bottom-sm-40 {
    margin-bottom: 40px !important;
  }
  .margin-bottom-sm-45 {
    margin-bottom: 45px !important;
  }
  .margin-bottom-sm-50 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 359px) {
  .margin-bottom-xs-0 {
    margin-bottom: 0px !important;
  }
  .margin-bottom-xs-5 {
    margin-bottom: 5px !important;
  }
  .margin-bottom-xs-10 {
    margin-bottom: 10px !important;
  }
  .margin-bottom-xs-15 {
    margin-bottom: 15px !important;
  }
  .margin-bottom-xs-20 {
    margin-bottom: 20px !important;
  }
  .margin-bottom-xs-25 {
    margin-bottom: 25px !important;
  }
  .margin-bottom-xs-30 {
    margin-bottom: 30px !important;
  }
  .margin-bottom-xs-35 {
    margin-bottom: 35px !important;
  }
  .margin-bottom-xs-40 {
    margin-bottom: 40px !important;
  }
  .margin-bottom-xs-45 {
    margin-bottom: 45px !important;
  }
  .margin-bottom-xs-50 {
    margin-bottom: 50px !important;
  }
}
.margin-left-0 {
  margin-left: 0px !important;
}
.margin-left-5 {
  margin-left: 5px !important;
}
.margin-left-10 {
  margin-left: 10px !important;
}
.margin-left-15 {
  margin-left: 15px !important;
}
.margin-left-20 {
  margin-left: 20px !important;
}
.margin-left-25 {
  margin-left: 25px !important;
}
.margin-left-30 {
  margin-left: 30px !important;
}
.margin-left-35 {
  margin-left: 35px !important;
}
.margin-left-40 {
  margin-left: 40px !important;
}
.margin-left-45 {
  margin-left: 45px !important;
}
.margin-left-50 {
  margin-left: 50px !important;
}
@media screen and (max-width: 1599px) {
  .margin-left-xxl-0 {
    margin-left: 0px !important;
  }
  .margin-left-xxl-5 {
    margin-left: 5px !important;
  }
  .margin-left-xxl-10 {
    margin-left: 10px !important;
  }
  .margin-left-xxl-15 {
    margin-left: 15px !important;
  }
  .margin-left-xxl-20 {
    margin-left: 20px !important;
  }
  .margin-left-xxl-25 {
    margin-left: 25px !important;
  }
  .margin-left-xxl-30 {
    margin-left: 30px !important;
  }
  .margin-left-xxl-35 {
    margin-left: 35px !important;
  }
  .margin-left-xxl-40 {
    margin-left: 40px !important;
  }
  .margin-left-xxl-45 {
    margin-left: 45px !important;
  }
  .margin-left-xxl-50 {
    margin-left: 50px !important;
  }
}
@media screen and (max-width: 1399px) {
  .margin-left-xl-0 {
    margin-left: 0px !important;
  }
  .margin-left-xl-5 {
    margin-left: 5px !important;
  }
  .margin-left-xl-10 {
    margin-left: 10px !important;
  }
  .margin-left-xl-15 {
    margin-left: 15px !important;
  }
  .margin-left-xl-20 {
    margin-left: 20px !important;
  }
  .margin-left-xl-25 {
    margin-left: 25px !important;
  }
  .margin-left-xl-30 {
    margin-left: 30px !important;
  }
  .margin-left-xl-35 {
    margin-left: 35px !important;
  }
  .margin-left-xl-40 {
    margin-left: 40px !important;
  }
  .margin-left-xl-45 {
    margin-left: 45px !important;
  }
  .margin-left-xl-50 {
    margin-left: 50px !important;
  }
}
@media screen and (max-width: 1199px) {
  .margin-left-lg-0 {
    margin-left: 0px !important;
  }
  .margin-left-lg-5 {
    margin-left: 5px !important;
  }
  .margin-left-lg-10 {
    margin-left: 10px !important;
  }
  .margin-left-lg-15 {
    margin-left: 15px !important;
  }
  .margin-left-lg-20 {
    margin-left: 20px !important;
  }
  .margin-left-lg-25 {
    margin-left: 25px !important;
  }
  .margin-left-lg-30 {
    margin-left: 30px !important;
  }
  .margin-left-lg-35 {
    margin-left: 35px !important;
  }
  .margin-left-lg-40 {
    margin-left: 40px !important;
  }
  .margin-left-lg-45 {
    margin-left: 45px !important;
  }
  .margin-left-lg-50 {
    margin-left: 50px !important;
  }
}
@media screen and (max-width: 991px) {
  .margin-left-md-0 {
    margin-left: 0px !important;
  }
  .margin-left-md-5 {
    margin-left: 5px !important;
  }
  .margin-left-md-10 {
    margin-left: 10px !important;
  }
  .margin-left-md-15 {
    margin-left: 15px !important;
  }
  .margin-left-md-20 {
    margin-left: 20px !important;
  }
  .margin-left-md-25 {
    margin-left: 25px !important;
  }
  .margin-left-md-30 {
    margin-left: 30px !important;
  }
  .margin-left-md-35 {
    margin-left: 35px !important;
  }
  .margin-left-md-40 {
    margin-left: 40px !important;
  }
  .margin-left-md-45 {
    margin-left: 45px !important;
  }
  .margin-left-md-50 {
    margin-left: 50px !important;
  }
}
@media screen and (max-width: 767px) {
  .margin-left-sm-0 {
    margin-left: 0px !important;
  }
  .margin-left-sm-5 {
    margin-left: 5px !important;
  }
  .margin-left-sm-10 {
    margin-left: 10px !important;
  }
  .margin-left-sm-15 {
    margin-left: 15px !important;
  }
  .margin-left-sm-20 {
    margin-left: 20px !important;
  }
  .margin-left-sm-25 {
    margin-left: 25px !important;
  }
  .margin-left-sm-30 {
    margin-left: 30px !important;
  }
  .margin-left-sm-35 {
    margin-left: 35px !important;
  }
  .margin-left-sm-40 {
    margin-left: 40px !important;
  }
  .margin-left-sm-45 {
    margin-left: 45px !important;
  }
  .margin-left-sm-50 {
    margin-left: 50px !important;
  }
}
@media screen and (max-width: 359px) {
  .margin-left-xs-0 {
    margin-left: 0px !important;
  }
  .margin-left-xs-5 {
    margin-left: 5px !important;
  }
  .margin-left-xs-10 {
    margin-left: 10px !important;
  }
  .margin-left-xs-15 {
    margin-left: 15px !important;
  }
  .margin-left-xs-20 {
    margin-left: 20px !important;
  }
  .margin-left-xs-25 {
    margin-left: 25px !important;
  }
  .margin-left-xs-30 {
    margin-left: 30px !important;
  }
  .margin-left-xs-35 {
    margin-left: 35px !important;
  }
  .margin-left-xs-40 {
    margin-left: 40px !important;
  }
  .margin-left-xs-45 {
    margin-left: 45px !important;
  }
  .margin-left-xs-50 {
    margin-left: 50px !important;
  }
}

/* 編譯說明
    ``` scss例
    .margin {
        &-top {
            &-sm {
                @media screen and (max-width: 767px) {
                    &-10 {
                        margin-top: 10px;
                    }
                }
            }
        }
    }
    ```
    編譯出來的css 例：
    ``` css
    @media screen and (max-width: 767px) {
        .margin-top-sm-10 {
            margin-top: 10px;
        }
    }
    ```
*/
.tab {
  border-radius: 8px 8px 0px 0px;
  font-weight: bold;
  display: inline-block;
  vertical-align: top;
  background: #e7e7e7;
  color: #4d3838;
  color: #1b1b1b;
  font-size: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(50% - 4px);
  padding: 13px 0px;
  cursor: pointer;
  margin: 0px 2px;
}
.tab-area {
  text-align: center;
  font-size: 0px;
  padding: 0px 16px 0;
  max-width: 909px;
  margin: 30px auto 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tab.active {
  background: #e1eeff;
}
.tab-content {
  display: inline-block;
  position: relative;
  padding-left: 60px;
  text-align: left;
}
.tab-content i {
  font-size: 62px;
  color: #ff3030;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tab-content i.circle {
  width: 54px;
  height: 54px;
  border: solid 8px #5ab71c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100%;
}
.tab-content-tit {
  font-size: 30px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .tab {
    font-size: 13px;
    font-weight: normal;
  }
  .tab-content {
    padding-left: 43px;
  }
  .tab-content i {
    font-size: 40px;
    left: 8px;
  }
  .tab-content i.circle {
    width: 30px;
    height: 30px;
  }
  .tab-content-tit {
    font-size: 20px;
    font-weight: bold;
  }
}

.tabContent {
  padding: 28px;
}
.tabContent-area {
  max-width: 909px;
  margin: 0 auto;
  background: #e1eeff;
  border-radius: 8px;
}
.tabContent.active {
  display: block;
}
.tabContent-text {
  color: #333;
}
.tabContent-text-2 .focus {
  color: #114790;
}
.tabContent .finished .item2-tabContent-text {
  text-align: center;
}
.tabContent .finished .btnArea {
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .tabContent {
    padding: 20px 15px;
  }
}

#tabTop {
  position: relative;
  top: -20px;
}

.formArea {
  font-size: 0px;
  margin: 0px -10px;
}
.formArea-item {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 10px;
  color: #4d3838;
  font-size: 18px;
}
.formArea-item-tit {
  padding-bottom: 5px;
  font-size: 24px;
}
.formArea-item.full {
  width: 100%;
}
.formArea-item.agree {
  position: relative;
  padding-left: 40px;
}
.formArea-item.agree .checkbox {
  position: absolute;
  left: 10px;
  top: 12px;
}
.formArea-item.agree a {
  color: #243e72;
}
.formArea-item.error {
  color: #f00;
}
.formArea-item.error .formArea-item-tit:after {
  content: "(請確認格式是否正確)";
  display: inline-block;
  padding-left: 5px;
  color: #000;
}
.formArea-item.error input,
.formArea-item.error select,
.formArea-item.error .checkbox span,
.formArea-item.error .checkbox span {
  -webkit-box-shadow: 0px 0px 0px 1px #f00 inset;
          box-shadow: 0px 0px 0px 1px #f00 inset;
}
.formArea .btnArea {
  margin-bottom: 0px;
  padding: 0px 10px;
}
@media screen and (max-width: 767px) {
  .formArea-item {
    width: 100%;
  }
  .formArea-item-tit {
    font-size: 16px;
  }
}

.fade-enter-active, .fade-leave-active {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}

.ieMask-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 85, 152, 0.9);
  z-index: 999999;
}
.ieMask-content {
  position: fixed;
  z-index: 999999;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  max-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: auto;
  box-sizing: border-box;
  color: #fff;
  font-size: 24px;
}
@media screen and (min-width: 1200px) {
  .ieMask-content .container {
    width: 1000px;
    margin: 0 auto;
    padding-left: 0;
  }
}
.ieMask-downloadItem {
  text-align: center;
}
.ieMask-downloadItem i {
  font-size: 105px;
}
.ieMask-downloadItem-tit {
  font-size: 24px;
  margin: 15px 0px;
}
@media screen and (max-width: 991px) {
  .ieMask-content {
    font-size: 20px;
  }
  .ieMask-downloadItem-tit {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .ieMask-content {
    font-size: 16px;
  }
  .ieMask-downloadItem {
    margin: 15px 0;
    border: solid 1px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 15px 15px;
  }
  .ieMask-downloadItem i {
    font-size: 50px;
  }
  .ieMask-downloadItem-tit {
    font-size: 16px;
  }
}

.commonVersionBanner {
  position: relative;
  height: 600px;
}
.commonVersionBanner-kv {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
}
.commonVersionBanner h1 {
  position: absolute;
  top: 0px;
  left: 0px;
  text-indent: -99999px;
}
.commonVersionBanner-bottom {
  color: #fff;
  background: #6e0836;
  padding: 20px 0px;
}
.commonVersionBanner-bottom .tit-type1 {
  color: #ecc989;
}
.commonVersionBanner-bottom .focus {
  font-size: 20px;
  border-bottom: none;
}
.commonVersionBanner-bottom .linkText {
  color: #feb62c;
}
@media screen and (max-width: 991px) {
  .commonVersionBanner {
    height: 380px;
  }
}
@media screen and (max-width: 767px) {
  .commonVersionBanner {
    height: auto;
  }
  .commonVersionBanner-kv {
    position: relative;
    left: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    height: auto;
    width: 100%;
    display: block;
  }
}

.timeOutPopUp {
  position: fixed;
  z-index: 99;
  right: 50px;
  bottom: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-animation: timeOutPopUpShow 0.5s ease-out;
          animation: timeOutPopUpShow 0.5s ease-out;
}
.timeOutPopUp-top {
  background: #005598;
  border-radius: 10px 10px 0 0;
  padding: 10px 0 0;
}
.timeOutPopUp-bottom {
  background: white;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 0 0 10px 10px;
  padding: 20px 10px;
}
.timeOutPopUp-tit {
  font-weight: bold;
  font-size: 20px;
}
.timeOutPopUp-text {
  font-size: 14px;
}
.timeOutPopUp-women {
  margin: -50px auto 0;
  display: block;
  width: 200px;
}
.timeOutPopUp .btnArea {
  margin: 0;
}
.timeOutPopUp .btnArea.twoBtn .btn {
  padding-left: 5px;
  padding-right: 5px;
}
.timeOutPopUp-closeText {
  font-size: 12px;
}
.timeOutPopUp-closeText a {
  color: #666;
}
.timeOutPopUp-closeText a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .timeOutPopUp {
    bottom: 20px;
    right: 10px;
  }
}

@-webkit-keyframes timeOutPopUpShow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  90% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  80%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes timeOutPopUpShow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  90% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  80%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.macaronTit {
  font-size: 0;
  text-align: center;
}
.macaronTit:before, .macaronTit:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border-radius: 100%;
  width: 6px;
  height: 6px;
  background: #6c6c6c;
  margin: 0 15px;
}
.macaronTit:before {
  -webkit-box-shadow: -15px 0 0 0px #6c6c6c, -30px 0 0 0px #6c6c6c, -45px 0 0 0px #6c6c6c, -60px 0 0 0px #6c6c6c, -75px 0 0 0px #6c6c6c, -90px 0 0 0px #6c6c6c;
          box-shadow: -15px 0 0 0px #6c6c6c, -30px 0 0 0px #6c6c6c, -45px 0 0 0px #6c6c6c, -60px 0 0 0px #6c6c6c, -75px 0 0 0px #6c6c6c, -90px 0 0 0px #6c6c6c;
}
.macaronTit:after {
  -webkit-box-shadow: 15px 0 0 0px #6c6c6c, 30px 0 0 0px #6c6c6c, 45px 0 0 0px #6c6c6c, 60px 0 0 0px #6c6c6c, 75px 0 0 0px #6c6c6c, 90px 0 0 0px #6c6c6c;
          box-shadow: 15px 0 0 0px #6c6c6c, 30px 0 0 0px #6c6c6c, 45px 0 0 0px #6c6c6c, 60px 0 0 0px #6c6c6c, 75px 0 0 0px #6c6c6c, 90px 0 0 0px #6c6c6c;
}
.macaronTit div {
  display: inline-block;
}
.macaronTit div span {
  font-size: 28px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
  background: #9ffaff;
  border-radius: 100%;
}
.macaronTit div span:nth-of-type(2) {
  background: #ffd3d5;
}
.macaronTit div span:nth-of-type(3) {
  background: #fffd8e;
}
.macaronTit div span:nth-of-type(4) {
  background: #ffc4f4;
}
.macaronTit div span:nth-of-type(5) {
  background: #e3f564;
}
.macaronTit div span:nth-of-type(6) {
  background: #9ffaff;
}
.macaronTit div span:nth-of-type(7) {
  background: #ffd3d5;
}
@media screen and (max-width: 767px) {
  .macaronTit div span {
    font-size: 22px;
    width: 36px;
    line-height: 36px;
  }
}
@media screen and (max-width: 359px) {
  .macaronTit:before, .macaronTit:after {
    display: none;
  }
}

.advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px -10px;
  margin-top: 40px;
  padding-left: 0;
  font-size: 20px;
}
.advantage li {
  border: solid 2px #9f9e9e;
  border-radius: 20px;
  position: relative;
  padding: 20px 15px;
  padding-bottom: 5px;
  list-style: none;
  text-align: center;
  margin: 0 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.advantage li p {
  text-align: justify;
}
.advantage-tit {
  font-size: 0;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
}
.advantage-tit div {
  display: inline-block;
  background: #fff;
  padding: 0 20px;
}
.advantage-tit div span {
  display: inline-block;
  vertical-align: middle;
  border-radius: 100%;
  background: #daefff;
  font-size: 22px;
  font-weight: bold;
  width: 40px;
  line-height: 40px;
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
  .advantage {
    display: block;
    margin: 30px 0;
    font-size: 16px;
  }
  .advantage li {
    margin: 40px 0 10px;
  }
  .advantage-tit div span {
    font-size: 20px;
  }
}

.fund {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px -10px;
  padding-left: 0;
  list-style: none;
}
.fund li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 10px;
  background: #daefff;
  border: solid 2px #9f9e9e;
  border-radius: 20px;
}
.fund li a {
  display: block;
  color: #222;
  padding: 10px 15px;
}
.fund-name {
  font-weight: bold;
  font-size: 19px;
}
.fund-name .focus {
  border-bottom: none;
  color: #0072a3;
}
.fund-cta {
  text-align: center;
  font-weight: bold;
  border-top: solid 2px #9f9e9e;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .fund {
    display: block;
    margin: 30px 0;
  }
  .fund li {
    margin: 20px 0;
    position: relative;
    padding-right: 85px;
  }
  .fund-name {
    border-right: solid 2px #fff;
    padding-right: 15px;
    font-size: 16px;
  }
  .fund-cta {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    text-align: center;
    width: 70px;
  }
}

.opportunityblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding: 0 0 50px 0;
}

@media (max-width: 767px) {
  .opportunityblock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.chart-flex-1 {
  width: 33.333%;
}

@media (max-width: 767px) {
  .chart-flex-1 {
    width: 100%;
  }
}
.base-table-wrapper {
  overflow-x: auto;
}

.base-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 30px 0;
}

.base-table thead tr {
  background-color: #5291ff;
}

.base-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.base-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

.base-table th,
.base-table td {
  font-size: 18px;
  padding: 8px 8px;
  text-align: center;
  border: 1px solid rgb(158, 158, 158);
  color: #202020;
}

.base-table th {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 767px) {
  .base-table th {
    text-wrap: nowrap;
  }
}
.row {
  margin: 5px -12px;
  font-size: 0px;
  text-align: center;
}

[class*=col-] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px;
  display: inline-block;
  margin: 0px;
  vertical-align: top;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 767px) {
  [class*=col-] {
    font-size: 20px;
  }
}
.col-1 {
  width: 4.1666666667%;
}

.col-2 {
  width: 8.3333333333%;
}

.col-3 {
  width: 12.5%;
}

.col-4 {
  width: 16.6666666667%;
}

.col-5 {
  width: 20.8333333333%;
}

.col-6 {
  width: 25%;
}

.col-7 {
  width: 29.1666666667%;
}

.col-8 {
  width: 33.3333333333%;
}

.col-9 {
  width: 37.5%;
}

.col-10 {
  width: 41.6666666667%;
}

.col-11 {
  width: 45.8333333333%;
}

.col-12 {
  width: 50%;
}

.col-13 {
  width: 54.1666666667%;
}

.col-14 {
  width: 58.3333333333%;
}

.col-15 {
  width: 62.5%;
}

.col-16 {
  width: 66.6666666667%;
}

.col-17 {
  width: 70.8333333333%;
}

.col-18 {
  width: 75%;
}

.col-19 {
  width: 79.1666666667%;
}

.col-20 {
  width: 83.3333333333%;
}

.col-21 {
  width: 87.5%;
}

.col-22 {
  width: 91.6666666667%;
}

.col-23 {
  width: 95.8333333333%;
}

.col-24 {
  width: 100%;
}

@media screen and (max-width: 1399px) {
  .col-xl-1 {
    width: 4.1666666667%;
  }
  .col-xl-2 {
    width: 8.3333333333%;
  }
  .col-xl-3 {
    width: 12.5%;
  }
  .col-xl-4 {
    width: 16.6666666667%;
  }
  .col-xl-5 {
    width: 20.8333333333%;
  }
  .col-xl-6 {
    width: 25%;
  }
  .col-xl-7 {
    width: 29.1666666667%;
  }
  .col-xl-8 {
    width: 33.3333333333%;
  }
  .col-xl-9 {
    width: 37.5%;
  }
  .col-xl-10 {
    width: 41.6666666667%;
  }
  .col-xl-11 {
    width: 45.8333333333%;
  }
  .col-xl-12 {
    width: 50%;
  }
  .col-xl-13 {
    width: 54.1666666667%;
  }
  .col-xl-14 {
    width: 58.3333333333%;
  }
  .col-xl-15 {
    width: 62.5%;
  }
  .col-xl-16 {
    width: 66.6666666667%;
  }
  .col-xl-17 {
    width: 70.8333333333%;
  }
  .col-xl-18 {
    width: 75%;
  }
  .col-xl-19 {
    width: 79.1666666667%;
  }
  .col-xl-20 {
    width: 83.3333333333%;
  }
  .col-xl-21 {
    width: 87.5%;
  }
  .col-xl-22 {
    width: 91.6666666667%;
  }
  .col-xl-23 {
    width: 95.8333333333%;
  }
  .col-xl-24 {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .col-lg-1 {
    width: 4.1666666667%;
  }
  .col-lg-2 {
    width: 8.3333333333%;
  }
  .col-lg-3 {
    width: 12.5%;
  }
  .col-lg-4 {
    width: 16.6666666667%;
  }
  .col-lg-5 {
    width: 20.8333333333%;
  }
  .col-lg-6 {
    width: 25%;
  }
  .col-lg-7 {
    width: 29.1666666667%;
  }
  .col-lg-8 {
    width: 33.3333333333%;
  }
  .col-lg-9 {
    width: 37.5%;
  }
  .col-lg-10 {
    width: 41.6666666667%;
  }
  .col-lg-11 {
    width: 45.8333333333%;
  }
  .col-lg-12 {
    width: 50%;
  }
  .col-lg-13 {
    width: 54.1666666667%;
  }
  .col-lg-14 {
    width: 58.3333333333%;
  }
  .col-lg-15 {
    width: 62.5%;
  }
  .col-lg-16 {
    width: 66.6666666667%;
  }
  .col-lg-17 {
    width: 70.8333333333%;
  }
  .col-lg-18 {
    width: 75%;
  }
  .col-lg-19 {
    width: 79.1666666667%;
  }
  .col-lg-20 {
    width: 83.3333333333%;
  }
  .col-lg-21 {
    width: 87.5%;
  }
  .col-lg-22 {
    width: 91.6666666667%;
  }
  .col-lg-23 {
    width: 95.8333333333%;
  }
  .col-lg-24 {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .col-md-1 {
    width: 4.1666666667%;
  }
  .col-md-2 {
    width: 8.3333333333%;
  }
  .col-md-3 {
    width: 12.5%;
  }
  .col-md-4 {
    width: 16.6666666667%;
  }
  .col-md-5 {
    width: 20.8333333333%;
  }
  .col-md-6 {
    width: 25%;
  }
  .col-md-7 {
    width: 29.1666666667%;
  }
  .col-md-8 {
    width: 33.3333333333%;
  }
  .col-md-9 {
    width: 37.5%;
  }
  .col-md-10 {
    width: 41.6666666667%;
  }
  .col-md-11 {
    width: 45.8333333333%;
  }
  .col-md-12 {
    width: 50%;
  }
  .col-md-13 {
    width: 54.1666666667%;
  }
  .col-md-14 {
    width: 58.3333333333%;
  }
  .col-md-15 {
    width: 62.5%;
  }
  .col-md-16 {
    width: 66.6666666667%;
  }
  .col-md-17 {
    width: 70.8333333333%;
  }
  .col-md-18 {
    width: 75%;
  }
  .col-md-19 {
    width: 79.1666666667%;
  }
  .col-md-20 {
    width: 83.3333333333%;
  }
  .col-md-21 {
    width: 87.5%;
  }
  .col-md-22 {
    width: 91.6666666667%;
  }
  .col-md-23 {
    width: 95.8333333333%;
  }
  .col-md-24 {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .col-sm-1 {
    width: 4.1666666667%;
  }
  .col-sm-2 {
    width: 8.3333333333%;
  }
  .col-sm-3 {
    width: 12.5%;
  }
  .col-sm-4 {
    width: 16.6666666667%;
  }
  .col-sm-5 {
    width: 20.8333333333%;
  }
  .col-sm-6 {
    width: 25%;
  }
  .col-sm-7 {
    width: 29.1666666667%;
  }
  .col-sm-8 {
    width: 33.3333333333%;
  }
  .col-sm-9 {
    width: 37.5%;
  }
  .col-sm-10 {
    width: 41.6666666667%;
  }
  .col-sm-11 {
    width: 45.8333333333%;
  }
  .col-sm-12 {
    width: 50%;
  }
  .col-sm-13 {
    width: 54.1666666667%;
  }
  .col-sm-14 {
    width: 58.3333333333%;
  }
  .col-sm-15 {
    width: 62.5%;
  }
  .col-sm-16 {
    width: 66.6666666667%;
  }
  .col-sm-17 {
    width: 70.8333333333%;
  }
  .col-sm-18 {
    width: 75%;
  }
  .col-sm-19 {
    width: 79.1666666667%;
  }
  .col-sm-20 {
    width: 83.3333333333%;
  }
  .col-sm-21 {
    width: 87.5%;
  }
  .col-sm-22 {
    width: 91.6666666667%;
  }
  .col-sm-23 {
    width: 95.8333333333%;
  }
  .col-sm-24 {
    width: 100%;
  }
}
@media screen and (max-width: 359px) {
  .col-xs-1 {
    width: 4.1666666667%;
  }
  .col-xs-2 {
    width: 8.3333333333%;
  }
  .col-xs-3 {
    width: 12.5%;
  }
  .col-xs-4 {
    width: 16.6666666667%;
  }
  .col-xs-5 {
    width: 20.8333333333%;
  }
  .col-xs-6 {
    width: 25%;
  }
  .col-xs-7 {
    width: 29.1666666667%;
  }
  .col-xs-8 {
    width: 33.3333333333%;
  }
  .col-xs-9 {
    width: 37.5%;
  }
  .col-xs-10 {
    width: 41.6666666667%;
  }
  .col-xs-11 {
    width: 45.8333333333%;
  }
  .col-xs-12 {
    width: 50%;
  }
  .col-xs-13 {
    width: 54.1666666667%;
  }
  .col-xs-14 {
    width: 58.3333333333%;
  }
  .col-xs-15 {
    width: 62.5%;
  }
  .col-xs-16 {
    width: 66.6666666667%;
  }
  .col-xs-17 {
    width: 70.8333333333%;
  }
  .col-xs-18 {
    width: 75%;
  }
  .col-xs-19 {
    width: 79.1666666667%;
  }
  .col-xs-20 {
    width: 83.3333333333%;
  }
  .col-xs-21 {
    width: 87.5%;
  }
  .col-xs-22 {
    width: 91.6666666667%;
  }
  .col-xs-23 {
    width: 95.8333333333%;
  }
  .col-xs-24 {
    width: 100%;
  }
}
.feature-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 1px;
}
@media screen and (min-width: 640px) {
  .feature-row {
    gap: 0 60px;
  }
}

.feature {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 640px) {
  .feature {
    font-size: 80px;
  }
}
@media screen and (min-width: 1601px) {
  .feature {
    font-size: 66px;
  }
}

.feature-tw {
  font-size: 18px;
  font-weight: 700;
  color: #3769ff;
}
@media screen and (min-width: 640px) {
  .feature-tw {
    font-size: 42px;
  }
}
@media screen and (min-width: 1601px) {
  .feature-tw {
    font-size: 35px;
  }
}

.feature-content {
  text-align: center;
}

#content .section.section_2 {
  background: #ffffff;
  overflow: hidden;
}

#content .section.section_2 h2 {
  color: #3769ff;
  line-height: 1.3;
}

#content .section.section_2 h2 span {
  vertical-align: middle;
}

@media screen and (max-width: 991px) {
  #content .section.section_2 .aims {
    padding: 1em;
  }
}
#content .section.section_2 .aims ul {
  text-align: center;
  padding: 0;
  margin: 0 0 3em;
}

#content .section.section_2 .aims ul > li {
  border-radius: 10px;
  padding: 1%;
  color: #ef611d;
  width: 27%;
  display: inline-block;
  text-align: center;
  vertical-align: top;
}

@media screen and (max-width: 991px) {
  #content .section.section_2 .aims ul > li {
    width: 100%;
    margin: 0 0 5em;
    padding: 0 0 3em;
  }
}
#content .section.section_2 .aims ul > li .box {
  margin: -3em 0;
}

@media screen and (max-width: 991px) {
  #content .section.section_2 .aims ul > li .box {
    margin: -1em 0 -3em;
  }
}
#content .section.section_2 .aims ul > li .box .text {
  background: #f3851a;
  margin: -6px 0 1em;
  color: #ffffff;
  font-size: 1.8em;
}

#content .section.section_2 .aims ul > li .box .text h4 {
  margin: 0 auto;
  line-height: 2;
  border-bottom: 2px solid #fff;
  display: inline;
}

#content .section.section_2 .aims ul > li .box .text h3 {
  margin: 0;
  font-size: 1.2em;
}

#content .section.section_2 .aims ul > li .box ol {
  text-align: left;
  padding: 0 0 3em 1em;
  font-size: 0.86em;
  list-style: disc;
}

@media screen and (max-width: 991px) {
  #content .section.section_2 .aims ul > li .box ol {
    padding: 0 1em 1.5em 1.5em;
    font-size: 1.5em;
  }
}
#content .section.section_2 .aims ul > li:nth-child(2) {
  color: #189532;
}

#content .section.section_2 .aims ul > li:nth-child(2) .box .text {
  background: #69b226;
  border-bottom: 5px solid #47880b;
}

#content .section.section_2 .aims ul > li:nth-child(3) {
  color: #015ca5;
}

#content .section.section_2 .aims ul > li:nth-child(3) .box .text {
  background: #0373b9;
  border-bottom: 5px solid #00416a;
}

.img-dragon {
  position: absolute;
  top: 320px;
  left: 39%;
  animation: dragon-move 2s infinite alternate-reverse;
}

.img-star {
  position: absolute;
  top: -160px;
  animation: dragon-move 2.5s infinite alternate-reverse;
}

@-webkit-keyframes dragon-move {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes dragon-move {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media (max-width: 768px) {
  .img-dragon {
    display: none;
  }
  .chart-titiimg {
    max-width: 80%;
  }
}
.cursor-pointer {
  cursor: pointer;
}

.swiper-content-2 .single-main-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-content-2 .single-main-swiper .swiper-slide {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.swiper-content-2 .single-main-swiper .swiper-slide img {
  height: auto;
  max-width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.swiper-content-2 .single-main-swiper .swiper-button-prev,
.swiper-content-2 .single-main-swiper .swiper-button-next {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .swiper-content-2 .single-main-swiper .swiper-button-prev,
  .swiper-content-2 .single-main-swiper .swiper-button-next {
    top: 150px;
    width: 30px;
    height: 30px;
  }
}

.swiper-content-2 .single-main-swiper .swiper-button-prev {
  background: url("../images/Lbutton.gif") center/cover;
}
@media screen and (max-width: 767px) {
  .swiper-content-2 .single-main-swiper .swiper-button-prev {
    left: 0px;
  }
}

.swiper-content-2 .single-main-swiper .swiper-button-next {
  background: url("../images/Rbutton.gif") center/cover;
}
@media screen and (max-width: 767px) {
  .swiper-content-2 .single-main-swiper .swiper-button-next {
    right: 0px;
  }
}

.swiper-content-2 .single-main-swiper .swiper-button-prev::after,
.swiper-content-2 .single-main-swiper .swiper-button-next::after {
  display: none;
}