@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, #1cd645, #0fff39);

  --background_light_transparent: #ffffff55;
  --box_shadow: 0.5rem 0.5rem 0.5rem #00000066;

  --text-regular: #ffffff;
  --text-regular-inverted: #000000;
  --text-accent: #f74f2b;
  --text-secondary: #7b2d09;
  --text-tertiary: #700001;

  --text-gradient-accent: -webkit-linear-gradient(90deg, #1cd645, #0fff39);
  --text-gradient-primary: -webkit-linear-gradient(90deg, #f4b237, #fded02);
  --text-gradient-secondary: -webkit-linear-gradient(90deg, #c4be08, #ebf848);
  --text-gradient-tertiary: -webkit-linear-gradient(90deg, #470705, #7d0801);
}

/* 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: #f4b237;
  -webkit-text-stroke: 3px var(--text-tertiary); /* dark outline */
  text-shadow: 2px 2px 0 var(--text-regular); /* drop shadow */
  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: 0.85rem 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;
  padding: 2rem 0;
}

.section.section-1 .cultureContainer {
  width: 100%;
  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-regular);
}

.section.section-1 .logo_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 8rem;
}

.section.section-1 .logoContent {
  width: 25rem;
  margin: 0 auto;
  position: absolute;
  bottom: 25%;
  left: 0%;
  right: 0%;
}

.section.section-1 .section_char {
  width: 65%;
  margin: 0 auto;
}

.section.section-1 .sectionContent {
  position: relative;
  background-image: url("../images/rectangle1.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5rem 12% 4rem 16%;
}

.section.section-1 .sectionContent::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../images/rectangle1_glow.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
}

.section.section-1 .sectionTitle {
  position: absolute;
  top: 3%;
  left: 0%;
  right: 0%;
  display: flex;
  justify-content: center;
}

.section.section-1 .sectionSubject {
  color: var(--text-accent);
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
}

.section.section-1 .sectionSubject1 {
  background: var(--text-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(4px 2px 2px #f4b237);
}

.section.section-1 .sectionSubject2 {
  background: var(--text-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(6px 3px var(--text-tertiary));
}

.section.section-1 .sectionTitleFrame {
  background-image: url("../images/rectangle.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 2rem 4rem;
  margin-top: -2rem;
}

.section.section-1 .sectionTitleFrame::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-1 .sectionContentInfo {
  color: var(--text-regular);
  font-size: 1.25rem;
  text-align: center;
  margin: 0 auto;
}

.section.section-1 .register_button_container.main_section_container {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
/* 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;
  padding: 2rem 0;
}

.section.section-2 .section_char {
  width: 20%;
  display: flex;
  align-items: center;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.section.section-2 .sectionContent {
  width: 85%;
  background-image: url("../images/rectangle2.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 8rem 12.5% 8rem 12.5%;
}

.section.section-2 .sectionContent::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../images/rectangle2_glow.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
}

.section.section-2 .sectionSubject {
  background: var(--text-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.25rem;
  font-weight: bold;
  text-align: start;
}

.section.section-2 .sectionContentInfo {
  color: var(--text-regular);
  font-size: 1.25rem;
  text-align: start;
  position: relative;
  z-index: 2;
}

.section.section-2 .register_button_container.main_section_container {
  margin-top: 1rem;
  display: flex;
  justify-content: start;
  position: absolute;
  z-index: 1;
}
/* 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;
  padding: 2rem 0;
}

.section.section-3 .section_char {
  width: 18%;
  display: flex;
  align-items: center;
  position: absolute;
  left: 5%;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.section.section-3 .sectionContent {
  width: 85%;
  background-image: url("../images/rectangle3.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  float: right;
  padding: 6rem 12.5% 10rem 12.5%;
}

.section.section-3 .sectionContent::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../images/rectangle3_glow.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
}

.section.section-3 .sectionSubject {
  background: var(--text-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.25rem;
  font-weight: bold;
  text-align: end;
}

.section.section-3 .sectionContentInfo {
  color: var(--text-regular);
  font-size: 1.25rem;
  text-align: end;
  position: relative;
  z-index: 2;
}

.section.section-3 .register_button_container.main_section_container {
  margin-top: 1rem;
  display: flex;
  justify-content: end;
  position: absolute;
  right: 14%;
  z-index: 1;
}
/* 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;
  padding: 2rem 0;
}

.section.section-4 .section_char {
  width: 20%;
  display: flex;
  align-items: center;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.section.section-4 .sectionContent {
  width: 85%;
  background-image: url("../images/rectangle4.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 8rem 12.5% 8rem 12.5%;
}

.section.section-4 .sectionContent::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../images/rectangle4_glow.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
}

.section.section-4 .sectionSubject {
  background: var(--text-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.25rem;
  font-weight: bold;
  text-align: start;
}

.section.section-4 .sectionContentInfo {
  color: var(--text-regular);
  font-size: 1.25rem;
  text-align: start;
  position: relative;
  z-index: 2;
}

.section.section-4 .register_button_container.main_section_container {
  margin-top: 1rem;
  display: flex;
  justify-content: start;
  position: absolute;
  z-index: 1;
}
/* 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;
  padding: 2rem 0;
}

.section.section-5 .section_char {
  width: 20%;
  display: flex;
  align-items: center;
  position: absolute;
  left: 5%;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.section.section-5 .sectionContent {
  width: 85%;
  background-image: url("../images/rectangle5.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 1.25rem;
  position: relative;
  float: right;
  padding: 6rem 12.5% 10rem 7.5%;
}

.section.section-5 .sectionContent::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../images/rectangle5_glow.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
}

.section.section-5 .sectionSubject {
  background: var(--text-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.25rem;
  font-weight: bold;
  text-align: end;
}

.section.section-5 .sectionContentInfo {
  color: var(--text-regular);
  font-size: 1.25rem;
  text-align: end;
  position: relative;
  z-index: 2;
}

.section.section-5 .register_button_container.main_section_container {
  margin-top: 1rem;
  display: flex;
  justify-content: end;
  position: absolute;
  right: 10.5%;
  bottom: 16%;
  z-index: 1;
}
/* End Section 5 */

@media screen and (max-width: 1399px) {
}
@media screen and (max-width: 1024px) {
  .show_desktop {
    display: none;
  }

  .show_mobile {
    display: block;
  }

  .sectionTitleMobile {
    font-weight: bold;
    font-size: 2.25rem;
    text-align: center;
  }

  .subjectMobile1 {
    background: var(--text-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(4px 2px 2px #f4b237);
  }
  .subjectMobile2 {
    background: var(--text-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(6px 3px var(--text-tertiary));
  }

  .sectionTitleFrame {
    background-image: url("../images/rectangle.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding: 2rem 4rem;
    margin-top: -2rem;
  }

  .sectionTitleFrame::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-1 {
    background-image: url("../images/bg1_mobile.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .section.section-1 .logoContent {
    bottom: 32%;
    width: 23rem;
    margin: 0 auto;
  }
  .section.section-1 .sectionBody {
    display: block;
  }
  .section.section-1 .sectionContent {
    width: 100%;
    margin-right: 1.25rem;
  }
  .section.section-1 .sectionContentInfo {
    margin: 0 auto;
    font-size: 1.1rem;
  }

  .section.section-2 {
    background-image: url("../images/bg2_mobile.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .section.section-2 .section_char {
    width: 60%;
    margin: 0 auto;
    position: unset;
  }
  .section.section-2 .sectionContent {
    width: 100%;
    margin-left: -1rem;
    margin-top: -5rem;
    padding: 8rem 12.5% 8rem 16.5%;
    background-image: url("../images/rectangle1.png");
  }
  .section.section-2 .sectionContent::after {
    background-image: url("../images/rectangle1_glow.png");
  }
  .section.section-2 .sectionSubject {
    text-align: center;
  }
  .section.section-2 .sectionContentInfo {
    font-size: 1.1rem;
    text-align: center;
  }
  .section.section-2 .register_button_container.main_section_container {
    justify-content: center;
    left: 0%;
    right: 0%;
  }

  .section.section-3 {
    background-image: url("../images/bg3_mobile.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .section.section-3 .section_char {
    width: 60%;
    margin: 0 auto;
    position: unset;
  }
  .section.section-3 .sectionContent {
    width: 100%;
    margin-right: 1rem;
    margin-top: -5rem;
    padding: 8rem 12.5% 8rem 16.5%;
    background-image: url("../images/rectangle1.png");
  }
  .section.section-3 .sectionContent::after {
    background-image: url("../images/rectangle1_glow.png");
  }
  .section.section-3 .sectionSubject {
    font-size: 1.8rem;
    text-align: center;
  }
  .section.section-3 .sectionContentInfo {
    font-size: 1.1rem;
    text-align: center;
  }
  .section.section-3 .register_button_container.main_section_container {
    justify-content: center;
    left: 0%;
    right: 0%;
  }

  .section.section-4 {
    background-image: url("../images/bg4_mobile.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .section.section-4 .section_char {
    width: 60%;
    margin: 0 auto;
    position: unset;
  }
  .section.section-4 .sectionContent {
    width: 100%;
    margin-left: -1rem;
    margin-top: -5rem;
    padding: 8rem 12.5% 8rem 16.5%;
    background-image: url("../images/rectangle1.png");
  }
  .section.section-4 .sectionContent::after {
    background-image: url("../images/rectangle1_glow.png");
  }
  .section.section-4 .sectionSubject {
    font-size: 1.8rem;
    text-align: center;
  }
  .section.section-4 .sectionContentInfo {
    font-size: 1.1rem;
    text-align: center;
  }
  .section.section-4 .register_button_container.main_section_container {
    justify-content: center;
    left: 0%;
    right: 0%;
  }

  .section.section-5 {
    background-image: url("../images/bg5_mobile.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .section.section-5 .sectionBody {
    display: flex;
    flex-direction: column-reverse;
  }
  .section.section-5 .section_char {
    width: 60%;
    margin: 0 auto;
    position: unset;
    margin-top: -8rem;
  }
  .section.section-5 .sectionContent {
    width: 100%;
  }
  .section.section-5 .sectionSubject {
    font-size: 1.8rem;
    text-align: center;
  }
  .section.section-5 .sectionContentInfo {
    font-size: 1.1rem;
    text-align: center;
  }
  .section.section-5 .register_button_container.main_section_container {
    justify-content: center;
    left: 0%;
    right: 0%;
    bottom: 5%;
  }
  .section.section-5 .sectionTitleMobile {
    margin-top: -8rem;
  }
}

@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: 1.6rem;
    white-space: normal;
    text-align: center;
  }

  .main_section_container {
    display: flex;
    justify-content: center;
  }

  .sectionTitleMobile {
    font-size: 1.8rem;
  }
  /* End Global Section */

  /* Start Section 1 */
  .section.section-1 {
    padding: 1rem 0 0 0;
  }
  .section.section-1 .main_section_container {
    margin: 0 0 0 0;
  }
  .section.section-1 .logoContent {
    width: 20rem;
    bottom: 38%;
    margin: 0 auto;
  }
  .section.section-1 .sectionContainer {
    display: block;
  }
  .section.section-1 .sectionBody {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .section.section-1 .section_char {
    width: 95%;
    margin: auto;
  }
  .section.section-1 .sectionSubject {
    padding-top: 1rem;
    font-size: 1.2rem;
  }
  .section.section-1 .sectionContent {
    padding: 6rem 12% 5rem 16%;
  }
  .section.section-1 .sectionTitleFrame {
    margin-top: -1rem;
  }
  .section.section-1 .sectionContentInfo {
    font-size: 0.85rem;
  }
  /* End Section 1 */

  /* Start Section 2 */
  .section.section-2 {
    padding: 1rem 0rem;
  }
  .section.section-2 .sectionSubject {
    padding-top: 1rem;
    font-size: 1.2rem;
  }
  .section.section-2 .sectionContent {
    width: 100%;
    background-image: url("../images/rectangle1.png");
  }
  .section.section-2 .sectionContent::after {
    background-image: url("../images/rectangle1_glow.png");
  }
  .section.section-2 .sectionContentInfo {
    font-size: 0.85rem;
  }
  /* End Section 2 */

  /* Start Section 3 */
  .section.section-3 {
    padding: 1rem 0rem;
  }
  .section.section-3 .sectionSubject {
    padding-top: 1rem;
    font-size: 1.2rem;
  }
  .section.section-3 .sectionContent {
    width: 100%;
    background-image: url("../images/rectangle1.png");
  }
  .section.section-3 .sectionContent::after {
    background-image: url("../images/rectangle1_glow.png");
  }
  .section.section-3 .sectionContentInfo {
    font-size: 0.85rem;
  }
  .section.section-3 .register_button_container {
    display: flex;
    justify-content: center;
  }
  /* End Section 3 */

  /* Start Section 4 */
  .section.section-4 {
    padding: 1rem 0rem;
  }
  .section.section-4 .sectionSubject {
    padding-top: 1rem;
    font-size: 1.2rem;
  }
  .section.section-4 .sectionContentInfo {
    font-size: 0.85rem;
  }
  /* End Section 4 */

  /* Start Section 5 */
  .section.section-5 {
    padding: 1rem 0rem;
  }
  .section.section-5 .sectionBody {
    display: flex;
    flex-direction: column-reverse;
  }
  .section.section-5 .sectionContent {
    margin-left: 0.6rem;
  }
  .section.section-5 .sectionSubject {
    padding-top: 1rem;
    font-size: 1.2rem;
  }
  .section.section-5 .sectionContentInfo {
    font-size: 0.85rem;
  }
  .section.section-5 .register_button_container.main_section_container {
    bottom: 1%;
  }
  /* 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;
  }
}
