/**
* Theme: YanisRO Chronicles [Responsive rA Flux CP]
* Designer and Developer: https://gantzromisc.ml
* ROMISC Gantz Services
*/


@font-face {
  font-family: 'Futura-Book';
  src: url('../fonts/Futura-Book.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GothamCondensedMedium';
  src: url('../fonts/GothamCondensed-Medium.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Black';
  src: url('../fonts/Inter-Black.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Bold';
  src: url('../fonts/Inter-Bold.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-ExtraBold';
  src: url('../fonts/Inter-ExtraBold.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-ExtraLight';
  src: url('../fonts/Inter-ExtraLight.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Light';
  src: url('../fonts/Inter-Light.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Medium';
  src: url('../fonts/Inter-Medium.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Regular';
  src: url('../fonts/Inter-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-SemiBold';
  src: url('../fonts/Inter-SemiBold.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Thin';
  src: url('../fonts/Inter-Thin.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Raleway-Bold';
  src: url('../fonts/Raleway-Bold.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SportyPro-Bold';
  src: url('../fonts/SportyPro-Bold.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SportyPro-Regular';
  src: url('../fonts/SportyPro-Regular.otf');
  font-weight: normal;
  font-style: normal;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --themeTextColor: #a6a5a5;
  --themeColor: #486fcc;
  --themeHover: #84aaf6;
}

.text-color{
	color: var(--themeColor);
}

.text-hover{
	color: var(--themeHover);
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: var(--themeColor);
  text-decoration: none;
}

a:hover {
  color: var(--themeHover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--bs-dark);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  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);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 40px;
  z-index: 996;
  background: var(--themeColor);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Server Status
--------------------------------------------------------------*/

.server-status {
  background:rgba(0, 0, 0, 0.3);
  padding: 10px;
  max-width: 280px;
	margin: auto;
}

@media (max-width: 576px) {
  .server-time {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.3s;
  z-index: 997;
  padding: 5px 0;
  top: 0px;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.7);
  top: 0px;
  padding: 5px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 70px;
}

@-webkit-keyframes fall {
  0% {
      opacity: 0.9;
      top: 0
  }
  100% {
      opacity: 0.2;
      top: 100%
  }
}

@keyframes fall {
  0% {
      opacity: 0.9;
      top: 0
  }
  100% {
      opacity: 0.2;
      top: 100%
  }
}

@-webkit-keyframes blow-soft-left {
  0% {
      margin-left: 0
  }
  100% {
      margin-left: -50%
  }
}

@keyframes blow-soft-left {
  0% {
      margin-left: 0
  }
  100% {
      margin-left: -50%
  }
}

@-webkit-keyframes blow-medium-left {
  0% {
      margin-left: 0
  }
  100% {
      margin-left: -100%
  }
}

@keyframes blow-medium-left {
  0% {
      margin-left: 0
  }
  100% {
      margin-left: -100%
  }
}

@-webkit-keyframes blow-soft-right {
  0% {
      margin-left: 0
  }
  100% {
      margin-left: 50%
  }
}

@keyframes blow-soft-right {
  0% {
      margin-left: 0
  }
  100% {
      margin-left: 50%
  }
}

@-webkit-keyframes blow-medium-right {
  0% {
      margin-left: 0
  }
  100% {
      margin-left: 100%
  }
}

@keyframes blow-medium-right {
  0% {
      margin-left: 0
  }
  100% {
      margin-left: 100%
  }
}

@-webkit-keyframes sway-0 {
  0% {
      -webkit-transform: rotate(-5deg)
  }
  40% {
      -webkit-transform: rotate(28deg)
  }
  100% {
      -webkit-transform: rotate(3deg)
  }
}

@keyframes sway-0 {
  0% {
      -ms-transform: rotate(-5deg);
      transform: rotate(-5deg)
  }
  40% {
      -ms-transform: rotate(28deg);
      transform: rotate(28deg)
  }
  100% {
      -ms-transform: rotate(3deg);
      transform: rotate(3deg)
  }
}

@-webkit-keyframes sway-1 {
  0% {
      -webkit-transform: rotate(10deg)
  }
  40% {
      -webkit-transform: rotate(43deg)
  }
  100% {
      -webkit-transform: rotate(15deg)
  }
}

@keyframes sway-1 {
  0% {
      -ms-transform: rotate(10deg);
      transform: rotate(10deg)
  }
  40% {
      -ms-transform: rotate(43deg);
      transform: rotate(43deg)
  }
  100% {
      -ms-transform: rotate(15deg);
      transform: rotate(15deg)
  }
}

@-webkit-keyframes sway-2 {
  0% {
      -webkit-transform: rotate(15deg)
  }
  40% {
      -webkit-transform: rotate(56deg)
  }
  100% {
      -webkit-transform: rotate(22deg)
  }
}

@keyframes sway-2 {
  0% {
      -ms-transform: rotate(15deg);
      transform: rotate(15deg)
  }
  40% {
      -ms-transform: rotate(56deg);
      transform: rotate(56deg)
  }
  100% {
      -ms-transform: rotate(22deg);
      transform: rotate(22deg)
  }
}

@-webkit-keyframes sway-3 {
  0% {
      -webkit-transform: rotate(25deg)
  }
  40% {
      -webkit-transform: rotate(74deg)
  }
  100% {
      -webkit-transform: rotate(37deg)
  }
}

@keyframes sway-3 {
  0% {
      -ms-transform: rotate(25deg);
      transform: rotate(25deg)
  }
  40% {
      -ms-transform: rotate(74deg);
      transform: rotate(74deg)
  }
  100% {
      -ms-transform: rotate(37deg);
      transform: rotate(37deg)
  }
}

@-webkit-keyframes sway-4 {
  0% {
      -webkit-transform: rotate(40deg)
  }
  40% {
      -webkit-transform: rotate(68deg)
  }
  100% {
      -webkit-transform: rotate(25deg)
  }
}

@keyframes sway-4 {
  0% {
      -ms-transform: rotate(40deg);
      transform: rotate(40deg)
  }
  40% {
      -ms-transform: rotate(68deg);
      transform: rotate(68deg)
  }
  100% {
      -ms-transform: rotate(25deg);
      transform: rotate(25deg)
  }
}

@-webkit-keyframes sway-5 {
  0% {
      -webkit-transform: rotate(50deg)
  }
  40% {
      -webkit-transform: rotate(78deg)
  }
  100% {
      -webkit-transform: rotate(40deg)
  }
}

@keyframes sway-5 {
  0% {
      -ms-transform: rotate(50deg);
      transform: rotate(50deg)
  }
  40% {
      -ms-transform: rotate(78deg);
      transform: rotate(78deg)
  }
  100% {
      -ms-transform: rotate(40deg);
      transform: rotate(40deg)
  }
}

@-webkit-keyframes sway-6 {
  0% {
      -webkit-transform: rotate(65deg)
  }
  40% {
      -webkit-transform: rotate(92deg)
  }
  100% {
      -webkit-transform: rotate(58deg)
  }
}

@keyframes sway-6 {
  0% {
      -ms-transform: rotate(65deg);
      transform: rotate(65deg)
  }
  40% {
      -ms-transform: rotate(92deg);
      transform: rotate(92deg)
  }
  100% {
      -ms-transform: rotate(58deg);
      transform: rotate(58deg)
  }
}

@-webkit-keyframes sway-7 {
  0% {
      -webkit-transform: rotate(72deg)
  }
  40% {
      -webkit-transform: rotate(118deg)
  }
  100% {
      -webkit-transform: rotate(68deg)
  }
}

@keyframes sway-7 {
  0% {
      -ms-transform: rotate(72deg);
      transform: rotate(72deg)
  }
  40% {
      -ms-transform: rotate(118deg);
      transform: rotate(118deg)
  }
  100% {
      -ms-transform: rotate(68deg);
      transform: rotate(68deg)
  }
}

@-webkit-keyframes sway-8 {
  0% {
      -webkit-transform: rotate(94deg)
  }
  40% {
      -webkit-transform: rotate(136deg)
  }
  100% {
      -webkit-transform: rotate(82deg)
  }
}

@keyframes sway-8 {
  0% {
      -ms-transform: rotate(94deg);
      transform: rotate(94deg)
  }
  40% {
      -ms-transform: rotate(136deg);
      transform: rotate(136deg)
  }
  100% {
      -ms-transform: rotate(82deg);
      transform: rotate(82deg)
  }
}

.magic-circle {
  position: absolute;
	top: 70px;
	background-image: url('../img/magic-circle.png');
	width: 636px;
	height: 636px;
	background-size: 100% auto;
	left: 50%;
	margin-left: -300px;
  opacity: 0.6;
	-webkit-animation: rotate 120s linear infinite;
	animation: rotate 120s linear infinite;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } 
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } 
}


.smoke { position: absolute; left: 0; right: 0; top: 0px; height: 100vh; width: 100%; opacity: 0.7; background-image: url(../img/fog.png); background-position: left top; background-size: cover; background-repeat: repeat-x; -webkit-animation: smoke 30s linear infinite; animation: smoke 30s linear infinite; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; }

@-webkit-keyframes smoke { 0% { background-position: left -1920px top; }
	100% { background-position: left 1920px top; } }
  
@keyframes smoke { 0% { background-position: left -1920px top; }
	100% { background-position: left 1920px top; } }


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px 10px 25px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}

.navbar a::after{
  content: '';
  position: absolute;
  width: 0px;
  height: 3px;
  left: 0%;
  bottom:0;
  background-color: white;
  transition: all ease-in-out .2s;
}
.navbar a:hover::after{
  width: 100%;
  left: 0;
  transition: all ease-in-out .2s;
}

.navbar .getstarted {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid var(--themeColor);
  font-weight: 600;
}

.navbar .getstarted:hover {
  color: #fff;
  background: var(--themeColor);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #000;
}

.navbar .dropdown ul li a:hover {
	font-weight: 400;
  display: block;
  background: var(--themeColor);
	color: white !important;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

.discord-nav {
  background: url(../img/discord-logo.png);
  width: 73px;
  height: 20px;
  margin-left: 30px;
}

.discord-nav:hover {
  background: url(../img/discord-logo-dark.png);
}

@media (max-width: 991px) {

  .discord-nav {
    background: url(../img/discord-logo-dark.png);
    width: 73px;
    height: 20px;
    margin-left: 20px;
    margin-top: 5px;
  }
  
  .discord-nav:hover {
    opacity: 0.5;
  }

}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    position: fixed;
	  top: 15px;
	  right: 15px;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 27, 28, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  font-weight: 400;
  background: var(--themeColor);
	color: white !important;
}

.navbar-mobile .getstarted {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url('../img/main-bg.jpg') top center no-repeat;
  background-size: cover;
}

#hero .main-bg {
  padding-top: 10px;
  width: 100%;
  max-width: 1600px;
  margin: auto;
}


#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.char-render {
  background: url('../img/char-render.png') center no-repeat;
  height: 892px;
}

.center-intro {
  padding-top: 25vh;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
  .char-render {
    background: none;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-family: 'Futura-Book';
  font-weight: bold;
  font-size: 41pt;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--themeColor);
}

.section-title p {
  margin-bottom: 0;
}


/* --------------------------------
 News & Updates Section
-------------------------------- */

.scroll-arrow {
  width: 100px;
  height: 0px;
  margin: auto;
  text-align: center;
  position: relative;
  top: -115px;
  -webkit-animation: scroll-down 1.5s infinite;
  animation: scroll-down 1.5s infinite;
}

@-webkit-keyframes scroll-down {
  0% {
      -webkit-transform: translate(0, 0);
      opacity: 0;
  }

  50% {
      opacity: 1;
  }

  100% {
      -webkit-transform: translate(0, 30px);
      opacity: 0;
  }
}

@keyframes scrolldown {
  0% {
      transform: rotate(-45deg) translate(0, 0);
      opacity: 0;
  }

  50% {
      opacity: 1;
  }

  100% {
      transform: rotate(-45deg) translate(-20px, 20px);
      opacity: 0;
  }
}


.newsupdates {
  background: url('../img/bg-0.jpg') no-repeat;
  background-size: cover;
}


.news-carousel {
  background: url('../img/news-carousel/news-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 654px;
  max-height: 392px;
  padding: 10px 7px 10px 10px;
}

.news-carousel .owl-carousel .owl-item {
	transform: scale(1);
  border: 5px solid white;
}

.news-list th {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19pt;
  font-weight: 100;
  color: #a6a5a5;
  border-bottom: 3px solid #a6a5a5; 
}

.news-list td, .news-list td a {
  color: #a6a5a5; 
  font-family: Arial, Helvetica, sans-serif; 
  font-size: 12pt;
  line-height: 26pt;
}


.news-list td a:hover {
  color: #000;
  transition: all 0.6s;
  margin-left: 5px;
}

/* ============ */
/* ============ */
/* ============ */


.owl-carousel .owl-nav{
    overflow: hidden;
    height: 0px;
}

.owl-theme .owl-dots .owl-dot.active span, 
.owl-theme .owl-dots .owl-dot:hover span {
	background: #2caae1;
}

.owl-theme .owl-dots {
	margin: 0 auto!important;
}

.owl-carousel .item {
	text-align: center;
}
.owl-carousel .nav-btn{
	height: 25px;
	position: absolute;
	width: 26px;
	cursor: pointer;
	top: 43% !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled{
	pointer-events: none;
	opacity: 0.2;
}

.owl-carousel .prev-slide{
	background: url('../img/nav-icon.png') no-repeat scroll 0 0;
	height: 25px;
	left: -33px;
}
.owl-carousel .next-slide{
	background: url('../img/nav-icon.png') no-repeat scroll -30px 0;
	height: 25px;
	right: -33px;
}
.owl-carousel .prev-slide:hover{
	background-position: 0px -30px;
}
.owl-carousel .next-slide:hover{
	background-position: -30px -30px;
}

.owl-carousel .owl-item{
  transition: .4s ease all;
  transform: scale(0.85);
}


.owl-carousel .center{
  opacity:1;
  transform: scale(1);
  text-align: left !important;
} 


/* --------------------------------
 Game Information Section
-------------------------------- */

.game-info {
  background: url('../img/game-info-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1145px;
  margin: auto;
}

.download-campaign {
  background: url('../img/download-campaign.png');
  background-repeat: no-repeat;
  width: 277px;
  height: 677px;
  margin-top: -95px;
  padding: 270px 0 0 0px;
  color: #705b4a;
  font-size: 11pt;
  text-align: center;
}

.serverinfo {
  background: url('../img/server-info-bg.png');
  background-size: 100%;
  background-repeat: no-repeat;
  max-width: 592px;
  min-height: 408px;
  padding: 30px;
  margin-top: 65px;
}



@media (min-width: 1200px) {
  .game-info {
    height: 725px;
  }
}

@media (max-width: 991px) {
  .game-info {
    background: url('../img/game-info-mob-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 1190px;
  }
  
}

@media (max-width: 768px) {
  .serverinfo {
    background: url('../img/server-info-mob-bg.png');
    background-size: 100%;
    background-repeat: no-repeat;
  }  
}

/* --------------------------------
 Jobs Information Section
-------------------------------- */

.jobsinfo {
  background: #6b6969;
  padding-bottom: 0 !important;
}

.class-emblem {
  width: 120px;
}

.class-emblem img {
  min-width: 120px !important;
}

.classtitle {
  margin-top: 200px;
  height: 617px !important;
}

.classtype {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15pt;
  margin-bottom: 0;
	margin-top: 15px;
}

.classname {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 46pt;
  line-height: 46pt;
}

.classdesc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12pt;
}

.jobs-info {
  margin-top: -100px;
}

.jobs-visual {
  position: absolute;
  z-index: -1;
  margin-left: 150px;
	width: 100%;
}

@media (max-width: 768px) {
  .jobs-visual {
    margin-left: 0px;
    margin-top: 50px;
  }
}

.slider-nav { position: relative; bottom: 0; left: 0; right: 0; z-index: 10; margin-top: -280px; }
		
.thumbs {
	width: 80%;
	display: table;
	table-layout: fixed;
	padding: 0;
	margin: 20px auto;
}

.thumb { width: 5%; display: table-cell; vertical-align: middle; position: relative; cursor: pointer }
.thumb img { width: 100%; height: auto; display: block; filter: grayscale(100); transform: scale(0.8)}
.thumb span { font-family: monospace; font-size: 1.2em; line-height: 1; color: #fff; text-align: center; font-weight: bold; text-decoration: none; display: block; position: absolute; top: 50%; left: 0; right: 0; padding: 1em 0; margin-top: -1.6em; }

.thumb:hover img,
.thumb.active img { filter: grayscale(0) ;  transform: scale(1); transition: all 0.3s ease}


.jobs-carousel .prev-slide{
	background: url('../img/jobs-nav-icon.png') no-repeat scroll 0 0;
	height: 27px;
	left: -33px;
}
.jobs-carousel .next-slide{
	background: url('../img/jobs-nav-icon.png') no-repeat scroll -30px 0;
	height: 27px;
	right: -33px;
}
.jobs-carousel.prev-slide:hover{
	background-position: 0px -31px;
}
.jobs-carousel .next-slide:hover{
	background-position: -30px -31px;
}

.jobs-carousel .nav-btn{
	height: 25px;
	position: absolute;
	width: 26px;
	cursor: pointer;
	top: 640px !important;
}


/* --------------------------------
 Server Features Section
-------------------------------- */

.serverfeatures {
  background: url('../img/bg-1.jpg') no-repeat;
  background-size: cover;
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/* ------------------------
	Footer
--------------------------*/

.footer {
  background: #161616;
  padding: 60px 0;
	border-top: 1px solid #242424;
  color: #aaa9a9;
  font-size: 11pt;
  position: relative;
	top: 2px;
}

.footer .nav-link {
  font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	color: #aaa9a9;
	border-right: 1px solid #817f7f;
	padding: 0 1rem;
	line-height: 9pt;
	margin-bottom: 15px;
}


.footer .nav-link:first-child {
	padding: 0 1rem 0 0;
}

.footer .nav-link:last-child {
	border: 0;
}

@media (max-width: 991.98px){	
	.footer .nav-link:first-child {
		padding: 0 1rem;
	}

	.footer .nav-link {
		border: 0;
	}
	
}


.footer .nav-link:hover {
	color: var(--themeHover)
}

.footer p {
  color: #aaa9a9;
  font-size: 11pt;
}



/* --------------------------------
 Flux Pages Design Styles
-------------------------------- */

#submenu {
	color: var(--themeTextColor);
	background: none;
	font-size: 10pt;
}

#submenu a{ 
	color: var(--themeColor);
}

#submenu a:hover {
	text-decoration: none;
	color: var(--themeTextColor);
}


.admin-menu {
	color: var(--themeTextColor);
	background: none;
	font-size: 10pt;
}

.admin-menu a{
	color: var(--themeColor);
}

.admin-menu a:hover {
	text-decoration: none;
	color: var(--themeTextColor);
}



.admin-menu a:after {
	content: ' / ';
	color: var(--themeTextColor);
	text-decoration: none;
}



.toggler a {
	color: var(--themeColor);
}



.pages .page-num {
	color: var(--themeColor);
}



.pages .current-page {
	color: #cc9808 !important;
	font-weight: bold;
}



.pages .page-prev, .pages .page-next {
	color: var(--themeTextColor);
}

.horizontal-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.horizontal-table > .table-bordered {
    border: 0; 
}


.vertical-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.horizontal-table > .table-bordered {
    border: 0;
}   

.global-container {
	max-width: 1120px;
	font-family: 'Inter-Regular';
	border-radius: 5px;
	margin: 50px auto;
	color: var(--themeTextColor);
	font-size: 9pt;
	background: url('../img/downloads-bg.png') top center no-repeat;
	padding: 50px 15px;
}

.global-container h2,h3 {
	font-size: 25pt;
	text-decoration-color: var(--themeTextColor);
	width: unset;
	/* text-align: center; */
	margin: 20px 0px;
	/* border-bottom: 2px solid var(--themeTextColor); */
	padding: 5px 0;
	font-family:'Inter-Bold';
	color: var(--themeTextColor);
	text-transform: none;
}

.global-container p {
	font-family: 'Inter-Medium';
	font-size: 10pt;
}

.customborder-bottom {
	padding-bottom: 15px;
	border-bottom: 2px solid var(--themeTextColor);
}

.fs-medium {
	font-size: 90% !important;
}

.fs-small {
	font-size: 75% !important;
}

.security-code {
	background-color: #b7b7b7;
	height: auto;
	border: #8e8e8e;
}

.reg-label {
	font-family: 'Inter-Bold' !important;
	font-size: 9pt !important;
	color: var(--themeTextColor) !important;
}

.birthdate select {
	background-color: #212529!important;
	color: #fff!important;
	padding: 0.4rem 1rem!important;
	-moz-box-shadow: inset 0 0 7px #141414;
	-webkit-box-shadow: inset 0 0 7px #141414;
	box-shadow: inset 0 0 7px #141414;
}

h3 {
	font-size: 30pt;
}

.global-container a {
	color: var(--themeColor);
}


.global-container:empty {
	display: none;
}



.horizontal-table td {
	padding: 5px 10px;
	background: #fff;
}

	

.horizontal-table th, .horizontal-table td {
	font-size: 9pt;
	border: 1px solid var(--themeTextColor);
}



.horizontal-table th {
	padding: 5px 10px;
	background-color: transparent;
}



.vertical-table td {
	padding: 5px 10px;
	background: #fff;
}

	

.vertical-table th, .vertical-table td {

	font-size: 9pt;
	border: 1px solid var(--themeTextColor);
}


.vertical-table th {
	padding: 5px 10px;
	background-color: transparent;
}


.generic-form {
	border: 1px solid var(--themeColor);
	background: none;
}


.generic-form-table td p {
	color: var(--themeColor);
}

.search-form label, .search-form2 label {
	color: var(--themeColor);
}


.sortable {
	color: #38a6e8;
	text-decoration: underline;
}


.sortable:hover {
	color: #fff;
}


#pagemenu {
	color: var(--themeTextColor);
}


#pagemenu a{
	color: var(--themeColor);
}

.character-stats .stat-name {
	color: var(--themeColor);
}

.character-stats .stat-value {
	color: var(--themeTextColor);
}


.generic-form-table th label , .generic-form-table td div, .horizontal-table td, .horizontal-table th, .vertical-table th, .vertical-table td{
	color: var(--themeTextColor)
}
