/*-----------------------------------=========Main-Style-Sheet=========----------------------------------------*/


@font-face {
  font-family: 'Breathe Fire';
  src: url('../webfonts/BreatheFire.woff') format('woff'),
      url('../webfonts/BreatheFire.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Trajan Pro';
  src: url('../webfonts/TrajanPro-Bold.woff') format('woff'),
      url('../webfonts/TrajanPro-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Trajan Pro';
  src: url('../webfonts/TrajanPro-Regular.woff') format('woff'),
      url('../webfonts/TrajanPro-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}




:root {
  --theme__color1: #e5b854;
  --font1: 'Breathe Fire';
  --font2: 'Trajan Pro';
}
*,::before,::after {
  box-sizing: border-box;
}
body {
  font-size: 16px;
  line-height: 1.2;
  background-color: #fff;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font1);
}
a, a:active, a:focus, a:active, a:hover {
  text-decoration:none !important;
  color: inherit;
}
input{
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
a:hover,
a:focus,
input:focus,
input:hover,
select:focus,
select:hover,
select:active,
textarea:focus,
textarea:hover,
button:focus {
  outline: none;
}
::placeholder {
  opacity: 1;
}
:focus::placeholder {
  opacity: 0;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed; /* Prevents HTML tables from becoming too wide */
  width: 100%;
}
img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
iframe {
  width: 100%;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  font-weight: 700;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
p{
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 15px;
}
p:last-child{
  margin: 0;
}
.main-wrap {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 2599px) and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 2600px) {
  .container {
    max-width: 1594px;
  }
}


/* --preloader-- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--theme__color1);
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
@keyframes animate-preloader {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}
/* --preloader-end-- */



/* ---game-pp-section--- */
.game-pp-section {
  background: url('../images/background-new.png') no-repeat center center/cover;
  position: relative;
  z-index: 1;
}
.game-pp-section-background-first-corner {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url('../images/background-new.png') no-repeat center center/cover;
  z-index: -1;
  clip-path: polygon(54% 0, 100% 0, 100% 100%, 45% 100%);
  filter: grayscale(0.8);
  opacity: 0;
  transition: 0.3s;
}
.game-pp-section.first-corner .game-pp-section-background-first-corner {
  opacity: 1;
}
.game-pp-section-background-last-corner {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url('../images/background-new.png') no-repeat center center/cover;
  z-index: -1;
  clip-path: polygon(0% 0, 53% 0, 44% 100%, 0% 100%);
  transition: 0.3s;
}
.game-pp-section.last-corner .game-pp-section-background-last-corner {
  filter: grayscale(0.8);
}
.game-pp-section.last-corner .game-pp-section-background-last-corner::after {
  opacity: 0;
}


.game-pp-corner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.game-pp-section::before {
  content: '';
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rebeccapurple;
  clip-path: polygon(0% 0, 53% 0, 44% 100%, 0% 100%);
  display: none;
}
.game-pp-section .container {
  height: 100%;
}
.game-pp-section-inner {
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}



.game-pp-content-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.game-pp {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 390px;
}
.game-pp-circle-a {
  width: 327px;
  position: relative;
}
.game-pp-circle-a .background {
  width: 185%;
  margin-left: -50%;
  margin-bottom: -8%;
  max-width: initial;
}
.game-pp-circle-a .txt {
  padding: 20px 0 0 ;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  -webkit-user-select: none; /* Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}
.game-pp-circle-a h2 {
  margin: 0 0 12px;
  font-size: 45px;
  color: var(--theme__color1);
  font-weight: 400;
  text-shadow: 2px 2px 29px #000000,2px 2px 2px #000000;
}
.game-pp-circle-a h3 {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--theme__color1);
}
.game-pp-circle-b {
  width: 268px;
  position: relative;
}
.game-pp-circle-b .background {
	width: 278%;
	margin-left: -87%;
	margin-bottom: -25.4%;
	max-width: initial;
	margin-top: -22.4%;
}
.game-pp-bt-cont {
  width: 390px;
  position: relative;
}
.game-pp-bt-cont .background {
	width: 135.8%;
	margin-left: -17.4%;
	margin-bottom: -19.5%;
	max-width: initial;
	margin-top: -22.7%;
}
.game-pp-bt-cont .txt {
  padding: 14px 0 0 ;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font2);
}
.game-pp-bt-cont h3 {
  font-size: 16px;
  font-weight: 400;
  color: #be8219;
  margin: 0;
}
.game-pp-bt-cont h4 {
  font-size: 16px;
  font-weight: 400;
  color: #fffcb4;
  margin: 0;
}
.game-pp1 {

}
.game-pp2 {
  margin: 0 auto;
}
.game-pp3 {
  margin: -60px 0 0 auto;
}
/* ---game-pp-section---end */
.header-video {
	position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-section a {
	display: none!important;
}