@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

img {
  display: block;
  border: none;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: black;
}

body, html {
  overflow-x: hidden;
}

body {
  position: relative;
  font-family: 'Noto Sans TC', "Microsoft JhengHei", "Apple LiGothic Medium", "PMingLiU", "sans-serif", "serif";
  color: #211714;
}

nav > div {
  position: relative;
  width: 100%;
}

nav > div .menuBar {
  height: 150px;
}

@media (max-width: 1400px) {
  nav > div .menuBar {
    height: 100px;
  }
}

@media (max-width: 980px) {
  nav > div .menuBar {
    background-color: #000;
    height: 80px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 20px;
    -webkit-box-shadow: 0px 10px 3px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 10px 3px 0px rgba(0, 0, 0, 0.2);
  }
}

nav > div .menuBar .menu {
  display: none;
}

@media (max-width: 980px) {
  nav > div .menuBar .menu {
    position: absolute;
    top: 20px;
    right: 20px;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-align: center;
    flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 100;
  }
}

nav > div .menuBar .menu .lines {
  width: 26px;
  height: 20px;
  position: relative;
  margin-bottom: 10px;
}

nav > div .menuBar .menu .lines > div {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #dcdcdc;
  -webkit-transform-origin: center;
          transform-origin: center;
  top: calc(50% - 1px);
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
}

nav > div .menuBar .menu .lines > :first-child {
  top: 0;
}

nav > div .menuBar .menu .lines > :last-child {
  top: auto;
  bottom: 0;
}

nav > div .menuBar .menu p {
  font-size: 14px;
  line-height: 1;
  font-family: 'Noto Sans TC', sans-serif;
  letter-spacing: 1.5;
  color: #dcdcdc;
  font-weight: 300;
}

nav > div .menuBar .logo {
  display: none;
}

@media (max-width: 980px) {
  nav > div .menuBar .logo {
    display: block;
    color: #fff;
    font-size: 20px;
    letter-spacing: 3px;
  }
}

nav > div .navBody {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

@media (max-width: 980px) {
  nav > div .navBody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #fff;
    background-color: #211714;
    width: 100%;
    height: 100vh;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: auto;
    z-index: 11;
    -webkit-transform: translate(100%, 0%);
            transform: translate(100%, 0%);
  }
}

nav > div .navBody .logo {
  display: none;
}

@media (max-width: 980px) {
  nav > div .navBody .logo {
    display: block;
    top: auto;
    right: auto;
    position: relative;
    margin: 30px auto;
    width: 100px;
  }
}

nav > div .navBody .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 95%;
  height: 100%;
}

@media (max-width: 1500px) {
  nav > div .navBody .links {
    width: 97%;
  }
}

@media (max-width: 980px) {
  nav > div .navBody .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    height: 100%;
    margin-top: 0px;
  }
}

nav > div .navBody .links > div {
  position: relative;
}

@media (max-width: 980px) {
  nav > div .navBody .links > div {
    top: auto;
    left: auto;
    margin: 10px;
  }
}

nav > div .navBody .links > div:hover > a:before, nav > div .navBody .links > div:hover .hoverList:before {
  opacity: 1;
}

nav > div .navBody .links > div:hover > div.list {
  display: block;
}

nav > div .navBody .links > div a, nav > div .navBody .links > div .hoverList {
  padding: 27px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 3.6px;
}

@media (max-width: 980px) {
  nav > div .navBody .links > div a, nav > div .navBody .links > div .hoverList {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    padding: 0;
    color: #fff;
  }
}

nav > div .navBody .links > div a:before, nav > div .navBody .links > div .hoverList:before {
  position: absolute;
  content: '';
  display: inline-block;
  width: 70%;
  height: 2px;
  left: 50%;
  bottom: -7px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #bb8574;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

@media (max-width: 980px) {
  nav > div .navBody .links > div a:before, nav > div .navBody .links > div .hoverList:before {
    display: none;
  }
}

nav > div .navBody .links > div .hoverList:after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("../../../fita_img/202111_TW_minXiNan/_downloadIcon-black.svg") no-repeat center center/contain;
  z-index: 2;
}

@media (max-width: 980px) {
  nav > div .navBody .links > div .hoverList:after {
    width: 6px;
    height: 6px;
    background: url("../../../fita_img/202111_TW_minXiNan/_downIcon.svg") no-repeat center center/contain;
    bottom: auto;
    top: 27px;
  }
}

nav > div .navBody .links > div .hoverList:before {
  bottom: 20px;
}

nav > div .navBody .links > div > div.list {
  display: none;
  position: absolute;
  top: 78px;
  left: 0;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  padding: 20px 0;
  background-color: #fff;
  border-radius: 28px;
  z-index: 1;
}

@media (max-width: 980px) {
  nav > div .navBody .links > div > div.list {
    position: relative;
    top: 0;
    display: block;
    background-color: transparent;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    padding: 0;
    padding-top: 20px;
  }
}

nav > div .navBody .links > div > div.list > div:not(:first-child):not(:last-child) a {
  border: 1px solid #ececec;
}

@media (max-width: 980px) {
  nav > div .navBody .links > div > div.list > div:not(:first-child):not(:last-child) a {
    border: none;
  }
}

nav > div .navBody .links > div > div.list > div:hover a {
  background-color: #ececec;
}

nav > div .navBody .links > div > div.list a {
  display: block;
  padding: 13px 48px;
  line-height: 24px;
}

@media (max-width: 980px) {
  nav > div .navBody .links > div > div.list a {
    padding: 10px;
    font-size: 14px;
    line-height: 1;
  }
}

.menuActive {
  overflow: hidden;
}

.menuActive nav > div .menuBar .menu .lines > div {
  top: calc(50% - 1px);
}

.menuActive nav > div .menuBar .menu .lines > :first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menuActive nav > div .menuBar .menu .lines > :nth-child(2) {
  width: 0px;
}

.menuActive nav > div .menuBar .menu .lines > :last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menuActive nav > div .menuBar .logo {
  visibility: hidden;
  opacity: 0;
}

.menuActive nav > div .navBody {
  -webkit-transform: none;
          transform: none;
}

.menuActive nav > div .navBody > * {
  opacity: 1;
}

@media screen and (max-width: 980px) {
  .menuActive nav > div .navBody {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.gotop {
  position: fixed;
  right: -85px;
  bottom: 40px;
  z-index: 20;
  width: 64px;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-align: center;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
}

.gotop.show {
  right: 30px;
  right: 20px;
}

@media screen and (max-width: 980px) {
  .gotop.show {
    right: 10px;
  }
}

@media screen and (max-width: 1366px) {
  .gotop.end {
    bottom: 250px;
  }
}

@media screen and (max-width: 980px) {
  .gotop.end {
    bottom: 40px;
  }
}

@media (max-width: 980px) {
  .gotop img {
    width: 50px;
  }
}

.lottery {
  position: fixed;
  left: 0;
  bottom: 240px;
  width: 65px;
  z-index: 10;
}

@media (max-width: 1600px) {
  .lottery {
    bottom: 145px;
  }
}

@media (max-width: 1366px) {
  .lottery {
    bottom: 155px;
  }
}

@media (max-width: 980px) {
  .lottery {
    bottom: 0;
    left: 50%;
    width: 200px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.lottery .pc {
  display: block;
}

@media (max-width: 980px) {
  .lottery .pc {
    display: none;
  }
}

.lottery .mobile {
  display: none;
}

@media (max-width: 980px) {
  .lottery .mobile {
    display: block;
  }
}

.lottery img {
  width: 100%;
  height: 100%;
}

.container {
  max-width: 1360px;
  padding: 0 15px;
  margin: 0 auto;
}

@media (max-width: 1500px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 980px) {
  .container {
    padding: 0 15px;
  }
}

.bgWrapper {
  background-image: url("../../../fita_img/202111_TW_minXiNan/texture.jpg");
  width: 100%;
}

.carousel {
  width: 73.5%;
}

@media (max-width: 980px) {
  .carousel {
    width: 100%;
  }
}

.carousel figure {
  width: 100%;
  height: 729px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 1600px) {
  .carousel figure {
    height: 40.6vw;
  }
}

@media (max-width: 1400px) {
  .carousel figure {
    height: 41.6vw;
  }
}

@media (max-width: 980px) {
  .carousel figure {
    height: calc(68.846vw - 44.8px);
  }
}

.carousel .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
}

.carousel .slick-dots li {
  width: 13px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #000;
}

.carousel .slick-dots li:not(:last-child) {
  margin-right: 24px;
}

@media (max-width: 980px) {
  .carousel .slick-dots li:not(:last-child) {
    margin-right: 14px;
  }
}

.carousel .slick-dots li.slick-active {
  background-color: #000;
}

.carousel .slick-dots li button {
  display: none;
}

@media (max-width: 980px) {
  .carousel .slick-dots li {
    width: 10px;
    height: 10px;
  }
}

.carousel2-box {
  position: relative;
  z-index: 1;
}

.carousel2-box .controller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 53px;
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .carousel2-box .controller {
    margin-bottom: 15px;
  }
}

@media (max-width: 600px) {
  .carousel2-box .controller {
    margin-right: 10px;
  }
}

.carousel2-box .controller .slick-arrow {
  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;
}

.carousel2-box .controller .slick-arrow img {
  width: 26px;
  height: 26px;
}

.carousel2-box .controller .slick-arrow.arr-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.carousel2-box .controller .num {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3.6px;
  line-height: 30px;
  margin: 0 18px;
}

.carousel2-box .carousel2 .item {
  width: 338px;
  margin: 0 53px;
  padding-bottom: 10px;
}

@media (max-width: 600px) {
  .carousel2-box .carousel2 .item {
    margin: 0 10px;
  }
}

.carousel2-box .carousel2 .item a > img {
  width: 104px;
  margin-bottom: 7px;
}

.carousel2-box .carousel2 .item figure {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 27px;
}

.carousel2-box .carousel2 .item .context {
  color: #211714;
}

.carousel2-box .carousel2 .item .context .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 2px;
}

.carousel2-box .carousel2 .item .context .desc {
  margin-bottom: 31px;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 1px;
}

.carousel2-box .carousel2 .item .context .time {
  position: relative;
  width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 1.4px;
}

.carousel2-box .carousel2 .item .context .time:after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -3px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #000 0, #000 7px, transparent 7px, transparent 12px);
}

.sec {
  position: relative;
  padding: 20px 0;
}

@media (max-width: 1600px) {
  .sec {
    padding: 20px 0 40px;
  }
}

.sec .heading {
  position: relative;
  display: block;
  width: 172px;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  .sec .heading {
    width: 140px;
  }
}

.sec .heading > img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.sec .heading .deco {
  position: absolute;
  display: inline-block;
}

.sec .sub {
  margin-top: 45px;
  margin-bottom: 72px;
  text-align: center;
}

@media (max-width: 1600px) {
  .sec .sub {
    margin-top: 40px;
  }
}

.sec .sub span {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 10px;
}

@media (max-width: 1600px) {
  .sec .sub span {
    margin-right: 0;
    margin-bottom: 25px;
    font-size: 20px;
  }
}

.sec .sub span:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -7px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #999 0, #999 7px, transparent 7px, transparent 12px);
}

.sec .sub > p {
  display: inline-block;
}

@media (max-width: 980px) {
  .sec .sub > p {
    display: block;
  }
}

.sec .sub > p img {
  width: 301px;
}

@media (max-width: 980px) {
  .sec .sub > p img {
    margin: 0 auto;
    width: 280px;
  }
}

@media (max-width: 1366px) {
  .sec .sub > p img {
    width: 240px;
  }
}

.scroll {
  position: relative;
}

.scroll img {
  position: relative;
  width: 234px;
  margin: 0 auto;
  z-index: 1;
}

.sec1 {
  padding: 0px 0 40px;
}

@media (max-width: 980px) {
  .sec1 {
    padding: 20px 0 40px;
  }
}

.sec1 .sec-box {
  max-width: 1600px;
  margin: 0px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
}

@media (max-width: 1600px) {
  .sec1 .sec-box {
    padding: 0 100px;
  }
}

@media (max-width: 1400px) {
  .sec1 .sec-box {
    padding: 0 60px;
  }
}

@media (max-width: 980px) {
  .sec1 .sec-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 20px;
    margin-top: 50px;
  }
}

.sec1 .mainVisual {
  position: relative;
  width: 30%;
}

@media (max-width: 1600px) {
  .sec1 .mainVisual {
    width: 19%;
  }
}

@media (max-width: 1400px) {
  .sec1 .mainVisual {
    width: 30%;
  }
}

@media (max-width: 980px) {
  .sec1 .mainVisual {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 0;
  }
}

.sec1 .mainVisual .logo {
  max-width: 315px;
  margin: 0 auto 79px;
}

@media (max-width: 1400px) {
  .sec1 .mainVisual .logo {
    width: 57%;
    margin: 0 auto 4vw;
  }
}

@media (max-width: 980px) {
  .sec1 .mainVisual .logo {
    width: 70%;
    max-width: 400px;
    margin: 0 auto 60px;
  }
}

.sec1 .mainVisual .logo img {
  width: 100%;
}

@media (max-width: 980px) {
  .sec1 .mainVisual .logo img {
    width: 80%;
    margin: 14px -14px 0 auto;
    margin-bottom: 0;
  }
}

.sec1 .mainVisual .illustrator {
  width: 100%;
}

@media (max-width: 980px) {
  .sec1 .mainVisual .illustrator {
    position: absolute;
    left: 27px;
    bottom: 50px;
    width: unset;
  }
}

.sec1 .mainVisual .illustrator .dialogue {
  max-width: 138px;
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .sec1 .mainVisual .illustrator .dialogue {
    width: 40%;
  }
}

@media (max-width: 980px) {
  .sec1 .mainVisual .illustrator .dialogue {
    width: 75px;
    margin: 0 37px 0 auto;
  }
}

.sec1 .mainVisual .illustrator .person {
  max-width: 231px;
  margin: 0 auto 0 30%;
}

@media (max-width: 1400px) {
  .sec1 .mainVisual .illustrator .person {
    width: 60%;
  }
}

@media (max-width: 1366px) {
  .sec1 .mainVisual .illustrator .person {
    width: 188px;
    margin: 0 auto 0 20%;
  }
}

@media (max-width: 1200px) {
  .sec1 .mainVisual .illustrator .person {
    width: 160px;
  }
}

@media (max-width: 980px) {
  .sec1 .mainVisual .illustrator .person {
    width: 125px;
    margin: 0;
  }
}

.sec2 {
  position: relative;
  padding: 0 0 300px 0;
}

@media (max-width: 980px) {
  .sec2 {
    padding: 0 0 70px 0;
  }
}

.sec2:before, .sec2:after {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0%;
  left: 80px;
  width: 190px;
  height: 210px;
  background: url("../../../fita_img/202111_TW_minXiNan/deco-01.svg") no-repeat center center/contain;
  z-index: 1;
}

@media (max-width: 1400px) {
  .sec2:before, .sec2:after {
    width: 150px;
  }
}

@media (max-width: 980px) {
  .sec2:before, .sec2:after {
    display: none;
  }
}

.sec2:after {
  bottom: 14%;
  left: auto;
  right: 80px;
  width: 191px;
  height: 88px;
  background: url("../../../fita_img/202111_TW_minXiNan/deco-02.png") no-repeat center center/contain;
}

@media (max-width: 1400px) {
  .sec2:after {
    width: 150px;
  }
}

.sec2 .heading .deco {
  width: 129px;
  top: 39px;
  left: 198px;
}

@media (max-width: 1600px) {
  .sec2 .heading .deco {
    width: 100px;
    left: 160px;
  }
}

.sec2 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 157px 7px;
}

@media (max-width: 1100px) {
  .sec2 .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sec2 .item {
  width: calc(100% / 3 - 65px * 2 / 3);
  min-width: 225px;
  margin-bottom: 7px;
}

@media (max-width: 1100px) {
  .sec2 .item {
    margin: 0 20px 30px;
  }
}

.sec2 .item .img-box {
  position: relative;
  width: 225px;
  margin: 0 auto 23px;
}

.sec2 .item .img-box .feature-photo {
  width: 100%;
}

.sec2 .item .img-box .flag-title {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
}

.sec2 .item .content p {
  color: #211714;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 1.8px;
}

@media (max-width: 980px) {
  .sec2 .item .content p {
    font-size: 16px;
    line-height: 1.8;
  }
}

.sec3 {
  position: relative;
  padding: 0 0 180px 0;
}

@media (max-width: 980px) {
  .sec3 {
    padding: 0 0 90px 0;
  }
}

.sec3 .bg {
  position: absolute;
  top: -327px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  height: 163%;
  background-image: url("../../../fita_img/202111_TW_minXiNan/dec0-cloud-2-bottom.png");
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media (max-width: 980px) {
  .sec3 .bg {
    top: -534px;
    background-size: 2800px;
  }
}

.sec3 .bg:before {
  content: '';
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background-image: url("../../../fita_img/202111_TW_minXiNan/dec0-cloud-2-front.png");
  background-position: center top;
  background-size: 1920px auto;
  background-repeat: no-repeat;
}

@media (max-width: 980px) {
  .sec3 .bg:before {
    top: 323px;
  }
}

.sec3 .bg .img_box {
  position: absolute;
  bottom: 181px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  height: 20%;
  -webkit-mask: url("../../../fita_img/202111_TW_minXiNan/clip-path.svg");
          mask: url("../../../fita_img/202111_TW_minXiNan/clip-path.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center top;
          mask-position: center top;
  -webkit-mask-size: 1920px auto;
          mask-size: 1920px auto;
}

@media (max-width: 1600px) {
  .sec3 .bg .img_box {
    bottom: 154px;
  }
}

@media (max-width: 1500px) {
  .sec3 .bg .img_box {
    bottom: 171px;
  }
}

@media (max-width: 1366px) {
  .sec3 .bg .img_box {
    bottom: 154px;
  }
}

@media (max-width: 980px) {
  .sec3 .bg .img_box {
    display: none;
  }
}

.sec3 .bg img {
  position: absolute;
  bottom: 25%;
  right: 150px;
  width: 146px;
}

@media (max-width: 1366px) {
  .sec3 .bg img {
    bottom: 27%;
    width: 126px;
  }
}

.sec3 .heading .deco {
  width: 78px;
  top: 0px;
  left: -77px;
}

@media (max-width: 1600px) {
  .sec3 .heading .deco {
    width: 65px;
    top: 2px;
    left: -73px;
  }
}

.sec3 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 157px 42px;
}

@media (max-width: 980px) {
  .sec3 .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 40px 0;
  }
}

.sec3 .row .item {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(100% / 2 - 122px / 2);
  min-width: 400px;
  margin-top: calc(41px + 17px);
}

@media (max-width: 1200px) {
  .sec3 .row .item {
    min-width: 360px;
  }
}

@media (max-width: 1100px) {
  .sec3 .row .item {
    min-width: 300px;
  }
}

@media (max-width: 980px) {
  .sec3 .row .item {
    width: 100%;
    padding: 0 10px;
  }
}

.sec3 .row .item .body {
  position: relative;
  background-color: #fff;
  border-radius: 117px;
  min-height: 567px;
  padding: 84px 68px 42px 68px;
}

@media (max-width: 1366px) {
  .sec3 .row .item .body {
    padding: 84px 40px 42px 40px;
  }
}

@media (max-width: 1200px) {
  .sec3 .row .item .body {
    padding: 84px 20px 42px 20px;
  }
}

@media (max-width: 980px) {
  .sec3 .row .item .body {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 15px;
    min-height: auto;
  }
}

.sec3 .row .item .body > span {
  display: block;
  position: absolute;
}

.sec3 .row .item .body > span.border {
  width: calc(100% - 156px);
  height: 20px;
  background: url("../../../fita_img/202111_TW_minXiNan/_borderDeco.svg") repeat-x;
}

.sec3 .row .item .body > span.top {
  top: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.sec3 .row .item .body > span.bottom {
  bottom: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0) rotate(180deg);
          transform: translate(-50%, 0) rotate(180deg);
}

.sec3 .row .item .body > span.left {
  background: url("../../../fita_img/202111_TW_minXiNan/_borderDeco2.svg") repeat-y;
  height: calc(100% - 156px);
  width: 20px;
  top: 50%;
  left: -10px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.sec3 .row .item .body > span.right {
  background: url("../../../fita_img/202111_TW_minXiNan/_borderDeco2.svg") repeat-y;
  height: calc(100% - 156px);
  width: 20px;
  top: 50%;
  right: -10px;
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}

.sec3 .row .item .body > span.corner {
  width: 130px;
  height: 130px;
  background: url("../../../fita_img/202111_TW_minXiNan/_cornerDeco.svg") no-repeat center center;
  background-size: contain;
}

.sec3 .row .item .body > span.lt {
  top: -10px;
  left: -10px;
}

.sec3 .row .item .body > span.rt {
  top: -10px;
  right: -10px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sec3 .row .item .body > span.rb {
  right: -10px;
  bottom: -10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.sec3 .row .item .body > span.lb {
  left: -10px;
  bottom: -10px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media screen and (max-width: 1400px) {
  .sec3 .row .item .body {
    max-width: 600px;
  }
  .sec3 .row .item .body > div > .subTitle {
    width: 200px;
  }
  .sec3 .row .item .body > div > .title {
    font-size: 36px;
  }
  .sec3 .row .item .body > div > .title > i {
    width: 35px;
    height: 50px;
  }
  .sec3 .row .item .body > div .info {
    font-size: 16px;
    margin-top: 30px;
  }
  .sec3 .row .item .body > div .nextBtn {
    width: 200px;
  }
  .sec3 .row .item .body > span.border.bottom {
    height: 30px;
    background-size: auto 80%;
  }
  .sec3 .row .item .body > span.corner {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 980px) {
  .sec3 .row .item .body {
    border-radius: 50px;
  }
  .sec3 .row .item .body > div > .title {
    font-size: 28px;
  }
  .sec3 .row .item .body > div > .title > i {
    width: 25px;
    height: 35px;
    -webkit-transform: translate(0, 10%);
            transform: translate(0, 10%);
  }
  .sec3 .row .item .body > div .subTitle {
    width: 180px;
  }
  .sec3 .row .item .body > div > .info {
    margin-top: 20px;
  }
  .sec3 .row .item .body > div > .nextBtn {
    margin-top: 20px;
    width: 150px;
  }
  .sec3 .row .item .body > div > .closeBtn {
    width: 25px;
    height: 25px;
    -webkit-transform: translate(0, -50px);
            transform: translate(0, -50px);
  }
  .sec3 .row .item .body > span.border {
    width: calc(100% - 60px);
    height: 20px;
  }
  .sec3 .row .item .body > span.left {
    height: calc(100% - 60px);
    width: 20px;
  }
  .sec3 .row .item .body > span.right {
    height: calc(100% - 60px);
    width: 20px;
  }
  .sec3 .row .item .body > span.corner {
    width: 50px;
    height: 50px;
  }
  .sec3 .row .item .body > span.lt {
    top: -9px;
    left: -8px;
  }
  .sec3 .row .item .body > span.rt {
    top: -9px;
    right: -8px;
  }
  .sec3 .row .item .body > span.rb {
    right: -8px;
    bottom: -9px;
  }
  .sec3 .row .item .body > span.lb {
    left: -8px;
    bottom: -9px;
  }
}

.sec3 .row .item .flag-title {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 269px;
}

@media (max-width: 1100px) {
  .sec3 .row .item .flag-title {
    width: 220px;
  }
}

.sec3 .row .item .prize-img {
  width: 248px;
  margin: 0 auto;
  margin-bottom: 12px;
}

@media (max-width: 1100px) {
  .sec3 .row .item .prize-img {
    width: 200px;
  }
}

@media (max-width: 980px) {
  .sec3 .row .item .prize-img {
    width: calc(6.451612903225805vw + 137px);
  }
}

.sec3 .row .item .title {
  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;
  margin-bottom: 10px;
  margin-top: 40px;
}

.sec3 .row .item .title.main {
  margin-top: 0px;
}

.sec3 .row .item .title.main > p {
  color: #98000f;
}

.sec3 .row .item .title p {
  color: #000;
  margin-right: 5px;
  font-size: 30px;
  font-weight: 700;
  line-height: 39px;
  letter-spacing: 1.8px;
}

.sec3 .row .item .title .amount {
  font-size: 16px;
  font-weight: 700;
  padding: 6px 6px;
  color: #fff;
  background-color: #000;
  border-radius: 500px;
}

.sec3 .row .item .desc {
  position: relative;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
  text-align: center;
  z-index: 1;
}

@media (max-width: 980px) {
  .sec3 .row .item .desc {
    font-size: 16px;
    max-width: 360px;
    margin: 0 auto 8px;
  }
}

.sec3 .row .item .desc-prize {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
  text-align: center;
  z-index: 1;
}

@media (max-width: 980px) {
  .sec3 .row .item .desc-prize {
    font-size: 16px;
  }
}

.sec3 .row .item .desc-prize span {
  color: #98000f;
}

.sec3 .row .item .wrap-white {
  width: 100%;
}

.sec4 {
  position: relative;
  padding: 0 0 150px 0;
}

.sec4:before {
  content: '';
  display: inline-block;
  position: absolute;
  right: 0;
  top: 33%;
  width: 662px;
  height: 221px;
  background: url("../../../fita_img/202111_TW_minXiNan/deco-cloud2.png") no-repeat center center/contain;
}

@media (max-width: 980px) {
  .sec4:before {
    width: 360px;
  }
}

.sec4:after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -115px;
  width: 456px;
  height: 272px;
  background: url("../../../fita_img/202111_TW_minXiNan/dec0-03.png") no-repeat center center/contain;
}

@media (max-width: 1366px) {
  .sec4:after {
    width: 400px;
  }
}

@media (max-width: 1200px) {
  .sec4:after {
    left: -60px;
  }
}

@media (max-width: 980px) {
  .sec4:after {
    width: 258px;
    left: -141px;
    bottom: 16px;
  }
}

.sec4 .heading {
  width: 219px;
  margin: 0 auto;
  margin-bottom: 105px;
}

@media (max-width: 1600px) {
  .sec4 .heading {
    width: 186px;
    margin-bottom: 60px;
  }
}

@media (max-width: 980px) {
  .sec4 .heading {
    margin-bottom: 40px;
  }
}

.sec4 .heading .deco {
  width: 105px;
  top: 36px;
  left: 246px;
}

@media (max-width: 1600px) {
  .sec4 .heading .deco {
    width: 78px;
    top: 30px;
    left: 189px;
  }
}

.sec5 {
  padding: 0 0 75px 0;
}

@media (max-width: 980px) {
  .sec5 {
    padding: 0 0 0px 0;
  }
}

.sec5 .heading {
  position: relative;
  width: 326px;
  margin: 0 auto;
}

.sec5 .heading > img {
  position: relative;
  width: 171px;
  z-index: 2;
}

@media (max-width: 980px) {
  .sec5 .heading > img {
    width: 150px;
  }
}

.sec5 .heading .deco {
  width: 91px;
  top: -55px;
  right: 251px;
  z-index: 3;
}

.sec5 .heading .bg-deco-sm {
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 980px) {
  .sec5 .heading .bg-deco-sm {
    -webkit-transform: translate(-50%, -47%);
            transform: translate(-50%, -47%);
  }
}

@media (max-width: 385px) {
  .sec5 .heading .bg-deco-sm {
    display: none;
  }
}

.sec5 .heading .bg-deco-sm:after {
  content: '';
  position: absolute;
  top: 85%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: calc(100% - 15px);
  padding-bottom: calc(100% - 15px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 50%;
}

.sec5 .heading .bg-deco-md {
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -44%);
          transform: translate(-50%, -44%);
  width: 100%;
  padding-bottom: 60%;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 980px) {
  .sec5 .heading .bg-deco-md {
    -webkit-transform: translate(-50%, -51%);
            transform: translate(-50%, -51%);
  }
}

@media (max-width: 385px) {
  .sec5 .heading .bg-deco-md {
    display: none;
  }
}

.sec5 .heading .bg-deco-md:after {
  content: '';
  position: absolute;
  top: 89%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  padding-bottom: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 50%;
}

.sec5 .content-box {
  position: relative;
  padding: 60px;
  font-weight: 400;
}

@media (max-width: 980px) {
  .sec5 .content-box {
    padding: 60px 30px;
  }
}

@media (max-width: 600px) {
  .sec5 .content-box {
    padding: 60px 20px;
  }
}

.sec5 .content-box .bg {
  pointer-events: none;
}

.sec5 .content-box .bg:before, .sec5 .content-box .bg:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border: 2px solid #000;
}

@media (max-width: 385px) {
  .sec5 .content-box .bg:before, .sec5 .content-box .bg:after {
    top: 48%;
    height: calc(104% - 15px);
    border-radius: 500px 500px 0 0;
  }
}

.sec5 .content-box .bg:before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
}

@media (max-width: 385px) {
  .sec5 .content-box .bg:before {
    height: calc(104%);
  }
}

.sec5 .content-box .bg .overlay-sm {
  position: absolute;
  top: -0.2%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(326px - 6px);
  height: 10px;
  background: url("../../../fita_img/202111_TW_minXiNan/texture.jpg");
  z-index: 1;
}

@media (max-width: 600px) {
  .sec5 .content-box .bg .overlay-sm {
    -webkit-transform: translate(-50%, -38%);
            transform: translate(-50%, -38%);
  }
}

@media (max-width: 385px) {
  .sec5 .content-box .bg .overlay-sm {
    display: none;
  }
}

.sec5 .content-box .bg .overlay-md {
  position: absolute;
  top: 0.1%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(326px - 24px);
  height: 14px;
  background: url("../../../fita_img/202111_TW_minXiNan/texture.jpg");
  z-index: 1;
}

@media (max-width: 385px) {
  .sec5 .content-box .bg .overlay-md {
    display: none;
  }
}

.sec5 .content-box .bg .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 95%;
  height: 95%;
}

@media (max-width: 980px) {
  .sec5 .content-box .bg .frame {
    width: 95%;
    height: 98%;
  }
}

@media (max-width: 600px) {
  .sec5 .content-box .bg .frame {
    width: 92%;
    height: 98%;
  }
}

.sec5 .content-box .bg .frame .left,
.sec5 .content-box .bg .frame .right,
.sec5 .content-box .bg .frame .bottom,
.sec5 .content-box .bg .frame .top {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
}

.sec5 .content-box .bg .frame .right {
  right: 0;
  top: auto;
  bottom: 0;
}

.sec5 .content-box .bg .frame .bottom {
  top: auto;
  right: auto;
  left: 0;
  bottom: 0;
}

.sec5 .content-box .bg .frame .left {
  left: 0;
  right: auto;
  top: auto;
}

.sec5 .content-box .listItem {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-align: start;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  margin-bottom: 20px;
}

.sec5 .content-box .listItem .num {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  width: 16px;
  height: 30px;
  text-align: right;
  margin-right: 5px;
}

.sec5 .content-box .listItem > p {
  width: calc(100% - 21px);
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 1px;
  text-align: left;
  word-break: break-word;
}

.sec5 .content-box .listItem > p span {
  font-weight: 700;
}

.footer {
  position: relative;
  padding: 170px 0 28px 0;
}

@media (max-width: 980px) {
  .footer {
    padding: 170px 0 74px 0;
    margin-top: -40px;
  }
}

.footer:before, .footer:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: -27px;
  left: 69px;
  background-image: url("../../../fita_img/202111_TW_minXiNan/deco-04.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 219px;
  height: 213px;
  z-index: 1;
}

@media (max-width: 1700px) {
  .footer:before, .footer:after {
    top: -45px;
    width: 200px;
  }
}

@media (max-width: 1500px) {
  .footer:before, .footer:after {
    width: 160px;
  }
}

@media (max-width: 980px) {
  .footer:before, .footer:after {
    display: none;
  }
}

.footer:after {
  top: -56px;
  left: auto;
  right: 170px;
  background-image: url("../../../fita_img/202111_TW_minXiNan/deco-05.svg");
  width: 87px;
  height: 164px;
}

@media (max-width: 1500px) {
  .footer:after {
    right: 80px;
    width: 66px;
  }
}

.footer .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.footer .bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .footer .bg img {
    width: 150%;
  }
}

@media (max-width: 600px) {
  .footer .bg img {
    width: 200%;
  }
}

.footer .us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}

.footer .us .assign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1200px) {
  .footer .us .assign {
    width: 100%;
    margin-bottom: 20px;
  }
}

.footer .us .assign > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .us .assign > li:not(:last-child) {
  margin-right: 43px;
}

@media (max-width: 670px) {
  .footer .us .assign > li {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-bottom: 15px;
  }
}

.footer .us .assign > li > p {
  font-size: 15px;
  letter-spacing: 5.7px;
  font-weight: 500;
  line-height: 30px;
  margin-right: 20px;
}

.footer .us .assign .map {
  width: 172px;
}

.footer .us .assign .jwi {
  width: 187px;
}

.footer .us .subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 120px) {
  .footer .us .subscribe {
    width: 100%;
  }
}

.footer .us .subscribe > p {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  font-weight: 500;
  letter-spacing: 5.7px;
}

@media (max-width: 980px) {
  .footer .us .subscribe > p {
    font-size: 15px;
  }
}

.footer .us .subscribe .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .us .subscribe .logos .logo:not(:last-child) {
  margin-right: 26px;
}

@media (max-width: 600px) {
  .footer .us .subscribe .logos .logo:not(:last-child) {
    margin-right: 20px;
  }
}

.footer .us .subscribe .logos .logo img {
  width: 60px;
  height: 60px;
}

@media (max-width: 600px) {
  .footer .us .subscribe .logos .logo img {
    width: 50px;
    height: 50px;
  }
}

.footer .copy-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .copy-info .copyright {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 3.3px;
}

@media (max-width: 980px) {
  .footer .copy-info .copyright {
    width: 100%;
    margin-bottom: 15px;
  }
}

.footer .copy-info .privary {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 3.3px;
  font-weight: 500;
}

@media (max-width: 980px) {
  .footer .copy-info .privary {
    width: 100%;
  }
}

.lightBox {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 100;
  width: 100%;
  min-height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -webkit-transition: opacity ease .3s;
  transition: opacity ease .3s;
  background-color: rgba(0, 0, 0, 0.5);
}

.lightBox.show {
  pointer-events: visible;
  visibility: visible;
  display: block;
  opacity: 1;
}

.lightboxActive {
  overflow: hidden;
}
/*# sourceMappingURL=index.css.map */