@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;
}

.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.625rem;
  color: #525252;
  font-weight: bold;
}

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: 2.8125rem;
    line-height: 3.5rem;
  }
  h1 span {
    font-size: 3.6rem;
  }
  h2 {
    font-size: 2.125rem;
  }
  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: 290px;
}
@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;
  padding-top: 2rem;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: visible;
  min-height: 100vh;
  max-height: 1100px;
  z-index: 10;
  overflow: hidden;
}
.hero .text {
  max-width: 550px;
  font-size: 20px;
  line-height: 2rem;
}
.hero #text {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .hero #text {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .hero {
    min-height: 1000px;
    background-position: bottom;
  }
}
.hero .container {
  margin: 0 auto !important;
  display: flex;
  align-items: center;
  min-height: 100%;
}
.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 {
  top: -150px;
  left: 0;
  position: absolute;
  display: block;
}
@media only screen and (max-height: 800px) {
  .hero__content .logo {
    top: -20px;
  }
}
@media only screen and (max-width: 768px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 65vh;
    max-height: 1100px;
  }
  .hero__content .logo {
    left: 50%;
    transform: translateX(-50%);
    top: -100px;
  }
}
.hero br.mobileonly {
  display: none;
}
@media only screen and (max-width: 768px) {
  .hero br.mobileonly {
    display: initial;
  }
}
.hero h1 {
  margin-bottom: 1rem;
  color: #FFF;
  font-size: 40px;
  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 {
  font-size: 30px;
  font-weight: bold;
  max-width: 100%;
  margin-bottom: 0.5rem;
  max-width: 625px;
  line-height: 45px;
}
@media only screen and (max-width: 768px) {
  .hero p.subtitle {
    text-align: center;
    font-weight: normal;
    font-size: 19px;
    line-height: 1.5rem;
  }
}
.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 {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5rem 0;
}
.how .title, .how .subtitle {
  text-align: center;
  color: white;
  margin-bottom: 1rem;
}
.how .subtitle {
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  max-width: 795px;
}
.how .container {
  background: rgba(92, 3, 164, 0.44);
}
.how__grid {
  color: white;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}
.how__grid .item {
  flex-basis: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.how__grid .item img {
  height: 116px;
  width: 116px;
  object-fit: contain;
}
.how .cta {
  margin: 0 auto;
  color: white;
}

.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 {
  background-color: #D9D9D9;
  text-align: center;
}
.faq h2 {
  color: black;
}
.faq p {
  font-size: 22px;
  margin-top: 1rem;
}
.faq .cta {
  margin: 2rem auto;
}

.summary .container {
  border: 1px solid black;
  padding: 1rem;
  margin-top: 2rem;
}
