/*---------------------------------------------
  Font
---------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

/*---------------------------------------------
  Utility
---------------------------------------------*/

:root {
  --primary-color: #111216;
  --secondary-color: #0c0d11;
  --tertiary-color: #00f1ff;
  --quartary-color: #00f1ff;
  --green-color: #00f1ff;
  --red-color: #00f1ff;
  --orange-color: #00f1ff;
}

* {
  outline: none;
  box-sizing: border-box;
}

*:disabled {
  cursor: not-allowed !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden !important;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: transp;
}

::-webkit-scrollbar-thumb {
  background: var(--orange-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
}

h1 {  
  font-size: 60px;
  line-height: 0.95;
}

h2 {
  font-size: 45px;
  line-height: 1;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 35px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 20px;
}

p {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #ffffff;
}

b {
  color: var(--orange-color);
}

a {
  text-decoration: none;
  color: var(--orange-color);
}

a:hover {
  color: var(--orange-color);
}

a.button {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: linear-gradient(0deg,var(--orange-color),#00f1ff);
  box-shadow: 0 3px 0 0 rgb(0 108 115 / 40%), 0 3px 5px 0px rgb(0 50 54 / 35%);
  border-radius: 8px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .1em;
  padding: 10px 20px 10px 20px;
  margin-top: 10px;
  top: 0;
  border: none;
  outline: none;
  text-shadow: 0 4px 5px rgb(28 31 50 / 20%);
  cursor: pointer;
  transition: 0.3s;
}

a.button:hover {
  top: 2px;
  box-shadow: 1px 0 0 rgb(0 108 115 / 40%), 0 1px 5px 0px rgb(0 50 54 / 35%);
}

button {
  position: relative;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: linear-gradient(0deg,var(--orange-color),#00f1ff);
  box-shadow: 0 3px 0 0 rgb(0 108 115 / 40%), 0 3px 5px 0px rgb(0 50 54 / 35%);
  border-radius: 8px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .1em;
  padding: 10px 20px 10px 20px;
  margin-top: 10px;
  top: 0;
  border: none;
  outline: none;
  text-shadow: 0 4px 5px rgb(49 85 87 / 20%);
  cursor: pointer;
  transition: 0.3s;
}

button:hover, button:focus {
  top: 2px;
  box-shadow: 1px 0 0 rgb(0 108 115 / 40%), 0 1px 5px 0px rgb(0 50 54 / 35%) !important;
}

svg {
  position: relative;
  z-index: 1;
}

.section-main {
  margin-top: 120px !important;
}

.section-title {
  font-size: 16px;
  color: #a8a8a8;
  font-weight: 500;
  margin-bottom: 25px;
}

.section-title strong {
  color: var(--orange-color);
  font-weight: 700;
  font-size: 48px;
  display: block;
}

.section-logo {
  width: 500px;
  height: 350px;
}

.section-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 90%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  max-height: 550px;
}

@media screen and (max-width: 400px) {
  .section-main {
    margin-top: 90px !important;
  }

  .section-title {
    margin-bottom: 15px !important;
  }

  .section-logo {
    width: 300px !important;
    height: auto;
  }  
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  p {
    font-size: 15px;
  }

  .section-main {
    margin-top: 80px !important;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .section-logo {
    width: 400px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .section-title strong {
    font-size: 28px !important;
  }
}

/*---------------------------------------------
  Preloader
---------------------------------------------*/

#preloader-background {
  background: #0a0e19;
  background-image: url('../img/background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

#status {
  padding-left: 10px;
  padding-right: 10px;
}

#status > h1 {
  color: #f0f7fc;
  font-size: 35px;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

#center-image {
  display: block;
  margin: 0 auto;
  width: 200px;
  height: 200px;
}

#preloader {
  background-image: linear-gradient(60deg, #0a0e19 10%, transparent 100%);
  color: #ededed;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}

#center-image {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: spinner;
  animation-name: spinner;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes spinner {
  0%, 10% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  90%, 100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes spinner {
  0%, 10% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  90%, 100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*---------------------------------------------
  Cookies
---------------------------------------------*/

#cookie-popup {
  z-index: 2;
  position: absolute;
  bottom: 20px;
  position: fixed;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 5px;
  width: 350px;
  height: auto;
  background-color: #26292D;
  padding: 10px 15px 10px 15px;
}

#cookie-popup #cookie-header img {
  height: 60px;
  width: 60px;
}

#cookie-popup #cookie-body p, 
#cookie-popup #cookie-body a {
  font-size: 11px;
  margin: 0;
}

#cookie-popup #cookie-body p {
  color: #ffffff;
}

#cookie-popup #btn-cookie {
  display: block;
  width: 100%;
}

#cookie-popup #btn-cookie {
  margin-top: 10px !important;
}

@media screen and (max-width: 400px) {
  #cookie-popup {
    width: auto;
  }
}

/*---------------------------------------------
  Navbar
---------------------------------------------*/

.navbar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  z-index: 2;
  font-weight: bold;
}

.navbar-nav {
  margin: 0 0 0 auto;
}

.navbar-brand {
  width: 150px;
}

.nav-item {
  padding: 0px 10px
}

.navbar a {
  color: #ffffff !important;
  padding: 5px 20px !important;
  margin-top: 2px;
  transition: 0.3s;
  border-radius: 30px;
  background-color: var(--secondary-color);
}

.navbar a:hover, .active a {
  background-color: var(--orange-color);
  border-radius: 30px;
  color: #000000 !important;
}

.navbar-bg-color {
  background-color: var(--secondary-color);
  box-shadow: 0px 0px 10px 0px #18191c;
}

@media screen and (max-width: 991px) {
  .navbar {
    background-color: var(--secondary-color);
    box-shadow: 0px 0px 10px 0px #18191c;
    height: unset;
  }
}

/*---------------------------------------------
  Subpage Header
---------------------------------------------*/

.subpage-header .section-title {
  font-size: 48px;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 25px;
}

.subpage-header p {
  text-align: justify;
}

.subpage-header .section-logo {
  width: auto;
  height: 330px;
}

@media screen and (max-width: 1200px){
  .subpage-header {
    margin-top: 15vh;
  }

  .subpage-header .section-logo {
    display: none;
  }
}

/*---------------------------------------------
  Vote
---------------------------------------------*/

#vote {
  padding: 50px 40px;
  background-color: #0c0d11;
  border-radius: 5px;
  border-width: 1px;
  border-color: #181D28;
  margin: 35px 0;
}

#vote .section-title {
  font-size: 16px;
  color: #a8a8a8;
  font-weight: 500;
  margin: 0 0 45px 0 !important;
}

#vote .section-title strong {
  color: var(--orange-color);
  font-weight: 700;
  font-size: 48px;
  margin-top: 10px;
  display: block;
}

#vote .two-column-grid {
  display: grid;
  grid-template-columns: 30% auto;
  grid-gap: 15px;
}

#vote .card {
  position: relative;
  display: block;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #312f33;
  -webkit-box-shadow: rgb(0 0 0 / 8%) 0 3px 10px;
  -moz-box-shadow: rgba(0,0,0,0.08) 0 3px 10px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 8%);
  margin-bottom: 4px;
  padding: 18px;
}

#vote .card .alert {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: rgb(0 0 0 / 8%) 0 3px 10px;
  -moz-box-shadow: rgba(0,0,0,0.08) 0 3px 10px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 8%);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin: 0;
  padding: 14px 14px 12px;
  background: #00f1ff;
  color: #fff;
}

#vote .card .alert .icon {
  padding-right: 11px;
}

#vote .card .alert .icon svg {
  display: block;
  width: 22px;
  margin: 0 4px 0 3px;
  fill: #fff;
}

#vote .card .alert .text {
  font-weight: 700;
  font-size: 13px;
  line-height: 17px;
}

#vote .card .card-body {
  padding: 20px 15px 0;
  font-weight: 600;
  font-size: 13px;
  color: #767e82;
}

#vote .card .card-body p {
  margin: 0;
  padding-bottom: 10px;
  font-size: 13px;
  font-weight: normal;
}

#vote .card.menu-card {
  position: relative;
}

#vote .card.menu-card ul {
  margin: 0 -3px;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -moz-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#vote .card.menu-card ul button {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  cursor: pointer;
  border: none;
  display: block;
  text-decoration: none;
  text-align: left;
  margin: 0 0 10px;
  background: #00f1ff;
  box-shadow: 0 3px 0 0 rgb(0 108 115 / 40%), 0 3px 5px 0px rgb(0 50 54 / 35%);
  font-size: 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 12px 17px;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  -webkit-transition: all .14s ease-in-out;
  -o-transition: .14s all ease-in-out;
  -moz-transition: .14s all ease-in-out;
  transition: all .14s ease-in-out;
  position: relative;
}

#vote .card.menu-card ul button.active, #vote .card.menu-card ul button:hover {
  background: #ec5163;
  box-shadow: 0 3px 0 0 rgb(236 81 99 / 40%), 0 3px 5px 0px rgb(0 50 54 / 35%);
}

#vote .card.menu-card ul button:before {
  content: "";
  display: block;
  border: 0 solid transparent;
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto 0;
  width: 0;
  height: 0;
  -webkit-transition: all .14s ease-in-out;
  -o-transition: .14s all ease-in-out;
  -moz-transition: .14s all ease-in-out;
  transition: all .14s ease-in-out;
}

#vote .card.menu-card ul button.active:before {
  -webkit-transform: translateY(7px);
  -moz-transform: translateY(7px);
  -ms-transform: translateY(7px);
  -o-transform: translateY(7px);
  transform: translateY(7px);
  bottom: 22px;
  right: -8px;
  border-width: 8px;
  border-right: 0;
  border-top-color: transparent;
  border-left-color: #ec5163;
  border-bottom: 6px solid transparent;
}

#vote .card.menu-card ul button:not(.active):hover {
  background: #ffaf72;
}

#vote .card.menu-card ul button a {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  text-align: center;
  display: inline-block;
  width: 43px;
  height: 43px;
  line-height: 43px;
  -webkit-transition: .1s;
  -o-transition: .1s;
  -moz-transition: .1s;
  transition: .1s;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

#vote .card.menu-card ul button a:focus, #vote .card.menu-card ul button a:hover {
  background: rgba(0,0,0,0.15);
}

#vote .iframe .iframe-house.loaded {
  background: transparent;
}

#vote .iframe .iframe-house {
  width: 100%;
  height: 505px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

#vote .iframe .iframe-house.loaded svg {
  opacity: 0;
  visibility: hidden;
}

#vote .iframe iframe, #vote .iframe svg {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: .15s;
  -o-transition: .15s;
  -moz-transition: .15s;
  transition: .15s;
}

#vote .iframe svg {
  bottom: 0;
  right: 0;
  margin: auto;
  width: 120px;
  height: 120px;
}

#vote .iframe iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 991px) {
  #vote .two-column-grid {
    display: block;
  }
}

/*---------------------------------------------
  Footer
---------------------------------------------*/

footer {
  width: 100%;
  font-size: 14px;
  color: #ffffff;
  position: relative;
  font-family: 'Poppins',sans-serif;
  background-color: #0c0d11;
  padding-top: 120px;
  padding-bottom: 40px;
  margin-top: -100px;
}

footer h3 {
  color: #ffffff;
  font-size: 18px;
  margin: 0 0 15px;
  line-height: 19.5px;
}

footer > .footercontainer {
  max-width: 1300px;
  margin: 0 auto;
}

footer > .footercontainer > div {
  width: calc(100% / 3 - 104px);
  margin: 0px 50px;
  display: inline-block;
  vertical-align: top;
}

footer .aboutusfooter > span,
footer .storefooter > span {
  font-size: 13px;
  color: #ffffff;
  display: block;
  line-height: 19.5px;
}

footer .centeredsocial {
  text-align: center;
}

footer .centeredsocial > span.copyright {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.5em;
}

footer .centeredsocial > img {
  display: block;
  max-width: 50%;
  margin: 0 auto;
}

footer .centeredsocial > .socials {
  margin-top: 13px;
  height: 30px;
}

footer .centeredsocial > .socials > a {
  color: #ffffff;
  text-decoration: none;
  margin: 0px 2px;
  border-radius: 3px;
}

footer .centeredsocial > .socials > a.teamspeak {
  background: #4267b2;
  padding: 8px 10px;
}

footer .centeredsocial > .socials > a.discord {
  background: #1da1f3;
  padding: 8px 10px;
}

footer .centeredsocial > .socials > a.youtube {
  background: #a82400;
  padding: 8px;
}

footer .storefooter > a {
  display: inline-block;
}

@media screen and (max-width: 1000px) {
  footer {
    padding-bottom: 0;
  }

  footer > .footercontainer {
    max-width: 100%;
    padding: 20px;
  }

  footer > .footercontainer > div {
    display: block;
    width: 100%;
    margin: 25px 0px;
    text-align: center;
  }

  footer .centeredsocial > img {
    max-width: 250px;
    margin: 0 auto;
  }
}