@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --background_primary: #000;
  --background_secondary: #ff0000;
  --background_inverted: #ffffff;

  --theme-color-primary: url("../images/button.png");
  --theme-color-secondary: -webkit-linear-gradient(90deg, #fdf411, #feac00);

  --background_light_transparent: #ffffff55;
  --box_shadow: 0.5rem 0.5rem 0.5rem #00000066;

  --text-regular: #ffffff;
  --text-regular-inverted: #000000;
  --text-accent: #fdf411;
  --text-secondary: #feac00;
  --text-tertiary: #490600;
}

/* Start Global Section */
.main {
  display: flex;
  flex-direction: column;
  font-family: "Montserrat";
  background: var(--background_inverted);
}

.main .section {
  position: relative;
  overflow-x: hidden;
}

/* .main .section:nth-child(odd) {
  background-image: var(--background_primary);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.main .section:nth-child(even) {
  background: var(--background_secondary);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
} */

.btn_copy {
  background: var(--theme-color-primary);
  color: var(--text-regular);
  padding: 0.2rem 2rem;
  border-radius: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.btn_primary {
  color: var(--text-regular);
  background: var(--theme-color-primary);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
  height: fit-content;
  padding: 1.6rem 2rem;
  font-weight: bold;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 15px;
}

.btn_primary.btn_register {
  animation: glow 1.5s infinite;
}

.show_desktop {
  display: block;
}
.show_mobile {
  display: none;
}

#toast-container {
  margin-top: 30px;
  margin-bottom: 10px;
}
#toast-container > div {
  box-shadow: unset !important;
}
.toast {
  background-color: #313131 !important;
}
/* End Global Section */

/* Start Section 1 */
.section.section-1 {
  background-image: url("../images/bg1_deskstop.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.section.section-1 .cultureContainer {
  width: 100%;
  margin-top: 1rem;
  display: none;
  justify-content: end;
}

.section.section-1 .langItem {
  font-size: 1rem;
  color: var(--text-regular);
  padding: 0 1rem;
  cursor: pointer;
}

.section.section-1 .langItem.active {
  color: var(--text-accent);
}

.section.section-1 .langItem:not(:last-child) {
  border-right: 1px solid var(--text-secondary);
}

.section.section-1 .logo_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section.section-1 .logoContent {
  width: 22rem;
  margin: 1rem 0;
}

.section.section-1 .sectionBody {
  margin-top: -6rem;
}

.section.section-1 .section_char img {
  width: 80%;
}
.section.section-1 .sectionContent {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.section.section-1 .sectionSubject {
  background: var(--theme-color-secondary);
  font-size: 2.3rem;
  font-style: italic;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(5px 2px var(--text-tertiary));
}

.section.section-1 .textBgtBox {
  background-image: url("../images/bgTextBox.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: fit-content;
  margin: 0 auto;
}

.section.section-1 .sectionContentInfo {
  color: var(--text-regular);
  line-height: 1.6;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 auto;
  margin-top: 1rem;
  font-weight: bold;
}

.section.section-1 .register_button_container.main_section_container {
  position: absolute;
  top: 17%;
  right: 10%;
}
/* End Section 1 */

/* Start Section 2 */
.section.section-2 {
  background-image: url("../images/bg2_deskstop.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.section.section-2 .sectionBody {
  display: flex;
  align-items: center;
}

.section.section-2 .section_char {
  width: 35%;
}

.section.section-2 .section_floatMug {
  position: absolute;
  width: 20%;
  bottom: 15%;
  right: -5%;
  z-index: 1;
}

.section.section-2 .sectionContent {
  position: relative;
  width: 65%;
  background-image: url("../images/rectangle.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5rem 8rem;
}

.section.section-2 .sectionContent::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../images/rectangle_glow.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
}

.section.section-2 .textBgtBox {
  background-image: url("../images/bgTextBox.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 30px;
  width: fit-content;
  margin: 0 auto;
}

.section.section-2 .sectionSubject {
  background: var(--theme-color-secondary);
  font-size: 2.3rem;
  font-style: italic;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(5px 2px var(--text-tertiary));
  padding: 0rem 1rem;
}

.section.section-2 .sectionContentInfo {
  color: var(--text-regular);
  line-height: 1.6;
  margin: 1rem 0rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.section.section-2 .register_button_container.main_section_container {
  display: flex;
  justify-content: center;
}
/* End Section 2 */

/* Start Section 3 */
.section.section-3 {
  background-image: url("../images/bg3_deskstop.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.section.section-3 .sectionBody {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}

.section.section-3 .section_char {
  width: 30%;
}

.section.section-3 .section_floatCash {
  position: absolute;
  width: 12.5%;
  bottom: 5%;
  left: 0%;
  z-index: 1;
}

.section.section-3 .sectionContent {
  position: relative;
  width: 70%;
  background-image: url("../images/rectangle.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5rem 8rem;
}

.section.section-3 .sectionContent::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../images/rectangle_glow.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
}

.section.section-3 .textBgtBox {
  background-image: url("../images/bgTextBox.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 30px;
  width: fit-content;
  margin: 0 auto;
}
.section.section-3 .sectionSubject {
  background: var(--theme-color-secondary);
  font-size: 2.3rem;
  font-style: italic;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(5px 2px var(--text-tertiary));
  padding: 0rem 2rem;
}

.section.section-3 .sectionContentInfo {
  color: var(--text-regular);
  line-height: 1.6;
  margin: 1rem 0rem;
  font-size: 1.5rem;
  text-align: start;
  font-weight: bold;
}

.section.section-3 .register_button_container.main_section_container {
  display: flex;
  justify-content: center;
}
/* End Section 3 */

/* Start Section 4 */
.section.section-4 {
  background-image: url("../images/bg4_deskstop.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.section.section-4 .sectionBody {
  display: flex;
  align-items: center;
}

.section.section-4 .section_char {
  width: 30%;
}

.section.section-4 .section_floatDollar {
  position: absolute;
  width: 12.5%;
  top: 5%;
  right: 10%;
  z-index: 1;
}

.section.section-4 .section_rabbit {
  width: 15%;
  position: absolute;
  bottom: 5%;
  right: 0%;
  z-index: 1;
}

.section.section-4 .sectionContent {
  position: relative;
  width: 70%;
  background-image: url("../images/rectangle.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5rem 8rem;
}

.section.section-4 .sectionContent::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../images/rectangle_glow.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
}

.section.section-4 .textBgtBox {
  background-image: url("../images/bgTextBox.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 30px;
  width: fit-content;
  margin: 0 auto;
}

.section.section-4 .sectionSubject {
  background: var(--theme-color-secondary);
  font-size: 2.3rem;
  font-style: italic;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(5px 2px var(--text-tertiary));
  padding: 0rem 2rem;
}

.section.section-4 .sectionContentInfo {
  color: var(--text-regular);
  line-height: 1.6;
  margin: 1rem 0rem;
  font-size: 1.5rem;
  text-align: start;
  font-weight: bold;
}

.section.section-4 .register_button_container.main_section_container {
  display: flex;
  justify-content: center;
}
/* End Section 4 */

/* Start Section 5 */
.section.section-5 {
  background-image: url("../images/bg5_deskstop.jpg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.section.section-5 .section_char {
  width: 10%;
  position: absolute;
  top: 3%;
  left: 10%;
}

.section.section-5 .section_fox {
  width: 15%;
  position: absolute;
  top: -5%;
  right: 0%;
  z-index: 1;
}

.section.section-5 .sectionContent {
  background-image: url("../images/square.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5rem 8rem;
  position: relative;
}

.section.section-5 .sectionContent::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../images/square_glow.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
}

.section.section-5 .textBgtBox {
  background-image: url("../images/bgTextBox.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 30px;
  width: fit-content;
  margin: 0 auto;
}

.section.section-5 .sectionSubject {
  background: var(--theme-color-secondary);
  font-size: 2.3rem;
  font-style: italic;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(5px 2px var(--text-tertiary));
  padding: 0rem 2rem;
}

.section.section-5 .sectionContentInfo {
  color: var(--text-regular);
  line-height: 1.6;
  margin: 1rem 0rem;
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
}

.section.section-5 .register_button_container.main_section_container {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}
/* End Section 5 */

@media screen and (max-width: 1399px) {
}
@media screen and (max-width: 1024px) {
  /* Section 1 */
  .section.section-1 {
    background-image: url("../images/bg1_mobile.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .section.section-1 .logoContent {
    width: 23rem;
  }
  .section.section-1 .sectionBody {
    margin-top: 0rem;
  }
  .section.section-1 .sectionContent {
    width: 100%;
  }
  .section.section-1 .sectionSubject {
    font-size: 1.8rem;
  }
  .section.section-1 .sectionContentInfo {
    margin: 0 auto;
    font-size: 1.2rem;
  }
  .section.section-1 .register_button_container.main_section_container {
    position: unset;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  /* Section 2 */
  .section.section-2 {
    background-image: url("../images/bg2_mobile.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .section.section-2 .sectionContent {
    padding: 5rem 4rem;
  }
  .section.section-2 .sectionSubject {
    font-size: 1.8rem;
  }
  .section.section-2 .sectionContentInfo {
    margin: 1rem;
    font-size: 1.2rem;
  }

  /* Section 3*/
  .section.section-3 {
    background-image: url("../images/bg3_mobile.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .section.section-3 .sectionContent {
    padding: 5rem 4rem;
  }
  .section.section-3 .sectionSubject {
    font-size: 1.8rem;
  }
  .section.section-3 .sectionContentInfo {
    margin: 1rem;
    font-size: 1.2rem;
  }

  /* Section 4*/
  .section.section-4 {
    background-image: url("../images/bg4_mobile.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .section.section-4 .sectionContent {
    padding: 5rem 4rem;
  }
  .section.section-4 .sectionSubject {
    font-size: 1.8rem;
  }
  .section.section-4 .sectionContentInfo {
    margin: 1rem;
    font-size: 1.2rem;
  }

  /* Section 5 */
  .section.section-5 {
    background-image: url("../images/bg5_mobile.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .section.section-5 .sectionSubject {
    font-size: 1.8rem;
  }
  .section.section-5 .sectionContentInfo {
    margin: 1rem;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 820px) {
}

@media (max-width: 767px) {
  /* Start Global Section */
  /* .main .section:nth-child(odd) {
    background: var(--background_primaryM);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: fit-content;
  }

  .main .section:nth-child(even) {
    background: var(--background_secondary);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  } */

  .show_desktop {
    display: none;
  }

  .show_mobile {
    display: block;
  }

  .btn_primary.btn_register {
    margin: 10px;
    font-size: 1rem;
    white-space: normal;
    text-align: center;
  }

  .main_section_container {
    display: flex;
    justify-content: center;
  }
  /* End Global Section */

  /* Start Section 1 */
  .section.section-1 {
    padding: 1rem 0 0 0;
  }
  .section.section-1 .logoContent {
    width: 20rem;
    margin: 0 auto;
  }
  .section.section-1 .sectionBody {
    margin-top: 0rem;
  }
  .section.section-1 .section_char {
    width: 100%;
    margin: auto;
  }
  .section.section-1 .sectionSubject {
    font-size: 1.6rem;
  }
  .section.section-1 .register_button_container.main_section_container {
    position: unset;
  }
  /* End Section 1 */

  /* Start Section 2 */
  .section.section-2 .section_char {
    width: 50%;
  }
  .section.section-2 .sectionContent {
    width: 100%;
    white-space: normal;
    font-size: 1.2rem;
    padding: 5rem 2rem;
  }
  .section.section-2 .sectionTitle {
    justify-content: center;
  }
  .section.section-2 .sectionSubject {
    font-size: 1.6rem;
  }
  .section.section-2 .sectionContentInfo {
    margin: 1rem 0;
    font-size: 0.85rem;
  }
  /* End Section 2 */

  /* Start Section 3 */
  .section.section-3 .section_char {
    width: 50%;
  }
  .section.section-3 .sectionContent {
    width: 100%;
    padding: 5rem 2rem;
  }
  .section.section-3 .sectionTitle {
    width: 100%;
  }
  .section.section-3 .sectionSubject {
    font-size: 1.6rem;
  }
  .section.section-3 .sectionContentInfo {
    margin: 1rem 0;
    font-size: 0.85rem;
  }
  .section.section-3 .register_button_container {
    display: flex;
    justify-content: center;
  }
  /* End Section 3 */

  /* Start Section 4 */
  .section.section-4 .section_char {
    width: 50%;
    margin: auto;
  }
  .section.section-4 .section_rabbit {
    width: 22%;
    bottom: 2%;
  }
  .section.section-4 .sectionContent {
    width: 100%;
    padding: 5rem 2rem;
  }
  .section.section-4 .sectionSubject {
    font-size: 1.6rem;
  }
  .section.section-4 .sectionContentInfo {
    margin: 1rem 0;
    font-size: 0.85rem;
  }
  /* End Section 4 */

  /* Start Section 5 */
  .section.section-5 .sectionContent {
    padding: 5rem 2rem;
  }
  .section.section-5 .section_fox {
    width: 22%;
    top: 12%;
    right: -5%;
  }
  .section.section-5 .sectionSubject {
    font-size: 1.6rem;
  }
  /* End Section 5 */
}

@keyframes glow {
  0% {
    opacity: 0.9;
  }
  10% {
    transform: translate3d(-0.01rem, 0, 0);
  }
  70% {
    transform: scale(1);
    box-shadow: var(--theme-color-primary) 0 0 0 0.25rem;
  }
  80% {
    transform: translate3d(-0.01rem, 0, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: transparent 0 0 0 0.5rem;
    opacity: 1;
  }
}
