body {
  margin: 0 auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

*, body {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif !important;
}

.a {
  color: #fff;
}

a:hover, a:link, a:-webkit-any-link {
  color: #fff;
  text-decoration: none;
}

a::after, a:link, a:-webkit-any-link {
  color: #fff;
  text-decoration: none;
}

/* header */
.header {
  z-index: 9999;
  width: 90%;
  max-width: 1500px;
  margin: auto;
}

.header-container {
  width: 100%;
  background-color: #000;
  position: fixed;
  z-index: 9999;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}

.header-wrap .header-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
.header-wrap .header-cont .logo {
  width: 270px;
}
.header-wrap .header-cont .lang-cont {
  display: flex;
  align-items: center;
}
.header-wrap .header-cont .lang {
  width: 50px;
  height: 50px;
  margin-left: 15px;
}
.header-wrap .header-cont .lang a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  line-height: 45px;
  font-weight: 400;
  transition: 0.5s;
  border-radius: 50%;
  border: 1px solid #1c1c1c;
}
.header-wrap .header-cont .lang a:hover {
  border-radius: 50%;
  border: 1px solid white;
}
.header-wrap .header-cont .lang.active {
  border-radius: 50%;
  border: 1px solid #ffffff;
}
.header-wrap .header-cont .lang.active a {
  color: #ffffff;
}

@media (max-width: 768px) {
  .header-wrap .header-cont {
    padding: 20px 0;
  }
  .header-wrap .header-cont .logo {
    width: 220px;
  }
  .header-wrap .header-cont .lang {
    width: 40px;
    height: 40px;
  }
  .header-wrap .header-cont .lang a {
    font-size: 16px;
    line-height: 40px;
  }
}
@media (max-width: 450px) {
  .header-wrap .header-cont .logo {
    width: 170px;
  }
  .header-wrap .header-cont .lang {
    width: 30px;
    height: 30px;
  }
  .header-wrap .header-cont .lang a {
    font-size: 14px;
    line-height: 30px;
  }
} /* footer */
.footer {
  width: 100%;
  background-color: #000;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .footerlogoimg {
  width: 250px;
  padding-bottom: 30px;
  padding-top: 30px;
}
.footer .divd {
  max-width: 1600px;
  margin: 0 auto;
  border-bottom: 1px solid #1a2025;
}

.fd-wp {
  max-width: 1600px;
  margin: 0 auto;
}

.fd-copy {
  justify-content: space-between;
  color: #ffffff;
  padding: 35px 0;
  font-size: 14px;
}

.fd-copy,
.fd-copy .links {
  display: flex;
  align-items: center;
  color: #fff;
}

.fd-copy .links span {
  margin: 0 24px;
}

.fd-info {
  background-color: #1f2b39;
  font-size: 14px;
  color: #fff;
  line-height: 2;
  padding: 40px 35px 50px;
}

.g-snv {
  position: fixed;
  right: 50px;
  bottom: 5%;
  width: 88px;
  font-size: 0;
  z-index: 2;
}

.cook-policy {
  padding: 50px 0 46px;
  background-color: #566677;
  opacity: 0.96;
  z-index: 2;
}

.cook-desc {
  flex: 1;
  font-size: 16px;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
}

.cook-btn {
  margin-left: 14px;
  width: 122px;
  line-height: 52px;
  background-color: #1f2b39;
  border-radius: 0 5px;
}

@media only screen and (max-width: 1200px) {
  .fd-copy {
    padding: 15px 0;
    font-size: 14px;
  }
  .fd-copy .links span {
    margin: 0 12px;
    color: #868686;
  }
  .fd-info {
    font-size: 14px;
    padding: 30px 30px;
  }
}
@media only screen and (max-width: 968px) {
  .fd-copy {
    display: block;
    font-size: 12px;
    padding: 15px 0;
  }
  .fd-copy .links {
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
  .fd-info {
    padding: 10px 16px;
    font-size: 12px;
    line-height: 1.8;
  }
}
.flx {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
.flx .fit {
  width: -moz-fit-content;
  width: fit-content;
}
.flx.is-row {
  display: flex;
  flex-direction: row;
}
.flx.is-row.v-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.flx.is-row.v-center-end {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.flx.is-row.h-center {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.flx.is-row.h-end {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.flx.is-row.b-left {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.flx.is-row.b-center {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}
.flx.is-row.b-right {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
}
.flx.is-row.stretch {
  align-items: stretch;
}

* {
  margin: 0;
  padding: 0;
}

.main-bg {
  background: #1f2d54;
  background-position: center top;
  background-image: url(../images/bg.jpg);
  background-size: auto;
  margin: 0 auto;
  background-repeat: no-repeat;
}

.solgan {
  position: absolute;
  left: 31%;
  top: 76%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
}
@media (max-width: 1800px) {
  .solgan {
    top: 73%;
  }
}
@media (max-width: 1300px) {
  .solgan {
    top: 76%;
  }
}
@media (max-width: 1024px) {
  .solgan {
    top: 78%;
  }
}
@media (max-width: 1000px) {
  .solgan {
    top: 78%;
  }
}
@media (max-width: 900px) {
  .solgan {
    top: 50%;
    left: 50%;
  }
}
@media (max-width: 800px) {
  .solgan {
    top: 50%;
  }
}
@media (max-width: 700px) {
  .solgan {
    top: 51%;
  }
}
@media (max-width: 600px) {
  .solgan {
    top: 52%;
  }
}
@media (max-width: 576px) {
  .solgan {
    top: 52%;
  }
}
@media (max-width: 556px) {
  .solgan {
    top: 52%;
  }
}
@media (max-width: 530px) {
  .solgan {
    top: 52%;
  }
}

.imgkvbg {
  padding-top: 5px;
  width: 100%;
}
@media (max-width: 1300px) {
  .imgkvbg {
    padding-top: 50px;
  }
}

.calltoaction {
  width: 100%;
  text-align: center;
  margin: 20px 0 80px 0;
}
@media (max-width: 576px) {
  .calltoaction {
    margin: 0 0 0 0;
    width: 50%;
  }
}

.kv-desktop {
  display: block;
  position: relative;
}
@media (max-width: 1000px) {
  .kv-desktop {
    visibility: hidden;
    display: none;
  }
}

.kv-mob {
  display: none;
  width: 100%;
}
@media (max-width: 1000px) {
  .kv-mob {
    visibility: visible;
    display: block;
  }
}

.con-desktop {
  display: block;
}
@media (max-width: 1000px) {
  .con-desktop {
    visibility: hidden;
    display: none;
  }
}

.con-mob {
  display: none;
}
@media (max-width: 1000px) {
  .con-mob {
    visibility: visible;
    display: block;
  }
}

.tp-desktop {
  display: block;
  padding-top: 30px;
}
@media (max-width: 1000px) {
  .tp-desktop {
    visibility: hidden;
    display: none;
  }
}

.tp-mob {
  display: none;
  padding-left: 8px;
  padding-right: 8px;
}
@media (max-width: 1000px) {
  .tp-mob {
    visibility: visible;
    display: block;
  }
}

.container-main {
  width: 100%;
  background-color: #FFDBD6;
}
@media (max-width: 992px) {
  .container-main {
    padding-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .container-main {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.container-wrap {
  position: absolute;
  width: 90%;
  max-width: 650px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1607843137);
  top: 770px;
  z-index: 999;
  left: calc(50vw - 332px);
}
@media (max-width: 1800px) {
  .container-wrap {
    top: 690px;
  }
}
@media (max-width: 1650px) {
  .container-wrap {
    top: 600px;
  }
}
@media (max-width: 1500px) {
  .container-wrap {
    top: 500px;
  }
}
@media (max-width: 1350px) {
  .container-wrap {
    top: 460px;
  }
}
@media (max-width: 1230px) {
  .container-wrap {
    top: 400px;
  }
}
@media (max-width: 1110px) {
  .container-wrap {
    top: 360px;
  }
}
@media (max-width: 1030px) {
  .container-wrap {
    top: 330px;
  }
}
@media (max-width: 920px) {
  .container-wrap {
    top: 300px;
  }
}
@media (max-width: 860px) {
  .container-wrap {
    top: 300px;
  }
}
@media (max-width: 830px) {
  .container-wrap {
    top: 260px;
  }
}
@media (max-width: 768px) {
  .container-wrap {
    position: initial;
    width: 92%;
    margin: auto;
  }
}
.container-wrap .title {
  width: 100%;
  text-align: center;
  padding: 30px 0 10px 0;
}
.container-wrap .remark {
  color: #F48DB4;
  font-size: 13px;
  font-weight: 300;
  list-style-type: decimal;
  padding-left: 45px;
  padding-bottom: 50px;
  font-family: sans-serif;
}
@media (max-width: 768px) {
  .container-wrap .remark {
    padding-bottom: 30px;
  }
}

.container-wrap.rules {
  position: relative;
  width: 90%;
  max-width: 1200px;
}

.middle {
  width: 100%;
}
.middle .contentbox {
  margin: auto;
  color: #FFF9DD;
}
.middle .t1 {
  margin: auto;
  text-align: center;
  font-weight: 400;
  font-size: 19px;
  line-height: 30px;
  letter-spacing: 2px;
  padding: 36px 78px 60px 78px;
  color: #fff;
}
@media (max-width: 576px) {
  .middle .t1 {
    width: 90%;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 1px;
    padding: 0px;
    margin-top: 10px;
    padding-bottom: 20px;
  }
}
.middle .t1 .highlight {
  font-size: 25px;
  font-weight: bold;
}
.middle .t1 .highlight-b {
  font-weight: bold;
}
.middle .t1img2 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 30px;
}
@media (max-width: 900px) {
  .middle .t1img2 {
    width: 75%;
    margin: auto;
  }
}
@media (max-width: 800px) {
  .middle .t1img2 {
    width: 85%;
    margin: auto;
  }
}
@media (max-width: 500px) {
  .middle .t1img2 {
    width: 100%;
    margin: auto;
    padding-top: 50px;
  }
}
.middle .t1pad {
  font-size: 60px;
  margin: 0 auto;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 20px;
}
@media (max-width: 576px) {
  .middle .t1pad {
    font-size: 40px;
  }
}
.middle .t1remarks {
  font-size: 13px;
  margin-top: 30px;
  color: #8a8a8a;
}
@media (max-width: 576px) {
  .middle .t1remarks {
    font-size: 12px;
  }
}
.middle .t2 {
  margin: auto;
  text-align: center;
  font-weight: 300;
  font-size: 19px;
  line-height: 40px;
  letter-spacing: 5px;
  margin-top: 100px;
}
@media (max-width: 576px) {
  .middle .t2 {
    width: 90%;
    font-size: 18px;
    letter-spacing: 4px;
  }
}
.middle .t2 .pop {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 6px;
  color: #FFD800;
}
.middle .t2img {
  width: 100%;
  margin-top: -10px;
  padding: 0 auto;
  text-align: center;
}
.middle .btn-t {
  margin-top: 40px;
}
.middle .t3img {
  width: 100%;
  max-width: 680px;
}

.stair {
  padding: 0 auto;
  text-align: center;
  max-width: 300px;
  text-align: center;
}

.calltoaction {
  width: 100%;
  text-align: center;
  margin: 50px 0 100px 0;
}
@media (max-width: 576px) {
  .calltoaction {
    margin: 50px 0 10px 0;
  }
}
.calltoaction .cta {
  padding: 15px 50px;
  border-radius: 42px;
  color: #170536;
  background-color: white;
  font-size: 22px;
  font-weight: 500;
  transition: 0.3s;
}
.calltoaction .cta:hover {
  color: white;
  background: rgb(166, 207, 233);
  background: linear-gradient(177deg, rgb(166, 207, 233) 0%, rgb(155, 192, 225) 50%, rgb(134, 162, 217) 100%);
  box-shadow: 0px 7px white;
}

.footerimg {
  width: 100%;
}

@media (max-width: 768px) {
  .hidden-para {
    display: none;
  }
}

.kvtitle-top {
  width: 50vw;
  max-width: 600px !important;
}
@media (max-width: 576px) {
  .kvtitle-top {
    width: 80vw;
  }
}

.topkv {
  position: relative;
}

.t1img {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media (max-width: 1800px) {
  .t1img {
    width: 60%;
  }
}
@media (max-width: 1200px) {
  .t1img {
    width: 60%;
  }
}
@media (max-width: 900px) {
  .t1img {
    width: 60%;
    margin-top: 0px;
  }
}
@media (max-width: 576px) {
  .t1img {
    width: 60%;
    margin-top: 0px;
  }
}

.campaign-title {
  width: 70%;
}

@font-face {
  font-family: "Genwan";
  src: url("../font/GenWanMin-EL.ttc") format("opentype");
}
.container > div {
  text-align: center !important;
  margin: auto;
}
@media (max-width: 576px) {
  .container > div {
    width: 100%;
  }
}
.container p {
  text-align: center !important;
  line-height: 20px;
}

.ndbox {
  margin-top: 0px;
}
@media (max-width: 576px) {
  .ndbox {
    margin-top: 30px;
  }
}

.mauto {
  margin: auto;
  margin-top: 0px;
}
@media (max-width: 576px) {
  .mauto {
    margin-top: 50px;
  }
}

.hqr {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  padding: 6px;
  background-color: #373B3C;
  color: white;
  text-align: center;
  font-size: 10px;
}
.hqr .img {
  width: 120px;
}
.hqr .txt {
  padding-top: 5px;
}

.kvtxt {
  color: #39485F;
  font-size: 14px;
}

.kvtxt-lg {
  font-size: 28px;
  font-weight: 600;
  color: #3358A3;
  margin-top: 40px;
  margin-bottom: 5px;
}
@media (max-width: 1000px) {
  .kvtxt-lg {
    margin-top: 20px;
  }
}

.kvbb {
  width: 100%;
  text-align: center;
  position: relative;
}

.kv-cta {
  position: absolute;
  left: 50%;
  top: 80%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
@media (max-width: 576px) {
  .kv-cta {
    top: 78%;
  }
}

.kv-mid {
  background: url("../images/kv_02.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.kv-mid .conn {
  width: 80%;
  margin: auto;
  text-align: center;
  font-size: 14px;
}
.kv-mid .mid-remark {
  text-align: left;
  padding-left: 30px;
  font-size: 13px;
  margin-bottom: 40px;
}
.kv-mid .mid-divider {
  border-bottom: white 1px solid;
}
.kv-mid .mid-2nd {
  margin-top: 40px;
}
.kv-mid .mid-2nd .bold {
  font-weight: bold;
}

.tabm {
  width: 95% !important;
  margin: auto;
}

.ctabtn {
  width: 200px;
  transition: 0.2s ease-in;
}
.ctabtn:hover {
  scale: 1.1;
  width: 200px;
}
@media (max-width: 700px) {
  .ctabtn {
    width: 180px;
  }
}

.ctabtn-s {
  width: 180px;
}

/* rules */
.rules-b-bg {
  border-radius: 16px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: block;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
}

.rules-g {
  max-width: 980px;
  margin: auto;
  margin-top: 20px;
}
@media (max-width: 1300px) {
  .rules-g {
    max-width: 900px;
  }
}
@media (max-width: 1214px) {
  .rules-g {
    max-width: 880px;
  }
}
@media (max-width: 1208px) {
  .rules-g {
    max-width: 840px;
  }
}
@media (max-width: 1160px) {
  .rules-g {
    max-width: 800px;
  }
}
@media (max-width: 1100px) {
  .rules-g {
    max-width: 740px;
  }
}
@media (max-width: 1024px) {
  .rules-g {
    max-width: 760px;
  }
}
@media (max-width: 1009px) {
  .rules-g {
    max-width: 720px;
  }
}
@media (max-width: 1000px) {
  .rules-g {
    max-width: 670px;
  }
}
@media (max-width: 900px) {
  .rules-g {
    max-width: 610px;
  }
}
@media (max-width: 800px) {
  .rules-g {
    width: 88%;
  }
}
@media (max-width: 781px) {
  .rules-g {
    width: 78%;
  }
}
@media (max-width: 761px) {
  .rules-g {
    width: 87%;
  }
}
@media (max-width: 500px) {
  .rules-g {
    width: 85%;
  }
}

.rules {
  border-radius: 16px;
  background: #1B2136;
  margin: 0 auto;
  padding: 30px;
  width: 100%;
  text-align: center;
}
.rules ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}
.rules li {
  display: table;
  counter-increment: item;
}
.rules li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}
.rules li li {
  margin: 0;
}
.rules li li:before {
  content: counters(item, ".") ". ";
}
.rules .list-title {
  color: #96AEFF;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  display: inline-block;
  text-align: center;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .rules .list-title {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .rules .list-title {
    font-size: 16px;
  }
}
@media (max-width: 390px) {
  .rules .list-title {
    font-size: 14px;
  }
}
.rules .list-cont {
  padding: 0px;
}
.rules .list-cont-txt {
  color: #FFF;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.36px;
  text-align: left;
}
@media (max-width: 576px) {
  .rules .list-cont-txt {
    font-size: 14px;
    font-weight: 300;
  }
}
@media (max-width: 390px) {
  .rules .list-cont-txt {
    font-size: 12px;
    line-height: 16px;
  }
}

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

.black-box {
  position: relative;
  z-index: 1;
  height: 900px;
}

.btn-cta {
  padding-bottom: 40px;
  margin-top: 30px;
}
@media (max-width: 900px) {
  .btn-cta {
    margin-top: 30px;
    padding-bottom: 30px;
  }
}

.part1-tp {
  width: 100%;
  margin: auto;
  background-image: url(../images/kvbg-sc.png);
  background-repeat: no-repeat;
  height: 100%;
  background-color: #CEA6ED;
}

.part1-2-bg {
  width: 100%;
  margin: 0 auto;
  background-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.part2-bg {
  width: 100%;
  margin: 0 auto;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  border-top: #7B4583 3px solid;
  padding-top: 60px;
}
@media (max-width: 768px) {
  .part2-bg {
    background-image: url(../images/bg.jpg);
    background-repeat: repeat;
    background-size: auto;
    padding-top: 40px;
  }
}

.part3-bg {
  width: 100%;
  margin: 0 auto;
}

.part4-bg {
  width: 100%;
  margin: 0;
  background: url("../images/footerbg.jpg") no-repeat center top;
  background-color: #113558;
}

.box-1 {
  width: 100%;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .box-1 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.box-2 {
  margin: 0 auto 0 auto;
  width: 80%;
  max-width: 1300px;
}
@media (max-width: 768px) {
  .box-2 {
    width: 97%;
  }
}

.box-3 {
  margin: -30px auto -10px auto;
  text-align: center;
}
@media (max-width: 900px) {
  .box-3 {
    text-align: center;
    margin: -10px auto -10px auto;
  }
}

.step {
  width: 100%;
  margin: auto;
  max-width: 1200px;
}
.step-main {
  width: 100%;
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
}
.step .screen {
  max-width: 280px;
  padding: 10px;
  width: 100%;
  text-align: center;
  margin: auto;
}
.step .desc2 {
  font-size: 15px;
  margin-top: 10px;
  line-height: 24px;
  letter-spacing: 1px;
  text-align: center;
}
.step .desc2 .highlight {
  color: #FFC5C2;
}

/* Create four equal columns that floats next to each other */
.g4-1 {
  float: left;
  text-align: center;
  margin: 0 auto;
}

.g4 {
  box-sizing: border-box;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

/* Clear floats after the columns */
.g4:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1300px) {
  .g4-1 {
    width: 33%;
  }
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 900px) {
  .g4-1 {
    width: 50%;
  }
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .g4-1 {
    width: 50%;
  }
}
.shop-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.shop-content {
  color: #fff;
  align-items: center;
  margin: 0 auto;
}
.shop-content .heading {
  font-size: 21px;
  font-weight: 500;
  padding-top: 20px;
}
.shop-content .desc {
  font-size: 15px;
  margin-top: 10px;
  line-height: 24px;
  letter-spacing: 1px;
  text-align: left;
}
.shop-mainflex {
  display: flex;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .shop-mainflex {
    display: block;
  }
}
@media (max-width: 1000px) {
  .shop-mainflex {
    flex-wrap: wrap;
  }
}
.shop-flex {
  display: flex;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .shop-flex {
    flex-wrap: wrap;
  }
}
.shop-flex .shopcard {
  max-width: 300px;
  width: 100%;
  text-align: center;
}
@media (max-width: 1000px) {
  .shop-flex .shopcard {
    width: 80%;
    margin: 0 auto;
  }
}
.shop-img {
  width: 100%;
  max-width: 600px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .shop-img {
    width: 100%;
    max-width: 400px;
  }
}

* {
  box-sizing: border-box;
}

.z-auto {
  z-index: auto;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.Z-0-bg {
  z-index: 0;
  position: relative;
  background: #1f2d54;
  background-image: url(../images/bg.jpg);
  z-index: 0;
  /* Full height */
  height: 1300px;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.z-50 {
  z-index: 50;
  position: relative;
}

.z-40 {
  z-index: 40;
  position: relative;
}

.z-30 {
  z-index: 30;
  position: relative;
  height: auto;
}

.z-20 {
  z-index: 20;
  position: relative;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  font-size: 30px;
  text-align: center;
  align-items: center;
  margin: 0 auto;
}

.flex-item-left {
  padding-left: 50px;
  flex: 50%;
}
@media (max-width: 1400px) {
  .flex-item-left {
    width: 90%;
    padding-left: 0px;
  }
}
@media (max-width: 1000px) {
  .flex-item-left {
    width: 90%;
    padding-top: 140px;
    padding-left: 0px;
  }
}
.flex-item-left .img {
  align-items: center;
  width: 100%;
  padding-bottom: 30px;
}
@media (max-width: 1400px) {
  .flex-item-left .img {
    width: 90%;
  }
}

.flex-item-right {
  align-items: center;
  width: 100%;
  padding-top: 100px;
  flex: 50%;
}
@media (max-width: 1000px) {
  .flex-item-right {
    width: 100%;
    padding-top: 0px;
  }
}
.flex-item-right .img {
  align-items: center;
  padding-bottom: 40px;
  padding-right: 40px;
}
@media (max-width: 1800px) {
  .flex-item-right .img {
    padding-top: 100px;
  }
}
@media (max-width: 1400px) {
  .flex-item-right .img {
    width: 100%;
    padding-top: 100px;
  }
}
@media (max-width: 1000px) {
  .flex-item-right .img {
    width: 100%;
    padding-top: 100px;
    background-color: #3358A3;
  }
}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 1000px) {
  .flex-item-right {
    flex: 100%;
  }
  .flex-item-right .img {
    align-items: center;
    padding-top: 70px;
    width: 100%;
    padding-right: 0px;
    padding-bottom: 0px;
  }
  .flex-item-left {
    flex: 100%;
  }
  .flex-item-left .img {
    align-items: center;
    width: 100%;
  }
}
.container-l {
  margin: 0;
  padding: 0;
}

.circles li {
  list-style: none;
  position: absolute;
  bottom: 0;
  display: block;
  width: 10px;
  height: 20px;
  border-radius: 50% 0 50% 0%;
  animation: animate 5s linear infinite;
  animation-delay: 0s;
}

@keyframes animate {
  0% {
    top: 20%;
    transform: rotate(720deg);
    opacity: 0;
  }
  20% {
    top: 30%;
    transform: rotate(720deg);
    opacity: 0.5;
  }
  50% {
    top: 50%;
    transform: rotate(360deg);
    opacity: 0.8;
  }
  90% {
    top: 95%;
    transform: rotate(0deg);
    opacity: 1;
  }
  100% {
    top: 100%;
    transform: rotate(0deg);
    opacity: 0;
  }
}
#container {
  perspective: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.agift {
  transition: transform 0.3s ease-in-out; /* Make the transition smoother */
  width: 100%;
}

.wave-text {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  letter-spacing: 2px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.wave-text span {
  color: #fff;
  display: inline-block;
  font-size: 22px;
  animation: wave 3s ease-in-out infinite;
}

@media (max-width: 900px) {
  .wave-text span {
    font-size: 16px;
  }
}
@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.waviy-row {
  padding-top: 300px;
  margin: 0 auto;
}

@media (max-width: 2000px) {
  .waviy-row {
    padding-top: 100px;
  }
}
@media (max-width: 900px) {
  .waviy-row {
    padding-top: 0;
    width: 80%;
  }
}
.waviy {
  position: relative;
  -webkit-box-reflect: below -40px linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  font-size: 60px;
  margin-bottom: 60px;
  text-align: center;
}

@media (max-width: 900px) {
  .waviy {
    font-size: 40px;
    margin-bottom: 70px;
    padding-top: 80%;
    -webkit-box-reflect: below -30px linear-gradient(transparent, rgba(0, 0, 0, 0.1));
  }
}
.waviy span {
  font-family: "Alfa Slab One", cursive;
  position: relative;
  display: inline-block;
  color: #000;
  text-transform: uppercase;
  animation: waviy 1s infinite;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes waviy {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px);
  }
}
.atxt-whole {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.atxt1 {
  animation: atxt1-Anim 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
}

.atxt2 {
  animation: atxt2-Anim 1s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;
}

@keyframes atxt1-Anim {
  0% {
    transform: scale(0.9);
  }
  50%, 100% {
    transform: scale(1);
  }
}
@keyframes atxt2-Anim {
  0% {
    transform: scale(0.9);
  }
  80%, 100% {
    transform: scale(1) rotateZ(-3deg);
  }
}
.wrapper {
  width: 100%;
}

.ws-bg {
  width: 100%;
}

.z-whole {
  z-index: 30;
  position: relative;
  margin-top: 0px;
}

@media (max-width: 900px) {
  .z-whole {
    margin-top: 30px;
  }
}
.z-010 {
  z-index: 10;
}

.z-020 {
  z-index: 20;
  position: absolute;
}

.z-030 {
  z-index: 30;
  position: absolute;
}

.z-040 {
  z-index: 40;
  position: absolute;
}

.z-050 {
  z-index: 50;
  position: absolute;
}

.z-060 {
  z-index: 60;
  position: absolute;
}

.z-070 {
  z-index: 70;
  position: absolute;
}

.z-080 {
  z-index: 80;
  position: absolute;
}

.z-090 {
  z-index: 90;
  position: absolute;
}

.z-100 {
  z-index: 100;
  position: absolute;
}

.z-110 {
  z-index: 100;
  position: absolute;
}

/* Button Styles */
a.joinbtn {
  display: inline-block;
  background: rgb(255, 241, 164);
  background: linear-gradient(180deg, rgb(255, 241, 164) 0%, rgb(255, 211, 85) 91%);
  border: none;
  padding: 25px 35px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0; /* Initially hidden */
  text-decoration: none;
  color: #3059b0; /* Default text color */
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
  outline: none;
}

/* Hover effect using CSS */
a.joinbtn:hover {
  color: #0a3591; /* Change font color on hover */
}

/* Section to make page scrollable */
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -10px;
}

/* Image styles */
.image {
  width: 80%;
  visibility: visible; /* Ensure the images are visible initially */
  /* Hide images on screens smaller than 900px */
}

@media (max-width: 900px) {
  .image {
    visibility: hidden;
  }
}/*# sourceMappingURL=main.css.map */