@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
	--main-font: "DM Sans", sans-serif !important;
	--bg-color: #fff;
	--bg-dark: #131212;
	--btn-color: #C9982C;
	--para-color: rgba(0, 0, 0, 0.8);
	--common-mini-head: #2e2828;
	--hand-shadow: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
	--slider-blur: linear-gradient(90deg,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 0.8) 0%,
			rgba(255, 255, 255, 0) 100%);
	--nav-bg: rgba(255, 255, 255, 0.9);
	--product-list-bg: rgba(255, 255, 255, 0.8);
}

.dark-theme {
	--bg-color: #000;
	--bg-dark: #fff;
	--btn-color: #C9982C;
	--para-color: #fff;
	--common-mini-head: #fff;
	--hand-shadow: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 100%);
	--slider-blur: linear-gradient(90deg,
			rgb(0, 0, 0) 0%,
			rgba(0, 0, 0, 0.8) 0%,
			rgba(255, 255, 255, 0) 100%);
	--nav-bg: rgba(0, 0, 0, 0.9);
	--product-list-bg: #1a1a1a;
}

html {
	overflow-x: hidden !important;
}



body {
	padding: 0px;
	margin: 0px;
	font-family: var(--main-font) !important;
	background-color: var(--bg-color) !important;
	width: 100%;
	position: relative;
	/* transition: 10s; */
}

.switch-icon {
	position: fixed;
	right: 30px;
	top: 50%;
	z-index: 999;
	transform: rotate(270deg);
}


/* Theme Toggle Styles */
.theme-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 30px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--btn-color);
	transition: .4s;
	border-radius: 34px;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

input:checked+.toggle-slider {
	background-color: var(--btn-color);
}

input:checked+.toggle-slider:before {
	transform: translateX(30px);
}

.toggle-icons {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0 8px;
	pointer-events: none;
}

.toggle-icons span {
	font-size: 14px;
	color: white;
}



.preloaderBg {
	position: fixed;
	top: 0;
	background: var(--bg-color) !important;
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 999999;
}

.preloader {
	margin: auto;
	background: url(../img/logo.png) no-repeat center;
	background-size: auto;
	background-size: 150px;
	display: flex;
	align-items: center;
}


.preloader2 {
	border: 5px solid #f3f3f3;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: rgb(243, 243, 243);
	border-top: 5px solid var(--btn-color);
	border-radius: 50%;
	width: 200px;
	height: 200px;
	animation: spin 1s linear infinite;
	position: relative;
	margin: auto;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


@media only screen and (max-width:1400px) {
	.preloader2 {
		width: 180px;
		height: 180px;
	}

	.preloader {
		background-size: 130px;
	}
}

@media only screen and (max-width: 768px) {
	.preloader2 {
		width: 160px;
		height: 160px;
	}

	.preloader {
		background-size: 115px;
	}
}

@media only screen and (max-width: 425px) {
	.preloader2 {
		width: 140px;
		height: 140px;
	}

	.preloader {
		background-size: 100px;
	}
}



ul {
	padding: 0 !important;
	margin: 0 !important;
	list-style: none;
}

a {
	text-decoration: none !important;

}

.main-para {
	font-weight: 400;
	font-size: 16px;
	/* color: var(--para-color); */
	color: #7c7c7c;
}

.custom-container {
	max-width: 1700px;
	margin: 0 auto;
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-right: auto;
	margin-left: auto;
	/* overflow: hidden; */
	/* display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between; */
}

.custom-nav .custom-container {
	display: flex;
	justify-content: space-between;
	width: 100%;
	display: flex;
	flex-wrap: inherit;
	align-items: center;
	justify-content: space-between;
}

.custom-nav .navbar-toggler {
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

/* navbar */


/* Base Navbar Styles */
.custom-nav {
	transition: all 0.4s ease !important;
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	background-color: var(--nav-bg) !important;
	/* Semi-transparent white */

}

/* Scrolled State - Blur Effect */
.custom-nav.scrolled {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(1px);
	background-color: var(--nav-bg) !important;
	/* More opaque when scrolled */
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Ensure dropdowns appear above the blurred navbar */
.dropdown-menu {
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Logo adjustment for better visibility */
.logo-img img {
	transition: all 0.4s ease;

	/* Default size */
}




.custom-nav {
	padding: 20px 0px !important;
}

.custom-nav .navbar-nav {
	gap: 10px;
}

.custom-nav .navbar-nav a {
	font-weight: 400;
	font-size: 16px;
	color: var(--common-mini-head);
	transition: 0.3s;
	font-weight: 500;
}

.custom-nav .navbar-nav a.show {
	color: var(--common-mini-head) !important;
}

element {}

@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .dropdown-menu {
		position: absolute;

	}
}

.navbar-nav .dropdown-menu {
	position: static;

}

.dropdown-menu.show {
	display: block;

}

.dropdown-menu[data-bs-popper] {
	top: 100%;

	left: 0;

	margin-top: var(--bs-dropdown-spacer);

}

.custom-nav .dropdown-menu {
	backdrop-filter: blur(15px);

	-webkit-backdrop-filter: blur(15px);

	background-color: var(--nav-bg) !important;

	border: none;

	border-radius: 8px !important;

	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

	padding: 10px 0;
	border: solid 1.5px #eee;

}

.custom-nav .dropdown-menu .dropdown-item {
	border-radius: 8px !important;
	padding: 10px;
	font-size: 14px;
}

.custom-nav .dropdown-menu .dropdown-item:hover {
	background-color: var(--nav-bg) !important;
}

.custom-nav .navbar-nav a:hover {
	color: var(--btn-color);
}

.custom-nav .navbar-nav a.active {
	color: var(--btn-color);
}

.logo-img img {
	width: 210px;
}

.primary-button {
	border-radius: 12px;
	padding: 10px 20px;
	background: var(--btn-color);
	color: #fff;
	border: none;
	font-size: 16px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.primary-button:hover {
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.4) inset;
}

.primary-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: 0.5s;
}


.primary-button:hover::before {
	left: 100%;
}

.common-space {
	padding-bottom: 120px;
}

.common-head {
	font-weight: 400;
	font-size: 16px;
	color: var(--common-mini-head);
	margin-bottom: 10px;
}

.common-head span {
	color: var(--btn-color);
}

/* navbar */

/* banner */
.banner-section {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
}

.banner-content .banner-logo {
	width: 233px;

}

.banner-content h1 {
	font-weight: 600;
	font-size: 70px;
	color: var(--bg-dark);
}

.banner-content .app-list {
	width: 100%;
	display: flex;
	gap: 20px;
	align-items: center;
}

.banner-content .app-list img {
	width: 150px;
	height: 50px;
}

.banner-section .banner-img {
	position: relative;
}

/* .banner-primary{
	width:100% !important;

} */
.banner-section .banner-img .windows-icon {
	position: absolute;
	content: '';
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 240px;
	animation: zoomInOut 3s ease-in-out infinite;
}

@keyframes zoomInOut {
	0% {
		transform: translateY(-50%) scale(1);
	}

	50% {
		transform: translateY(-50%) scale(1.1);
		/* Zoom in to 120% */
	}

	100% {
		transform: translateY(-50%) scale(1);
		/* Return to normal size */
	}
}

.sub-head {
	font-weight: 400;
	font-size: 33px;
	color: var(--common-mini-head);
	text-align: center;
	margin-bottom: 30px;
}

.sub-head span {
	color: var(--btn-color);
}

/* banner */
.client-carousel .client-card img {
	width: 170px !important;
	margin: 0 auto;
	height: 40px;
	object-fit: contain;
}

.client-carousel {
	position: relative;
	overflow: hidden;
	padding: 20px 0;
	/* Give space for blur */
}

/* Left blur fade (start of carousel) */
.client-carousel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 300px;
	/* Adjust blur width */
	background: var(--slider-blur);
	backdrop-filter: blur(1px);
	z-index: 2;
	pointer-events: none;
}

/* Right blur fade (end of carousel) */
.client-carousel::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 300px;
	/* Match left side */
	background: var(--slider-blur);
	backdrop-filter: blur(1px);
	z-index: 2;
	pointer-events: none;
}

/* Make sure Owl Carousel items can overflow */
.owl-stage-outer {
	overflow: visible !important;
}

/* Optional: Add spacing between items */
.owl-item {
	padding: 0 10px;
}


.solution-content h2 {
	font-weight: 300;
	font-size: 48px;
	color: var(--bg-dark);
	margin-bottom: 15px;
}

.organisation-cont h3 {
	font-weight: 600;
	font-size: 27px;
	color: var(--bg-dark);
}

.organisation-cont img {
	height: 45px;
}

.organisation-cont .icon-cont {
	display: flex;
	align-items: center;
	gap:
		10px;
	margin: 10px 0;

}

.organisation-cont .icon-cont img {
	width: 45px;
}

.organisation-cont .icon-cont h5 {
	font-weight: 500;
	font-size: 22px;
	color: var(--bg-dark);
	margin: 0;
}

.download-section {
	display: flex;
	gap: 20px;
	background: rgba(0, 0, 0, 0.86);
	border: 1px solid #ffbd00;
	border-left: none;
	border-right: none;
	padding: 30px;
}

.download-carousel {
	overflow: hidden;
	align-items: center;
}

.download-carousel .client-card img {
	width: auto !important;
	height: 33px !important;
	margin: 0 auto;
}

.download-section .download-icon {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.download-section .download-icon h5 {
	font-weight: 500;
	font-size: 22px;
	color: #ecf2ff;
	margin: 0;
}

.download-section .download-icon img {
	width: 30px;
}

.download-section .download-icon span {
	content: "";
	position: absolute;
	width: 2px;
	height: 50px;
	background-color: var(--bg-color);
	right: -20px;
}

.service-section {
	text-align: center;
}

.service-head {
	font-weight: 600;
	font-size: 50px;
	color: var(--common-mini-head);
}

.service-content {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 45px;
}

.service-content .service-box {
	border: 1.79px solid rgba(201, 152, 44, 0.62);
	border-radius: 29px;
	padding: 30px;
	background: rgba(201, 152, 44, 0.3);
	font-weight: 600;
	font-size: 24px;
	color: #c9982c;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	box-shadow: 0 4px 10px rgba(201, 152, 44, 0.1);
}

/* Pop-Up Effect */
.service-content .service-box:hover {
	transform: translateY(-4px);
	/* Lifts the box up */

}

.product-sec {
	margin-top: 45px !important;

}

.product-sec .product-cont .product-img {
	overflow: hidden;
	border-radius: 15px;
}

.product-sec .product-cont .product-img img {
	width: 100%;
	scale: 1;
	transition: ease-in-out .3s;
}

.product-sec .product-cont:hover .product-img img {
	width: 100%;
	scale: 1.1;
	border-radius: 15px;
}

.product-cont h4 {
	font-weight: 600;
	font-size: 36px;
	color: var(--common-mini-head);
	margin-top: 18px;
}

/* .product-cont a{
	font-weight: 400;
font-size: 17px;
text-decoration: underline !important;
color: #1c1c1c;
position: relative;
}
.product-cont a::before{
position: absolute;
content: "➔";
right: -18px;
}
.product-cont a:hover{
	color: var(--btn-color);
} */

@keyframes pulseBorder {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}

	70% {
		transform: scale(1.05);
		opacity: 0.3;
	}

	100% {
		transform: scale(1.1);
		opacity: 0;
	}
}

.news-carousel {
	margin-top: 45px;
	overflow: hidden;
}

.news-carousel .client-card {
	width: 100%;
	border: 1px solid #e8e8ea;
	border-radius: 20px;
	padding: 20px;
	/* margin: 5px; */
}

.news-carousel .client-card img {
	height: 200px;
	object-fit: cover;
}

.news-carousel .news-slider-cont h5 {
	font-weight: 300;
	font-size: 16px;
	color: var(--bg-dark) !important;
	margin-top: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	/* Limits the text to 3 lines */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-slider-cont {}

.veiw-btn {
	font-weight: 400;
	font-size: 16px;
	text-decoration: underline !important;
	color: var(--common-mini-head);
	position: relative;
}

.veiw-btn::before {
	position: absolute;
	content: "➔";
	right: -20px;
}

.veiw-btn:hover {
	color: var(--btn-color);
}

.cta-box {
	width: 100%;
	background-image: url(../img/cta.png);
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
	padding: 50px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cta-cont h6 {
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
}

.cta-cont h2 {
	font-weight: 600;
	font-size: 40px;
	color: #fff;
}

.secodary-btn {
	border: 1px solid #c9982c;
	border-radius: 15px;
	padding: 17px 31px;
	height: fit-content;
	background: rgba(201, 152, 44, 0.3);
	font-weight: 500;
	font-size: 18px;
	color: #fee4e4;
}



/* footer */
.footer {
	border-top: solid 1.5px #eee;
	padding-top: 50px;
}

.footer-logo img {
	width: 240px;
	margin-bottom: 20px;
}

.footer-list h4 {
	font-weight: 500;
	font-size: 18px;
	color: var(--common-mini-head);
	margin-bottom: 20px;
}

.footer-list ul li {
	font-weight: 400;
	font-size: 14px;
	color: var(--common-mini-head);
	margin-bottom: 10px;
	transition: .2s;
}

.footer-list ul li:hover {
	color: var(--btn-color);
}

.footer-list .footer-contact {
	display: flex;
	/* align-items: center; */
	gap: 10px;
	margin-top: 10px;
	color: var(--common-mini-head);
}

.footer-list .footer-contact i,
.footer-list .footer-contact h6 {
	font-weight: 400;
	font-size: 14px;
	color: var(--common-mini-head) !important;
	margin: 0;
}

.social-links {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 30px 0 !important;
}

.social-links li img {
	width: 45px;
}

.copy-right-sec {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.copy-right-sec h6 {
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: var(--common-mini-head);
	margin: 0;
}

.copy-right-sec span {
	color: var(--common-mini-head);
}

.hand-img {
	position: relative;
}

.shadow-shape {
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: 0;
	z-index: 1;
	background: var(--hand-shadow);
}


/* about page start */


.secondary-banner {
	height: 400px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 0 50px 50px;
	background-image: url(../img/banner2.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-blend-mode: overlay;
	background-color: #000000cf;
}

.secondary-banner-cont {
	margin-top: 50px;
}

.secondary-banner-cont h2 {
	color: #fff;
	font-size: 42px;
	font-weight: 700;
	text-align: center;
}

.page-name {
	text-align: center;
}

.secondary-banner-cont a {
	color: #ffff;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	font-style: italic;
}

.secondary-banner-cont .active {
	color: #C9982C;
}

.secondary-banner-cont span {
	color: #C9982C;
}

.secondary-banner-cont p {
	color: #ffff;
	font-size: 20px;
	margin-top: 10px;
	font-weight: 300;
	font-style: italic;
}

.about-img img {
	width: 100%;
	height: 470px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
	border: solid 1px #eeee;
}

.abt-title {
	font-size: 38px;
	color: var(--bg-dark);
	font-weight: 600;
	margin-bottom: 20px;
}

.owl-carousel {
	overflow: hidden;
}

.history-carousel {
	margin-top: 30px;
}

.history-carousel .client-card img {
	width: 150px !important;
	margin: 0 auto;
}

.about-sec {
	/* margin-top: 30px !important; */
}

.launch-bg {
	background-image: url(../img/detail-page/abt2.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: calc();
	padding: 80px 0;
	background-attachment: fixed;
	background-blend-mode: overlay;
	background-color: #0e0e0ed8;
}

.launch-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 60px;
	text-align: justify;
	border-radius:
		25px 10px 10px 10px;
	border:
		2px solid rgba(255, 255, 255, 0.05);
	background:
		linear-gradient(150deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
	backdrop-filter: blur(10px);
	height: 100%;
}

.launch-card h3 {
	color: #fff;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
	/* text-transform: uppercase; */
}

.launch-card h4 {
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 25px;
}

.launch-card p {
	color: #fff;
}

.launch-card img {
	width: 110px;
}

.community-img {
	height: 400px;
	position: relative;
}

.community-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.rotate-logo {
	position: absolute;
	right: -52px;
	top: 50%;
	transform: translateY(-50px);
	background-color: var(--bg-color);
	border: solid 1px var(--btn-color);
	border-radius: 50%;
	padding: 10px;
	width: 80px;
	height: 80px;
	z-index: 990;

	/* Rotation animation */
	animation: rotate360 4s linear infinite;
}

.rotate-logo img {
	background-color: var(--bg-color);
	box-shadow: none !important;
	border: none !important;
}

/* Keyframes for rotation */
@keyframes rotate360 {
	from {
		transform: translateY(-50px) rotate(0deg);
	}

	to {
		transform: translateY(-50px) rotate(360deg);
	}
}


.rotate-logo img {

	object-fit: contain;
}

.community-sec h3 {
	color: var(--bg-dark);
	font-size: 38px;
	margin-top: 30px;
}

.community-sec h3 a {
	color: #C9982C;
}

/* about page end */
/* footer */

/* product page */

.product-sec .about-img img {
	border-radius: 20px;
}

.product-sec .about-cont h2 {
	font-size: 42px;
	font-weight: 700;
}

.about-cont h3 {
	font-size: 26px;
	color: #c9982c;
	font-weight: 600;
	margin-bottom: 10px;
}

.product-detail-list {
	align-items: center;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background-color: var(--product-list-bg) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.27);
	padding: 20px 30px;
	border-radius: 15px;
	margin-top: 30px;
}

.product-trading-img {
	width: 100%;
	height: 350px;
	border-radius: 15px;
}

.product-trading-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 13px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.product-trading-cont h3 {
	color: var(--bg-dark);
	font-size: 28px;
	font-weight: 600;
}

.product-trading-cont p {
	margin-bottom: 10px;
}

.trader-btn-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	text-align: center;
	margin-top: 40px;
}

.trader-btn-logo img {
	width: 300px;
}

.trade-img img {
	object-fit: contain;
}

.product-trading-video {
	display: flex;
	gap: 10px;
	/* margin-top: 30px; */
}

.product-trading-video video {
	width: 100%;
	border-radius: 20px;
}

.product-trading-video-tags h4 {
	font-size: 16px;
	font-weight: 500;
	padding: 30px 15px;
	border-radius: 15px;
	background-color: var(--product-list-bg) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.27);

	color: var(--btn-color);
}

.trader-btn-logo-custom {
	flex-direction: row;
	justify-content: center;
}

.launch-card-custom {
	align-items: start;
	text-align: initial;
}

.launch-card-custom p {
	margin-bottom: 10px;
}

.video-sec {
	margin-top: 30px !important;
}

.mql-box {
	border: solid 2px #c9982c;
	padding: 15px;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;

}

.mql-box img {
	width: 75px !important;
	margin-bottom: 10px;
}

.mql-box h6 {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
}


.traderbrokers-bg {
	background-color: #000;

	background-image: none !important;

	border: solid 1px #1a1a1a;

	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: rgb(26, 26, 26);
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: rgb(26, 26, 26);

	border-right: none;

	border-left: none;

}

.traderbrokers-sec {
	border-radius: 30px;
	padding: 80px 60px;
	background-color: #1a1a1a;
	border: 1px solid #ffffff1a;
	border-radius: 24px;
	width: 100%;
	box-shadow: 0 16px 32px #0000003d;
	color: #fff;
}

.traderbrokers-sec h3 {
	color: var(--btn-color);
	font-size: 32px;
	font-weight: 600;
}

.traderbrokers-sec h4 {
	color: #fff;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
}

.traderbrokers-sec p {
	color: #fff;
	margin-bottom: 8px;
}

.enhanced-trading .community-img img {
	object-fit: contain;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
	border: solid 1px #eeee;
}

.product-trading-cont h4 {
	font-size: 24px;
	color: var(--btn-color);
}

.gif-sec {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.meta-trader-list h4 {
	font-size: 36px;
	font-weight: 600;
	color: var(--btn-color);
	text-align: center;
	margin-bottom: 30px;
}

.benafits-head {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: start;
}

.benafits-head img {
	width: 50px !important;
}

.benafits-head h4 {
	font-size: 24px;
	font-weight: 600;
	color: var(--btn-color);
}

.mql-box p {
	font-size: 16px;
	margin: 0;
}

.advantages {
	padding: 30px;
	background-color: #1a1a1a;
	width: 100%;
	height: 100%;
	box-shadow: 0 16px 32px #0000003d;
	color: #fff;

}

.advantages h4 {
	color: var(--btn-color);
	font-size: 24px;
	font-weight: 600;

}

.advantages p {
	color: #fff;
	margin-top: 10px;
	margin-bottom: 0;
}

.additional-security-card {
	background-color: var(--btn-color);
	padding: 30px;
	height: 100%;
}

.additional-security-card h5 {
	color: #fff;
	font-size: 26px;
	font-weight: 600;
}

.additional-security-card ul li {
	color: #fff;
	padding-left: 20px;
	position: relative;
	font-size: 16px;
}

.additional-security-card p {
	color: #fff;
	font-size: 16px;
	margin-bottom: 5px;
}

.additional-security-card ul li::before {
	position: absolute;
	content: "↳";
	color: #fff;
	font-size: 18px;
	left: 0;
}

.pricing-card {
	width: 100%;
	padding: 30px;
	border-radius: 15px;
	margin-top: 30px;
	color: var(--btn-color);
	background-color: var(--product-list-bg) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.27);
}

.pricing-card h5 {
	font-size: 18px;
	font-weight: 300;
}

.pricing-card h3 {
	font-size: 28px;
	font-weight: 700;
	margin-top: 40px;
}

.pricing-card h4 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 30px;
}

.team-wox-mql-box p b {
	color: var(--btn-color);
}

p a {
	color: var(--btn-color);
	font-style: italic;
}


/* services page */
.mql-logo img {
	width: 200px !important;
}

.virtual-hosting-list {
	margin-bottom: 10px !important;
}

.virtual-hosting-list li {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	position: relative;
	padding-left: 20px;
}

.virtual-hosting-list li::before {
	position: absolute;
	content: "↳";
	color: var(--btn-color);
	font-size: 18px;
	font-weight: 600;
	left: 0;
}

.virtual-hosting-list-white li {
	color: #7c7c7c !important;
}


/* news and media */
.news-media-sec {
	margin-bottom: 30px;
}

.news-media-sec .news-media-img img {
	width: 100%;
	height: 280px;
	object-fit: cover !important;
	object-position: center;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
	margin-bottom: 25px;
}

.news-media-sec .news-media-cont h4 {
	font-size: 22px;
	font-weight: 600;
	color: var(--bg-dark);
	transition: .2s;
}

.news-media-sec .news-media-cont h4:hover {
	color: var(--btn-color);
}

.news-date {
	display: flex;
	align-items: center;
	gap: 5px;
}

.news-date span {
	color: #7c7c7c;
	font-size: 14px;
	font-weight: 500;
}

.news-date img {
	width: 20px;
	height: 20px !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	max-width: 20px;
	object-fit: unset !important;
}

.latest-news {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.latest-news img {
	max-width: 85px;
	height: 85px;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.latest-news h5 {
	font-size: 16px;
	color: var(--bg-dark);
	font-weight: 600;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: .2s;
}

.latest-news h5:hover {
	color: var(--btn-color);
}

.news-media-cont {
	border-bottom: dashed 1px #cebfa1;
	padding-bottom: 15px;

}

.news-detail-img img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
	margin-bottom: 30px;
}

.news-detail-head h2 {
	font-size: 34px;
	color: var(--bg-dark);
	font-weight: 600;
	margin: 15px 0 10px;
}

.latest-news-head {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--bg-dark);
}

/* career page */

.gallery-container {
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(auto, auto);
	gap: 15px;
	margin-top: 30px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
	height: 250px;
}

.gallery-item:hover img {
	transform: scale(1.2);
	transition: ease-in-out 1s;
}

.gallery-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.419);
}

.city-name {
	position: absolute;
	left: 20px;
	bottom: 20px;
	color: var(--white-color);
	z-index: 10;
}

.city-name h2 {
	font-size: 23px;
	font-weight: 600;
}

.city-name p {
	margin: 0px;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

/* how partner */

.process-section {
	position: relative;
	margin-bottom: 50px;
}

.globe-container {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 400px;
	position: relative;
	margin-top: 50px;
}

.globe-img {
	width: 100%;
	max-width: 350px;
}

.process-steps {
	flex: 2;
	display: flex;
	flex-direction: column;
	position: relative;
}

.process-steps .step:last-child {
	min-height: auto;
}

.timeline {
	position: absolute;
	border: 1px dashed #ccc;
	top: 0;
	bottom: 0;
	left: 53%;
}

.step {
	display: flex;
	position: relative;
	min-height: 300px;
}

.step-content {
	width: 100%;
}

.step-content {
	display: flex;
	gap: 50px;
}

.timeline-cntnt {
	display: flex;
	align-items: self-start;
	position: relative;
	padding-left: 60px;
	border-left: 2px dashed #d1d1d1;
}

.step-image {
	border-radius: 4px;
	width: 330px;
	height: 250px;
	object-fit: cover;
}

.time-line-text {
	width: 100%;
}

.time-line-text h2 {
	font-size: 35px;
	font-weight: 700;
	color: var(--primary-color);
}

.step-icon {
	position: absolute;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 24px;
	left: -32px;
	top: 0;
	z-index: 2;
	border: 10px solid #f5f5f5;
}

.step-left {
	width: 40%;
}

.step-right {
	width: 60%;
}

.blue-icon {
	background-color: #1e88e5;
}

.primary-color {
	background-color: var(--primary-color);
}

.yellow-icon {
	background-color: #ffc107;
}

.step-icon img {
	margin: auto;
	width: 60%;
	display: block;
	text-align: center;
}


.consultation-icon,
.matching-icon,
.hiring-icon {
	font-size: 24px;
}

@media (max-width: 992px) {
	.process-section {
		flex-direction: column;
	}

	.globe-container {
		margin: 0 auto 40px;
	}

	.blue-dot,
	.yellow-dot {
		display: none;
	}
}

@media (max-width: 768px) {


	.step-icon {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
}

/* how partner */
/* timeline */
:root {
	--c-grey-100: #f4f6f8;
	--c-grey-200: #e3e3e3;
	--c-grey-300: #b2b2b2;
	--c-grey-400: #7b7b7b;
	--c-grey-500: #3d3d3d;
	--c-blue-500: #688afd;
	--animation-duration: 0.3s;
	--animation-easing: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* End basic CSS override */
.timeline-custom {
	width: 75%;
	display: flex;
	flex-direction: column;
	padding: 0 0 0 32px;
	border-left: 2px solid var(--c-grey-200);
	border-right: 2px solid var(--c-grey-200);
	font-size: 1.125rem;
	position: relative;
	margin: 0 auto;
}

/* .timeline-custom::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--c-blue-500) 15%, var(--c-blue-500) 85%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
} */

.timeline-custom:hover::before {
	opacity: 0.3;
}

.timeline-item {
	display: flex;
	gap: 24px;
	opacity: 0;
	transform: translateX(-20px);
	animation: fadeIn var(--animation-duration) var(--animation-easing) forwards;
}

.timeline-item:nth-child(odd) {
	animation-delay: 0.1s;
}

.timeline-item:nth-child(even) {
	animation-delay: 0.2s;
}

@keyframes fadeIn {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.timeline-item+* {
	margin-top: 24px;
}

.timeline-item+.extra-space {
	margin-top: 48px;
}

.timeline-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-left: -52px;
	flex-shrink: 0;
	overflow: hidden;
	box-shadow: 0 0 0 6px var(--product-list-bg) !important;
	transition: all var(--animation-duration) var(--animation-easing);
	position: relative;
}

.timeline-item:hover .timeline-item-icon {
	transform: scale(1.1);
}

.timeline-item-icon::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(104, 138, 253, 0.4);
	transition: box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-item-icon::after {
	box-shadow: 0 0 0 10px rgba(104, 138, 253, 0);
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(104, 138, 253, 0.4);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(104, 138, 253, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(104, 138, 253, 0);
	}
}

.timeline-item-icon.filled-icon {
	background-color: var(--btn-color);
	color: #fff;
}

.timeline-item-icon.filled-icon h3 {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	transition: transform var(--animation-duration) ease;
}

.timeline-item:hover .timeline-item-icon.filled-icon h3 {
	transform: scale(1.1);
}

.timeline-custom .comment {
	margin-top: 12px;
	color: var(--c-grey-500);
	background-color: var(--product-list-bg) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.27);
	border-radius: 6px;
	padding: 16px;
	font-size: 1rem;
	transition: all var(--animation-duration) ease;
	transform-origin: top left;
	margin: 0 10px;
}

.timeline-custom .comment p {
	margin: 0;
}

.timeline-item:hover .comment {
	box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.1);
	transform: scale(1.01);
}

/* Alternate layout for even items */
.timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-item-icon {
	margin-left: 0;
	margin-right: -22px;
}

.career-data-card {
	width: 100%;
	height: 100%;
	padding: 30px;
	border-radius: 15px;
	color: var(--btn-color);
	background-color: var(--product-list-bg) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.27);
}

.career-data-card h5 {
	font-size: 22px;
	font-weight: 600;
	color: var(--bg-dark);
}

.career-data-card h6 {
	font-size: 18px;
	font-weight: 400;
	color: #7c7a7a;
	margin-bottom: 25px;
}

.career-data-card button {
	font-size: 14px;
}

.creer-detail-page-list {
	margin-top: 20px;
}

.creer-detail-page-list h4 {
	font-size: 22px;
	color: var(--bg-dark);
	font-weight: 600;
	margin-bottom: 10px;
}

.creer-detail-page-list ul li {
	font-size: 16px;
	margin-bottom: 5px;
}


/* Form Styles */
#contactForm {
	padding: 30px;
	border-radius: 15px;
	background: #ffff;
	width: 100%;
	margin: auto;
	background-color: var(--product-list-bg) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.27);

}

#contactForm h4 {
	font-size: 26px;
	font-weight: 600;
	color: var(--bg-dark);
	margin-bottom: 15px;
}

.form-group {
	position: relative;
	margin-bottom: 25px;
}

.form-group label {
	font-size: 15px;
	font-weight: 400;
	color: #000;
	margin-bottom: 5px;
}

.form-group label span {
	color: red;
}

.form-control {
	width: 100%;
	padding: 12px 15px !important;
	border-radius: 8px !important;
	color: #7c7c7c !important;
	font-size: 14.5px !important;
	transition: all 0.3s ease !important;
	background-color: var(--product-list-bg) !important;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.27) !important;
}

.form-control:focus {
	outline: none !important;
	border-color: var(--btn-color) !important;
	box-shadow: none !important;
}

.form-control::placeholder {
	color: #7c7c7c !important;
}

.focus-border {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: all 0.3s ease;
}



/* select.form-control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L0 4h16z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	padding-right: 40px;
} */

/* textarea.form-control {
	resize: none;
	height: 150px;
} */

/* .cv-form{
	display: flex;
	align-items: start;
	gap: 20px;
}

.cv-form .form-control{
	padding: 5px 10px;
	border-radius: 8px;
	border-radius: 4px;
}

.cv-form label{
	min-width: 350px;
    max-width: 350px;
}

.submit-btn {
	background: var(--primary-color);
	color: #fff;
	border: none;
	padding: 15px 40px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.submit-btn:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

.submit-btn i {
	transition: transform 0.3s ease;
}

.submit-btn:hover i {
	transform: translateX(5px);
} */

.file-upload-label {
	display: block;
	font-weight: 500;
	margin-bottom: 8px;
}

.file-upload-wrapper {
	position: relative;
	margin-bottom: 16px;
}

.custom-file-upload {
	display: block;
	padding: 12px;
	border: 2px dashed #dee2e6;
	border-radius: 6px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
	background-color: #f8f9fa;
}

.custom-file-upload:hover {
	border-color: var(--btn-color);
	background-color: #C9982C17;
}

.custom-file-upload span {
	color: var(--btn-color) !important;
}

.file-input {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

/* Base checkbox styling */
.custom-checkbox {
	position: relative;
	display: inline-block;
	cursor: pointer;
	margin-bottom: 10px;
	font-size: 14px;
	color: #7c7c7c !important;
}

/* Hide the default checkbox */
.custom-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Custom checkbox design */
.checkmark {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: #eee;
	border-radius: 4px;
	transition: all 0.3s;
	vertical-align: middle;
	margin-right: 8px;
}

/* Checkmark symbol */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 7px;
	top: 3px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.custom-checkbox input:checked~.checkmark {
	background-color: var(--btn-color);
	/* Green color */
}

/* Show checkmark when checked */
.custom-checkbox input:checked~.checkmark:after {
	display: block;
}

.fixed-cont {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
	align-self: flex-start;
	z-index: 1;

}




@media (max-width: 768px) {


	.contact-item {
		margin-bottom: 20px;
	}
}


/* Responsive adjustments */
@media (max-width: 768px) {
	.timeline-custom {
		padding-left: 24px;
	}

	.timeline-item {
		flex-direction: column;
		gap: 12px;
	}

	.timeline-item:nth-child(even) {
		flex-direction: column;
	}

	.timeline-item-icon {
		margin-left: -40px;
		margin-top: -5px;
		margin-bottom: 5px;
	}

	.timeline-item:nth-child(even) .timeline-item-icon {
		margin-left: -40px;
		margin-right: 0;
	}
}



/* contact page start */

.flag-sec .career-data-card {
	border-radius: 8px;
}

.flag-sec .career-data-card img {
	width: 40px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
	margin-bottom: 10px;
}

.flag-sec .career-data-card h5 {
	font-size: 20px;
}

.flag-sec .career-data-card h6 {
	font-size: 16px;
	margin: 0;
}

.map {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: flex;
	align-items: center;
	border-radius: 15px;
	background-color: var(--product-list-bg) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.27);
}


/* legal page */
/* privacy policy page  */

.privecy-container {
	padding: 70px 0;
}

.pricacy-sec {
	margin-bottom: 40px;
}

.pricacy-sec h4 {
	font-size: 24px;
	color: var(--bg-dark);
	margin-bottom: 20px;
	font-weight: 700;
}

.pricacy-sec h5 {
	font-size: 20px;
	color: #e0aa46;
	margin-bottom: 15px;
	font-weight: 600;
}

.pricacy-sec p,
.pricacy-sec ul li {
	line-height: 26px;
}

.pricacy-sec a {
	color: #e0aa46;
	font-weight: 400;
	font-style: italic;
}

.pricacy-sec ul {
	padding: 0;
	list-style-type: none;
}

.pricacy-sec ul li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
	color: var(--bg-dark);
	font-weight: 500;
	font-size: 15px;
}

.pricacy-sec ul li::before {
	content: "↳";
	position: absolute;
	color: #fbad1cab;
	left: 0;
	top: 0;
	font-size: 18px;
}

/* privacy policy page  */


/* gallery page */

.product-trading-video-tags-custom h5 {
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	color: var(--btn-color);
}

@media screen and (max-width:1800px) {
	.custom-container {
		max-width: 1500px;

	}
}

@media screen and (max-width:1600px) {
	.custom-container {
		max-width: 1400px;

	}

	.organisation-cont .icon-cont h5 {
		font-size: 20px;
	}

	.organisation-cont .icon-cont img {
		width: 40px;
	}
}

@media screen and (max-width:1440px) {
	.custom-container {
		max-width: 1250px;

	}

	.timeline-custom {
		width: 80%;
	}

	.banner-content h1 {
		font-size: 60px;
	}

	.solution-content h2 {
		font-size: 42px;
	}

	.organisation-cont h3 {
		font-size: 24px;
	}

	.organisation-cont img {
		height: 35px;
	}

	.service-content .service-box {
		padding: 25px;
		font-size: 20px;
	}

	.product-cont h4 {
		font-size: 32px;
	}

	.news-carousel .news-slider-cont h5 {
		font-size: 15px;
	}

	.news-carousel .client-card img {
		height: 170px;
	}

	.launch-card img {
		width: 100px;
	}

	.launch-card h3 {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.launch-card {
		padding: 35px;
	}

	.community-img {
		height: 350px;
	}

	.product-trading-video-tags h4 {
		padding: 20px 15px;
	}

	.mql-box h6 {
		font-size: 17px;
	}

	.launch-card h4 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.benafits-head img {
		width: 45px !important;
	}

	.news-media-sec .news-media-cont h4 {
		font-size: 20px;
	}

	.news-detail-head h2 {
		font-size: 30px;
	}

	.career-data-card h5 {
		font-size: 20px;
	}

	.career-data-card {
		padding: 25px;
	}

	.career-data-card h6 {
		font-size: 17px;
		margin-bottom: 20px;
	}

	.common-space {
		padding-bottom: 90px;
	}

	.moon-icon-wrapper {
		height: 20px;
		width: 20px;
		top: -6px;
		left: -10px;
	}

	.toggle-slot {
		height: 30px;
		width: 60px;
	}

	.toggle-button {
		top: 1px;
		left: 0;
		height: 20px;
		width: 20px;
	}

	.sun-icon {
		height: 20px;
		width: 20px;
	}

}

@media screen and (max-width:1200px) {
	.custom-nav .navbar-nav a {
		font-size: 14px;
	}

	.banner-content h1 {
		font-size: 52px;
	}

	.banner-section .banner-img .windows-icon {
		width: 180px;
	}

	.banner-content .app-list img {
		width: 130px;
		height: 45px;
	}

	.banner-content .banner-logo {
		width: 200px;
	}

	.solution-content h2 {
		font-size: 38px;
	}

	.organisation-cont {
		padding-left: 10px;
		margin-top: 10px;
	}

	.organisation-cont h3 {
		font-size: 22px;
	}

	.download-carousel .client-card img {
		height: 28px !important;
	}

	.common-space {
		padding-bottom: 75px;
	}

	.service-head {
		font-size: 42px;
	}

	.service-content .service-box {
		padding: 20px;
		font-size: 17px;
	}

	.product-cont h4 {
		font-size: 28px;
	}

	.veiw-btn {
		font-size: 15px;
	}

	.cta-cont h2 {
		font-size: 34px;
	}

	.secodary-btn {
		padding: 15px 25px;
		font-size: 16px;
	}

	.custom-container {
		max-width: 970px;
	}

	.secondary-banner-cont h2 {
		font-size: 36px;
	}

	.secondary-banner-cont p {
		font-size: 18px;
	}

	.history-carousel {
		margin-bottom: 20px;
	}

	.launch-card p {
		font-size: 15px;
	}

	.community-img {
		height: 270px;
	}

	.community-sec h3 {
		font-size: 34px;
	}

	.community-sec h3 br {
		display: none;
	}

	.about-img img {
		height: 430px;
	}

	.product-sec .about-cont h2 {
		font-size: 36px;
	}

	.product-trading-cont h3 {
		font-size: 25px;
	}

	.product-trading-cont p {
		font-size: 15px;
	}

	.product-trading-img {
		height: 295px;
	}

	.trader-btn-logo img {
		width: 270px;
	}

	.product-trading-video {
		flex-direction: column;
	}

	.trader-btn-logo-custom {
		flex-direction: column;
	}

	.traderbrokers-sec {
		padding: 50px;
	}

	.product-trading-cont h4 {
		font-size: 20px;
	}

	.benafits-head h4 {
		font-size: 22px;
	}

	.mql-box p {
		font-size: 15px;
	}

	.advantages h4 {
		font-size: 22px;
	}

	/* .news-media-sec .news-media-cont h4 {
		font-size: 22px;
	  } */
	.news-media-sec .news-media-img img {
		height: 275px;
	}

	.news-detail-head h2 {
		font-size: 26px;
	}

	.news-detail-img img {
		height: 350px;
	}

	.timeline-custom {
		width: 90%;
	}

	.flag-sec .career-data-card h5 {
		font-size: 18px;
	}

	.logo-img img {
		width: 175px;
	}

	.custom-nav .navbar-nav {
		gap: 0px;
	}
}


@media screen and (max-width:1024px) {
	.primary-button {
		padding:
			10px 20px;
		font-size: 14px;
	}

	.logo-img img {
		width: 170px !important;
	}

	.custom-nav .navbar-nav {
		margin: 0 !important;
	}

	.footer-logo img {
		width: 200px;
	}

	.latest-news-head {
		font-size: 22px;
	}

	/* .gallery-item {
		height: 250px;
	  } */
}

@media screen and (max-width:992px) {
	.banner-section {
		height: 100%;
		padding: 120px 0 0;
	}

	.banner-content {
		margin-bottom: 30px;
	}

	.banner-content .app-list img {
		width: 120px;
		height: 42px;
	}

	.client-carousel::before,
	.client-carousel::after {
		width: 150px;
	}

	.solution-content h2 {
		font-size: 32px;
	}

	.solution-content {
		margin-top: 35px;
	}

	.organisation-cont img {
		height: 30px;
	}

	.organisation-cont h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.organisation-cont {
		margin: 10px 0 30px;
	}

	.download-section .download-icon h5 {
		font-size: 18px;
	}

	.service-head {
		font-size: 38px;
	}

	.product-cont h4 {
		font-size: 26px;
	}

	.product-sec {
		margin-top: 30px !important;
	}

	.news-carousel {
		margin-top: 30px;
	}

	.cta-cont h2 {
		font-size: 28px;
	}

	.cta-cont h6 {
		font-size: 14px;
	}

	.secodary-btn {
		font-size: 15px;
	}

	.cta-cont h2 br {
		display: none;
	}

	.cta-box {
		padding: 40px 35px;
	}

	.custom-container {
		max-width: 740px;
	}

	.footer-list {
		margin-bottom: 20px;
	}

	.common-space {
		padding-bottom: 55px;
	}

	.secondary-banner {
		height: 350px;

	}

	.abt-title {
		font-size: 34px;
	}

	.about-img img {
		height: 350px;
	}

	.launch-card {
		height: auto;
		margin-bottom: 20px;
	}

	.launch-bg {
		padding: 40px 0;
	}

	.rotate-logo {
		right: -45px;
		width: 70px;
		height: 70px;
	}

	.community-sec h3 {
		font-size: 28px;
	}

	.product-sec .about-cont h2 {
		font-size: 30px;
		margin: 20px 0 10px;
	}

	.product-sec .about-cont h2 br {
		display: none;
	}

	.product-trading-cont h3 {
		font-size: 22px;
		margin-top: 20px;
	}

	.trade-img-order {
		order: -1;
	}

	.about-cont h3 {
		font-size: 24px;
	}

	.trader-btn-logo-custom {
		flex-direction: row;
	}

	/* .product-trading-video-tags {
		margin-top: 20px;
	} */

	.launch-card h4 {
		margin-bottom: 10px;
	}

	.traderbrokers-sec h3 {
		font-size: 28px;
	}

	.traderbrokers-sec h4 {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.meta-trader-list h4 {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.pricing-card h3 {
		margin-top: 25px;
	}

	.pricing-card h4 {
		margin-bottom: 20px;
	}

	.mql-logo img {
		width: 170px !important;
	}

	.footer {
		padding-top: 40px;
	}

	.latest-news h5 {
		font-size: 15px;
	}

	.gallery-item {
		height: 200px;
	}

	.timeline-custom {
		width: 100%;
	}

	.contact-form {
		padding: 25px;
		margin-top: 20px;
	}

	.map {
		display: none;
	}

	.product-trading-video-tags-custom h5 {
		font-size: 20px;
	}

	.custom-nav .navbar-nav a {
		font-size: 16px;
	}

}

@media screen and (max-width:768px) {
	.banner-content h1 {
		font-size: 42px;
	}

	.banner-section .banner-img .windows-icon {
		width: 130px;
	}

	.client-carousel::before,
	.client-carousel::after {
		width: 85px;
	}

	.banner-section {
		padding:
			90px 0 30px;
	}

	.sub-head {
		font-size: 26px;
		margin-bottom: 15px;
	}

	.common-head {
		font-weight: 500;
		font-size: 15px;
	}

	.download-carousel .client-card img {
		height: 25px !important;
	}

	.service-content {
		gap: 15px;
		margin-top: 30px;
	}

	.service-content .service-box {
		padding: 20px;
		font-size: 16px;
		width: 200px;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.product-cont {
		margin-bottom: 35px;
	}

	.product-cont h4 {
		font-size: 22px;
	}

	.product-sec {
		margin-top: 20px !important;
	}

	.news-carousel {
		margin-top: 20px;
	}

	.news-carousel .owl-item {
		padding: 0 5px;
	}

	.cta-box {
		padding: 40px 35px;
		flex-direction: column;
		text-align: center !important;
		gap: 10px;
	}

	.secodary-btn {
		font-size: 14px;
		padding: 15px;
	}

	.custom-container {
		max-width: 560px;
	}

	.social-links li img {
		width: 35px;
	}

	.footer-list h4 {
		font-size: 17px;
		margin-bottom: 10px;
	}

	.copy-right-sec {
		padding: 10px 0;
		flex-direction: column;
		gap: 10px;
	}

	.common-space {
		padding-bottom: 50px;
	}

	.abt-title {
		font-size: 30px;
	}

	.about-img img {
		height: auto;
	}

	.community-img {
		height: 200px;
	}

	.rotate-logo {
		right: -30px;
		width: 50px;
		height: 50px;
		top: 65%;
	}

	.trader-btn-logo img {
		width: 220px;
	}

	.about-cont h3 {
		font-size: 22px;
		margin-bottom: 7px;
	}

	.trade-img img {
		height: 350px;
	}

	.mql-box {
		border: solid 1px #c9982c;
	}

	.mql-box h6 {
		font-size: 16px;
	}

	.traderbrokers-sec h4 {
		font-size: 20px;
	}

	.traderbrokers-sec h3 {
		font-size: 25px;
	}

	.mql-logo img {
		width: 155px !important;
	}

	.news-media-sec .news-media-img img {
		margin-bottom: 15px;
	}

	.news-media-sec .news-media-cont h4 {
		font-size: 20px;
	}

	.news-detail-img img {
		height: 300px;
		margin-bottom: 20px;
	}

	.news-detail-head h2 {
		font-size: 24px;
	}

	.latest-news-head {
		font-size: 20px;
	}

	.gallery-item {
		height: 170px;
	}

	.timeline-custom {
		border-right: none;
	}

	.timeline-custom {
		padding-left: 20px;
	}

	.timeline-item+.extra-space {
		margin-top: 25px;
	}

	.career-data-card h5 {
		font-size: 18px;
	}

	.contact-form {
		padding: 10px;
	}

	.pricacy-sec h4 {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.pricacy-sec h5 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.secondary-banner-cont h2 {
		font-size: 28px;
	}

	.secondary-banner-cont a {
		font-size: 15px;
	}

	.secondary-banner-cont p {
		font-size: 16px;
		margin-bottom: 0;
	}

	.secondary-banner {
		padding: 40px;
	}

	.switch-icon {
		right: 10px;
	}
}

@media screen and (max-width:600px) {
	.banner-content h1 {
		font-size: 34px;
	}

	.banner-content .app-list img {
		width: 100px;
		height: 37px;
	}

	.banner-section {
		padding: 90px 0 30px;
	}

	.banner-content h1 {
		font-size: 30px;
	}

	.banner-content .banner-logo {
		width: 175px;
	}

	.main-para {
		font-size: 15px;
	}

	.client-carousel::before,
	.client-carousel::after {
		display: none;
	}

	.solution-content h2 {
		font-size: 28px;
	}

	.organisation-cont .icon-cont h5 {
		font-size: 18px;
	}

	.download-section {
		padding: 25px;
	}

	.service-head {
		font-size: 32px;
	}

	.cta-cont h2 {
		font-size: 24px;
	}

	.footer-logo img {
		width: 180px;
	}

	.social-links {
		margin: 15px 0 20px auto !important;
	}

	.common-space {
		padding-bottom: 45px;
	}

	.abt-title {
		font-size: 26px;
	}

	.launch-card {
		padding:
			25px;
	}

	.launch-card img {
		width: 90px;
	}

	.launch-card h3 {
		font-size: 20px;
	}

	.community-img {
		height: 180px;
	}

	.product-sec .about-cont h2 {
		font-size: 26px;
	}

	.product-trading-img {
		height: auto;
	}

	.product-trading-cont p {
		font-size: 14px;
	}

	.product-detail-list {
		padding: 15px;
	}

	.about-cont h3 {
		font-size: 21px;
	}

	.trader-btn-logo-custom {
		flex-direction: column;
		gap: 10px;
	}

	.trade-img img {
		height: 300px;
	}

	.launch-card h4 {
		margin-bottom: 10px;
		font-size: 18px;
	}

	.traderbrokers-sec {
		padding: 20px;
	}

	.meta-trader-list h4 {
		font-size: 26px;
	}

	.advantages h4 {
		font-size: 20px;
	}

	.virtual-hosting-list li {
		font-size: 15px;
	}

	.virtual-hosting-list li::before {
		font-size: 16px;
	}

	.news-media-sec .news-media-cont h4 {
		font-size: 18px;
	}

	.news-detail-head h2 {
		font-size: 22px;
		margin-top: 10px;
	}

	.gallery-item {
		height: 150px;
	}

	.timeline-custom {
		width: 95%;
	}

	.timeline-item+.extra-space {
		margin-top: 15px;
	}

	.creer-detail-page-list h4 {
		font-size: 19px;
	}

	.creer-detail-page-list ul li {
		font-size: 15px;
	}

	.contact-form {
		padding: 0;
		margin-top: 15px;
	}

	.flag-sec .career-data-card img {
		width: 35px;
	}

	.flag-sec .career-data-card h6 {
		font-size: 15px;
	}

	.product-trading-video-tags-custom h5 {
		font-size: 18px;
	}
}

@media screen and (max-width:576px) {
	.career-data-card {
		width: 75%;
		margin: 0 auto;
	}
}

@media screen and (max-width:475px) {
	.banner-content .app-list {
		gap: 10px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.client-carousel .client-card img {
		width: 140px !important;
	}

	.solution-content {
		margin-top: 25px;
	}

	.organisation-cont {
		margin: 10px 0 20px;
	}

	.organisation-cont .icon-cont {
		gap: 5px;
	}

	.organisation-cont .icon-cont h5 {
		font-size: 16px;
		font-weight: 600;
	}

	.download-section .download-icon img {
		width: 25px;
	}

	.download-section {
		flex-direction: column;
		align-items: center;
	}

	.download-icon span {
		display: none;
	}

	.service-content .service-box {
		padding:
			15px;
		font-size: 15px;
		width: 165px;
	}

	.veiw-btn {
		font-size: 14px;
	}

	.product-cont h4 {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.product-cont {
		margin-bottom: 25px;
	}

	.history-carousel .client-card img {
		width: 120px !important;
	}

	.community-sec h3 {
		font-size: 24px;
		margin-top: 15px;
	}

	.trader-btn-logo img {
		width: 200px;
	}

	.product-trading-video-tags h4 {
		font-size: 14px;
	}

	.traderbrokers-sec h3 {
		font-size: 22px;
	}

	.traderbrokers-sec h4 {
		font-size: 18px;
	}

	.product-trading-cont h4 {
		font-size: 18px;
	}

	.mql-logo img {
		width: 140px !important;
	}

	.news-detail-img img {
		height: 250px;
	}

	#contactForm {
		padding: 30px 25px;
	}

	.logo-img img {
		width: 150px !important;
	}
}

@media screen and (max-width:425px) {
	.client-carousel .client-card img {
		width: 120px !important;
	}

	.sub-head {
		font-size: 22px;
		font-weight: 500;
		margin: 0;
	}

	.solution-content h2 {
		font-size: 24px;
		margin-bottom: 8px;
	}

	.solution-content .main-para {
		font-size: 14px;
	}

	.organisation-cont .icon-cont img {
		width: 35px;
	}

	.organisation-cont {
		padding-left: 5px;
	}

	.organisation-cont h3 {
		font-size: 18px;
	}

	.organisation-cont img {
		height: 28px;
	}

	.download-section .download-icon h5 {
		font-size: 16px;
	}

	.service-head {
		font-size: 28px;
	}

	.service-content .service-box {
		padding: 12px;
		font-size: 14px;
		width: 135px;
	}

	.service-content {
		gap: 10px;
		margin-top: 25px;
	}

	.product-cont h4 {
		font-size: 18px;
		margin-top: 10px;
	}

	.cta-cont h2 {
		font-size: 20px;
	}

	.secodary-btn {
		padding: 12px;
	}

	.abt-title {
		font-size: 21px;
	}

	.launch-card h3 {
		font-size: 18px;
	}

	.launch-card p {
		font-size: 14px;
	}

	.community-img {
		height: 150px;
	}

	.community-sec h3 {
		font-size: 22px;
	}

	.product-sec .about-cont h2 {
		font-size: 22px;
		margin: 15px 0 5px;
	}

	.about-cont h3 {
		font-size: 18px;
	}

	.trade-img img {
		height: 260px;
	}

	.meta-trader-list h4 {
		font-size: 23px;
	}

	.benafits-head img {
		width: 40px !important;
	}

	.advantages h4 {
		font-size: 18px;
	}

	.additional-security-card p {
		font-size: 15px;
	}

	.additional-security-card ul li {
		font-size: 15px;
		padding-left: 15px;
	}

	.additional-security-card ul li::before {
		font-size: 16px;
	}

	.additional-security-card h5 {
		font-weight: 600;
	}

	.mql-logo img {
		width: 130px !important;
	}

	.footer {
		padding-top: 30px;
	}

	.traderbrokers-sec h3 {
		font-size: 20px;
	}

	.news-media-sec .news-media-cont h4 {
		font-size: 17px;
	}

	.news-media-sec .news-media-img img {
		height: 225px;
	}

	.news-detail-head h2 {
		font-size: 20px;
	}

	.gallery-item {
		height: 100px;
	}

	.timeline-custom .comment {
		margin: 0;
	}

	.timeline-item-icon {
		width: 35px;
		height: 35px;
	}

	.career-data-card {
		width: 100%;
	}

	.form-control {
		padding: 10px !important;
		font-size: 14px !important;
	}

	#contactForm {
		padding: 15px;
	}

	.pricacy-sec h4 {
		font-size: 20px;
	}

	.pricacy-sec {
		margin-bottom: 30px;
	}

	.pricacy-sec ul li {
		padding-left: 20px;
		font-size: 14px;
		margin-bottom: 5px;
	}

	.secondary-banner-cont p {
		font-size: 14px;
	}

	.secondary-banner-cont h2 {
		font-size: 24px;
	}

	.product-trading-video-tags-custom h5 {
		font-size: 17px;
	}

	.custom-nav .navbar-nav a {
		font-size: 14px;
	}

	.custom-nav {
		padding: 10px 0px !important;
	}

	.banner-content .app-list img {
		width: 85px;
		height: 30px;
	}

	.secondary-banner {
		height: 300px;
	}
}


.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9982c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

#contactForm .text-muted {
	color: var(--btn-color) !important;
	font-size: 13px;
}