/* Basic CSS Styling */
@font-face {
    font-family: 'AdelonBook';
    src: url('../fonts/adelonlregular-webfont.woff2') format('woff2'),
         url('../fonts/adelonlregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #fff;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(0deg,#847769,#ab9986);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(0deg,#dabc9c,#dabc9c);
  }

body {
    font-family: 'AdelonBook', Times New Roman, Times, serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Add this line to hide the horizontal scrollbar */
    top: 0px !important;
}


.icon-bar {
  position: fixed;
  left:0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  
}

.icon-bar ul {
  list-style-type: none;
}

.icon-bar ul li a {
  position: relative; 
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 42px;
  background: #5e4d3c;
  border-radius: 50%;
  font-size: 25px;
  color: #b39475;
  transition: .5s;
  margin-bottom:15px;
  border: 2px solid #a6917c;
    box-shadow: 0 0 5px #000;
  text-shadow: 0 0 5px #000;
}

.icon-bar ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #64594e;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
}

.icon-bar ul li a:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #64594e;
  
}

.icon-bar ul li a:hover {
  color: #d8b692;
  box-shadow: 0 0 5px #000;
  text-shadow: 0 0 5px #000;
}

/* Media query for mobile view */
@media (max-width: 767px) {
  .icon-bar {
    display: none; /* Hide sidebar on smaller screens */
  }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(152 143 130 / 22%);
    color: #fff;
    padding: 20px 0px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
    z-index: 9999;
}

.logo {
	max-height: 80px; /* Adjust the maximum width as needed */
    max-width: 80px; /* Adjust the maximum width as needed */
    width: 100%;
    padding: 10px;
	margin-top:-7px;
}

.logo:hover {
    animation: navLogo 0.3s ease forwards;
}

nav {
    text-align: center;
    margin-left: 10%;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
    display: inline-block;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    transition: .5s;
}

nav ul li a:hover {
    position: relative;
    z-index: 1;
    color: #d8b692;
    transition: background-color 0.3s ease;
}

#hero-section {
    background-image: url('../img/bgheader.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

#hero-section h2 {
    font-size: 36px;
    z-index: 2;
    color: #d8b692;
    text-transform: uppercase;
    height: 0;
}

#hero-section p {
     z-index: 2;
     max-width: 650px;
     color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 20px 36px;
    background: linear-gradient(0deg,#9c8a6f,#9b9894);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: .2s;
    height: 100%;
    font-size: 25px;
    text-transform: uppercase;
    width: 200px;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
}

.cta-button:hover {
    filter: brightness(110%);

	text-shadow: 0 0 10px rgba(0,0,0,.8);
}

.cta-button2 {
    display: inline-block;
    padding: 18px 36px;
    background: url(../img/icons/button.png) no-repeat 50%/100% auto;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: .2s;
    font-size: 30px;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 20px;
    text-shadow: 0 0 10px rgba(0,0,0, 0.8);
    z-index: 999;
    width: 200px;
	filter: brightness(95%);
}

.cta-button2:hover {
    filter: brightness(110%);
}


.feature-card {
    width: 300px;
    background-color: #eaeae8;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 140px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 18px;
    color: #4e4e4e;
    text-transform: uppercase;
    height: 0;
}

.card-content h3.extra-details {
    font-size: 14px;
    text-transform: none;
    color: darkgoldenrod;
    margin-right: 15px;
    height: auto;
}

.card-content p {
    color: #a49478;
    font-size: 16px;
}

#community-section {
    background-image: url('../img/bgdiscord.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}



#community-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#community-section h3 {
    font-size: 32px;
    margin-bottom: -130px;
    text-transform: uppercase;

}

#community-section p {
    font-size: 18px;
    color: #fff;
    margin-top: 5px;
	
}


#download-section {
    background-image: url('../img/bgdownload.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;

    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.blurry-bg-download {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bgdownload.png');
    background-size: cover;
    filter: blur(5px); /* Add the blur filter to the background image */
    opacity: 1; /* Adjust the opacity as needed */
    z-index: -1; /* Place the blurry background behind the content */
}

.margin-top {
	margin-top:120px;
}

.text-light {
    font-family: 'AdelonBook';
	    font-weight: normal;
    font-style: normal;
}
#download-section h2 {
    font-size: 32px;
    margin: 50px;
    color: #fff;
    text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
}

#download-section p {
    font-size: 18px;
    color: #fff;
    margin-top: 5px;
}

.download-button1 {
    display: inline-block;
    padding: 20px 36px;
    background: url(../img/icons/button.png) no-repeat 50%/100% auto;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: .2s;
    font-size: 20px;
    text-transform: uppercase;
    width: 200px;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
}

.download-button1:hover {
    filter: brightness(110%);
	text-shadow: 0 0 10px rgba(0,0,0,.8);
}

#features-section {
    background-image: url('../img/bgfeatures.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
	
}

#features-section h2 {
    font-size: 32px;
    margin: 50px;
    color: #fff;
    text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
}

#features-section p {
    font-size: 18px;
    color: #fff;
    margin-top: 5px;
}

/* Download Section Square Menu */
.items-container {
  text-align:center;
  width: 95vw;
  overflow-x: hidden;
  margin: 0 auto;
  margin-top: 20px;
}

.item {
  display: inline-block;
  position: relative;
  margin-top: 25px;
  margin-bottom: 10px;
  margin-left: 40px;
  margin-right: 20px;
  width: 300px;
  height: 500px;
  border-radius: 3px;
  box-shadow: 3px 4px 12px 1px rgba(0,0,0,0.8);
}

.item-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.diamond-container {
  position: absolute;
  margin-top: -20px;
  margin-left: -20px;
  transition: all 0.3s ease-out;
}

.diamond {
  margin-left: 10px;
  margin-top: 10px;
  width: 60px;
  height: 60px;
  background: #b39475;
  overflow: hidden;
  color: #fff;
  font-weight: 500;
  font-size: 1.25em;
  letter-spacing: -0.5px;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}

.diamond-wrapper {
  margin-top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.diamond-content {
  transform: rotate(-45deg);
}

.content-wrapper {
  width: 95%;
  margin: 0 auto;
  margin-top: 20px;
  transition: all 0.3s ease-out;
}

.img-container {
  position: relative;
  width: 100%;
  min-height: 200px;
  margin-top: 80px;
}

.bg-square {
  position: absolute;
  width: 135px;
  height: 130px;
  border: 12px solid rgba(51,51,51,0.1);
  margin: 0 auto;
  left: 0;
  right: 0;
}

.item-img {
  position: absolute;
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto;
  margin-top: -50px;
  left: 0;
  right: 0;
}

.content-text {
  position: relative;
  width: 100%;
  margin-top: 100px;
}

.item-name {
  font-weight: 400;
  font-size: 1.35em;
  text-transform: uppercase;
  text-align: center;
}

.item-subtext-container {
  width: 70%;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 0.8em;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #bbb;
  text-align: center;
}

.view-more-btn {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 35px;
  background: #827260;
  color: #fff;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 3px;
  word-spacing: 3px;
  text-align: center;
  padding-top: 20px;
  user-select: none !important;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease-out;
}

.view-more-btn:hover {
  filter: brightness(130%);
}

.item-details-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background: rgba(0,0,0,0.65);
  z-index: 99;
  color: #f1f1f1;
  transition: all 0.3s ease-out;
}

.details-content-wrapper {
  position: relative;
  width: 85%;
  margin: 0 auto;
  margin-top: 70px;
}

.detail {
  margin-top: 5px;
}

.detail-desc {
  margin-top: 9px;
}

.detail-title {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8em;
}

.detail-text {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.85em;
}

.detail-description {
  width: 95%;
  padding-left: 2.5%;
  padding-top: 2px;
  font-size: 0.9em;
  font-weight: 300;
  line-height: 1.2em;
}

.detail-manual-link {
  margin-top: 8px;
  padding-left: 2.5%;
  font-weight: 400;
  font-size: 0.7em;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none !important;
}

.manual-icon-container {
  display: inline-block;
  margin-right: 5px;
}

.manual-svg {
  width: 15px;
  height: auto;
}

.manual-link-text {
  position: absolute;
  display: inline-block;
  padding-top: 2px;
  padding-left: 3px;
}

.delivery-container {
  margin-top: 15px;
}

.delivery-radio {
  position: absolute;
  transform: scale(0.75);
  margin-top: -3px;
}

.delivery-radio-text {
  display: inline-block;
  font-weight: 300;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.delivery-radio-text:first-child {
  margin-right: 10px;
}

.detail-gallery {
  position: relative;
  display: inline-block;
  width: 130px;
  overflow: hidden;
}

.thumb-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  margin-right: 5px;
  margin-bottom: 5px;
  box-shadow: 2px 4px 12px rgba(0,0,0,0.35);
}

.thumb-overlay {
  position: absolute;
  width: 50px;
  height: 40px;
  padding-top: 10px;
  background: rgba(51,51,51,0.65);
  color: #fff;
  font-size: 2em;
  font-weight: 500;
  text-align: center;
  text-shadow: 1px 2px 3px rgba(0,0,0,0.5);
}

.detail-thumb {
  width: 50px;
  height: auto;
}

.detail-price-container {
  display: inline-block;
  position: relative;
  float: right;
  width: calc(100% - 175px);
  text-align: right;
  padding-right: 20px;
  padding-top: 2px;
}

.price-subtext {
  font-weight: 300;
  font-size: 0.65em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price-text {
  font-weight: 500;
  font-size: 2em;
  letter-spacing: -0.5px;
  padding-top: 5px;
}

/*START ITEM ACTIVE STYLES*/

.item.active > .diamond-container {
  margin-top: 0;
  margin-left: 0;
  transition: 0.3s ease-out;
}

.item.active > .diamond-container > .diamond {
  transform: rotate(0deg);
  margin-top: 0;
  margin-left: 0;
  height: 0;
  transition: 0.3s ease-out;
}

.item.active > .item-wrapper > .content-wrapper {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: 0.3s ease-out;
}

.item.active > .item-wrapper > .view-more-btn {
  bottom: calc(100% - 55px);
  transition: 0.3s ease-out;
}

.item.active > .item-wrapper > .item-details-container {
  height: 100%;
  transition: all 0.3s ease-out;
}

/*START CUSTOM CHECKBOX STYLES*/
    input[type="radio"] {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-color: transparent;
      border: 1px solid #fff;
      border-radius: 26px;
      box-shadow: inset 0 0 0 0 #fff;
      cursor: pointer;
      height: 24px;
      position: relative;
      width: 41px;
      vertical-align: top;
      margin-bottom: 20px;
      outline: none !important;
      transition: border .25s .15s, box-shadow .25s .3s, padding .25s;
    }
    input[type="radio"]:after {
      background-color: #fff;
      border: 1px solid #fff;
      border-radius: 24px;
      box-shadow: inset 0 -3px 3px rgba(255, 255, 255, 0.025), 0 1px 4px rgba(255, 255, 255, 0.15), 0 4px 4px rgba(255, 255, 255, 0.25);
      content: '';
      display: block;
      height: 21px;
      left: 0;
      position: absolute;
      right: 16px;
      top: 0;
      margin-bottom: 19px;
      outline: none;
      transition: border .25s .15s, left .25s .1s, right .15s .175s;
    }
    input[type="radio"]:checked {
      border-color: rgba(255,255,255,0.75);
      box-shadow: inset 0 0 0 13px rgba(250,250,250,0.35);
      padding-left: 18px;
      outline: none;
      transition: border .25s, box-shadow .25s, padding .25s .15s;
    }
    input[type="radio"]:checked:after {
      border-color: rgba(255,255,255,0.75);
      left: 16px;
      right: 0;
      outline: none;
      transition: border .25s, left .15s .25s, right .25s .175s;
    }
/*END CUSTOM CHECKBOX STYLES*/

/* Features List Table */


.plan {
  display: inline-block;
  margin: 20px;
  
}

.plan-inner {
  background: rgba(0,0,0,0.15);
  margin: 0 auto;
  min-width: 280px;
  max-width: 100%;
  position:relative;
    border-radius:20px;
  border-color: rgba(0,0,0,0.35);
  box-shadow: 3px 3px 3px 3px rgba(0,0,0,0.35);
}

.entry-title {

  height: 140px;
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.entry-title>h3 {
  background: #b39475;
  font-size: 25px;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}

.margin-top1 {
	margin-top:-2px;
}

.margin-top5 {
	margin-top:0px;
	
}

.top15 {
	margin-bottom:50px;
}

.entry-title .price {
  position: absolute;
  bottom: -20px;
  background: rgba(0,0,0,0.35);
  height: 105px;
  width: 105px;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 50px;
  border: 1px solid #b39475;
  border-color: rgba(179,148,117,0.65);
  box-shadow: 0 5px 15px 0 rgba(179,148,117,0.45);
  line-height: 80px;
  font-size: 28px;
  font-weight: 700;
}

.price span {
  position: absolute;
  font-size: 9px;
  bottom: -10px;
  left: 30px;
  font-weight: 400;
}

.entry-content {
  color: #fff;
}

.entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.margin-left-icon {
	margin-left:5px;
}

.entry-content li {
  border-bottom: 1px solid #E5E5E5;
  padding: 10px 0;

}

.text-align-right {
	float: right;
	margin-right:12px;
	font-size:15px;
	align-items:center;
	margin-top:3px;
	text-align: right !important;
	color:#eed2b7;
	
}

.entry-content li:last-child {
  border: none;
}

.btn {
  padding: 3em 0;
  text-align: center;
}

.btn a {
  background: #323232;
  padding: 10px 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none
}
.hot {
    position: absolute;
    top: -12px;
    background: #5e442e;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
    padding: 3px 5px;
    font-size: 10px;
    border-radius: 2px;
    right: 10px;
    font-weight: 700;
}


footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0; /* Increase the padding to make the footer bigger */
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

footer p {
    font-size: 16px; /* Adjust the font size as needed */
    margin: 0;
}

footer a {
  color: #978573;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: .2s;
  text-transform: uppercase;
}

footer a:hover {
   filter: brightness(160%);
}

.smoke {
    position: absolute;
    left: 0;
    right: 0;
    height: 923px;
    width: 100%;
    background-image: url(../img/smoke.png);
    background-position: left top;
    -webkit-animation: smoke 20s linear infinite;
    animation: smoke 20s ease-in-out infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    z-index: 1;
}

.main_logo {
	margin-bottom: -20px;
    z-index: 999;
}

/* logotype */

.logotype {
	display: block;
    width: 100%;
	max-width: 500px;
	position: relative;
	z-index: 0;
}

.logotype__img {
	display: block;
	max-width: 100%;
}

.logotype__img_hover {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 0;
	transition: 0.3s all;
	pointer-events: none;
}

.logotype:hover .logotype__img_hover {
	animation: logotype 0.2s ease forwards;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%); 
    z-index: 1; 
  }

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1d1d;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.preloader-logo {
    max-width: 200px; /* Adjust the maximum width as needed */
    width: 100%;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    animation: spin 0.6s infinite alternate ease-in-out;
}

@keyframes spin {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.3);
    }
}

/* Content CSS */
#content-section {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    padding-bottom: 50px; /* Add padding to avoid content overlap with the fixed footer */
}

#content-section.show {
    opacity: 1;
    visibility: visible;
}

  
  .fa-play {
    cursor: pointer;
    transition: all 0.4s;
    font-size: 12px;
    margin-bottom: 5px;
    display: inline-block;
    transform: rotate(180deg);
    color: #49b0e6;
  }

  .header_menu_item a {
    font-size: 18px;
    align-items: center;
    text-transform: uppercase;
    transition: 0.3s all;
    position: relative;
    z-index: 0;
    cursor: pointer;
    vertical-align: -webkit-baseline-middle;
}

  .header_menu_item img {
    margin-right: 8px;
    transition: 0.2s all;
    pointer-events: none;
}

.header_menu_item:hover img {
    animation: navImg 0.3s ease forwards;
}
.subnav {
	position: absolute;
	top: calc(100% + 15px);
	background-color: #fff;
	border-radius: 6px;
	padding: 5px 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s all;
	filter: drop-shadow(0 8px 10px rgba(5, 5, 5, 0.6));
}

.header_menu_item:hover .subnav {
	opacity: 1;
	visibility: visible;
}

.subnav:before {
	display: block;
	content: "";
	height: 15px;
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	background-color: transparent;
}

.subnav:after {
	display: block;
	content: "";
	border: 5px solid transparent;
	border-bottom: 4px solid #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 100%;
}

.subnav-item {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
    padding: 10px 35px;
	white-space: nowrap;
	font-size: 14px;
	color: #939393;
	font-family: var(--font-1);
	transition: 0.3s all;
}

.subnav-item:hover {
	color: #5a5a5a;
	background-color: rgba(26, 26, 26, 0.07);
}

.skiptranslate {
    display: none !important;
}

/* Убираем подсветку ссылок */

.goog-text-highlight {
    background-color: inherit;
    box-shadow: none;
    box-sizing: inherit;
}

/* language */

.language {
    right: 10px;
    z-index: 999;
  }
  
  .language__img {
    cursor: pointer;
    transition: .2s all;
    box-shadow: 0 0 8px 2px #fff;
    border-radius: 50%; /* Add border-radius to create a rounded shape */
  }
  
.language__img:hover{
    box-shadow: 0 0 8px 2px #ffd76a;
}

  .language__img:hover,
  .language__img_default {
    opacity: 1;
  }

  .language__img.language__img_active {
    /* Add your styles here */
    border: 2px solid #ff9900; /* For example, add a border to the active icon */
}
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .dropdown ul.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown ul li {
    list-style: none;
    padding: 5px;
    transition: background-color 0.2s ease;
  }
  
  .dropdown ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    transition: .2s all;
  }

  .dropdown ul li a:hover {
    box-shadow: 0 0 8px 2px #fff;
    border-radius: 50%; /* Add border-radius to create a rounded shape */
  }
  
  /* Add this CSS to make the icons fill the entire dropdown width */
  .dropdown ul li a img {
    height: auto;
  }
  
  /* Add animation for language change */
  .language__img_default {
    animation: scaleIn 0.3s ease;
  }

  .dec-line_bottom {
	top: 100%;
}

.dec-line {
	height: 9px;
	width: 100vw;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	border-bottom: 5px solid rgba(193, 180, 159, 0.3);
}

.dec-line2 {
    height: 11px;
    width: 100vw;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    box-sizing: border-box;
    border-top: 3px solid rgba(193, 180, 159, 0.3);
    border-bottom: 3px solid rgba(193, 180, 159, 0.3);
    z-index: 99;
}


.server {
    position: relative;
    z-index: 999;
    background-color: transparent;
    background-image: url(../img/icons/bg.png);
    background-size: contain;
    background-position: center center;
    border-radius: 4px;
    background-repeat: no-repeat;
    width: 200px;
    height: 66px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding-left: 70px;
    box-sizing: border-box;
    cursor: default;
    margin-bottom: 75px;
}


.server__ico {
    background-color: transparent;
    background-image: url(../images/server/ico-1.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 70px;
    height: 85px;
    position: absolute;
    top: -13px;
    left: 6px;
    z-index: 1;
    pointer-events: none;
}

.server__title {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-family: var(--font-1);
}

.server__progress {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 2px;
    margin-left: 3px;
    padding: 2px 0;
    box-sizing: border-box;
}

.server__progress-item {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    transform: rotate(45deg);
    box-shadow: 0 0 0 1px #c1cdd0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.server__progress-item:before {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    background: #ffd76a;
    margin: 1px;
    border-radius: 2px;
}

.server__tip {
    --width: 180px;
    width: var(--width);
    box-sizing: border-box;
    padding: 8px 10px;
    position: absolute;
    top: 100%;
    left: calc(50% - var(--width) / 2);
    background-color: #fff;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.06), 0 0 25px rgba(255, 255, 255, 0.32), inset 0 0 14px rgba(163, 161, 147, 0.33);
    border-radius: 6px;
    opacity: 1;
    transform: translateY(5px);
    transition: 0.3s all;
}

.server__tip::after {
    display: block;
    content: "";
    border: 5px solid transparent;
    border-bottom: 4px solid #f1f1ee;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
}

/* life */

.life__title {
	color: rgb(156, 158, 159);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}

.life__timer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
	color: rgb(154, 110, 86);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}
.server__tip::after {
    display: block;
    content: "";
    border: 5px solid transparent;
    border-bottom: 4px solid #f1f1ee;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
}

.border {
    width: 100%;
    height: 44px;
    background: url(../img/icons/border_line.png) center center repeat-x;
    margin: -19px auto;

    position: relative;
    z-index: 9;
}

.download-button {
    align-items: center; /* Align items vertically */
    justify-content: center; /* Center the content horizontally */
    padding: 10px 20px; /* Adjust the padding to make the buttons smaller */
    background: url(../img/aden-button.png) no-repeat 50%/100% auto;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: .2s;
    font-size: 24px;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(206,111,0,.8);
    z-index: 999;
    margin-top: 50px;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 50%;
    margin: 0 auto; /* Center the buttons horizontally */
}

.download-button:hover {
    filter: brightness(130%);
}

.download-button span img {
    float: right;
}

.cta-button3 {
    display: inline-block;
    padding: 6px 2px;
    background: url(../img/server-button.png) no-repeat 50%/100% auto;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: .2s;
    font-size: 18px;
    border: none;
    outline: none;
    cursor: pointer;
    z-index: 999;
    width: 200px;
}

.cta-button3:hover {
    filter: brightness(130%);
}

#back-to-top-btn {
	  display: none; /* Hide the button by default */
  position: fixed;
  bottom: 70px;
  right: 30px;
  padding: 10px 10px;
  background-color: #827260;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s ease-out;
}

#back-to-top-btn:hover{
   filter: brightness(130%);
}

#back-to-top-btn:active {
   filter: brightness(80%);
}

#back-to-top-btn a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: .2s;
  text-transform: uppercase;
}

#back-to-top-btn a:hover {
   filter: brightness(140%);
}

.newsBlock-title {
    max-width: 370px;
    font-size: 32px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 32px;
    margin: -18px 10px -15px 0;
    vertical-align: middle;
    border-radius: 50%;
    margin: -18px 10px -15px 0;
    border: solid 2px;
}

.desc-icon {
    border-radius: 50%;
    padding: 0px;
    margin: 2px;
    box-shadow: 0px 0px 6px;
    border: solid 1px #fbd181;
    width: 26px;
    vertical-align: middle;
}

#article-section {
    margin-top: 60px;
    display: flex;
    justify-content: space-between; /* To create space between the two containers */
}

.article-content {
    margin: 0 auto;
}

.article-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.article-content p {
    font-size: 16px;
    color: #666;
    margin-left: 15px;
    max-width: 600px;
}

.article-content h4 {
    font-size: 16px;
    color: #9f7334;
    max-width: 600px;
}

.article-content p::before {
    content: "\2022"; /* Unicode character for bullet (•) */
    position: relative;
    left: -10px; /* Adjust the distance between bullet and text */
    top: 50%; /* Position the bullet vertically in the middle */
    transform: translateY(-50%);
}

.article-content .extra-details::before {
    content: "-"; /* Use a hyphen as the content */
    position: relative;
    left: -10px; /* Adjust the distance between bullet and text */
    top: 50%; /* Position the bullet vertically in the middle */
    transform: translateY(-50%);
    margin-left: 20px;
}

.categories-container {
    display: flex;
  }

  .category-container {
    /* Your existing styles for the category container */
    width: calc(50% - 10px); /* Adjust the width as needed */
    margin-bottom: 20px; /* Add spacing between the categories */
  }

  .category-container h2 {
    /* Your existing styles for the category headings */
    margin-bottom: 10px; /* Add spacing between the heading and content */
  }

  .extra-details {
    margin-left: 15px; /* Add indentation for the extra details */
  }

  .hamburger-icon {
    display: none; /* Hide the hamburger icon by default */
    cursor: pointer;
    margin-left: 10px; /* Adjust the left margin to create space between the logo and the menu icon */
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
}

/* Styles for the mobile navigation */
.mobile-nav {
    display: none; /* Hide the mobile navigation by default */
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin: 0 10px;
}

.mobile-nav li a {
    color: #fff;
    text-decoration: none;
}

@media only screen and (max-width: 1380px) {
    
    nav ul li {
        margin: 15px 0; /* Add spacing between navigation items */
    }
}
  /* Mobile Styles */
@media only screen and (max-width: 768px) {

    #features-section {
        height: 100%;
    }
    
    #download-section {
        height: 100%;
    }

    .cards-container ul {
        display: flex;
        flex-direction: column; /* Stack the cards vertically */
        gap: 20px; /* Add some spacing between cards */
    }
    
    .feature-card {
        width: 100%; /* Make the cards take full width of the container */
    } 

    .download-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .discord-widget {
        width: 100%;
    }

    header {
        padding: 10px 0px; /* Reduce the header padding for smaller screens */
        height: 60px; /* Reduce the header height for smaller screens */
    }

    .logo {
        max-width: 40px; /* Reduce the logo size for smaller screens */
        display: none;
    }

    nav {
        margin-left: 0; /* Center the navigation for smaller screens */
        display: none; /* Hide the main navigation on mobile */
    }

    .language {
        margin-right: 50px;
    }

    nav ul li {
        display: block; /* Display navigation items vertically for smaller screens */
        margin: 5px 0; /* Add spacing between navigation items */
    }

    nav ul li a {
        padding: 10px 10px;
    }

    #hero-section h2 {
        font-size: 24px; /* Reduce the font size for smaller screens */
    }

    #hero-section p {
        font-size: 14px; /* Reduce the font size for smaller screens */
    }

    .cta-button {
        font-size: 18px; /* Reduce the font size for smaller screens */
        width: 150px; /* Reduce the button width for smaller screens */
        padding: 10px 36px;
        line-height: 2.5;
    }

    .cta-button2 {
        font-size: 18px; /* Reduce the font size for smaller screens */
        width: 180px; /* Reduce the button width for smaller screens */
    }
    
    .hamburger-icon {
        display: block;
        margin-right: auto;
    }

    /* Show the mobile navigation */
    .mobile-nav {
        display: block;
        background-color: #333;
        padding: 20px;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        text-align: center;
        max-height: 0; /* Set the initial max-height to 0 */
        overflow: hidden; /* Hide the content when max-height is 0 */
        transition: max-height 0.3s ease; /* Add a transition to the max-height property */
        text-transform: uppercase;
      }

    .mobile-nav li {
        margin: 10px 0;
    }

    /* Hide the mobile navigation when not needed */
    .mobile-nav.hidden {
        display: none;
    }

    .mobile-nav.show {
        max-height: 500px; /* Adjust the max-height to your desired value based on the content */
    }

    #article-section .article-content img {
        max-width: 100%; /* Make images responsive within their containers */
        height: auto;
      }
    
    .category-container {
        width: 100%;
    }

    .categories-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .category-container h2 {
     font-size: 20px; /* Adjust font size for better mobile readability */
    }

    .category-container p,
    .category-container h4 {
     font-size: 14px; /* Adjust font size for better mobile readability */
    }

    .category-container .extra-details {
     font-size: 12px; /* Adjust font size for extra details */
    }

    .raid-boss {
        flex-direction: column; /* Stack raid boss info below the image */
        align-items: center;
    }

    .raid-boss-info {
        text-align: center;
        margin-top: 10px;
    }

    .raid-boss img {
        max-width: 100%; /* Make raid boss images responsive */
        height: auto;
    }

    .border {
        display: none; /* Hide border between sections for mobile */
    }

    #article-section {
        margin-top: 80px;
    }
}


.raid-boss {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    margin-right: 20px;
}

.raid-boss-info {
    max-width: 300px;
}


.raid-boss img {
    max-width: 300px;
    max-height: 300px;
    height: 150px;
}

.margin-right {
	margin-right: 35px;
}

.discord-widget {
	margin-right: 20px;
    margin: 0 auto;
	display:flex;
	
}

.containerdiscord {
  display: flex;
}

.description-box {
  flex: 1;
  padding: 20px;
  background-color: #64594e;
  color: #fff;
}

.advertising-box {
	flex: 1;
	padding: 20px;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(152 143 130 / 12%);
    color: #fff;
    padding: 20px 0px;
    text-align: center;
    justify-content: space-between;
    align-items: center;
	border-radius: 3px;
	box-shadow: 3px 4px 12px 1px rgba(0,0,0,0.8);
  
}


.advertising-box img {
  max-width: 100%;
  height: auto;
  
}

.buttondiscord {
	margin-top:20px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #998773;
  color: #fff;
  font-size:16px;
text-shadow: 1px 1px 2px black;
  text-decoration: none;
  border-radius: 5px;
  transition: .5s;
}


.buttondiscord:hover {
	transition: .5s;
  filter: brightness(120%);
  color: #fff;
}

.buttondiscord:active {
	transition: .5s;
}


.margin-top-discord {
	margin-top:30px;
}

.smoke1 {

	align-items:center;
    background-image: url(../img/smoke.png);
    background-position: left top;
    -webkit-animation: smoke 20s linear infinite;
    animation: smoke 20s ease-in-out infinite;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    z-index: 1;
}

.discord-widget-container {
  position: relative;
  width: 400px;
}

.discord-widget-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .containerdiscord {
	display:none;
  }

@media (max-width: 768px) {
  .discord-widget-container {
	  width: 350px;
	height:400px;
	margin-bottom:10%;
  }
  
@media (max-width: 768px) {
  .containerdiscord {
margin-left:33px;
  }
}

/* Custom  */
div.hideonmobile {
  background-color: transparent;
  padding: 20px;
}

@media screen and (max-width: 600px) {
  div.hideonmobile {
    display: none;
  }
}