:root {
  --font-family: "Montserrat", sans-serif;
  --title-font: "Patua One", serif;
  --content-width: 1190px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --regular-font: 400;
  --semibold-font: 600;
  --bold-font: 700;
  --white-color: #ffffff;
  --purpple-color: #25004B;
  --pink-color:#F963FF;
  --grey-color: #6A6A6A;
  --light-grey:#C4C4C4;
  --gradient:linear-gradient(180deg, #5C0CAD 0%, #54092E 100%);
  --transition: .2s ease-in-out;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Patua One";
  src: url("/lottoinsightau-fonts/lottoinsightau-PatuaOne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/lottoinsightau-fonts/lottoinsightau-Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/lottoinsightau-fonts/lottoinsightau-Montserrat-Bold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/lottoinsightau-fonts/lottoinsightau-Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

.page {
  overflow-x: hidden;
  height: 100%;
}

.page__body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-family: var(--font-family);
  font-weight: var(--regular-font);
  font-size: 16px;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}

.main {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.main--secondary .czafloris-hero {
  display: none;
}

.is-hidden {
  display: none !important;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.centered {
  text-align: center;
}

.page--ios .dis-scroll {
  position: relative;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6784313725);
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
}

.popup {
  padding: 32px;
  border-radius: 30px;
  background: var(--purpple-color);
  max-width: 500px;
  width: 90%;
  display: none;
  position: relative;
}

.popup input {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  padding: 10px;
  color: #6B7074;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  border-radius: 10px;
  background: #FFFDFD;
}
.popup input::-webkit-input-placeholder {
  color: #6B7074;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
.popup input::-moz-placeholder {
  color: #6B7074;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  -moz-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
.popup input:-ms-input-placeholder {
  color: #6B7074;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  -ms-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
.popup input::-ms-input-placeholder {
  color: #6B7074;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  -ms-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
.popup input::placeholder {
  color: #6B7074;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  -webkit-transition: opacity var(--transition);
  transition: opacity var(--transition);
}
.popup input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.popup input:focus::-moz-placeholder {
  opacity: 0;
}
.popup input:focus:-ms-input-placeholder {
  opacity: 0;
}
.popup input:focus::-ms-input-placeholder {
  opacity: 0;
}
.popup input:focus::placeholder {
  opacity: 0;
}

.popup__btn {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: var(--white-color);
  background: -webkit-gradient(linear, left top, left bottom, from(#5C0CAD), to(#54092E));
  background: linear-gradient(180deg, #5C0CAD 0%, #54092E 100%);
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}
.popup__btn:hover {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}
.popup h2 {
  margin-bottom: 10px;
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  color: var(--white-color);
  text-transform: uppercase;
}
.popup h3 {
  margin-bottom: 10px;
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  color: var(--white-color);
  text-transform: uppercase;
}
.popup p {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  color: var(--white-color);
  text-align: center;
}
.popup p a {
  color: var(--pink-color);
  font-weight: 600;
}

.LottoInsightAU-section {
  padding: 80px 0;
}
.LottoInsightAU-section__title {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 24px;
  color: #FFF;
  font-family: var(--title-font);
  font-size: clamp(1.5rem, 1.125rem + 1.67vw, 2.375rem);
  line-height: 120%;
  text-transform: uppercase;
}
.LottoInsightAU-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--light-grey);
}
.LottoInsightAU-section__text {
  margin-bottom: 24px;
  font-size: clamp(0.875rem, 0.821rem + 0.24vw, 1rem);
  font-weight: 400;
  line-height: 150%;
  color: var(--white-color);
}
.LottoInsightAU-section__list {
  margin-bottom: 24px;
}
.LottoInsightAU-section__list li {
  font-size: clamp(0.875rem, 0.821rem + 0.24vw, 1rem);
  font-weight: 400;
  line-height: 150%;
  color: var(--white-color);
}
.LottoInsightAU-section__btn {
  padding: 10px 20px;
  border: 2px solid var(--white-color);
  border-radius: 100px;
  min-width: 206px;
  font-family: var(--title-font);
  font-size: 12px;
  color: var(--white-color);
  background-color: transparent;
  -webkit-transition: background-color var(--transition);
  transition: background-color var(--transition);
}
.LottoInsightAU-section__btn:hover {
  background-color: var(--pink-color);
}

@media screen and (max-width: 500px) {
  .LottoInsightAU-section {
    padding: 40px 0;
  }
  .LottoInsightAU-section__btn {
    width: 100%;
  }
  .LottoInsightAU-section__title {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.LottoInsightAU-header {
  padding: 14px 0;
  width: 100%;
  background-color: var(--white-color);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.LottoInsightAU-header__logo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.LottoInsightAU-header__logo svg {
  width: 32px;
  height: 32px;
}
.LottoInsightAU-header__logo span {
  font-family: var(--title-font);
  font-size: clamp(1.063rem, 0.768rem + 1.31vw, 1.75rem);
  color: var(--purpple-color);
}
.LottoInsightAU-header__body {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5px;
}
.LottoInsightAU-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.LottoInsightAU-header__link {
  position: relative;
  display: block;
  overflow-x: hidden;
  font-family: var(--title-font);
  font-size: 14px;
  color: var(--purpple-color);
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}
.LottoInsightAU-header__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--pink-color);
  -webkit-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  transform: translateX(-200%);
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}
.LottoInsightAU-header__link--active::before {
  background-color: var(--purpple-color);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.LottoInsightAU-header__link:hover {
  color: var(--pink-color);
}
.LottoInsightAU-header__link:hover::before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.LottoInsightAU-header__btns {
  gap: 10px;
}
.LottoInsightAU-header__btn {
  display: block;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: var(--white-color);
  background: -webkit-gradient(linear, left top, left bottom, from(#5C0CAD), to(#54092E));
  background: linear-gradient(180deg, #5C0CAD 0%, #54092E 100%);
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}
.LottoInsightAU-header__btn:hover {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.LottoInsightAU-burger {
  position: relative;
  z-index: 1000;
  display: none;
  padding: 0;
  width: 34px;
  height: 20px;
  margin-left: auto;
  cursor: pointer;
}
.LottoInsightAU-burger__line {
  position: absolute;
  right: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--purpple-color);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.LottoInsightAU-burger::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background-color: var(--purpple-color);
  -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.LottoInsightAU-burger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--purpple-color);
  -webkit-transition: bottom 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: bottom 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, bottom 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, bottom 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.LottoInsightAU-burger--active .LottoInsightAU-burger__line {
  opacity: 0;
}
.LottoInsightAU-burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.LottoInsightAU-burger--active::after {
  top: 50%;
  bottom: auto;
  width: 100%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (width <= 767px) {
  .LottoInsightAU-nav {
    position: fixed;
    right: 0%;
    top: 0;
    z-index: 100;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: auto;
    padding: 100px 30px;
    width: 500px;
    height: 100vh;
    background-color: var(--white-color);
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: visibility 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: visibility 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .LottoInsightAU-nav--visible {
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .LottoInsightAU-header__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .LottoInsightAU-header__logo img {
    width: 20px;
    height: 20px;
  }
  .LottoInsightAU-header__btns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-top: 16px;
    -ms-grid-column-span: 2;
    grid-column: span 2;
    width: 100%;
  }
  .LottoInsightAU-header__btn {
    padding: 10px 20px;
    text-align: center;
  }
  .LottoInsightAU-header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
    gap: 20px;
  }
  .LottoInsightAU-header__link {
    font-size: 22px;
    line-height: 145%;
    text-transform: uppercase;
  }
  .LottoInsightAU-burger {
    display: block;
  }
}

@media screen and (width <= 600px) {
  .LottoInsightAU-nav {
    width: 100%;
  }
}
.LottoInsightAU-hero {
  min-height: 600px;
  padding: 80px 0;
  background-image: url("/lottoinsightau-img/lottoinsightau-hero-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.LottoInsightAU-hero__info {
  width: 800px;
  max-width: 100%;
  padding: 40px;
  border-radius: 20px;
  color: var(--white-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: var(--purpple-color);
}
.LottoInsightAU-hero__info--secondary {
  max-width: 800px;
}
.LottoInsightAU-hero--secondary {
  padding: 80px 0;
  min-height: 340px;
  background-image: none;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(#000)), #47226D;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 100%), #47226D;
}

@media screen and (max-width: 500px) {
  .LottoInsightAU-hero {
    min-height: 500px;
    background-image: url("/lottoinsightau-img/lottoinsightau-hero-bg-mobile.webp");
  }
  .LottoInsightAU-hero__info {
    padding: 16px;
  }
}
.LottoInsightAU-about {
  background-color: var(--purpple-color);
}
.LottoInsightAU-about__row {
  gap: 40px;
}
.LottoInsightAU-about__img {
  max-width: 500px;
}
.LottoInsightAU-about__img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.LottoInsightAU-about__info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.LottoInsightAU-story .LottoInsightAU-about__row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.LottoInsightAU-story .LottoInsightAU-section__text,
.LottoInsightAU-story .LottoInsightAU-section__title,
.LottoInsightAU-story .LottoInsightAU-section__list li {
  color: var(--purpple-color);
}

.LottoInsightAU-values {
  background-color: var(--purpple-color);
}
.LottoInsightAU-values__row {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.LottoInsightAU-values__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.LottoInsightAU-values__item {
  padding: 24px;
  border-radius: 30px;
  color: var(--white-color);
  background-color: #7C0081;
}
.LottoInsightAU-values__subtitle {
  margin-bottom: 16px;
  font-family: var(--title-font);
  font-size: clamp(1rem, 0.893rem + 0.48vw, 1.25rem);
  line-height: 130%;
}
.LottoInsightAU-values__sublist {
  padding-left: 24px;
  list-style: disc;
}
.LottoInsightAU-values__sublist li {
  font-size: clamp(0.875rem, 0.821rem + 0.24vw, 1rem);
  line-height: 130%;
}
.LottoInsightAU-values__sublist li:not(:last-child) {
  margin-bottom: 5px;
}

.LottoInsightAU-whyus__row {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.LottoInsightAU-whyus__title {
  color: var(--purpple-color);
}
.LottoInsightAU-whyus__title::before {
  background-color: #7C0081;
}
.LottoInsightAU-whyus__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.LottoInsightAU-whyus__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 24px;
}
.LottoInsightAU-whyus__item svg {
  width: 80px;
  height: 80px;
  fill: var(--purpple-color);
}
.LottoInsightAU-whyus__subtitle {
  font-family: var(--title-font);
  font-size: clamp(1.125rem, 1.071rem + 0.24vw, 1.25rem);
  line-height: 130%;
  color: var(--purpple-color);
}

.LottoInsightAU-faq {
  padding: 40px 0;
  color: var(--white-color);
  background-color: var(--purpple-color);
}
.LottoInsightAU-faq__row {
  gap: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.LottoInsightAU-faq__title {
  width: 300px;
}
.LottoInsightAU-faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
}
.LottoInsightAU-faq__item {
  padding: 24px;
  border-radius: 10px;
  color: var(--purpple-color);
  background: #F963FF;
}
.LottoInsightAU-faq__subtitle {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 16px;
  font-size: clamp(0.875rem, 0.768rem + 0.48vw, 1.125rem);
  line-height: 120%;
}
.LottoInsightAU-faq__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--purpple-color);
}
.LottoInsightAU-faq__text {
  font-size: clamp(0.875rem, 0.821rem + 0.24vw, 1rem);
  line-height: 150%;
}

.LottoInsightAU-subscribe {
  margin: 80px 0;
}
.LottoInsightAU-subscribe__body {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  border-radius: 30px;
  background: #25004B;
  padding: 40px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.LottoInsightAU-subscribe__title {
  font-family: var(--title-font);
  font-size: clamp(1.25rem, 0.768rem + 2.14vw, 2.375rem);
  color: var(--white-color);
  line-height: 120%;
  text-transform: uppercase;
}
.LottoInsightAU-subscribe__btn {
  font-size: 16px;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .LottoInsightAU-about__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .LottoInsightAU-about__img {
    max-width: 100%;
    width: 100%;
  }
  .LottoInsightAU-values__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .LottoInsightAU-whyus__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .LottoInsightAU-whyus__list {
    gap: 16px;
  }
  .LottoInsightAU-whyus__item {
    padding: 16px;
  }
  .LottoInsightAU-faq {
    padding: 20px 0;
  }
  .LottoInsightAU-faq__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .LottoInsightAU-faq__title {
    width: 100%;
    text-align: center;
  }
  .LottoInsightAU-faq__item {
    padding: 16px;
  }
  .LottoInsightAU-subscribe {
    margin: 40px 0;
  }
  .LottoInsightAU-subscribe__body {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .LottoInsightAU-subscribe__btn {
    width: 100%;
  }
}
.LottoInsightAU-counter {
  padding: 40px 0;
  background-color: var(--pink-color);
}
.LottoInsightAU-counter__list {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
}
.LottoInsightAU-counter__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}
.LottoInsightAU-counter__title {
  font-family: var(--title-font);
  font-size: clamp(1.5rem, 1.071rem + 1.9vw, 2.5rem);
  line-height: 150%;
  color: var(--purpple-color);
  text-align: center;
}
.LottoInsightAU-counter__text {
  font-family: var(--title-font);
  font-size: clamp(1rem, 0.946rem + 0.24vw, 1.125rem);
  line-height: 150%;
  color: var(--purpple-color);
  text-align: center;
}

@media screen and (max-width: 500px) {
  .LottoInsightAU-counter__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.LottoInsightAU-benefits {
  background-color: var(--purpple-color);
}

.LottoInsightAU-features {
  background-color: var(--purpple-color);
}
.LottoInsightAU-features__title {
  margin-bottom: 40px;
  padding-bottom: 0;
  text-align: center;
}
.LottoInsightAU-features__title::before {
  display: none;
}
.LottoInsightAU-features__list {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.LottoInsightAU-features__list li {
  border-radius: 30px;
  padding: 24px;
  background-color: #7C0081;
}
.LottoInsightAU-features__icon {
  margin-bottom: 16px;
  width: 80px;
  height: 80px;
  fill: var(--white-color);
}
.LottoInsightAU-features__subtitle {
  font-family: var(--title-font);
  font-size: clamp(1.125rem, 1.071rem + 0.24vw, 1.25rem);
  line-height: 130%;
  color: var(--white-color);
}

@media screen and (max-width: 767px) {
  .LottoInsightAU-features__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .LottoInsightAU-features__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }
}
.LottoInsightAU-contact__block {
  padding: 40px;
  border-radius: 30px;
  background: var(--purpple-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.LottoInsightAU-contact__body {
  margin: 0 auto 40px;
  max-width: 800px;
  padding: 20px;
  border-radius: 20px;
  background: var(--pink-color);
}
.LottoInsightAU-contact__title {
  margin-bottom: 24px;
  font-family: var(--title-font);
  font-size: clamp(1.25rem, 0.768rem + 2.14vw, 2.375rem);
  line-height: 120%;
  text-transform: uppercase;
  text-align: center;
  color: var(--purpple-color);
}
.LottoInsightAU-contact__text {
  color: var(--purpple-color);
  text-align: center;
}
.LottoInsightAU-contact__text a {
  color: currentColor;
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}
.LottoInsightAU-contact__text a:hover {
  color: var(--white-color);
}
.LottoInsightAU-contact__btn {
  display: block;
  width: 246px;
  margin: auto;
  text-align: center;
}

.contact-page {
  background-color: var(--purpple-color);
}

.LottoInsightAU-form {
  background-color: #7C0081;
  padding: 40px;
  border-radius: 30px;
  width: 70%;
  max-width: 100%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.LottoInsightAU-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
}

.LottoInsightAU-form__input,
.LottoInsightAU-form__textarea {
  margin-top: 6px;
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  color: #333;
  background: #fff;
  resize: none;
}

.LottoInsightAU-form__textarea {
  min-height: 100px;
}

.LottoInsightAU-form__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.LottoInsightAU-form__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  gap: 8px;
  color: #fff;
}

.LottoInsightAU-form__checkbox-label a {
  color: #fff;
  text-decoration: underline;
}

.LottoInsightAU-form__checkbox {
  width: 18px;
  height: 18px;
}

.LottoInsightAU-form__submit {
  display: block;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: var(--white-color);
  background: -webkit-gradient(linear, left top, left bottom, from(#5C0CAD), to(#54092E));
  background: linear-gradient(180deg, #5C0CAD 0%, #54092E 100%);
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}
.LottoInsightAU-form__submit:hover {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.contact-page__row {
  gap: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contact-page__list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.contact-page__list li:not(:last-child) {
  margin-bottom: 80px;
}
.contact-page__subtitle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.contact-page__subtitle img {
  width: 64px;
}
.contact-page__subtitle span {
  font-family: var(--title-font);
  font-size: clamp(1.5rem, 1.446rem + 0.24vw, 1.625rem);
  font-weight: 400;
  line-height: 150%;
  color: #ECECEC;
}
.contact-page__link {
  font-size: 16px;
  font-weight: 400;
  color: #ECECEC;
  line-height: 150%;
}

@media screen and (max-width: 1000px) {
  .contact-page__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .LottoInsightAU-form {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .LottoInsightAU-contact__block {
    padding: 20px;
  }
  .LottoInsightAU-contact__body {
    padding: 16px;
    margin-bottom: 16px;
  }
  .LottoInsightAU-contact__title {
    margin-bottom: 16px;
  }
  .LottoInsightAU-form__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .LottoInsightAU-form {
    padding: 16px;
  }
  .LottoInsightAU-form__checkbox-label {
    width: 100%;
  }
  .LottoInsightAU-form__submit {
    width: 100%;
  }
  .contact-page__list {
    gap: 20px;
  }
  .contact-page__list li {
    padding: 20px 32px;
  }
  .contact-page__list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.LottoInsightAU-privacy {
  padding: 40px 0;
  background-color: var(--purpple-color);
}

.cookies-infobar {
  position: fixed;
  right: 2px;
  bottom: 2px;
  z-index: 1000;
  border-radius: 20px;
  width: 600px;
  max-width: 90%;
  padding: 24px;
  text-align: center;
  color: var(--white-color);
  background-color: var(--pink-color);
  gap: 30px;
}

.cookies-infobar.cookies-infobar_accepted {
  display: none;
}

.cookies-infobar_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.cookie__text {
  margin-bottom: 30px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

.cookies-infobar_buttons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media screen and (width <= 767px) {
  .cookies-infobar_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }
}
.LottoInsightAU-footer {
  padding: 40px 0;
}
.LottoInsightAU-footer__row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 40px;
}
.LottoInsightAU-footer__logo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.LottoInsightAU-footer__logo img {
  width: 32px;
  height: 32px;
}
.LottoInsightAU-footer__logo span {
  font-family: var(--title-font);
  font-size: clamp(1.063rem, 0.768rem + 1.31vw, 1.75rem);
  color: var(--purpple-color);
}
.LottoInsightAU-footer__nav {
  gap: 24px;
}
.LottoInsightAU-footer__descr {
  margin-bottom: 40px;
}
.LottoInsightAU-footer__text {
  font-size: clamp(0.75rem, 0.643rem + 0.48vw, 1rem);
  font-weight: 400;
  line-height: 150%;
  color: var(--purpple-color);
}
.LottoInsightAU-footer__text a {
  color: var(--purpple-color);
  text-decoration: underline;
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}
.LottoInsightAU-footer__text a:hover {
  color: var(--pink-color);
}
.LottoInsightAU-footer__grid {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.LottoInsightAU-footer__grid h3 {
  margin-bottom: 8px;
  font-family: var(--title-font);
  font-size: clamp(0.875rem, 0.821rem + 0.24vw, 1rem);
  line-height: 150%;
  color: #6A6A6A;
}
.LottoInsightAU-footer__grid p {
  font-size: clamp(0.875rem, 0.821rem + 0.24vw, 1rem);
  line-height: 150%;
  color: #6A6A6A;
}
.LottoInsightAU-footer__images {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}
.LottoInsightAU-footer__copy {
  font-size: clamp(0.875rem, 0.821rem + 0.24vw, 1rem);
  font-weight: 400;
  line-height: 150%;
  color: #6A6A6A;
  text-align: center;
}
.LottoInsightAU-footer__copy a {
  color: #6A6A6A;
}

.footer-nav__item {
  position: relative;
  display: block;
  overflow-x: hidden;
  font-family: var(--title-font);
  font-size: 14px;
  color: var(--purpple-color);
  -webkit-transition: color var(--transition);
  transition: color var(--transition);
}
.footer-nav__item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--pink-color);
  -webkit-transform: translateX(-200%);
  -ms-transform: translateX(-200%);
  transform: translateX(-200%);
  -webkit-transition: -webkit-transform var(--transition);
  transition: -webkit-transform var(--transition);
  transition: transform var(--transition);
  transition: transform var(--transition), -webkit-transform var(--transition);
}
.footer-nav__item:hover {
  color: var(--pink-color);
}
.footer-nav__item:hover::before {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

@media screen and (max-width: 500px) {
  .LottoInsightAU-footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 16px;
  }
  .LottoInsightAU-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .LottoInsightAU-footer__descr {
    margin-bottom: 16px;
  }
  .LottoInsightAU-footer__grid {
    margin-bottom: 16px;
  }
  .LottoInsightAU-footer__images {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=main.css.map */
