@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');





:root {
	--section-padding: 6.25rem;
	--c-f-padding: 1.87rem;

	--font-family: "Montserrat", sans-serif;
	--second-family: "Open Sans", sans-serif;

	--yellow-light: #ffe666;
	--yellow: #fd3;
	--yellow-dark: #ffd500;
	--gray-10: #121221;
	--gray-12: #171727;
	--gray-18: #242438;
	--gray-24: #313a49;
	--gray-30: #3d485c;
	--gray-40: #52617a;
	--gray-50: #667999;
	--gray-60: #8594ad;
	--gray-85: #c2c9d6;
	--white: #fff;
	--black: #000;
	--orange: #FF6720;

}

/* width */
::-webkit-scrollbar {
	width: 0.513rem;
}

/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 0.313rem #767680;
	border-radius: 0.313rem;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #767680 0%, #767680 100%);

	border-radius: 0.625rem;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #FFFFFF;
}

html {
	box-sizing: border-box;
	font-size: 1.111vw;

	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
	font-family: var(--font-family);
	font-optical-sizing: auto;
	margin: 0;
}

body {
	max-width: 100rem;
	font-weight: 400;
	color: var(--white);
	background: var(--gray-18);
	overscroll-behavior: none;
}

.title {
	font-optical-sizing: auto;
}

a {
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
}



.body_wrap {
	position: relative;
	overflow: hidden;
}

/*////////////////////////////////*/

.d-flex {
	display: flex;
}


.container {
	max-width: 100rem;
	padding-left: var(--section-padding);
	padding-right: var(--section-padding);
	margin-left: auto;
	margin-right: auto;
}

.container-fluid {
	max-width: 100rem;
	padding-left: var(--c-f-padding);
	padding-right: var(--c-f-padding);
	margin-left: auto;
	margin-right: auto;
}

.gradient-text {
	background: linear-gradient(90deg, #ffe666 0%, #ff6720 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}




.white-text {
	color: var(--white);
}

.mob-img {
	display: none;
}

header {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 1.875rem 0;
	transition: 0.4s;
}

.header_wrap {
	justify-content: space-between;
	align-items: center;

}

.logo img {
	width: 11.313rem;
}

.navbar-toggler-wrap {
	display: none;
}

.nav {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;



}

.nav ul {
	column-gap: 1.9rem;
}

.nav li {
	list-style: none;
}

.nav li a {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1.12rem;
	line-height: 130%;
	color: var(--gray-60);
	transition: all 0.2s;
}

.nav li a:hover {
	color: var(--yellow-light);
}



/* /////////////////////////////////////// */
.gap-40 {
	gap: 2.5rem;
}

/*////////////////////////////*/
/* .languages {
	position: absolute;
	top: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
} */



.languages li {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4.75rem;

	/* border-radius: 0 0 1.25rem 1.25rem; */
	/* background: linear-gradient(135deg, #383DC2 0%, #4131A8 100%); */
	cursor: pointer;
	z-index: 1;
	opacity: 0;
	transform: translateY(-2rem);
	transition: all 0.4s ease-out;
	overflow: hidden;



}

/* .languages:hover li:nth-child(2) {
	opacity: 1;
	transform: translateY(2.4rem);
} */

.languages:hover li:last-child {
	opacity: 1;
	/*transform: translateY(2.4rem);*/
	transform: translateY(0rem);
	border-radius: 0 0 1.25rem 1.25rem;
}

.languages li.current {

	color: #FFFFFF;
	position: relative;
	border-radius: 1.25rem;
	opacity: 1;
	transform: translateY(0);
	z-index: 2;
	background: var(--gray-12);


}

.languages:hover li {
	opacity: 1;
	transform: translateY(0rem);
	background: var(--gray-12);
}

.languages:hover li.current {
	border-radius: 1.25rem 1.25rem 0 0;
}

.languages:hover a,
.languages:hover li.current a {}

/* .languages img {
	width: 0.625rem;
	transition: all 0.4s ease-out;
}

.languages:hover img {
	transform: rotate(180deg);
} */

.icon_lang {
	display: block;
	width: 0.8rem;
	height: 0.625rem;
	background-image: url(/img/images-icon-lang.svg);
	object-fit: cover;
	background-repeat: no-repeat;
	transition: all 0.4s ease-out;
}

.languages:hover .icon_lang {
	transform: rotate(180deg);
	background-image: url(/img/images-icon-lang-hover.svg);
}


.languages li.current a {}

.languages a {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--gray-85);

	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	column-gap: 0.625rem;

	padding: 0.5rem 0rem;
}

.languages a:hover {
	background: var(--gray-24);
}


/*////////////////////////////////*/

.banner {
	padding: 4.375rem 0 5.5rem;
	/*overflow: hidden;*/
}


.banner-row {
	display: flex;
	gap: 5.5rem;
}

.banner-row .banner_text_wrap {
	flex-shrink: 0;
	max-width: 36.125rem;
}



.banner_title {
	font-weight: 700;
	font-size: 2.44rem;
	line-height: 115%;
	letter-spacing: -0.01em;
	color: var(--white);
	/**/
	margin-bottom: 1.68rem;

	opacity: 0;
	transform: translateY(5rem);
}

.icon_stars {
	position: relative;
	width: 2.95rem;
	/*top: 0.5rem;*/
	bottom: -1.18rem;
}

.date_wrap {
	/*width: max-content;*/

	border: 0.07rem solid var(--gray-40);
	border-radius: 1.25rem;
	padding: 0.95rem 1.88rem 1.27rem;
	background: var(--gray-12);
	display: flex;
	align-items: center;
	gap: 0.938rem;
	margin-bottom: 2.5rem;
	margin-right: 1.8rem;
	opacity: 0;
	transform: translateY(5rem);
}

.calender-dynamic {
	width: 3.75rem;
}

.date_text {
	font-weight: 500;
	font-size: 2.15rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	color: var(--white);
	margin-bottom: 0.25rem;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.date_text span.gradient-text {
	background: linear-gradient(90deg, #ffe666 0%, #ff8f20 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.date_text b {
	font-weight: 500;
	font-size: 1rem;
	line-height: 130%;
	color: var(--gray-60);
}

.yt_wrap {
	width: max-content;
	display: flex;
	align-items: center;
	gap: 0.625rem;
	background: var(--black);
	border-radius: 0.62rem;
	padding: 0.25rem 0.75rem;
}

.yt_wrap img {
	width: 1.875rem;
}

.yt_wrap p {
	font-weight: 400;
	font-size: 0.94rem;
	line-height: 130%;
	color: var(--gray-85);
}



.banner_list {
	margin-bottom: 3.125rem;
}

.banner_list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	list-style: none;
	margin-bottom: 1.313rem;
	font-weight: 400;
	font-size: 1.12rem;
	line-height: 130%;
	color: var(--gray-60);

	opacity: 0;
	transform: translateY(4rem);
}

.banner_list li b {
	font-weight: 400;
	color: var(--white);
}

.banner_list li::before {
	content: "";
	width: 1.25rem;
	height: 1.375rem;
	background-image: url(/img/images-icon-list.svg);
	background-size: cover;
	flex-shrink: 0;
}

.banner .banner_btn {
	opacity: 0;
	transform: translateY(5rem);
}

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

	border-radius: 3.12rem;
	padding: 1.06rem 2.19rem;
	font-weight: 600;
	font-size: 1.38rem;
	line-height: 122%;
	letter-spacing: -0.01em;
	color: var(--gray-10);

	box-shadow: 0 10px 30px 0 rgba(255, 103, 32, 0.5);
	background: linear-gradient(90deg, #ff884d 0%, #f50 100%);


	transition: all 0.5s ease-out;
	animation-name: attentionAnimation;
	animation-duration: 5s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in;
}

@keyframes attentionAnimation {
	0% {
		left: 0
	}

	1% {
		left: -0.188rem
	}

	2% {
		left: 0.313rem
	}

	3% {
		left: -0.5rem
	}

	4% {
		left: 0.5rem
	}

	5% {
		left: -0.313rem
	}

	6% {
		left: 0.188rem
	}

	7% {
		left: 0
	}
}


.btn::after {
	flex-shrink: 0;
	content: "";
	width: 1.875rem;
	height: 1.875rem;
	display: inline-block;
	/*background-image: url("/img/images-icon-telegram-n.svg");*/
	background-image: url("/img/images-icon-arrow.svg");
	background-size: cover;
	margin-left: 0.938rem;
}

.btn:hover {
	box-shadow: 0 5px 15px 0 rgba(255, 103, 32, 0.25);
	background: linear-gradient(90deg, #f73 0%, #e54d00 100%);
}


.mentor_block {
	display: flex;
	gap: 1.875rem;
	align-items: center;
}

.mentor_block_img {
	flex-shrink: 0;
	border-radius: 8.75rem;
	width: 7.5rem;
	height: 7.5rem;
	background: var(--black);
	overflow: hidden;
}

.mentor_block_img img {
	width: 100%;
}

.mentor_block_wrap h3 {
	font-weight: 600;
	font-size: 1.38rem;
	line-height: 122%;
	letter-spacing: -0.01em;
	color: var(--white);
	margin-bottom: 0.938rem;
}

.mentor_block_wrap p {
	font-weight: 500;
	font-size: 1rem;
	line-height: 130%;
	color: var(--gray-60);
}

.baner_img_wrap {
	position: relative;
}

.banner-img {
	position: absolute;
	width: 32.75rem;
	bottom: -3rem;
	right: 3.2rem;
	/*top: 8.25rem;
	left: -5rem;*/
	z-index: 1;
}

/*circle-orange*/
.banner_shadow_1 {
	position: absolute;
	width: 34.375rem;
	/*top: 4rem;
	left: -12rem;*/

	bottom: -12.2rem;
	right: 5rem;


}

/*circle-yellow*/
.banner_shadow_2 {
	position: absolute;
	width: 40.625rem;

	bottom: 0.2rem;
	right: -5.6rem;
}



/* 
////////////////////////////////////////// */

.trader_way {
	padding: 5.625rem 0 5.375rem;
	overflow: hidden;
}



.trader_way_img {
	border-radius: 3.75rem;
	width: 100%;
	margin-bottom: 6.25rem;
}

.trader_way .online-forum.title {
	justify-content: space-between;
}

.title {
	font-weight: 700;
	font-size: 2.38rem;
	line-height: 105%;
	letter-spacing: -0.01em;
	margin-bottom: 2.5rem;
}

.steps {
	gap: 0.75rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.step-item {
	width: calc(50% - 0.5rem);
	/*align-items: center;*/
	align-items: stretch;
	background: var(--gray-12);
	gap: 1.25rem;
	border-radius: 1.5rem;
	padding: 0.94rem 1.56rem 1.25rem;
	box-sizing: border-box;
}

.step-number {
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 105%;
	letter-spacing: -0.03em;
	color: var(--gray-30);
}

.step-text {
	font-size: 1.12rem;
	line-height: 130%;
	color: var(--gray-60);
	gap: 0.60rem;
	display: flex;
	flex-direction: column;
	font-weight: 600;
}


.step-text b {
	color: var(--white);
	font-weight: 600;

}

.step-text p {
	font-weight: 400;
}

.step-finish-wrap {
	height: 0;
	display: flex;
	gap: 0.75rem;
	display: none;
}

.step-finish-wrap .banner_btn {
	width: 50%;
}

.step-finish-text {
	width: 50%;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.step-finish-text img {
	width: 5rem;
	height: 5rem;
}

.step-finish-text .text {

	font-weight: 500;
	font-size: 1.38rem;
	line-height: 122%;
	letter-spacing: -0.01em;
	color: var(--gray-60);
	/* padding-left: 1.563rem;
	border-left: 0.07rem solid var(--gray-40); */
}

.step-finish-text .text b {
	font-weight: 500;
	color: var(--white);
}

.step-finish-text .text span {
	background: linear-gradient(90deg, #ffe666 0%, #ff6720 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* /////////////////////////////////////////// */

.speakers {
	padding-top: 6.25rem;
	padding-bottom: 7.5rem;
	border-radius: 6.25rem;
	background: url("/img/images-bg-gradient.webp") center no-repeat;
	background-size: cover;

	margin-bottom: 4.4rem;
}



.item-spekear {
	display: flex;
	gap: 5rem;
	/* background: var(--gray-12); */
	border-radius: 2.19rem;
	box-sizing: border-box;
}

.spekear-img-wrap {
	position: sticky;
	top: 3.125rem;
	flex-shrink: 0;
	width: 25rem;
	height: 25rem;
	border-radius: 50%;
	background: var(--gray-18);
	overflow: hidden;
}

.spekear-img {
	width: 100%;
}


.item-spekear .name {
	width: max-content;
	font-weight: 700;
	font-size: 2.52rem;
	line-height: 100%;
	letter-spacing: -0.01em;

	margin-bottom: 3.25rem;

}

.speaker_description_wrap {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.speaker_description_item {
	border-radius: 1.5rem;
	padding: 1.56rem 1.8rem 1.88rem;
	background: var(--gray-18);
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--gray-60);
}

.speaker_description_item b {
	color: var(--white);
	font-weight: 600;
}

.spekear_subjects-wrap {
	margin-top: 4rem;
	gap: 0.85rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.spekear_subjects-wrap .half-width {
	display: flex;
	width: calc(50% - 0.5rem);
}

.spekear_subjects-wrap .half-width .spekear_subject_wrap {
	width: 100%;
}


.spekear_subject_wrap {
	position: relative;
	display: flex;
	gap: 1.563rem;
	align-items: center;

	border: 1px solid var(--gray-40);
	border-radius: 1.5rem;
	padding: 1.50rem 2.11rem 1.9rem 1.50rem;
	background: var(--gray-10);
	/*	margin-top: 3.125rem;*/
	width: 100%;
}

.spekear_subject_wrap .spekear_subject_img {
	flex-shrink: 0;
	width: 3.75rem;
	height: 3.75rem;
	object-fit: contain;
}


.spekear_subject_wrap p {
	font-weight: 500;
	font-size: 1.18rem;
	line-height: 122%;
	letter-spacing: -0.01em;
	color: var(--gray-60);
	margin-bottom: 0;
	max-width: 32rem;

}

.spekear_subject_wrap p b {
	/*color: var(--white);*/
	font-size: 1.48rem;
	font-weight: 500;
	line-height: 120%;

}

/* /////////////////////////////  */

.lets-start {
	margin-bottom: ;
}

.lets-start .lets-start-wrap {
	justify-content: space-between;
	gap: 6rem
}

.lets-start .lets-start-wrap .lets-start-text {
	font-weight: 600;
	font-size: 1.38rem;
	line-height: 122%;
	color: var(--gray-60);

}

.lets-start-text {
	gap: 1rem;
}

.lets-start-img {
	width: 3.12rem;
	height: 3.12rem;
}

/* /////////////////////////////////////// */
/*////////////////////////////////////////////////////////*/
.feedback {
	overflow: hidden;
	padding: 0;
	height: 0;
}

/* .slider_wrap {
	width: 100%;
} */


.feedback_wrap {
	width: 110%;
}

.feedback_wrap:hover {
	cursor: move;
}

.feedback_item {
	position: relative;
	border-radius: 2.19rem 2.19rem 2.19rem 0;
	padding: 1.25rem 2.19rem 1.88rem 2.19rem;
	height: max-content;
	background: var(--gray-12);
}

.feedback_item::after {
	content: " ";
	position: absolute;
	bottom: 0;
	left: -0.625rem;
	width: 0.625rem;
	height: 0.625rem;
	background-image: url(/img/images-Corner-Testimonial.svg);
	background-size: cover;
}

.feedback_name_wrap {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.625rem;
}

.feedback_name {
	font-weight: 500;
	font-size: 1.38rem;
	line-height: 122%;
	letter-spacing: -0.01em;
	color: var(--white);

}

.feedback_date {
	font-weight: 500;
	font-size: 1rem;
	line-height: 130%;
	color: var(--gray-40);
}

.rating_wrap {
	display: flex;
	align-items: center;
	gap: 0.125rem;
	margin-bottom: 1.25rem;
}

.rating_wrap img {
	width: 1.188rem;
}

.feedback_text {
	font-weight: 500;
	font-size: 1.12rem;
	line-height: 130%;
	color: var(--gray-60);
}


/*//////////////////////////////////////////////*/


/* ////////////////////////////////////////////// */

.speakers_bottom {
	display: flex;
	align-items: center;
	gap: 1.875rem;

	border-radius: 2.19rem;
	padding: 1.88rem 2.19rem;

	background: var(--gray-12);
}

.speakers_bottom_text {
	display: flex;
	align-items: center;
	gap: 1.875rem;
}

.speakers_bottom_text img {
	width: 5rem;
	flex-shrink: 0;
}

.speakers_bottom_text p {
	font-family: "Montserrat", serif;
	font-weight: 500;
	font-size: 1.75rem;
	line-height: 115%;
	letter-spacing: -0.01em;
	color: var(--gray-60);
}

.speakers_bottom_text p b {
	font-weight: 500;
	color: var(--white);
}

.speakers_bottom_text p span {
	background: linear-gradient(90deg, #ffe666 0%, #ff6720 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.speakers_bottom .btn {
	width: 23.31rem;
}



/* //////////////////////////////////////////////////////// */


.chance {
	padding: 6.5rem 0 7.5rem;
	overflow: hidden;
}

.chance_wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5.75rem;
	background: var(--gray-12);
	border-radius: 3.75rem;
	/*padding: 5rem 8.5rem;*/
	padding: 0;
}

.pdf-guide-prop {
	width: 22.12rem;
	border: 0.07rem solid var(--gray-40);
	border-radius: 2.19rem;
	box-shadow: -10px 10px 60px 0 rgba(0, 0, 255, 0.25);
}

.chance_wrap_inner {
	gap: 0rem;
	justify-content: space-between;
}

.chance_wrap_inner .chance_wrap-text {
	padding: 5.02rem 3rem;
}

.chance_wrap_inner .chance_wrap-text-book-wrap {
	position: relative;
	display: flex;
	gap: 0.94rem;
	align-items: center;
	border: 1px solid var(--gray-24);
	border-radius: 1.5rem;
	padding: 2.59rem 1.26rem 2.61rem 1.26rem;

	background: linear-gradient(153.43deg, rgba(0, 0, 0, 1), rgba(0, 20.39999771118164, 61.19999694824219, 1) 100%);
	overflow: hidden;

}

.chance_wrap_inner .chance_wrap-text-book-wrap p {
	margin-left: 12rem;

	font-weight: 500;
	font-size: 1.02rem;
	line-height: 130%;
	letter-spacing: 0;


	color: var(--gray-60);
	max-width: 20rem;
}


.chance_wrap_inner .chance_wrap-text .pdf-guide-new {

	box-shadow: -5px -5px 15px 0 rgba(0, 85, 255, 0.25);
	width: 9rem;
	border-radius: 2rem;
	border: solid 1px var(--gray-18);
	transform: rotate(-6deg);
	position: absolute;
	left: 2rem;
	top: 1.4rem;
}





.chance_wrap-benefits {
	margin-top: 2.19rem;
	gap: 0.85rem;
	flex-wrap: wrap;

}

.chance_wrap-benefits .additional-wrap {
	width: 100%;
	justify-content: space-between;
	align-items: stretch;
}

.chance_wrap-benefits .half-width-1 {
	width: calc(40% - 0.5rem);
	display: flex;
}

.chance_wrap-benefits .half-width-2 {
	display: flex;
	width: calc(60% - 0.5rem);
}

.chance_wrap-benefits .half-width-1 .chance_wrap-benefits-item,
.chance_wrap-benefits .half-width-2 .chance_wrap-benefits-item {
	width: 100%;
	max-width: 100%;
}




.chance_wrap-benefits .chance_wrap-benefits-item {
	position: relative;
	display: flex;
	gap: 0.94rem;
	align-items: center;
	border: 1px solid var(--gray-24);
	border-radius: 1.5rem;
	padding: 1.26rem 1.26rem 1.31rem 1.26rem;
	background: var(--gray-10);
	width: 100%;
}

.chance_wrap-benefits .chance_wrap-benefits-item img {
	flex-shrink: 0;
	width: 2.55rem;
	height: 2.55rem;
	object-fit: contain;
}

.chance_wrap-benefits .chance_wrap-benefits-item p {
	font-weight: 500;
	font-size: 1.02rem;
	line-height: 130%;
	letter-spacing: 0;
	color: var(--gray-60);
}

.chance_wrap-benefits .chance_wrap-benefits-item p {
	max-width: 19rem
}

.chance_wrap_inner .chance_wrap-form {
	padding: 5.02rem 3rem;


	border-radius: 0 2.19rem 2.19rem 0;
	background: url("/img/images-bg-gradient-form.webp") center no-repeat;
	background-size: auto;
	background-size: cover;
	width: 41.3rem;

}

.chance_wrap_inner .chance_wrap-form .chance_wrap-form-inner {
	background: var(--gray-10);
	/* border: solid 2px var(--orange); */
	border-radius: 2.2rem;
	/* width: 27.6rem; */
	/* box-shadow: -10px -10px 100px  rgba(0, 85, 255, 0.75); */
}


.chance_wrap_inner .title {
	font-size: 2.56rem;
	line-height: 100%;
	letter-spacing: -0.01em;
	margin-bottom: 2.188rem;
}

.chance_wrap_content {
	display: flex;
	gap: 1.25rem;
	align-items: center;
	margin-bottom: 2rem;
}

.chance_wrap_content img {
	flex-shrink: 0;
	width: 3.75rem;
	height: 3.75rem;
}

.chance_wrap_content p {
	color: var(--gray-60);
	font-weight: 600;
	font-size: 1.12rem;
	line-height: 130%;

}

.chance_wrap_content p b {
	font-weight: 600;
	color: var(--white);
}





.chance_yt_wrap {
	margin-top: 2.188rem;
	border-radius: 1.5rem;
	padding: 1.56rem 1.88rem 1.88rem 1.88rem;
	background: var(--black);
}

.chance_yt_wrap img {
	width: 1.875rem;
	position: relative;
	top: 0.5rem;
}

.chance_yt_wrap p {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--gray-60);
}

.chance_yt_wrap p b {
	font-weight: 500;
	color: var(--white);
}

.orange_circle {
	position: absolute;
	width: 34.375rem;
	left: -12rem;
	top: -10rem;
	z-index: -1;
}

.yellow_circle {
	position: absolute;
	z-index: -1;
	width: 40.625rem;
}

.y_circle_1 {
	left: 11rem;
	bottom: -14rem;
}

.y_circle_2 {
	top: -1rem;
	right: -15rem;
}

/* ////////////////////////////////////// */


.form_wrap #sp-form-249486 {
	box-sizing: border-box;
	width: 28.12rem;
	border: 0.14rem solid var(--orange);
	border-radius: 2.19rem;
	padding: 3.25rem 2.25rem 2rem;


	box-shadow: -10px -10px 100px rgba(0, 85, 255, 0.75);
	background: #121221;
}

.form_wrap .sp-form-fields-wrapper {
	width: 100% !important;
	margin: 0 !important;
}

.form_wrap .sp-form .sp-field {
	padding: 0.5rem;
	margin-bottom: 1.25rem;
}

.form_wrap .sp-field label {
	font-weight: 700 !important;
	font-size: 1rem !important;
	line-height: 120% !important;
	color: var(--white) !important;
	margin-bottom: 0.25rem !important;
}

.form_wrap .sp-form-control {
	border: 0.07rem solid var(--gray-40) !important;
	border-radius: 1.56rem !important;

	border-width: 0.063rem !important;
	font-size: 1rem !important;
	/* padding-left: 0.547rem !important;
    padding-right: 0.547rem !important; */
	height: 3.12rem !important;
}

.iti__selected-flag {
	padding: 0 0.375rem 0 0.5rem !important;
}

.iti--separate-dial-code .iti__selected-dial-code,
.iti__arrow {
	margin-left: 0.375rem !important;
}

/* .iti__flag.iti__ua{
	height: 0.875rem !important;
} */
.form_wrap .sp-button-container {
	margin-bottom: 0 !important;
	margin-top: 1.875rem !important;
}

.form_wrap .sp-button {
	border-radius: 2.5rem !important;
	padding: 0.7rem 1.56rem !important;
	font-weight: 700 !important;
	font-size: 1.15rem !important;
	line-height: 120%;

	height: 3.12rem !important;

	color: var(--gray-10) !important;
	background: linear-gradient(90deg, #ff884d 0%, #f50 100%) !important;
	height: auto !important;
}

.sp-form .sp-field input[type=checkbox] {
	margin: 0.25rem 0.125rem 0 0 !important;
	width: 0.7rem;
	height: 0.7rem;
}

.sp-message.sp-message-error,
.sp-message.sp-message-success {
	color: white !important;
}

/* //////////////////////////// */

.footer {
	padding-bottom: 2.1rem;
}

.footer .footer-row {
	justify-content: space-between;
	align-items: center;
}

.footer p,
.footer a {
	font-weight: 400;
	font-size: 0.94rem;
	line-height: 130%;
	color: var(--gray-60);

}

.footer a {
	text-decoration: underline;
}

.footer .item.policy {
	display: flex;
	gap: 1rem;
}

.footer .socseti {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;

}

.footer .socseti a {
	border-radius: 50%;
	border: solid 2px var(--gray-85);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.9rem;
	height: 2.9rem;
	opacity: 0.6;
	transition: 0.4s;
}

.footer .socseti a img {
	width: 1.8rem;

}

.footer .socseti a:hover {
	opacity: 1;
}


/*////////////////////////////////////////////////////////*/
.succes {
	padding: 2rem 0 3.75rem;
}

.succes_wrap {
	position: relative;
	z-index: 1;
	border-radius: 3.75rem;
	padding: 5rem 6.25rem 5.62rem;
	background: var(--gray-12);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.succes_title {
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 100%;
	letter-spacing: -0.01em;
	text-align: center;
	color: var(--white);
	margin-bottom: 2.188rem;
}

.succes_title span {
	background: linear-gradient(90deg, #ffe666 0%, #ff8f20 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.succes_text {
	display: flex;
	gap: 0.938rem;
	max-width: 37.5rem;
	box-sizing: border-box;

	border: 0.07rem solid var(--gray-24);
	border-radius: 1.25rem;
	padding: 1.25rem 1.25rem 1.56rem;
	background: linear-gradient(153deg, #000 0%, #00143d 100%);
	margin-bottom: 3.125rem;
}

.succes_text img {
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
}

.succes_text p {
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	color: var(--white);

}

.succes_text p span {
	font-weight: 600;
	background: linear-gradient(90deg, #ffe666 0%, #ff8f20 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sb_text {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	text-align: center;
	color: var(--gray-60);
	max-width: 34.62rem;
	margin-bottom: 1.25rem;
}

.sb_text span {
	background: linear-gradient(90deg, #ffe666 0%, #ff8f20 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sb_text b {
	font-weight: 400;
	color: var(--white);
}

.s_btn {
	border-radius: 3.12rem;
	padding: 0.94rem 2.19rem;
	box-shadow: 0 10px 30px 0 rgba(255, 103, 32, 0.5);
	background: linear-gradient(90deg, #ff884d 0%, #f50 100%);
	display: flex;
	align-items: center;
	gap: 0.938rem;

	font-weight: 600;
	font-size: 1.38rem;
	line-height: 122%;
	letter-spacing: -0.01em;
	color: var(--gray-10);
	transition: 0.3s;

}

.s_btn:hover {
	box-shadow: 0 5px 15px 0 rgba(255, 103, 32, 0.25);
	background: linear-gradient(90deg, #f73 0%, #e54d00 100%);
}

.succes_circle_1 {
	position: absolute;
	left: -7rem;
	top: -1rem;
}

.succes_circle_2 {
	position: absolute;
	left: 16.188rem;
	top: 15.688rem;
}

.succes_circle_3 {
	position: absolute;
	right: -8rem;
	top: 5.438rem;
}

.s_footer {
	position: relative;
	z-index: 1;
}

/*////////////////////////////////////////////////////////*/
@media (max-width: 851px) {

	html {
		font-size: 2.083vw;
	}

	:root {
		--section-padding: 1rem;
		/* --c-f-padding: 1.87rem; */
	}

	header {
		padding: 0.938rem 0;
		/* background: var(--gray-12); */
	}

	.header_wrap {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}


	.logo img {
		width: 9.938rem;
		transition: all 200ms ease-in-out;
	}

	.gap-40 {
		gap: 0.75rem;
		align-items: center;
	}

	.navbar-toggler-wrap {
		display: inline-flex;
		cursor: pointer;
		position: relative;
		/* top: 1.98rem;
		right: var(--section-padding); */
		transition: all 0.2s;
	}

	.navbar-toggler {
		width: 2.75rem;
		height: 2.75rem;
		background: url("/img/images-Icon-burger.svg") center no-repeat;
		transition: all 0.2s;
	}

	.navbar-toggler.deactive {
		background: url("/img/images-Icon-close.svg") center no-repeat;
	}


	.nav {
		width: -webkit-fill-available;
		display: block;
		position: absolute;
		top: 5rem;
		left: 0;
		border-radius: 0 0 2.5rem 2.5rem;
		background: var(--black);
		padding: 1.25rem 1rem 1.875rem;

		opacity: 0;
		transform: translateY(5rem);
		transition: all 0.3s ease-in-out;
	}

	.nav.active {
		opacity: 1;
		transform: translateY(0rem);
	}

	#header.active {
		background: var(--black);
	}

	.mob_wrap_nav {
		position: relative;
		transition: all 0.3s ease-in-out;

	}

	.mob_wrap_nav.visible-menu {
		opacity: 1;
		visibility: visible;
		display: block;
		transition: all 300ms ease-in-out;
	}


	.menu ul {
		list-style-type: none;
		padding: 0;
	}


	.mob_wrap_nav ul {
		flex-wrap: wrap;
	}

	.mob_wrap_nav ul li {
		width: calc(50% - 1.25rem);
	}

	.nav li a {
		box-sizing: border-box;
		font-weight: 600;
		font-size: 1.06rem;
		line-height: 130%;
		color: var(--gray-60);
		padding: 0.9rem 0;
		display: inline-flex;
	}

	.banner {
		padding-top: 2.8rem;
		padding-bottom: 2.375rem;
	}

	.banner-row {
		flex-direction: column;
		gap: 2.813rem;
	}

	.banner-row .banner_text_wrap {
		max-width: 100%;
	}

	.banner_title {
		position: relative;
		font-size: 2.06rem;
		line-height: 110%;
		letter-spacing: -0.01em;
		margin-bottom: 2.05rem;
	}

	.banner_title span {
		display: block;
	}

	.banner_title img {
		position: absolute;
		right: 0rem;
		top: -0.2rem;
	}

	.date_wrap {
		border-radius: 1.25rem;
		padding: 0.75rem 1rem;
		gap: 0.5rem;
		margin-bottom: 2.54rem;
		margin-right: 0;
		align-items: flex-start;
	}

	.calender-dynamic {
		width: 2.27rem;
	}

	.date_wrap .date_text {
		font-size: 1.42rem;
		font-weight: 600;
	}

	.date_text b {
		font-size: 0.75rem;
	}

	.banner_list {
		margin-bottom: 2.188rem;
	}

	.banner_list li {
		font-size: 1rem;
		line-height: 130%;
		gap: 0.75rem;
		margin-bottom: 1rem;
	}

	.banner_list li::before {
		width: 1.125rem;
		height: 1.25rem;
	}

	.btn {
		font-size: 0.93rem;
		line-height: 125%;
		letter-spacing: -0.01em;

		border-radius: 3.12rem;
		padding: 0.75rem 1.56rem;
		width: 20.08rem;
	}

	.btn::after {
		width: 1.25rem;
		height: 1.25rem;
		margin-left: 0.5rem;
	}

	.baner_img_wrap {
		display: flex;
		flex-direction: column-reverse;

	}

	.banner-img {
		position: relative;
		left: 0;
		top: 0;
		width: 100%;
	}

	.banner_shadow_1 {
		width: 33.75rem;

		bottom: 6.2rem;
		right: 2.4rem;
	}

	.banner_shadow_2 {
		width: 45.75rem;
		/*
		top: -8rem;
		right: -12rem;
		left: auto;*/
		bottom: 8.2rem;
		right: -6rem;
	}

	.mentor_block {
		gap: 1.5rem;
		align-items: flex-start;
		margin-top: 2.2rem;
	}

	.mentor_block_img {
		width: 6.25rem;
		height: 6.25rem;
	}

	.mentor_block_wrap h3 {
		font-size: 1.19rem;
		line-height: 125%;
		margin-bottom: 0.938rem;
	}

	.mentor_block_wrap p {
		font-size: 0.94rem;
		line-height: 130%;
	}

	/* /////////////////////////////////////// */


	.trader_way {
		padding: 2rem 0 3.75rem;
	}

	.trader_way_img {
		border-radius: 1.5rem;
		margin-bottom: 2.11rem;
	}

	.trader_way .online-forum.title {
		flex-direction: column;
		margin-bottom: 0;
	}

	.trader_way .online-forum.title .banner_btn {
		display: none;
		height: 0;
	}

	.title {
		font-size: 2rem;
		line-height: 105%;
		letter-spacing: -0.01em;
		margin-bottom: 1.875rem;
		width: 19rem;
	}

	.steps {
		flex-direction: column;
		gap: 0.625rem;
		margin-bottom: 1.875rem;
	}

	.step-item {
		width: 100%;
		border-radius: 1.25rem;
		padding: 0.94rem 1rem 1.25rem 0.75rem;
		gap: 1rem;
		align-items: flex-start;
	}

	.step-number {
		font-size: 2.12rem;
		line-height: 115%;
		letter-spacing: -0.02em;
	}

	.step-text {
		font-size: 1rem;
		line-height: 130%;
	}

	.step-text br {
		display: none;
	}

	.step-finish-wrap {
		display: flex;
		height: auto;
		flex-direction: column;
	}

	.step-finish-text {
		width: 100%;
		gap: 1rem;
		margin-bottom: 1.5rem;
		align-items: flex-start;
	}

	.step-finish-wrap .banner_btn {
		width: 100%;
	}

	.step-finish-text img {
		width: 3.12rem;
		height: 3.12rem;
	}

	.step-finish-text .text {
		font-size: 1.12rem;
		line-height: 130%;
	}

	/* //////////////////////////////// */
	.speakers {
		padding-top: 3.12rem;
		/*padding-bottom: 3.188rem;*/
		padding-bottom: 1.58rem;
		border-radius: 2.5rem;
		background: url("/img/images-bg-gradient-m.webp") center no-repeat;
		background-size: auto;
		background-size: cover;
		margin-bottom: 2.68em;
	}

	.spekear-img-wrap {
		position: relative;
		top: 0;
		border-radius: 18.25rem;
		width: 12.5rem;
		height: 12.5rem;
	}


	.speakers_list-row {
		margin-bottom: 1.875rem;
	}

	.item-spekear {
		flex-direction: column;
		gap: 1.875rem;
		align-items: center;
	}


	.item-spekear .name {
		font-size: 2rem;
		line-height: 105%;
		letter-spacing: -0.01em;
		margin: 0 auto 1.938rem;
	}

	.item-spekear .icon_stars {
		width: 2.25rem;
	}

	.speaker_description_wrap {
		gap: 0.625rem;
	}

	.speaker_description_item {
		border-radius: 1.5rem;
		padding: 0.94rem 1rem 1.25rem 1rem;
		font-size: 1rem;
		line-height: 130%;
	}


	.spekear_subject_wrap {
		flex-direction: column;
		border-radius: 1.5rem;
		padding: 1.25rem 1rem 1.5rem 1rem;
		gap: 0.938rem;
		align-items: flex-start;
	}

	.spekear_subject_wrap img,
	.spekear_subject_wrap .spekear_subject_img {
		width: 3.15rem;
	}

	.spekear_subject_wrap p b,
	.spekear_subject_wrap p {
		font-weight: 500;
		/*font-size: 1.12rem;*/
		font-size: 0.93rem;
		line-height: 130%;
	}


	.spekear_subjects-wrap {
		margin-top: 1.98rem;
		margin-bottom: 0;
	}

	.spekear_subjects-wrap .half-width:first-child {
		width: calc(40% - 0.5rem);
	}

	.spekear_subjects-wrap .half-width {
		width: calc(60% - 0.5rem);
	}

	.spekear_subjects-wrap .half-width .spekear_subject_wrap {
		flex-direction: column;
		gap: 0.1rem
	}

	.spekear_subjects-wrap .spekear_subject_wrap {
		flex-direction: row;
		padding: 1.02rem 0.8rem 1.25rem 0.8rem;
		gap: 0.9rem
	}

	.spekear_subjects-wrap .half-width p {
		max-width: 14rem;
	}


	/* //////////////////////   */
	.lets-start-row {}

	.lets-start .lets-start-wrap {
		flex-direction: column;
		gap: 2rem;
	}

	.lets-start-img {
		width: 2.70rem;
		height: 2.70rem;
	}

	.lets-start .lets-start-wrap .lets-start-text {
		font-size: 0.99rem;
	}

	.lets-start .lets-start-wrap .lets-start-text br {
		display: none
	}



	/* ///////////////////////////////// */
	.feedback {
		padding: 0;
		height: 0;
	}

	.feedback_item {
		width: calc(85% - 0.333333rem) !important;
		border-radius: 1.5rem 1.5rem 1.5rem 0;
		padding: 0;
	}

	.feedback_name {
		font-size: 0rem;
		line-height: 125%;
	}

	.feedback_date {
		font-size: 0rem;
	}

	.rating_wrap {
		margin-bottom: 0.9rem;
	}

	.rating_wrap img {
		width: 1.063rem;
	}

	.feedback_text {
		font-size: 1rem;
		line-height: 130%;
	}

	/* //////////////////////////////////////////////////// */

	.chance {
		padding: 3.75rem 0;
	}

	.chance_wrap {
		flex-direction: column;
		gap: 2.5rem;

		border-radius: 2.5rem;
		/*padding: 2.12rem 1rem;*/
		padding: 0;
	}

	.chance_wrap_inner {
		flex-direction: column;
		width: auto;
		max-width: 100%;

	}

	.chance_wrap_inner .chance_wrap-form .chance_wrap-form-inner,
	.chance_wrap_inner .chance_wrap-form {
		width: auto;
		max-width: 100%
	}


	.chance_wrap_inner .chance_wrap-form {
		border-radius: 0 0 2.19rem 2.19rem;
		background: url("/img/images-bg-gradient-form-m.webp") center no-repeat;
		background-size: cover;
		/* min-height: 28rem; */
	}




	.chance_wrap_inner .chance_wrap-text-book-wrap {
		padding: 2.59rem 1rem 2.61rem 1rem;
	}

	.chance_wrap_inner .chance_wrap-text {

		padding: 2.12rem 1rem 2.24rem;
	}

	.chance_wrap_inner .chance_wrap-text-book-wrap p {
		font-size: 0.89rem;
		margin-left: 6.6rem;
	}

	.chance_wrap-benefits .chance_wrap-benefits-item p {
		font-size: 0.89rem;
	}

	.chance_wrap_inner .chance_wrap-form {
		padding: 3.1rem 1rem;
	}

	.pdf-guide-prop {
		width: 12.5rem;
	}

	.chance_wrap_inner .title {
		font-size: 2rem;
		line-height: 105%;
		letter-spacing: -0.01em;
		/*margin-bottom: 1.875rem;*/
		margin-bottom: 0;

	}

	.chance_wrap_inner .title span {
		display: flex;
	}



	.chance_wrap_inner .title .icon_stars {
		width: 2.25rem;
		left: 18rem;
		top: -2.0rem;
	}

	.chance_wrap_inner .chance_wrap-text .pdf-guide-new {
		left: 1rem;
		width: 5rem;
		border-radius: 0.8rem;
	}

	.chance_wrap_content {
		gap: 1rem;
		margin-bottom: 1.563rem;
		align-items: flex-start;
	}

	.chance_wrap-benefits .chance_wrap-benefits-item {
		flex-direction: column;
		align-items: flex-start;
		padding: 1rem 1rem;
		gap: 0.6rem;
	}

	.chance_wrap-benefits .chance_wrap-benefits-item p {
		max-width: 17.2rem;
	}

	.chance_wrap-benefits .chance_wrap-benefits-item p br {
		display: none;
	}

	.chance_wrap_content img {
		width: 4.06rem;
	}

	.chance_wrap_content p {
		font-size: 0.96rem;
		line-height: 130%;
	}

	.chance_wrap_content p br {
		display: none;
	}

	.chance_yt_wrap {
		border-radius: 1.5rem;
		padding: 0.94rem 1rem 1.25rem 1rem;
	}

	.chance_yt_wrap p {
		font-size: 1.06rem;
		line-height: 130%;
	}

	.orange_circle {
		left: -13rem;
		top: -9rem;
	}

	.y_circle_1 {
		left: 3rem;
		bottom: -11rem;
	}





	/* ///////////////////////////////////////////////////////////// */



	.footer {
		padding-bottom: 1.875rem;
	}

	.footer .footer-row {
		flex-direction: column-reverse;
		gap: 1.563rem;
		align-items: center;
	}


	.footer .socseti a {
		width: 3.12rem;
		height: 3.12rem;
		gap: 0.75rem;
		opacity: 1;
	}

	.footer .socseti a img {
		width: 1.875rem;
	}

	.footer p,
	.footer a {
		font-size: 0.94rem;
	}

	.footer .item.policy {
		display: flex;
		order: 0;
	}

	.footer .item.copy-wrap {
		order: 1
	}

	.footer .item.socseti-wrap {
		order: 2
	}




}

@media (max-width: 480px) {

	html {
		font-size: 3.951vw;
	}

	.banner_list li br {
		display: none;
	}

	.banner_shadow_1 {
		width: 22.75rem;
	}

	.banner_shadow_2 {
		width: 32.75rem;
	}

	.step-finish-text .text br {
		display: none;
	}


	/* ////////////////////////////////// */

	.form_wrap #sp-form-249486 {
		padding: 2rem 1rem 1.75rem;
	}

	.form_wrap .sp-form .sp-field {
		padding: 0;
		margin-bottom: 1rem;
	}

	.form_wrap .sp-button {
		padding: 0.7rem 0.56rem !important;
		font-size: 1rem !important;
	}

	/* ////////////////////////////////// */
	.succes_wrap {
		border-radius: 2.5rem;
		padding: 3.75rem 1rem 4.38rem;
	}

	.succes_title {
		font-size: 2rem;
		line-height: 105%;
		letter-spacing: -0.01em;
		text-align: left;
	}

	.succes_text {
		border-radius: 1.25rem;
		padding: 0.94rem 1rem 1.25rem;
		flex-direction: column;
		margin-bottom: 2.5rem;
	}

	.succes_text p {
		font-size: 1.12rem;
		line-height: 130%;
	}

	.sb_text {
		font-size: 1rem;
		line-height: 130%;
	}

	.s_btn {
		border-radius: 3.12rem;
		padding: 0.75rem 1.56rem;
		font-size: 1rem;
		line-height: 130%;
	}

	.s_btn svg {
		width:1.25rem;
		height: 1.25rem;
	}

	.succes_circle_1{
		top: 0;
		width: 23.75rem;
		height: 23.75rem;
	}
	.succes_circle_2{
		width: 28.125rem;
		height: 28.125rem;
		top: 22.063rem;
		left: -2rem;
	}


}


.popup_content.form_wrap .sp-button:after,
.form_wrap .form_wrap button#sp-e475b3e4-320f-41f9-9950-18f22810e077.form-button:after { display: none; }

