@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;700&display=swap");
#modal-container {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  z-index: 10000;
}
#modal-container.two {
  transform: scale(1);
}
#modal-container.two .modal-background {
  background: rgba(0, 0, 0, 0);
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two .modal-background .modal {
  opacity: 0;
  animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two + .content {
  animation: scaleBack 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out {
  animation: quickScaleDown 0s 0.5s linear forwards;
}
#modal-container.two.out .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out .modal-background .modal {
  animation: scaleDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container.two.out + .content {
  animation: scaleForward 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
#modal-container .modal-background {
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}
#modal-container .modal-background .modal {
  width: 900px;
  background: white;
  padding: 10px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 300;
  position: relative;
  max-width: 100vw;
}
#modal-container .modal-background .modal h2 {
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 15px;
}
#modal-container .modal-background .modal p {
  font-size: 18px;
  line-height: 22px;
}
#modal-container .modal-background .modal .modal-svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 3px;
}
#modal-container .modal-background .modal .modal-svg rect {
  stroke: #fff;
  stroke-width: 2px;
  stroke-dasharray: 778;
  stroke-dashoffset: 778;
}

#modal-container .content {
  min-height: 100%;
  height: 100%;
  background: white;
  position: relative;
  z-index: 0;
}
#modal-container .content h1 {
  padding: 75px 0 30px 0;
  text-align: center;
  font-size: 30px;
  line-height: 30px;
}
#modal-container .content .buttons {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
#modal-container .content .buttons .button {
  display: inline-block;
  text-align: center;
  padding: 10px 15px;
  margin: 10px;
  background: red;
  font-size: 18px;
  background-color: #efefef;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
#modal-container .content .buttons .button:hover {
  color: white;
  background: #009bd5;
}

@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}
@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}
@keyframes scaleBack {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.85);
  }
}
@keyframes scaleForward {
  0% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes quickScaleDown {
  0% {
    transform: scale(1);
  }
  99.9% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

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

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/*======================
   Set Cookies
=======================*/
#cookie-bar {
  background: #061E33;
  display: block;
  position: fixed;
  bottom: 0px;
  width: 100%;
  left: 0px;
  color: #fff;
  width: 100%;
  max-width: 100%;
  z-index: 9999999999999;
}

#cookie-bar p {
  font-size: 0.8rem;
  line-height: 24px;
  color: #adadad;
}

#cookie-bar button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 20px;
  text-transform: uppercase;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}
#cookie-bar button:hover {
  background: #ffffff;
  color: #061E33;
}

#cookie-bar a {
  color: #fff;
}

#contentcookie {
  display: grid;
  grid-gap: 1rem;
}

@media (max-width: 767px) {
  #cookie-bar p {
    width: 100%;
    font-size: 14px;
  }
  #cookie-bar button {
    width: 100%;
  }
  #cookie-bar a {
    color: #fff;
  }
  #contentcookie {
    padding: 20px 0px;
    width: 90%;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) {
  #contentcookie {
    grid-template-columns: 1fr 200px;
    grid-gap: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  #contentcookie {
    padding: 20px;
  }
}
@media only screen and (min-width: 1280px) {
  #contentcookie {
    padding: 20px 0;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

video {
  border: 0 !important;
}

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
  overflow-x: hidden !important;
  position: relative;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000000s ease-in-out 0s;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

img {
  max-width: 100%;
}

body {
  position: relative;
  width: 100vw;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0 !important;
}

.mtb1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

html,
body {
  max-width: 100%;
  position: relative;
}

.container {
  padding: 3rem 20px;
}

ul {
  padding-left: 0;
}

.notmobile {
  display: none;
}

.notmobile--table {
  display: none;
}

.hidden {
  display: none !important;
}

@media only screen and (min-width: 768px) {
  .nottablet {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .notmobile {
    display: initial;
  }
  .notmobile--table {
    display: table-cell;
  }
  .nottablet {
    display: initial;
  }
  .notdesktop {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .scroll-lock {
    position: fixed;
    overflow-y: hidden;
  }
}
.final-grid {
  display: grid;
  grid-gap: 1.5rem;
}

@media only screen and (min-width: 1024px) {
  .container {
    padding: 80px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-grid section {
    max-height: 370px;
  }
}
@media only screen and (min-width: 1280px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .final-grid section {
    max-height: 305px;
  }
}
b {
  font-weight: bold !important;
}

.bottom-cloud {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.container {
  margin: 0 auto;
}

*,
body {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #7C1ECD;
}

strong {
  font-weight: bold;
}

p a:hover,
h2 a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
}

h1 {
  font-size: 3rem;
  line-height: 3rem;
}
h1 span {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.25rem;
  color: #525252;
  font-weight: bold;
  margin-bottom: 1rem;
}

h3,
h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.75rem;
}

p {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  font-weight: 300;
}

p.text {
  margin-top: 1rem;
}

body.dark p.text {
  color: #ffffff;
}
body.dark .title {
  color: #ffffff;
}
body.dark .text {
  color: #ffffff !important;
}
body.dark .text p {
  color: #ffffff !important;
}
body.dark .text a {
  color: #ffffff !important;
}

.menu {
  font-size: 0.9rem;
}

.button {
  font-size: 1.125rem;
}

@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 55px;
    line-height: 3.5rem;
  }
  h1 span {
    font-size: 3.6rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3,
  h4 {
    font-size: 1.375rem;
  }
  h5 {
    font-size: 2.125rem;
  }
  p {
    font-size: 1rem;
    font-weight: 300;
  }
}
.button {
  background: #00EDC4;
  border-radius: 10px;
  max-width: 290px;
  transition: box-shadow ease 250ms;
  font-size: 20px !important;
  width: auto;
  color: #A024D9;
  font-weight: bold;
  margin-top: 2rem;
  position: relative;
}

.cta {
  width: 310px;
}
@media only screen and (max-width: 768px) {
  .cta {
    margin-left: auto;
    margin-right: auto;
  }
}
.cta .disclaimer {
  margin-top: 1rem;
  text-align: center;
}
.cta .disclaimer a {
  text-decoration: underline;
  color: #00EDC4;
  margin-left: 0;
}
.cta .disclaimer a:hover {
  text-decoration: none;
}
.cta .disclaimer-risky {
  font-size: 13px !important;
}
.cta .disclaimer-risky a {
  color: white;
}

.button {
  font-size: 1.5rem;
}

.button:hover {
  background: #6700BF;
  color: white;
  box-shadow: 0.5px 0.7px 19px -39px rgba(0, 0, 0, 0.085), 1.6px 2.5px 63.7px -39px rgba(0, 0, 0, 0.125), 7px 11px 285px -39px rgba(0, 0, 0, 0.21);
  transition: box-shadow ease 250ms;
  cursor: pointer !important;
}

.button.risk::after {
  content: "Your Capital is at Risk";
  position: absolute;
  font-size: 0.875rem;
  color: #1E2029;
  font-weight: 300;
  left: 50%;
  transform: translateX(-50%) translateY(2.75rem);
  pointer-events: none;
}

.button--ng {
  background: #7C1ECD;
  color: white;
}
.button--ng:hover {
  background: #00EDC4;
  color: #7C1ECD;
}

.button--white {
  background: #ffffff;
  border-radius: 10px;
  color: #00EDC4;
  border: 1px solid #00EDC4;
}

.button--white.current {
  pointer-events: none;
}

.button--white:hover {
  color: #ffffff;
}

.button--arrow::after {
  display: inline-block;
  padding-left: 8px;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.button--arrow:hover::after {
  -webkit-transform: translateX(4px);
  -moz-transform: translateX(4px);
  -ms-transform: translateX(4px);
  -o-transform: translateX(4px);
  transform: translateX(4px);
}

.button--square {
  border-radius: 0;
}

.button--arrow-back {
  margin-left: 0;
  max-width: 160px;
}
.button--arrow-back::before {
  display: inline-block;
  padding-left: 8px;
  transition: transform 0.3s ease-out;
  transform: rotate(180deg) translateY(-1.2px);
}
.button--arrow-back:hover::before {
  transform: rotate(180deg) translateX(4px) translateY(-1.2px);
}

.button--yellow.risk:after {
  color: #ffffff;
}

.button--pad {
  padding: 1.1rem 1.5rem;
}

.button--wid {
  height: 69px;
  line-height: 69px;
  text-align: center;
  display: block;
}

.button--alt {
  background: none;
  border: #7C1ECD solid 1px;
  color: #061E33;
  margin-top: 0.5rem;
}

.button--alt:hover {
  color: #ffffff;
}

.button--invest {
  font-size: 0.7rem;
  padding: 0.5rem 1.5rem;
}

.button--green {
  background: #00EDC4;
}

.button--red {
  background: #DE4225;
}

.nav__buttons {
  grid-row: 1;
  grid-column: 3;
}
.nav__buttons .login {
  font-weight: bold;
  color: #061E33;
  font-size: 0.9rem;
}
.nav__buttons .login:hover {
  text-decoration: underline;
}
.nav__buttons .signup {
  margin-left: 15px;
  padding: 0.5rem 1.35rem;
  font-size: 0.9rem;
  background: #00EDC4;
}
.nav__buttons .signup:hover {
  background: #7C1ECD;
}

.signup-small {
  display: inline-block;
  top: 20px;
  right: 5rem;
  margin-top: 0;
  position: absolute;
  width: 100px;
  height: 34px;
  line-height: 34px;
  font-size: 0.8rem;
}

.top-bar .button {
  padding: 0 1.5rem;
  font-size: 0.6875rem;
  height: 30px;
  line-height: 30px;
  margin-left: 1.5rem;
}

.learn {
  background: none;
  color: #7C1ECD;
  font-weight: bold;
  font-size: 1.25rem;
}

#hp-hero .hero__content .button {
  max-width: 204px;
  margin-left: 0;
}

@media only screen and (min-width: 768px) {
  #hp-hero .hero__content .button {
    font-size: 1.0625rem;
    max-width: 253px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .two-column-hero .hero__content .button {
    margin-left: 0;
  }
  .button--invest {
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .two-column-block .button {
    margin-left: 0;
  }
}
.image-block .image-block__content .button {
  margin-left: 0;
}

.two-one-layout {
  padding-top: 0;
  display: grid;
  position: relative;
}
.two-one-layout hr:not(.ad-hr) {
  margin-top: 1rem;
  border: solid 2px #00EDC4;
  background: #00EDC4;
}
.two-one-layout .a-d-panel-large {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}

.one-one-layout {
  display: grid;
  grid-gap: 1rem;
}

.one-two-layout {
  display: grid;
  grid-gap: 1rem;
}

@media only screen and (min-width: 1024px) {
  .two-one-layout {
    grid-template-columns: 2fr 1fr;
    grid-gap: 1.5rem;
  }
  .one-one-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .one-two-layout {
    grid-template-columns: 1fr 2fr;
  }
}
.a-d-panel {
  text-align: center;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  grid-gap: 0.5rem;
  align-items: center;
}
.a-d-panel hr.ad-hr {
  max-width: 100px;
  width: 100%;
  border: solid 1px #D3D3D3;
  background: #D3D3D3;
  display: inline-block;
  margin-top: 0;
  height: 1px;
}
.a-d-panel hr.ad-hr:first-of-type {
  justify-self: end;
}
.a-d-panel a {
  grid-column: 1/span 3;
}
.a-d-panel p {
  text-align: center;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.a-d-panel p,
.a-d-panel hr {
  display: inline-block;
  text-align: center;
}
.a-d-panel img {
  margin-top: 1rem;
}

body.dark .a-d-panel {
  color: #6C6C6C;
}

.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: visible;
  min-height: 700px;
  max-height: 1100px;
  z-index: 10;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 0;
  /* This ensures it stays behind the content */
}
.hero .text {
  max-width: 550px;
  font-size: 20px;
  line-height: 2rem;
}
.hero .disclaimer {
  color: white;
}
.hero .disclaimer a {
  color: white;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .hero {
    min-height: 1000px;
    background-position: bottom;
    text-align: center;
  }
}
.hero .container {
  margin: 0 auto !important;
  display: flex;
  align-items: center;
}
.hero__content {
  margin-left: auto;
  margin-right: auto;
  max-width: 501px;
  position: relative !important;
  z-index: 1;
}
.hero__content #text span {
  font-weight: bold;
}
.hero__content .logo {
  display: block;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .hero__content .logo {
    margin: 0 auto;
    margin-bottom: 3rem;
  }
}
.hero br.mobileonly {
  display: none;
}
@media only screen and (max-width: 768px) {
  .hero br.mobileonly {
    display: initial;
  }
}
.hero .pretitle {
  color: #00EDC4;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  /* 133.333% */
}
.hero h1 {
  margin-bottom: 1rem;
  color: white;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 780px;
}
@media only screen and (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
    line-height: 2.5rem;
    text-align: center;
  }
}
.hero h1 span {
  display: block;
}
.hero p.subtitle {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  max-width: 407px;
}
@media only screen and (max-width: 768px) {
  .hero p.subtitle {
    text-align: center;
    font-weight: normal;
    font-size: 19px;
    line-height: 1.5rem;
  }
}
.hero .duration {
  margin-top: 2rem;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 111.111% */
}
.hero .duration b {
  font-weight: bold;
}
.hero .already-registered {
  margin-top: 2rem;
  color: #A024D9;
  font-weight: 400;
  font-size: 15px;
}
.hero .already-registered a {
  display: block;
  font-weight: bold;
  color: #A024D9;
}
.hero__image {
  display: block;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  align-self: end;
  z-index: 111110;
  position: relative;
  transform: scale(1.2);
}

@media only screen and (min-width: 768px) {
  .hero header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .hero__content {
    padding-top: 4rem;
    max-width: 100%;
    margin-left: 0;
  }
  .hero__image {
    transform: scale(1.8) translateY(3rem);
    transform-origin: center center;
  }
}
@media only screen and (min-width: 1280px) {
  .hero__content {
    padding-top: 4rem;
    max-width: 100%;
    margin-left: 0;
  }
  .hero .cta {
    margin-top: 7rem auto;
  }
}
.bonuses .left h2 {
  color: #6400BF;
  margin-bottom: 1rem;
}
.bonuses .right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonuses .right img {
  height: 500px;
  width: auto;
}

.overview {
  /* Responsive Design */
}
.overview h2 {
  text-align: center;
  color: #5C03A4;
}
.overview .cta {
  margin: 0 auto;
}
.overview table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
}
.overview th, .overview td {
  border: 1px solid #d9d9d9;
  padding: 15px;
  text-align: left;
}
.overview th {
  font-weight: bold;
  white-space: nowrap;
}
.overview td {
  font-size: 14px;
  line-height: 1.5;
}
.overview .highlight {
  font-weight: bold;
}
.overview .note {
  font-size: 12px;
  color: #7a7a7a;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .overview table {
    border: 1px solid #d9d9d9;
  }
  .overview th, .overview td {
    display: block;
    width: 100%;
    border-bottom: 1px solid #d9d9d9;
  }
  .overview th {
    padding: 10px;
    border: none;
  }
  .overview td {
    padding: 10px;
    position: relative;
    border: 1px solid #d9d9d9;
    border-left: none;
    border-right: none;
  }
  .overview tr {
    display: block;
  }
  .overview td:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
}

.rules {
  border-radius: 10px;
  background: linear-gradient(291deg, #D301CC 1.05%, #00EDC4 95.85%);
  color: white;
}
.rules h2 {
  color: white;
  text-align: center;
}
.rules__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style-type: none;
  margin-top: 3rem;
  padding-left: 2rem;
}
.rules__list li {
  position: relative;
  margin-bottom: 15px;
  font-size: 16px;
}
.rules__list li::before {
  position: absolute;
  left: -2rem;
  top: 0;
  color: #ffffff;
  font-size: 20px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.how-it-works .container {
  padding-top: 40px;
}
.how-it-works .container h2, .how-it-works .container p {
  text-align: center;
}
.how-it-works .container p {
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}
.how-it-works .container .bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.zones-table {
  max-width: 750px;
  margin: 2rem auto;
  color: #1a1a1a;
  border-collapse: collapse;
  margin-top: 3rem !important;
}
.zones-table__head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #e9ecf0;
  padding: 1.2rem 1.5rem;
  font-size: 0.875rem !important;
  font-weight: 600;
  border-radius: 0.6rem 0.6rem 0 0;
}
.zones-table__head h3 {
  margin: 0;
  text-align: left;
  font-size: 0.875rem !important;
}
.zones-table__head h3:nth-child(2), .zones-table__head h3:nth-child(3) {
  text-align: center;
}
.zones-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 8px;
  font-size: 0.875rem;
  border-bottom: 1px solid #e5e8eb;
}
.zones-table__row .zone-label {
  font-weight: 600;
  border-radius: 0.6rem;
  padding: 0.4rem 1rem;
  width: max-content;
  font-size: 0.75rem;
}
.zones-table__row .score,
.zones-table__row .credit {
  text-align: center;
  font-weight: 600;
}
.zones-table .green.level-1 .zone-label {
  background: #dff8e9;
}
.zones-table .green.level-2 .zone-label {
  background: #c8f4dc;
}
.zones-table .yellow.level-3 .zone-label {
  background: #fff5b8;
}
.zones-table .yellow.level-4 .zone-label {
  background: #ffeaa1;
}
.zones-table .yellow.level-5 .zone-label {
  background: #ffeaa1;
}
.zones-table .red.level-6 .zone-label {
  background: #ffd6d6;
}
@media (max-width: 680px) {
  .zones-table__head {
    display: none;
  }
  .zones-table__row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "label label" "score credit";
    row-gap: 0.6rem;
  }
  .zones-table__row .zone-label {
    grid-area: label;
  }
  .zones-table__row .score {
    grid-area: score;
    text-align: left;
    font-weight: 500;
  }
  .zones-table__row .credit {
    grid-area: credit;
    text-align: right;
  }
}

.what {
  background: #A024D9;
}
.what__grid {
  margin: 2rem 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.what__grid .item {
  border-radius: 33px;
  border: 3px solid #FF1FE3;
  background: #FFF;
  padding: 2.5rem;
  padding-left: 3.25rem;
  flex-basis: 565px;
  max-width: 100%;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .what__grid .item {
    flex-basis: 100%;
    padding: 2.5rem 1rem;
  }
}
.what__grid .item h3 {
  color: #00EDC4;
  margin-bottom: 1.5rem;
}
.what__grid .item p {
  font-size: 15px;
}
.what .cta {
  margin: 0 auto;
}

.faq {
  text-align: center;
  background-color: #00EDC4;
  color: black;
}
.faq h2 {
  color: black;
  font-size: 24px;
}
.faq p {
  font-size: 18px;
  font-weight: 600;
}
.faq .container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.faq .button {
  background-color: #8D13BE;
  color: white;
  width: 211px;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #112240;
  padding: 2rem 1rem 4rem;
  background: #fff;
}

h2 {
  margin: 2rem 0 1.2rem;
}

.score-form {
  max-width: 1200px;
  margin: 0 auto;
}
.score-form .upload-wrap {
  margin-bottom: 1.5rem;
}
.score-form .upload-wrap label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.score-form .upload-wrap input[type=file] {
  font-size: 0.9rem;
}
.score-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  margin-bottom: 3rem;
}
.score-form label {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.score-form .field--full-sm {
  grid-column: 1/2;
}
.score-form .field--btn {
  display: flex;
  align-items: flex-end;
  grid-column: 2/3;
}
.score-form .field--btn button {
  width: 100%;
  padding: 1.2rem 1rem;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 600;
  background: #00f5cc;
  color: #fff;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.score-form .field--btn button:hover {
  opacity: 0.85;
}
.score-form .field--btn button:active {
  opacity: 0.75;
}
.score-form input,
.score-form select {
  width: 100%;
  padding: 1.1rem 1.25rem;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  font-size: 1.05rem;
  background: #fff;
  color: #112240;
}
.score-form input:focus,
.score-form select:focus {
  outline: none;
  border-color: #00f5cc;
  box-shadow: 0 0 0 2px rgba(0, 245, 204, 0.25);
}
.score-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 26px) calc(50% - 4px), calc(100% - 20px) calc(50% - 4px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.score-form__results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  margin-bottom: 3rem;
}
.score-form .result-box {
  border: 1px solid #dcdcdc;
  padding: 3rem 1rem 2.5rem;
  text-align: center;
  border-radius: 3px;
  background: #fff;
}
.score-form .result-box .result-title {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.score-form .result-box .result-value {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 1.8rem;
}

/* Table for zones */
.zones-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.zones-table caption {
  text-align: left;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #112240;
}
.zones-table th, .zones-table td {
  padding: 1.2rem 1.5rem;
  border: 1px solid #e1e5ea;
  vertical-align: top;
}
.zones-table thead th {
  background: #f4f6f9;
  font-weight: 700;
  font-size: 1.1rem;
}
.zones-table tbody td:first-child {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 760px) {
  .score-form__grid {
    grid-template-columns: 1fr;
  }
  .score-form .field--full-sm {
    grid-column: 1/-1;
  }
  .score-form .field--btn {
    grid-column: 1/-1;
  }
  .score-form__results {
    grid-template-columns: 1fr;
  }
}
.lottery-block {
  background: linear-gradient(283deg, var(--AXIORY-NEON, #AF00FF) 4.03%, #00EDC4 102.29%);
  color: white;
}
.lottery-block h2 {
  color: white;
}
.lottery-block .cta {
  margin-left: auto;
}
.lottery-block .cta .button {
  margin-left: auto;
  width: 144px;
  height: 48px;
  line-height: 48px;
  font-size: 16px !important;
}
.lottery-block .container {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .lottery-block .container {
    flex-direction: column;
  }
}
.lottery-block .container .image-content {
  min-width: 500px;
}
@media only screen and (max-width: 768px) {
  .lottery-block .container .image-content {
    min-width: 300px;
  }
}
.lottery-block .container .image-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lottery-block .container .text-content {
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .lottery-block .container .text-content {
    text-align: center;
  }
}
.lottery-block .container .text-content h2 {
  color: #FFF;
  text-align: right;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
}
@media only screen and (max-width: 768px) {
  .lottery-block .container .text-content h2 {
    text-align: center;
  }
}
.lottery-block.lottery {
  background: transparent;
  padding-top: 2rem;
}
.lottery-block.lottery h2 {
  color: black;
  text-align: center;
}
.lottery-block.lottery p {
  color: black;
}
.lottery-block.lottery .container {
  padding-top: 0;
}

.image-columns .container {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .image-columns .container {
    flex-direction: column;
  }
}
.image-columns h2 {
  text-align: center;
}
.image-columns .cta {
  margin-inline: auto;
}
.image-columns img {
  display: block;
  margin: 0 auto;
}
.image-columns .disclaimer {
  margin-inline: auto;
  display: block;
  width: fit-content;
}

.collect-tickets {
  background: linear-gradient(283deg, var(--AXIORY-NEON, #AF00FF) 4.03%, #00EDC4 102.29%);
}
.collect-tickets .block {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .collect-tickets .block {
    flex-direction: column;
  }
}
.collect-tickets .block .icon {
  min-width: 105px;
}
@media only screen and (max-width: 768px) {
  .collect-tickets .block .icon {
    display: flex;
    justify-content: center;
  }
}
.collect-tickets h2 {
  text-align: center;
}
.collect-tickets h2,
.collect-tickets h3 {
  color: white;
  margin-bottom: 1rem;
}
.collect-tickets p {
  margin-bottom: 1rem;
}
.collect-tickets ul li {
  margin-bottom: 0.5rem;
}
.collect-tickets .text-content > p {
  color: white;
}
.collect-tickets .highlight {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 27px;
}
.collect-tickets .highlight h3,
.collect-tickets .highlight h4 {
  color: #9B29D8;
}
.collect-tickets .highlight h4 {
  font-size: 14px;
  margin-bottom: 1rem;
}
.collect-tickets .highlight p {
  color: black;
}
.collect-tickets .highlight .steps {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .collect-tickets .highlight .steps {
    flex-direction: column;
  }
}
.collect-tickets .cta {
  margin: 0 auto;
}
.collect-tickets .disclaimer {
  text-align: center;
}
.collect-tickets .disclaimer a {
  color: white;
}

.chance {
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}
.chance h2 {
  text-align: center;
  color: #8E39D6;
  margin-bottom: 3.5rem;
}
.chance .heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.chance .block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .chance .block {
    flex-direction: column;
  }
}
.chance .block .image {
  min-width: 120px;
}

.waves {
  background: linear-gradient(283deg, var(--AXIORY-NEON, #AF00FF) 4.03%, #00EDC4 102.29%);
}
.waves .block {
  display: flex;
  color: white;
}
@media only screen and (max-width: 768px) {
  .waves .block {
    flex-direction: column;
  }
}
.waves .block .image {
  min-width: 260px;
}
.waves .block h2 {
  color: white;
}
.waves .block ul li,
.waves .block ol li {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

ul {
  padding-left: 1rem;
}

.switch-panel {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .switch-panel {
    flex-direction: column;
  }
}
.switch-panel > div {
  height: 94px;
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .switch-panel > div {
    padding: 1rem 0;
  }
}
.switch-panel #bonus {
  background-color: #A024D9;
  opacity: 0.5;
  color: white;
}
.switch-panel #bonus.active {
  opacity: 1;
}
.switch-panel #lottery {
  opacity: 0.5;
  background-color: #00EDC4;
}
.switch-panel #lottery.active {
  opacity: 1;
}

.bonus,
.lottery {
  display: none;
}

.bonus.show,
.lottery.show {
  display: block;
}

.who-can-join {
  border-radius: 10px;
  background-color: white;
}
.who-can-join h2 {
  text-align: center;
  color: #8D13BE;
}
.who-can-join__grid {
  display: flex;
  margin-top: 4rem;
  border-radius: 10px;
  border: 0.7px solid #A024D9;
}
@media only screen and (max-width: 768px) {
  .who-can-join__grid {
    flex-direction: column;
  }
}
.who-can-join .disclaimer {
  text-align: right;
  margin-bottom: 4rem;
  margin-top: 1.5rem;
}
.who-can-join .item:not(:first-of-type) {
  border-left: 0.7px solid #A024D9;
}
.who-can-join .item {
  display: flex;
  gap: 1.5rem;
  text-align: center;
  flex-basis: 33.3333333333%;
  padding: 3rem 2rem;
}
.who-can-join .item__title {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 16px;
}
.who-can-join .item div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.who-can-join .item img {
  height: 36px;
  width: 36px;
}
.who-can-join .item__description {
  margin-bottom: 39px;
}
.who-can-join .item__link {
  font-size: 16px;
  padding-inline: 1rem;
  height: 42px;
  line-height: 42px;
  margin-top: auto;
}
.who-can-join .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 996px;
}

.stabilizer {
  background: linear-gradient(283deg, var(--AXIORY-NEON, #AF00FF) 4.03%, #00EDC4 102.29%);
  color: white;
  text-align: center;
}
.stabilizer h2 {
  color: white;
}
.stabilizer p {
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}

.legend h2 {
  color: #8D13BE;
}
.legend .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .legend .container {
    flex-direction: column;
  }
}
.legend .container .left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.legend .container .left ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.legend .container .right {
  min-width: 520px;
}
@media only screen and (max-width: 768px) {
  .legend .container .right {
    min-width: auto;
  }
}
.legend .container .right img {
  transform: scale(1.2);
  transform-origin: left;
}
@media only screen and (max-width: 768px) {
  .legend .container .right img {
    transform: none;
  }
}
.legend strong {
  color: red;
}

.purple-panel {
  background: linear-gradient(180deg, var(--Axiory-Header, #8D13BE) 0%, var(--AXIORY-NEON, #AF00FF) 100%);
}
.purple-panel .container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.purple-panel .panel {
  display: flex;
  color: white;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
@media only screen and (max-width: 768px) {
  .purple-panel .panel {
    flex-direction: column;
  }
}
.purple-panel .panel h2 {
  color: white;
}
.purple-panel .panel:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  .purple-panel .panel:nth-of-type(even) {
    flex-direction: column;
  }
}
.purple-panel .panel:nth-of-type(even) .text-content {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.purple-panel .panel .image-content {
  min-width: 378px;
}

.account-specifications__head {
  text-align: center;
}
.account-specifications__head h2 {
  color: #8D13BE;
}
.account-specifications .table-container {
  overflow: scroll;
  width: 100%;
}
.account-specifications__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4rem;
  text-align: left;
  width: 100%;
}
.account-specifications__table th {
  color: #8D13BE;
  font-weight: 900;
  font-size: 22px;
  padding: 1rem;
  text-transform: uppercase;
  border: 1px solid #8D13BE;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .account-specifications__table th {
    font-size: 1rem;
  }
}
.account-specifications__table td {
  padding: 1rem;
  border: 1px solid #8D13BE;
}
.account-specifications__table td:first-of-type {
  font-weight: bold;
}

.campaign-overview {
  margin: 2rem auto;
  color: #333;
}
.campaign-overview .terms {
  text-align: center;
  margin-top: 2rem;
  display: block;
}
.campaign-overview h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  color: #8D13BE;
}
.campaign-overview table {
  width: 100%;
  border-collapse: collapse;
}
.campaign-overview table th,
.campaign-overview table td {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  vertical-align: top;
}
.campaign-overview table th {
  width: 30%;
  background-color: #f9f9f9;
  font-weight: 600;
}
.campaign-overview table tr:nth-child(even) td {
  background-color: #fafafa;
}
.campaign-overview table ul,
.campaign-overview table ol {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
}
.campaign-overview table ul li,
.campaign-overview table ol li {
  margin-bottom: 0.4rem;
}
.campaign-overview table p {
  margin: 0.5rem 0 0;
}
