/**
* Theme: Project Alfheim
* Developer: https://gantzromisc.ml
* ROMISC Gantz Services
*/

@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: #141e71;
  --themeColor: #151f80;
  --themeHover: #242e95;
  --themeSecondaryColor: #786811;
  --themeSecondaryHover: #635611;
}

.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);
  }
}

.server-info,
.ranking-card,
.streamer-program,
.paper {
  background: #fff;
  box-shadow:
    /* The top layer shadow */ 0 1px 1px rgba(0, 0, 0, 0.15),
    /* The second layer */ 0 10px 0 -5px #eee,
    /* The second layer shadow */ 0 10px 1px -4px rgba(0, 0, 0, 0.15),
    /* The third layer */ 0 20px 0 -10px #eee,
    /* The third layer shadow */ 0 20px 1px -9px rgba(0, 0, 0, 0.15);
  /* Padding for demo purposes */
  padding: 30px;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

.article-type {
  color: #fff !important;
  text-transform: capitalize;
  text-align: center;
  float: right;
  font-family: "Inter-Bold";
  font-size: 8pt;
  padding: 0.3em 1em;
  border-radius: 5px;
}

.article-type.content {
  background-color: rgb(132, 231, 132);
}

/*--------------------------------------------------------------
# Modified Buttons
--------------------------------------------------------------*/
.actions-container {
  transition: all;
  position: absolute;

  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 10%;
}

@media (max-width: 991px) {
  .actions-container {
    bottom: 20%;
  }
}

.btn-action {
  display: flex;
  justify-content: center;
  padding: 20px;
  border-radius: 30px;
  font-weight: 700;
  min-width: 200px;
  transition: all;
}

.btn-action-discord {
  background: #7289da;
  color: #fff;
}

.btn-action-discord:hover {
  background: #596cb3;
  color: #fff;
}

.btn-action-primary {
  background: var(--themeColor);
  color: #fff;
}

.btn-action-primary:hover {
  color: #ddd;
  background-color: var(--themeHover);
}

.btn-action-secondary {
  color: #fff;
  background: var(--themeSecondaryColor);
}

.btn-action-secondary:hover {
  color: #ddd;
  background: var(--themeSecondaryHover);
}

/*--------------------------------------------------------------
# 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: var(--themeHover);
  color: #ddd;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Server Status
--------------------------------------------------------------*/

.server-status {
  font-family: "Lucida Sans Console", sans-serif;
  font-size: 14px;
  color: #bababa;
}

@media (max-width: 576px) {
  .server-time {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.3s;
  z-index: 997;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.3);
  top: 34px;
}

#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);
  }
}

.sakura {
  background: -webkit-linear-gradient(
    120deg,
    rgba(255, 183, 197, 0.9),
    rgba(255, 197, 208, 0.9)
  );
  background: linear-gradient(
    120deg,
    rgba(255, 183, 197, 0.9),
    rgba(255, 197, 208, 0.9)
  );
  pointer-events: none;
  position: absolute;
}

.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);
  }
}

/*--------------------------------------------------------------
# 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 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  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: var(--themeColor);
}

.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: #0c3c53;
}

.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;
  }
  .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 {
  color: var(--themeHover);
}

.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: 80vh;
  background-size: cover;
}

#hero .container {
  padding-top: 72px;
}

#hero.hero-0 {
  background: url("../assets/img/main-bg-0.png") top center no-repeat;
}
#hero.hero-1 {
  background: url("../assets/img/main-bg-1.png") top center no-repeat;
}
#hero.hero-2 {
  background: url("../assets/img/main-bg-2.png") top center no-repeat;
}
#hero.hero-3 {
  background: url("../assets/img/main-bg-3.png") top center no-repeat;
}
#hero.hero-4 {
  background: url("../assets/img/main-bg-4.png") top center no-repeat;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: var(--themeColor);
}

#hero .btn-get-started:hover {
  background: var(--themeHover);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@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%;
  }

  .actions-container {
    bottom: 20%;
  }
}

@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%;
  }
}

@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: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--themeColor);
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--themeHover);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/* --------------------------------
 News & Updates Section
-------------------------------- */
.newsupdates {
  background: url("../img/bg-0.jpg") no-repeat;
  background-size: cover;
}

.newsupdates .nav-link {
  font-family: "Inter-SemiBold";
  font-size: 8pt;
  color: var(--themeTextColor);
  border-right: 1px solid var(--themeTextColor);
  padding: 0rem 0.5rem;
  border-radius: 0;
  line-height: 7pt;
}

.newsupdates .nav-link.active {
  background: none;
  color: var(--themeColor);
  border: 0;
  border-right: 1px solid var(--themeTextColor);
}

.newsupdates .nav-link:hover {
  background: none;
  color: var(--themeColor);
  border-right: 1px solid var(--themeTextColor);
}

.newsupdates .nav-link:last-of-type {
  border: 0;
}

.nav-tabs {
  border: 0;
}

.news-article {
  float: left;
  background: #e2e2e2;
}

.news-contain {
  padding: 20px;
}

.news-article .thumbnail-container {
  max-height: 350px;
  overflow-y: hidden;
  border-bottom: 2px solid var(--themeColor);
}

.news-article .article-thumbnail {
  border-bottom: 2px solid var(--themeColor);
}

.news-contain .date {
  font-family: "Inter-Regular";
  font-size: 8pt;
  color: var(--themeTextColor);
}

.news-contain .article-type {
  color: #fff !important;
  text-transform: capitalize;
  text-align: center;
  float: right;
  font-family: "Inter-Bold";
  font-size: 8pt;
  padding: 0.3em 1em;
  border-radius: 5px;
}

.news-contain .update {
  background-color: #4cb6a3;
}

.news-contain .news {
  background-color: #d66a44;
}

.news-contain .event {
  background-color: #b52639;
}

.news-contain .read-more {
  color: var(--themeColor) !important;
  text-transform: capitalize;
  text-decoration: underline;
  text-align: right;
  float: right;
  font-family: "Inter-Bold";
  font-size: 8pt;
}

.news-contain .author {
  font-family: "Inter-Bold";
  font-size: 9pt;
}

.news-contain .title {
  font-family: "Inter-Bold";
  color: var(--themeTextColor);
  font-size: 11pt;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

.news-contain .title:hover {
  color: var(--themeColor);
}

.news-contain p {
  color: var(--themeTextColor);
  font-family: "Inter-Regular";
  font-size: 8pt;
  max-height: 75px;
  overflow: hidden;
}

.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: 0.4s ease all;
  transform: scale(0.9);
}

.owl-carousel .center {
  opacity: 1;
  transform: scale(1);
  text-align: left !important;
}

/* --------------------------------
 Login Panel
-------------------------------- */

.loginpanel {
  margin-top: -10px;
  height: 470px;
}

.login-panel {
  background: rgba(6, 22, 46, 0.7);
  font-family: "Inter-Regular" !important;
  max-width: 320px;
  min-height: 310px;
  padding: 50px 20px;
  border-radius: 5px;
}

.users-area-logo {
  margin-top: -120px;
  margin-left: -20px;
  min-width: 320px;
}

.users-heading {
  font-family: "Raleway-Bold";
}

.login-panel .textClass {
  text-align: center;
  color: #fff;
  height: 50px;
  background: rgb(100 100 100 / 50%);
  border: 0;
  margin-bottom: 10px;
  width: 100%;
}

.login-panel .textClass::placeholder {
  color: #fff;
}

.login_row {
  max-width: 315px;
}

.login_row table {
  width: 100%;
  font-size: 9pt;
}

.loginBtn {
  background: var(--themeColor);
  border-radius: 25px;
  width: 100%;
  height: 45px;
  border: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12pt;
  color: #fff;
  cursor: pointer;
}

.loginBtn:hover {
  background: var(--themeHover);
}

.accountAction {
  font-size: 9pt;
  color: #fff;
  text-align: center;
  width: 100%;
}

.accountAction a {
  color: var(--themeColor);
}

.accountAction a:hover {
  color: var(--themeHover);
}

/* --------------------------------
 Custom Changes Section
-------------------------------- */

.server-info {
  background: #eeeeee;
}

/* --------------------------------
 Custom Changes Section
-------------------------------- */
.customchanges {
  background: url("../img/bg-2.jpg");
  background-size: cover;
}

.customchanges span,
.customchanges p.desc {
  font-family: "Lucida Grande", "Lucida Sans", Verdana, Tahoma, sans-serif;
  font-size: 9pt;
  line-height: 15pt;
}

/*--------------------------------------------------------------
# Cta Server Stats Desc
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.7), var(--themeHover)),
    url("../assets/img/parallax-bg.jpg") fixed center center;
  background-size: cover;
  padding: 50px 0;
}

.cta h3 {
  font-family: sans-serif;
  color: #fff;
  font-size: 40pt;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: var(--themeHover);
  border: 2px solid var(--themeHover);
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.collapsible {
  font-family: "Gotham";
  font-weight: bold;
  font-size: 12pt;
  color: #64c2ce;
}

.collapsible:hover {
  cursor: pointer;
  color: var(--themeColor);
}

.about-title {
  font-family: "GothamCondensedMedium";
  font-size: 40pt;
}

.statistics-title {
  font-family: "TitilliumWebReg";
  font-size: 25pt;
  font-weight: 100;
}

.num-stats {
  font-family: "GothamCondensedMedium";
  font-size: 40pt;
  font-weight: 500;
  color: white;
}

.text-data {
  font-family: "Open Sans", sans-serif;
  font-size: 11pt;
  color: white;
}

.new-characters,
.sign-ups {
  width: 50%;
  display: flex;
}

.icon-chars,
.icon-signups {
  margin-right: 30px;
  filter: brightness(10);
}

#server_rankings {
  background: url("../assets/img/bg-ranking.jpg") fixed center center;
  background-size: cover;
}

.bg-city {
  background: url("../assets/img/bg-city.png") fixed center center;
  background-size: cover;
}

#streamer_info,
#program,
#features {
  background: url("../assets/img/bg-streamer.jpg") fixed center center;
  background-size: cover;
}

/*--------------------------------------------------------------
# Portfolio Gallery Media
--------------------------------------------------------------*/
#portfolio {
  background: url("../img/bg-1.jpg");
  background-size: cover;
}

.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: var(--themeHover);
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# 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: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url(../img/footer-bg.png) top center;
  background-size: cover;
  padding: 60px 0;
  border-top: 1px solid #242424;
}

.footer .nav-link {
  font-size: 11pt;
  color: #e7e7e7;
  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: 767.98px) {
  .footer .nav-link:first-child {
    padding: 0 1rem;
  }

  .footer .nav-link {
    border: 0;
  }
}

.footer .nav-link:hover {
  color: var(--themeHover);
}

.footer p {
  font-size: 9pt;
  color: #898989;
}

.footer p.social-title {
  font-size: 11pt !important;
  color: #a3bfbf !important;
}

.social-links ul {
  list-style: none;
  float: right;
}

.social-links ul li {
  display: inline-block;
  margin: 0 2px;
}

.soc-fb {
  background: url(../img/facebook.png) no-repeat;
  width: 35px;
  height: 35px;
  display: block;
}

.soc-fb:hover {
  background: url(../img/facebook-hover.png) no-repeat;
}

.soc-dis {
  background: url(../img/discord.png) no-repeat;
  width: 35px;
  height: 35px;
  display: block;
}

.soc-dis:hover {
  background: url(../img/discord-hover.png) no-repeat;
}

.soc-twit {
  background: url(../img/twitter.png) no-repeat;
  width: 35px;
  height: 35px;
  display: block;
}

.soc-twit:hover {
  background: url(../img/twitter-hover.png) no-repeat;
}

.soc-ig {
  background: url(../img/insta.png) no-repeat;
  width: 35px;
  height: 35px;
  display: block;
}

.soc-ig:hover {
  background: url(../img/insta-hover.png) no-repeat;
}

/* --------------------------------
 home social-list 
-------------------------------- */

.home-social-list {
  position: fixed;
  right: 10px;
  top: 50%;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 2.2rem;
  line-height: 1.75;
  text-align: center;
  -webkit-transform: translateY(-55%);
  -ms-transform: translateY(-55%);
  transform: translateY(-55%);
}

.home-social-list::before {
  display: block;
  content: "";
  width: 2px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}

.home-social-list li {
  padding-left: 0;
}

.home-social-list li a,
.home-social-list li a:visited {
  color: var(--themeSecondaryColor);
}

.home-social-list li a:hover,
.home-social-list li a:focus,
.home-social-list li a:active {
  color: var(--themeSecondaryHover);
}

/* --------------------------------
 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;
  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);
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  display: block;
  height: 3rem;
  padding: 1.5rem 2rem;
  border: 0;
  outline: none;
  color: var(--themeColor);
  font-family: "muli-regular", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5rem;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

.owl-castle .slider {
  min-height: 180px;
}

.owl-castle .castle-slider {
  min-width: 190px;
}

.owl-castle .castle-slider .castle-flag {
  background: url(../assets/img/bg_flag.png) top center no-repeat;
  width: 64px;
  height: 112px;
  margin: 0 auto;
  position: relative;
}

.castle-slider .castle-flag .emblem {
  height: 24px;
  width: 24px;
  position: absolute;
  left: 20px;
  top: 56px;
}

.owl-castle .slider .slider-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  color: #fff;
  font-weight: bold;
  padding: 1rem;
}

.castle-text-container {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.castle-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popover {
  background: transparent;
  border: none;
}
