
/*=================================
-----------------------------------
  SolMusic HTML Template
  Version: 1.0
 ---------------------------------
 =================================*/



/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

:root {
	--primary: #d8b24a;     /* brand gold */
	--accent: #138c52;      /* brand green */
	--dark: #020402;        /* rich black */
	--deep-blue: #0b1d13;   /* deep green tone */
  --text: #f1f5f9;
}



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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #0a183d;
	font-weight: 600;
	line-height: 1;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 15px;
	color: #6a7080;
	line-height: 1.8;
	font-weight: 500;
}

img {
	max-width: 100%;
}

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

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

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

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

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

.section-title h2 {
	font-size: 60px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
	overflow: hidden; /* 🔥 ensures overlay displays properly */
}

/* hero overlay */
.set-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: linear-gradient(
		135deg,
		rgba(216, 178, 74, 0.34),
		rgba(19, 140, 82, 0.26),
		rgba(2, 10, 6, 0.82)
	);

	z-index: 1;
}

/* keep content above overlay */
.set-bg > * {
	position: relative;
	z-index: 2;
}

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

.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;
}

/*---------------------
Commom elements
 -----------------------*/

/* buttons */

.site-btn {
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: 500;
	min-width: 195px;
	padding: 23px 20px;
	border-radius: 50px;
	text-transform: uppercase;
	background: var(--primary);
	color: #fff;
	line-height: normal;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s ease;
}

.site-btn:hover {
	background: linear-gradient(
		135deg,
		var(--primary),
		var(--accent)
	);
	color: #000;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(216, 178, 74, 0.32);
}

.site-btn:hover {
	color: #fff;
}

.site-btn.sb-c2 {
	background: #0b1d13;
}

.site-btn.sb-c2:hover {
	background: linear-gradient(
		135deg,
		#0b1d13,
		var(--primary)
	);
	color: #fff;
}

/* 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 #d8b24a;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #138c52;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #d8b24a;
		border-left-color: transparent;
	}
}

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

/*------------------
Trades page
 ---------------------*/

.results-summary-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 30px;
}

.result-card {
	background: linear-gradient(180deg, rgba(11, 29, 19, 0.92), rgba(6, 17, 10, 0.96));
	border: 1px solid rgba(216, 178, 74, 0.28);
	border-radius: 14px;
	padding: 22px 20px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.result-card .label {
	display: inline-block;
	color: var(--primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.result-card h4 {
	color: #ffffff;
	font-size: 30px;
	margin-bottom: 8px;
}

.result-card p {
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 0;
}

.results-disclaimer {
	background: linear-gradient(180deg, #ffffff, #f7fbf8);
	border-left: 4px solid var(--accent);
	border-radius: 10px;
	padding: 28px 30px;
	box-shadow: 0 14px 30px rgba(2, 4, 2, 0.06);
}

.results-disclaimer h4 {
	margin-bottom: 12px;
	color: var(--deep-blue);
}

.results-disclaimer p {
	margin-bottom: 0;
}

.results-note {
	color: var(--accent);
	font-size: 14px;
	font-weight: 600;
	margin-top: 12px;
}

.home-results-preview {
	padding-top: 0;
}

.home-results-preview .results-summary-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 0;
}

.home-results-preview .result-card {
	height: 100%;
}

.results-table-wrap {
	overflow-x: auto;
	border: 1px solid rgba(11, 29, 19, 0.08);
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.results-table {
	width: 100%;
	min-width: 860px;
	background: #ffffff;
}

.results-table th,
.results-table td {
	padding: 16px 18px;
	border-bottom: 1px solid #ececec;
	text-align: left;
}

.results-table th {
	background: linear-gradient(135deg, var(--deep-blue), #10261a);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}

.results-table tbody tr:nth-child(even) {
	background: #fafcfb;
}

.results-table tbody tr:hover {
	background: rgba(19, 140, 82, 0.05);
}

.results-table .pos {
	color: var(--accent);
	font-weight: 700;
}

.statement-id {
	display: inline-block;
	background: rgba(19, 140, 82, 0.12);
	border-radius: 999px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 700;
	padding: 7px 12px;
}

.results-last-updated {
	color: #777777;
	margin: 20px 0 35px;
	text-align: right;
}

.proof-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
	background: #ffffff;
	border: 1px solid rgba(11, 29, 19, 0.08);
	border-radius: 14px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
	padding: 26px 24px;
}

.proof-card h4 {
	margin-bottom: 12px;
	color: var(--deep-blue);
}

.proof-card p {
	margin-bottom: 0;
}

.telegram-float {
	bottom: 20px;
	height: 55px;
	position: fixed;
	right: 20px;
	width: 55px;
	z-index: 999;
}

.telegram-float img {
	border-radius: 50%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	height: 100%;
	transition: 0.3s;
	width: 100%;
}

.telegram-float img:hover {
	transform: scale(1.1);
}

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

.header-section {
	padding-left: 55px;
	padding-right: 72px;
	background: #030703;
}

.site-logo {
	display: inline-block;
	padding: 0;
	padding: 44px 15px;
}

.header-right {
	float: right;
	padding: 44px 0;
	margin-left: 130px;
}

.header-right .hr-btn {
	display: inline-block;
	color: #979aa5;
}

.header-right .user-panel {
	display: inline-block;
}

.header-right .user-panel a {
	font-size: 16px;
	color: #ffffff;
	margin: 0 10px;
}

.header-right .user-panel .register {
	color: var(--primary);
	margin-right: 0;
}

.header-right span {
	color: #fff;
	display: inline-block;
	padding-left: 9px;
}

.main-menu {
	list-style: none;
	float: right;
}

.main-menu li {
	display: inline-block;
	position: relative;
}

.main-menu li a {
	display: block;
	font-size: 16px;
	color: #ffffff;
	padding: 44px 10px;
	margin-left: 60px;
}

.main-menu li a:hover {
	color: var(--primary);
}

.main-menu li:first-child a {
	margin-left: 0;
}

.main-menu li:hover .sub-menu {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
}

.main-menu .sub-menu {
	position: absolute;
	list-style: none;
	width: 220px;
	left: 60px;
	top: 100%;
	padding: 20px 0;
	visibility: hidden;
	opacity: 0;
	margin-top: 50px;
	background: #fff;
	z-index: 99;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
	box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.05);
}

.main-menu .sub-menu li {
	display: block;
}

.main-menu .sub-menu li a {
	display: block;
	color: #000;
	margin-left: 0;
	padding: 5px 20px;
}

.main-menu .sub-menu li a:hover {
	color: var(--primary);
}

.slicknav_menu {
	display: none;
}

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

.hero-section {
	overflow: visible;
}

.hs-item {
	min-height: 760px;
	height: auto;
	padding-top: 80px;
	padding-bottom: 130px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: flex-start;

	/* Background handling */
	background: #06110a;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

	/* Needed for overlay */
	position: relative;
	z-index: 1;
}

/* HERO OVERLAY */
.hs-item::before {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(
		135deg,
		rgba(216, 178, 74, 0.34),
		rgba(19, 140, 82, 0.26),
		rgba(2, 10, 6, 0.82)
	);

	z-index: -1;
}

.hs-item h2 {
	color: #fff;
	font-size: 70px;
	margin-bottom: 25px;
	line-height: 1.05;
	position: relative;
	top: 50px;
	opacity: 0;

	/* subtle glow */
	text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hs-item h2 span {
	color: var(--primary);
}

.hs-item p {
	color: #ffffff;
	opacity: 0.8;
	margin-bottom: 50px;
	position: relative;
	top: 50px;
	opacity: 0;

	/* readability boost */
	text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hs-item .site-btn {
	position: relative;
	top: 50px;
	margin-bottom: 20px;
	opacity: 0;
}

.hs-item .sb-c2 {
	margin-left: 8px;
}

.hs-item .hs-text {
	padding-top: 20px;
	max-width: 475px;
}

.hr-img img {
	min-width: 602px;
	position: relative;
	left: -34px;
	top: 50px;
	opacity: 0;
}

.hr-img {
	padding-top: 20px;
	padding-bottom: 64px;
}

.owl-item.active .hs-item img,
.owl-item.active .hs-item h2,
.owl-item.active .hs-item p,
.owl-item.active .hs-item .site-btn,
.owl-item.active .hs-item .site-btn.sb-c2 {
	top: 0;
	opacity: 1;
}

.owl-item.active .hs-item img {
	-webkit-transition: all 0.5s ease 0.2s;
	transition: all 0.5s ease 0.2s;
}

.owl-item.active .hs-item h2 {
	-webkit-transition: all 0.5s ease 0.4s;
	transition: all 0.5s ease 0.4s;
}

.owl-item.active .hs-item p {
	-webkit-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

.owl-item.active .hs-item .site-btn {
	-webkit-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}

.owl-item.active .hs-item .site-btn.sb-c2 {
	-webkit-transition: all 0.5s ease 1s;
	transition: all 0.5s ease 1s;
}

.hero-slider .owl-dots {
	position: absolute;
	bottom: 33px;
	left: calc(50% - 588px);
	max-width: 1176px;
	width: 100%;
	padding-left: 15px;
}

.hero-slider .owl-dots .owl-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #0b1d13;
	margin-right: 10px;
}

.hero-slider .owl-dots .owl-dot.active {
	background: var(--primary);
}

/* ----------------
Intro section
 -------------------*/

.intro-section p {
	margin-bottom: 35px;
	padding-top: 10px;
}

/* ----------------
How section
 -------------------*/

.how-section {
	background-color: #06110a;
}

.how-item .hi-icon {
	position: relative;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--primary),
		var(--accent)
	);
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.how-item .hi-icon img {
	max-width: 45px;
}

.how-item h4 {
	margin-bottom: 25px;
}

.how-item p {
	font-weight: 400;
	opacity: 0.6;
}

/* ----------------
Concept section
 -------------------*/

.concept-section p {
	padding-top: 5px;
}

.concept-item {
	text-align: center;
	padding-top: 35px;
}

.concept-item img {
	border-radius: 40px;
	margin-bottom: 15px;
}

/* --------------------
Subscription section
 -----------------------*/

.subscription-section {
	background: #06110a;
}

.sub-text {
	padding-right: 15px;
}

.sub-text h2 {
	color: #fff;
	font-size: 60px;
	margin-bottom: 20px;
	font-weight: 500;
}

.sub-text h3 {
	color: var(--accent);
	margin-bottom: 30px;
	font-weight: 500;
}

.sub-text p {
	color: #fff;
	font-weight: 400;
	opacity: 0.6;
	margin-bottom: 40px;
}

.sub-list {
	list-style: none;
	background: #0d2317;
	padding: 70px 15px 50px 155px;
	border-radius: 42px;
}

.sub-list li {
	color: #ffffff;
	font-size: 18px;
	margin-bottom: 25px;
}

.sub-list li img {
	padding-right: 28px;
}

/* ----------------
Premium section 
 -------------------*/

.premium-section p {
	margin-bottom: 50px;
}

.premium-item {
	text-align: center;
	padding-top: 35px;
}

.premium-item img {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	margin-bottom: 40px;
}

.premium-item h4 {
	margin-bottom: 4px;
}

.premium-item p {
	margin-bottom: 0;
}

/* ----------------
Trade Journal
 -------------------*/

.journal-stat-card {
	background: linear-gradient(135deg, #062b1d 0%, #032013 55%, #02170f 100%);
	border-radius: 22px;
	padding: 30px 20px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 14px 30px rgba(2, 18, 11, 0.22);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.journal-stat-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #d8b24a, #5df0a0);
}

.journal-stat-card::after {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	right: -34px;
	top: -34px;
	background: radial-gradient(circle, rgba(216, 178, 74, 0.22), rgba(216, 178, 74, 0));
}

.journal-stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 36px rgba(2, 18, 11, 0.32);
}

.journal-stat-card h3 {
	color: #fff;
	font-size: 52px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
	text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
	position: relative;
	z-index: 2;
}

.journal-stat-card p {
	color: #e3e9f2;
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	position: relative;
	z-index: 2;
}

.journal-stat-card.stat-neutral h3 {
	color: #ffffff;
}

.journal-stat-card.stat-success h3 {
	color: #eafee4;
}

.journal-stat-card.stat-positive h3 {
	color: #9cffd2;
}

.journal-stat-card.stat-risk h3 {
	color: #ffd4d4;
}

.journal-filter-wrap {
	margin-top: -10px;
}

.journal-filter-pill {
	display: inline-block;
	padding: 8px 16px;
	margin: 6px;
	border-radius: 25px;
	background: #edf2f7;
	color: #0b1d13;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.journal-trade-card {
	background: #fff;
	border: 1px solid #ebedf3;
	border-radius: 20px;
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: 0 8px 24px rgba(9, 18, 30, 0.06);
	height: calc(100% - 24px);
}

.journal-trade-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.journal-trade-head h4 {
	margin: 0;
	font-size: 22px;
}

.journal-badge {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 14px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.badge-win {
	background: rgba(19, 140, 82, 0.14);
	color: #138c52;
}

.badge-loss {
	background: rgba(194, 57, 57, 0.14);
	color: #b03a3a;
}

.badge-flat {
	background: rgba(11, 29, 19, 0.12);
	color: #0b1d13;
}

.journal-trade-card p {
	margin-bottom: 8px;
	font-size: 14px;
}

.journal-proof-note {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed #dfe3ec;
	font-size: 13px;
	color: #707888;
}

.journal-step-list {
	padding-left: 20px;
	margin: 0;
}

.journal-step-list li {
	color: #fff;
	opacity: 0.92;
	margin-bottom: 14px;
	line-height: 1.7;
	font-size: 15px;
}

.journal-legend-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	padding: 22px;
	margin-bottom: 16px;
}

.journal-legend-card h4 {
	color: #fff;
	margin-bottom: 14px;
}

.journal-legend-card p {
	color: #e8edf5;
	margin-bottom: 8px;
	opacity: 0.95;
}

.journal-reference-image {
	width: 100%;
	border-radius: 18px;
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.journal-risk-note {
	background: rgba(216, 178, 74, 0.16);
	border-left: 4px solid #d8b24a;
	color: #fff;
	padding: 14px 16px;
	border-radius: 8px;
	line-height: 1.65;
	font-size: 14px;
}

/* Shared floating Telegram CTA */
.telegram-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 55px;
	height: 55px;
	z-index: 999;
}

.telegram-float img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transition: 0.3s;
}

.telegram-float img:hover {
	transform: scale(1.1);
}

/* ----------------
Responsive
 -------------------*/

.footer-section {
	background: #06110a;
	padding: 100px 0 85px;
}

.footer-widget {
	padding-top: 2px;
}

.footer-widget h2 {
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.footer-widget ul {
	list-style: none;
}

.footer-widget ul li a {
	display: inline-block;
	color: #6a7080;
	font-size: 14px;
	margin-bottom: 10px;
}

.copyright {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 500;
	color: #505565;
	padding: 10px 0 25px;
}

.social-icon {
	width: 50px;
	height: 50px;
	margin: 0 10px;
	object-fit: contain;
	transition: all 0.3s ease;
	opacity: 0.8;
}

.social-icon:hover {
	transform: translateY(-3px) scale(1.1);
	opacity: 1;
	filter: drop-shadow(0 5px 10px rgba(19, 140, 82, 0.5));
}

.social-links a {
	display: inline-block;
	color: #6a7080;
	font-size: 18px;
	margin-right: 35px;
}

/* Legacy template sections removed: playlist/blog/category/player/contact page blocks were unused by current pages. */

/* ----------------
Responsive
 -------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1176px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 1200px) and (max-width: 1360px) {
	.header-right {
		margin-left: 50px;
	}
	.main-menu li a {
		margin-left: 25px;
	}
	.main-menu .sub-menu {
		left: 25px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header-section {
		padding-left: 15px;
		padding-right: 20px;
	}
	.header-right {
		margin-left: 20px;
	}
	.main-menu li a {
		margin-left: 15px;
	}
	.main-menu .sub-menu {
		left: 15px;
	}
	.hr-img img {
		min-width: 500px;
		position: relative;
	}
	.sub-list {
		padding: 70px 15px 50px 90px;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hr-img {
		display: none;
	}
	.slicknav_menu {
		display: block;
		background: transparent;
		margin-top: -60px;
	}
	.slicknav_nav {
		background: #0d2317;
		margin-bottom: 35px;
	}
	.slicknav_nav ul {
		margin: 0 0 0 0;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 12px 25px;
		margin: 0;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		color: var(--primary);
		background: transparent;
	}
	.slicknav_btn {
		position: relative;
		top: -24px;
		background: #0d2317;
	}
	.main-menu {
		display: none;
	}
	.header-right {
		display: none;
	}
	.header-right-warp .header-right {
		display: block;
		float: none;
		padding: 0 0 24px;
		margin-left: 0;
	}
	.header-right-warp .header-right span {
		display: none;
	}
	.header-right-warp .header-right .user-panel {
		display: block;
		padding-left: 26px;
	}
	.header-right-warp .header-right .user-panel a {
		display: inline-block;
		padding: 0;
		margin: 0;
	}
	.header-right-warp .header-right .user-panel a:hover {
		background: transparent;
	}
	.header-right-warp .header-right .user-panel .login {
		padding-right: 10px;
	}
	.sub-text {
		margin-bottom: 50px;
	}
	.footer-widget {
		margin-bottom: 40px;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.journal-trade-card {
		height: auto;
	}
	.journal-trade-head {
		flex-direction: column;
		align-items: flex-start;
	}
	.journal-stat-card h3 {
		font-size: 32px;
	}
	.hs-item {
		min-height: 860px;
		height: auto;
		padding-top: 120px;
		padding-bottom: 120px;
		align-items: flex-start;
	}
	.hr-img {
		display: block;
		text-align: center;
		margin-top: 16px;
		padding-top: 0;
		padding-bottom: 28px;
	}
	.hr-img img {
		min-width: 0;
		max-width: 280px;
		width: 100%;
		left: 0;
		top: 0;
	}
	.hs-item .hs-text {
		padding-top: 0;
	}
	.slicknav_menu {
		display: block;
		background: transparent;
		margin-top: -60px;
	}
	.slicknav_nav {
		background: #0d2317;
		margin-bottom: 35px;
	}
	.slicknav_nav ul {
		margin: 0 0 0 0;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 12px 25px;
		margin: 0;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		color: var(--primary);
		background: transparent;
	}
	.slicknav_btn {
		position: relative;
		top: -24px;
		background: #0d2317;
	}
	.main-menu {
		display: none;
	}
	.header-right {
		display: none;
	}
	.header-right-warp .header-right {
		display: block;
		float: none;
		padding: 0 0 24px;
		margin-left: 0;
	}
	.header-right-warp .header-right span {
		display: none;
	}
	.header-right-warp .header-right .user-panel {
		display: block;
		padding-left: 26px;
	}
	.header-right-warp .header-right .user-panel a {
		display: inline-block;
		padding: 0;
		margin: 0;
	}
	.header-right-warp .header-right .user-panel a:hover {
		background: transparent;
	}
	.header-right-warp .header-right .user-panel .login {
		padding-right: 10px;
	}
	.sub-list {
		padding: 60px 15px 50px 30px;
	}
	.sub-text {
		margin-bottom: 50px;
	}
	.footer-widget {
		margin-bottom: 40px;
	}
	.header-section {
		padding: 0 15px;
	}
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.section-title h2,
	.hs-item h2,
	.sub-text h2 {
		font-size: 36px;
	}
	.hs-item {
		min-height: 900px;
		padding-top: 130px;
		padding-bottom: 120px;
	}
	.hs-item .hs-text {
		padding-top: 0;
	}
	.header-section {
		padding: 0;
	}
	.social-links a {
		margin-right: 20px;
	}
}

.how-section.set-bg,
.subscription-section.set-bg {
	position: relative;
	z-index: 1;
}

.set-bg > * {
	position: relative;
	z-index: 2;
}
/* FIX HERO WITHOUT CAROUSEL */
.hero-slider .hs-item h2,
.hero-slider .hs-item p,
.hero-slider .hs-item .site-btn,
.hero-slider .hr-img img {
	opacity: 1 !important;
	top: 0 !important;
}

/* Trades hero readability tuning */
.trade-hero .hs-item::before,
.home-hero .hs-item::before {
	background: linear-gradient(
		90deg,
		rgba(2, 12, 8, 0.86) 0%,
		rgba(2, 12, 8, 0.72) 42%,
		rgba(2, 12, 8, 0.46) 100%
	);
}

.trade-hero .hs-text,
.home-hero .hs-text {
	background: rgba(2, 12, 8, 0.38);
	padding: 22px 24px;
	border-radius: 16px;
	backdrop-filter: blur(1px);
}

.trade-hero .trade-hero-title-main {
	color: #d8b24a;
	text-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.trade-hero .trade-hero-title-accent {
	color: #138c52;
	text-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.trade-hero .hs-item p,
.home-hero .hs-item p {
	color: #ffffff;
	opacity: 0.8;
}

@media only screen and (max-width: 767px) {
	.trade-hero .hs-text,
	.home-hero .hs-text {
		padding: 16px;
	}

	.home-results-preview .results-summary-grid {
		grid-template-columns: 1fr;
	}
}