/*
--main-blue: #032c38;
--lighter-blue: #064456;
--darker-blue: #051519;

--main-green: #32cc9d;
--darker-green: #60a274;

--main-light: #fff;
*/


section {
  min-height: 100vh;
  width: 100%;
}

.mobile {
  display: none;
}

.pc {
  display: block;
}

.secOne {
  background: radial-gradient(at center top,
      var(--darker-blue),
      var(--lighter-blue) 40%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  color: var(--main-light);
}

.secOne>.one {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  justify-content: center;
}

.secOne>.one>h1 {
  font-size: 47px;
}

.secOne>.one>.big {
  font-size: 55px;
  margin: -15px 0 15px 0;
}

.secOne>.one>p {
  font-size: 25px;
}

.secOne>.one>button {
  margin-top: 15px;
  width: 70%;
}

.secOne>.bgLogo {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secOne>.bgLogo>img {
  width: 25%;
  opacity: 10%;
  margin-left: -145px;
}

.secOne>.two {
  width: 30%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secOne>.two>img {
  width: 100%;
  min-width: 432px;
}

.secTwo {
  background: linear-gradient(var(--lighter-blue), #32cc9d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--main-light);
}

.secTwo>div {
  background-color: var(--darker-blue);
  width: 90%;
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 40px 0;
  align-items: center;
  justify-content: center;
}

.secTwo>div>h1 {
  font-size: 25px;
}

.secTwo>div>.big {
  margin-top: -10px;
  font-size: 45px;
}

.secTwo>div>.cards {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-evenly;
  margin: 40px 0;
}

.secTwo>div>.cards>.card {
  width: 30%;
  /* height: 300px; */
  background-color: var(--main-light);
  border-radius: 20px;
  color: var(--darker-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
}

.secTwo>div>.cards>.card>h1 {
  margin-bottom: 20px;
}

.secTwo>div>.cards>.card>p {
  width: 90%;
}

.secThree {
  background: radial-gradient(at center, #86cf9c, var(--main-green) 50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  color: var(--darker-blue);
}

.secThree h1,
.secThree p {
  color: #fff;
}

.secThree a {
  color: var(--main-green);
}

.secThree h1 {
  font-size: 40px;
}

.secThree p {
  font-size: 20px;
}

.secThree>.cardImg {
  width: 30%;
}

.secThree>.infos {
  line-break: break-word;
  width: 35%;
  display: flex;
  background-color: var(--main-blue);
  flex-direction: column;
  padding: 40px 25px;
  border-radius: 28px;
}

.secThree>.infos>h1 {
  text-align: center;
  margin: 20px 0;
}

.secThree>.infos>.icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 10px;
}

.secThree>.infos>.icons img {
  width: 50px;
  filter: invert(1);
}

.secFour {
  background: linear-gradient(var(--main-green), var(--main-blue));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--main-light);
}

.secFour .big {
  font-size: 45px;
  margin-top: -10px;
}

.secFour img {
  margin-top: 30px;
  width: 500px;
  animation: rouletteMenuIcon 3s infinite;
}

@keyframes rouletteMenuIcon {
  0% {
    filter: drop-shadow(0px 1px 3px rgb(255, 187, 0));
  }

  50% {
    filter: drop-shadow(0px 5px 10px rgb(255, 255, 255));
  }

  100% {
    filter: drop-shadow(0px 1px 3px rgb(255, 187, 0));
  }
}

.secFive {
  background-color: var(--main-blue);
}

.secFive {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  color: var(--main-light);
}

.secFive h1 {
  font-size: 40px;
  text-align: center;
}

.secFive p {
  font-size: 20px;
}

.secFive>.cardImg {
  line-break: break-word;
  width: 35%;
}

.secFive>.cardImg>img {
  width: 100%;
}

.secFive>.infos {
  width: 40%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.secFive>.infos>.card {
  width: 43.5%;
  text-align: center;
  padding: 0px 5px;
  height: 250px;
  background-color: var(--main-light);
  margin: 15px 10px 0 10px;
  border-radius: 20px;
  color: var(--main-blue);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.secSix {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--main-blue);
}

.secSix h1 {
  color: #fff;
  text-align: center;
}

.secSix img {
  width: 70%;
  margin: 60px 0;
}

.faq-container {
  width: 70%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.faq-title {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 28px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #777777;
}

.faq-question {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #444;
  font-size: 18px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #0066cc;
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #666;
  line-height: 1.6;
}

.faq-answer.show {
  max-height: 500px;
  padding: 0 15px 15px;
}

#modalWpp, #retryWpp {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background-color: #0000005d;
  backdrop-filter: 50px;
}

#retryWpp .modalContainer {
  background-color: #f5ff3b !important;
}

.modalContainer {
  background-color: #fff;
  padding: 25px 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  filter: drop-shadow(10px 12px 15px #000);
  z-index: 20;
  backdrop-filter: 50px;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modalContainer h1,
.modalContainer h2 {
  width: 80%;
  text-align: center;
}

.modalContainer p {
  margin: 20px 0;
}

.modalContainer button {
  width: 80%;
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.modalContainer button img {
  margin-right: 10px;
  width: 25px;
}

.modalContainer .qrcode {
  padding: 10px;
  background-color: #fff;
}
#lostWpp, #lostWppRetry {
  color: red;
}

@media screen and (min-width: 944px) {
  .secOne>.one>button {
    max-width: 325px;
  }
}

@media screen and (max-width: 800px) {
  .mobile {
    display: block;
  }

  .pc {
    display: none;
  }

  section {
    padding: 20px 0;
  }

  .secOne {
    flex-direction: column-reverse;
    justify-content: center;
  }

  .secOne .one {
    width: 70%;
    align-items: center;
  }

  .secOne .one button {
    width: 100%;
    max-width: 320px;
  }

  .secOne .bgLogo img {
    margin-left: 0;
    width: 80%;
  }

  .secOne .two {
    width: 80%;
  }

  .secOne .two img {
    width: 100%;
    min-width: auto;
  }

  .secTwo>div {
    width: 90%;
  }

  .secTwo>div>.cards {
    flex-direction: column;
    align-content: center;
  }

  .secTwo>div>.cards>.card {
    width: 90%;
    height: auto;
    min-height: 200px;
    margin-bottom: 10px;
    padding: 40px 15px;
  }

  .secThree {
    flex-direction: column;
  }

  .secThree>.infos {
    width: 90%;
  }

  .secThree>.cardImg {
    width: 95%;
  }

  .secFour img {
    width: 100%;
    max-width: 350px;
    margin-top: 20px;
  }

  .secFour .big {
    margin-bottom: 20px;
  }

  .secFour p {
    width: 80%;
    text-align: center;
  }

  .secFive {
    flex-direction: column-reverse;
  }

  .secFive>.infos {
    margin-top: 20px;
    justify-content: center;
  }

  .secFive>.infos,
  .secFive>.cardImg {
    width: 90%;
  }

  .secFive>.cardImg>img {
    margin: 20px 0;
  }

  .secFive>.infos>.card {
    height: 250px;
    width: 80%;
  }

  .secSix img {
    width: 90%;
  }

  .faq-container {
    width: 90%;
  }

  .modalContainer {
    width: 85%;
  }
  .modalContainer p {
    margin: 10px 0;
  }
  .modalContainer button {
    margin-top: 15px;
  }
}