@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

body {
  width: 100%;
  background: url(../images/background.png) center top no-repeat;
  background-size:contain;
  background-color: #242334;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #117185;
  line-height: 1;
  min-height: 100vh;
}

a {
  transition: all 0.3s ease;
  color: #65ebe0;
  text-decoration: none;
}

p {
  margin-bottom: 15px;
}

h1,
h2,
h3 {
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
}

h1 {
  font-size: 20px;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

.top-menu {
  width: 100%;
  position: absolute;
  top: 0px;
  background: rgb(13 15 23 / 9%);
  z-index: 10;
}

.flex-n {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-s {
  display: flex;
  justify-content: space-between;
}

.menu {
  height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.menu li {
  margin: 0px 8px;
}

.menu a {
  color: #dafff9;
  font-size: 13px;
  padding: 0px 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  display: block;
  height: 60px;
  line-height: 60px;
  position: relative;
}

.menu a:after {
  content: "";
  transition: 0.3s;
  height: 0px;
  width: 0px;
}

.menu a:hover {
    color: #65ebe0;
    text-shadow: 
        0 0 5px #65ebe0,
        0 0 10px #65ebe0,
        0 0 20px #65ebe0,
        0 0 30px #65ebe0,
        0 0 40px #65ebe0;
    transition: 0.3s ease-in-out;
}

.menu .active a {
  color: #fbf6b6;
  border-bottom: 1px solid #f0d85f;
  bottom: 0px;
}

.language-selector {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
}

.language-selector .f16 .flag {
    position: relative;
    border-radius: 0 !important;
    border: none !important;
    top: 3px;
    right: 5px;
    transform: scale(3.1) !important;
}

.language-selector .lang-flag {
  display: inline-block;
  line-height: 1;
  margin-right: 5px;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.language-current:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: #65ebe0;
}

.language-current .lang-text {
  color: #dafff9;
  font-size: 13px;
  font-weight: 500;
}

.language-current .arrow-down {
  color: #65ebe0;
  font-size: 10px;
  margin-left: 5px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(101, 235, 224, 0.3);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.language-selector:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 6px 15px;
    color: #dafff9;
    font-size: 13px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-option .lang-flag {
  min-width: 30px;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #65ebe0;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.header {
  height: 615px;
  position: relative;
}

.content-cont {
  min-height: 1300px;
  display: flex;
  position: relative;
}
@media (min-width: 2560px) {
  .content-cont {
    margin-top: 190px;
  }
}
.sidebar {
  width: 285px;
  margin-left:15px;
}

.side-left {
  width: 285px;
  margin-top: -20px;
  margin-right:15px;
}

.down-btn a {
    display: flex;
    background: url(../images/down-btn.png) center;
    height: 142px;
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

.down-btn a:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.down-btn a span {
    display: block;
    margin: 0px 35px;
    padding: 7px 0px;
}

.dwn-btn {
    font-family: "Open Sans", sans-serif;
    background: url(../images/button.png) center no-repeat;
    height: 41px;
    color: #fff;
    font-size: 13.85px;
    font-weight: bold;
    margin: 80px 0px;

}
.webs-btn a {
  background: url(../images/webs-btn.png) center;
  height: 90px;
  font-size: 20px;
  color: #fff;
}

.webs-btn a:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.webs-btn a span {
  margin-left: -50px;
}

.market-btn a {
  background: url(../images/market-btn.png) center;
  height: 90px;
  font-size: 20px;
  color: #fff;
}

.market-btn a:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.market-btn a span {
  padding-left: 80px;
}

.forum-btn a {
  background: url(../images/forum-btn.png) center;
  height: 90px;
  font-size: 20px;
  color: #fff;
}

.forum-btn a:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}

.forum-btn a span {
  padding-left: 80px;
}

.contr {
    padding: 5px;
    padding-bottom: 40px;
    padding-top: 31px;
    color: #aba852;
}

.contr-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #ffde00;
  font-size: 14px;
  margin-bottom: 28px;
  position: relative;
  text-shadow: 1px 3px 3px rgba(25, 23, 23, 0.85);
  padding-left:15px;
  padding-right:15px;
}

.contr-title a:hover {
  text-decoration: underline;
}

.contr-title span {
  display: block;
  margin-top: 9px;
}

.contr-img1:after {
  content: "";
  background: url(../images/c-title-img1.png) center right no-repeat;
  width: 117px;
  height: 69px;
  position: absolute;
  right: -2px;
  top: -26px;
}

.contr-img2:after {
  content: "";
  background: url(../images/c-title-img2.png) center right no-repeat;
  width: 117px;
  height: 69px;
  position: absolute;
  right: -2px;
  top: -26px;
}

.contr-img3:after {
  content: "";
  background: url(../images/c-title-img3.png) center right no-repeat;
  width: 117px;
  height: 69px;
  position: absolute;
  right: -2px;
  top: -26px;
}

.contr-img4:after {
  content: "";
  background: url(../images/c-title-img4.png) center right no-repeat;
  width: 117px;
  height: 69px;
  position: absolute;
  right: -2px;
  top: -26px;
}

.contr-img5:after {
  content: "";
  background: url(../images/c-title-img5.png) center right no-repeat;
  width: 117px;
  height: 69px;
  position: absolute;
  right: -2px;
  top: -26px;
}

.contr-img6:after {
  content: "";
  background: url(../images/c-title-img6.png) center right no-repeat;
  width: 117px;
  height: 69px;
  position: absolute;
  right: -2px;
  top: -26px;
}

.contr-img7:after {
  content: "";
  background: url(../images/c-title-img7.png) center right no-repeat;
  width: 117px;
  height: 69px;
  position: absolute;
  right: -2px;
  top: -26px;
}

.contr-img8:after {
  content: "";
  background: url(../images/c-title-img8.png) center right no-repeat;
  width: 117px;
  height: 69px;
  position: absolute;
  right: -2px;
  top: -26px;
}

.contr-title:after {
  content: "";
  width: 117px;
  height: 69px;
  position: absolute;
  right: -2px;
  top: -26px;
}

.contr-title span,
.contr-title a {
  text-transform: none;
  font-size: 12px;
  color: #b4a814;
  font-weight: 400;
}

.login-bg {
  background: url(../images/login-top.png) center top no-repeat, url(../images/login-bottom.png) center bottom no-repeat, url(../images/login-middle.png) center repeat-y;
  background-repeat: no-repeat;
}

.include-bg {
  background-image: 
    url(../images/include-top.png),
    url(../images/include-middle.png),
    url(../images/include-bottom.png);
  background-position: 
    top center,
    center center,
    bottom center;
  background-repeat: 
    no-repeat,
    repeat-y,
    no-repeat;
}

.top {
  height: 70px;
  background: url('../images/include-top.png') center top no-repeat;
}

.middle {
  background: url('../images/include-middle.png') center top repeat-y;
  padding: 10px 20px;
}

.bottom {
  height: 60px;
  background: url('../images/include-bottom.png') center bottom no-repeat;
}

.side-title {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 3px 3px rgba(25, 23, 23, 0.85);
    padding: 37px 30px;
}

.content { 
  width: 630px;
  line-height: 1.3;
  background: transparent;
  position: relative;
}

.content a {
  text-decoration: underline;
}

.content-page {
  min-height: 50px;
  padding: 20px;
  background: #01131a;
}

.content-title{
  background: url(../images/content-title-bg.png) center no-repeat;
  height: 45px;
  background-position: 100% 100%;
  background-color: #01131a;
}

.content-title a{
  color: #fff;
  font-size: 12px;
}

h3.name {
    padding: 15px 30px;
}

.content-title h1,
.content-title h2,
.content-title h3 {
  font-family: "Open Sans", sans-serif;
  font-weight:bold;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.footer {
    background: #06131d;
    font-family: "Open Sans", sans-serif;
    height: 55px;
    border-top: 2px solid #2d5961;
    margin-top: 40px;
    font-size: 13px;
    color: #dafff9;
}

.footer .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    margin-top: 10px;
}

.footer-left {
    flex: 1;
}

.footer-center {
    flex: 0;
    text-align: center;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right nav a {
    color: #dafff9;
    margin-left: 20px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-right nav a:hover {
    color: #65ebe0;
    text-shadow: 0 0 5px #65ebe0, 0 0 10px #65ebe0, 0 0 15px #65ebe0;
}

#l-over {
  position: fixed;
  z-index: 9998;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  background: #000;
  display: none;
}

.login-inp {
  background: transparent;
  position: relative;
  margin-bottom: 15px;
}

.login-inp::before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(101, 235, 224, 0.6);
  font-size: 16px;
  z-index: 2;
}

.pass-inp {
  background: transparent;
  position: relative;
  margin-bottom: 15px;
}

.pass-inp::before {
  content: "\f023";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(101, 235, 224, 0.6);
  font-size: 16px;
  z-index: 2;
}

.switch-inp {
  background: transparent;
  position: relative;
  margin-bottom: 15px;
}

.switch-inp::before {
  content: "\f233";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(101, 235, 224, 0.6);
  font-size: 16px;
  z-index: 2;
}

.log-input {
  width: 100%;
  height: auto;
  border: none;
  padding: 0;
  position: relative;
  margin-bottom: 15px;
}

.log-input input,
.log-input select {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(101, 235, 224, 0.3);
  border-radius: 0;
  padding: 12px 15px 12px 45px;
  width: 100%;
  color: #dafff9;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.log-input input:focus,
.log-input select:focus {
  outline: none;
  border-color: #65ebe0;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 10px rgba(101, 235, 224, 0.2);
}

.log-input input::placeholder {
  color: rgba(218, 255, 249, 0.5);
  font-size: 13px;
}

.log-input select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2365ebe0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.buttons {
  margin-top: -10px;
}

.login-b p {
  margin-bottom: -10px;
}

.login-b a:hover {
  text-decoration: underline;
}

.login-b .lost a {
  color: #fff;
  font-size: 12px;
  line-height: 18px;
}

.button {
  transition: all 0.3s ease;
  cursor: pointer;
  background: url(../images/button.png) center no-repeat;
  background-size: 100% 100%;
  border: none;
  color: #fff;
  font-size: 11px;
  position: relative;
  z-index: 1;
  padding: 12px 28px;
  text-transform: uppercase;
  text-decoration: none !important;
}

.button:hover {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
}

.nav-menu {
  padding-left:20px;
  padding-right:20px;
  width: 230px;
}

.main-m, .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-m a {
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.7s ease-in;
  color: #a5b23d;
  font-size: 13px;
  padding: 0px 26px;
  display: block;
  height: 25px;
  line-height: 25px;
  position: relative;
}

.main-m a:after {
  content: "";
  transition: 0.3s;
  height: 0px;
  width: 0px;
}

.main-m a:hover {
  color: #fbf6b6;
  text-decoration: none;
}

.main-m a:hover:after {
  content: "";
  height: 1px;
  width: 100%;
  bottom: -1px;
  left: 0px;
  position: absolute;
  background: #f0d85f;
}

.icon-img {
  position:absolute;
  margin-top:5px;
  width:15px;
  height:15px;
}

.status-block {
    position: relative;
    background: url(../images/status-bge.png) no-repeat;
    height: 76px;
    padding-left: 70px;
    color: #230707;
}
.status-block::after {
	content: "";
	position: absolute;
	background: url(../images/e1.png) no-repeat;
	width: 83px;
	height: 97px;
	left: 10px;
	top: 4px;
}

.status-block2 {
    position: relative;
    background: url(../images/status-bge.png) no-repeat;
    height: 76px;
    padding-left: 70px;
    color: #230707;
}
.status-block2::after {
	content: "";
	position: absolute;
	background: url(../images/e2.png) no-repeat;
	width: 83px;
	height: 97px;
	left: 10px;
	top: 4px;
}

.status-block3 {
    position: relative;
    background: url(../images/status-bge.png) no-repeat;
    height: 76px;
    padding-left: 70px;
    color: #230707;
}
.status-block3::after {
	content: "";
	position: absolute;
	background: url(../images/e3.png) no-repeat;
	width: 83px;
	height: 97px;
	left: 10px;
	top: 4px;
}

.status-block4 {
    position: relative;
    background: url(../images/status-bge.png) no-repeat;
    height: 76px;
    padding-left: 70px;
    color: #230707;
}
.status-block4::after {
	content: "";
	position: absolute;
	background: url(../images/e4.png) no-repeat;
	width: 83px;
	height: 97px;
	left: 10px;
	top: 4px;
}
.flex-c-c {
	display: flex;
	justify-content: center;
	align-items: center;
}
.server {
	width: 160px;
	font-size: 12px;
}
.server-name {
	color: #65ebe0;
}
.status-Offline {
	color: #d0b7b7;
	float: right;
}
.status-Online {
	color: #b7c8d0;
	float: right;
}
.progbarC {
	background-color:#29c669;
}

#NMWslideshowEmpt img {
    object-fit: cover;
}

@-webkit-keyframes spreadSmog {
    0% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0
    }
    45% {
        transform: scale(0.75);
        -webkit-transform: scale(0.75);
        opacity: 1
    }
    90% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0
    }
}

#nmw-news_wrapper .nmw-info h2 {
  font-family: "Open Sans", sans-serif !important;
	font-size: 14.17pt !important;
	color: #a1e6cb !important;
	padding: 10px 5px 10px 5px !important;
	margin: 0 !important;
	background: none !important;
	text-shadow: none !important;
  font-weight: 500 !important;
  text-transform: none !important;
}

#nmw-news_wrapper {
	background: transparent !important;
	border-radius: 0 !important;
}

#nmw-news_wrapper #nmw-body {
	color: #cfcbc0 !important;
	font-size: 13px !important;
	line-height: 1.6 !important;
  float: left !important;
  width: 100% !important;
}

#nmw-news_wrapper #nmw-body p {
	text-align: justify !important;
	padding: 0 15px !important;
}

@keyframes spreadSmog {
    0% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0
    }
    45% {
        transform: scale(0.75);
        -webkit-transform: scale(0.75);
        opacity: 1
    }
    90% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0
    }
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}