:root {
  --first-color: #efac00;
  --second-color: #6a229b;
}
.navbar-wrap .navigation .header-btn, .mobile-menu .navigation .header-btn {
  margin: 0 10px;
  padding: 2px 16px;
  background-color: var(--second-color);
  border: none;
  outline: none;
  font-weight: 500;
  border-radius: 15px;
  color: #fff;
  transition: 0.3s;
}
.mobile-menu .navigation .header-btn {
  margin: 10px 25px;
}
.navbar-wrap .navigation .header-btn:hover, .mobile-menu .navigation .header-btn:hover {
  background-color: var(--first-color);
  color: #2f002e;
}
.grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.grid-box .text-grid-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px solid #fff;
  border-radius: 15px;
}
.grid-box .text-grid-box p {
  margin-bottom: 0;
  text-align: center;
  color: white;
}
.contact-links a {
  text-transform: none !important;
}
.footer-responsibly {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
  border: 2px solid #fff;
  border-radius: 20px;
  margin-bottom: 0;
}
.footer-responsibly h4 {
  text-align: center;
  margin-bottom: 0 !important;
  color: var(--first-color);
}
.icon {
  display: block;
  width: 100px !important;
  margin: 0 auto;
}
@media screen and (max-width:1199.98px) {
  .footer-responsibly {
    padding: 40px 10px;
  }
}
@media screen and (max-width:991.98px) {
  .game-area iframe {
    height: 530px !important;
  }
}
@media screen and (max-width:767.98px) {
  .grid-box {
    grid-template-columns: 1fr;
  }
  .game-area iframe {
    height: 420px !important;
  }
}
@media screen and (max-width:575.98px) {
  .breadcrumb-content .title {
    font-size: 46px !important;
  }
  .game-area iframe {
    height: 400px !important;
  }
}
@media screen and (max-width:359.98px) {
  .game-area iframe {
    height: 280px !important;
  }
}

.popup {
  display: none;
}
.popup--open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  top: 0px;
  background-color: rgba(0, 23, 47, 0.5);
  overflow: hidden;
  position: fixed;
  z-index: 10000;
}
.popup-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  padding: 80px;
  background-color: rgba(0, 23, 47, 1);
}
.popup-close {
  position: absolute;
  display: block;
  right: 10px;
  top: 10px;
  font-size: 32px;
  line-height: 1;
  color: var(--first-color);
  transition: 0.3s;
  cursor: pointer;
}
.popup-close:hover {
  color: var(--second-color);
}
.popup-area h2 {
  color: var(--first-color);
  margin-bottom: 20px;
  text-align: center;
}
.form-area {
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}
.popup-area form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.custom-input {
  width: 100%;
  padding: 8px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--first-color);
  outline: none !important;
  transition: 0.3s;
  border-radius: 0px;
  box-shadow: none;
  background-color: transparent;
  color: white;
}
.custom-input:focus {
  border-color: var(--second-color);
}
.popup-area .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-bottom: 10px;
  padding-left: 0;
}
.popup-area .checkbox input {
  position: relative;
  height: 20px;
  width: 20px;
  appearance: none;
  border-radius: 50%;
  border: 1px solid var(--first-color);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  cursor: pointer;
  background: var(--first-color);
}
.popup-area .checkbox input::after {
  content: "";
  height: 20px;
  width: 20px;
}
.popup-area .checkbox input:checked::after { 
  content: "";
  background: url(../img/check.svg) no-repeat center ;
  background-size: 10px auto;
}
.popup-area .checkbox label {
  padding: 0;
}
.popup-area .checkbox label, .popup-area .checkbox input {
  cursor: pointer;
}
.popup-area .checkbox a {
  color: var(--first-color);
  margin: 0 auto;
  transition: 0.3s;
}
.popup-area .checkbox a:hover {
  color: var(--second-color);
}
.popup-area form button {
  align-self: center;
  margin-top: 10px;
  font-size: 18px;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 0px;
  background-color: var(--second-color);
  transition: 0.3s;
  width: 100%;
}
.popup-area form button:hover {
  background-color: var(--first-color);
  color: #2f002e;
}
.popup-area p {
  color: white;
  margin-bottom: 0;
}
.popup-area p button {
  margin-bottom: 0;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--first-color);
  transition: 0.3s;
}
.popup-area p button:hover {
  color: var(--second-color);
}
@media screen and (max-width:767.98px) {
  .popup-area {
    margin: 0 20px;
    padding: 80px 40px;
  }
}
@media screen and (max-width:575.98px) {
  .popup-area {
    margin: 0 20px;
    padding: 50px 20px 30px;
  }
  .popup-area h2 {
    font-size: 28px
  }
}

.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
  color: #fff;
}
.thanks p.thanks-text {
  color: var(--first-color);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 150px 0 100px;
  }
  .thanks p {
    font-size: 14px;
  }
}

.docs {
  word-break: break-word;
  padding: 150px 20px 100px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs ul {
  padding-left: 20px;
}
.docs li, .docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--first-color);
}
.docs a:hover {
  color: var(--second-color);
}
.docs b, .docs strong {
  color: white;
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 150px 0px 50px;
  }
}