/* font-famaly-hear */
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@font-face {
  font-family: 'Friz Quadrata TT';
  src: url('../fonts/FrizQuadrataTT.woff2') format('woff2'),
      url('../fonts/FrizQuadrataTT.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'trajan_probold';
  src: url('../fonts/trajan_pro_bold-webfont.woff2') format('woff2'),
       url('../fonts/trajan_pro_bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

/* font-famaly-hear-end */

/* root */
:root {
  --opensans: "Open Sans", sans-serif;
  --elmessiri: "El Messiri", sans-serif;
  --philosopher: "Philosopher", sans-serif;
  --nunito: "Nunito Sans", serif;
  --friz: "Friz Quadrata TT", serif;
  --trajan: "trajan_probold", serif;

  --white-color: #fff;
  --black-color: #000;

  --primary: #000;
  --secondary: #000;

  --hover-colo: #000;

  --body-color: #000;
  --heading-color: white;
}
/* root */

/* defaults-css-start */
html {
  font-size: 100%;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  line-height: normal;
  font-family: var(--elmessiri);
  font-size: 15px;
  font-weight: 400;
  background-color: #281700;
}
a,
button {
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
}

a:focus,
button:focus,
.btn:focus {
  outline: none;
}
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-2);
  color: var(--heading-color);
  margin-top: 0px;
  font-style: normal;
  font-weight: 700;
  text-transform: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
li {
  list-style: none;
}
p {
  font-size: 15px;
  font-weight: normal;
  line-height: normal;
  color: var(--body-color);
  margin-bottom: 15px;
}
label {
  color: var(--body-color);
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
}
*::-moz-selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}
::-moz-selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}
::selection {
  background: var(--secondary);
  color: var(--white-color);
  text-shadow: none;
}
*::-moz-placeholder {
  color: var(--body-color);
  font-size: 15px;
  opacity: 1;
}
*::placeholder {
  color: var(--body-color);
  font-size: 15px;
  opacity: 1;
}
/* defaults-css--end */

/* theme-css */





/* theme-css-end */

/* ======== header style start ============ */
.header{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 1px solid #deab75;
  z-index: 1;
}
.header-wrapper{}
.header-left{}
.header-logo{
  display: block;
}
.header-logo img{
  max-height: 100px;
}
.header-menu{}
.header-menu ul{
  display: flex;
  align-items: center;
  gap: 80px;
}
.header-menu ul li a{
  color: #fbfbfb;
  display: block;
  text-decoration: none;
  font-size: 15px;
  font-family: var(--philosopher);
  padding-bottom: 5px;
  position: relative;
}
.header-menu ul li a::after{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 1px;
  content: "";
  height: 1px;
  background-color: #deab75;
  opacity: 0;
  visibility: hidden;
}
.header-menu ul li a:hover{
  color: #deab75;
}
.header-menu ul li a.active{
  color: #deab75;
}
.header-menu ul li a.active::after{
  opacity: 1;
  width: 100%;
  visibility: visible;
}
.header-end{}
.header-notic{
  position: absolute;
  top: 100%;
  left: 20%;
  width: 335px;
  height: 45px;
  text-align: center;
  color: #fff;
  background-image: url('../images/header-notice-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: var(--philosopher);
  font-size: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.header-notic a{
  color: #fff;
}

.btn-obj{
  width: 148px;
  height: 60px;
  background-image: url('../images/btn-object.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: var(--philosopher);
  color: #ffffff;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  padding-bottom: 15px;
  z-index: -1;
}
/* ======== header style end ============ */

/* ======== hero style start ============ */

.hero-area{
  min-height: 756px;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-content{
  max-width: 631px;
}
.hero-content a{
  display: inline-block;
}
.hero-content a img{
  max-width: 100%;
}
.hero-texts{
  background-image: url('../images/hero-text-bg.png');
  background-size: cover;
  background-repeat: repeat-y;
  background-position: top center;
  padding: 3px 4px;
}
.hero-texts h4{
  text-shadow: 1px 1.732px 3.64px rgba(0, 0, 0, 0.93),1px 1.732px 3.64px rgba(0, 0, 0, 0.93);
  color: rgb(255, 241, 234);
  font-size: 25px;
  margin-bottom: 0px;
  font-family: var(--philosopher);
}
.hero-texts p{
  font-family: var(--elmessiri);
  text-shadow: 1px 1.732px 3.64px rgba(0, 0, 0, 0.93),1px 1.732px 3.64px rgba(0, 0, 0, 0.93);
  color: rgb(255, 241, 234);
  margin-bottom: 0px;
  font-size: 16px;
}




/* ======== hero style end ============ */

/* ======== server-area style start ============ */

.server-area{
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 18px 0px 18px;
}
.server-block{}
.server-block p{
  color: #fff;
  margin-bottom: 0px;
  font-family: var(--elmessiri);
  font-size: 13px;
}
.server-block h5{
  color: #fff;
  margin-bottom: 6px;
}
.server-block h6{
  font-size: 22px;
  color: #fff;
  margin-bottom: 0px;
}
.server-block h5 small{
  display: block;
  font-size: 14px;
}
.srever-progress{
  width: 250px;
  margin: 0 auto;
  height: 19px;
  background-image: url('../images/progress-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2px;
}
.server-progress-bar {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 50%;
  height: 95%;
  z-index: 1;
  background-image: url('../images/progress-bar-img.png');
  transform: translateY(-50%);
  background-size: cover;
}

/* ======== server-area style end ============ */

/* ======== offer-area style start ============ */
.offer-area{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-top: 1px solid #deab75;
  border-bottom: 1px solid #deab75;
  padding: 25px 0px 25px;
}
.offer-wrapper{
  max-width: 1230px;
}
.offer-item{
  display: flex;
  align-items: center;
  gap: 10px;
}
.offer-item.offer-item-btn{
  gap: 0px;
}
.offer-item.offer-item-btn .img{
  margin-right: -40px;
  position: relative;
  z-index: 1;
}
.offer-item .offer-content h6{
  font-family: var(--elmessiri);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1px;
  font-size: 17px;
}
.offer-item .offer-content p{
  color: #ffd9a2;
  margin-bottom: 0px;
}
.offer-item .offer-content a{
  color: #ffd9a2;
  margin-bottom: 0px;
  text-decoration: none;
}
.btn-filled, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 49px;
  width: 320px;
  border-radius: 10px;
  background-color: #c18a4a;
  background-image: url('../images/btn-filled.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 17px !important;
  text-decoration: none;
  color: #ffffff !important;
  font-family: var(--friz);
  position: relative;
}
.upp {
  text-transform: uppercase;
}
.btn-filled:hover{
  opacity: 0.8;
}
.btn-filled span.icon{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}


/* ======== offer-area style end ============ */


/* ======== blog-area style start ============ */
.blog-area{
  padding: 80px 0px 90px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog-slider{
  padding-bottom: 62px;
}

.blogItem{
  height: 495px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}
.blogItem .blog-frame{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.blogItem .blog-bg{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  object-position: center;
}
.blog-content{
  position: relative;
  z-index: 3;
  padding: 20px 10px 30px;
}
.blog-content h4{
  font-size: 32px;
  line-height: 1.1;
}
.blog-content h4 span{
  color: #fff !important;
  display: block;
  -webkit-text-fill-color: #fff;
  -webkit-background-clip: #fff;
  font-size: 22px;
  font-family: var(--elmessiri);
  font-weight: normal;
  line-height: 1.1;
}
.blog-content{}
.blog-content{}
.blog-content-text{
  margin-bottom: 20px;
  margin-top: 30px;
}
.btn {
  background-color: none;
  border-color: transparent;
}
.log-out {
  opacity: 0.7;
}
.blog-content-text p{
  margin-bottom: 0px;
  font-family: var(--opensans);
  font-weight: bold;
  color: #dedede;
  font-size: 13px;
  display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gd-text{
  background: -webkit-linear-gradient(#ffc46f, #ffe5be);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-scrollbar{
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0px;
}
.blog-scrollbar span.gd-text{
  font-size: 18px;
  display: block;
  font-family: var(--friz);
}
.blog-scrollbar .swiper-scrollbar{
  position: initial;
  background-color: #1b0202;
  height: 7px;
  width: 100%;
  margin-top: 8px;
}
.blog-scrollbar .swiper-scrollbar-drag{
  background-color: rgb(245, 168, 116);
}

/* ======== blog-area style end ============ */


/* ======== best-player style start ============ */

.best-player{
  padding: 57px 0px 160px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.best-player-title{
  text-align: center;
  margin-bottom: 50px;
}
.best-player-title h2{
  margin-bottom: 0px;
}
.best-player-title p{
  color: #fff;
  font-size: 22px;
  margin-bottom: 0px;
}
.best-player-btns{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.best-player-btns button{
  background-color: transparent;
  border: none;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #DADADA;
  font-family: var(--trajan);
  font-size: 14px;
  font-weight: bold;
  position: relative;
  margin-bottom: 50px;
}
.best-player-btns button span.icon{
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best-player-btns button::after{
  position: absolute;
  left: calc(100% + 11px);
  height: 1px;
  width: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD4A1;
  content: "";
}
.best-player-btns button:last-child::after{
  display: none;
}

.player-info{
  max-width: 400px;
}
.player-info--header{}
.player-info--header .flag{
  flex: 0 0 auto;
  width: 54%;
}
.player-info--header .flag img{
  width: 100%;
}
.player-info--header .content{
  flex-grow: 1;
}
.player-info--header .content h2{
  margin-bottom: 0px;
}
.player-info--header .content p{
  font-size: 22px;
  font-weight: normal;
  color: #ffffff;
  font-family: var(--elmessiri);
}
.player-info--body ul li{
  font-size: 28px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--elmessiri);
}
.player-thambnail{
  max-width: 380px;
}
.player-thambnail .img{
  text-align: center;
}
.player-thambnail .img img {
  max-width: 440px;
  /* transform: translateX(-95px); */
  transform: translateX(-25px);
}

.top-players{
  width: 380px;
}
.top-players h4{}
.top-players{}

.top-player-table{
  width: 380px;
  height: 490px;
  position: relative;
  overflow: hidden;
}
.top-player-table .frame-img{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-position: center;
  z-index: 2;
}
.top-player-table .bg-img{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.top-player-content {
  position: relative;
  z-index: 3;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}
.top-player-content ul li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0px;
  font-size: 16px;
  color: #fff;
  font-family: var(--nunito);
}
.top-player-content ul li span.table-start{
  display: flex;
  align-items: center;
  gap: 11px;
}
.top-player-content ul li span.infos{
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-player-content ul li span.img{
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.top-player-content ul li span.img img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #926a53;
}
.top-player-content ul li span.name{
  color: #d2c78b;
}
.top-player-content ul li span.count{
  color: #fff;
  min-width: 23px;
}
.small-flag img {
  height: 26px;
}
.top-player-content ul li span.table-end{
  display: flex;
  align-items: center;
  gap: 10px;
}


/* ======== best-player style end ============ */

/* ======== join-area style start ============ */
.join-area{
  background-size: cover;
  background-position: center;
  background-size: cover;
  padding: 27px 0px;
  border-top: 1px solid #DEAB75;
}
.join-wrapper{
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.join-wrapper h3{
  font-family: var(--friz);
  font-weight: normal;
}
/* ======== join-area style end ============ */

/* ======== footer-menu style start ============ */

.footer-menu{
  padding: 42px 0px;
  background-color: #281700;
  border-bottom: 1px solid #DEAB75;
}
.footer-menu ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-menu ul li a{
  font-family: var(--philosopher);
  color: #eabd9c;
  text-decoration: none;
  display: block;
}
.footer-menu ul li a:hover{
  text-decoration: underline;
  color: #fff;
}

/* ======== footer-menu style end ============ */

/* ======== offcanvas-menu style start ============ */

.menu-bar{
  background-color: transparent;
  border: none;
  padding: 0px;
  color: #deab75;
  font-size: 25px;
}
.offcanvas{
  background: rgba(8, 8, 8, 0.6);
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 11px );
  -webkit-backdrop-filter: blur( 11px );
}
.offcanvas-body{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;

}
.offcanvas-menu{}
.offcanvas-menu ul li a{
  display: block;
  text-decoration: none;
  color: #fff;
  font-family: var(--philosopher);
  font-size: 16px;
  padding: 17px 0px;
  text-align: center;
  border-bottom: 1px solid #ffffff1A;
}
.offcanvas-menu ul li a:hover{
  color: #ffd9a2;
}
.offcanvas-menu ul li a.active{
  color: #ffd9a2;
}

/* ======== offcanvas-menu style end ============ */

/* ======== footer style start ============ */

.footer{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 48px 0px 46px;
}

.footer-widget h4{
  font-size: 18px;
  color: #ffd2a1;
  font-family: var(--philosopher);
}
.footer-widget ul li a{
  display: block;
  color: #ffd2a1;
  font-family: var(--elmessiri);
  padding: 2px 0px;
  text-decoration: none;
  font-weight: 600;
}
.footer-widget ul li a:hover{
  color: #deab75;
}
.footer-widget{}
.footer-widget{}
.footer-social{
  max-width: 164px;
  margin: 0 auto;
}
.footer-social h6{
  color: #ffd2a1;
}
.social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  width: 27px;
  background-color: #ffdaaf;
  color: #3a0707;
  text-decoration: none;
  border-radius: 50%;
  font-size: 12px;
}
.social a:hover{
  background-color: #ffd9a2;
  color: #fff;
}
.social{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* ======== footer style end ============ */
.hero-content a img, .btn-obj, .btn {
  transition: 0.5s;
}
.hero-content a img:hover, .btn-obj:hover, .btn:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}
.points {
  min-width: 85px;
}
#guilds {
  display: none;
}
.no-border {
  border-radius: 0!important;
}
.languagepicker {
    background-color: #2e1b00 ;
    display: inline-block;
    padding: 0;
    height: 40px;
    overflow: hidden;
    transition: all .3s ease;
    margin: 60px 0 0 0;
    vertical-align: top;
    float: left;
    position: fixed;
    right: 0px;
    z-index: 9999;
}
.languagepicker:hover {
    /* don't forget the 1px border */
    height: 81px;
}
.languagepicker a {
    color: #000;
    text-decoration: none;
}
.languagepicker li {
    display: block;
    padding: 0px 10px;
    line-height: 40px;
    border-top: 1px solid #4c0b08;
}
.languagepicker li:hover {
    background-color: #a67337;
}
.languagepicker a:first-child li {
    border: none;
    background: #2e1b00 !important;
}
.roundborders {
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.alert {
	border-radius: 0;
}
.modal-content {
    background-color: #600c0c;
}
.list-group-item-heading {
	color: var(--primary)
}
.modal-header {
    border-bottom: 1px solid #781515;
}
.modal-footer {
    border-top: 1px solid #781515;
}
.table-dark a {
	text-decoration: none;
}
.tab-content label {
	color: white;
}
.list-group-item.active {
    background-color: #850c0c;
    border-color: #850c0c;
}
.list-group-item {
	background-color: #600c0c;
}
.list-group-item:hover, .list-group-item:focus {
	background-color: #600c0c;
	opacity: 0.8;
}

.list-group-item-action,
.list-group-item-action:active,
.list-group-item-action:focus,
.list-group-item-action:hover {
	color: white;
}
.list-group {
	border-radius: 0;
}
.list-group-item {
	border-color: #2f0b0b;
}
.modal-title, .card-header:first-child {
color: white;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: white;
    background-color: #850c0c;
    border-color: #850c0c;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #850c0c;
}
.nav-tabs {
    border-bottom: 1px solid #850c0c;
}
.nav-tabs .nav-link {
	color: white;
}

.card {
    background-color: #541414;
    padding: 15px;
	border-radius: 0;
}
.modal-backdrop {
	z-index: -1;
}
.btn {
	border-radius: 0;
}
.table > tbody > tr > td {
  vertical-align: middle;
}
.table > tbody > tr > th {
  vertical-align: middle;
}

.table>:not(caption)>*>* {
   background-color: #251600;
 border-bottom-width: 0;
}

.table-dark {
 --bs-table-striped-bg: #2a1900;
}

.form-control,
.form-control:focus,
.form-control:active,
.form-select {
	border-radius: 0;
    font-size: 14px;
    color: white;
    background-color: #251600;
    border: 1px solid #a97e44;
    padding: 10px 15px;
}
.control-label {
  color: white;
}
.form-group {
  margin-bottom: 10px;
}
/* ---pagination--- */
.pagination {
	padding: 5px 0 28px;
	display: flex;
	justify-content: center;
}
.pagination ul, .pagination .buttons {
  display: flex;
}
.pagination ul li,
.pagination .buttons a,
.pagination .buttons span {
  margin-right: 6px;
}
.pagination ul li:last-child {
  margin-right: 0;
}
.pagination ul li a,
.pagination .buttons a,
.pagination .buttons span {
  font-size: 11px;
  height: 19px;
  width: 19px;
  color: #fff;
  background: #180202;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}
.pagination ul li a:hover,
.pagination .buttons a:hover {
  color: #fff;
}
.pagination ul li a.disabled {
  color: #3B3B52;
}
.pagination ul li .i-a {
	background: transparent;
	color: #fff;
	filter: drop-shadow(0px 3px 1px #000);
}
.pagination ul li .i-a.disabled {
  color: #58656D;
}
.pagination ul li a.active,
.pagination ul li a:hover,
.pagination .buttons a:hover,
.pagination .buttons span {
  border-bottom: 1px solid var(--theme__color2);
  background: #582121;
  height: 20px;
}
/* ---pagination---end */
.form-control::placeholder {
  color: #c4c1c1;
  opacity: 1; /* Firefox */
}

.form-control::-ms-input-placeholder { /* Edge 12 -18 */
  color: #c4c1c1;
}
.sub-page {
  border-top: 1px solid #deab75;
  padding: 5px 0px 30px;
  min-height: 500px;
}
.btn-block {
  width: 100%;
}
.box-comm-title {
  text-align: center;
}
.box-comm-title h3 {
  background: -webkit-linear-gradient(#ffc46f, #ffe5be);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  display: inline-block;
  margin: 25px 10px;
}
.num-txt {
  display: inline;
}
.num-txt img {
  max-height: 45px;
}
a {
  color: #ffc46f;
  text-decoration: none;
}
.alert a {
  color: #261e1e;
}
p {
  color: white
}
.post p {
  color: white;
}
.post, .news-section-inner {
  background-color: #281700;
  padding: 10px;
  border: 1px solid #deab75;
  padding-bottom: 30px;
  color: white;
}
.list-group-item-heading, .col-form-label {
  color: white;
}
.search-form,
.search-form:focus,
.search-form:active {
  font-size: 20px;
  background-color: #a97e44;
  border: 1px solid #621313;
}
.news-cat {
  margin-left: 10px;
}
.news-cat a.active {
  color: #b0aba2
}
.news-cat a {
  font-size: 24px;
  margin-right: 15px;
}
video.header-video {
	position: absolute;
  display: block;
	pointer-events: none !important;
	height: 756px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 0;
  object-fit: cover;
  max-width: 100%;
}
@media (max-width: 721px) {
	video.header-video {
		display: none;
	}
}
.hero-content {
  position: relative;
  z-index: 2;
}
.header-notic a {
	text-decoration: underline;
}
.modal-content {
  border-radius: 0!important;
}

.discord-widget {
  z-index: 9;
  position: fixed;
  right: -150px;
  bottom: 50px;
  transition: 300ms;
  opacity: 0.8;
}

.discord-widget:hover {
  right: 0px;
  opacity: 1;
}

.swal2-content p{
  color: #000;
  font-size: 18px;
  margin-bottom: 0px;
}

.pagination {
  display: inline-block;
}

.pagination a,.pagination strong{
  padding: 10px;
  float: left;
  border: 1px dashed #ffc46f;
  font-size:14px;
  font-family: 'Arial';
  color:#ffc46f;
  margin: 10px;
}



.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  position: relative;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  position: relative;
}

.odometer.odometer-auto-theme .odometer-digit,
.odometer.odometer-theme-default .odometer-digit {
  *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  display: -moz-inline-box;
  -moz-box-orient: vertical;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
  *display: inline;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
  text-align: left;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
  display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,
.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
  display: block;
  -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value {
  display: block;
  -webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,
.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
  position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
  -webkit-transition: -webkit-transform 2s;
  -moz-transition: -moz-transform 2s;
  -ms-transition: -ms-transform 2s;
  -o-transition: -o-transform 2s;
  transition: transform 2s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: "Helvetica Neue", sans-serif;
}

.odometer.odometer-auto-theme .odometer-value,
.odometer.odometer-theme-default .odometer-value {
  text-align: center;
}

.odometer-inside {
  margin-top: 5px;
  display: flex;
  align-items: center;
}
