
.submenu a.active,
.submenu a:hover {
    color: #fff !important;
}

.languages-selector{
    position: relative;;
}

section .padding-top {
  padding: 6.25rem 0;
}


#header header {
    left: 0;
    top: 0;
  }

  #footer li {
    list-style: none;
  }

  #header .logo {
    padding: 30px 0;
  }

  #header .logo img {
    width: 180px;
  }

  #header .languages {
    padding-top: 10px;
  }

  #header .submenu ul {
    margin: 12px 0;
  }

  #header .submenu ul li {
    padding: 18px 50px 18px 0;
    display: inline-block;
    /* width: 24%; */
  }

  #header .submenu ul li:last-child {
    padding-right: 0;
  }

  #header .submenu ul li a {
    color: #999;
    text-decoration: none;
  }

  #header .submenu ul li a:hover {
    color: #fff;
  }

  #header .collapsible {
    background: none;
    width: 24px;
    height: 24px;
    border: 0;
  }

  @media (min-width: 1025px) {
    #header .collapsible {
      display: none;
    }

    #header .container {
      display: grid;
      grid-template-columns: 250px auto;
    }
  }

  @media (max-width: 1024px) {
    #header .container {
      display: grid;
      grid-template-columns: 40px auto;
    }

    #header .header {
      position: relative;
    }

    #header .logo img {
      max-width: 150px;
    }

    #header .submenu {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #000;
      z-index: 2;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease-out;
      top: 50px;
    }

    #header .submenu ul li {
      display: block;
      border-bottom: 1px solid #111;
      padding-left: 20px;
      padding-right: 20px;
      width: 100%;
    }

    #header .submenu ul li:hover {
      background-color: #111;
    }

    #header .collapsible {
      margin-top: 28px;
      position: relative;
      z-index: 2;
    }
  }

  #footer {
    background-color: #111;
    color: #888;
    text-align: center;
    padding: 3rem 0 2rem;
  }

  #footer .footer-panel img {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
    max-width: 88px;
  }

  #footer .footer-panel img:last-child {
    margin-right: 0;
  }

  @media (min-width: 769px) {
    #footer .footer-panel {
      display: grid;
      grid-template-columns: auto auto;
    }
  }

  @media (max-width: 768px) {
    #footer .footer-panel li {
      display: block;
      width: 100%;
      margin-bottom: 2rem;
    }
  }

  @media screen and (max-width:767px) {}

  @media screen and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1200px),
  screen and (min-width: 768px) and (max-width: 1200px) {}

  @media screen and (-webkit-min-device-pixel-ratio: 1) and (min-width: 1200px) {}

  @media screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1200px) {}

  /** Modal **/
  .modal-content {
    background: #111;
    width: 70%;
    padding: 20px;
    border-radius: 10px;
    z-index: 1015;
    position: fixed;
    left: 50%;
    margin-left: -35%;
    top: 100px;
    color: #fff;
  }

  .hidden-modal {
    display: none;
  }

  .close-modal {
    background: transparent;
    border: none;
    height: 20px;
    width: 20px;
    font-size: 4rem;
    line-height: 4rem;
    color: #888;
    font-weight: 200;
    position: absolute;
    top: 0;
    right: 30px;
  }

  .close-modal:hover {
    color: #fff;
  }

  .blur-bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    z-index: 1010;
  }

  .hidden-blur {
    display: none;
  }

  .login-box {
    text-align: center;
  }

  .login-box img {
    display: block;
    margin: 0 auto;
  }

  @media (max-width: 767px) {
    .modal-content {
      width: 90%;
      padding: 10px;
      margin-left: -45%;
    }

    .login-box img {
      max-width: 90px;
    }

    .login-box h2 {
      font-size: 1.325rem;
    }
  }

  /**pnxDropdownCustomSelect select dropdown*/
  .pnxDropdownCustomSelect {
    position: relative;
    width: 100%;
  }

  .pnxDropdownCustomSelect .trigger {
    padding: 10px;
    padding-right: 1.5rem;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    background-color: var(--background-color--blue);
    border: 0;
    border-radius: 5px;
    padding-left: 15px;
  }

  .pnxDropdownCustomSelect .select-icon {
    color: #44d62c;
    font-size: 1.9375rem;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
  }

  .pnxDropdownCustomSelect .trigger[aria-expanded="true"] .select-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 15%;
  }

  .pnxDropdownCustomSelect .options {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #222;
    border-top: 0;
    left: 5px;
    right: 5px;
    background-color: var(--background-color--blue);
    color: #fff;
    margin-top: 1px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .4);
    text-align: left;
  }

  .pnxDropdownCustomSelect .options.is-visible {
    display: block;
  }

  .pnxDropdownCustomSelect .options li {
    cursor: pointer;
    padding: 8px 10px;
    color: #999;
    transition: all .1s linear;
    background-color: #000;
    font-size: 1rem;
    font-weight: 400;
  }

  .pnxDropdownCustomSelect .options li:hover,
  .pnxDropdownCustomSelect .options li[aria-selected="true"] {
    background-color: #111;
    color: #fff;
  }

  .pnxDropdownCustomSelect .options li:hover {
    pointer-events: auto;
  }

  .pnxDropdownCustomSelect button {
    color: #999;
  }

  .pnxDropdownCustomSelect button:hover {
    color: #fff;
  }

  .pnxDropdownCustomSelect button:focus {
    outline: none;
    color: #fff;
  }

  .pnxDropdownCustomSelect .options li[aria-selected="true"] {
    pointer-events: none;
    color: white;
  }

  /** end pnxDropdownCustomSelect select dropdown **/
  @media screen and (max-width:767px) {}

  @media screen and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1200px),
  screen and (min-width: 768px) and (max-width: 1200px) {}

  @media screen and (-webkit-min-device-pixel-ratio: 1) and (min-width: 1200px) {}

  @media screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1200px) {}


  @media (min-width: 768px) {
    #hero-txt h2 {
      line-height: 5.5rem;
      letter-spacing: 0.4rem;
      color: #fff;
    }
  }

  @media (max-width: 767px) {
    #hero-txt h2 {
      color: #fff !important;
      text-align: center;
    }

    #hero-txt .usp-bg {
      width: 100% !important;
      max-width: 100% !important;
      margin-left: 0 !important;
    }
  }

  @media screen and (max-width:767px) {
    #home1 div[pnxssr_2] {
      background-image: none;
      min-height: 700px;
    }

    #home1 picture.pic{
      display: block !important;
    }

    #home1 img[pnxssr_3] {
      width: 150%;
      max-width: 150%;
      margin-left: -50%;
    }

    #home1 h2[pnxssr_6] {
      color: #fff;
      font-family: Roboto;
      max-width: 900px;
      font-weight: 700;
    }
  }

  @media screen and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1200px),
  screen and (min-width: 768px) and (max-width: 1200px) {
    #home1 div[pnxssr_2] {
      background-image: url(../img/ths-game-hero-notext-desktop.webp);
      min-height: 700px;
    }

    #home1 img[pnxssr_3] {
      width: 150%;
      max-width: 150%;
      margin-left: -50%;
    }

    #home1 div[pnxssr_4] {
      max-height: 700px;
    }

    #home1 h2[pnxssr_6] {
      margin: 0 auto 1.5rem;
      color: #fff;
      font-family: Roboto;
      max-width: 900px;
      font-weight: 700;
      font-size: 5rem;
    }
  }

  @media screen and (-webkit-min-device-pixel-ratio: 1) and (min-width: 1200px) {
    #home1 div[pnxssr_2] {
      background-image: url(../img/ths-game-hero-notext-desktop.webp);
      min-height: 700px;
    }

    #home1 img[pnxssr_3] {
      width: 150%;
      max-width: 150%;
      margin-left: -50%;
    }

    #home1 div[pnxssr_4] {
      max-height: 700px;
    }

    #home1 h2[pnxssr_6] {
      margin: 0 auto 1.5rem;
      color: #fff;
      font-family: Roboto;
      max-width: 900px;
      font-weight: 700;
      font-size: 5rem;
    }
  }

  @media screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1200px) {
    #home1 div[pnxssr_2] {
      background-image: url(../img/ths-game-hero-notext-desktop.webp);
      min-height: 700px;
    }

    #home1 img[pnxssr_3] {
      width: 150%;
      max-width: 150%;
      margin-left: -50%;
    }

    #home1 div[pnxssr_4] {
      max-height: 700px;
    }

    #home1 h2[pnxssr_6] {
      margin: 0 auto 1.5rem;
      color: #fff;
      font-family: Roboto;
      max-width: 900px;
      font-weight: 700;
      font-size: 5rem;
    }
  }
  #intro .body-copy {
    color: #fff;
  }

  #intro .bo-temp {
    padding-top: 6.25rem;
  }

  @media (max-width: 768px) {
    #intro .bo-temp {
      padding-top: 3rem;
    }
  }

  @media screen and (max-width:767px) {}

  @media screen and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1200px),
  screen and (min-width: 768px) and (max-width: 1200px) {}

  @media screen and (-webkit-min-device-pixel-ratio: 1) and (min-width: 1200px) {}

  @media screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1200px) {}


  #features .icons ul li .header {
    color: #fff;
  }

  @media (min-width: 769px) {
    #features .icons ul li {
      background: transparent linear-gradient(180deg, #222 0%, #00000000 100%) 0% 0% no-repeat padding-box;
      padding: 40px 46px;
    }
  }


  #contact {
    color: #999;
    font-size: 1.125rem;
  }

  #contact .contact-panel .header {
    color: #44d62c;
    margin-bottom: 1rem;
  }

  #contact .contact-panel strong {
    color: #fff;
  }

  @media (min-width: 769px) {
    #contact {
      /* padding: 6.25rem 0; */
      padding: 3.25rem 0;
    }

    #contact .contact-panel {
      padding-bottom: 2rem;
    }

    #contact .contact-panel li {
      display: inline-block;
      width: 40%;
      vertical-align: top;
      padding-right: 10px;
    }

    #contact .contact-panel li:first-child {
        width: 55%;
    }
  }

  @media (max-width: 768px) {
    #contact {
      padding: 3rem 0;
    }

    #contact .contact-panel li {
      display: block;
      width: 100%;
      margin-bottom: 2rem;
    }
  }

  @media screen and (max-width:767px) {
    #pnxssr_ea3156e9a7b553a43a617255e1d73776 iframe[pnxssr_24] {
      border: 0;
    }
  }

  @media screen and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1200px),
  screen and (min-width: 768px) and (max-width: 1200px) {
    #pnxssr_ea3156e9a7b553a43a617255e1d73776 iframe[pnxssr_24] {
      border: 0;
    }
  }

  @media screen and (-webkit-min-device-pixel-ratio: 1) and (min-width: 1200px) {
    #pnxssr_ea3156e9a7b553a43a617255e1d73776 iframe[pnxssr_24] {
      border: 0;
    }
  }

  @media screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1200px) {
    #pnxssr_ea3156e9a7b553a43a617255e1d73776 iframe[pnxssr_24] {
      border: 0;
    }
  }

  #terms-conditions .container {
    padding-top: 2rem;
    text-align: justify;
  }

  @media (min-width: 1024px) {
    #terms-conditions .container {
      padding-top: 7rem;
    }

    #terms-conditions .header-and-date h1 {
      width: 70%;
    }

    #terms-conditions .header-and-date .lmdf-date {
      width: 30%;
    }
  }


  #pravicy-policy .container {
    padding-top: 2rem;
    text-align: justify;
  }

  @media (min-width: 1024px) {
    #pravicy-policy .container {
      padding-top: 7rem;
    }

    #pravicy-policy .header-and-date h1 {
      width: 70%;
    }

    #pravicy-policy .header-and-date .lmdf-date {
      width: 30%;
    }
  }

  #footer .footer-bottom .legal-term ul {
    margin-bottom: 0;
    padding-left: 0;
}
#footer .footer-bottom .legal-term li {
    display: inline-block;
}
#footer .footer-bottom .legal-term li a {
    font-size: 80%;
    font-weight: 400;
}

#footer .footer-bottom .legal-term li:not(:first-child):before {
    color: #999;
    content: "|";
    padding-left: .1675rem;
    padding-right: .1675rem;
}

@media (min-width: 768px) {
    #footer .footer-bottom .legal-term li::before {
        padding: 0 .5rem !important;
    }
}

.bo-temp .multi-panels ul li .header {
  font: 700 1.5rem / 1.5rem Roboto, Arial, Helvetica, sans-serif !important;
}
.bo-temp.intro .header {
  font: 700 4.5rem / 1 Roboto, Arial, Helvetica, sans-serif !important;
}
@media (max-width: 768px) {
  .bo-temp.intro .header {
      font-size: 2rem !important;
  }
}

.contact-block{
  line-height: 28px;
}