@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url(../fontface-kit/OpenSans-Bold.woff2) format("woff2"), url(../fontface-kit/OpenSans-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url(../fontface-kit/OpenSans-Medium.woff2) format("woff2"), url(../fontface-kit/OpenSans-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url(../fontface-kit/OpenSans-Regular.woff2) format("woff2"), url(../fontface-kit/OpenSans-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  src: url(../fontface-kit/OpenSans-SemiBold.woff2) format("woff2"), url(../fontface-kit/OpenSans-SemiBold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
}
*, ::after, ::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color:#527994;
  --secondary-color:#212931;
  --text-color:#dad9d1;
  --dark-bg:#020B14;
  --light-bg:#3f4a58;
  --accent-color:#779b86;
  --border-color:#4b5e82;
  --btn-primary:#527994;
  --btn-secondary:#3f4a58;
  --btn-hover:#5a63c7;
  --font-family:"Open Sans",sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--dark-bg);
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-highlight-layer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.title-main-layout {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}

.btn-primary-panel {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.space-main-line {
  margin-top: 50px !important;
}

.btn-highlight-bar {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-cta-bar {
  background-color: var(--btn-secondary);
  color: #fff;
}

.btn-cta-zone {
  background-color: var(--btn-primary);
  color: #fff;
  font-size: 16px;
  padding: 12px 24px;
  display: table;
  margin: 0 auto;
}

.btn-cta-zone:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary-panel:hover {
  background-color: var(--btn-hover);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.container-main-layout {
  background-color: var(--dark-bg);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wrap-secondary-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.image-dark-unit {
  max-height: 40px;
  width: auto;
}

.group-secondary-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.nav-highlight-layer {
  background-color: var(--light-bg);
  padding: 10px 0;
  position: sticky;
  top: 76px;
  z-index: 99;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-primary-panel {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  width: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  height: 25px;
  position: relative;
  z-index: 101;
}

.bar-cta-panel {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.wrap-dark-layer {
  max-height: 60px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--btn-primary) var(--light-bg);
}

.wrap-dark-layer::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.wrap-dark-layer::-webkit-scrollbar-track {
  background: var(--light-bg);
  border-radius: 4px;
}

.wrap-dark-layer::-webkit-scrollbar-thumb {
  background-color: var(--btn-primary);
  border-radius: 4px;
}

.list-secondary-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  white-space: nowrap;
  padding: 0 5px;
}

.item-light-section {
  display: inline-block;
}

.link-primary-panel {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 4px;
  display: inline-block;
}

.link-primary-panel.state-main-zone, .link-primary-panel:hover {
  color: #fff;
  background-color: var(--btn-primary);
}

.scroll-cta-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--btn-primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 10;
  border: none;
}

.scroll-cta-bar:hover {
  opacity: 1;
}

.main-cta-layout {
  background-color: var(--secondary-color);
}

.place-light-bar {
  padding: 50px 0;
}

.place-light-bar img {
  border-radius: 6px;
}

.place-dark-bar {
  background-color: var(--dark-bg);
}

.group-center-bar {
  text-align: center;
}

.banner {
  padding: 50px 0;
  text-align: center;
  background-color: var(--secondary-color);
  margin-top: 40px;
}

.image-primary-line {
  border-radius: 6px;
}

.title-alt-zone {
  font-size: 32px;
  margin-bottom: 20px;
  margin-top: 40px;
  color: #fff;
}

.text-primary-layer {
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--text-color);
}

.features {
  padding: 50px 0;
  background-color: var(--dark-bg);
}

.table-dark-zone {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background-color: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
}

.row-cta-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--border-color);
}

.row-cta-section:last-child {
  border-bottom: none;
}

.cell-alt-panel {
  padding: 12px 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cell-primary-bar {
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.1);
  width: 30%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.pros-cons {
  padding: 50px 0;
  background-color: var(--secondary-color);
}

.col-dark-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-highlight-line, .list-main-zone {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
}

.list-highlight-line h3, .list-main-zone h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.list-main-zone h3 {
  color: #4caf50;
}

.list-highlight-line h3 {
  color: #f44336;
}

.item-secondary-panel, .item-cta-section {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.item-secondary-panel::before, .item-cta-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.item-cta-section::before {
  background-color: #4caf50;
  border-radius: 50%;
}

.item-secondary-panel::before {
  background-color: #f44336;
  border-radius: 50%;
}

.bonuses {
  padding: 50px 0;
  background-color: var(--dark-bg);
}

.block-alt-line {
  background-color: var(--light-bg);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.title-secondary-bar {
  font-size: 18px;
  margin-bottom: 20px;
}

.text-dark-bar {
  color: var(--text-color);
  font-size: 15px;
}

.markets {
  padding: 50px 0;
  background-color: var(--secondary-color);
}

.text-highlight-panel {
  margin-bottom: 20px;
}

.casino {
  padding: 50px 0;
  background-color: var(--dark-bg);
}

.text-cta-line {
  margin-bottom: 20px;
}

.slot-primary-line {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px 0;
}

.slot-main-panel {
  max-width: 300px;
  background-color: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.image-dark-bar {
  width: 100%;
  height: auto;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.faq {
  padding: 50px 0;
  background-color: var(--secondary-color);
}

.item-cta-panel {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.question-primary-line {
  padding: 15px;
  background-color: var(--light-bg);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.question-primary-line:hover {
  background-color: rgba(76, 90, 180, 0.1);
}

.question-primary-line h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.icon-cta-bar {
  width: 20px;
  height: 20px;
}

.item-cta-panel.state-main-zone .icon-cta-bar {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.answer-primary-panel {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.item-cta-panel.state-main-zone .answer-primary-panel {
  padding: 15px;
  max-height: 1000px;
}

.cta-primary-panel {
  margin-top: 30px;
}

.block-main-zone {
  background-color: var(--secondary-color);
  padding: 40px 0 20px;
  border-top: 1px solid var(--border-color);
}

.container-primary-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.header-cta-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-primary-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.icon-main-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.icon-main-line:hover {
  background-color: var(--btn-primary);
}

.facebook-icon-bar::before, .instagram-icon-panel::before, .twitter-icon-panel::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.facebook-icon-bar::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96C18.34 21.21 22 17.06 22 12.06C22 6.53 17.5 2.04 12 2.04Z'/%3E%3C/svg%3E");
}

.twitter-icon-panel::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z'/%3E%3C/svg%3E");
}

.instagram-icon-panel::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 1 0 0 12.324 6.162 6.162 0 0 0 0-12.324zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm6.406-11.845a1.44 1.44 0 1 0 0 2.881 1.44 1.44 0 0 0 0-2.881z'/%3E%3C/svg%3E");
}

.middle-highlight-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-dark-bar {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 200px;
}

.heading-main-line {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.list-main-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.link-cta-panel {
  color: var(--text-color);
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.link-cta-panel:hover {
  color: var(--btn-primary);
  text-decoration: underline;
}

.footer-highlight-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.copy-main-line {
  font-size: 14px;
  color: var(--text-color);
  opacity: 0.8;
}

.icons-main-line {
  height: 24px;
  width: auto;
}

.child-margin-line > :not(:last-child) {
  margin-bottom: 15px;
}

.points-primary-panel {
  padding-left: 20px;
  list-style-type: disc;
}

.points-primary-panel li:not(:last-child) {
  margin-bottom: 10px;
}

.points-numeric-bar {
  list-style-type: decimal;
}

.image-center-line {
  margin: 0 auto;
}

a:not([class]) {
  text-decoration: underline;
  color: #adff2f;
}

@media (max-width: 768px) {
  .group-secondary-panel {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 20px;
  }
  .title-alt-zone {
    font-size: 24px;
  }
  .title-main-layout {
    font-size: 20px;
  }
  .cell-primary-bar {
    width: 40%;
  }
  .nav-highlight-layer {
    padding: 0;
  }
  .nav-primary-panel {
    display: block;
  }
  .container-cta-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .wrap-dark-layer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--secondary-color);
    -webkit-box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: left 0.3s ease;
    transition: left 0.3s ease;
    overflow-y: auto;
    max-height: 100vh;
    padding: 76px 0 20px;
    z-index: 100;
  }
  .nav-highlight-layer.open .wrap-dark-layer {
    left: 0;
  }
  .nav-highlight-layer.open .bar-cta-panel:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 6px);
    -ms-transform: rotate(45deg) translate(5px, 6px);
    transform: rotate(45deg) translate(5px, 6px);
  }
  .nav-highlight-layer.open .bar-cta-panel:nth-child(2) {
    opacity: 0;
  }
  .nav-highlight-layer.open .bar-cta-panel:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -6px);
    -ms-transform: rotate(-45deg) translate(5px, -6px);
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .list-secondary-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    white-space: normal;
    padding: 0;
  }
  .item-light-section {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .link-primary-panel {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 0;
  }
  .nav-highlight-layer::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .nav-highlight-layer.open::after {
    opacity: 1;
    visibility: visible;
  }
  .col-dark-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-highlight-bar, .header-cta-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .social-primary-panel {
    margin-top: 20px;
  }
  .column-dark-bar {
    min-width: 100%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .slot-primary-line {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .banner {
    padding: 30px 0;
  }
  .row-cta-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cell-primary-bar {
    width: 100%;
  }
  .btn-primary-panel {
    padding: 8px 16px;
    font-size: 14px;
  }
  .slot-main-panel {
    min-width: 100%;
  }
}
@media (max-width: 479.98px) {
  .place-light-bar .btn-primary-panel.btn-cta-zone {
    width: 100%;
  }
}