@charset "UTF-8";
/**
 * Theme constants and base styles.
 * SCSS: assets/css/constant/constant.scss
 * CSS (compiled by IDE): assets/css/constant/constant.css
 */
body {
  font-family: var(--site-font-family);
  color: var(--text-color);
  line-height: var(--content-line-height, 1.5);
  letter-spacing: var(--content-letter-spacing, 0);
}

.site-main,
.entry-content,
.wp-block-group,
.wp-block-paragraph,
.wp-block-heading,
.wp-block-list,
.wp-block-quote,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
blockquote {
  font-family: var(--site-font-family);
}

main {
  min-height: calc(100vh - 80px);
}

body,
html {
  background: var(--bg-body);
  overflow-x: clip;
  margin: 0;
  padding: 0;
}

p {
  margin: 10px 0;
  padding: 0;
  font-size: var(--content-body-font-size, 16px);
  font-weight: 400;
  line-height: var(--content-line-height, 1.5);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
}

h1 {
  color: var(--color-for-h1-titles);
  font-size: var(--content-h1-font-size, 36px);
}

h2 {
  color: var(--color-for-h2-titles);
  font-size: var(--content-h2-font-size, 32px);
  font-weight: 600;
}

h3 {
  color: var(--color-for-h3-titles);
  font-size: var(--content-h3-font-size, 26px);
  font-weight: 400;
}

h4 {
  color: var(--color-for-h4-titles);
  font-size: var(--content-h4-font-size, 22px);
}

h5 {
  color: var(--color-for-h5-titles);
  font-size: var(--content-h5-font-size, 18px);
}

@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 10px;
  }
}
blockquote {
  position: relative;
  margin: 20px 0;
  padding: 18px 22px 18px 28px;
  border: 0;
  border-left: 3px solid var(--additional-c-elements, #ffc213);
  border-radius: 0 10px 10px 0;
  background: color-mix(in srgb, var(--block-bg, #1a1a1a) 88%, #fff 12%);
  color: var(--text-color);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  quotes: "“" "”" "‘" "’";
}

blockquote::before {
  content: open-quote;
  position: absolute;
  top: 6px;
  left: 10px;
  color: var(--additional-c-elements, #ffc213);
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  opacity: 0.45;
  pointer-events: none;
}

blockquote p {
  margin: 0;
  font-style: italic;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

blockquote p + p {
  margin-top: 12px;
}

blockquote cite,
blockquote footer {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.75;
}

@media (max-width: 768px) {
  blockquote {
    margin: 16px 0;
    padding: 14px 16px 14px 22px;
    font-size: 16px;
  }
  blockquote::before {
    font-size: 34px;
    top: 4px;
    left: 8px;
  }
}
img {
  color: transparent;
  max-width: 100%;
  height: auto;
}

img:not([src]) {
  visibility: hidden;
}

.wp-block-image {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.wp-block-image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-image.alignleft {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}
.wp-block-image.alignright {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.wp-block-image.aligncenter, .wp-block-image.size-large, .wp-block-image.size-full {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
.container .container {
  padding-left: 0;
  padding-right: 0;
}

.padding {
  padding: 0 15px;
}

.margin {
  margin: 50px 0;
}

@media (max-width: 990px) {
  .margin {
    margin: 24px 0;
  }
}
@media (max-width: 768px) {
  .margin {
    margin: 12px 0;
  }
}
a,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.overlay {
  overflow: hidden;
}

input,
button {
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

button {
  border: none;
  box-shadow: none;
  width: auto;
  appearance: none;
  cursor: pointer;
}

.main-content table.tablepress {
  --border-color: transparent;
  border-collapse: separate;
  border-spacing: 0 5px;
  border-radius: 10px;
}
.main-content table.tablepress thead tr th {
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  background: var(--block-bg, transparent);
  border-bottom: none;
  border-radius: 10px;
}
.main-content table.tablepress tbody tr td {
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  background: var(--block-bg, transparent);
  border-right: none;
  border-bottom: none;
}

ul {
  padding-left: 20px;
}

ol {
  list-style: none;
  padding-left: 0;
  counter-reset: ordered-list;
}

ol li {
  position: relative;
  counter-increment: ordered-list;
  font-size: 16px;
  line-height: 1.4;
  min-height: 54px;
  padding-left: 66px;
  display: flex;
  align-items: center;
}

ol li::before {
  content: counter(ordered-list);
  position: absolute;
  left: 0;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid var(--additional-c-elements);
  border-radius: 50%;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 400;
  transform: translateY(-50%);
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  font-size: 16px;
  line-height: 1.4;
  padding-left: 30px;
}

ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  ul li,
  ol li {
    padding-left: 40px;
  }
}
.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 24px;
  background: var(--button-bg);
  color: var(--button-text-color);
  border-radius: 5px;
  text-decoration: none;
  font-size: var(--button-font-size, 16px);
  font-weight: 600;
  text-transform: uppercase;
}

.button--secondary,
button.button--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 24px;
  background: var(--button-bg);
  color: var(--button-text-color);
  border-radius: 5px;
  text-decoration: none;
  font-size: var(--button-font-size, 16px);
  font-weight: 600;
  text-transform: uppercase;
}

.title-with-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}

.title-with-icon__icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
}

.title-with-icon__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title-with-icon__text {
  width: 100%;
}

@media (max-width: 768px) {
  .title-with-icon {
    gap: 10px;
  }
  .title-with-icon__icon {
    width: 32px;
    height: 32px;
  }
}
body[data-button-anim]:not([data-button-anim=none]) .button, body[data-button-anim]:not([data-button-anim=none]) .button--secondary, body[data-button-anim]:not([data-button-anim=none]) .header__button, body[data-button-anim]:not([data-button-anim=none]) .header__overlay-link, body[data-button-anim]:not([data-button-anim=none]) .header__action-btn, body[data-button-anim]:not([data-button-anim=none]) .hero__button, body[data-button-anim]:not([data-button-anim=none]) .promotion__button, body[data-button-anim]:not([data-button-anim=none]) .text-img__button, body[data-button-anim]:not([data-button-anim=none]) .games__more-button, body[data-button-anim]:not([data-button-anim=none]) .error-404__button,
body[class*=button-anim-] .button,
body[class*=button-anim-] .button--secondary,
body[class*=button-anim-] .header__button,
body[class*=button-anim-] .header__overlay-link,
body[class*=button-anim-] .header__action-btn,
body[class*=button-anim-] .hero__button,
body[class*=button-anim-] .promotion__button,
body[class*=button-anim-] .text-img__button,
body[class*=button-anim-] .games__more-button,
body[class*=button-anim-] .error-404__button {
  transform: translateZ(0);
  will-change: transform;
}

body[data-button-anim=lift] .button, body[data-button-anim=lift] .button--secondary, body[data-button-anim=lift] .header__button, body[data-button-anim=lift] .header__overlay-link, body[data-button-anim=lift] .header__action-btn, body[data-button-anim=lift] .hero__button, body[data-button-anim=lift] .promotion__button, body[data-button-anim=lift] .text-img__button, body[data-button-anim=lift] .games__more-button, body[data-button-anim=lift] .error-404__button,
body.button-anim-lift .button,
body.button-anim-lift .button--secondary,
body.button-anim-lift .header__button,
body.button-anim-lift .header__overlay-link,
body.button-anim-lift .header__action-btn,
body.button-anim-lift .hero__button,
body.button-anim-lift .promotion__button,
body.button-anim-lift .text-img__button,
body.button-anim-lift .games__more-button,
body.button-anim-lift .error-404__button {
  transition: transform 0.28s ease;
}
body[data-button-anim=lift] .button:hover, body[data-button-anim=lift] .button--secondary:hover, body[data-button-anim=lift] .header__button:hover, body[data-button-anim=lift] .header__overlay-link:hover, body[data-button-anim=lift] .header__action-btn:hover, body[data-button-anim=lift] .hero__button:hover, body[data-button-anim=lift] .promotion__button:hover, body[data-button-anim=lift] .text-img__button:hover, body[data-button-anim=lift] .games__more-button:hover, body[data-button-anim=lift] .error-404__button:hover,
body.button-anim-lift .button:hover,
body.button-anim-lift .button--secondary:hover,
body.button-anim-lift .header__button:hover,
body.button-anim-lift .header__overlay-link:hover,
body.button-anim-lift .header__action-btn:hover,
body.button-anim-lift .hero__button:hover,
body.button-anim-lift .promotion__button:hover,
body.button-anim-lift .text-img__button:hover,
body.button-anim-lift .games__more-button:hover,
body.button-anim-lift .error-404__button:hover {
  transform: translateY(-4px);
}
body[data-button-anim=lift] .button:active, body[data-button-anim=lift] .button--secondary:active, body[data-button-anim=lift] .header__button:active, body[data-button-anim=lift] .header__overlay-link:active, body[data-button-anim=lift] .header__action-btn:active, body[data-button-anim=lift] .hero__button:active, body[data-button-anim=lift] .promotion__button:active, body[data-button-anim=lift] .text-img__button:active, body[data-button-anim=lift] .games__more-button:active, body[data-button-anim=lift] .error-404__button:active,
body.button-anim-lift .button:active,
body.button-anim-lift .button--secondary:active,
body.button-anim-lift .header__button:active,
body.button-anim-lift .header__overlay-link:active,
body.button-anim-lift .header__action-btn:active,
body.button-anim-lift .hero__button:active,
body.button-anim-lift .promotion__button:active,
body.button-anim-lift .text-img__button:active,
body.button-anim-lift .games__more-button:active,
body.button-anim-lift .error-404__button:active {
  transform: translateY(-1px);
}

body[data-button-anim=scale] .button, body[data-button-anim=scale] .button--secondary, body[data-button-anim=scale] .header__button, body[data-button-anim=scale] .header__overlay-link, body[data-button-anim=scale] .header__action-btn, body[data-button-anim=scale] .hero__button, body[data-button-anim=scale] .promotion__button, body[data-button-anim=scale] .text-img__button, body[data-button-anim=scale] .games__more-button, body[data-button-anim=scale] .error-404__button,
body.button-anim-scale .button,
body.button-anim-scale .button--secondary,
body.button-anim-scale .header__button,
body.button-anim-scale .header__overlay-link,
body.button-anim-scale .header__action-btn,
body.button-anim-scale .hero__button,
body.button-anim-scale .promotion__button,
body.button-anim-scale .text-img__button,
body.button-anim-scale .games__more-button,
body.button-anim-scale .error-404__button {
  transition: transform 0.28s ease;
}
body[data-button-anim=scale] .button:hover, body[data-button-anim=scale] .button--secondary:hover, body[data-button-anim=scale] .header__button:hover, body[data-button-anim=scale] .header__overlay-link:hover, body[data-button-anim=scale] .header__action-btn:hover, body[data-button-anim=scale] .hero__button:hover, body[data-button-anim=scale] .promotion__button:hover, body[data-button-anim=scale] .text-img__button:hover, body[data-button-anim=scale] .games__more-button:hover, body[data-button-anim=scale] .error-404__button:hover,
body.button-anim-scale .button:hover,
body.button-anim-scale .button--secondary:hover,
body.button-anim-scale .header__button:hover,
body.button-anim-scale .header__overlay-link:hover,
body.button-anim-scale .header__action-btn:hover,
body.button-anim-scale .hero__button:hover,
body.button-anim-scale .promotion__button:hover,
body.button-anim-scale .text-img__button:hover,
body.button-anim-scale .games__more-button:hover,
body.button-anim-scale .error-404__button:hover {
  transform: scale(1.05);
}
body[data-button-anim=scale] .button:active, body[data-button-anim=scale] .button--secondary:active, body[data-button-anim=scale] .header__button:active, body[data-button-anim=scale] .header__overlay-link:active, body[data-button-anim=scale] .header__action-btn:active, body[data-button-anim=scale] .hero__button:active, body[data-button-anim=scale] .promotion__button:active, body[data-button-anim=scale] .text-img__button:active, body[data-button-anim=scale] .games__more-button:active, body[data-button-anim=scale] .error-404__button:active,
body.button-anim-scale .button:active,
body.button-anim-scale .button--secondary:active,
body.button-anim-scale .header__button:active,
body.button-anim-scale .header__overlay-link:active,
body.button-anim-scale .header__action-btn:active,
body.button-anim-scale .hero__button:active,
body.button-anim-scale .promotion__button:active,
body.button-anim-scale .text-img__button:active,
body.button-anim-scale .games__more-button:active,
body.button-anim-scale .error-404__button:active {
  transform: scale(1.02);
}

body[data-button-anim=pop] .button, body[data-button-anim=pop] .button--secondary, body[data-button-anim=pop] .header__button, body[data-button-anim=pop] .header__overlay-link, body[data-button-anim=pop] .header__action-btn, body[data-button-anim=pop] .hero__button, body[data-button-anim=pop] .promotion__button, body[data-button-anim=pop] .text-img__button, body[data-button-anim=pop] .games__more-button, body[data-button-anim=pop] .error-404__button,
body.button-anim-pop .button,
body.button-anim-pop .button--secondary,
body.button-anim-pop .header__button,
body.button-anim-pop .header__overlay-link,
body.button-anim-pop .header__action-btn,
body.button-anim-pop .hero__button,
body.button-anim-pop .promotion__button,
body.button-anim-pop .text-img__button,
body.button-anim-pop .games__more-button,
body.button-anim-pop .error-404__button {
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body[data-button-anim=pop] .button:hover, body[data-button-anim=pop] .button--secondary:hover, body[data-button-anim=pop] .header__button:hover, body[data-button-anim=pop] .header__overlay-link:hover, body[data-button-anim=pop] .header__action-btn:hover, body[data-button-anim=pop] .hero__button:hover, body[data-button-anim=pop] .promotion__button:hover, body[data-button-anim=pop] .text-img__button:hover, body[data-button-anim=pop] .games__more-button:hover, body[data-button-anim=pop] .error-404__button:hover,
body.button-anim-pop .button:hover,
body.button-anim-pop .button--secondary:hover,
body.button-anim-pop .header__button:hover,
body.button-anim-pop .header__overlay-link:hover,
body.button-anim-pop .header__action-btn:hover,
body.button-anim-pop .hero__button:hover,
body.button-anim-pop .promotion__button:hover,
body.button-anim-pop .text-img__button:hover,
body.button-anim-pop .games__more-button:hover,
body.button-anim-pop .error-404__button:hover {
  transform: scale(1.08) translateY(-2px);
}
body[data-button-anim=pop] .button:active, body[data-button-anim=pop] .button--secondary:active, body[data-button-anim=pop] .header__button:active, body[data-button-anim=pop] .header__overlay-link:active, body[data-button-anim=pop] .header__action-btn:active, body[data-button-anim=pop] .hero__button:active, body[data-button-anim=pop] .promotion__button:active, body[data-button-anim=pop] .text-img__button:active, body[data-button-anim=pop] .games__more-button:active, body[data-button-anim=pop] .error-404__button:active,
body.button-anim-pop .button:active,
body.button-anim-pop .button--secondary:active,
body.button-anim-pop .header__button:active,
body.button-anim-pop .header__overlay-link:active,
body.button-anim-pop .header__action-btn:active,
body.button-anim-pop .hero__button:active,
body.button-anim-pop .promotion__button:active,
body.button-anim-pop .text-img__button:active,
body.button-anim-pop .games__more-button:active,
body.button-anim-pop .error-404__button:active {
  transform: scale(1.03) translateY(0);
}

.bg-block {
  background: var(--block-bg);
}

.bg-block--full {
  position: relative;
  isolation: isolate;
}
.bg-block--full::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--block-bg-full);
}
