@charset "UTF-8";
/*******************/
/********************/
/*******************/

*::before,
*::after {
	box-sizing: border-box;
}


html {
	scroll-behavior: smooth;
	font-family: "Plus Jakarta Sans", serif !important;
}
body {
	margin: 0;
	font-family: "Plus Jakarta Sans", serif !important;
	font-size: 16px;
}
a{
	text-decoration: none !important;
}
p{
	font-size: 16px;
	line-height: 24px;
}
.btn{
	min-width: 120px;
	font-size: 1rem !important;
	font-weight: 600 !important;
	color: #421680 !important;
	padding: 0.6rem 1rem !important;
	background: none;
	border: 1px solid #421680 !important;
	border-radius: 100px !important;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 0 0 #421680;
	transition: 0.5s !important;
}
.btn:after{
	position: absolute;
    content: '';
    background: #132720;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    transform: scale(0, 0);
    z-index: -1;
    transition: all 500ms ease;
}
.btn:hover:after{
	background: #421680 !important;
	
}
.btn.btn-filled{
	background: #421680;
	color: #fff !important;
}
.btn.btn-filled:hover{
	border-color: #421680;
	color: #421680 !important;
}
.btn:hover,
.btn:active,
.btn:focus,
.btn:focus-visible{
	color: #421680 !important;
	background: transparent;
}
.btn.btn-outline {
	color: #fff !important;
	border: 1px solid #ffffff4d !important;
}
.btn.btn-outline:hover {
	background: #fff;
	color: #421680 !important;
}
.btn.btn-outline-default{
	color: #421680 !important;
	border: 1px solid #421680 !important;
}
.btn.btn-outline-default:hover{
	background: #421680;
	color: #fff !important;
}
.btn-white{
	color: #421680 !important;
	background: #fff !important;
}
.btn-white:hover {
	color: #fff !important;
	border-color: #fff !important;
	background: transparent !important;
}

.bg-grey{
	background: #F3F3F3 !important;
}

.bg-purple{
	background: linear-gradient(90deg, #120C1A 50%, #7921F4 200%);
}
.text-purple {
	color: #421680 !important;
}

.section-header .section-title {
	color: #000;
	font-weight: 700;
	line-height: 1;

}
.section-header .section-subtitle{
	font-weight: bold;
	margin-bottom: 1rem;
}
.section-description {
	color: #404040;
	font-weight: 400;
}

/* ===== PRELOADER CSS ===== */
.page-loader{
	width: 100%;
	height: 100vh;
	position: fixed;
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, #391867 0%, #120c1a 100%);
	z-index: 9999;
}

/*  ===== SPINNER ANIMATION   =====*/
.spinner {
	position: relative;
	top: 0;
	bottom: 0; 
	width: 80px;
	height: 80px;
	margin: auto;
	background-color: #fff;

	border-radius: 100%;  
	-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
	0% { -webkit-transform: scale(0) }
	100% {
		-webkit-transform: scale(1.0);
		opacity: 0;
	}
}

@keyframes sk-scaleout {
	0% { 
		-webkit-transform: scale(0);
		transform: scale(0);
	} 100% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
		opacity: 0;
	}
}


/*  ===== Header ===== */
header{
	position: relative;
	z-index: 3;
}
.main-header-topbar {
	position: relative;
	width: 100%;
	background: #000;
	padding: 9px 0px;
}

.main-header-topbar .marqueestripe-wrapper { 
	position: relative; 
	overflow: hidden; 
	width: 100%;
	display: flex; 
}
.main-header-topbar .marqueestripe-wrapper .marqueestripe2,
.main-header-topbar .marqueestripe-wrapper .marqueestripe2 .marqueestripe-box{
	display: flex;
}
.main-header-topbar .marqueestripe-box .getfunded-stripewrapper{ 
	display: inline-flex;
	justify-content: center; 
	width: 350px; 
	animation: infiniteLoop 50s linear infinite; 
	animation-fill-mode: forwards; 
	will-change: transform;
}
.main-header-topbar:hover .marqueestripe-box .getfunded-stripewrapper{
    animation-play-state: paused;
}
.main-header-topbar .marqueestripe-wrapper .getfunded-stripewrapper-img { 
	width: 35px; 
	height: 35px; 
	margin-right: 1rem; 
	background: #421680;
	padding: 5px;
	border-radius: 5px; 
	display: flex; 
	align-items: center;
	justify-content: center;
}
.main-header-topbar .getfunded-stripewrapper-text p { 
	font-size: 12px; 
	line-height: normal;
}
.main-header-topbar .getfunded-stripewrapper-text p strong{ 
	font-size: 14px; 
	line-height: normal; 
	margin-bottom: 5px; 
	display: inline-block;
}
@keyframes infiniteLoop {
	0% { transform: translate3d(0, 0, 0);}
	100% { transform: translate3d(calc(-200px * 10), 0, 0);}
}
.main-header {
	background: linear-gradient(90deg, #120c1a 50%, #7921f4 100%);
	border-radius: 5px;
}

.sticky-top {
	animation: slideDown 0.35s ease-out;
}
@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}
.header.sticky-top .main-header-topbar {
	display: none;
}
.header.sticky-top .main-header {
	margin: 0 !important;
	border-radius: 0 !important;
}
.main-header .navbar{
	padding: 0;
}

.main-header .navbar .logo{
	padding: 0.4rem;
    max-width: 290px;
    transition: all 0.5s ease;
}
.main-header .navbar .mobile-logo {
    max-width: 170px;
}
.main-header.sticky-top .navbar .logo{
	max-width: 100px;
}
.main-header .navbar .navbar-toggler{
	background: none;
	box-sizing: border-box;
	box-shadow: none !important;
	border: 0 !important;
}
.main-header .navbar .navbar-toggler .navbar-toggler-icon {
	filter: invert(1);
}
.main-header .navbar .navbar-nav .nav-item {
	margin: 0rem 1rem;
	font-size: 1.2rem;
}
.main-header .navbar .navbar-nav .nav-item .nav-link{
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	border-bottom: 1px solid #b8b8b81f;
	padding-left: 0;
	padding-right: 0;
}
.main-header .navbar .navbar-nav .nav-item .nav-link.active {
	
	border-color: #7921f4;
}
.main-header .navbar .navbar-nav .nav-item .dropdown-menu,
.main-header .menu-right-content .dropdown-menu{
	border-radius: 0px !important;
	padding: 0;
	overflow: hidden;
	background: #252525;
	margin-top: 0 !important;
}
.main-header .navbar .navbar-nav .nav-item.dropdown:hover > .dropdown-menu{
	display: block;
}
.main-header .navbar .navbar-nav .nav-item.dropdown > .dropdown-menu .dropdown-item{
	color: #fff;
	font-size: 1.1rem;
	border-bottom: 1px solid #464646ba;
}
.main-header .navbar .navbar-nav .nav-item.dropdown > .dropdown-menu .dropdown-item:hover,
.main-header .navbar .navbar-nav .nav-item.dropdown > .dropdown-menu .dropdown-item:active,
.main-header .navbar .navbar-nav .nav-item.dropdown > .dropdown-menu .dropdown-item:focus{
	background-color: #421680 !important;
	color: #fff;
}
.main-header .menu-right-content {
	display: flex;
	align-items: center;
}
.main-header .menu-right-content .login-box .btn {
	min-width: auto !important;
}
.main-header .menu-right-content .dropdown-menu {
	border-radius: 0px !important;
	overflow: hidden;
	background: #ffffff;
	margin-top: 0 !important;
	border: 0;
}
.main-header .menu-right-content .dropdown-menu .dropdown-item:hover {
	color: #fff;
	background: #421680 !important;
}

/* ===== Slick Slider ===== */
.slick-slide {
	margin: 15px 20px;
}
.slick-slide img {
	width: 100%;
}
.slick-slider{
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list{
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.slick-list:focus{
	outline: none;
}
.slick-list.dragging{
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list{
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track{
	position: relative;
	top: 0;
	left: 0;
	display: block;
}
.slick-track:before,
.slick-track:after{
	display: table;
	content: '';
}
.slick-track:after{
	clear: both;
}
.slick-loading .slick-track{
	visibility: hidden;
}

.slick-slide{
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}
[dir='rtl'] .slick-slide
{
	float: right;
}
.slick-slide img
{
	display: block;
}
.slick-slide.slick-loading img
{
	display: none;
}
.slick-slide.dragging img
{
	pointer-events: none;
}
.slick-initialized .slick-slide
{
	display: block;
}
.slick-loading .slick-slide
{
	visibility: hidden;
}



/* ===== Hero Banner section ===== */
.hero-banner{
	margin-top: -10rem;
	z-index: 0;
}
.hero-banner .carousel .carousel-item {
	padding-top: 10rem;
	min-height: 750px;
	object-fit: cover;
	object-position: center;
}
.hero-banner .carousel-item  .carousel-caption{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 9%;
	left: 9%;
	margin: auto;
	display: flex !important;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	max-width: 800px;
	padding-top: 10rem;
}
.hero-banner .carousel-control-next,
.hero-banner .carousel-control-prev{
	width: 10%;
}
.hero-banner .h-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #391867 0%, #120c1a 100%);
	opacity: 0.85;
	z-index: 0;
}
.hero-banner-content .hero-banner-title {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.8rem;
	text-transform: capitalize;
}

.hero-banner-content .hero-banner-subtitle{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 12px;
}


.hero-banner-content p {
	font-size: 20px !important;
	line-height: 30px;
}
.hero-banner .carousel-item .carousel-caption .tfx-rating-wrap {
    max-width: 280px;
}


/* ===== Hero Live Spread section ===== */
.hero-fxvibe-pair {
	margin-top: -10rem;
	position: relative;
	z-index: 0;
}
.hero-live-spread-box {
	display: flex;
	justify-content: space-between;
	margin: 0.5rem 0;
	padding: 1.5rem;
	border-radius: 10px;
	background-color: #421680;
	transition: 0.3s !important;
}
.hero-live-spread-box .hero-live-spread-left-column {
	padding-left: 55px;
	position: relative;
}
.hero-live-spread-box .hero-live-spread-left-column .hero-live-spread-icon{
	background: #fff;
	position: absolute;
	display: inline-block;
	left: 0px;
	top: 0;
	width: 30px;
	height: 48px;
	line-height: 48px;
	font-size: 20px;
	background: #e2edea;
	text-align: center;
	border-radius: 40px;

}
.hero-live-spread-box .hero-live-spread-left-column .spread-sell i{
	color: red; 
}
.hero-live-spread-box .hero-live-spread-left-column .spread-buy i{
	color: green;
}
.hero-live-spread-left-column .hero-live-spread-list span{
	font-weight: 600;
}
.hero-live-spread-left-column .hero-live-spread-list span i,
.hero-live-spread-right-text .sell{
	color: #fff;
}
.hero-live-spread-box .hero-live-spread-left-column .live-spread-currency,
.funfact-style-two .pairs-block-one .inner-box .right-column .sell{
	color: #b7b1be;
}

.funfact-style-two .pairs-block-one .inner-box .right-column .theme-btn{
	border-color: #fff;
	color: #fff;
}


/* ===== Hero Feature section ===== */
.hero-feature-inner-wrapper {
	padding: 2rem 1rem;
	border-radius: 20px;
	background: linear-gradient(82deg, #120C1A 50%, #7921F4 200%);
	background-repeat: no-repeat;
	background-size: cover;
}
.hero-feature-box {
	margin: 0.5rem 0;
	padding: 0.3rem 1rem;
	color: #b7b1be;
	transition: 0.3s !important;
}
.hero-feature-box:hover .hero-feature-icon{
	transform: translateY(-10px);
}
.hero-feature-box .hero-feature-icon {
	display: inline-block;
	max-width: 75px;
	border-radius: 50px;
	position: relative;
	transition: 300ms;
}

/* ===== About Us Section ===== */
.aboutus-wrapper-section{
	color: #000;
	background: #fff;
	position: relative;
	z-index: 0;
}
.about-us-content .about-us-content-list {
	position: relative;
	padding-left: 70px;
}
.about-us-content-list .about-us-content-list-icon {
	max-width: 55px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	display: flex;
	align-items: center;
}
.aboutus-wrapper-section .about-us-images img{
	border-radius: 30px;
	overflow: hidden;
}


/*  ===== Key Highlights section  ===== */
.process-wrapper-section .processstep_box {
	position: relative;
	color: #fff;
	background-size: cover;
	margin: 1.5rem 0;
	min-height: 90%;
}

.process-wrapper-section .processstep_box .processstep_box-img {
	max-width: 50px;
	margin-bottom: 15px;
}

.process-wrapper-section .section-description,
.process-wrapper-section .processstep_box .processstep_box-content p {
	color: #bbbbbb !important;
}
.process-wrapper-list ul li {
	position: relative;
	padding-left: 23px;
	line-height: 26px;
	font-size: 14px;
	display: inline-block;
}
.process-wrapper-list ul li i {
	position: absolute;
	left: 0;
	top: 5px;
}


/* ===== Why Choose section ===== */
.whychoose-box .fxvibe-feature-section{
	position: relative;
	text-align: center;
	margin: 2rem 0;
} 

.whychoose-box .fxvibe-feature-section span {
	position: relative;
	color: #421680;
	font-size: 18px;
	font-weight: bold;
	background: #fff;
	padding: 16px 16px 16px 65px;
	border-radius: 40px;
	min-width: 250px;
	display: inline-flex;
	align-items: center;
	z-index: 0;
	transition-duration: .6s;
	box-shadow: 0 0 30px 0px #08080840;
}
.whychoose-box .fxvibe-feature-section span i {
	font-size: 2.5rem;
	position: absolute;
	left: 10px;
}
.whychoose-box .fxvibe-feature-section span:hover{
	background: #421680;
    color: #fff;
}
.whychoose-box-middle {
	max-width: 390px;
	margin: auto;
}
.whychoose-box-bottom .section-description{
	max-width: 800px;
	margin: auto;
}

/* ===== FAQ section ===== */
.trade-faq-section{
	background-color: #F4F1F7;
}
.trade-faq-content .accordion .accordion-item {
	border: 1px solid #0000000f;
	background: #F4F1F7;
	margin: 1.5rem 0;
	border-radius: 10px;
}
.trade-faq-content .accordion .accordion-item .accordion-button.collapsed{
	background: #f4f1f7 !important;
	color: #000;
	position: relative;
}
.trade-faq-content .accordion .accordion-item .accordion-button {
	background: linear-gradient(90deg, #120c1a 50%, #7921f4 100%);
	color: #fff;
	padding: 17px 25px 17px 50px;
	cursor: pointer;
	border-radius: 10px;
	box-shadow: none;
	position: relative;
}

.trade-faq-content .accordion .accordion-item .accordion-button:before{
	position: absolute;
	content: '';
	background: #a063f4;
	width: 16px;
	height: 16px;
	left: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(45deg);
	border-radius: 3px;
	z-index: 2;
}

.trade-faq-content .accordion .accordion-item .accordion-button:after{
	position: absolute;
	content: '';
	background: #fff;
	width: 12px;
	height: 12px;
	left: 22px;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(45deg);
	border-radius: 3px;
	z-index: 3;
}
.trade-faq-content .accordion .accordion-item .accordion-button.collapsed:after{
	opacity: 1 !important;
}
.trade-faq-content .accordion .accordion-item .accordion-button:after{
	opacity: 0;
}


/* ===== Working Process Step section ===== */
.working-process-steps{
	position: relative;
}

.working-process-steps .pattern-layer{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.working-process-steps .process-steps-video-inner{
	position: relative;
	display: block;
	max-width: 710px;
	width: 100%;
	margin: 0 auto;
	border: 2px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	margin-bottom: 60px;
	padding: 74px 45px 104px 45px;
}

.working-process-steps .process-steps-video-inner .shape{
	position: absolute;
	left: 0px;
	right: 0;
	top: 0px;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 10px;
	opacity: 0.5;
}

.working-process-steps .process-steps-video-inner .process-steps-big-text{
	position: absolute;
	left: 50%;
	top: 56%;
	transform: translate(-50%,-50%);
	width: 100%;
	text-align: center;
	font-size: 110px;
	line-height: 110px;
	font-family: var(--title-font);
	font-weight: 700;
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.12);
}

.working-process-steps .process-steps-video-inner h5{
	display: block;
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 36px;
	position: relative;
	text-align: center;
}

.working-process-steps .process-steps-video-inner .video-btn{
	position: relative;
	display: block;
	text-align: center;
}

.working-process-steps .process-steps-video-inner .video-btn .lightbox-image{
	position: relative;
	display: inline-block;
	text-align: center;
	border-radius: 40px;
	font-size: 20px;
	background: none;
}
.working-process-steps .process-steps-video-inner .video-btn .lightbox-image:before{
	animation: animName 3s linear infinite;
	border-bottom: 60px solid transparent;
    border-left: 60px solid #ffffff38;
    border-radius: 50%;
    border-right: 60px solid #ffffff4a;
    border-top: 60px solid transparent;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
}
@keyframes animName {
 0%{
    transform: rotate(0deg);
   }
100%{
    transform: rotate(360deg);
   }
}
.working-process-steps .process-steps-video-inner .video-btn .lightbox-image i{
	font-size: 1.5rem;
    color: #fff;
    backdrop-filter: blur(5px);
    background: #ff0000;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    width: 90px;
    height: 60px;
}
.working-process-steps .working-block-one{
	position: relative;
	display: block;
	text-align: center;
	padding: 13px 20px 0px 20px;
	margin-bottom: 30px;
	z-index: 0;
}

.working-process-steps .working-block-one:before{
	position: absolute;
	content: '';
	border: 2px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	left: 0px;
	top: 0px;
	width: 100%;
	height: calc(100% - 40px);
	z-index: -1;
}

.working-process-steps .working-block-one .icon-box{
	position: absolute;
	left: 50%;
	top: -132px;
	margin-left: -27px;
	width: 54px;
	height: 54px;
	line-height: 52px;
	text-align: center;
	border: 2px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
}

.working-process-steps .working-block:nth-child(2) .working-block-one .icon-box{
	top: -107px;
}

.working-process-steps .working-block-one .icon-box:before{
	position: absolute;
	content: '';
	background: rgba(255, 255, 255, 0.12);
	left: 24px;
	top: 52px;
	width: 2px;
	height: 78px;
}

.working-process-steps .working-block:nth-child(2) .working-block-one .icon-box:before{
	height: 53px;
}

.working-process-steps .working-block:first-child .working-block-one .icon-box:after{
	position: absolute;
	content: '';
	border: 2px solid rgba(255, 255, 255, 0.12);
	left: 24px;
	bottom: 52px;
	width: 86px;
	height: 79px;
	border-radius: 10px 0px 0px 0px;
	border-right: none;
	border-bottom: none;
}

.working-process-steps .working-block:nth-child(2) .working-block-one .icon-box:after{
	position: absolute;
	content: '';
	background: rgba(255, 255, 255, 0.12);
	left: 24px;
	bottom: 52px;
	width: 2px;
	height: 53px;
}

.working-process-steps .working-block:last-child .working-block-one .icon-box:after{
	position: absolute;
	content: '';
	border: 2px solid rgba(255, 255, 255, 0.12);
	right: 24px;
	bottom: 52px;
	width: 86px;
	height: 79px;
	border-radius: 0px 10px 0px 0px;
	border-left: none;
	border-bottom: none;
}
.working-process-steps .working-block:nth-child(2) {
	margin-top: 100px;
}

.working-process-steps .working-block-one h6{
	display: block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 13px;
	color: #fff;
}

.working-process-steps .working-block-one .inner-box{
	position: relative;
	display: block;
	background: #fff;
	border-radius: 10px;
	padding: 34px 30px 33px 30px;
}

.working-process-steps .working-block-one .inner-box h3{
	display: block;
	font-size: 22px;
	font-weight: bold;
	line-height: 32px;
	margin-bottom: 10px;
}


/* ===== Testimonial section ===== */
.client-testimonial-box .testimonial-slider {
	padding-bottom: 4rem;
}
.testimonial-slider .testimonial-block-two{
	position: relative;
	display: block;
	overflow: hidden;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
}

.testimonial-slider .testimonial-block-two h5{
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 28px;
	color: #fff;
	padding: 15px 30px 15px 30px;
	background: linear-gradient(90deg, #120c1a 0%, #4c1e8d 100%);
}

.testimonial-slider .testimonial-block-two h5:before{
	position: absolute;
	content: '';
	left: 30px;
	bottom: -19px;
	width: 20px;
	height: 20px;
	background: #120c1a;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 0%);
}
.testimonial-slider .testimonial-block-two .testimonial-inner-box{
	position: relative;
	padding: 35px 20px 20px 20px;
	text-align: left;
}

.testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-author-box{
	position: relative;
	display: block;
	padding: 0px 0px 0px 80px;
	margin-bottom: 20px;
	text-align: left;
}

.testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-author-box .testimonial-thumb-box{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 61px;
	height: 60px;
	border-radius: 50%;
}

.testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-author-box .testimonial-thumb-box img{
	width: 100%;
	border-radius: 50%;
}

.testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-author-box h3{
	display: block;
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 0;
}

.testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-author-box .testimonial-designation{
	position: relative;
	display: block;
	color: #8d8d8d;
}

.testimonial-slider .testimonial-block-two .testimonial-inner-box p{
	color: rgb(130, 126, 125);
	margin-bottom: 25px;
}

.testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-lower-box{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-lower-box .testimonial-text-box span{
	position: relative;
	display: block;
	color: #000;
	margin-bottom: 5px;
}

.testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-lower-box .testimonial-text-box h3{
	font-size: 22px;
	line-height: 32px;
	color: #421680;
}

.testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-lower-box .testimonial-rating{
	position: relative;
	display: inline-block;
	border: 1px solid #e1dee5;
	border-radius: 30px;
	padding: 9px 13px 7px 13px;
}

.testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-lower-box .testimonial-rating h6{
	position: relative;
	display: inline-block;
	font-size: 18px;
	line-height: 28px;
	padding-left: 0px;
}

.client-testimonial-box .testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-lower-box .testimonial-rating h6 i,
.client-testimonial-box .testimonial-slider .testimonial-block-two .testimonial-inner-box .testimonial-lower-box .testimonial-rating h6 span{
	font-size: 18px;
	color: #00b67a;
}
.slider .slick-arrow {
	position: absolute;
	bottom: 20px;
	margin: auto;
	opacity: 1;
	padding: 4px;
	width: 22px;
	height: 26px;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
	z-index: 9;
}
.slider .slick-prev {
	left: 35%;
}
.slider .slick-next {
	right: 35%;
}
.slider .slick-prev:before {
	content: "\f104";
}
.slider .slick-next:before {
	content: '\f105';
}

.slider .slick-prev:before, 
.slider .slick-arrow:before {
	font-family: "FontAwesome";
	font-weight: 400;
	font-size: 20px;
	line-height: 1;
	color: #000;
}
.slider .slick-dots {
	display: flex;
	justify-content: center;
	padding: 7px;
	margin: 0 auto;
	list-style-type: none;
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	width: max-content;
}
.slider .slick-dots	li {
	margin: 0 0.25rem;
}

.slider .slick-dots button {
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 100%;
	background-color: #c6d5d0;
	text-indent: -9999px;
}

.slider .slick-dots li.slick-active button {
	background-color: #421680;
}

/* ===== Blog section ===== */
.newsblog-box-wrapper .newsblog-slider{
	padding-bottom: 4rem;
}
.newsblog-block-two{
	position: relative;
	display: block;
	background: #fff;
	border-radius: 10px;
	padding: 30px;
	margin: 1rem 0;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
}

.newsblog-block-two .newsblog-inner-box{
	position: relative;
	display: block;
	min-height: 194px;
	margin-bottom: 26px;
}

.newsblog-block-two .newsblog-inner-box .newsblog-image-box{
	border-radius: 10px;
}

.newsblog-block-two .newsblog-inner-box .newsblog-image-box img{
	width: 100%;
	border-radius: 10px;
}

.newsblog-block-two .newsblog-inner-box h6{
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 22px;
	font-weight: 700;
	text-transform: uppercase;
	background: #f4f1f7;
	color: #421680;
	border-radius: 40px;
	text-align: center;
	padding: 9px 20px;
	margin-bottom: 23px;
}
.newsblog-block-two .newsblog-inner-box .newsblog-category a{
	color: #421680;
}
.newsblog-block-two .newsblog-inner-box .newsblog-title{
	position: relative;
	display: block;
	font-size: 22px;
	line-height: 32px;
	margin-bottom: 15px;
}

.newsblog-block-two .newsblog-inner-box .newsblog-title a{
	display: inline-block;
	color: #000;
}

.newsblog-block-two .newsblog-inner-box .newsblog-title a:hover{
	color: #421680;
}

.newsblog-block-two .newsblog-lower-content{
	position: relative;
}

.newsblog-block-two .newsblog-lower-content .newsblog-post-info{
	position: relative;
	display: block;
	align-items: center;
	padding: 6px 19px;
	border: 1px solid #dbe5e2;
	border-radius: 40px;
}

.newsblog-block-two .newsblog-lower-content .newsblog-post-info li{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	color: #5f5c63;
	padding-left: 23px;
	margin-right: 34px;
}

.newsblog-block-two .newsblog-lower-content .newsblog-post-info li a{
	display: inline-block;
	color: #5f5c63;
}

.newsblog-block-two .newsblog-lower-content .newsblog-post-info li a:hover{
	color: #421680;
}

.newsblog-block-two .newsblog-lower-content .newsblog-post-info li:last-child{
	margin: 0px !important;
}

.newsblog-block-two .newsblog-lower-content .newsblog-post-info li i{
	position: absolute;
	left: 0px;
	top: 7px;
	font-size: 14px;
	color: #421680;
}

.newsblog-block-two .newsblog-lower-content .newsblog-post-info li:before{
	position: absolute;
	content: '';
	background: #c2d2cd;
	width: 1px;
	height: 14px;
	right: -17px;
	top: 6px;
	border-radius: 2px;
}

.newsblog-block-two .newsblog-lower-content .newsblog-post-info li:last-child:before{
	display: none;
}

.newsblog-block-two .newsblog-lower-content .newsblog-link a{
	position: relative;
	display: inline-block;
	min-width: 60px !important;
}
.blog-details-content .blog-details-inner-box ul {
	margin-left: 0;
}

/* ===== CTA section ===== */
.CTA-section .CTA-inner-wrapper{
	background-image: url('../images/stay-in-touch-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	padding: 4rem 2rem;
	border-radius: 20px;
}

.CTA-section .CTA-stay-btn p a {
	color: #fff;
	padding: 20px;
	font-weight: 500;
	text-align: left;
	text-transform: uppercase;
	max-width: 130px;
}

.CTA-section .CTA-stay-btn p img{
	max-width: 90px;
}
.CTA-section .top-trader-video-box-playbutton {
	color: #ffffff;
	border-bottom: 1px dashed #421680;
}
.CTA-inner-images {
	max-width: 420px;
	margin: auto;
}
.CTA-stay-btn .btn-filled:hover{
    background-color: #fff !important;
    border-color: #fff !important;
	
}	

/* ===== Footer ===== */
.footer-menu-col {
	margin: 1rem 0;
}
.footer-logo-col .footer-logo {
	max-width: 150px;
	display: inline-block;
}
.footer-description{
	color: #b7b1be;
}
.footer-certifications-box{
	position: relative;
	display: block;
	background: #251f2c;
	border-radius: 10px;
	padding: 20px;
	max-width: 370px;
}

.footer-menu-col .footer-menu-links li {
	position: relative;
	display: inline-block;
	width: 49%;
	margin-top: 10px;
	line-height: 26px;
	font-weight: 400;
	color: #a5b2af;
	padding-left: 28px;
	vertical-align: top;
}
.footer-menu-col .footer-menu-links li:before {
	position: absolute;
	content: '\f106';
	font-family: "FontAwesome";
	left: 0px;
	color: #7921f4;
	font-size: 18px;
	top: 0;
	transition: all 500ms ease;
}
.footer-menu-col .footer-menu-links li a {
	text-decoration: none;
	color: #fff;
}
.footer-menu-col .footer-menu-links li a:hover, 
.footer-menu-col .footer-menu-links li:hover:before{
	color: #fff;
}

.footer-contactinfo {
	position: relative;
	display: block;
	color: #fff;
	background-color: #ffffff0f;
	padding: 25px 25px 20px 25px;
	border-radius: 10px;
}
.footer-contactinfo .cont_list li {
	padding-left: 2rem;
}
.footer-contactinfo .cont_list li span {
	display: block;
	font-weight: 600;
	text-transform: capitalize;
}
.footer-contactinfo .cont_list li span i {
	position: absolute;
	left: 0;
	top: 4px;
	font-size: 1.3rem;
	color: #fff;
}
.footer-contactinfo .footer-socialmedia {
	position: relative;
	display: inline-block;
}
.footer-contactinfo .footer-socialmedia li {
	margin-bottom: 0.5rem;
	margin-right: 0.5rem;
	display: inline-block;
}
.footer-contactinfo .footer-socialmedia li a{
	color: #421680;
	font-size: 1.2rem;
	background: rgb(221 221 221);
	border-radius: 50px;
	padding: 6px;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-contactinfo .footer-socialmedia li a:hover {
	transform: rotate(45deg);
}
.footer_disclaimer .disclaimer {
	padding: 1.5rem;
    border-radius: 1rem;
    background: #ffffff0a;
}
.footer_disclaimer p {
	color: #6a6a6a !important;
}
.footer_copyrights {
	color: #b7b1be;
	position: relative;
	width: 100%;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.scroll-to-target {
	position: fixed;
	bottom: 139px;
	right: 20px;
	padding: 10px;
	background:  #7921F4;
	display: flex;
	color: #fff;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	width: 48px;
	height: 48px;
}

/* ===== Scaling Plans Section ===== */
.scaling-plans-wrapper-section {
	background-color: #F4F1F7;
}
.scaling-plans-columnbox {
	padding: 1rem;
	border-radius: 20px;
	background: linear-gradient(82deg, #120C1A 50%, #7921F4 200%);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
    z-index: 0;
	overflow: hidden;
}
.scaling-plans-columnbox .loading-overlay {
	background: rgb(0 0 0 / 70%);
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: 99;
	display:none;
    align-items: center;
    justify-content: center;
	width: 100%;
	height: 100%;
}
.scaling-plans-columnbox .loading-overlay.is-active {
  display: flex;
}
.scaling-plans-columnbox .scaling-plans-columnbox-selector .selector-item {
	margin: 0.5rem;
	border-radius: 100px;
}
.scaling-plans-layout-flow .scaling-custom-radio {
	margin: 1rem 0;
	font-size: 1rem;
	font-weight: normal;
	position: relative;
}
.scaling-custom-radio label {
	width: 100%;
	padding: 1rem 1rem;
	padding-left: 2.5rem !important;
	border: 1px solid #858585;
	background: none;
	color: #fff;
	border-radius: 8px;
	margin: 0;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	display: flex;
    align-items: center;
}
.scaling-custom-radio input {
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	z-index: 1;
}
.scaling-custom-radio .custom-control-input:checked + label{
	/*background: linear-gradient(3deg, #120c1a, #7921f4) !important;*/
	background-color: #7921f4;
	border-color: #7921f4;
	color: #fff;
}

.scaling-custom-radio .scaling-limitedoffer {
    position: absolute;
    right: 10px;
	color: #000;
    float: right;
	background: #ffe4b5;
}
.selector-item-amount .scaling-custom-radio .custom-control-label {
	display: flex;
	justify-content: space-between;
}
.selector-item-amount .scaling-custom-radio .custom-control-label .s-item-actsize span {
	font-size: 0.7rem;
	font-weight: 600;
	background: linear-gradient(90deg, #120C1A 10%, #7921F4 100%);
	color: #ffffff;
	padding: 5px;
	border-radius: 1rem;
	margin-left: 0;
	position: absolute;
	top: -10px;
	left: 30px;
}
.selector-item-amount .scaling-custom-radio .custom-control-label .s-item-actsamount{
	font-size: 1.1rem;
	min-width: 110px;
}
.selector-item-amount .scaling-custom-radio .custom-control-label .s-item-actsamount del {
	margin-right: 1.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	opacity: 0.7;
}
.scaling-plans-columnbox .selector-item-benifits {
	padding: 1rem;
	background: #000000a3;
	border-radius: 1rem;
}

.scaling-plans-columnbox .selector-item-benifits table tr td:nth-last-child(1){
	color: #cccccc;
    text-align: right;
}

.scaling-plans-fullamoutntstripe h2 {
    font-weight: bold;
}
.scaling-plans-fullamoutntstripe h2 del {
    font-weight: 500;
    opacity: 0.7;
}

/* ==== Checkout Page === */
.currencybox select.currencycode {
    padding: 3px 10px;
    font-size: 14px;
}
.registrationmessage {
    color: red;
    text-align: center;
    padding: 0px;
    margin: 5px 0px;
}
.loginerrormessage{color:red}
.loginmessage{color:green}
.selector-checkout-steps{
	background: linear-gradient(313deg, #0b0512 50%, #7921F4 150%);
	border-radius: 1rem;
}
.selector-checkout-steps .scaling-custom-radio label {
	width: auto;
	padding: 0.6rem 1rem;
}
.selector-checkout-steps .scaling-custom-radio {
	display: block;
	margin: 0.5rem 0rem;
}
.scaling-plans-checkout-totalamount .coupon-area .form-control {
	background: none;
	border: 0 !important;
	padding: 8px 15px;
	color: #fff;
	box-shadow: none;
	border-bottom: 1px solid #858585 !important;
}
.scaling-plans-checkout-totalamount .coupon-area button {
	background: #421680;
	color: #ffffff;
	line-height: normal;
	padding: 8px 16px;
}
.scaling-plans-checkout-totalamount .scaling-plans-checkout-review-order-table tr td:nth-last-child(1){
	font-weight: bold;
	text-align: right;
}
.scaling-plans-checkout-totalamount .scaling-plans-checkout-review-order-table .currencybox select.currencycode {
	font-size: 0.9rem;
	padding: 1rem;
	height: auto;
	color: #fff;
	background: #ffffff0f;
	border-width: 1px;
	border-style: solid;
	border-color: #42168021;
	border-radius: 10px;
	box-shadow: none;
	outline: 0;
}
.scaling-plans-checkout-totalamount .scaling-plans-checkout-review-order-table .currencybox select.currencycode option{
	color: #000;	
}
.scaling-plans-layout-forms {
	background-color: #fff;
	border-radius: 1rem;
	height: 100%;
	display: flex;
	align-items: center;
}
.scaling-plans-layout-forms .form-group .form-control {
	background-color: #f9fafb;
	padding: .75em;
	height: auto;
	border-width: 1px;
	border-style: solid;
	border-color: #e2e8f0;
	border-radius: 2px;
}
.scaling-plans-layout-forms .form-group .form-control:focus {
	border: 1px solid #421680;
	box-shadow: none;
	outline: none;
}
.scaling-plans-layout-forms .form-group .form-select:invalid{
	color: #787878;
}
.scaling-plans-layout-forms .form-group .form-select{
	padding: 0.8rem ;
	box-shadow: none;
	outline: none;
}

.scaling-plans-form-content fieldset:not(:first-of-type) {
	display: none;
}
.dash-payment-method-box li a {
	padding: 1rem;
	display: inline-block;
	background: #f4f1f7;
	margin: 0.5rem;
	border-radius: 1rem;
}
.dash-payment-method-box li a.active {
	box-shadow: 0 0 15px 1px #0000003b;
}
.scaling-plan-paymentmethod-wrapper {
	color: #000;
	padding: 1rem;
	border-radius: 1rem;
	margin-top: 2rem;
	box-shadow: 0 0 15px 1px #0000003b;
}
.scaling-plan-paymentmethod-wrapper .ds-payment-title {
	position: relative;
}
.scaling-plan-paymentmethod-wrapper .ds-payment-title .ds-payment-subtitle{
	display: block;
	margin-top: 5px;
}
.scaling-plan-paymentmethod-qrcodebox .dash_paymentgatway_information-qrcode {
	max-width: 160px;
	margin: auto;
	margin-bottom: 1rem;
}
.scaling-plan-paymentmethod-proof .dash_paymentgatway_info-address .form-control {
	width: 100%;
	padding-right: 60px;
}
.scaling-plan-paymentmethod-proof .dash_paymentgatway_info-address .dash-addresscopytext {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0px;
	margin: auto;
	padding: 10px 15px;
	color: #fff;
	background: #421680;
	border-radius: 3px;
	cursor: pointer;
	line-height: 2;
}
.dash_paymentgatway_info-address {
	margin-bottom: 8px;
	font-size: 14px;
}

/* ===== Thank You ===== */
.thankyou-main-wrapper .thankyou-image {
    max-width: 300px;
    margin: auto;
}
.thankyou-main-wrapper .thankyou-main_title {
    font-size: 4rem;
    font-weight: bold;
}


/* ===== Inner Banner ===== */
.inner-banner-wrapper{
	background-image: url(../images/about-banner-img.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	color: #fff;
	min-height: 250px;
}
.inner-banner-wrapper .inner-banner-content {
	text-align: center;
}
.inner-banner-wrapper .inner-banner-content .inner-banner-title {
	font-weight: 700;
	font-size: 2rem;
	display: inline-block;
	color: #000;
	padding: 0.5rem 1.5rem;
	border-top-left-radius: 60px;
	border-bottom-right-radius: 60px;
	background-image: linear-gradient(90deg, #ffffff 50%, #7921f4 100%);
}


/* ===== Blog Page ===== */
.blogs-banner{
	background-image: url(../images/blog-banner-bg.jpg);
}
.blog-categories {
	position: relative;
	border: 1px solid #431682 !important;
	padding: 20px 30px 25px;
	border-radius: 10px;
	overflow: hidden;
}
.blog-categories  .card-header {
	background: #421680;
	color: #fff;
	padding: 14px 20px 14px 43px;
	margin-top: -25px;
	margin-left: -30px;
	margin-right: -30px;
}
.blog-categories .card-body .blog-details-listside li {
	position: relative;
	display: block;
	padding-bottom: 13px;
	margin-bottom: 13px;
	border-bottom: 1px solid #dbe5e2;
	font-size: 13px;
	line-height: 22px;
	color: #6d7270;
	font-weight: 700;
	text-transform: uppercase;
}
.blog-categories .card-body .blog-details-listside li:last-child {
	border-bottom: 0px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

/* ===== Scaling Plans ===== */
.pricing-banner{
	background-image: url(../images/pricing-banner-img.jpg);
}
.why-choose-us-wrapper-section{
	position: relative;
	z-index: 0;
}
.why-choose-us-wrapper-section .why-choose-us-images {
	max-width: 450px;
	margin: auto;
}
.why-choose-us-wrapper-section .whychoose-featurebox {
	margin: 1rem 0;
}
.why-choose-us-wrapper-section  .whychoose-featurebox .whychoose-feature-img {
	display: inline-block;
	background: #fff;
	padding: 15px;
	max-width: 75px;
	height: 75px;
	border-radius: 50px;
	margin-bottom: 1rem;
}

.scaling-process-nav .nav-link {
	text-align: left;
    margin: 0.6rem 0;
    position: relative;
    color: #421680;
    font-size: 18px;
    font-weight: bold;
	background-color: #fff !important;
    padding: 1rem 1rem 1em 6rem;
    border-radius: 0.6rem !important;
	min-height: 90px;
    z-index: 0;
}

.scaling-process-nav .nav-link.active,
.scaling-process-nav .nav-link:hover{
	color: #fff;
	background: #7921f4 !important;
	box-shadow: 0 0 30px 0px #ffffff40;
}
.scaling-process-nav .nav-link.active .scaling-process-nav-title,
.scaling-process-nav .nav-link:hover .scaling-process-nav-title{
	color: #fff;
}
.scaling-process-nav .nav-link .scaling-process-nav-counter {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: 15px auto;
    font-size: 2rem;
    display: flex;
    align-items: center;
	justify-content: center;
	border-right: 1px solid;
	padding-right: 1rem;
    min-width: 60px;
}
.scaling-process-contentbox {
    padding: 2rem 1rem;
    border-radius: 20px;
    background: #ffffff0f;
    background-repeat: no-repeat;
    background-size: cover;
	border-radius: 0.6rem !important;
    position: relative;
    z-index: 0;
    overflow: hidden;
	height: 98%;
	display: flex;
    align-items: center;
}
.scaling-process-boxes .scaling-process-heighlightbox {
    padding: 0.2rem 1rem;
    color: #fff;
    background: #421680;
    border-radius: 40px;
    display: inline-block;
}
.scaling-process-boxes-list {
    margin-bottom: 2rem;
}
.scaling-process-offerright {
	padding: 2rem 1rem;
    border-radius: 0.6rem;
    color: #fff;
    background: #ffffff0f;

}
.trade-fx-direct-account-list li{
	margin: 10px 0;
}
.fx-direct-account-box {
	background: #421680;
    color: #fff;
    padding: 1rem 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #421680;
    box-shadow: 0 0px 3px 3px #cbcbcb80;
    position: relative;
    margin-bottom: 1rem;
	min-height: 82%;
}
.fx-direct-account-box .fx-direct-account-box-title {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0;
	position: relative;
	padding-left: 2rem;
}
.fx-direct-account-box .fx-direct-account-box-title span{
    position: absolute;
    left: 3px;
    top: 0;
    bottom: 0;
    max-width: 20px;
    margin: auto;
    display: inline-block;
    height: auto;
}

.fx-direct-account-box p {
	font-size: 0.9rem;
}
.fx-direct-account-box p b {
    display: block;
    margin-top: 10px;
    font-style: italic;
}
.trade-fx-direct-account-section .about-us-images,
.trade-fx-corporate-account-section .fx-corporate-account-images {
    max-width: 450px;
    margin: auto;
}
.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item {
	border: 1px solid #0000000f;
	background: #F4F1F7;
	margin: 1.5rem 0;
	border-radius: 10px;
}
.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item {
	border: 1px solid #0000000f;
	background: #F4F1F7;
	margin: 1.5rem 0;
	border-radius: 10px;
}
.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item .accordion-button.collapsed{
	background: #fff !important;
	color: #000;
	position: relative;
}
.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item .accordion-button {
	background: linear-gradient(90deg, #120c1a 50%, #7921f4 100%);
	color: #fff;
	padding: 17px 25px 17px 50px;
	cursor: pointer;
	border-radius: 10px;
	box-shadow: none;
	position: relative;
}

.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item .accordion-button:before{
	position: absolute;
	content: '';
	background: #a063f4;
	width: 16px;
	height: 16px;
	left: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(45deg);
	border-radius: 3px;
	z-index: 2;
}

.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item .accordion-button:after{
	position: absolute;
	content: '';
	background: #fff;
	width: 12px;
	height: 12px;
	left: 22px;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(45deg);
	border-radius: 3px;
	z-index: 3;
}
.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item .accordion-button.collapsed:after{
	opacity: 1 !important;
}
.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item .accordion-button:after{
	opacity: 0;
}

.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item .accordion-body {
	padding: 1.6rem;
	font-size: 0.9rem;
}
.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item .accordion-body .Tnc-points-title{
	font-size: 1.1rem;
	border-bottom: 1px solid #00000040;
	display: inline-block;
	padding-bottom: 5px;
}
.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item .accordion-body .Tnc-sub-points-title{
	font-size: 1rem;
}
.top-trader-terms-conditon-section .fa-questions-box .accordion .accordion-item .accordion-body .Tnc-sub-points {
	margin-bottom: 1rem;
}



/* Sign UP */
.regiter-pagemain-wrapper {
	display: flex;
	align-items: center;
	min-height: 100vh;
	height: 100%;
	background: linear-gradient(90deg, #120C1A 50%, #7921F4 200%);
}
.register_login-formbox {
	padding: 2rem;
	background: #fff;
	border-radius: 0.1rem;
}
.register_login-formbox .register_login_head .register_login_headtitle {
	font-size: 1.5rem;
	font-weight: 500;
}

.register_login-formbox .signup-form .form-group{
	position: relative;
	margin-bottom: 1rem;
}
.register_login-formbox .signup-form .form-group .form-control {
	background-color: #4c00b708;
    padding: 0.8em;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #e2e8f0;
    border-radius: 2px;
	box-shadow: none !important;
}
.register_login-formbox .signup-form .form-group .form-control:focus {
	border: 1px solid #421680;
	box-shadow: none;
	outline: none;
}
.register_login-formbox .signup-form .form-group .form-select:invalid{
	color: #787878;
}
.register_login-formbox .signup-form .form-group.form-password .form-control{
	 padding-right: 3rem;
}
.register_login-formbox .signup-form .form-group.form-password span{
	position: absolute;
	right: 15px;
	top: 19px;
	font-size: 0.9rem;
	cursor: pointer;
}
.register_login-formbox .signup-form .form-group input::-webkit-outer-spin-button,
.register_login-formbox .signup-form .form-group input::-webkit-inner-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	cursor: pointer;
	-webkit-appearance: none !important;
	-moz-appearance:    none !important;
	appearance:         none !important;
}
.register_login-formbox .signup-form .register_login_policytext.mt-4 {
	color: #787878;
}
.register_login_rightbox .register_login_rightbox_logo,
.register_login-formbox .register_login_rightbox_logo{
	max-width: 300px;
	margin-bottom: 1.5rem;
}
.register_login_rightbox .register_login_title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
}
.register_login-formbox .signup-form .btn{
	padding: 0.6rem 1.2rem !important;
}
.register_login-formbox .register_login_policytext a {
	font-weight: 600;
}

/* Frequently Ask Questions */
.faq-banner{
	background-image: url(../images/FAQ-banner-bg.jpg);
}


/* Privacy Policy Page */
.privacy-policy-banner{
	background-image: url(../images/Privacy-banner-bg.jpg);
}
.policy-codition-content .policy-codition-box {
	margin-top: 2rem;
}
.policy-codition-content .policy-codition-box .policy-codition-title {
	font-size: 1.2rem;
	font-weight: 600;
}
.policy-codition-content .policy-codition-box ul {
	line-height: normal;
}
.policy-codition-content .policy-codition-box ul li {
	margin: 5px 0;
}

/* Terms of Service Page */
.terms-of-service-banner{
	background-image: url(../images/Terms-of-service-banner-bg.jpg);
}

/* Live Chat Form */
.footer-whatsapp-icon {
	position: fixed;
	right: 20px;
	bottom: 80px;
}	

.footer-whatsapp-icon .sticky-icon .support-chat-icon {
	font-size: 1.7rem;
	background: linear-gradient(180deg, #42C03C, #2C882D);
	padding: 10px;
	display: flex;
	color: #fff;
	align-items: center;
	justify-content: center;
	border-radius: 100px;
	width: 48px;
	height: 48px;
}
.psmtc_OqiK {
	width: auto !important;
	padding: 0.4rem !important;
	background: #fff !important;
	border-radius: 3rem !important;
	height: auto !important;
	box-shadow: 0 1px 6px 0px #9d9d9d80 !important;
}
.psmtc_OqiK a:nth-child(2){
	display: none !important;
}

.psmtc_OqiK img {
	max-width: 35px !important;
	margin: 0 !important;
	height: auto;
}






/* New Offer Modal */
.modal .modal-dialog {
	max-width: 720px;
	height: 100%;
	display: flex;
	align-items: center;
}

.tfx_video_modal .modal-dialog .btn-close{
	position: absolute;
	right: 5px;
	top: -30px;
	filter: invert(1);
	opacity: 1;
	margin-bottom: 20px;
	float: right;
	outline: none;
	box-shadow: none;
	background-color: #00000000;
}
.tfx_offer_modal .modal .modal-body .btn-close {
	width: 28px;
	height: 28px;
	position: absolute;
	right: 10px;
	top: 10px;
	background: #2b173a;
	color: #fff;
	opacity: 1;
	padding: 0;
	font-size: 18px;
	border-radius: 50px;
	border: 0;
	box-shadow: none;
}


.mega-priceslash-sale-popup .fade-flip {
	transform: rotateX(-90deg);
	opacity: 0;
	-webkit-transition: all .7s linear;
	-o-transition: all .7s linear;
	transition: all .7s linear;
}
.mega-priceslash-sale-popup .fade-flip.show {
	opacity: 1;
	transform: rotateX(0deg);
}
.mega-priceslash-sale-popup .modal .modal-dialog .modal-content {
	border-radius: 38px;
	background: none;
	border: 0;
}
.mega-priceslash-sale-popup .modal .btn-close {
	width: 28px;
	height: 28px;
	position: absolute;
	right: 10px;
	top: 10px;
	background: none;
	color: #acbed1;
	opacity: 1;
	padding: 0;
	font-size: 18px;
	border-radius: 50px;
	border: 0;
	box-shadow: none;
}

.tfx_contactform-popup .modal .modal-header,
.tfx_contactform-popup .modal .modal-body {
    padding: 2rem;
}
.tfx_contactform-popup .modal .modal-header .btn-close {
	width: 28px;
	height: 28px;
	position: absolute;
	right: 10px;
	top: 10px;
	background: none;
	opacity: 1;
	padding: 0;
	font-size: 18px;
	border-radius: 50px;
	border: 0;
	box-shadow: none;
}
.tfx_contactform-popup .modal .form-group{
	margin-bottom: 1rem;
}
.tfx_contactform-popup .modal .form-group .form-control {
	background-color: #4c00b708;
    padding: 0.8em;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #e2e8f0;
    border-radius: 2px;
	box-shadow: none !important;
}
.tfx_contactform-popup .modal .form-group .form-control:focus {
	border: 1px solid #421680;
	box-shadow: none;
	outline: none;
}
.tfx_contactform-popup .modal .form-group .form-select:invalid{
	color: #787878;
}
.tfx_contactform-popup .modal.form-group input::-webkit-outer-spin-button,
.tfx_contactform-popup .modal.form-group input::-webkit-inner-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	cursor: pointer;
	-webkit-appearance: none !important;
	-moz-appearance:    none !important;
	appearance:         none !important;
}


/* 404 Page */
.page-404-wrapper .page-404-content .page-404-img{
	width: 100%;
	max-width: 450px;
	margin-bottom: 3rem;
}

/* Diwali Offer Page */
.diwali-offer-banner-wrapper{
	background: url(../images/diwali-offer-banner.jpg);
	background-size: cover;
	min-height: 700px;
}

/*News pagination start*/
.newsblog-section nav.nav-pagination{ width: 100%; display: flex; justify-content: center; }
.newsblog-section .pagination li.page-item { margin: 0 10px;}
.newsblog-section .uniglobe-technical-analysis .nav-pagination .page-num { display: none;}
.newsblog-section .nav-pagination span, .nav-pagination a { padding: 2px 14px; border-radius: 5px; margin-right: 5px;}
.newsblog-section .nav-pagination a{ background-color: #000000!important; color: #fff!important;}
.newsblog-section .nav-pagination span.current{ color: #fff; background-color: #f22d2d; border-color: #f22d2d;}
/*News pagination end*/

.register_login-wrapperrow{
	background: #fff;
    box-shadow: 0px 0px 15px 2px #0000008c;
    width: 100%;
    margin: auto;
	border-radius: 10px !important;
    overflow: hidden;
}
.regiter-column-right-side{
	background: #a78bdf;	
}
.regiter-pagemain-bgimage {
	padding: 2.5rem;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}
.regiter-pagemain-bgimage img {
    max-width: 570px;
    margin: auto;
}


@media only screen and (min-width: 1400px) {
	.selector-item-amount .scaling-custom-radio .custom-control-label .s-item-actsize span{
		position: static;
		margin-left: 1rem;
	}
}

@media only screen and (min-width: 1200px) {
	.main-header {
		margin: 0 80px;
		border-radius: 50px;
	}
	.inner-banner-wrapper{
		margin-top: -6.5rem;
	}
	.hero-banner .hero-banner-businessman {
		max-width: 450px;
	}
	.hero-banner-right-img .hero-banner-businessman{
		display: block;
	}
	.hero-banner-content .hero-banner-title{
		font-size: 4.3rem;
	}
	.hero-banner-bottom ul li {
		width: fit-content;
	}
	.hero-banner-bottom ul li span{
		font-size: 2rem;
	}
	.scaling-plans-wrapper-section .section-header{
		padding-right: 9rem;
		position: relative;
	}
	.scaling-plans-wrapper-section .section-header .btn {
		position: absolute;
		right: 0;
		bottom: 0;
	}
	.newsblog-section .section-header .btn {
		position: absolute;
		bottom: 0;
		right: 0;
	}
	.CTA-section .CTA-inner-wrapper{
		text-align: left !important;
	}
	.CTA-section .CTA-stay-btn {
		justify-content: start !important;
	}
	.scaling-plans-columnbox,
	.scaling-process-contentbox, 
	.scaling-process-offerright{
		padding: 2rem;
	}
	
}
@media only screen and (min-width: 992px) {
	body .py-5{
		padding-top: 6rem!important;
		padding-bottom: 6rem!important;
	}
	body .pt-5{
		padding-top: 6rem!important;
	}
	body .pb-5{
		padding-bottom: 6rem!important;
	}
	
	.header.sticky-top .main-header {
		padding: 0.8rem 5rem !important;
	}
	.main-header .navbar .navbar-nav .nav-item .nav-link{
		border-color: #0000;
	}
	.hero-banner .carousel .carousel-item {
		min-height: 950px;
	}

	.hero-live-spread-box .hero-live-spread-right-column {
		display: flex;
	}

	.section-header .section-title {
		font-size: 3rem;
	}
	.aboutus-wrapper-section .about-us-images,
	.trade-faq-section .about-us-images{
		max-width: 600px;
		margin: auto;
	}

	.process-wrapper-section .processstep_box .processstep_box-content .processstep_box-title {
		font-size: 1.4rem;
	}
	.process-wrapper-section  .process-wrapper-list ul li {
		display: block !important;
	}
	.whychoose-box .fxvibe-feature-section {
		margin: 5rem 0 !important;
	}
	.whychoose-box-left .fxvibe-feature-section.first {
		text-align: right;
	}
	.whychoose-box-right .fxvibe-feature-section.first {
		text-align: left;
	}
	.whychoose-box-left .fxvibe-feature-section:after{
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		right: -100px;
		width: 80%;
		height: 2px;
		background: #dbdbdb;
		z-index: -1;
	}
	.whychoose-box-right .fxvibe-feature-section:after{
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		left: -135px;
		width: 80%;
		height: 2px;
		background: #dbdbdb;
		z-index: -1;
	}
	.client-testimonial-box .client-user-box {
		padding: 2rem 4rem;
	}

	.footer_copyrights .list-unstyled li{
		margin-left: 4rem;
	}
	
	.why-choose-us-wrapper-section .whychoose-featurebox {
		color: #fff;
	}
	.why-choose-us-wrapper-section .why-chooserow:before{
		content: "";
		position: absolute;
		bottom: 30px;
		right: 0;
		margin: auto;
		width: 63%;
		height: 73%;
		background: linear-gradient(90deg, #120C1A 50%, #7921F4 200%);
		color: #fff;
		border-bottom-left-radius: 150px;
		z-index: -1;
	}
	.register_login-formbox {
		padding: 2rem;
	}
	.register_login_rightbox .register_login_title {
		font-size: 2.6rem;
	}
	.mission_vision_box {
		text-align: left !important;
	}
	.professional-trading-offer-box {
		min-height: 90% !important;
	}
	.trader-offer-steps .col .professional-trading-step-arrow {
		position: absolute;
		right: -2.3rem;
		bottom: 1.7rem;
		z-index: 1;
		max-width: 80px;
		opacity: 0.5;
		display: block;
	}
	.inner-banner-wrapper .inner-banner-content .inner-banner-title {
		font-size: 3rem;
	}
	
	.evaluation_program-section .evaluation_program-box{
		min-height: 295px
	}
	.how-to-use-offer .mission_vision_box-single:after {
		content: '';
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		width: 100%;
		height: 16px;
		background-image: url(../images/right-arrow.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}
	.scaling-plans-layout-flow-acctype {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height: 100%;
	}
}
@media only screen and (max-width: 991px) {
	.main-header .navbar .navbar-nav .nav-item.dropdown {
		margin-top: 1rem !important;
	}
	.main-header .navbar .navbar-collapse {
		position: absolute;
		top: 50px !important;
		width: 100%;
		background: #000;
		z-index: 99;
		border-bottom-right-radius: 15px;
		border-bottom-left-radius: 15px;
	}
	
	.main-header.sticky-top .navbar .navbar-collapse{
		top: 70px !important;
	} 
	.main-header .navbar .navbar-nav .nav-item:nth-last-child(1) .nav-link{
		border-bottom: 0;
	}
	.trader-offer-steps .col {
		width: 50% !important;
		flex-basis: auto;
	}
	.selector-item-amount {
		margin: 1.5rem 0px;
	}
	.working-process-steps .working-block-one .icon-box{
		display: none;
	}
	.working-process-steps .working-block:nth-child(2){
		margin-top: 0px;
	}
	.working-process-steps .process-steps-video-inner .process-steps-big-text {
		font-size: 50px !important;
	}

}
@media only screen and (min-width: 768px) {
	.inner-banner-wrapper{
		min-height: 500px !important;
	}
	.hero-feature-inner-wrapper{
		padding: 3rem 2rem;
	}
	.hero-feature-inner-wrapper .hero-feature-box {
		padding: 0.3rem 1.5rem;
	}
	.hero-fxvibe-pair .hero-fxvibe-pair-title {
		margin-left: 11rem;
	}
	.newsblog-block-two .newsblog-inner-box{
		padding-left: 220px;
	}
	.newsblog-block-two .newsblog-lower-content{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.newsblog-block-two .newsblog-inner-box .newsblog-image-box{
		position: absolute;
		left: 0px;
		top: 0px;
		bottom: 0;
		margin: auto;
		width: 190px;
		height: 190px;
	}
	.scaling-plan-paymentmethod-wrapper .ds-payment-title .ds-payment-subtitle{
		display: inline-block;
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		margin-top: 6px;
	}
	.bankdetails .dash_paymentgatway_info-address span {
		display: block;
	}
}

@media only screen and (max-width: 767px) {

	.CTA-section .CTA-stay-btn p {
		display: none;
	}
	.trade-wishus-section .metatrader-platforms figure img {
		display: block;
	}
	.whats_inslude-content .whats_inslude-featurebox .whats_inslude-feature-title {
		font-size: 1rem;
	}
	.footer_copyrights .copyright-text {
		text-align: center;
	}
	.footer_copyrights .list-unstyled{
		justify-content: center;
	}
	.footer_copyrights .list-unstyled li{
		margin: 0 1rem;
	}	
	.trader-offer-steps .col {
		width: 100% !important;
	}
	.highest-bonus-offer .professional-trading-offerleftbox {
		max-width: 400px;
	}
	.scaling-plan-paymentmethod-qrcodebox {
		margin-bottom: 1rem;
	}
	.newsblog-block-two .newsblog-lower-content .newsblog-post-info li:nth-last-child(2):before {
		display: none;
	}
	
}
@media only screen and (min-width: 580px) {
	.main-header .navbar .main-column{
		flex: 1;
	}
	.hero-banner-content .hero-banner-subtitle{
		padding-left: 90px;
		padding-right: 90px;
	}
	.hero-banner-content .hero-banner-subtitle:before{
		position: absolute;
		content: '';
		background: rgba(255, 255, 255, 0.30);
		width: 70px;
		height: 1px;
		left: 0px;
		top: 12px;
	}
	.hero-banner-content .hero-banner-subtitle:after{
		position: absolute;
		content: '';
		background: rgba(255, 255, 255, 0.30);
		width: 70px;
		height: 1px;
		right: 0px;
		top: 12px;
	}
	.selector-checkout-steps .scaling-custom-radio {
		display: inline-block;
		margin-right: 0.5rem;
	}
	
}
@media only screen and (max-width: 470px) {
	.scaling-custom-radio .scaling-limitedoffer{
		top: -7px !important;
	}
	
}

