@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@100;400;500;600;700&display=swap);
* {
  font-family: "Noto Sans TC", serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  outline: none;
}
header {
  top: 0;
  width: 640px;
  margin: 0 auto;
  padding: 0 30px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  z-index: 999;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.header-h {
  width: 640px;
  position: relative;
  height: 100px;
  display: block;
}
/*header .expend{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .expend div{
    position: absolute;
    background-color: #c1c1c1;
    width: 40px;
    height: 5px;
    margin: 5px 0;
    border-radius: 5px;
}
header .expend div:nth-child(1){
    top: 5px;
}
header .expend div:nth-child(2),
header .expend div:nth-child(3){
    top: 15px;
}
header .expend div:nth-child(4){
    top: 25px;
}*/
.expend {
  position: absolute;
  width: 45px;
  height: 100px;
  margin-top: 0px;
  top: 0;
  padding-top: 35px;
  right: 20px;
  cursor: pointer;
  z-index: 1003;
}

.expend span {
  position: absolute;
  display: block;
  height: 5px;
  width: 40px;
  background: #c1c1c1;
  border-radius: 20px;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.expend span:nth-child(2),
.expend span:nth-child(3) {
  margin-top: 10px;
}
.expend span:nth-child(4) {
  margin-top: 20px;
}
.open span:nth-child(2) {
  transform: rotate(45deg);
}
.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.open span:nth-child(1),
.open span:nth-child(4) {
  opacity: 0;
}
.close {
  opacity: 1;
}
.close,
.open {
  transition: 0.5s;
}
.expend.open span {
  /*background: #fff;*/
}

.menuExpend {
  position: fixed;
  background-color: rgb(245, 232, 204);
  width: 640px;
  z-index: 998;
  top: -120%;
  left: 50%;
  margin-left: -320px;
  transition: all 0.5s ease-in-out;
  padding-top: 100px;
  /*padding:100px 45px 0px 45px;*/
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
.menuBtn {
  position: relative;
  color: #000;
  width: 100%;
  flex-direction: column;
  font-size: 30px;
  font-family: "Source Han Sans TC", serif;
  letter-spacing: 2px;
  border: 1px solid #000;
  padding: 30px 50px;
  transition: all 0.25s ease;
}

.menuBtn:last-child {
  border-bottom: none;
}
.menuBtn a {
  font-size: 30px;
  color: #000;
  font-family: "Source Han Sans TC", serif;
  transition: all 0.25s ease;
  /*   
    font-size: 30px color: #fff;;
    font-weight: 500;
    font-family: 'Noto Sans TC', serif;
    transition: all .25s ease;*/
}

footer {
  position: fixed;
  background-color: #e9ad06;
  height: 100px;
  width: 640px;
  left: 50%;
  margin-left: -320px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.contain {
  width: 640px;
  margin: 0 auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: calc(100vh - 200px);
  /*padding-bottom: 100px;*/
  /*overflow-y: scroll;*/
  /*overflow-x: hidden;*/
}
/*.index{
    background-image: url(../images/index_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;

}*/
.index {
  background-color: #f5e8cc;
  background-size: 100% auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 0px;
}
.index .indexBg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/index_bg-25.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  margin-top: -100px;
}

.index .title {
  width: calc(633 / 750 * 100%);
  margin-bottom: 30px;
  /*margin-top: 400px;*/
}
.index .title2 {
  width: calc(620 / 750 * 100%);
}
.index .title img,
.index .content img {
  width: 100%;
}
.index .content {
  width: calc(632 / 750 * 100%);
  margin-top: 0px;
}
.indexBtn01 {
  width: 293px;
  height: 70px;
  background-image: url(../images/index_btn01-25.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  -webkit-mask: url(../images/index_btn01-25.png) no-repeat center center;
  mask: url(../images/index_btn01-25.png) no-repeat center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  margin-top: 38px;
}
.indexBtn01::after {
  width: 200%;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  opacity: 1;
  -webkit-transform: flickers 3s;
  animation: flickers 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background: -moz-linear-gradient(
    -25deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 15%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0.1) 85%,
    rgba(255, 255, 255, 0) 100%
  );
  background: -webkit-linear-gradient(
    -25deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 15%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0.1) 85%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 15%,
    rgba(255, 255, 255, 0.6) 40%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0.1) 85%,
    rgba(255, 255, 255, 0) 100%
  );
}

@-webkit-keyframes flickers {
  0% {
    left: -200%;
    opacity: 1;
  }

  70% {
    left: 100%;
    opacity: 1;
  }

  to {
    left: 100%;
    opacity: 1;
  }
}

@keyframes flickers {
  0% {
    left: -200%;
    opacity: 1;
  }

  70% {
    left: 100%;
    opacity: 1;
  }

  to {
    left: 100%;
    opacity: 1;
  }
}

.indexContent {
  height: 100%;
  /* background: url(../images/index_bg-25.png); */
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-top: -78px;
  /*margin-bottom: 10px;*/
  /* padding-top: calc(129px + 14px); */
  width: 100%;
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
  flex-direction: column;
  padding-bottom: 100px;
  min-height: 500px;
  /* padding-bottom: 240px; */
}
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  /*background-image: url(../images/popupBg.png);*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 0;
  z-index: 1000;
}
.popup .closeBtn {
  position: fixed;
  width: 84px;
  height: 84px;
  margin-top: 40px;
  top: 0;
  background: #ee6143;
  right: 23px;
  cursor: pointer;
  z-index: 1003;
}
.mission-popup .closeBtn {
  background: transparent;
  right: calc(50% - 340px + 20px);
}
.popup .closeBtn span {
  position: absolute;
  display: block;
  height: 5px;
  width: 40px;
  background: #fff;
  border-radius: 20px;
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup .closeBtn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popupBtn {
  width: 437px;
  height: 103px;
  background-image: url(../images/popup_btn-25.png?t=1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 top;
  cursor: pointer;
}
.popupBtn span {
  position: absolute;
  width: 437px;
  height: 103px;
  background-image: url(../images/popup_btn-25.png?t=1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  opacity: 1;
  transition: all 0.25s ease;
}

.popupBtn01::after,
.popupBtn03::after {
  content: "";
  width: 69px;
  height: 131px;
  background: url(../images/popup_btn01beer-25.png);
  background-size: cover;
  position: absolute;
  margin-top: -15px;
  margin-left: 40px;
}
.popupBtn02 {
  margin-top: 70px;
  background-image: url(../images/popup_btn02.png);
}
.popupBtn02 span {
  background-image: url(../images/popup_btn02.png);
}
.popupBtn03 {
  background-image: url(../images/popup_btn-25.png);
}
.popupBtn03 span {
  background-image: url(../images/popup_btn-25.png);
}
.popup02 > div[data-aos^="fade"][data-aos^="fade"] {
  opacity: 0;
  transform: translate3d(0, 50%, 0);
}
.popup02.show > div[data-aos^="fade"][data-aos^="fade"] {
  opacity: 1;
  transform: translateZ(0);
}

.pd .pdBg {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #f2d674;
  background-image: url(../images/pd_bg-25.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top;
  margin-top: 0px;
  /* padding-bottom: 50px; */
}
.pdBgDesc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/pd_bgDesc.png);
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
}
.pdArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 40px 0px 40px;
  width: 100%;
}
.pdBox {
  background-color: #fff6e3;
  padding: 7px 6px;
  width: calc(50% - 14px);
  margin-bottom: 30px;
}
.pdBox .pdImg {
  width: 100%;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.pdBox .pdImg img {
  transform: scale(calc(640 / 750));
  transform-origin: 50% 100%;
}
.pd_btn {
  width: calc(50% - 2.5px);
  background-color: #e7cc85;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 5px;
  color: #000;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  font-family: "AdobeInvisFont", serif;
  border-radius: 6px;
}
.pd_btn i {
  content: "";
  position: relative;
  display: inline-block;
  background: url(../images/btn_arrow1.png);
  width: 8px;
  height: 15px;
}
/*.pd_btn i{
    display: inline-block;
    position: absolute;
    width: 7px;
    height: 13px;
    top: calc(50% - 6px);
    left: calc(50% + 2.75em);
    background: url(../images/pd_btn_arrow.png);
    margin-left: .5em;
}
*/
.exchangeBtn {
  background-color: #ee6143;
  color: #fff;
  font-weight: 500;
  position: relative;
}
.exchangeBtn a {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
}
.exchangeBtn i {
  background-image: url(../images/btn_arrow2.png);
}

.noExchangeBtn {
  background-color: #8a8a8a;
  color: #fff;
}
.noExchangeBtn i {
  color: #fff;
}
.pointBox {
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #ee6143;
  border-radius: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  left: 0;
  top: 0;
  margin-left: 8px;
  margin-top: 8px;
  font-family: "AdobeInvisFont", serif;
}
.pointBox span {
  color: #fff;
  line-height: 1.2em;
  font-size: 20pt;
}
.pdBoard {
  /*background-color: #fff;*/
  padding: 0px;
  width: 100%;
}
hr {
  border-top: solid 1px #dabf72;
}
.pdOne {
  width: calc(50% - 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
}
.pdFull {
  width: 477px;
  margin: 0 auto;
}
.pdFull .pdImg {
  width: 100%;
  height: auto;
}
.pdFull .pdImg img {
  width: 100%;
  height: auto;
}
.pdImg {
  width: 100%;
  height: 255px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pd_btn02 {
  width: 100%;
  font-size: 24px;
}
.pd_btn02 i {
  background-image: url(../images/btn_arrow3.png);
  width: 10px;
  height: 17px;
}
.pdBtn01 {
  width: 395px;
  height: 74px;
  background-image: url(../images/pd_btn01.png?t=1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.pdAward {
  width: 100%;
  background-color: #fff6e3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5px;
}
.pd_lightBox {
  z-index: 999;
}
.pd_lightBox .boxGroup {
  width: 580px;
  height: 580px;
  background-color: #fff;
}
.pd_lightBox .box {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.pd_lightBox .box .pdPic {
  width: 100%;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* background: url(../images/pdPic_bg.jpg) center center no-repeat; */
  background-size: cover;
}
.pd_lightBox .box .pdPic img {
  width: 45%;
  display: block;
  margin: 0 auto;
}
.pd_lightBox .box .pdName {
  width: 100%;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 24px;
  font-family: "Noto Sans TC", serif;
  color: #000;
  font-weight: 500;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f9d19d+0,f9d19d+17,cea274+100 */
  background: #f9d19d; /* Old browsers */
  background: linear-gradient(
    -1deg,
    rgb(249, 209, 157) 0%,
    rgb(249, 209, 157) 17%,
    rgb(228, 186, 137) 59%,
    rgb(206, 162, 116) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddae7f', endColorstr='#b6845b',GradientType=1 ); /* IE6-9 */
  border-top: 1px solid #f0ecb3;
  letter-spacing: 2px;

  /*background: url(../images/pd_popup_txtbg.png);*/
}
.pd_lightBox .box .tips {
  color: #41210f;
  font-weight: 400;
  position: absolute;
  bottom: 15px;
  font-size: 14px;
}
.pd_lightBox .closeBtn {
  width: 85px;
  height: 85px;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ee6143;
  cursor: pointer;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.pd_lightBox .closeBtn span {
  position: absolute;
  width: 40px;
  height: 4px;
  border-radius: 5px;
  background-color: #fff;
  transform: rotate(45deg);
}
.pd_lightBox .closeBtn span:nth-child(2) {
  transform: rotate(-45deg);
}
.activitiesMethod {
  letter-spacing: 0.5px;
  text-align: justify;
}
.activitiesMethod p {
  font-size: 23px;
}
.activitiesMethod .method-title {
  text-align: center;
}
.activitiesMethod .method-title p {
  font-size: 24px;
  font-weight: bold;
  color: #00993e;
}
.activitiesMethod .method-title img {
  margin: 0px 0;
}
.pdPage h1,
.activitiesMethod .method-title h1 {
  font-size: 40px;
  font-weight: bold;
  color: #000;
  margin: 35px 0 30px 0;
  font-family: AdobeInvisFont;
  font-weight: 400;
  text-align: center;
}
.method-title {
  width: 100%;
  max-width: 640px;
}
.activitiesMethod .contain {
  background-color: #f7eedb;
  padding: 0px 60px 30px 60px;
}
/*.activitiesMethod li,.activitiesMethod a,.activitiesMethod div{font-size: 23px;}*/
.pdPage .sub,
.activitiesMethod .sub {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#c9a063+0,feecc9+60,c9bc9d+100 */
  background: url(../images/award_titlebg-25.png?t=2);
  border-radius: 100px;
  /*border: 1px solid #189b3e;*/
  display: flex;
  font-size: 22px;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 37px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: bold;
  width: 561px;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Source Han Sans TC", serif;
}
.activitiesMethod .sub {
  background: url(../images/method_titlebg.png?t=2);
  width: 511px;
  height: 39px;
  left: 50%;
  transform: translateX(-50%);
}

.activitiesMethod ul.firstLevel {
  font-family: Source Han Sans TC;
}
.activitiesMethod ul.firstLevel > li {
  list-style-type: none;
  text-indent: 0em;
  margin-bottom: 0.5em;
}
.activitiesMethod ul.firstLevel > li > span:first-child {
  color: #ffffff;
  left: -10px;
  width: 25px;
  height: 25px;
  text-align: center;
  position: absolute;
  text-indent: 0;
  display: inline-block;
  top: 0px;
  margin-left: -1em;
}
.activitiesMethod ul.firstLevel.special > li > span {
  letter-spacing: -2px;
  margin-right: 15px;
}
.activitiesMethod ul.firstLevel.special > li > span.num {
  margin-right: 8px;
  margin-left: -8px;
}
.activitiesMethod ul.firstLevel > li::before {
  content: "";
  background-color: #000000;
  width: 25px;
  height: 25px;
  border-radius: 25px;

  position: absolute;
  left: -10px;
  top: 3px;
  margin-left: -1em;
}
.activitiesMethod ul.firstLevel > li::marker {
  z-index: 2;
}

.activitiesMethod ul.firstLevel ol {
  padding-left: 0;
}

.activitiesMethod ul.nols li,
.activitiesMethod ul.firstLevel ol li {
  list-style: none;
  text-indent: 0;
}
.activitiesMethod ul.firstLevel.nols > li::before {
  content: none;
}

.listDisc {
  list-style-type: disc;
  margin-left: 1em;
}
.listDisc li {
  list-style-type: disc;
}
.listDisc li::before {
  content: "";
  position: absolute;
  /*left: -.5em;*/
  left: -16px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #d8a96c;
}
.listDisc li.noItem::before {
  content: none;
}
.noIndent {
  margin-left: 0em;
}
.activitiesMethod span.hl,
.activitiesMethod ul.firstLevel > li > span.hl {
  color: #ce5136;
  position: relative;
  border-bottom: 1px solid #000;
}
/*.activitiesMethod span.hl::before,.activitiesMethod ul.firstLevel>li>span.hl::after{
    content: "";
    
    bottom: 0;
    left: .5em;
    position: absolute;
    width: calc(100% - 1em);
}*/
.activitiesMethod ul.firstLevel > li .underline {
  text-decoration: underline;
}
.activitiesMethod span.tagBtn {
  color: #ffe2c0;
  background-color: #ee6143;
  margin-right: 10px;
  padding: 5px 20px;
  border-radius: 30px;
}
.activitiesMethod a {
  color: #ce5136;
  word-break: break-all;
}
.sideBtns {
  position: fixed;
  right: 0;
  top: 550px;
  width: 50px;
  z-index: 10;
}
.sideBtns a {
  display: block;
  margin: -10px 0;
}
.sideBtns i {
  color: #fff;
}
.sideBtns .invoiceBtn {
}

.sideBtns .missionBtn {
}
.pdPage,
.activitiesMethod {
  padding-bottom: 87px;
}
@media screen and (min-width: 641px) {
  .menuBtn {
    height: 90px;
  }
  .sideBtns {
    position: fixed;
    right: calc(50% - 320px);
    bottom: 110px;
  }
  ::-webkit-scrollbar {
    display: none;
  }
  .popup {
    overflow: scroll;
    padding-bottom: 100px;
  }
  .popup02 {
    min-height: 930px;
  }
}
.pd_lightBox .closeBtn:hover {
  background-color: #a53b25;
}

.expend:hover {
  opacity: 1;
}
.menuBtn:hover {
  background-color: rgb(200, 164, 88);
  color: #fff;
}
.menuBtn:hover a {
  color: #fff;
  /*background-color: #b98d32;*/
  /*color: #fff;*/
}
/*.indexBtn01:hover{
        background-image: url(../images/index_btn01Hover.png);
    }*/
.popupBtn span:hover {
  opacity: 0;
}
.pd_btn:hover {
  background-color: #dabf72;
}
.exchangeBtn:hover {
  background-color: #a53b25;
}
/*    .pdBtn01:hover{
        background-image: url(../images/pd_btn01Hover.png);

    }*/

@media screen and (min-width: 641px) and (max-height: 920px) {
  .sideBtns {
    position: fixed;
    right: calc(50% - 320px);
    bottom: 110px;
  }
  ::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 900px) and (max-height: 840px) {
  .menuExpend {
    height: calc(100% - 100px);
    overflow-y: scroll;
    /*padding-bottom: 100px*/
  }
}
@media screen and (max-width: 640px) {
  .index .indexBg {
    min-height: 1557px;
  }
}

@media screen and (max-width: 640px) and (max-height: 1200px) {
  .index {
    /*min-height: 1557px;*/
    /*padding-bottom: 0px*/
  }
}
@media screen and (min-width: 641px) and (max-height: 1200px) {
  .index {
    /*min-height: 1557px;*/
    /*padding-bottom: 0px*/
  }
  .index .indexBg {
    min-height: 1557px;
  }
}
[data-aos="fade-up"] {
  transform: translate3d(0, 50%, 0);
}

.show[data-aos^="fade"][data-aos^="fade"] {
  opacity: 1;
  transform: translateZ(0);
}

body {
  background-color: #e8cf7b;
}

.noto {
  font-family: "Noto Sans TC", serif;
}

.bar-txt {
  font-size: 20px;
  color: #000;
  line-height: 1.5em;
  font-weight: 500;
  margin-top: 1em;
}

.indexKV {
  width: 100%;
}
.indexKV img {
  width: 100%;
  margin-top: 12%;
}
.help-popup {
  z-index: 1001;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s opacity;
}
.help-popup.show {
  z-index: 1001;
  pointer-events: initial;
  opacity: 1;
}
.help-popup .title {
  text-align: center;
  margin-top: 265px;
  margin-bottom: 24px;
}
.swiper-slide {
  text-align: center;
}
.swiper-ctrl {
  text-align: center;
  /* margin-top: -50px; */
}
.swiper-left {
  color: #fff;
  font-size: 50px;
  display: inline-block;
  margin: 0 50px;
  cursor: pointer;
}
.swiper-right {
  color: #fff;
  font-size: 50px;
  display: inline-block;
  margin: 0 50px;
  cursor: pointer;
}
.swiper-left.swiper-button-disabled {
  opacity: 0;
}
.swiper-right.swiper-button-disabled {
  opacity: 0;
}
.sideBtns a {
  transition: 0.3s opacity;
  transition-delay: 0.3s;
}
.sideBtns.hide a {
  opacity: 0;
}

.sideBtns.type2 a:nth-child(1),
.sideBtns.type2 a:nth-child(2),
.sideBtns.type3 a:nth-child(1),
.sideBtns.type4 a:nth-child(2),
.sideBtns.type5 a:nth-child(2) {
  opacity: 1;
}

.help-popup a {
  pointer-events: none;
}

.vip {
  margin: 20px;
}

/*@media screen and (min-width: 641px) and (max-height: 920px){
    .sideBtns{}
    .help-popup .title{
       margin-top: 85px;
    }
    .sideBtns{
        top: 370px;
    }
}*/
/*@media screen and (min-width: 641px) and (min-height: 500px){
    .help-popup .title{
       margin-top: 85px;
    }
    .sideBtns{
        top: 370px;
    }
}*/
@media screen and (min-width: 641px) and (min-height: 920px) {
  .help-popup .title {
    margin-top: 65px;
    margin-bottom: 152px;
  }
  .sideBtns {
    top: 350px;
  }
  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    top: -8vh;
  }
}
@media screen and (min-width: 641px) and (max-height: 919px) {
  .help-popup .title {
    margin-top: 65px;
  }
  .sideBtns {
    top: 350px;
  }
  .help-con {
    transform: scale(0.75);
  }
  .sideBtns {
    transform: scale(0.75);
    transform-origin: 100% 0%;
  }
}
@media screen and (min-width: 641px) and (max-height: 800px) {
  .help-popup .title {
    margin-top: 65px;
    transform: scale(0.75);
    transform-origin: 50% 0%;
  }
  .help-con {
    transform: scale(0.75);
    transform-origin: 50% 0%;
  }
  .sideBtns {
    top: calc(400px * 0.75);
    transform: scale(0.75);
    transform-origin: 100% 0%;
  }
}
@media screen and (min-width: 641px) and (max-height: 750px) {
  .help-popup .title {
    margin-top: 65px;
    transform: scale(0.65);
  }
  .help-con {
    transform: scale(0.65);
  }
  .sideBtns {
    top: calc(440px * 0.65);
    transform: scale(0.65);
  }
  .swiper-ctrl {
    margin-top: -160px;
  }
}

@media screen and (min-width: 641px) and (max-height: 650px) {
  .help-popup .title {
    margin-top: 50px;
    transform: scale(0.6);
  }
  .help-con {
    transform: scale(0.55);
    margin-top: -20px;
  }
  .sideBtns {
    top: calc(440px * 0.55);
    transform: scale(0.55);
  }
  .swiper-ctrl {
    margin-top: -120px;
  }
}

@media screen and (min-width: 641px) and (max-height: 600px) {
  .help-popup .title {
    margin-top: 50px;
    transform: scale(0.5);
  }
  .help-con {
    transform: scale(0.5);
    margin-top: -20px;
  }
  .sideBtns {
    top: calc(440px * 0.5);
    transform: scale(0.5);
  }
  .swiper-ctrl {
    margin-top: -180px;
  }
}

@media screen and (max-width: 640px) and (max-height: 1130px) {
  .help-popup .title {
    margin-top: 150px;
    /*       margin-top: 50px;
       transform: scale( .6);*/
  }
  .help-con {
    /* transform: scale( .55 );margin-top: -20px;*/
  }
  .sideBtns {
    top: 440px;
  }
}

@media screen and (max-width: 640px) and (max-height: 1000px) {
  .help-popup .title {
    margin-top: 80px;
    /*       margin-top: 50px;
       transform: scale( .6);*/
  }
  .help-con {
  }
  .sideBtns {
    top: 350px;
  }
}
/**
 * Swiper 5.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 3, 2020
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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")
    format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}
.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}
.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.warning {
  font-size: 60%;
  margin: 9px 0px 3px 6px;
}
