@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --background_primary: #029450;
  --background_secondary: #ffffff;
  --background_m_primary: #029450;
  --background_m_secondary: #ffffff;
  --background_inverted: #ffffff;
  --theme-color-primary: #029450;
  --theme-color-secondary: #f7e702;
  --background_light_transparent: #ffffff55;
  --box_shadow: 0.5rem 0.5rem 0.5rem #00000066;
  --text_shadow: 0.2rem 0.5rem 0.5rem #000000;
  --text-accent: #029450;
  --text-secondary: #f7e702;
  --text-regular-inverted: #fff;
  --text-regular: #282828;
}

/* 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: var(--background_primary);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.main .section:nth-child(even) {
  background: var(--background_secondary);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.btn_copy {
  background: var(--theme-color-primary);
  color: var(--text-secondary);
  padding: 0.2rem 2rem;
  border-radius: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.btn_primary {
  background: var(--theme-color-secondary);
  padding: 0.25rem 1rem;
  white-space: nowrap;
  border-radius: 2rem;
  color: var(--text-accent);
  width: fit-content;
  text-align: center;
  height: fit-content;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.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 {
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  height: fit-content;
  flex-direction: column;
  padding-bottom: 3rem;
}

.section.section-1 .cultureContainer {
  display: flex;
  justify-content: end;
  width: 100%;
  margin-top: 1rem;
}

.section.section-1 .langItem {
  font-size: 1rem;
  color: var(--text-regular-inverted);
  padding: 0 1rem;
  cursor: pointer;
}

.section.section-1 .langItem.active {
  color: var(--theme-color-secondary);
}

.section.section-1 .langItem:not(:last-child) {
  border-right: 1px solid var(--theme-color-secondary);
}

.section.section-1 .main_section {
  display: grid;
  gap: 0% 10%;
  justify-content: center;
  grid-template-columns: 45% 45%;
  grid-template-areas:
    "log aqr"
    "wel aqr"
    "f88 aqr"
    "reg aqr"
    "btn cod";
}

.section.section-1 .main_section_container {
  margin-top: 2rem;
}

.section.section-1 .logo_container {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  grid-area: log;
}

.section.section-1 .logoContent {
	width: 8rem;
  padding: 0.1rem;
  background: white;
  border-radius: 25px;
}

.section.section-1 .welcome_container {
  width: 100%;
  grid-area: wel;
  display: flex;
  flex-wrap: wrap;
}

.section.section-1 .welcome_container .text_1 {
  color: var(--text-regular-inverted);
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  text-align: start;
  line-height: 1;
}

.section.section-1 .welcome_container .text_2 {
  color: var(--text-regular-inverted);
  font-size: 1.5rem;
  text-align: start;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  margin-left: .5rem;
}

.section.section-1 .free88_container {
  width: 100%;
  grid-area: f88;
}

.section.section-1 .free88_container .text_1{
  color: var(--text-regular-inverted);
  font-size: 3.5rem;
  font-family: "Roboto", sans-serif;
  text-align: start;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.section.section-1 .free88_container .text_2{
  color: var(--text-secondary);
  font-size: 4.5rem;
  text-align: start;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.section.section-1 .register_now_container {
  width: 100%;
  padding: 1rem 0rem;
  text-align: Start;
  grid-area: reg;
  border-top: 1px solid white;
}

.section.section-1 .register_now_container .text_1 {
  color: var(--text-regular-inverted);
  font-size: 2rem;
  text-shadow: var(--text_shadow);
  font-weight: bold;
}

.section.section-1 .register_now_container .text_2 {
  color: var(--text-secondary);
  font-size: 2rem;
  text-shadow: var(--text_shadow);
  font-weight: bold;
}

.section.section-1 .register_now_container .text_3 {
  color: var(--text-regular-inverted);
  font-size: 1.5rem;
  text-shadow: var(--text_shadow);
}

.section.section-1 .register_button_container {
  width: 100%;
  display: flex;
  justify-content: start;
  grid-area: btn;
}

.section.section-1 .agentQR_container {
  grid-area: aqr;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  width: 100%;
}

.section.section-1 .agentQRContent {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: var(--background_light_transparent);
  border-radius: 0.5rem;
  height: fit-content;
  width: 70%;
}

.section.section-1 .agentCode_container {
  grid-area: cod;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.section.section-1 .agentCodeContent {
  padding: 0.3rem;
  font-size: 1.5rem;
  width: fit-content;
  display: flex;
  align-items: center;
  /* border-radius: 2rem; */
  /* background: var(--background_inverted); */
}

.section.section-1 .agentText {
  color: var(--text-regular-inverted);
  text-align: center;
  margin-right: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  background: var(--background_light_transparent);
  padding: 0.2rem 2rem;
  border-radius: 2rem;
}

.btn_copy {
  background: var(--theme-color-secondary);
  color: var(--text-accent);
  padding: 0.2rem 2rem;
  border-radius: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.section.section-1 .section_char {
  position: absolute;
  bottom: 0;
  right: 38%;
  width: 20%;
  z-index: 1;
}

/* End Section 1 */

/* Start Section 2 */
.section.section-2 {
  display: flex;
  flex-direction: column;
  padding: 3rem 0;
}

.section.section-2 .whyChooseContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section.section-2 .section_char {
  width: 30%;
  padding: 2rem;
}

.section.section-2 .whyChooseSecContainer {
  width: 70%;
}

.section.section-2 .whyChooseContent {
  text-align: center;
  line-height: 2;
  font-size: 1.5rem;
  padding: 0rem 2rem 3rem 2rem;
}

.section.section-2 .whyChooseTitle {
  display: flex;
  justify-content: strat;
  width: 100%;
}

.section.section-2 .whyChooseTitleText {
  width: fit-content;
  color: var(--theme-color-primary);
  font-size: 3rem;
  font-style: italic;
  font-weight: bold;
  text-transform: uppercase;
}

.section.section-2 .whyChooseFooter {
  display: flex;
  justify-content: start;
  margin-top: 1rem;
}

.section.section-2 .whyChooseFooterText {
  text-align: start;
  font-size: 1.5rem;
  line-height: 2;
}
/* End Section 2 */

/* Start Section 3 */
.section.section-3 {
  padding: 3rem 0;
}

.section.section-3 .hugeSectionContainer {
  display: flex;
  flex-direction: column;
}

.section.section-3 .hugeSectionTitle {
  width: 55%;
}

.section.section-3 .hugeSectionTitleText {
  color: var(--theme-color-secondary);
  font-size: 2rem;
  font-style: italic;
  font-weight: bold;
  line-height: 1;
  font-family: "Montserrat";
  text-transform: uppercase;
}

.section.section-3 .hugeSectionBody {
  display: flex;
  align-items: start;
}

.section.section-3 .hugeSectionContent {
  width: 70%;
}

.section.section-3 .hugeSectionText {
  color: var(--text-regular-inverted);
  width: 80%;
  margin: 3rem 0;
  line-height: 2;
  font-size: 1.5rem;
}

.section.section-3 .main_section_container {
}

.section.section-3 .section_char {
  width: 40%;
}

/* End Section 3 */

/* Start Section 4 */
.section.section-4 {
  background: linear-gradient(to bottom, var(--background_primary) 35%, var(--background_secondary) 35%) !important;
  padding: 0 var(--container-padding) !important;
  position: relative;
  overflow-x: clip;
  overflow-y: hidden;
}

.section.section-4 .section_char,
.section.section-4 .generousBonusesContainer {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 2rem 0 18rem 0;
}

.section.section-4 .generousBonusesFirstBody {
  width: 50%;
  height: 100%;
  padding: 0rem 2rem 15rem 2rem;
  box-shadow: var(--box_shadow);
  background: var(--background_secondary);
}

.section.section-4 .generousBonusesContent {
  height: 100%;
  box-shadow: 0rem 0rem .5rem .5rem #00000055;
  background: var(--background_primary);
}
.section.section-4 .generousBonusesBody {
  width: 50%;
  height: 15%;
  padding: 3rem 0.5rem;
}

.section.section-4 .sectionCharContent {
	width: 50%;
	display: flex;
	justify-content: center;
}

.section.section-4 .section_char {
  position: absolute;
  width: 26vw;
  z-index: 5;
  margin-top: 12rem;
  /* margin: 16rem 0rem 0rem 3rem; */
}

.section.section-4 .generousBonusesContainerTitle {
  padding-top: 3rem;
  text-align: start;
}

.section.section-4 .generousBonusesContainerTitleText {
  color: var(--theme-color-primary);
  font-size: 2rem;
  font-style: italic;
  font-weight: bold;
  text-transform: uppercase;
}

.section.section-4 .generousBonusesContainerDesc {
  display: flex;
  justify-content: end;
  margin: 0 0 2rem 0;
}

.section.section-4 .generousBonusesContainerDescText {
  width: 100%;
  text-align: start;
  font-size: 1.2rem;
}

.section.section-4 .generousBonusesContent {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}

.section.section-4 .generousBonusesItem {
  width: 50%;
  padding: 2rem 0.5rem;
}

.section.section-4 .generousBonusesItemWrapper {
  height: 100%;
  color: var(--text-regular-inverted);
}

.section.section-4 .generousBonusesItemTitle {
  color: var(--theme-color-secondary);
  padding: 0.5rem;
  text-align: center;
  font-weight: bold;
  border-radius: 0.5rem;
}

.section.section-4 .generousBonusesItemContent {
  /*    white-space: pre-line;*/
  padding: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
}

.section.section-4 .wagerContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 1rem;
  font-size: 0.8rem;
}

.section.section-4 .wager {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
}

.section.section-4 .wager:not(:last-child) {
  border-right: 1px solid #000;
}

/* End Section 4 */

/* Start Section 5 */
.section.section-5 {
  padding: 3rem 0;
}

.section.section-5 .mobileFriendlyContainer {
  display: flex;
}

.section.section-5 .mobileFriendlyBody {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.section.section-5 .mobileFriendlyTitle {
  width: fit-content;
}

.section.section-5 .mobileFriendlyTitleText {
  width: fit-content;
  color: var(--theme-color-primary);
  border-radius: 4rem;
  font-size: 3rem;
  font-style: italic;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
  text-transform: uppercase;
}

.section.section-5 .mobileFriendlyContent {
  white-space: pre-line;
  font-size: 1.5rem;
  line-height: 2;
}

.section.section-5 .section_char {
  width: 50%;
}

/* End Section 5 */

/* Start Section 6 */
.section.section-6 {
  padding: 3rem 0 12rem 0;
  background: url("../images/AssetBg.png") !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}

.section.section-6 .secureContainer {
  display: flex;
}

.section.section-6 .secureBody {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.section.section-6 .secureTitle {
  width: fit-content;
}

.section.section-6 .secureTitleText {
  width: fit-content;
  color: var(--text-secondary);
  border-radius: 4rem;
  font-size: 3rem;
  font-style: italic;
  font-weight: bold;
  text-align: start;
  line-height: 1.2;
  text-transform: uppercase;
}

.section.section-6 .secureContent {
  white-space: pre-line;
  color: var(--text-regular-inverted);
  font-size: 1.2rem;
  line-height: 2;
  text-align: start;
}

.section.section-6 .section_char {
  width: 50%;
  padding: 3rem 3rem 0 3rem;
}

/* End Section 6 */

/* Start Section 7 */
.section.section-7 {
  padding: 3rem 0 0 0;
  overflow-y: clip;
  translate: 0 -18%;
  z-index: 99;
  position: relative;
  background: transparent !important;
  margin-bottom: -6rem;
}

.section.section-7 .experienceContainer {
  display: flex;
}

.section.section-7 .experienceBody {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.section.section-7 .experienceTitle {
  width: fit-content;
}

.section.section-7 .experienceTitleText {
  width: fit-content;
  color: var(--text-accent);
  border-radius: 4rem;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
  text-transform: uppercase;
}

.section.section-7 .experienceContent {
  white-space: pre-line;
  font-size: 1.5rem;
  line-height: 2;
}

.section.section-7 .section_char {
  width: 50%;
}
.section.section-7 .btn_primary {
  padding: 1rem;
  font-size: 1.8rem;
}

/* End Section 7 */

@media screen and (max-width: 1024px) {
  /* Start Section 4 */
	.section.section-1 .main_section {
		display: grid;
		justify-content: center;
		gap: 0;
		grid-template-columns: 100%;
		grid-template-areas:
		  "wel"
      "f88"
		  "btn"
		  "aqr"
		  "cod"
		  "log"
      "reg";
	  }
	  
	.section.section-1 .logo_container {
		justify-content: center;
	}
	
	.section.section-1 .logoContent {
		width: 8rem;
	}

  .section.section-1 .welcome_container {
    justify-content: center;
  }

  .section.section-1 .free88_container .text_1 {
    text-align: center;
  }

  .section.section-1 .free88_container .text_2 {
    text-align: center;
  }

  .section.section-1 .register_now_container {
    border-top: 0;
  }
	
	.section.section-1 .agentQR_container {
		margin-top: 2rem;
	}

	.section.section-1 .welcome_container .text_1 ,
	.section.section-1 .welcome_container .text_2 ,
	.register_now_container,
	.register_button_container{
		text-align: center !important;
		justify-content: center!important;
	}
	
	.section.section-1 {
		min-height: 65vh;
	}
	
	.section.section-4 .section_char {
		width: 40%;
    left: 10%;
    bottom: -40%;
	}
	
	.section.section-4 .generousBonusesItem {
		padding: 0.2rem 0.5rem;
	}
	
	.section.section-4 .generousBonusesFirstBody {
		padding: 0rem 2rem 10rem 2rem;
	}
	.section.section-7 {
		padding-bottom: 3rem;
	}
  /* End Section 4 */
}

@media screen and (max-width: 820px) {
  /* Start Section 4 */
  .section.section-4 .section_char {
    width: 30%;
    left: 15%;
    bottom: -20%;
  }
  .section.section-4 .generousBonusesItem {
    padding: 0.2rem 0.5rem;
	}
  .section.section-4 .generousBonusesFirstBody {
    padding: 0rem 2rem 10rem 2rem;
  }
  /* End Section 4 */
}

@media (max-width: 767px) {
  /* Start Global Section */
  .main .section:nth-child(odd) {
    background: var(--background_primary);
    background-repeat: no-repeat;
    background-size: cover;
    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 {
    width: 100%;
    white-space: normal;
    line-height: 2rem;
    margin: 10px;
    font-size: 1.8rem;
  }
  /* End Global Section */

  /* Start Section 1 */
  .section.section-1 {
    padding: 2rem 0;
  }

  .section.section-1 .cultureContainer {
    justify-content: center;
    margin-bottom: 2rem;
  }

  .section.section-1 .main_section {
    display: grid;
    justify-content: center;
    gap: 0;
    grid-template-columns: 100%;
    grid-template-areas:
      "wel"
      "f88"
      "btn"
      "aqr"
      "cod"
      "log"
      "reg";
  }

  .section.section-1 .main_section_container {
    margin-top: 2rem;
  }

  .section.section-1 .welcome_container {
    width: 80%;
    margin: 0 auto;
    justify-content: center;
  }

  .section.section-1 .logo_container {
    margin-bottom: 10%;
    justify-content: center;
  }

  .section.section-1 .welcome_container .text_1 {
    font-size: 1.2rem;
  }
  .section.section-1 .welcome_container .text_2 {
    font-size: 1.2rem;
  }

  .section.section-1 .free88_container {
    text-align: center;
    margin-top: 0.5rem;
  }

  .section.section-1 .free88_container .text_1 {
    font-size: 2.5rem;
    text-align: center;
    margin-left: 0;
  }

  .section.section-1 .free88_container .text_2 {
    font-size: 3.3rem;
    text-align: center;
    margin-left: 0;
  }

  .section.section-1 .register_now_container {
    line-height: 1.3;
  }

  .section.section-1 .register_now_container .text_1 {
    font-size: 1.5rem;
  }

  .section.section-1 .register_now_container .text_2 {
    font-size: 1.5rem;
  }

  .section.section-1 .register_now_container .text_3 {
    font-size: 1.2rem;
  }

  .section.section-1 .section_char {
    right: -5%;
    width: 45%;
  }
  /* End Section 1 */

  /* Start Section 2 */
  .section.section-2 .whyChooseContainer {
    flex-direction: column-reverse;
  }

  .section.section-2 .section_char {
    width: 100%;
  }

  .section.section-2 .whyChooseContent {
    width: 100%;
    white-space: normal;
    line-height: 1.75;
    font-size: 1.2rem;
  }

  .section.section-2 .whyChooseTitle {
    justify-content: center;
    margin-top: 3rem;
  }

  .section.section-2 .whyChooseTitleText {
    font-size: 1.5rem;
  }

  .section.section-2 .whyChooseFooter {
    justify-content: center;
  }

  .section.section-2 .whyChooseFooterText {
    text-align: center;
    line-height: 1.75;
    font-size: 1.2rem;
  }

  /* End Section 2 */

  /* Start Section 3 */
  .section.section-3 .hugeSectionTitle {
    width: 100%;
  }

  .section.section-3 .hugeSectionTitleText {
    font-size: 1.5rem;
    text-align: center;
    padding: 1rem 2rem;
  }

  .section.section-3 .hugeSectionBody {
    flex-direction: column;
    align-items: center;
  }

  .section.section-3 .hugeSectionContent {
    width: 100%;
  }

  .section.section-3 .hugeSectionText {
    width: 100%;
    text-align: center;
    padding-left: unset;
    line-height: 1.75;
    font-size: 1.2rem;
  }

  .section.section-3 .register_button_container {
    display: flex;
    justify-content: center;
  }

  .section.section-3 .section_char {
    width: 80%;
	padding: 3rem 0 0 0;
  }

  /* End Section 3 */

  /* Start Section 4 */
  .section.section-4 .generousBonusesContainer {
    flex-direction: column-reverse;
	padding: 2rem 0 12rem 0;
  }
  
  .section.section-4 .section_char {
		width: 65vw;
		bottom: -28%;
		left: 20%;
  }

  .section.section-4 .generousBonusesFirstBody {
    width: 100%;
    padding: 0rem 2rem 8rem 2rem;
  }

  .section.section-4 .generousBonusesBody {
    width: 100%;
  }

  .section.section-4 .generousBonusesContainerTitle {
    justify-content: center;
  }

  .section.section-4 .generousBonusesItemTitle {
    line-height: 1;
  }

  .section.section-4 .generousBonusesContainerTitleText {
    font-size: 1.75rem;
  }

  .section.section-4 .generousBonusesContainerDescText {
    text-align: center;
    line-height: 1.75;
    font-size: 1.2rem;
  }

  .section.section-4 .wagerContainer {
    flex-wrap: unset;
    flex-direction: column;
    align-items: center;
  }

  .section.section-4 .wager {
    flex-direction: row;
  }
  .section.section-4 .wager > span {
    margin: 0 0.25rem;
  }

  .section.section-4 .wager:not(:last-child) {
    border: unset;
  }

  /* End Section 4 */

  /* Start Section 5 */
  .section.section-5 .mobileFriendlyContainer {
    flex-direction: column;
  }

  .section.section-5 .mobileFriendlyBody {
    width: 100%;
  }

  .section.section-5 .mobileFriendlyTitleText {
    text-align: center;
    font-size: 1.75rem;
    padding: 0.5rem 2rem;
  }

  .section.section-5 .mobileFriendlyContent {
    text-align: center;
    white-space: normal;
    line-height: 1.75;
    font-size: 1.2rem;
  }

  .section.section-5 .section_char {
    width: 75%;
    margin: 0 auto;
  }
  /* End Section 5 */

  /* Start Section 6 */
  .section.section-6 {
    padding: 3rem 0 6rem 0;
  }

  .section.section-6 .secureContainer {
    flex-direction: column-reverse;
    align-items: center;
  }

  .section.section-6 .secureBody {
    width: 100%;
    align-items: center;
  }

  .section.section-6 .secureTitle {
    justify-content: center;
  }

  .section.section-6 .secureTitleText {
    font-size: 1.75rem;
    text-align: center;
  }

  .section.section-6 .secureContent {
    text-align: center;
    white-space: normal;
    line-height: 1.75;
    font-size: 1.2rem;
  }

  .section.section-6 .section_char {
    width: 80%;
    padding: 3rem 0 0 0;
  }
  /* End Section 6 */

  /* Start Section 7 */
  .section.section-7 {
    translate: 0 0%;
  }

  .section.section-7 .experienceContainer {
    flex-direction: column;
  }

  .section.section-7 .experienceBody {
    width: 100%;
  }

  .section.section-7 .experienceTitleText {
    text-align: center;
    font-size: 1.5rem;
    padding: 0.5rem 2rem;
  }

  .section.section-7 .register_button_container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
  }

  .section.section-7 .experienceContent {
    text-align: center;
    white-space: normal;
    line-height: 1.75;
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }

  .section.section-7 .section_char {
    width: 75%;
    margin-top: 2rem;
  }

  /* End Section 7 */
}

@keyframes glow {
  0% {
    opacity: .9;
  }
  10%{
    transform: translate3d(-0.01rem, 0, 0);
  }
  70% {
    transform: scale(1);
    box-shadow: var(--theme-color-secondary) 0 0 0 .25rem;
  }
  80%{
    transform: translate3d(-0.01rem, 0, 0);
  }
  100%{
    transform: scale(1);
    box-shadow: transparent 0 0 0 .5rem;
    opacity: 1;
  }
    
}
