/* ------------------------------------------
Table of contents
---------------------------------------------
01. reset + import
02. global styles
03. LOADING style
04. Banner style
05. Welcome style
06. Content style
07. Chill style
08. Quests style
09. Footer style
10. Responsive 
------------------------------------------ */





/* 
---------------------------------------------
01. reset + import
--------------------------------------------- 
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-image: url("../../imgs/unicode.png") !important;;
  background-repeat: repeat;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
	color: #CCC;
  text-decoration: none !important;
}
a:hover {
	color: #F99;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-weight: 700;
}

h7 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
  font-size: medium;
  font-weight: 500;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 15px;
  line-height: 30px;
  color: #fff;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/

html,
body {
  background: #1f2122;
  font-family: 'Poppins', sans-serif;
}

body .page-content {
  margin-top: 50px;
  background-color: #27292a;
  padding: 60px;
  border-radius: 23px;
}

p {
  font-size: 15px;
  color: #666;
  line-height: 30px;
  margin-bottom: 0px;
}

.main-button a {
  font-size: 20px;
  color: #fff;
  background-color: #9F2B68;
  padding: 9px 23px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.main-button a:hover {
  background-color: #C54B8C;
  color: #fff;
}

section {
  margin-top: 120px;
}

.heading-section h4 {
  color: #FF647F;
  font-size: 34px;
  text-decoration: none;
  margin-bottom: 30px;
}

.heading-section h4 em {
  color: #fff;
  font-style: normal;
}

/* 
---------------------------------------------
03. LOADING style
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.99);
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@keyframes dot {
  50% {
      -webkit-transform: translateX(96px);
      transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

@keyframes dots {
  50% {
      -webkit-transform: translateX(-31px);
      transform: translateX(-31px);
  }
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #e75e8d;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #e75e8d;
  border-radius: 50%;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
  background-image: url(../../imgs/banner-bg.jpg);
  background-position: center center;
  background-size: cover;
  min-height: 380px;
  border-radius: 23px;
  padding: 80px 60px;
}

.main-banner h6 {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 25px;
}

.main-banner h4 {
  font-size: 45px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.main-banner h4 em {
  font-style: normal;
  color: #FF647F;
}


/* 
---------------------------------------------
05. Welcome style
--------------------------------------------- 
*/

.welcome {
  border-radius: 23px;
  padding: 30px;
  background-color: #1f2122;
}

.welcome .main-info span {
  font-size: 14px;
  color: #fff;
  background-color: #e75e8d;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.welcome .main-info h4 {
  margin-bottom: 20px;
}

.welcome .main-info .main-border-button {
  margin-top: 25px;
}

.welcome ul {
  border-radius: 23px;
  padding: 30px;
  background-color: #27292a;
}

.welcome ul li {
  width: 100%;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #666;
}

.welcome ul li span {
  float: right;
  font-weight: 500;
  color: #ec6090;
}

.welcome ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* 
---------------------------------------------
06. Content style
--------------------------------------------- 
*/

.content {
  margin-top: 60px;
  padding: 30px;
  background-color: #1f2122;
  border-radius: 23px;
}

.content .item {
  background-color: #27292a;
  padding: 30px 15px;
  border-radius: 23px;
  margin-bottom: 30px;
}

.content .item .item {
  padding: 0px;
  border-radius: 0px;
  background-color: transparent;
  margin-bottom: 0px;
}

.content .item img {
  border-radius: 23px;
}

.content .item h4 {
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 0px;
  display: inline-block;
}

.content .item span {
  color: #666;
  display: block;
  margin-top: 7px;
  font-weight: 400;
}

.content .item ul {
  float: right;
  margin-top: 20px;
}

.content .item ul li {
  text-align: right;
  color: #fff;
  font-size: 14px;
}

.content .item ul li:first-child i {
  color: yellow;
}

.content .item ul li:last-child i {
  color: #ec6090;
}

.content .main-button {
  text-align: center;
  margin-bottom: -53px;
}

/* 
---------------------------------------------
07. ChillZone
--------------------------------------------- 
*/

.chill-zone {
  margin-top: 60px;
  padding: 30px;
  background-color: #1f2122;
  border-radius: 23px;
}

.chill-zone .item {
  background-color: #27292a;
  padding: 30px 15px;
  border-radius: 23px;
  margin-bottom: 30px;
}

.chill-zone .item span {
  color: #666;
  display: block;
  margin-top: 7px;
  font-weight: 400;
}

.chill-zone h2  {
  margin-top: 20px;
}

.chill-zone .item  {
  float: right;
  margin-top: 20px;
}

.chill-zone .item ul li {
  text-align: right;
  color: #fff;
  font-size: 14px;
}

/* 
---------------------------------------------
08. Quests Style
--------------------------------------------- 
*/

.quests {
  margin-top: 60px;
  padding: 30px;
  background-color: #1f2122;
  border-radius: 23px;
}

.quests .item {
  border-bottom: 1px solid #27292a;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.quests .last-item {
  margin-bottom: 30px;
}

.quests .last-item {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.quests .item ul li {
  margin-top: 15px;
}

.quests .item ul li img {
  margin-top: -30px;
}

.quests .item ul li {
  display: inline-block;
  width: 17%;
}

.quests .item ul li:first-child {
  width: 110px;
}

.quests .item ul li:last-child {
  width: 15%;
  text-align: right;
}

.quests .item ul li h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.quests .item ul li span {
  color: #666;
  font-size: 14px;
}

.quests .main-button {
  text-align: center;
  margin-bottom: -53px;
}

/* 
---------------------------------------------
09. Footer style
--------------------------------------------- 
*/

footer p {
  text-align: center;
  padding: 30px 0px;
  color: #fff;
  font-weight: 300;
}

footer p a {
  color: #fff;
  transition: all .3s;
}

footer p a:hover {
  color: #ec6090;
}




/* 
---------------------------------------------
10. Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body .page-content {
    padding: 0px 30px;
  }
  .main-banner {
    text-align: center;
  }
  .main-banner h4 {
    font-size: 35px;
  }
  .content .item ul li,
  .content .item ul li:first-child,
  .content .item ul li:last-child {
    width: 100% !important;
    text-align: center !important;
  }
  .content .item ul li {
    margin-top: 30px;
  }

  .chill-zone .item .inner-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .background-header {
  display: inline-block;
  }
  .header-area .main-nav #search {
    display: none;
  }
  .heading-section h4 {
    font-size: 20px;
  }
  .content .item ul li {
    width: 48% !important;
  }
  .content .item ul li:last-child {
    text-align: left;
  }
  .featured-games {
    margin-bottom: 60px;
  }
  .start-stream .item {
    margin: 15px 0px;
  }
  .feature-banner .thumb {
    margin-top: 30px;
  }
  .welcome .main-info {
    margin: 45px 0px;
  }
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-right: 5px;
    padding-left: 5px;
  }
  .header-area .main-nav .logo {
    margin-right: 30px;
    border-right: none;
  }
  .content .item ul li {
    width: 16%;
  }
}