html,
body {
	height: 100%;
	font-family: "Space Grotesk", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

/* Design tokens - centralized variables for the whole site */
:root{
	--brand-primary: #812acf;
	--brand-primary-dark: #6d28d9;
	--brand-primary-light: #a78bfa;
	--brand-glow: rgba(129,42,207,0.15);
	--bg-dark: #000000;
	--card-bg: #0a0a0a;
	--input-bg: #1a1a1a;
	--text-primary: #ffffff;
	--text-secondary: #c4c4c4;
	--muted: #a0a0b8;
	--border-muted: rgba(129,42,207,0.12);
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
	--shadow-md: 0 8px 24px rgba(0,0,0,0.18);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Cinzel", serif;
}

h1 {
	font-size: 70px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

h2 {
	font-size: 36px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

h3 {
	font-size: 30px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

h4 {
	font-size: 24px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

h5 {
	font-size: 18px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

h6 {
	font-size: 16px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

p {
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
	color: #c4c4c4;
	font-weight: 400;
	line-height: 24px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #fff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 35px;
}

.section-title h5 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	font-style: italic;
	padding-left: 16px;
	position: relative;
	letter-spacing: 1px;
	font-family: "Space Grotesk", sans-serif;
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.section-title h5:after {
	position: absolute;
	left: 0;
	top: 3px;
	height: 15px;
	width: 11px;
	background: #812acf;
	content: "";
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.spad-2 {
	padding-top: 50px;
	padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 14px;
	padding: 17px 30px 16px;
	color: #ffffff;
	background: #812acf;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 600;
	font-family: "Space Grotesk", sans-serif;
}

.primary-btn.btn-normal {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.primary-btn.btn-normal:hover {
	background: #812acf;
	border-color: #812acf;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #812acf;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #812acf;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #812acf;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #812acf;
		border-left-color: transparent;
	}
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: none;
	color: #999;
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 28px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*---------------------
  Sign Up Form
-----------------------*/

.signup-section {
	background: #0d0909;
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	overflow: auto;
	z-index: 99;
	display: none;
}

.signup-section .signup-close {
	height: 50px;
	width: 50px;
	border: 2px solid #9b4dd8;
	border-radius: 50%;
	font-size: 18px;
	color: #9b4dd8;
	line-height: 46px;
	text-align: center;
	position: absolute;
	right: 30px;
	top: 30px;
	cursor: pointer;
	z-index: 9;
}

.signup-text {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 100%;
	padding: 80px 0;
}

.signup-text .signup-title {
	margin-bottom: 35px;
}

.signup-text .signup-title h2 {
	font-weight: 700;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 10px;
}

.signup-text .signup-form {
	width: 545px;
	margin: 0 auto;
	text-align: center;
}

.signup-text .signup-form .sf-input-list input {
	width: 100%;
	height: 46px;
	font-size: 14px;
	color: #c4c4c4;
	padding-left: 20px;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	background: transparent;
	border: 1px solid #363636;
	margin-bottom: 20px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.signup-text .signup-form .sf-input-list input::-webkit-input-placeholder {
	color: #c4c4c4;
	-webkit-transform: skewX(15deg);
	transform: skewX(15deg);
}

.signup-text .signup-form .sf-input-list input::-moz-placeholder {
	color: #c4c4c4;
	-webkit-transform: skewX(15deg);
	transform: skewX(15deg);
}

.signup-text .signup-form .sf-input-list input:-ms-input-placeholder {
	color: #c4c4c4;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.signup-text .signup-form .sf-input-list input::-ms-input-placeholder {
	color: #c4c4c4;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.signup-text .signup-form .sf-input-list input::placeholder {
	color: #c4c4c4;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.signup-text .signup-form .sf-input-list input:focus {
	border-color: #812acf;
}

.signup-text .signup-form .radio-check {
	margin-bottom: 30px;
}

.signup-text .signup-form .radio-check label {
	font-size: 14px;
	color: #c4c4c4;
	position: relative;
	cursor: pointer;
	padding-left: 25px;
}

.signup-text .signup-form .radio-check label input {
	position: absolute;
	visibility: hidden;
}


.signup-text .signup-form .radio-check label .checkbox {
	position: absolute;
	left: 0;
	top: 5px;
	height: 11px;
	width: 11px;
	border: 1px solid #c4c4c4;
	border-radius: 2px;
	background: transparent;
	transition: all 0.3s ease;
	cursor: pointer;
}

.signup-text .signup-form .radio-check label .checkbox:hover {
	border-color: #812acf;
	transform: scale(1.1);
}

.signup-text .signup-form .radio-check label .checkbox:after {
	content: '';
	position: absolute;
	left: 3px;
	top: 0px;
	width: 3px;
	height: 6px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.signup-text .signup-form .radio-check label input:checked~.checkbox {
	background: #812acf;
	border-color: #812acf;
}

.signup-text .signup-form .radio-check label input:checked~.checkbox:after {
	opacity: 1;
}

/* Error and success message styles */
.error-message {
	background: #ff4444;
	color: white;
	padding: 10px 15px;
	margin: 10px 0;
	border-radius: 4px;
	font-size: 14px;
	text-align: center;
}

.success-message {
	background: #44ff44;
	color: white;
	padding: 10px 15px;
	margin: 10px 0;
	border-radius: 4px;
	font-size: 14px;
	text-align: center;
}

.signup-text .signup-form button {
	font-size: 14px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	background: #812acf;
	border: none;
	display: inline-block;
	padding: 12px 32px;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
}

.signup-text .signup-form button span {
	display: inline-block;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

/*---------------------
  Humberger Menu
-----------------------*/

.humberger-menu-overlay {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(13, 9, 9, 0.8);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 999;
	visibility: hidden;
    transform: none !important;
}

.humberger-menu-overlay.active {
	visibility: visible;
}

.humberger-menu-wrapper {
	background: #080808;
	width: 410px;
	height: 100%;
	max-height: 100dvh;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	position: fixed;
	left: -410px;
	top: 0;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	padding: 50px;
	position: fixed;
}

.humberger-menu-wrapper .humberger-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #b66dff 0%, #8c48e8 100%);
	color: #ffffff;
	border: 1px solid rgba(227, 178, 255, 0.55);
	border-radius: 10px;
	cursor: pointer;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
	transition: all 0.25s ease;
	z-index: 5;
}

.humberger-menu-wrapper .humberger-close i {
	font-size: 16px;
}

.humberger-menu-wrapper .humberger-close:hover {
	background: linear-gradient(135deg, #d197ff 0%, #a05cff 100%);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
	transform: translateY(-1px);
}

.humberger-menu-wrapper.show-humberger-menu {
	left: 0;
	opacity: 1;
	visibility: visible;
}

.humberger-menu-wrapper .hw-logo {
	margin-bottom: 65px;
}

.humberger-menu-wrapper .hw-logo a {
	display: inline-block;
}

.humberger-menu-wrapper .hw-menu {
	display: none;
}

.humberger-menu-wrapper .hw-menu ul li {
	list-style: none;
}

.humberger-menu-wrapper .hw-menu ul li .dropdown {
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.7s ease-out;
	-o-transition: all 0.7s ease-out;
	transition: all 0.7s ease-out;
}

.humberger-menu-wrapper .hw-menu ul li .dropdown li a {
	color: #c4c4c4;
	font-size: 14px;
	padding-left: 20px;
	border: none;
	font-family: "Space Grotesk", sans-serif;
}

.humberger-menu-wrapper .hw-menu ul li:hover>a {
	color: #9b4dd8;
}

.humberger-menu-wrapper .hw-menu ul li a {
	font-size: 16px;
	color: #ffffff;
	text-transform: uppercase;
	font-family: "Space Grotesk", sans-serif;
	padding: 15px 0;
	border-bottom: 1px solid #151515;
	display: block;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	font-weight: 600;
}

.humberger-menu-wrapper .hw-menu ul li a i {
	font-size: 18px;
	margin-left: 5px;
}

.humberger-menu-wrapper .hw-menu ul li:last-child a {
	border-bottom: none;
}

.humberger-menu-wrapper .slicknav_menu {
	background: transparent;
	padding: 0;
	margin-bottom: 35px;
}

.humberger-menu-wrapper .slicknav_nav ul {
	margin: 0;
}

.humberger-menu-wrapper .slicknav_nav .slicknav_arrow {
	display: none;
}

.humberger-menu-wrapper .slicknav_nav .slicknav_row,
.humberger-menu-wrapper .slicknav_nav a {
	padding: 12px 0;
	margin: 0;
	text-transform: uppercase;
	font-size: 16px;
	color: #ffffff;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
}

.humberger-menu-wrapper .slicknav_nav .slicknav_row i,
.humberger-menu-wrapper .slicknav_nav a i {
	font-size: 18px;
	margin-left: 5px;
}

.humberger-menu-wrapper .slicknav_nav li {
	border-bottom: 1px solid #252525;
}

.humberger-menu-wrapper .slicknav_nav li:last-child {
	border-bottom: none;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown {
	border-top: 1px solid #252525;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown li {
	border-bottom: none;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown li a {
	padding-left: 20px;
	font-size: 14px;
	color: #c4c4c4;
	font-family: "Space Grotesk", sans-serif;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown li a:hover {
	color: #9b4dd8;
}

.humberger-menu-wrapper .slicknav_nav .slicknav_row:hover {
	border-radius: 0;
	background: transparent;
	color: #9b4dd8;
}

.humberger-menu-wrapper .slicknav_nav a:hover {
	border-radius: 0;
	background: transparent;
	color: #9b4dd8;
}

.humberger-menu-wrapper .slicknav_btn {
	display: none;
}

.humberger-menu-wrapper .slicknav_nav {
	display: block !important;
}

.humberger-menu-wrapper .hw-copyright {
	font-size: 15px;
	color: #c4c4c4;
	line-height: 25px;
	margin-bottom: 24px;
	font-family: "Space Grotesk", sans-serif;
}

.humberger-menu-wrapper .hw-social {
	margin-left: 7px;
	margin-bottom: 55px;
}

.humberger-menu-wrapper .hw-social a {
	display: inline-block;
	font-size: 14px;
	color: #ffffff;
	background: #252525;
	height: 46px;
	width: 46px;
	line-height: 46px;
	text-align: center;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	margin-right: 4px;
}

.humberger-menu-wrapper .hw-social a i {
	display: inline-block;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.humberger-menu-wrapper .hw-insta-media {
	overflow: hidden;
}

.humberger-menu-wrapper .hw-insta-media .section-title {
	margin-bottom: 25px;
}

.humberger-menu-wrapper .hw-insta-media .insta-pic {
	overflow: hidden;
	margin-right: -10px;
}

.humberger-menu-wrapper .hw-insta-media .insta-pic img {
	width: calc(50% - 10px);
	float: left;
	margin-bottom: 10px;
	margin-right: 10px;
}

/*---------------------
  Header
-----------------------*/

.ht-options {
	background: #080808;
	padding: 8px 0;
}

.ht-options .ht-widget ul li {
	font-size: 13px;
	color: #c4c4c4;
	list-style: none;
	display: inline-block;
	margin-right: 15px;
	position: relative;
	font-family: "Space Grotesk", sans-serif;
}

.ht-options .ht-widget ul li.signup-open {
	cursor: pointer;
}

.ht-options .ht-widget ul li i {
	font-size: 14px;
	color: #ffffff;
	margin-right: 5px;
}

.ht-options .ht-widget ul li a {
	color: #ffffff;
	transition: color 0.3s ease;
}

.ht-options .ht-widget ul li a:hover {
	color: #8b45c3;
}

.ht-options .ht-widget ul li span {
	font-size: 14px;
	color: #eaeaea;
	font-family: "Space Grotesk", sans-serif;
}

.ht-options .ht-widget ul li span sup {
	font-size: 12px;
	text-transform: uppercase;
}

.ht-options .ht-widget ul li:last-child {
	margin-right: 0;
}

.ht-options .ht-widget ul li:last-child:after {
	display: none;
}

.ht-options .ht-social {
	text-align: right;
}

.ht-options .ht-social a {
	font-size: 14px;
	color: #ffffff;
	display: inline-block;
	margin-left: 9px;
	font-family: "Space Grotesk", sans-serif;
}

.ht-options .ht-widget .mobile-lang-wrap {
	display: none;
}

.ht-widget .sep {
	margin-left: 1px;
	margin-right: 1px;
	color: #eaeaea4d;
}

.logo {
	background: #0d0d0d;
	/* Reduced vertical padding to make the black header smaller; keep logo size unchanged */
	padding: 12px 0;
}

.logo a {
	display: inline-block;
}

/* Logo image sizing: central control for header and mobile menu */
.site-logo {
	width: 340px;
	height: auto;
	max-width: 100%;
	display: block;
}

@media (max-width: 992px) {
	.site-logo {
		width: 260px;
	}
}

@media (max-width: 576px) {
	.site-logo {
		width: 200px;
	}
}

.nav-options {
	background: transparent;
	padding: 0 0;
	position: relative;
	z-index: 50;
}

/* Tighten navbar height without changing button/logo sizes */
.nav-options {
	padding-top: 0;
	padding-bottom: 0;
	margin-bottom: -14px;
}

/* Inset navbar background without resizing content */
.nav-options::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 4px;
	left: 0;
	right: 0;
	background: #6a2ba8;
	z-index: 0;
}

.nav-options > .container,
.nav-options .nav-bar,
.nav-options .nav-left,
.nav-options .nav-center,
.nav-options .nav-right {
	padding-top: 0;
	padding-bottom: 0;
	min-height: 0;
	line-height: normal;
	align-items: center;
}

.nav-options .container {
	position: relative;
	z-index: 1;
}

/* Navbar should span full width so the logo sits closer to the left edge */
.nav-options > .container {
	max-width: 100% !important;
	padding-left: 2cm !important;
	padding-right: 12px !important;
}

.nav-options .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.nav-options.humberger-change {
	background: transparent;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-options.humberger-change::before {
	background: #6c2b96;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-options.humberger-change .humberger-menu {
	background: #6c2b96;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-options.humberger-change .nav-menu ul li a {
	background: #6c2b96;
}

.nav-options.humberger-change .nav-search {
	background: #6c2b96;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-options .nav-left {
	display: flex;
	align-items: center;
	gap: 4px;
	flex: 0 0 auto;
}

.nav-options .nav-center .nav-menu {
	flex: 0 1 auto;
	text-align: center;
}

.nav-options .nav-center .nav-menu ul {
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-options .nav-center .nav-menu ul li {
	margin-right: 4px;
}

.nav-logo {
	display: flex;
	align-items: center;
}

.nav-logo .site-logo {
	display: block;
}

.nav-options .nav-center {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex: 1 1 auto;
}

/* Extra spacing between Profil and Creează anunț */
.nav-options .nav-center .btn-create-announce {
	margin-left: 2.5cm;
}

.nav-options .nav-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nav-options .nav-right .admin-link {
	margin-left: 0;
}

.nav-options .humberger-menu {
	font-size: 15px;
	color: #ffffff;
	background: linear-gradient(135deg, #b66dff 0%, #8c48e8 100%);
	padding: 15px 28px;
	border: none;
	outline: none;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	box-shadow: 0 8px 14px rgba(0, 0, 0, 0.22);
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
}

.nav-options .humberger-menu i {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.nav-options .humberger-menu:hover {
	background: linear-gradient(135deg, #e3b2ff 0%, #b66dff 100%);
	box-shadow: 0 12px 18px rgba(0, 0, 0, 0.26);
}

.nav-options .nav-menu {
	text-align: center;
	flex: 1 1 auto;
}

.nav-options .nav-menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 4px;
	position: relative;
}

.nav-options .nav-menu ul li.mega-menu {
	position: static;
}

.nav-options .nav-menu ul li .megamenu-wrapper {
	position: absolute;
	left: 50%;
	top: 295px;
	width: 1170px;
	background: #080808;
	z-index: 99;
	-webkit-transform: translateX(-585px);
	-ms-transform: translateX(-585px);
	transform: translateX(-585px);
	padding: 24px 30px 24px 30px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav {
	text-align: left;
	position: relative;
	padding-left: 18px;
	margin-bottom: 24px;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav::before {
	position: absolute;
	left: 0;
	top: 6px;
	height: 13px;
	width: 7px;
	background: #812acf;
	content: "";
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav li {
	margin-right: 40px;
	position: relative;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav li:last-child:after {
	display: none;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav li:after {
	position: absolute;
	right: -25px;
	top: 2px;
	content: "/";
	color: #444444;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav li a {
	padding: 0;
	background: transparent;
	font-size: 14px;
	font-weight: 500;
	font-style: normal;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	font-family: "Space Grotesk", sans-serif;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav li a:hover {
	color: #812acf;
	text-shadow: none;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post {
	overflow: hidden;
	margin-right: -30px;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post .mw-post-item {
	width: calc(20% - 30px);
	float: left;
	margin-right: 30px;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post .mw-post-item .mw-text {
	text-align: left;
	padding-top: 15px;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post .mw-post-item .mw-text h6 {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post .mw-post-item .mw-text h6 a {
	font-size: 13px;
	font-weight: 70;
	line-height: 20px;
	color: #ffffff;
	text-transform: uppercase;
	background: transparent;
	padding: 0;
	font-style: normal;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post .mw-post-item .mw-text ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post .mw-post-item .mw-text ul li i {
	margin-right: 4px;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post .mw-post-item .mw-text ul li:last-child {
	margin-right: 0;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post .mw-post-item .mw-text ul li:last-child:after {
	display: none;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post .mw-post-item .mw-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

.nav-options .nav-menu ul li .dropdown {
	position: absolute;
	left: -7px;
	top: 62px;
	width: 180px;
	background: #252525;
	z-index: 99;
	text-align: left;
	padding: 13px 0 20px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.nav-options .nav-menu ul li .dropdown li {
	margin-right: 0;
	display: block;
}

.nav-options .nav-menu ul li .dropdown li a {
	display: block;
	text-transform: none;
	padding: 6px 0 6px 30px;
	font-weight: 400;
	-webkit-transform: skewX(0);
	-ms-transform: skewX(0);
	transform: skewX(0);
	background: transparent;
	font-family: "Space Grotesk", sans-serif;
}

.nav-options .nav-menu ul li .dropdown li a:after {
	display: none;
}

.nav-options .nav-menu ul li:last-child {
	margin-right: 0;
}

.nav-options .nav-menu ul li.active a {
	background: linear-gradient(135deg, #d17bff 0%, #9b4dd8 100%);
	box-shadow: 0 10px 16px rgba(0, 0, 0, 0.24);
}

.nav-options .nav-menu ul li:hover>a {
	background: linear-gradient(135deg, #e3b2ff 0%, #b66dff 100%);
	text-shadow: 1px 0px 0px #ffffff;
	box-shadow: 0 10px 16px rgba(0, 0, 0, 0.24);
}

.nav-options .nav-menu ul li:hover .megamenu-wrapper {
	opacity: 1;
	visibility: visible;
	top: 275px;
}

.nav-options .nav-menu ul li:hover .dropdown {
	opacity: 1;
	visibility: visible;
}

.nav-options .nav-menu ul li a {
	font-size: 15px;
	color: #ffffff;
	font-family: "Space Grotesk", sans-serif;
	text-transform: uppercase;
	padding: 12px 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #b66dff 0%, #8c48e8 100%);
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 10px;
	box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
	font-weight: 600;
	line-height: 1;
}

.nav-options .nav-menu ul li a span {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
	display: inline-block;
}

.nav-options .nav-menu ul li a span i {
	font-size: 14px;
	margin-left: 3px;
}

.nav-options .nav-search {
	font-size: 15px;
	color: #ffffff;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	background: linear-gradient(135deg, #b66dff 0%, #8c48e8 100%);
	padding: 14px 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
	outline: none;
	line-height: 1;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
}

.nav-options .nav-search i {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.nav-options .nav-search:hover {
	background: linear-gradient(135deg, #e3b2ff 0%, #b66dff 100%);
	box-shadow: 0 10px 16px rgba(0, 0, 0, 0.24);
}

.btn-create-announce {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 22px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	color: #ffffff;
	background: linear-gradient(135deg, #d17bff 0%, #9b4dd8 100%);
	border-radius: 12px;
	-webkit-transform: skewX(-12deg);
	-ms-transform: skewX(-12deg);
	transform: skewX(-12deg);
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
	letter-spacing: 0.5px;
	border: none;
	font-family: "Space Grotesk", sans-serif;
}

.btn-create-announce span {
	display: inline-block;
	-webkit-transform: skewX(12deg);
	-ms-transform: skewX(12deg);
	transform: skewX(12deg);
}

.btn-create-announce:hover {
	background: linear-gradient(135deg, #e3b2ff 0%, #b66dff 100%);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
	color: #ffffff;
}

.btn-create-announce:active {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
	-webkit-transform: skewX(-12deg) translateY(1px);
	-ms-transform: skewX(-12deg) translateY(1px);
	transform: skewX(-12deg) translateY(1px);
}

/* Conversations Button */
.btn-conversations {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #d17bff 0%, #9b4dd8 100%);
	border: none;
	border-radius: 50%;
	color: #ffffff;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.btn-conversations:hover {
	background: linear-gradient(135deg, #e3b2ff 0%, #b66dff 100%);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
	color: #ffffff;
	text-decoration: none;
}

.btn-conversations:active {
	transform: translateY(0);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-conversations i {
	color: #ffffff;
}

.conversation-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background: #ff4444;
	color: #ffffff;
	font-family: "Space Grotesk", sans-serif;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 6px;
	border-radius: 10px;
	min-width: 18px;
	text-align: center;
	line-height: 1.4;
	border: 2px solid #ffffff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.conversation-badge.hidden {
	display: none;
}

/* ===============================
   Notifications Button & Wrapper
================================ */

.notifications-wrapper {
    position: relative; /* ancora dropdown-ul */
}

/* ===============================
   Notifications Button
================================ */

.btn-notifications {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    background: linear-gradient(135deg, #d17bff 0%, #9b4dd8 100%);
    border: none;
    border-radius: 50%;

    color: #ffffff;
    font-size: 18px;
    cursor: pointer;

    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-notifications:hover {
    background: linear-gradient(135deg, #e3b2ff 0%, #b66dff 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-notifications:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-notifications i {
    color: #ffffff;
}

/* ===============================
   Notification Badge
================================ */

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;

    background: #ff4444;
    color: #ffffff;

    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    font-weight: 700;

    padding: 2px 6px;
    min-width: 18px;
    text-align: center;
    line-height: 1.4;

    border-radius: 10px;
    border: 2px solid #ffffff;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.notification-badge.hidden {
    display: none;
}

/* ===============================
   Notifications Dropdown
================================ */

.notifications-dropdown {
    display: none;
    position: absolute;

    top: calc(100% + 12px); /* sub buton, mereu */
    right: 0;

    width: 360px;
    max-width: calc(100vw - 40px);

    background: var(--card-bg);
    border: 1px solid var(--border-muted);
    border-radius: 16px;

    box-shadow: var(--shadow-md);
    z-index: 1000;

    overflow: hidden;
}

.notifications-dropdown.is-open {
    display: block;
}

/* ===============================
   Dropdown Header
================================ */

.notifications-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-muted);
    background: rgba(129, 42, 207, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.notifications-header h6 {
    margin: 0;
    flex: 1;

    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;

    color: var(--text-primary);
}

.notifications-mark-all {
    padding: 6px 10px;
    border: 1px solid rgba(179, 116, 255, 0.24);
    border-radius: 999px;
    background: rgba(129, 42, 207, 0.14);
    color: #f2e5ff;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.notifications-mark-all:hover {
    background: rgba(129, 42, 207, 0.24);
    border-color: rgba(179, 116, 255, 0.38);
}

.notifications-mark-all:disabled {
    opacity: 0.45;
    cursor: default;
}

.notifications-mobile-btn,
.notifications-mobile-title-wrap,
.notifications-mobile-title,
.notifications-mobile-unread-badge {
	display: none;
}

.notifications-mobile-unread-badge.hidden {
	display: none;
}

/* Mobile notifications overlay panel - placed at body level, no stacking context issues */
.mobile-notifications-panel {
    display: none;
    position: fixed;
    top: 0;
	bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
	height: 100dvh;
    z-index: 9999;
    background: #060a12;
    flex-direction: column;
    overflow: hidden;
}

.mobile-notifications-panel.is-open {
    display: flex;
}

.mobile-notifications-panel__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    height: 56px;
    flex-shrink: 0;
    background: #060a12;
    border-bottom: 1px solid rgba(129, 42, 207, 0.18);
}

.mnp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-size: 16px;
    padding: 0;
    cursor: pointer;
}

.mnp-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    padding-left: 4px;
}

.mnp-title {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1.2;
}

.mnp-unread-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #ff4444;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

.mnp-unread-badge.hidden {
    display: none;
}

.mobile-notifications-panel__list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
	padding: 6px 0 calc(24px + env(safe-area-inset-bottom, 0px));
}

.mobile-notifications-panel__list .notification-item {
    padding: 16px 14px;
    gap: 14px;
    border-bottom: none;
    background: transparent;
}

.mobile-notifications-panel__list .notification-item.unread {
    background: rgba(129, 42, 207, 0.07);
}

.mobile-notifications-panel__list .notification-item.read::before,
.mobile-notifications-panel__list .notification-item.unread::before {
    width: 2px;
}

.mobile-notifications-panel__list .notification-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.mobile-notifications-panel__list .notification-icon {
    width: 46px;
    height: 46px;
    font-size: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-notifications-panel__list .notification-title {
    font-size: 15px;
    margin-bottom: 2px;
}

.mobile-notifications-panel__list .notification-item.unread .notification-title {
    font-weight: 700;
}

.mobile-notifications-panel__list .notification-text {
    font-size: 14px;
    line-height: 1.45;
    color: #d4d7e1;
    margin-bottom: 4px;
}

.mobile-notifications-panel__list .notification-time {
    font-size: 13px;
    color: #8f94a3;
}

body.notifications-mobile-open {
	overflow: hidden;
}

/* ===============================
   Notifications List
================================ */

.notifications-list {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

.notifications-list::-webkit-scrollbar {
    width: 6px;
}

.notifications-list::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

.notifications-list::-webkit-scrollbar-thumb {
    background: var(--border-muted);
    border-radius: 3px;
}

.notifications-list::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* ===============================
   Notification Item
================================ */

.notification-item {
    position: relative;

    padding: 16px 20px;
    border-bottom: 1px solid var(--border-muted);

    display: flex;
    align-items: flex-start;
    gap: 12px;

    cursor: pointer;
    transition: background 0.3s ease;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: rgba(129, 42, 207, 0.05);
}

.notification-item.unread {
    background: rgba(129, 42, 207, 0.08);
}

.notification-item.read::before,
.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;

    width: 3px;
    border-radius: 999px;
    background: var(--brand-primary);
    transition: opacity 0.3s ease;
}

.notification-item.read::before {
    opacity: 0.22;
}

.notification-item.unread::before {
    opacity: 1;
}

/* ===============================
   Notification Icon
================================ */

.notification-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    border-radius: 50%;
    background: linear-gradient(
            135deg,
            var(--brand-primary) 0%,
            var(--brand-primary-dark) 100%
    );

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    color: var(--text-primary);
}

.notification-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
	padding: 0;
	appearance: none;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(167, 139, 250, 0.26);
    background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.notification-avatar:hover {
	transform: translateY(-1px);
	border-color: rgba(167, 139, 250, 0.48);
	box-shadow: 0 10px 22px rgba(10, 10, 18, 0.28);
}

.notification-avatar:focus-visible {
	outline: 2px solid rgba(167, 139, 250, 0.8);
	outline-offset: 2px;
}

.notification-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===============================
   Notification Content
================================ */

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    margin: 0 0 4px 0;

    font-family: "Space Grotesk", sans-serif;
    font-size: 14px;
    font-weight: 600;

    color: var(--text-primary);
    line-height: 1.4;
}

.notification-proposal-title {
	display: flex;
	align-items: baseline;
	gap: 4px 6px;
	flex-wrap: wrap;
}

.notification-profile-trigger {
	padding: 0;
	appearance: none;
	border: 0;
	background: transparent;
	font: inherit;
	color: var(--text-primary);
	cursor: pointer;
}

.notification-profile-trigger--name {
	font: inherit;
	font-weight: 700;
	line-height: inherit;
}

.notification-profile-trigger--name:hover,
.notification-profile-trigger--name:focus-visible {
	color: var(--brand-primary-light);
	text-decoration: underline;
}

.notification-proposal-title-text {
	color: var(--text-primary);
}

.notification-text {
    margin: 0 0 6px 0;

    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;

    color: var(--text-secondary);
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-time {
    margin: 0;

    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;

    color: var(--text-secondary);
}

.notification-content--proposal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-proposal-summary {
    font-family: "Space Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.notification-proposal-note {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.74);
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(129, 42, 207, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.14);
}

.notification-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.notification-proposal-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(129, 42, 207, 0.12);
    color: var(--brand-primary-light);
    font-family: "Space Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.notification-actions {
    display: flex;
    justify-content: flex-end;
	gap: 8px;
	flex-wrap: nowrap;
    margin-top: 2px;
}

.notification-item--proposal .notification-action-btn {
	flex: 1 1 0;
	min-width: 0;
	text-align: center;
	white-space: nowrap;
}

.notification-action-btn {
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    padding: 7px 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.notification-action-btn:hover {
    transform: translateY(-1px);
    background: rgba(129, 42, 207, 0.12);
    border-color: rgba(167, 139, 250, 0.52);
}

.notification-action-btn:disabled {
    opacity: 0.55;
    cursor: wait;
    transform: none;
}

.notification-action-btn--primary {
    background: linear-gradient(135deg, var(--brand-primary-light), var(--brand-primary));
    border-color: transparent;
    color: #08090f;
}

.notification-action-btn--primary:hover {
    background: linear-gradient(135deg, #c5a7ff, #9d62ff);
}


.navbar-search-panel {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 12px 16px;
	background: linear-gradient(135deg, rgba(58, 21, 95, 0.98) 0%, rgba(100, 37, 160, 0.95) 100%);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
	border-bottom-left-radius: 14px;
	border-bottom-right-radius: 14px;
}

.navbar-search-panel.is-open {
	display: block;
}

.navbar-search-form {
	display: flex;
	align-items: center;
	gap: 12px;
}

.navbar-search-form input {
	flex: 1;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid #d6c2ff;
	background: #ffffff;
	color: #2d1948;
	font-size: 14px;
}

.navbar-search-form input:focus {
	border-color: #b66dff;
	box-shadow: 0 0 0 3px rgba(182, 109, 255, 0.25);
}

.navbar-search-form button {
	padding: 12px 16px;
	background: linear-gradient(135deg, #c77dff 0%, #8f48e8 100%);
	border: none;
	color: #ffffff;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transform: skewX(-8deg);
	-ms-transform: skewX(-8deg);
	transform: skewX(-8deg);
	box-shadow: 0 8px 14px rgba(0, 0, 0, 0.25);
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
}

.navbar-search-form button i {
	-webkit-transform: skewX(8deg);
	-ms-transform: skewX(8deg);
	transform: skewX(8deg);
}

.navbar-search-form button:hover {
	background: linear-gradient(135deg, #e3b2ff 0%, #b66dff 100%);
}

.main-search-bar {
	width: 100%;
	background: linear-gradient(135deg, rgba(107, 43, 168, 0.12), rgba(199, 125, 255, 0.12));
	border-radius: 16px;
	padding: 12px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.main-search-form {
	width: 100%;
}

.main-search-shell {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #ffffff;
	border: 2px solid #ede1ff;
	border-radius: 14px;
	padding: 8px 12px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.main-search-shell .main-search-icon {
	font-size: 16px;
	color: #8f48e8;
}

.main-search-field {
	flex: 1;
	border: none;
	font-size: 15px;
	color: #2d1948;
	min-width: 0;
	padding: 0;
	height: auto;
	line-height: 1.4;
}

.main-search-field::placeholder {
	color: #7d6c9f;
}

.main-search-field:focus {
	outline: none;
}

.main-search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 14px;
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 0.3px;
	font-size: 14px;
	background: linear-gradient(135deg, #c77dff 0%, #8f48e8 100%);
	border: none;
	border-radius: 10px;
	text-transform: uppercase;
	-webkit-transform: skewX(-10deg);
	-ms-transform: skewX(-10deg);
	transform: skewX(-10deg);
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	font-family: "Space Grotesk", sans-serif;
}

.main-search-submit span {
	display: inline-block;
	-webkit-transform: skewX(10deg);
	-ms-transform: skewX(10deg);
	transform: skewX(10deg);
}

.main-search-submit:hover {
	background: linear-gradient(135deg, #e3b2ff 0%, #b66dff 100%);
	color: #ffffff;
}

/*---------------------
  Hero
-----------------------*/

.hero-section {
	position: relative;
	padding: 160px 0;
}

.hero-section .container {
	position: relative;
	z-index: 9;
}

.hs-text {
	padding-top: 160px;
	margin-bottom: 50px;
}

.hs-text .label {
	display: inline-block;
	padding: 4px 7px 4px 12px;
	background: #7a3bb7;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
}

.hs-text .label span {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
	display: inline-block;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
	font-family: "Space Grotesk", sans-serif;
}

.hs-text h3 {
	color: #ffffff;
	line-height: 42px;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 18px;
	margin-bottom: 20px;
}

.hs-text .ht-meta img {
	height: 42px;
	width: 42px;
	border-radius: 50%;
	display: inline-block;
	margin-right: 5px;
}

.hs-text .ht-meta ul {
	display: inline-block;
}

.hs-text .ht-meta ul li {
	list-style: none;
	font-size: 14px;
	color: #c4c4c4;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.hs-text .ht-meta ul li:last-child {
	margin-right: 0;
}

.hs-text .ht-meta ul li:last-child:after {
	display: none;
}

.hs-text .ht-meta ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #eaeaea;
}

.trending-post {
	background: #000000;
	padding: 35px 30px 40px 40px;
}

.trending-slider.owl-carousel .owl-nav {
	position: absolute;
	right: 0;
	top: -64px;
}

.trending-slider.owl-carousel .owl-nav button {
	font-size: 24px;
	color: #eaeaea4d;
}

.trending-slider.owl-carousel .owl-nav button:hover {
	color: #eaeaeae0;
}

.trending-slider.owl-carousel .owl-nav button.owl-prev {
	margin-right: -7px;
}

.trending-item {
	overflow: hidden;
	margin-bottom: 40px;
}

.trending-item:last-child {
	margin-bottom: 0;
}

.trending-item .ti-pic {
	float: left;
    padding-left: 17px;
}

.trending-item .ti-text {
	overflow: hidden;
}

.trending-item .ti-text h6 {
	margin-bottom: 4px;
}

.trending-item .ti-text h6 a {
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 20px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.trending-item .ti-text h6 a:hover {
	color: #812acf;
}

.trending-item .ti-text ul li {
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	margin-right: 22px;
	position: relative;
	font-style: italic;
}

.trending-item .ti-text ul li i {
	margin-right: 5px;
}

.trending-item .ti-text ul li:last-child {
	margin-right: 0;
}

.trending-item .ti-text ul li:last-child:after {
	display: none;
}

.trending-item .ti-text ul li:after {
	position: absolute;
	right: -14px;
	top: 2px;
	content: "/";
}

.hero-slider {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.hero-slider.owl-carousel .owl-dots {
	position: relative;
	left: 0;
	bottom: 160px;
	max-width: 1140px;
	margin: 0 auto;
}

.hero-slider.owl-carousel .owl-dots button {
	height: 10px;
	width: 10px;
	border-radius: 50%;
	background: #676868;
	margin-right: 10px;
}

.hero-slider.owl-carousel .owl-dots button.active {
	background: #812acf;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .hs-item {
	height: 100%;
}

/*-------------------------
  Latest Preview Section
-------------------------*/

.latest-preview-section {
	background: #080808;
	padding-top: 65px;
	padding-bottom: 34px;
}

.latest-preview-section.page-404 {
	background: #0d0d0d;
	padding-bottom: 65px;
}

.lp-slider.owl-carousel .owl-dots {
	text-align: center;
	padding-top: 36px;
}

.lp-slider.owl-carousel .owl-dots button {
	height: 10px;
	width: 10px;
	border-radius: 50%;
	background: #676868;
	margin-right: 10px;
}

.lp-slider.owl-carousel .owl-dots button.active {
	background: #812acf;
}

.lp-slider.owl-carousel .owl-nav {
	position: absolute;
	right: 8px;
	top: -64px;
}

.lp-slider.owl-carousel .owl-nav button {
	font-size: 24px;
	color: #eaeaea4d;
}

.lp-slider.owl-carousel .owl-nav button:hover {
	color: #eaeaeae0;
}

.lp-slider.owl-carousel .owl-nav button.owl-prev {
	margin-right: -7px;
}

.lp-slider .col-lg-3 {
	max-width: 100%;
}

.lp-item .lp-pic {
	height: 180px;
	position: relative;
}

.lp-item .lp-pic .review-loader {
	background: rgba(0, 0, 0, 0.5);
	display: inline-block;
	border-radius: 50%;
	height: 40px;
	width: 40px;
	position: absolute;
	right: 10px;
	top: 10px;
}

.lp-item .lp-pic .review-loader .review-point {
	font-size: 14px;
	color: #ffffff;
	font-weight: 500;
	text-align: center;
	position: absolute;
	left: 10px;
	top: 10px;
}

.lp-item .lp-text {
	padding-top: 25px;
}

.lp-item .lp-text h6 {
	margin-bottom: 4px;
}

.lp-item .lp-text h6 a {
	color: #ffffff;
	line-height: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.lp-item .lp-text ul li {
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	margin-right: 22px;
	position: relative;
}

.lp-item .lp-text ul li i {
	margin-right: 5px;
}

.lp-item .lp-text ul li:last-child {
	margin-right: 0;
}

.lp-item .lp-text ul li:last-child:after {
	display: none;
}

.lp-item .lp-text ul li:after {
	position: absolute;
	right: -14px;
	top: 2px;
	content: "/";
}

/*----------------------
  Update News Section 
------------------------*/

.update-news-section {
	background: #0d0d0d;
	padding-top: 65px;
	padding-bottom: 30px;
}

.tab-elem .nav-tabs {
	border: none;
	position: absolute;
	right: 36px;
	top: 2px;
}

.tab-elem .nav-item {
	margin-right: 30px;
}

.tab-elem .nav-item .nav-link {
	font-size: 14px;
	color: #c4c4c4;
	letter-spacing: 1px;
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0;
}

.tab-elem .nav-item .nav-link.active {
	color: #812acf;
	background-color: transparent;
	border-color: transparent;
}

.un-slider.owl-carousel .owl-nav {
	position: absolute;
	right: 8px;
	top: -64px;
}

.un-slider.owl-carousel .owl-nav button {
	font-size: 24px;
	color: #eaeaea4d;
}

.un-slider.owl-carousel .owl-nav button:hover {
	color: #eaeaeae0;
}

.un-slider.owl-carousel .owl-nav button.owl-prev {
	margin-right: -7px;
}

.un-slider .un-big-item {
	height: 540px;
	position: relative;
	margin-bottom: 30px;
}

.un-slider .un-big-item .ub-text {
	position: absolute;
	left: 0;
	bottom: 25px;
	width: 100%;
	padding: 0 30px;
}

.un-slider .un-big-item .ub-text .label {
	display: inline-block;
	padding: 2px 7px 2px 12px;
	background: #782bb7;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
}

.un-slider .un-big-item .ub-text .label span {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
	display: inline-block;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
}

.un-slider .un-big-item .ub-text h5 {
	margin-top: 16px;
	margin-bottom: 2px;
}

.un-slider .un-big-item .ub-text h5 a {
	color: #ffffff;
	line-height: 28px;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 700;
}

.un-slider .un-big-item .ub-text ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.un-slider .un-big-item .ub-text ul li i {
	margin-right: 4px;
}

.un-slider .un-big-item .ub-text ul li span {
	color: #812acf;
}

.un-slider .un-big-item .ub-text ul li:last-child {
	margin-right: 0;
}

.un-slider .un-big-item .ub-text ul li:last-child:after {
	display: none;
}

.un-slider .un-big-item .ub-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

.un-slider .un-item {
	margin-bottom: 30px;
}

.un-slider .un-item .un_pic {
	height: 166px;
	position: relative;
}

.un-slider .un-item .un_pic .label {
	display: inline-block;
	padding: 2px 7px 2px 12px;
	background: #7a2bb9;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	position: absolute;
	left: 12px;
	bottom: 10px;
}

.un-slider .un-item .un_pic .label span {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
	display: inline-block;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
}

.un-slider .un-item .un_text {
	padding-top: 15px;
}

.un-slider .un-item .un_text h6 {
	margin-bottom: 4px;
}

.un-slider .un-item .un_text h6 a {
	font-size: 14px;
	color: #ffffff;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
}

.un-slider .un-item .un_text ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.un-slider .un-item .un_text ul li i {
	margin-right: 4px;
}

.un-slider .un-item .un_text ul li:last-child {
	margin-right: 0;
}

.un-slider .un-item .un_text ul li:last-child:after {
	display: none;
}

.un-slider .un-item .un_text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

.sidebar-option {
	padding-left: 30px;
}

.sidebar-option .social-media {
	margin-bottom: 55px;
}

.sidebar-option .social-media ul li {
	border: 1px solid #222222;
	font-size: 14px;
	color: #ffffff;
	list-style: none;
	height: 46px;
	line-height: 46px;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	padding: 0 18px 0 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 15px;
}

.sidebar-option .social-media ul li:hover {
	border-color: #40c4ff;
}

.sidebar-option .social-media ul li:hover .sm-icon {
	background: #40c4ff;
}

.sidebar-option .social-media ul li .sm-icon {
	display: inline-block;
	padding: 0 20px 0 18px;
	background: #252525;
	height: 45px;
	margin-right: 10px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.sidebar-option .social-media ul li .sm-icon i {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.sidebar-option .social-media ul li span {
	display: inline-block;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.sidebar-option .social-media ul li .follow {
	display: inline-block;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
	float: right;
}

.sidebar-option .hardware-guides {
	margin-bottom: 50px;
}

/*---------------------
  Video Guides Section
-----------------------*/

.video-guide-section {
	background: #080808;
	padding-top: 55px;
	padding-bottom: 50px;
}

.video-guide-section .tab-elem {
	position: relative;
}

.video-guide-section .tab-elem .nav-tabs {
	top: -58px;
	right: 25px;
}

.vg-slider.owl-carousel .owl-nav {
	position: absolute;
	right: 8px;
	top: -64px;
}

.vg-slider.owl-carousel .owl-nav button {
	font-size: 24px;
	color: #eaeaea4d;
}

.vg-slider.owl-carousel .owl-nav button:hover {
	color: #eaeaeae0;
}

.vg-slider.owl-carousel .owl-nav button.owl-prev {
	margin-right: -7px;
}

.vg-item {
	height: 252px;
	position: relative;
	margin-bottom: 15px;
	margin-left: -7.5px;
	margin-right: -7.5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.vg-item.large-vg {
	height: 384px;
}

.vg-item.large-vg .vg-text h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	line-height: 28px;
	text-transform: uppercase;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

.vg-item.large-vg .vg-text ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.vg-item.large-vg .vg-text ul li i {
	margin-right: 4px;
}

.vg-item.large-vg .vg-text ul li:last-child {
	margin-right: 0;
}

.vg-item.large-vg .vg-text ul li:last-child:after {
	display: none;
}

.vg-item.large-vg .vg-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

.vg-item .play-btn {
	font-size: 25px;
	color: #812acf;
	position: relative;
	z-index: 99;
}

.vg-item .vg-text {
	position: absolute;
	left: 0;
	bottom: 25px;
	width: 100%;
	padding: 0 30px;
}

.vg-item .vg-text h6 {
	color: #ffffff;
	font-weight: 700;
	line-height: 22px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/*-------------------------
  Instagram Post Section
-------------------------*/

.instagram-post-section {
	background: #0d0d0d;
	padding: 70px 0;
}

.ip-item {
	margin-bottom: 40px;
	overflow: hidden;
}

.ip-item .ip-pic {
	float: left;
	margin-right: 30px;
	max-width: 370px;
}

.ip-item .ip-text {
	overflow: hidden;
}

.ip-item .ip-text .label {
	display: inline-block;
	padding: 2px 10px 2px 12px;
	background: #7b2bb7;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	margin-left: 4px;
}

.ip-item .ip-text .label span {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
	display: inline-block;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
}

.ip-item .ip-text h5 {
	margin-top: 12px;
	margin-bottom: 8px;
}

.ip-item .ip-text h5 a {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 28px;
	letter-spacing: 0.5px;
}

.ip-item .ip-text ul {
	margin-bottom: 14px;
}

.ip-item .ip-text ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.ip-item .ip-text ul li i {
	margin-right: 4px;
}

.ip-item .ip-text ul li span {
	color: #812acf;
}

.ip-item .ip-text ul li:last-child {
	margin-right: 0;
}

.ip-item .ip-text ul li:last-child:after {
	display: none;
}

.ip-item .ip-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

.ip-item .ip-text p {
	margin-bottom: 0;
}

.pagination-item a {
	display: inline-block;
	font-size: 18px;
	color: #ffffff;
	background: #252525;
	padding: 8px 18px 6px;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	margin-right: 8px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.pagination-item a:hover {
	background: #666666;
}

.pagination-item a span {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
	display: inline-block;
}

.sidebar-option .insta-media {
	margin-bottom: 45px;
}

.sidebar-option .insta-media .insta-pic {
	overflow: hidden;
	margin-right: -10px;
}

.sidebar-option .insta-media .insta-pic img {
	width: calc(50% - 10px);
	float: left;
	margin-bottom: 10px;
	margin-right: 10px;
}

.sidebar-option .best-of-post {
	margin-bottom: 50px;
}

.sidebar-option .best-of-post .bp-item {
	overflow: hidden;
	margin-bottom: 30px;
}

.sidebar-option .best-of-post .bp-item .bp-loader {
	height: 60px;
	width: 60px;
	float: left;
	margin-right: 20px;
	position: relative;
	z-index: 1;
}

.sidebar-option .best-of-post .bp-item .bp-loader:after {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	border: 2px solid #1e1e1e;
	content: "";
	border-radius: 50%;
	z-index: -1;
}

.sidebar-option .best-of-post .bp-item .bp-loader .review-point {
	font-size: 20px;
	color: #ffffff;
	font-weight: 500;
	letter-spacing: 0.5px;
	position: absolute;
	left: 15px;
	top: 15px;
}

.sidebar-option .best-of-post .bp-item .bp-text {
	overflow: hidden;
}

.sidebar-option .best-of-post .bp-item .bp-text h6 {
	margin-bottom: 4px;
}

.sidebar-option .best-of-post .bp-item .bp-text h6 a {
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
	line-height: 20px;
	text-transform: uppercase;
}

.sidebar-option .best-of-post .bp-item .bp-text ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.sidebar-option .best-of-post .bp-item .bp-text ul li i {
	margin-right: 4px;
}

.sidebar-option .best-of-post .bp-item .bp-text ul li:last-child {
	margin-right: 0;
}

.sidebar-option .best-of-post .bp-item .bp-text ul li:last-child:after {
	display: none;
}

.sidebar-option .best-of-post .bp-item .bp-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

.sidebar-option .subscribe-option .section-title {
	margin-bottom: 25px;
}

.sidebar-option .subscribe-option p {
	color: #eaeaea;
}

.sidebar-option .subscribe-option form input {
	width: 100%;
	height: 46px;
	font-size: 14px;
	color: #eaeaea;
	border: 1px solid #464646;
	padding-left: 15px;
	background: transparent;
	margin-bottom: 20px;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
}

.sidebar-option .subscribe-option form input::-webkit-input-placeholder {
	color: #eaeaea;
	-webkit-transform: skewX(15deg);
	transform: skewX(15deg);
}

.sidebar-option .subscribe-option form input::-moz-placeholder {
	color: #eaeaea;
	-webkit-transform: skewX(15deg);
	transform: skewX(15deg);
}

.sidebar-option .subscribe-option form input:-ms-input-placeholder {
	color: #eaeaea;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.sidebar-option .subscribe-option form input::-ms-input-placeholder {
	color: #eaeaea;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.sidebar-option .subscribe-option form input::placeholder {
	color: #eaeaea;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.sidebar-option .subscribe-option form button {
	font-size: 14px;
	font-weight: 600;
	color: #eaeaea;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: #7b2bb7;
	border: none;
	width: 100%;
	padding: 12px 0;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
}

.sidebar-option .subscribe-option form button span {
	display: inline-block;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

/*---------------------
  Footer
-----------------------*/

.footer-section {
	background: #080808;
	padding-top: 60px;
}

.footer-about {
	margin-bottom: 30px;
}

.footer-about .fa-logo {
	margin-bottom: 22px;
}

.footer-about .fa-logo a {
	display: inline-block;
}

.footer-about p {
	margin-bottom: 30px;
}

.footer-about .fa-social a {
	display: inline-block;
	font-size: 14px;
	color: #ffffff;
	background: #252525;
	height: 46px;
	width: 46px;
	line-height: 46px;
	text-align: center;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	margin-right: 4px;
}

.footer-about .fa-social a i {
	display: inline-block;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.editor-choice .ec-item {
	margin-bottom: 30px;
	overflow: hidden;
}

.editor-choice .ec-item .ec-pic {
	float: left;
	margin-right: 25px;
}

.editor-choice .ec-item .ec-text {
	overflow: hidden;
}

.editor-choice .ec-item .ec-text h6 {
	margin-bottom: 4px;
}

.editor-choice .ec-item .ec-text h6 a {
	font-size: 14px;
	color: #c4c4c4;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 20px;
}

.editor-choice .ec-item .ec-text ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.editor-choice .ec-item .ec-text ul li i {
	margin-right: 4px;
}

.editor-choice .ec-item .ec-text ul li:last-child {
	margin-right: 0;
}

.editor-choice .ec-item .ec-text ul li:last-child:after {
	display: none;
}

.editor-choice .ec-item .ec-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

.tags-cloud .tag-list a {
	display: inline-block;
	font-size: 13px;
	color: #c4c4c4;
	padding: 6px 12px 5px;
	border: 1px solid #363636;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	margin-right: 9px;
	margin-bottom: 15px;
}

.tags-cloud .tag-list a span {
	display: inline-block;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.copyright-area {
	border-top: 1px solid #252525;
	padding: 24px 0 18px;
	margin-top: 20px;
}

.copyright-area .ca-text {
	font-size: 14px;
	color: #c4c4c4;
}

.copyright-area .ca-text i {
	color: #812acf;
}

.copyright-area .ca-text a {
	color: #c4c4c4;
}

.copyright-area .ca-text a:hover {
	color: #812acf;
}

.copyright-area .ca-links {
	text-align: right;
}

.copyright-area .ca-links a {
	font-size: 14px;
	color: #c4c4c4;
	display: inline-block;
	margin-right: 25px;
}

.copyright-area .ca-links a:last-child {
	margin-right: 0;
}

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-text h3 {
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.breadcrumb-text h3 span {
	color: #812acf;
}

.breadcrumb-text .bt-option a {
	font-size: 15px;
	color: #eaeaea;
	display: inline-block;
	margin-right: 10px;
	position: relative;
}

.breadcrumb-text .bt-option a:after {
	position: absolute;
	right: -10px;
	top: 1px;
	content: "/";
	color: #666666;
}

.breadcrumb-text .bt-option span {
	font-size: 15px;
	color: #812acf;
	display: inline-block;
}

/*---------------------
  Categories Grid
-----------------------*/

.categories-grid-section {
	background: #0d0d0d;
	padding: 70px 0;
}

.cg-item {
	margin-bottom: 35px;
}

.cg-item .cg-pic {
	position: relative;
 height: 247px;
 overflow: hidden;
}

.cg-item .cg-pic img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

.cg-item .cg-pic .label {
	display: inline-block;
	padding: 2px 12px 2px 12px;
	background: #7f2bc0;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	position: absolute;
	left: 15px;
	bottom: 15px;
}

.cg-item .cg-pic .label span {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
	display: inline-block;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
}

.cg-item .cg-text {
	padding-top: 25px;
}

.cg-item .cg-text h5 {
	margin-bottom: 8px;
}

.cg-item .cg-text h5 a {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 28px;
}

.cg-item .cg-text ul {
	margin-bottom: 14px;
}

.cg-item .cg-text ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.cg-item .cg-text ul li i {
	margin-right: 4px;
}

.cg-item .cg-text ul li span {
	color: #812acf;
}

.cg-item .cg-text ul li:last-child {
	margin-right: 0;
}

.cg-item .cg-text ul li:last-child:after {
	display: none;
}

.cg-item .cg-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

.cg-item .cg-text p {
	margin-bottom: 0;
}

/*---------------------
  Categories List
-----------------------*/

.categories-list-section {
	background: #0d0d0d;
	padding: 70px 0;
}

.cl-item {
	overflow: hidden;
	margin-bottom: 40px;
}

.cl-item .cl-pic {
	float: left;
	margin-right: 30px;
	max-width: 370px;
 width: 370px;
 height: 247px;
 overflow: hidden;
}

.cl-item .cl-pic img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
}

.cl-item .cl-text {
	overflow: hidden;
}

.cl-item .cl-text .label {
	display: inline-block;
	padding: 2px 12px 2px 12px;
	background: #862bcd;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	margin-left: 4px;
}

.cl-item .cl-text .label span {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
	display: inline-block;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
}

.cl-item .cl-text h5 {
	margin-bottom: 8px;
	margin-top: 14px;
}

.cl-item .cl-text h5 a {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 28px;
}

.cl-item .cl-text ul {
	margin-bottom: 14px;
}

.cl-item .cl-text ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.cl-item .cl-text ul li i {
	margin-right: 4px;
}

.cl-item .cl-text ul li span {
	color: #812acf;
}

.cl-item .cl-text ul li:last-child {
	margin-right: 0;
}

.cl-item .cl-text ul li:last-child:after {
	display: none;
}

.cl-item .cl-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

.cl-item .cl-text p {
	margin-bottom: 0;
}

/*---------------------
  Details Hero Section
-----------------------*/

.details-hero-section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 780px;
}

.details-hero-text .label,
.details-text .dt-title-gallery .label,
.contact-form .dt-title-gallery .label {
	display: inline-block;
	padding: 2px 12px 2px 12px;
	background: rgb(129, 42, 207);
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	margin-left: 4px;
}

.details-hero-text .label span,
.details-text .dt-title-gallery .label span,
.contact-form .dt-title-gallery .label span {
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
	display: inline-block;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	font-style: italic;
	text-transform: uppercase;
}

.details-hero-text h3,
.details-text .dt-title-gallery h3,
.contact-form .dt-title-gallery h3 {
	color: #ffffff;
	font-weight: 700;
	line-height: 42px;
	text-transform: uppercase;
	margin-top: 18px;
	margin-bottom: 8px;
}

.details-hero-text ul li,
.details-text .dt-title-gallery ul li,
.contact-form .dt-title-gallery ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.details-hero-text ul li i,
.details-text .dt-title-gallery ul li i,
.contact-form .dt-title-gallery ul li i {
	margin-right: 4px;
}

.details-hero-text ul li span,
.details-text .dt-title-gallery ul li span,
.contact-form .dt-title-gallery ul li span {
	color: #812acf;
}

.details-hero-text ul li:last-child,
.details-text .dt-title-gallery ul li:last-child,
.contact-form .dt-title-gallery ul li:last-child {
	margin-right: 0;
}

.details-hero-text ul li:last-child:after,
.details-text .dt-title-gallery ul li:last-child:after,
.contact-form .dt-title-gallery ul li:last-child:after {
	display: none;
}

.details-hero-text ul li:after,
.details-text .dt-title-gallery ul li:after,
.contact-form .dt-title-gallery ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

/*---------------------
  Details Post
-----------------------*/

.details-post-section {
	background: #0d0d0d;
	padding: 70px 0;
}

.details-text.gallery-page .dt-item,
.gallery-page.contact-form .dt-item {
	margin-bottom: 15px;
}

.details-text.gallery-page .dt-pic-item .dp-text ul,
.gallery-page.contact-form .dt-pic-item .dp-text ul {
	margin-bottom: 0;
}

.details-text .dt-desc,
.contact-form .dt-desc {
	margin-bottom: 30px;
}

.details-text .dt-quote,
.contact-form .dt-quote {
	background: #7f2bc0;
	padding: 26px 25px 24px 30px;
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
}

.details-text .dt-quote:after,
.contact-form .dt-quote:after {
	position: absolute;
	left: -2px;
	top: -2px;
	width: 100%;
	height: 100%;
	background: #252525;
	content: "";
	z-index: -1;
}

.details-text .dt-quote p,
.contact-form .dt-quote p {
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
	font-style: italic;
	background-image: 30px;
	margin-bottom: 0;
}

.details-text .dt-quote p span,
.contact-form .dt-quote p span {
	color: #812acf;
}

.details-text .dt-item,
.contact-form .dt-item {
	margin-bottom: 30px;
}

.details-text .dt-item p:first-child,
.contact-form .dt-item p:first-child {
	margin-bottom: 25px;
}

.details-text .dt-item h5,
.contact-form .dt-item h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 8px;
	margin-bottom: 25px;
}

.details-text .dt-pic-item,
.contact-form .dt-pic-item {
	overflow: hidden;
	margin-bottom: 10px;
}

.details-text .dt-pic-item .dp-pic,
.contact-form .dt-pic-item .dp-pic {
	float: left;
	margin-right: 20px;
}

.details-text .dt-pic-item .dp-text,
.contact-form .dt-pic-item .dp-text {
	overflow: hidden;
}

.details-text .dt-pic-item .dp-text ul,
.contact-form .dt-pic-item .dp-text ul {
	margin-bottom: 20px;
}

.details-text .dt-pic-item .dp-text ul li,
.contact-form .dt-pic-item .dp-text ul li {
	list-style: none;
	font-size: 14px;
	color: #c4c4c4;
	line-height: 30px;
	position: relative;
	padding-left: 18px;
}

.details-text .dt-pic-item .dp-text ul li:before,
.contact-form .dt-pic-item .dp-text ul li:before {
	position: absolute;
	left: 0;
	top: 12px;
	height: 5px;
	width: 5px;
	background: #555555;
	content: "";
}

.details-text .dt-last-desc,
.contact-form .dt-last-desc {
	margin-bottom: 32px;
}

.details-text .dt-tags,
.contact-form .dt-tags {
	margin-bottom: 25px;
}

.details-text .dt-tags a,
.contact-form .dt-tags a {
	display: inline-block;
	font-size: 13px;
	color: #c4c4c4;
	padding: 6px 12px 5px;
	border: 1px solid #363636;
	-webkit-transform: skewX(-15deg);
	-ms-transform: skewX(-15deg);
	transform: skewX(-15deg);
	margin-right: 9px;
	margin-bottom: 15px;
}

.details-text .dt-tags span,
.contact-form .dt-tags span {
	display: inline-block;
	-webkit-transform: skewX(15deg);
	-ms-transform: skewX(15deg);
	transform: skewX(15deg);
}

.details-text .dt-share,
.contact-form .dt-share {
	border: 1px solid #252525;
	padding: 9px 0 9px 30px;
	margin-bottom: 55px;
}

.details-text .dt-share .ds-title,
.contact-form .dt-share .ds-title {
	font-size: 15px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 30px;
}

.details-text .dt-share .ds-links,
.contact-form .dt-share .ds-links {
	display: inline-block;
}

.details-text .dt-share .ds-links a,
.contact-form .dt-share .ds-links a {
	display: inline-block;
	font-size: 13px;
	color: #c4c4c4;
	height: 36px;
	width: 36px;
	line-height: 36px;
	text-align: center;
	-webkit-transform: skewX(-10deg);
	-ms-transform: skewX(-10deg);
	transform: skewX(-10deg);
	background: #252525;
	margin-right: 6px;
}

.details-text .dt-share .ds-links a.wide,
.contact-form .dt-share .ds-links a.wide {
	width: 70px;
}

.details-text .dt-share .ds-links a i,
.contact-form .dt-share .ds-links a i {
	display: inline-block;
	-webkit-transform: skewX(10deg);
	-ms-transform: skewX(10deg);
	transform: skewX(10deg);
}

.details-text .dt-share .ds-links a span,
.contact-form .dt-share .ds-links a span {
	display: inline-block;
	-webkit-transform: skewX(10deg);
	-ms-transform: skewX(10deg);
	transform: skewX(10deg);
	margin-left: 6px;
	font-size: 14px;
}

.details-text .dt-related-post,
.contact-form .dt-related-post {
	margin-bottom: 55px;
}

.details-text .dt-related-post .rp-prev,
.contact-form .dt-related-post .rp-prev {
	display: block;
}

.details-text .dt-related-post .rp-prev span,
.contact-form .dt-related-post .rp-prev span {
	display: block;
	font-size: 14px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.details-text .dt-related-post .rp-prev .rp-pic,
.contact-form .dt-related-post .rp-prev .rp-pic {
	float: left;
	margin-right: 20px;
}

.details-text .dt-related-post .rp-prev .rp-text,
.contact-form .dt-related-post .rp-prev .rp-text {
	overflow: hidden;
}

.details-text .dt-related-post .rp-prev .rp-text h6,
.contact-form .dt-related-post .rp-prev .rp-text h6 {
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.details-text .dt-related-post .rp-prev .rp-text ul li,
.contact-form .dt-related-post .rp-prev .rp-text ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.details-text .dt-related-post .rp-prev .rp-text ul li i,
.contact-form .dt-related-post .rp-prev .rp-text ul li i {
	margin-right: 4px;
}

.details-text .dt-related-post .rp-prev .rp-text ul li:last-child,
.contact-form .dt-related-post .rp-prev .rp-text ul li:last-child {
	margin-right: 0;
}

.details-text .dt-related-post .rp-prev .rp-text ul li:last-child:after,
.contact-form .dt-related-post .rp-prev .rp-text ul li:last-child:after {
	display: none;
}

.details-text .dt-related-post .rp-prev .rp-text ul li:after,
.contact-form .dt-related-post .rp-prev .rp-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

.details-text .dt-related-post .rp-next,
.contact-form .dt-related-post .rp-next {
	display: block;
	text-align: right;
}

.details-text .dt-related-post .rp-next span,
.contact-form .dt-related-post .rp-next span {
	display: block;
	font-size: 14px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.details-text .dt-related-post .rp-next .rp-pic,
.contact-form .dt-related-post .rp-next .rp-pic {
	float: right;
	margin-left: 20px;
}

.details-text .dt-related-post .rp-next .rp-text,
.contact-form .dt-related-post .rp-next .rp-text {
	overflow: hidden;
}

.details-text .dt-related-post .rp-next .rp-text h6,
.contact-form .dt-related-post .rp-next .rp-text h6 {
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.details-text .dt-related-post .rp-next .rp-text ul li,
.contact-form .dt-related-post .rp-next .rp-text ul li {
	list-style: none;
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: inline-block;
	position: relative;
	margin-right: 28px;
}

.details-text .dt-related-post .rp-next .rp-text ul li i,
.contact-form .dt-related-post .rp-next .rp-text ul li i {
	margin-right: 4px;
}

.details-text .dt-related-post .rp-next .rp-text ul li:last-child,
.contact-form .dt-related-post .rp-next .rp-text ul li:last-child {
	margin-right: 0;
}

.details-text .dt-related-post .rp-next .rp-text ul li:last-child:after,
.contact-form .dt-related-post .rp-next .rp-text ul li:last-child:after {
	display: none;
}

.details-text .dt-related-post .rp-next .rp-text ul li:after,
.contact-form .dt-related-post .rp-next .rp-text ul li:after {
	position: absolute;
	right: -18px;
	top: 0;
	content: "/";
	color: #666666;
}

.details-text .dt-author,
.contact-form .dt-author {
	background: #080808;
	padding: 25px 30px 30px 30px;
	margin-bottom: 55px;
}

.details-text .dt-author .da-pic,
.contact-form .dt-author .da-pic {
	float: left;
	margin-right: 30px;
}

.details-text .dt-author .da-pic img,
.contact-form .dt-author .da-pic img {
	height: 90px;
	width: 90px;
	border-radius: 50%;
}

.details-text .dt-author .da-text,
.contact-form .dt-author .da-text {
	overflow: hidden;
}

.details-text .dt-author .da-text h5,
.contact-form .dt-author .da-text h5 {
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.details-text .dt-author .da-text .da-links,
.contact-form .dt-author .da-text .da-links {
	margin-left: 5px;
}

.details-text .dt-author .da-text .da-links a,
.contact-form .dt-author .da-text .da-links a {
	display: inline-block;
	font-size: 13px;
	color: #c4c4c4;
	height: 36px;
	width: 36px;
	line-height: 36px;
	text-align: center;
	-webkit-transform: skewX(-10deg);
	-ms-transform: skewX(-10deg);
	transform: skewX(-10deg);
	background: #252525;
	margin-right: 6px;
}

.details-text .dt-author .da-text .da-links a i,
.contact-form .dt-author .da-text .da-links a i {
	display: inline-block;
	-webkit-transform: skewX(10deg);
	-ms-transform: skewX(10deg);
	transform: skewX(10deg);
}

.details-text .dt-comment,
.contact-form .dt-comment {
	margin-bottom: 35px;
}

.details-text .dt-comment h4,
.contact-form .dt-comment h4 {
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.details-text .dt-comment .dc-item,
.contact-form .dt-comment .dc-item {
	margin-bottom: 20px;
}

.details-text .dt-comment .dc-item.reply-item,
.contact-form .dt-comment .dc-item.reply-item {
	margin-left: 116px;
}

.details-text .dt-comment .dc-item .dc-pic,
.contact-form .dt-comment .dc-item .dc-pic {
	float: left;
	margin-right: 25px;
}

.details-text .dt-comment .dc-item .dc-pic img,
.contact-form .dt-comment .dc-item .dc-pic img {
	height: 90px;
	width: 90px;
	border-radius: 50%;
}

.details-text .dt-comment .dc-item .dc-text,
.contact-form .dt-comment .dc-item .dc-text {
	overflow: hidden;
	position: relative;
}

.details-text .dt-comment .dc-item .dc-text .reply-btn,
.contact-form .dt-comment .dc-item .dc-text .reply-btn {
	display: inline-block;
	padding: 4px 12px 4px 12px;
	background: #252525;
	-webkit-transform: skewX(-10deg);
	-ms-transform: skewX(-10deg);
	transform: skewX(-10deg);
	position: absolute;
	right: 6px;
	top: 0;
}

.details-text .dt-comment .dc-item .dc-text .reply-btn span,
.contact-form .dt-comment .dc-item .dc-text .reply-btn span {
	-webkit-transform: skewX(10deg);
	-ms-transform: skewX(10deg);
	transform: skewX(10deg);
	display: inline-block;
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
}

.details-text .dt-comment .dc-item .dc-text h5,
.contact-form .dt-comment .dc-item .dc-text h5 {
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.details-text .dt-comment .dc-item .dc-text .c-date,
.contact-form .dt-comment .dc-item .dc-text .c-date {
	font-size: 12px;
	color: #666666;
	font-style: italic;
	display: block;
	margin-bottom: 6px;
}

.details-text .dt-leave-comment h4,
.contact-form .dt-leave-comment h4 {
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.details-text .dt-leave-comment form .input-list,
.contact-form .dt-leave-comment form .input-list {
	margin-right: -20px;
}

.details-text .dt-leave-comment form .input-list input,
.contact-form .dt-leave-comment form .input-list input {
	width: calc(50% - 20px);
	margin-right: 20px;
	float: left;
	height: 46px;
	background: transparent;
	font-size: 14px;
	color: #444444;
	border: 1px solid #363636;
	padding-left: 20px;
	margin-bottom: 20px;
}

.details-text .dt-leave-comment form .input-list input::-webkit-input-placeholder,
.contact-form .dt-leave-comment form .input-list input::-webkit-input-placeholder {
	color: #444444;
}

.details-text .dt-leave-comment form .input-list input::-moz-placeholder,
.contact-form .dt-leave-comment form .input-list input::-moz-placeholder {
	color: #444444;
}

.details-text .dt-leave-comment form .input-list input:-ms-input-placeholder,
.contact-form .dt-leave-comment form .input-list input:-ms-input-placeholder {
	color: #444444;
}

.details-text .dt-leave-comment form .input-list input::-ms-input-placeholder,
.contact-form .dt-leave-comment form .input-list input::-ms-input-placeholder {
	color: #444444;
}

.details-text .dt-leave-comment form .input-list input::placeholder,
.contact-form .dt-leave-comment form .input-list input::placeholder {
	color: #444444;
}

.details-text .dt-leave-comment form .input-list input:last-child,
.contact-form .dt-leave-comment form .input-list input:last-child {
	margin-right: 0;
}

.details-text .dt-leave-comment form textarea,
.contact-form .dt-leave-comment form textarea {
	width: 100%;
	height: 190px;
	background: transparent;
	font-size: 14px;
	color: #444444;
	border: 1px solid #363636;
	padding-left: 20px;
	resize: none;
	margin-bottom: 14px;
	padding-top: 12px;
}

.details-text .dt-leave-comment form textarea::-webkit-input-placeholder,
.contact-form .dt-leave-comment form textarea::-webkit-input-placeholder {
	color: #444444;
}

.details-text .dt-leave-comment form textarea::-moz-placeholder,
.contact-form .dt-leave-comment form textarea::-moz-placeholder {
	color: #444444;
}

.details-text .dt-leave-comment form textarea:-ms-input-placeholder,
.contact-form .dt-leave-comment form textarea:-ms-input-placeholder {
	color: #444444;
}

.details-text .dt-leave-comment form textarea::-ms-input-placeholder,
.contact-form .dt-leave-comment form textarea::-ms-input-placeholder {
	color: #444444;
}

.details-text .dt-leave-comment form textarea::placeholder,
.contact-form .dt-leave-comment form textarea::placeholder {
	color: #444444;
}

.details-text .dt-leave-comment form button,
.contact-form .dt-leave-comment form button {
	font-size: 15px;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	background: #252525;
	border: none;
	width: 100%;
	padding: 12px 0;
}

.details-text .dt-overall-rating,
.contact-form .dt-overall-rating {
	border: 1px solid #252525;
	overflow: hidden;
	margin-bottom: 25px;
}

.details-text .dt-overall-rating .or-heading,
.contact-form .dt-overall-rating .or-heading {
	padding: 30px 30px 0 30px;
}

.details-text .dt-overall-rating .or-heading .or-item,
.contact-form .dt-overall-rating .or-heading .or-item {
	overflow: hidden;
	margin-bottom: 25px;
}

.details-text .dt-overall-rating .or-heading .or-item .or-loader,
.contact-form .dt-overall-rating .or-heading .or-item .or-loader {
	height: 200px;
	width: 200px;
	position: relative;
	z-index: 1;
	float: left;
	margin-right: 30px;
}

.details-text .dt-overall-rating .or-heading .or-item .or-loader:after,
.contact-form .dt-overall-rating .or-heading .or-item .or-loader:after {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	border: 5px solid #363636;
	content: "";
	border-radius: 50%;
	z-index: -1;
}

.details-text .dt-overall-rating .or-heading .or-item .or-loader .review-point,
.contact-form .dt-overall-rating .or-heading .or-item .or-loader .review-point {
	position: absolute;
	left: 40px;
	top: 40px;
}

.details-text .dt-overall-rating .or-heading .or-item .or-loader .review-point div,
.contact-form .dt-overall-rating .or-heading .or-item .or-loader .review-point div {
	font-size: 80px;
	font-weight: 500;
	color: #ffffff;
	line-height: 84px;
}

.details-text .dt-overall-rating .or-heading .or-item .or-loader .review-point span,
.contact-form .dt-overall-rating .or-heading .or-item .or-loader .review-point span {
	font-size: 14px;
	color: #666666;
	text-transform: uppercase;
}

.details-text .dt-overall-rating .or-heading .or-item .or-text,
.contact-form .dt-overall-rating .or-heading .or-item .or-text {
	overflow: hidden;
}

.details-text .dt-overall-rating .or-heading .or-item .or-text h5,
.contact-form .dt-overall-rating .or-heading .or-item .or-text h5 {
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.details-text .dt-overall-rating .or-heading .or-skill,
.contact-form .dt-overall-rating .or-heading .or-skill {
	overflow: hidden;
	margin-right: -40px;
}

.details-text .dt-overall-rating .or-heading .or-skill .skill-item,
.contact-form .dt-overall-rating .or-heading .or-skill .skill-item {
	position: relative;
	width: calc(50% - 40px);
	float: left;
	overflow: hidden;
	margin-right: 40px;
}

.details-text .dt-overall-rating .or-heading .or-skill .skill-item p,
.contact-form .dt-overall-rating .or-heading .or-skill .skill-item p {
	font-size: 14px;
	color: #c4c4c4;
	margin-bottom: 10px;
}

.details-text .dt-overall-rating .or-heading .or-skill .skill-item .tip,
.contact-form .dt-overall-rating .or-heading .or-skill .skill-item .tip {
	display: none;
}

.details-text .dt-overall-rating .or-heading .or-skill .skill-item .barfiller,
.contact-form .dt-overall-rating .or-heading .or-skill .skill-item .barfiller {
	height: 7px;
	background: #252525;
	border: none;
	margin-bottom: 24px;
}

.details-text .dt-overall-rating .or-heading .or-skill .skill-item .barfiller .bar-point,
.contact-form .dt-overall-rating .or-heading .or-skill .skill-item .barfiller .bar-point {
	font-size: 14px;
	color: #c4c4c4;
	position: absolute;
	right: 0;
	top: -30px;
}

.details-text .dt-overall-rating .or-qualities,
.contact-form .dt-overall-rating .or-qualities {
	padding-top: 25px;
	padding-bottom: 20px;
	padding-left: 30px;
	padding-right: 30px;
	border-top: 1px solid #252525;
	border-bottom: 1px solid #252525;
	overflow: hidden;
	margin-right: -40px;
}

.details-text .dt-overall-rating .or-qualities .qualities-item,
.contact-form .dt-overall-rating .or-qualities .qualities-item {
	width: calc(50% - 40px);
	float: left;
	overflow: hidden;
	margin-right: 40px;
}

.details-text .dt-overall-rating .or-qualities .qualities-item.bad-item i,
.contact-form .dt-overall-rating .or-qualities .qualities-item.bad-item i {
	color: #641ca5;
}

.details-text .dt-overall-rating .or-qualities .qualities-item p,
.contact-form .dt-overall-rating .or-qualities .qualities-item p {
	color: #ffffff;
	margin-bottom: 10px;
}

.details-text .dt-overall-rating .or-qualities .qualities-item ul li,
.contact-form .dt-overall-rating .or-qualities .qualities-item ul li {
	list-style: none;
	line-height: 32px;
	font-size: 14px;
	color: #c4c4c4;
}

.details-text .dt-overall-rating .or-qualities .qualities-item ul li i,
.contact-form .dt-overall-rating .or-qualities .qualities-item ul li i {
	color: #16b601;
	font-size: 14px;
	margin-right: 8px;
}

.details-text .dt-overall-rating .or-rating,
.contact-form .dt-overall-rating .or-rating {
	overflow: hidden;
	padding: 25px 30px;
}

.details-text .dt-overall-rating .or-rating p,
.contact-form .dt-overall-rating .or-rating p {
	font-weight: 500;
	float: left;
	margin-bottom: 0;
}

.details-text .dt-overall-rating .or-rating p span,
.contact-form .dt-overall-rating .or-rating p span {
	margin-right: 15px;
}

.details-text .dt-overall-rating .or-rating .rating-star,
.contact-form .dt-overall-rating .or-rating .rating-star {
	float: right;
}

.details-text .dt-overall-rating .or-rating .rating-star i,
.contact-form .dt-overall-rating .or-rating .rating-star i {
	font-size: 14px;
	color: #ffaf24;
	margin-left: -4px;
}

.details-text .dt-title-gallery,
.contact-form .dt-title-gallery {
	margin-bottom: 30px;
}

.details-text .dt-desc-more,
.contact-form .dt-desc-more {
	margin-bottom: 25px;
}

/*-----------------------
  Details Gallery Slider
-------------------------*/

.details-gallery-section {
	background: #0d0d0d;
	padding-top: 30px;
}

.dg-slider.owl-carousel .owl-nav button {
	height: 50px;
	width: 50px;
	font-size: 36px;
	color: #ffffff;
	background: rgba(8, 8, 8, 0.5);
	line-height: 50px;
	text-align: center;
	position: absolute;
	left: 30px;
	top: 50%;
	-webkit-transform: translateY(-25px);
	-ms-transform: translateY(-25px);
	transform: translateY(-25px);
}

.dg-slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 30px;
}

.dg-slider .dg-item {
	height: 780px;
}

/*---------------------
  Contact
-----------------------*/

.contact-section {
	background: #0d0d0d;
	padding: 70px 0;
}

.contact-text .contact-title {
	margin-bottom: 36px;
	text-align: center;
}

.contact-text .contact-title h3 {
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.contact-form .dt-leave-comment form .input-list input {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form .input-list input::-webkit-input-placeholder {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form .input-list input::-moz-placeholder {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form .input-list input:-ms-input-placeholder {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form .input-list input::-ms-input-placeholder {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form .input-list input::placeholder {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form textarea {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form textarea::-webkit-input-placeholder {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form textarea::-moz-placeholder {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form textarea:-ms-input-placeholder {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form textarea::-ms-input-placeholder {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form textarea::placeholder {
	color: #c4c4c4;
}

.contact-form .dt-leave-comment form button {
	background: #812acf;
	font-size: 14px;
}

/*---------------------
  404 Section
-----------------------*/

.section-404 {
	background: #0d0d0d;
	padding-top: 70px;
}

.text-404 {
	text-align: center;
	background: #080808;
	padding: 100px 0 120px;
}

.text-404 h1 {
	font-size: 200px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #ffffff;
	line-height: 212px;
}

.text-404 h3 {
	color: #ffffff;
	font-weight: 500;
	font-family: "Space Grotesk", sans-serif;
	margin-bottom: 12px;
}

.text-404 p {
	margin-bottom: 45px;
}

.text-404 .search-404 {
	width: 470px;
	height: 46px;
	position: relative;
	margin: 0 auto;
}

.text-404 .search-404 input {
	width: 100%;
	height: 46px;
	background: #812acf;
	font-size: 14px;
	color: #ffffff;
	border: none;
	padding-left: 20px;
}

.text-404 .search-404 input::-webkit-input-placeholder {
	color: #ffffff;
}

.text-404 .search-404 input::-moz-placeholder {
	color: #ffffff;
}

.text-404 .search-404 input:-ms-input-placeholder {
	color: #ffffff;
}

.text-404 .search-404 input::-ms-input-placeholder {
	color: #ffffff;
}

.text-404 .search-404 input::placeholder {
	color: #ffffff;
}

.text-404 .search-404 button {
	font-size: 16px;
	color: #ffffff;
	position: absolute;
	right: 0;
	top: 0;
	background: #812acf;
	border: none;
	height: 46px;
	padding: 0 20px;
}

/*---------------------
  Typography
-----------------------*/

.details-text.typography-page .dt-share,
.typography-page.contact-form .dt-share {
	margin-bottom: 0;
}

.details-text .dt-breadcrumb,
.contact-form .dt-breadcrumb {
	margin-bottom: 25px;
}

.details-text .dt-breadcrumb .dt-bread-option,
.contact-form .dt-breadcrumb .dt-bread-option {
	margin-bottom: 20px;
}

.details-text .dt-breadcrumb .dt-bread-option a,
.contact-form .dt-breadcrumb .dt-bread-option a {
	font-size: 12px;
	color: #ffffff;
	position: relative;
	display: inline-block;
	margin-right: 5px;
}

.details-text .dt-breadcrumb .dt-bread-option a:after,
.contact-form .dt-breadcrumb .dt-bread-option a:after {
	position: absolute;
	right: -6px;
	top: 1px;
	content: "/";
}

.details-text .dt-breadcrumb .dt-bread-option span,
.contact-form .dt-breadcrumb .dt-bread-option span {
	font-size: 12px;
	color: #812acf;
	display: inline-block;
}

.details-text .dt-breadcrumb h3,
.contact-form .dt-breadcrumb h3 {
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
}

.details-text .dt-heading-tags,
.contact-form .dt-heading-tags {
	margin-bottom: 45px;
}

.details-text .dt-heading-tags h3,
.contact-form .dt-heading-tags h3 {
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 18px;
}

.details-text .dt-heading-tags p,
.contact-form .dt-heading-tags p {
	margin-bottom: 20px;
}

.details-text .dt-heading-tags .heading-list h3,
.contact-form .dt-heading-tags .heading-list h3,
.details-text .dt-heading-tags .heading-list h4,
.contact-form .dt-heading-tags .heading-list h4,
.details-text .dt-heading-tags .heading-list h5,
.contact-form .dt-heading-tags .heading-list h5,
.details-text .dt-heading-tags .heading-list h6,
.contact-form .dt-heading-tags .heading-list h6 {
	color: #c4c4c4;
	font-weight: 700;
	text-transform: uppercase;
}

.details-text .dt-heading-tags .heading-list h3,
.contact-form .dt-heading-tags .heading-list h3 {
	margin-bottom: 22px;
}

.details-text .dt-heading-tags .heading-list h4,
.contact-form .dt-heading-tags .heading-list h4 {
	margin-bottom: 26px;
}

.details-text .dt-heading-tags .heading-list .large-h5,
.contact-form .dt-heading-tags .heading-list .large-h5 {
	font-size: 20px;
	margin-bottom: 28px;
}

.details-text .dt-heading-tags .heading-list h5,
.contact-form .dt-heading-tags .heading-list h5 {
	margin-bottom: 29px;
}

.details-text .dt-heading-tags .heading-list h6,
.contact-form .dt-heading-tags .heading-list h6 {
	margin-bottom: 29px;
}

.details-text .dt-heading-tags .heading-list .small-h6,
.contact-form .dt-heading-tags .heading-list .small-h6 {
	font-size: 14px;
}

.details-text .dt-listing h3,
.contact-form .dt-listing h3 {
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.details-text .dt-listing p,
.contact-form .dt-listing p {
	margin-bottom: 20px;
}

.details-text .dt-listing.unorder-list,
.contact-form .dt-listing.unorder-list {
	margin-bottom: 45px;
}

.details-text .dt-listing.unorder-list ul li,
.contact-form .dt-listing.unorder-list ul li {
	position: relative;
	padding-left: 18px;
}

.details-text .dt-listing.unorder-list ul li.unorder-inner,
.contact-form .dt-listing.unorder-list ul li.unorder-inner {
	margin-left: 30px;
}

.details-text .dt-listing.unorder-list ul li:before,
.contact-form .dt-listing.unorder-list ul li:before {
	position: absolute;
	left: 0;
	top: 12px;
	width: 5px;
	height: 5px;
	background: #555555;
	content: "";
}

.details-text .dt-listing.order-list,
.contact-form .dt-listing.order-list {
	margin-bottom: 30px;
}

.details-text .dt-listing.order-list ul li span,
.contact-form .dt-listing.order-list ul li span {
	margin-right: 10px;
}

.details-text .dt-listing.order-list ul li.order-inner,
.contact-form .dt-listing.order-list ul li.order-inner {
	margin-left: 40px;
}

.details-text .dt-listing ul,
.contact-form .dt-listing ul {
	margin-bottom: 20px;
}

.details-text .dt-listing ul li,
.contact-form .dt-listing ul li {
	list-style: none;
	font-size: 14px;
	color: #c4c4c4;
	line-height: 30px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.nav-options .nav-menu ul li {
		margin-right: 1px;
	}
	.nav-options .nav-menu ul li .megamenu-wrapper {
		width: 960px;
		-webkit-transform: translateX(-480px);
		-ms-transform: translateX(-480px);
		transform: translateX(-480px);
	}
	.hero-slider.owl-carousel .owl-dots {
		max-width: 930px;
	}
	.ip-item .ip-pic,
	.cl-item .cl-pic {
		max-width: 300px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.nav-options {
		text-align: center;
	}
	.nav-options .nav-bar {
		justify-content: space-between;
	}
	.nav-options .nav-menu {
		display: none;
	}
	.nav-options .humberger-menu,
	.nav-options .nav-search {
		float: none;
	}
	.nav-options .nav-right {
		width: 100%;
		order: 3;
		justify-content: flex-end;
	}
	.btn-create-announce {
		width: 100%;
		justify-content: center;
	}
	.navbar-search-panel {
		position: static;
		margin-top: 10px;
	}
	.hero-slider.owl-carousel .owl-dots {
		bottom: 100px;
		max-width: 690px;
	}
	.hs-text {
		padding-top: 50px;
	}
	.sidebar-option {
		padding-left: 0;
		padding-top: 40px;
	}
	.details-text .dt-pic-item .dp-pic,
	.contact-form .dt-pic-item .dp-pic {
		float: none;
		margin-right: 0;
	}
	.details-text .dt-pic-item .dp-text,
	.contact-form .dt-pic-item .dp-text {
		overflow: visible;
		padding-top: 20px;
	}
	.details-text .dt-related-post .rp-prev,
	.contact-form .dt-related-post .rp-prev {
		margin-bottom: 30px;
		overflow: hidden;
	}
	.copyright-area .ca-text {
		text-align: center;
		margin-bottom: 11px;
	}
	.copyright-area .ca-links {
		text-align: center;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.logo {
		padding: 25px 0;
	}
	.logo img {
		max-width: 120px;
	}
	.nav-options {
		text-align: center;
		padding: 0 0;
	}
	.nav-options .nav-bar {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 8px;
		flex-wrap: nowrap;
		position: relative;
		width: 100%;
	}
	.nav-options .nav-menu {
		display: none;
	}
	.nav-options .nav-left {
		display: flex;
		align-items: center;
		gap: 0;
		flex-shrink: 0;
		order: 1;
	}
	.nav-options .humberger-menu {
		padding: 10px 12px;
		font-size: 14px;
		min-width: 44px;
		min-height: 44px;
		flex-shrink: 0;
		border-radius: 10px;
	}
	.nav-options .nav-search {
		display: none;
	}
	.nav-options .nav-right {
		display: flex;
		align-items: center;
		gap: 6px;
		flex-shrink: 0;
		order: 3;
		width: auto;
		justify-content: flex-end;
		margin-left: auto;
	}
	.btn-create-announce {
		flex: 1 1 auto;
		min-width: 0;
		padding: 11px 14px;
		font-size: 10px;
		letter-spacing: 0.3px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		order: 2;
		min-height: 44px;
		margin: 0 6px;
		max-width: calc(100vw - 140px);
		border-radius: 10px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.btn-create-announce span {
		display: inline-block;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 100%;
		white-space: nowrap;
	}
	
	/* Remove br tags effect on mobile */
	.nav-options .nav-bar br {
		display: none;
	}
	
	.btn-conversations,
	.btn-notifications {
		min-width: 44px;
		min-height: 44px;
		width: 44px;
		height: 44px;
		padding: 10px;
		flex-shrink: 0;
		border-radius: 10px;
	}
	
	.conversation-badge,
	.notification-badge {
		font-size: 9px;
		padding: 2px 5px;
		min-width: 16px;
	}
	.navbar-search-panel {
		position: static;
		margin-top: 12px;
		order: 4;
		width: 100%;
	}
	/* Mobile Search - Tablet and below (max-width: 767px) */
	.main-search-bar {
		padding: 10px;
		border-radius: 12px;
		margin-bottom: 18px;
	}
	
	.main-search-shell {
		flex-wrap: wrap;
		flex-direction: column;
		gap: 10px;
		padding: 8px 10px;
		border-radius: 12px;
	}
	
	.main-search-shell .main-search-icon {
		display: none;
	}
	
	.main-search-field {
		width: 100%;
		padding: 10px 12px;
		font-size: 15px;
		min-height: 40px;
		height: 40px;
		line-height: 1.4;
	}
	
	.main-search-submit {
		width: 100%;
		justify-content: center;
		padding: 10px 16px;
		min-height: 40px;
		height: 40px;
		font-size: 13px;
		border-radius: 8px;
	}
	
	/* Compact section title on tablet/mobile */
	.section-title {
		margin-bottom: 14px;
	}
	
	.section-title h5 {
		font-size: 16px;
		padding-left: 10px;
		line-height: 1.3;
	}
	/* Hide hero section completely on mobile */
	.hero-section {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		min-height: 0 !important;
		max-height: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
		overflow: hidden !important;
		background: none !important;
		opacity: 0 !important;
	}
	
	.hero-section * {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		width: 0 !important;
		background: none !important;
	}
	
	.hero-section .container,
	.hero-section .row,
	.hero-section .col-lg-6,
	.hero-section .col-md-6 {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
	}
	
	.hero-slider,
	.hero-slider.owl-carousel,
	.hero-slider .owl-stage-outer,
	.hero-slider .owl-stage,
	.hero-slider .owl-item,
	.hero-slider .hs-item,
	.hs-item {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		width: 0 !important;
		overflow: hidden !important;
		background: none !important;
		background-image: none !important;
		opacity: 0 !important;
		position: absolute !important;
		left: -9999px !important;
	}
	
	.hero-slider.owl-carousel .owl-dots {
		display: none !important;
		visibility: hidden !important;
	}
	
	.hs-text,
	.hs-text .label,
	.hs-text h3,
	.hs-text * {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
	}
	.sidebar-option {
		padding-left: 0;
		padding-top: 40px;
	}
	.details-text .dt-pic-item .dp-pic,
	.contact-form .dt-pic-item .dp-pic {
		float: none;
		margin-right: 0;
	}
	.details-text .dt-pic-item .dp-text,
	.contact-form .dt-pic-item .dp-text {
		overflow: visible;
		padding-top: 20px;
	}
	.details-text .dt-related-post .rp-prev,
	.contact-form .dt-related-post .rp-prev {
		margin-bottom: 30px;
		overflow: hidden;
	}
	.tab-elem .nav-tabs {
		position: relative;
		right: 0;
		top: 0;
		margin-bottom: 20px;
	}
	.un-slider.owl-carousel .owl-nav {
		top: -46px;
	}
	.video-guide-section .tab-elem .nav-tabs {
		top: 0;
		right: 0;
	}
	.vg-slider.owl-carousel .owl-nav {
		top: -46px;
	}
	.ip-item .ip-pic {
		float: none;
		margin-right: 0;
		max-width: 100%;
	}
	.ip-item .ip-pic img {
		width: 100%;
	}
	.ip-item .ip-text {
		overflow: visible;
		padding-top: 30px;
	}
	.copyright-area .ca-text {
		text-align: center;
		margin-bottom: 11px;
	}
	.copyright-area .ca-links {
		text-align: center;
	}
	.ht-options .ht-widget {
		text-align: center;
		margin-bottom: 10px;
	}
	.ht-options .ht-social {
		display: none;
	}
	.categories-grid-section .col-lg-8,
	.categories-grid-section .col-lg-4 {
		padding-right: 15px !important;
		padding-left: 15px !important;
	}
	.categories-list-section .col-lg-8,
	.categories-list-section .col-lg-4 {
		padding-right: 15px !important;
		padding-left: 15px !important;
	}
	.cl-item .cl-pic {
		float: none;
		margin-right: 0;
		max-width: 100%;
	}
	.cl-item .cl-pic img {
		width: 100%;
	}
	.cl-item .cl-text {
		overflow: visible;
		padding-top: 30px;
	}
	.details-post-section .col-lg-8,
	.details-post-section .col-lg-4 {
		padding-right: 15px !important;
		padding-left: 15px !important;
	}
	.details-text .dt-leave-comment form .input-list input,
	.contact-form .dt-leave-comment form .input-list input {
		width: 100%;
		margin-right: 0;
		float: none;
	}
	.details-text .dt-leave-comment form .input-list,
	.contact-form .dt-leave-comment form .input-list {
		margin-right: 0;
	}
	.details-text .dt-comment .dc-item.reply-item,
	.contact-form .dt-comment .dc-item.reply-item {
		margin-left: 40px;
	}
	.details-text .dt-overall-rating .or-heading .or-item .or-loader,
	.contact-form .dt-overall-rating .or-heading .or-item .or-loader {
		float: none;
	}
	.details-text .dt-overall-rating .or-heading .or-item .or-text,
	.contact-form .dt-overall-rating .or-heading .or-item .or-text {
		overflow: visible;
		padding-top: 30px;
	}
	.text-404 .search-404 {
		width: 440px;
	}
	.signup-text .signup-form {
		width: 410px;
	}
	.dg-slider .dg-item {
		height: 480px;
	}
	.search-model-form input {
		width: 100%;
	}
	
	/* ============================================
	   MOBILE OPTIMIZATIONS - Desktop unchanged
	   ============================================ */
	
	/* Prevent horizontal scroll */
	body, html {
		overflow-x: hidden;
		width: 100%;
	}
	
	* {
		max-width: 100%;
		box-sizing: border-box;
	}
	
	/* Mobile Typography */
	h1 {
		font-size: 24px;
		line-height: 1.3;
	}
	
	h2 {
		font-size: 22px;
		line-height: 1.3;
	}
	
	h3 {
		font-size: 20px;
		line-height: 1.4;
	}
	
	h4 {
		font-size: 18px;
		line-height: 1.4;
	}
	
	h5 {
		font-size: 16px;
		line-height: 1.4;
	}
	
	h6 {
		font-size: 15px;
		line-height: 1.4;
	}
	
	p {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 16px;
	}
	
	/* Mobile Container */
	.container {
		padding-left: 16px;
		padding-right: 16px;
	}
	
	/* Mobile Navbar Enhancements */
	.header-section {
		position: sticky;
		top: 0;
		z-index: 1000;
		background: #000000;
	}
	
	.logo {
		padding: 12px 0;
	}
	
	.logo img {
		max-width: 100px;
		height: auto;
	}
	
	.nav-options {
		padding: 12px 0;
	}
	
	.nav-options .nav-bar {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 8px;
		flex-wrap: nowrap;
	}
	
	.nav-options .nav-left {
		display: flex;
		align-items: center;
		gap: 8px;
		flex-shrink: 0;
	}
	
	.nav-options .humberger-menu {
		padding: 10px 14px;
		font-size: 14px;
		min-height: 40px;
		min-width: 40px;
		flex-shrink: 0;
	}
	
	.nav-options .nav-right {
		display: flex;
		gap: 8px;
		flex-shrink: 0;
		align-items: center;
		justify-content: flex-end;
		width: auto;
	}
	
	.btn-conversations,
	.btn-notifications {
		min-width: 44px;
		min-height: 44px;
		padding: 12px;
	}

	/* Desktop dropdown is hidden on mobile — mobile panel (#mobileNotificationsPanel) is used instead */
	.notifications-wrapper .notifications-dropdown {
		display: none !important;
	}

	.notifications-header {
		height: 64px;
		padding: 10px 14px;
		display: flex;
		align-items: center;
		gap: 10px;
		background: #060a12;
		border-bottom: 1px solid var(--border-muted);
	}

	.notifications-mark-all {
		display: none;
	}

	.notifications-header h6 {
		display: none;
	}

	.notifications-mobile-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border-radius: 50%;
		border: 1px solid rgba(255, 255, 255, 0.14);
		background: rgba(255, 255, 255, 0.03);
		color: var(--text-primary);
		font-size: 16px;
		padding: 0;
		flex-shrink: 0;
		box-shadow: none;
	}

	.notifications-mobile-title-wrap {
		display: inline-flex;
		align-items: center;
		justify-content: flex-start;
		gap: 6px;
		flex: 1;
		min-width: 0;
	}

	.notifications-mobile-title {
		display: block;
		margin: 0;
		font-family: "Montserrat", sans-serif;
		font-size: 30px;
		font-weight: 700;
		color: var(--text-primary);
		line-height: 1.2;
		white-space: nowrap;
	}

	.notifications-mobile-unread-badge {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		border-radius: 9px;
		background: #ff4444;
		color: #ffffff;
		font-family: "Montserrat", sans-serif;
		font-size: 10px;
		font-weight: 700;
		line-height: 1;
	}

	.notifications-list {
		max-height: calc(100vh - var(--navbar-mobile-height, 96px) - 64px);
		padding: 8px 0 16px;
		background: #060a12;
	}

	.notification-item {
		padding: 16px 14px;
		gap: 14px;
		border-bottom: none;
		background: transparent;
	}

	.notification-icon {
		width: 46px;
		height: 46px;
		font-size: 14px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.02);
		border: 1px solid rgba(255, 255, 255, 0.12);
	}

	.notification-title {
		font-size: 17px;
		margin-bottom: 2px;
	}

	.notification-item.unread .notification-title {
		font-weight: 700;
	}

	.notification-text {
		font-family: "Montserrat", sans-serif;
		font-size: 14px;
		line-height: 1.42;
		margin-bottom: 4px;
		color: #d4d7e1;
		-webkit-line-clamp: 3;
	}

	.notification-time {
		font-size: 14px;
		color: #8f94a3;
	}

	.notification-actions {
		justify-content: flex-start;
		gap: 6px;
	}

	.notification-action-btn {
		font-size: 11px;
		padding: 8px 10px;
	}

	.notification-item.unread {
		background: rgba(129, 42, 207, 0.06);
	}

	.notification-item.read::before,
	.notification-item.unread::before {
		width: 2px;
	}

	.notification-item:hover {
		background: transparent;
	}
	
	.btn-create-announce {
		padding: 14px 20px;
		min-height: 44px;
		font-size: 14px;
		margin-top: 8px;
	}
	
	.navbar-search-panel {
		width: 100%;
		margin-top: 12px;
	}
	
	.navbar-search-form input {
		width: 100%;
		padding: 14px 16px;
		font-size: 16px;
		min-height: 44px;
	}
	
	.navbar-search-form button {
		min-width: 44px;
		min-height: 44px;
		padding: 12px 16px;
	}
	
	/* Mobile Main Search - Compact for Small Phones */
	.main-search-bar {
		margin-bottom: 16px;
		padding: 8px;
		border-radius: 10px;
	}
	
	.main-search-shell {
		flex-direction: column;
		gap: 8px;
		padding: 6px 8px;
		border-radius: 10px;
	}
	
	.main-search-shell .main-search-icon {
		display: none;
	}
	
	.main-search-field {
		width: 100%;
		padding: 8px 10px;
		font-size: 14px;
		min-height: 36px;
		height: 36px;
		line-height: 1.4;
	}
	
	.main-search-submit {
		width: 100%;
		padding: 8px 14px;
		min-height: 36px;
		height: 36px;
		font-size: 12px;
		border-radius: 8px;
	}
	
	/* Compact section title on mobile */
	.section-title {
		margin-bottom: 12px;
	}
	
	.section-title h5 {
		font-size: 14px;
		padding-left: 10px;
		line-height: 1.3;
	}
	
	/* Mobile Cards (Announces) */
	.cg-item {
		width: 100%;
		margin-bottom: 24px;
		background: var(--card-bg);
		border-radius: 16px;
		overflow: hidden;
		border: 1px solid var(--border-muted);
	}
	
	.cg-item .cg-pic {
		height: 180px;
		width: 100%;
	}
	
	.cg-item .cg-pic img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	
	.cg-item .cg-text {
		padding: 20px 16px;
	}
	
	.cg-item .cg-text h5 {
		font-size: 18px;
		line-height: 1.4;
		margin-bottom: 12px;
	}
	
	.cg-item .cg-text p {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 16px;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	
	.cg-item .cg-text ul {
		font-size: 12px;
		margin-bottom: 16px;
	}
	
	/* Mobile Buttons */
	.primary-btn,
	.btn,
	button[type="submit"] {
		width: 100%;
		padding: 14px 20px;
		min-height: 44px;
		font-size: 16px;
		margin-bottom: 12px;
	}
	
	/* Mobile Forms */
	.form-control,
	.form-input,
	.form-textarea,
	input[type="text"],
	input[type="email"],
	input[type="number"],
	input[type="tel"],
	input[type="password"],
	textarea,
	select {
		width: 100%;
		padding: 14px 16px;
		font-size: 16px;
		min-height: 44px;
	}
	
	textarea {
		min-height: 120px;
		resize: vertical;
	}
	
	.form-label,
	label {
		display: block;
		font-size: 15px;
		margin-bottom: 8px;
		font-weight: 600;
	}
	
	.form-group {
		margin-bottom: 24px;
	}
	
	/* Mobile Images */
	img {
		max-width: 100%;
		height: auto;
	}
	
	.announce-header-image,
	.hero-image,
	.decorative-image {
		max-height: 180px;
		width: 100%;
		object-fit: cover;
		border-radius: 12px;
	}
	
	/* Mobile Layout - Single Column */
	.row {
		margin-left: 0;
		margin-right: 0;
	}
	
	.row > [class*="col-"] {
		padding-left: 8px;
		padding-right: 8px;
		width: 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	/* Mobile Sections */
	section {
		padding: 40px 0;
	}
	
	.spad {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	/* Mobile HT Options */
	.ht-options {
		padding: 8px 0;
		font-size: 11px;
	}
	
	.ht-options .ht-widget ul li {
		font-size: 11px;
		margin-right: 12px;
	}
	
	/* Mobile Footer */
	.copyright-area {
		padding: 24px 0;
		text-align: center;
	}
	
	/* Prevent text overflow */
	h1, h2, h3, h4, h5, h6, p, span, a {
		word-wrap: break-word;
		overflow-wrap: break-word;
	}
	
	/* Remove transforms that might cause overflow */
	.cg-item,
	.announce-section,
	.form-card,
	.profile-card {
		transform: none;
	}
	
	/* Hide trending-post section on mobile */
	.trending-post {
		display: none !important;
	}
	
	/* Hide hero-section completely on mobile - Maximum priority */
	section.hero-section {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		min-height: 0 !important;
		max-height: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
		overflow: hidden !important;
		background: none !important;
		background-image: none !important;
		opacity: 0 !important;
		position: relative !important;
		line-height: 0 !important;
	}
	
	section.hero-section *,
	section.hero-section *::before,
	section.hero-section *::after {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		width: 0 !important;
		background: none !important;
		background-image: none !important;
		opacity: 0 !important;
		max-height: 0 !important;
		max-width: 0 !important;
	}
	
	section.hero-section .container,
	section.hero-section .row,
	section.hero-section [class*="col-"] {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
	}
	
	.hero-slider,
	.hero-slider.owl-carousel,
	.hero-slider .owl-stage-outer,
	.hero-slider .owl-stage,
	.hero-slider .owl-item,
	.hero-slider .hs-item,
	.hs-item,
	.hs-item.set-bg,
	.hs-item::after {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		width: 0 !important;
		overflow: hidden !important;
		background: none !important;
		background-image: none !important;
		opacity: 0 !important;
		position: absolute !important;
		left: -9999px !important;
		top: -9999px !important;
		max-height: 0 !important;
		max-width: 0 !important;
	}
	
	.hero-slider.owl-carousel .owl-dots {
		display: none !important;
		visibility: hidden !important;
	}
	
	.hs-text,
	.hs-text .label,
	.hs-text h3,
	.hs-text .ht-meta,
	.hs-text * {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.humberger-menu-wrapper {
		width: 300px;
		height: 100dvh;
		padding: 30px;
	}
	.trending-post {
		display: none !important;
	}
	.tab-elem .nav-item {
		margin-right: 5px;
	}
	.details-text .dt-share .ds-title,
	.contact-form .dt-share .ds-title {
		display: block;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.details-text .dt-share .ds-links a,
	.contact-form .dt-share .ds-links a {
		margin-right: 6px;
		margin-bottom: 10px;
	}
	.details-text .dt-author .da-pic,
	.contact-form .dt-author .da-pic {
		float: none;
		margin-right: 0;
	}
	.details-text .dt-author .da-text,
	.contact-form .dt-author .da-text {
		overflow: visible;
		padding-top: 30px;
	}
	.details-text .dt-author .da-text .da-links a,
	.contact-form .dt-author .da-text .da-links a {
		margin-right: 4px;
		margin-bottom: 8px;
	}
	.details-text .dt-comment .dc-item .dc-pic,
	.contact-form .dt-comment .dc-item .dc-pic {
		float: none;
		margin-right: 0;
	}
	.details-text .dt-comment .dc-item .dc-text,
	.contact-form .dt-comment .dc-item .dc-text {
		overflow: visible;
		padding-top: 30px;
	}
	.details-text .dt-comment .dc-item .dc-text .reply-btn,
	.contact-form .dt-comment .dc-item .dc-text .reply-btn {
		position: relative;
		right: 0;
		top: 0;
	}
	.details-text .dt-overall-rating .or-heading .or-skill,
	.contact-form .dt-overall-rating .or-heading .or-skill {
		overflow: visible;
		margin-right: 0;
	}
	.details-text .dt-overall-rating .or-heading .or-skill .skill-item,
	.contact-form .dt-overall-rating .or-heading .or-skill .skill-item {
		width: 100%;
		float: none;
		overflow: visible;
		margin-right: 0;
	}
	.details-text .dt-overall-rating .or-qualities,
	.contact-form .dt-overall-rating .or-qualities {
		overflow: visible;
		margin-right: 0;
	}
	.details-text .dt-overall-rating .or-qualities .qualities-item,
	.contact-form .dt-overall-rating .or-qualities .qualities-item {
		width: 100%;
		float: none;
		overflow: visible;
		margin-right: 0;
	}
	.details-text .dt-overall-rating .or-rating p,
	.contact-form .dt-overall-rating .or-rating p {
		float: none;
		margin-bottom: 5px;
	}
	.details-text .dt-overall-rating .or-rating .rating-star,
	.contact-form .dt-overall-rating .or-rating .rating-star {
		float: none;
	}
	.text-404 h1 {
		font-size: 135px;
	}
	.text-404 .search-404 {
		width: 290px;
	}
	.copyright-area .ca-links a {
		margin-right: 15px;
	}
	.signup-text .signup-form {
		width: 280px;
	}
	.editor-choice .ec-item .ec-pic {
		float: none;
		margin-bottom: 15px;
	}
	.search-model-form input {
		font-size: 28px;
	}

    .nav-options {
        background: linear-gradient(to bottom, #7b2cbf, #5a189a) !important;
    }

    .nav-menu ul li a {
        background: linear-gradient(to bottom, #9d4edd, #7b2cbf) !important;
    }

    .nav-menu ul li.active a {
        background: linear-gradient(to bottom, #c77dff, #9d4edd) !important;
    }

}

/*---------------------
  GO TO LOGIN/REGISTER Buttons
------------------------*/

/* Stiluri pentru butoanele GO TO LOGIN și GO TO REGISTER */
.signup-text .signup-form .button {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    background: #812acf;
    border: none;
    display: inline-block;
    padding: 12px 32px;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6; /* Transparent la început */
    font-family: "Space Grotesk", sans-serif;
}

.signup-text .signup-form .button span {
    display: inline-block;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}

/* Efect hover - devine opac */
.signup-text .signup-form .button:hover {
    opacity: 1; /* Opac la hover */
    background: #9b4dd8;
    transform: skewX(-15deg) translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Efect activ */
.signup-text .signup-form .button:active {
    transform: skewX(-15deg) translateY(0px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* pentru mesajele de eroare/succes la register */
.error-message {
    width: 30%;
    background: #ffe0e0;
    color: #b00020;
    padding: 12px 16px;
    margin: 10px auto 15px auto; /* Asta o centrează orizontal */
    border: 1px solid #b00020;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeInDown 0.4s ease;
    text-align: center; /* textul pe mijloc */
}

.success-message {
    width: 30%;
    background: #e0ffe5;
    color: #006d32;
    padding: 12px 16px;
    margin: 10px auto 15px auto; /* centrează și succesul */
    border: 1px solid #006d32;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeInDown 0.4s ease;
    text-align: center;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.radio-check input[type="checkbox"] {
    display: none; /* ascundem checkbox-ul standard */
}

li a {
    color: white;            /* sau ce culoare vrei */
    text-decoration: none;   /* scoate underline-ul */
    font-weight: 500;        /* un pic mai bold */
    transition: color 0.3s;  /* efect smooth la hover */
}

li a:hover {
    color: #8b45c3;          /* mov frumos la hover */
}


/* Stiluri pentru mesajele de eroare și succes */
.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

/* ===============================
   NAVBAR ISOLATION ZONE
================================ */

.app-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

/* Reset local – paginile NU mai pot strica navbar-ul */
.app-navbar *,
.app-navbar *::before,
.app-navbar *::after {
    box-sizing: border-box;
}

/* Burger + overlay sunt scoase complet din flow */
.app-navbar .humberger-menu-overlay,
.app-navbar .humberger-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    transform: none !important;
}

/* Z-index clar, fără conflicte */
.app-navbar .humberger-menu-overlay {
    z-index: 10001;
}

.app-navbar .humberger-menu-wrapper {
    z-index: 10002;
}

/*admin*/
.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 28px;
    margin-left: 40px;

    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff;

    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Space Grotesk", sans-serif;

    border-radius: 0;
    text-decoration: none;

    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    transition: all 0.25s ease;

    transform: skewX(-10deg);
}

.admin-link i {
    transform: skewX(10deg);
}

.admin-link:hover {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    transform: skewX(-10deg) translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.6);
}

/*pentru afisarea descrierii din anunt*/
.announce-desc {
	display: -webkit-box;
	-webkit-line-clamp: 3;      /* NUMĂRUL DE RÂNDURI */
	-webkit-box-orient: vertical;
	overflow: hidden;

	line-height: 1.5em;         /* important pt calc corect */
	max-height: calc(1.5em * 3);
}

/* =================================
   NAVBAR RESPONSIVE BEHAVIOR
================================= */

@media only screen and (min-width: 1200px) {
	.nav-options .humberger-menu {
		display: none !important;
	}

	.nav-options .nav-center .nav-menu {
		display: block !important;
	}

	.nav-options .nav-center .btn-create-announce {
		display: inline-flex !important;
	}

	.nav-options .nav-logo {
		display: flex !important;
	}
}

@media only screen and (max-width: 1199px) {
	.nav-options .nav-bar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		gap: 10px;
	}

	.nav-options .nav-left {
		display: flex;
		align-items: center;
		gap: 0;
		flex: 0 0 auto;
		order: 1;
		margin-left: 0;
		transform: translateX(-15px);
	}

	.nav-options .humberger-menu {
		display: inline-flex !important;
	}

	.nav-options .nav-logo {
		display: none !important;
	}

	.nav-options .nav-center {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		margin-left: auto;
		flex: 0 0 auto;
		width: auto;
		order: 2;
	}

	.nav-options .nav-center .nav-menu,
	.nav-options .nav-center .btn-create-announce {
		display: none !important;
	}

	.nav-options .nav-center .nav-right {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 8px;
		margin-left: 0;
		transform: translateX(-15px);
	}

	.nav-options .nav-center .nav-right .admin-link {
		display: none !important;
	}
}

@media only screen and (max-width: 991px) {
	.ht-options .ht-widget {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		text-align: left;
		margin-bottom: 0;
	}

	.ht-options .ht-widget ul {
		margin-bottom: 0;
	}

	.ht-options .ht-widget .mobile-lang-wrap {
		display: block;
		margin-left: auto;
		flex-shrink: 0;
	}

	/* Reset mobile global select overrides so Bootstrap form-control-sm takes over */
	.ht-options .ht-widget .mobile-lang-wrap .lang-select-mobile {
		width: auto !important;
		min-width: 0 !important;
		height: auto !important;
		min-height: 0 !important;
		padding: .15rem .4rem !important;
		font-size: .75rem !important;
		line-height: 1.4 !important;
		font-family: inherit !important;
		color: #212529 !important;
		background-color: #fff !important;
		border: 1px solid #ced4da !important;
		border-radius: .2rem !important;
		box-shadow: none !important;
	}

	.ht-options .ht-social {
		display: none !important;
	}
}



