@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&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');




:root {
	--section-padding: 5rem;
	--c-f-padding: 0rem;
	--second-family: "Montserrat", sans-serif;

	--green: #10e088;
	--green-dark: #0ec779;
	--very-dark-green: #00ad64;
	--blue: #383dc2;
	--dark-blue: #171c8f;
	--bg-page: #e5edff;
	--white: #fff;
	--30: #4d4d4d;
	--black: #000;
	--gray-20: #1f1f33;
	--blue-border: #99b8ff;
	--gray-60: #909099;
	--gold---dark: #ffd400;
	--gray-20---dark: #1e1a33;
	--gray-30---dark: #332e4d;
	--blue-light---dark: #8080ff;
	--red: #fb3640;
	--finpoint-bg-light-new-bg-light-blue: #e6f4ff;
	--finpoint-purple-hover-blue-hover: #50c;
	--finpoint-purple-blue-brand: #6a00ff;
	--finpoint-green-hover-orange-hover: #349900;
	--finpoint-green-orange-brand: #3cb200;
	--finpoint-black-brand: #000;
	--finpoint-gray-30: #454554;
	--finpoint-gray-20: #2e2e38;
	--finpoint-white: #fff;
	--finpoint-gray-30---100: rgba(69, 69, 84, 0.1);
	--finpoint-gray-85: #cfd6e2;
	--finpoint-gray-65: #94a0b8;
	--finpoint-gray-50: #6c7993;
	--finpoint-purple: #80348f;
	--finpoint-yellow: #ffd600;
	--finpoint-white-900: rgba(255, 255, 255, 0.9);
	--finpoint-red-error: #e50000;
}


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: "Open Sans", sans-serif;
	/* font-family: 'Inter', sans-serif; */
	margin: 0;
}

body {
	max-width: 100rem;

	font-weight: 400;
	color: #000;
	background: var(--finpoint-bg-light-new-bg-light-blue);
	overscroll-behavior: none;




	/* cursor: none;*/
}

a {
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
}

/*a:hover{
  cursor: none;
}*/
.body_wrap {
	position: relative;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.8);
	pointer-events: none;
	animation: particle-animation 2s forwards;
}

@keyframes particle-animation {
	0% {
		opacity: 1;
		transform: scale(1) translate(0, 0);
	}

	100% {
		opacity: 0;
		transform: scale(0) translate(50px, 50px);
	}
}

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


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

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

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

/* Handle */
::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #383DC2 0%, #4131A8 100%);
	border-radius: 0.625rem;
}

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


header {
	position: absolute;
	/* position: relative; */
	top: 0;
	width: 100%;
	transition: 0.4s;
	z-index: 2;
}

.header-show {
	position: fixed;
	top: 0;
	z-index: 999;
	backdrop-filter: blur(50px);
	background: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(50px);
	padding: 0.938rem 0;


	transition: 0.8s ease-out;
}

.header-show .header_wrap {
	padding: 0;
}

.header-show .top_header_banner {
	display: none;
}

.header-show .logo img {
	width: 7.17188rem;
}

.body_wrap {
	transition: 0.8s ease-out;
	padding-top: 7.9rem;
}

.addPadding {
	padding-top: 15.125rem;
	/* padding-top: 6.125rem; */
}


.top_header_banner {
	border-bottom: 0.07rem solid rgba(0, 0, 0, 0.1);
	padding: 0.56rem 0rem 0.75rem;
	background: linear-gradient(90deg, #00f 0%, #ff6720 90%);
	background-size: 150% 150%;
	animation: gradientAnimation 5s ease-in-out infinite;
	/* margin-bottom: 6.88rem; */
}



@keyframes gradientAnimation {
	0% {
		background-position: 20% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 20% 50%;
	}
}



.top_banner_wrap {
	display: flex;
	align-items: center;
	gap: 0.938rem;

	font-weight: 600;
	font-size: 0.94rem;
	line-height: 130%;
	color: var(--white);
}

.top_banner_btn {
	border-radius: 1.88rem;
	padding: 0.25rem 0.94rem;
	background: var(--white);

	font-weight: 600;
	font-size: 0.94rem;
	line-height: 130%;
	color: var(--finpoint-purple-blue-brand);
	transition: 0.3s;
}

.top_banner_btn:hover {
	transform: scale(0.95);
	background: var(--cartel-bg-light-blue);
}

.header_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.938rem;
	padding: 2.188rem 0;
}

.logo img {
	width: 9.063rem;
}

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

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

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

/*////////////////////////////*/
.menu {
	display: flex;
	align-items: center;
}

.menu li {
	display: flex;
	align-items: center;


	list-style: none;
	padding: 0.438rem 1rem;
	position: relative;
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
}

.menu a {
	color: var(--black);
}

.menu .current_page_item a {
	color: var(--finpoint-purple-blue-brand);
}


.menu li::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 0;
	height: 0.125rem;
	background: var(--finpoint-purple-blue-brand);
	transition: width .3s;
}

.menu li.current-menu-item::before,
.menu li:hover::before {
	width: 100%;
}


.menu-item-has-children::after {
	content: '';
	display: inline-block;
	margin-left: 0.625rem;
	width: 0.9rem;
	height: 0.5rem;
	background-image: url(../images/sub_menu_black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.sub-menu {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 50%;
	overflow: hidden;
	transform: translateX(-50%);
	top: 3rem;
	/* border: 0.1rem solid #00726f; */
	width: max-content;
	background: #FFF;
	border-radius: 1.25rem;
	padding: 0.62rem 0rem;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-align: center;
}

.nav .sub-menu li {
	padding: 0.44rem 1rem;
	transition: 0.2s;
	/* border-radius: 0.3rem; */
}

.nav .sub-menu a {
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--black);

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.nav .sub-menu li:hover {
	background: var(--finpoint-purple-blue-brand);
}

.nav .sub-menu li:hover a {
	color: var(--white);
}

@media (hover: hover) {
	.nav li:hover>.sub-menu {
		opacity: 1;
		visibility: visible;
	}

	.nav li:hover::after {
		transform: rotate(180deg);
	}

}

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


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


/* .languages {
	position: absolute;
	left: 6.25rem;
	top: 3.12rem;
	z-index: 2;
	border-top-left-radius: .375rem;
	border-top-right-radius: .375rem;
} */

.languages ul,
.wpml-ls-legacy-dropdown {
	width: 4rem;
}

.wpml-ls-legacy-dropdown a {
	background: transparent;
	/* border: none; */
	border: transparent;


	color: var(--black);
	
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	padding: 0.313rem 0.625rem;
	border-top-left-radius: .75rem;
	border-top-right-radius: .75rem;
}

.wpml-ls-link {
	border-top-left-radius: 0rem !important;
	border-top-right-radius: 0rem !important;
	/* border-bottom-left-radius: .375rem;
	border-bottom-right-radius: .375rem; */
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
	position: absolute;
	/* top: 0.7rem; */
	right: 0.5rem;
	border: none;
	background-image: url(../images/lang-new.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 0.9rem;
	height: 1.5rem;
	transition: 0.2s;

}

.wpml-ls-legacy-dropdown:hover a.wpml-ls-item-toggle:after {
	transform: rotate(180deg);
	top: calc(0% - .175em);
}

.e-lang:hover {
	
	background: #FFF;
	border-top-left-radius: .75rem;
	border-top-right-radius: .75rem;
}

.wpml-ls-current-language:hover>a {
	background: #FFF !important;
}

.e-lang:hover .wpml-ls-sub-menu {
	background: #FFF;
	border-bottom-left-radius: .75rem;
	border-bottom-right-radius: .75rem;
	overflow: hidden;
}

.wpml-ls-legacy-dropdown:hover a {
	color: #000;
}

.wpml-ls-link:hover {
	background: var(--finpoint-gray-30---100) !important;
}

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

/*////////////////////////////*/
.languages {
	position: relative;
	pointer-events: none;
	/* 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:last-child {
	opacity: 1;
	transform: translateY(2.4rem);
	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;
}

.languages:hover li {
	opacity: 1;
	transform: translateY(0rem);
	background: #fff;
}

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

.languages:hover a,
.languages:hover li.current a {
	color: #000 !important;
}

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

/* .languages li.current a {
	color: #fff !important;
} */

.languages a {
	color: var(--black);
	/* color: #fff !important; */
	margin: 0;
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	column-gap: 0.625rem;
	padding: 0.625rem 0rem;
}

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

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

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


/*////////////////////////////////*/
.mob-btn {
	position: relative;
	background: none;
	border: none;
	display: none;
}

.mob-btn span {
	display: block;
	width: 2rem;
	height: 0.225rem;
	background: var(--black);
	margin-bottom: 0.625rem;
}

.mob-btn span:last-child {
	margin-bottom: 0;
}

.mob-nav ul {
	flex-direction: column;
}

.mob-nav li {
	overflow: hidden;
}

/* ...................... */

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

.header_btn_wrap {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.header_btn_enter {

	border-radius: 1.25rem;
	padding: 0.44rem 0.94rem;
	background: var(--finpoint-purple-blue-brand);
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	text-align: center;
	color: var(--white);
	transition: 0.2s;
}

.header_btn_enter:hover {
	transform: scale(0.95);
	background: var(--finpoint-purple-hover-blue-hover);
}

.header_btn_reg {
	border-radius: 1.25rem;
	padding: 0.44rem 0.94rem;
	background: var(--finpoint-green-orange-brand);
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	text-align: center;
	color: var(--white);
	transition: 0.2s;
}

.header_btn_reg:hover {
	transform: scale(0.95);
	background: var(--finpoint-green-hover-orange-hover);
}

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

.mob-header-account,
.mob_menu_bottom {
	display: none;
}

.header-account {
	position: relative;
	margin-left: 8.938rem;
	margin-right: 1.25rem;
}

.header-account .dropdown-menu {
	opacity: 0;
	z-index: -1;
	position: absolute;
	left: 50%;
	top: 2.5rem;
	transform: translateX(-50%) scale(0);
	/* text-align: center; */
	min-width: 10rem;
	width: max-content;
	background: white;

	transition: 0.4s;
	border-radius: 1.25rem;
	padding: 0.31rem 0rem;
	overflow: hidden;
}

.header-account .dropdown:hover .dropdown-menu {
	display: flex;
	flex-direction: column;
	opacity: 1;
	z-index: 2;
	transform: translateX(-50%) scale(1);
}

.header-account .dropdown-menu li {
	list-style: none;
	padding: 0.4rem 1rem;
}


.header-account .dropdown-menu li a {
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--black);

}

.header-account .dropdown-menu li:hover {
	background: var(--finpoint-purple-hover-blue-hover);
}

.header-account .dropdown-menu li:hover a {
	color: var(--white);
}


.header_icon_profile {
	width: 1.125rem;
}

.header__btn--user {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	text-align: center;
	color: var(--white);
	background: var(--finpoint-purple-blue-brand);
	border: none !important;
	border-radius: 2.5rem;
	padding: 0.44rem 0.94rem;
	cursor: pointer;

	transition: 0.2s;
	width: max-content;
}


.header__btn--user:hover {
	/* transform: scale(0.95); */
	background: var(--finpoint-purple-hover-blue-hover);
}

.caret {
	display: inline-block;
	width: 0.9rem;
	height: .5rem;
	background-image: url(../images/caret-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header-account .dropdown:hover .caret {
	transform: rotate(180deg);
}

/*//////////////////////////////////////////////*/
.empty-cart .xoo_wsc_cart_wrap {
	background-color: transparent;
}

.empty-cart .xoo_wsc_cart_wrap:hover {
	background: var(--finpoint-gray-30---100);
}

.empty-cart .xoo-wsc-sc-count {
	display: none;
}

.empty-cart .xoo_wsc_cart_wrap::after {
	position: absolute;
	content: " ";
	width: 100%;
	height: 100%;
	background-image: url(../images/busket_black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 1.563rem;
	pointer-events: none;
}


.xoo_wsc_cart_wrap {
	position: relative;
	border-radius: 2.5rem;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--finpoint-purple-blue-brand);
	transition: 0.3s;
	margin-right: 0.313rem;
}

.xoo_wsc_cart_wrap:hover {
	/* transform: scale(0.9); */
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
}

.xoo_wsc_cart_wrap img {
	width: 1.5rem;
	height: auto;
}

.xoo-wsc-sc-count {
	position: absolute;
	right: -0.4rem;
	top: -0.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.94rem;
	height: 0.94rem;
	padding: 0.1rem;
	font-weight: 500;
	font-size: 0.88rem;
	background: var(--white);
	border-radius: 50%;
}

span.xoo-wsc-sc-total {
	display: none;
}

html[lang="ua"] .xoo-wsc-tools-label{
	position: relative;
    color: transparent;
}

html[lang="ua"] .xoo-wsc-tools-label::after{
	content: "Проміжний підсумок:";
	display: block;	
	display: block;
    color: black;
    position: relative;
    top: -23px;
}

.xoo-wsc-chkt,
.xoo-wsc-cart {
	font-size: 0.9rem;
	background-color:  var(--finpoint-purple-blue-brand) !important;
	border-radius: 2.5rem;
	padding: 1.25rem 1.75rem;
	font-weight: 600;
	/* font-size: 1.5rem; */
	line-height: 150%;
	text-transform: uppercase;
	text-align: center;
	color: var(--white);

}

.xoo-wsc-cont {
	font-size: 0.9rem;
	border-radius: 2.5rem;
	padding: 1.25rem 1.75rem;
	background-color: var(--gray-20) !important;
	font-weight: 600;
	/* font-size: 1.5rem; */
	line-height: 150%;
	text-transform: uppercase;
	text-align: center;
	color: var(--white);
}

/* //////////////////////////////////////////// */
.theme_mode,
.theme_mode_2 {
	background: none;
	border: none;
	cursor: pointer;
	transition: 0.3s;

	pointer-events: none;
	/* cursor: not-allowed; */
}

.theme_mode:hover,
.theme_mode_2:hover {
	cursor: not-allowed;
	transform: scale(0.9);
}

.switcher_icon {
	width: 1.5rem;
	cursor: not-allowed;
}

body.dark {
	background-color: #37373d;
}


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

.banner {
	position: relative;
	padding: 5.375rem 0 9.5rem;
}

.banner_wrap {
	max-width: 38.25rem;
}

.banner_title {
	position: relative;

	font-family: var(--second-family);
	font-weight: 700;
	font-size: 2.44rem;
	line-height: 110%;
	letter-spacing: -0.03em;
	color: var(--black);
	margin: 0 0 3.438rem;

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

.banner_title span {
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.banner_list ul {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.banner_list li {
	border-radius: 1.56rem;
	padding: 0.62rem 1.25rem 1.25rem 1.56rem;
	backdrop-filter: blur(50px);
	background: var(--finpoint-gray-30---100);

	list-style: none;
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;

	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);

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

.banner_list li b {
	font-weight: 700;
	color: var(--black);
}

.banner_list li img {
	width: 3.75rem;
	flex-shrink: 0;
}

.banner_list span {
	display: block;
	font-weight: 700;
	color: var(--dark-blue);
}

/* 
.banner_btn {
	position: relative;
}

.btn {
	position: relative;

	transition: all 0.5s ease-out;

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

.btn:hover {
	transform: scale(0.9);
} */

/* .btn span {
	display: flex;
	width: 3.75rem;
	height: 3.75rem;
	justify-content: center;
	align-items: center;
	border-radius: 1.875rem;
	background: #FFF;
	flex-shrink: 0;
} */

/* .btn img {
	width: 2.188rem;
} */

@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
	}
}

.arrow_btn {
	position: absolute;
	top: -2rem;
	left: 31rem;
	width: 7.563rem;

	animation: bounce 0.6s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
}

@keyframes bounce {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(0, 1rem, 0);
	}
}



.video_wrap {
	position: absolute;
	right: 3.688rem;
	top: 0rem;
	width: 39.375rem;
	height: 39.375rem;

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

.v-logo {
	width: 39.375rem;
	z-index: 0;
	animation: rotate 100s;
	/* animation-direction: alternate; */
	animation-direction: normal;
	animation-iteration-count: infinite;
}

.rotate {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

@keyframes rotate {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

.v-gradient {
	position: absolute;
	top: 4.938rem;
	right: 2.438rem;
	width: 43.75rem;
	z-index: 1;
	pointer-events: none;

}

.v-prev {
	position: absolute;
	width: 34.25rem;
	height: 34.25rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.v-prev iframe {
	position: relative;
	border-radius: 50%;
	z-index: 3;
}

.banner_video {
	width: 100%;
	border-radius: 50%;
}

.video_preview {
	width: 100%;
	border-radius: 50%;
}

.btn-youtube {
	position: absolute;
	width: 4.438rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	cursor: pointer;
	transition: 0.3s;
}

.btn-youtube:hover {
	transform: translate(-50%, -50%) scale(0.95);
}


/*////////////////////////////////////////////////////////*/
.score {
	padding-bottom: 7.5rem;
}

.score_wrap {
	display: flex;
	align-items: center;
}

.score_item {
	width: 33%;
	max-width: 21.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.score_num {
	font-weight: 500;
	font-size: 3.75rem;
	line-height: 105%;
	letter-spacing: -0.04em;
	color: var(--black);
}

.score_text {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 130%;
	letter-spacing: -0.01em;
	color: var(--finpoint-purple-blue-brand);
}

.score_separate {
	display: block;
	margin: 0 3.375rem;
	width: 0.12rem;
	height: 7.81rem;
	background: var(--finpoint-gray-30---100);
}


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

.about {
	padding: 0rem 0 8.75rem;
	position: relative;
	background-image: url(../fin_image/Bg-gradient-1.webp);
	background-size: cover;
	background-position: bottom;

}

.title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 2.88rem;
	line-height: 110%;
	letter-spacing: -0.03em;
	color: var(--black);
	margin-bottom: 3.75rem;
}

.title span {
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about_wrap {
	display: flex;
	gap: 0.938rem;
	flex-wrap: wrap;
}

.about_item {
	position: relative;
	border-radius: 1.88rem;
	padding: 1.88rem 1.88rem 16.563rem;
	backdrop-filter: blur(50px);
	background: var(--finpoint-white-900);
	overflow: hidden;
}

.about_item h4 {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 115%;
	letter-spacing: -0.01em;
	color: var(--black);
	margin-bottom: 0.625rem;
}

.about_item h4 span {
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about_item p {
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	margin-bottom: 0.625rem;
}

.about_item a,
.ab_link {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-purple-blue-brand);
	gap: 0.938rem;
	transition: 0.3s;
}

.about_item a img,
.ab_link img {
	width: 1.25rem;
}

.ab_link_img_wrap {
	position: relative;
	overflow: hidden;
	width: 1.25rem;
	height: 1.375rem;
}

.ab_link_img {
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.6s;
}

.ab_link_img_hover {
	position: absolute;
	top: 2rem;
	left: 0;
	transition: 0.6s;
}

.about_item a:hover,
.ab_link:hover {
	text-decoration-skip-ink: none;
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.about_item a:hover .ab_link_img,
.ab_link:hover .ab_link_img {
	top: -2rem;
	opacity: 0;
}

.about_item a:hover .ab_link_img_hover,
.ab_link:hover .ab_link_img_hover {
	top: 0rem;
	opacity: 1;
}

.about_item a::after,
.ab_link::after {
	content: " ";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 0.08rem;
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
	width: 0;
	transition: 0.2s;
}

.about_item a:hover::after,
.ab_link:hover::after {
	width: 85%;
}

.about_item>img {
	position: absolute;
}

.ab_item_1,
.ab_item_2 {
	width: calc(50% - 4.3rem);
}

.ab_item_3 {
	width: 46.75rem;
}

.ab_item_4 {
	width: 24rem;
}

.ab_item_6 {
	width: 100%;
}



.ab_item_3,
.ab_item_4 {
	padding: 1.88rem 1.88rem 14.5rem;
}

.ab_item_5,
.ab_item_6 {
	padding: 1.88rem 1.88rem 17.5rem;
}

.ab_item_1_img {
	width: 38.25rem;
	bottom: -2.5rem;
	left: 0;
}

.ab_label {
	width: 10.56rem;
	left: 0;
	bottom: 1rem;
}

.ab_mentors {
	width: 100%;
	right: 0;
	bottom: -2rem;
}

.ab_item_3 p {
	max-width: 21.88rem;
}

.ab_item_6 p {
	max-width: 20.88rem;
}

.ab_item_3_img {
	width: 31rem;
	right: 4.375rem;
	bottom: 2.188rem;
}

.ab_item_4_img {
	width: 17.5rem;
	bottom: 0rem;
	right: -3rem;
}

.ab_item_5_img {
	width: 18.75rem;
	right: 2.5rem;
	bottom: -4rem;
}

.ab_item_6_img {
	width: 52.25rem;
	right: 1rem;
	bottom: -6rem;
}



/*////////////////////////////////////////////////////////*/
.mentor {
	padding-bottom: 7.5rem;
}

.mentor_top_wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.btn_white {
	font-family: var(--second-family);
	background: var(--white);
	border-radius: 1.88rem;
	padding: 0.94rem 1.56rem 1rem 1.56rem;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--black);
	display: flex;
	align-items: center;
	gap: 0.625rem;
	transition: 0.2s;
}

.btn_white img {
	width: 1.25rem;
	transition: 0.2s;
}

.btn_white:hover {
	background: var(--finpoint-gray-85);
}

.btn_white:hover img {
	transform: rotate(45deg);
}

.mob_btn_white {
	display: none;
}

.mentor-swiper-wrap {
	position: relative;
	padding: 0 var(--section-padding);
}

/* .mentor-swiper-wrap .swiper-slide:first-child{
	padding-left: var(--section-padding);
}
.mentor-swiper-wrap .swiper-slide {
	width: 25.19rem !important;
} */
.swiper-mentor,
.slider_course {
	overflow: hidden;
}

.swiper-container {
	width: 100%;
	height: 100%;
}

/* .swiper-slide:first-child {
	padding-left: var(--section-padding);
} */

.swiper-slide {
	/* width: 25.19rem !important; */
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	cursor: move;
	/* fallback: no `url()` support or images disabled */
	cursor: -webkit-grab;
	/* Chrome 1-21, Safari 4+ */
	cursor: -moz-grab;
	/* Firefox 1.5-26 */
	cursor: grab;
	/* W3C standards syntax, should come least */
}

.swiper-scrollbar {
	cursor: move;
	/* fallback: no `url()` support or images disabled */
	cursor: -webkit-grab;
	/* Chrome 1-21, Safari 4+ */
	cursor: -moz-grab;
	/* Firefox 1.5-26 */
	cursor: grab;
	/* W3C standards syntax, should come least */
	position: relative !important;

	background: var(--cartel-gray-30---10) !important;
	/* left: var(--section-padding) !important; */
	height: 0.12rem !important;
	/* width: 88% !important; */
	/* width: 100% !important; */
	margin-top: 3.75rem;
}

.swiper-scrollbar-drag {
	/* width: 21.25rem !important; */
	/* height: 0.12rem !important; */
	background: var(--black) !important;
	position: relative;
}

.swiper-scrollbar-drag:before {
	content: '';
	background: var(--black);
	position: relative;
	left: -99vw;
	top: 0;
	position: absolute;
	bottom: 0;
	height: 100%;
	width: 100vw;
	z-index: 999;
}


.swiper-button-prev {
	background-image: url(../images/arrow-left.svg) !important;
	background-size: 1.063rem 1.625rem !important;
	width: 3.75rem !important;
	height: 3.75rem !important;
	border-radius: 1.88rem;
	background: var(--white);
	left: 0.938rem !important;
	margin-top: 0 !important;
	transform: translateY(-50%);
	transition: 0.2s;
}

.swiper-button-next {
	background-image: url(../images/arrow-right.svg) !important;
	background-size: 1.063rem 1.625rem !important;
	width: 3.75rem !important;
	height: 3.75rem !important;
	border-radius: 1.88rem;
	background: var(--white);
	right: 0.938rem !important;
	margin-top: 0 !important;
	transform: translateY(-50%);
	transition: 0.2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background-color: var(--finpoint-gray-85);
}

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

.mentor_item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mentor_img_wrap {
	border-radius: 50%;
	/* background-image: url(../images/mentors/Bg.webp); */
	background: linear-gradient(270deg, rgba(60, 178, 0, 0.3) 0%, rgba(106, 0, 255, 0.3) 100%);
	background-size: cover;
	overflow: hidden;
	margin-bottom: 1.563rem;
}

.mentor_img {
	position: relative;
	bottom: -0.4rem;
	width: 100%;
}

.mentor_cat_wrap {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	justify-content: center;
	margin-bottom: 0.625rem;
}

.mentor_cat_wrap li {
	list-style: none;
	border-radius: 1.88rem;
	padding: 0.25rem 0.75rem 0.44rem;
	background: var(--white);
	font-size: 0.94rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
}

.mentor_name {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	text-align: center;
	color: var(--black);
	margin-bottom: 0.625rem;
}

.mentor_text {
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	text-align: center;
	color: var(--finpoint-gray-30);
	margin-bottom: 1.563rem;
}

.mentor_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	gap: 0.625rem;
	border-radius: 1.88rem;
	padding: 0.94rem 1.56rem 1rem;
	background: var(--finpoint-purple-blue-brand);

	font-weight: 600;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--white);
	transition: 0.2s;
}

.mentor_btn img {
	transition: 0.2s;
	width: 1.25rem;
}

.mentor_btn:hover img {
	transform: rotate(45deg);
}

.mentor_btn:hover {
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
}

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


.contact_p_item b {
	font-weight: 700;
	color: var(--black);
}

.cooperate_block {
	padding: 3.75rem 0 5.625rem;
	background: url(../fin_image/Bg-gradient-3.webp);
	background-size: cover;
}

.cooperate_block_wrap {
	display: flex;
	align-items: center;
	gap: 3.75rem;
	border-radius: 2.5rem;
	padding: 1.88rem 3.75rem;
	backdrop-filter: blur(50px);
	background: var(--finpoint-white-900);
}

.thumb-up {
	width: 18.75rem;
}

.cooperate_block_wrap h4 {
	font-weight: 700;
	font-size: 2.44rem;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: var(--black);
	margin-bottom: 1.25rem;
}

.cooperate_block_wrap h4 span {
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cooperate_text {
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	margin-bottom: 2.813rem;
}

.cooperate_mob_text {
	display: none;
}

.cooperate_btn {
	display: inline-block;
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--white);

	border-radius: 1.88rem;
	padding: 0.94rem 4.063rem;
	background: var(--cartel-orange-brand);
	transition: 0.2s;
}

.cooperate_btn:hover {
	transform: scale(0.95);
	background: var(--cartel-orange-hover);
}


/* ////////////////////////////////////////////// */
.free_course {
	padding-bottom: 7.5rem;
}

.free_course_text {
	max-width: 24.375rem;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	margin-left: 5rem;
	margin-top: 0.3rem;
}



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

.courses_item {
	position: relative;
}

.courses_item,
.stm_lms_courses__single__inner {
	list-style: none;
	overflow: hidden;
	/* border: 0.063rem solid var(--blue-border); */
	border-radius: 1.88rem;
	backdrop-filter: blur(50px);
	background: var(--white);

}


.courses_item>a {
	display: block;
	width: 100%;
}

.courses_item img,
.stm_lms_courses__single--image img {
	width: 100%;
	height: 15.75rem;
	object-fit: cover;
}

.courses_item .meta,
.stm_lms_courses__single--inner {
	padding: 1.563rem 1.25rem 1.25rem !important;
}

.stm_lms_courses__single--term {
	width: max-content;
	font-weight: 400;
	font-size: 0.94rem !important;

	line-height: 130%;
	color: var(--finpoint-gray-30) !important;

	margin-bottom: 0.625rem !important;

	border-radius: 1.88rem;
	padding: 0.25rem 0.75rem 0.44rem 0.75rem;
	background: var(--finpoint-gray-30---100);
}


.courses_item .title,
.stm_lms_courses__single--title h5 {

	font-weight: 700 !important;
	font-size: 1.06rem !important;
	line-height: 130% !important;
	color: var(--black) !important;
	padding-bottom: 1.688rem !important;
	border-bottom: 0.12rem solid var(--cartel-gray-30---100) !important;
	margin-bottom: 0.625rem !important;
	min-height: 3rem;
	transition: 0.2s;
}

.courses_item .title:hover,
.stm_lms_courses__single--title h5:hover {
	color:  var(--finpoint-purple-blue-brand) !important;
}

.courses_item_bottom .stm_lms_courses__single--meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 3rem;
}

.courses_item_bottom .stm-lms-course-info__single {
	border-bottom: none !important;
}

.archive .stm_lms_courses__hours,
.courses_item_bottom .stm_lms_courses__hours,
.courses_item_bottom .stm_lms_courses__hours i,
.archive .stm_lms_courses__hours i {
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
}


.stm_lms_courses__single--price {
	display: flex;
	flex-direction: column;
}

.stm_lms_courses__single--price strong {

	font-weight: 500 !important;
	font-size: 1.25rem !important;
	line-height: 125%;
	letter-spacing: -0.01em;
	text-align: right;
	color: var(--finpoint-purple-blue-brand) !important;

}

.stm_lms_courses__single--price span+strong {
	font-size: 1.5rem !important;
	color: var(--finpoint-purple-blue-brand) !important;
}

.stm_lms_courses__single--price span {
	font-weight: 400;
	font-size: 1rem !important;
	line-height: 165% !important;
	text-decoration: line-through;
	text-align: right;
	color: var(--gray-60) !important;
}

.stm_lms_courses__single--meta .average-rating-stars__top {
	display: flex;
	align-items: center;
}

#reviews .star-rating {
	position: relative;
	margin: 2rem 0 0.7rem !important;
}

.star-rating-important {
	display: block;
	margin-bottom: 1rem;
	font-size: 1rem;
	color: red;
}


.star-rating {
	width: 5.95rem !important;
	height: 1.375rem !important;
	margin-top: 0px !important;
	background: url(../images/course_item/icon-star-empty.svg ) left top repeat-x !important;
	background-size: contain !important;
	overflow: hidden;

}

.stm_lms_courses__single--meta .average-rating-stars__av {
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 160%;
	text-align: right;
	color: var(--30);
	margin-left: 0.625rem;
}

.star-rating>span {
	background: url(../fin_image/icon-star-rating.svg) left top repeat-x !important;
	background-size: contain !important;
	height: inherit !important;
}

#stm-lms-reviews .star-rating,
.average_rating .star-rating {
	background: none !important;
}

#stm-lms-reviews .star-rating>span,
.average_rating .star-rating>span {
	background: url(../fin_image/icon-star-rating.svg) left top repeat-x !important;
	background-size: contain !important;
	height: inherit !important;
}

.courses_item_bottom .stm-lms-course-info__single strong {
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 160%;
	text-align: right;
	color: var(--30);
}

.stm_lms_courses__single--info_author__avatar {
	max-width: 5rem !important;
}

.stm_lms_courses__single--info_author__avatar .avatar {
	width: 100%;
	height: auto;
}

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


.hover_card_item {
	position: absolute;
	top: 0;
	left: 0;
	width: -webkit-fill-available;
	/* height: -webkit-fill-available; */
	min-height: -webkit-fill-available;
	height: auto;
	background: var(--white);
	border-radius: 1.88rem;
	padding: 1.25rem;
	transition: 0.3s;
	opacity: 0;
	z-index: 51;
}

.courses_item:hover .hover_card_item {
	opacity: 1;
}

.hover_card_item .teacher {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 0.938rem;
}

.hover_card_item .back_mentor {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: linear-gradient(270deg, rgba(60, 178, 0, 0.3) 0%, rgba(106, 0, 255, 0.3) 100%);
	/* background: url(../images/Bg_mentror_c.jpg); */
	background-size: cover;
}

.hover_card_item .teacher img {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
}

.hover_card_item .name_mentor {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--finpoint-purple-blue-brand);
}

.stm_lms_courses__single--info_title h4 {
	font-weight: 700;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--black);
	margin-bottom: 0.625rem;
}

.stm_lms_courses__single--info_excerpt {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	margin-bottom: 0.938rem;
}

.stm_lms_courses__single--info_meta {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	justify-content: space-between;

	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	margin-bottom: 3rem;
}

.stm_lms_courses__single--info_preview a {
	background: var(--finpoint-purple-blue-brand) !important;
	border-radius: 1.88rem;
	padding: 0.94rem 1.56rem !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;

	width: -webkit-fill-available !important;

	font-weight: 600 !important;
	font-size: 1.25rem !important;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--white);
	margin-bottom: 1.563rem;
	transition: 0.2s;
}

.stm_lms_courses__single--info_preview a:hover {
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%) !important;
}

.stm_lms_courses__single--info_preview a img {
	width: 1.25rem;
	height: auto;
	transition: 0.2s;
}

.stm_lms_courses__single--info_preview a:hover img {
	transform: rotate(45deg);
}

.stm_lms_courses__single--info_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.938rem;
	border-top: 0.12rem solid var(--cartel-gray-30---100);
}

.stm-lms-wishlist {
	margin: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.stm-lms-wishlist i {
	display: flex;
	justify-content: center;
	border-radius: 1.88rem !important;
	width: 2.75rem !important;
	height: 2.75rem !important;
	margin: 0 !important;
	background: var(--finpoint-gray-30---100);
	color: var(--black) !important;
	border: none !important;
	font-size: 1.5rem !important;
	line-height: 2.813rem !important;
	transition: 0.2s;
}

.stm-lms-wishlist:hover i {
	color: #0000FF !important;
	background: var(--finpoint-gray-30---100) !important;
}

.stm-lms-wishlist span {
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130% !important;
	color: var(--black) !important;
}



/* ////////////////////////////////////////////// */
.all_courses {
	padding-bottom: 7.5rem;
}

.all_courses .free_course_text {
	max-width: 27.813rem;
}


.course-swiper-wrap,
.courses_overflow_scroll {
	position: relative;
	padding: 0 var(--section-padding);
}


.tabs-title {
	display: flex;
	align-items: center;
	margin-bottom: 3.125rem;
}

.tabs-title .tab {
	padding: 0.62rem 1.25rem 0.88rem 1.25rem;
	list-style: none;
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--black);

	display: flex;
	align-items: center;
	gap: 0.625rem;
	cursor: pointer;
}

.tabs-title .tab.active {
	color: var(--finpoint-purple-blue-brand);
	border-bottom: 0.14rem solid  var(--finpoint-purple-blue-brand);
}

.tabs-title .tab.active path {
	fill:  var(--finpoint-purple-blue-brand);
}

.slider_tabs {
	overflow: hidden;
	display: none;
}

.slider_tabs.active {
	display: block;
}

/* ////////////////////////////////////////////// */
.review {
	padding-bottom: 8.875rem;
	background-image: url(../fin_image/Bg-gradient-2.webp);
	background-size: cover;
}

.review_top_wrap {
	display: flex;
	align-items: center;
	gap: 2.813rem;
	margin-bottom: 1.875rem;
}

.review_top_wrap .title {
	margin-bottom: 0;
}

.review_top_wrap img {
	width: 15rem;
}

.review_wrap {
	display: flex;
	gap: 0.938rem;
}

.review_col {
	width: 50%;
}

.review_item {
	width: -webkit-fill-available;
	border-radius: 1.88rem;
	padding: 1.56rem 1.875rem;
	backdrop-filter: blur(50px);
	background: var(--finpoint-white-900);
	margin-bottom: 0.938rem;
}

.r_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.r_time {
	font-weight: 400;
	font-size: 1rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
}

.r_rating {
	display: flex;
	align-items: center;
	margin-bottom: 0.938rem;
}


.r_rating img {
	width: 1.188rem;
}

.r_top h5 {
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 120%;
	letter-spacing: -0.01em;
	color: var(--black);
}

.r_text {
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--black);
	margin-bottom: 0.938rem;
}

.r_link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-purple-blue-brand);
	transition: 0.2s;
}

.r_link:hover {
	transform: scale(0.98);
}

.r_link img {
	width: 1.25rem;
}

.review_btn {
	width: max-content;
	margin: 2.5rem auto 0;
}

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


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

.form {
	padding-bottom: 8.75rem;
	position: relative;
}

.form-row {
	display: flex;
	gap: 1.563rem;
}

.form .title {
	margin-bottom: 2.438rem;
}

.form_text {
	max-width: 29.938rem;
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	margin-bottom: 1.875rem;
}

.form_text b {
	font-weight: 700;
	color: var(--black);
}

.form_book_wrap {
	position: absolute;
	right: 10.938rem;
	top: 2.938rem;
	width: 30.62rem;
}

.f_book {
	/* margin-top: 2.938rem; */
	width: 100%;
	position: relative;
	z-index: 2;
}

.form_book_wrap .v-logo {
	width: 45.5rem;
	right: 50%;
	top: 50%;
	transform: translate(50%, -50%);

	animation: rotate 80s;
	/* animation-direction: alternate; */
	animation-direction: normal;
	animation-iteration-count: infinite;
}

.form_book_wrap .v-gradient {
	top: 6.813rem;
	right: -3.562rem;
}

/* ////////////////////////////////////////////// */
.form_wrap {
	position: relative;
	z-index: 2;
	height: 30.44rem;
}


.form_wrap #sp-form-241382 {
	margin: 0;
	/* border: 0.313rem solid var(--blue); */
	width: 30.94rem;
	border-radius: 2.5rem;
	padding: 1.56rem 1.88rem 2.5rem 1.88rem;
	background: var(--finpoint-gray-30---100);
}

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

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

.form_wrap .sp-field label {

	font-weight: 700;
	font-size: 1.06rem !important;
	line-height: 153%;
	color: var(--black);

	margin-bottom: 0.25rem !important;
}

.form_wrap .sp-form-control {
	border-width: 0.063rem !important;
	font-size: 1.12rem !important;
	/* padding-left: 0.547rem !important;
    padding-right: 0.547rem !important; */
	border-radius: 1.56rem !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 {
	border-radius: 1.88rem !important;
	padding: 0.81rem 0.75rem 1.06rem !important;
	font-weight: 700 !important;
	font-size: 1.25rem !important;
	line-height: 150%;

	color: var(--white);
	background:  var(--finpoint-purple-blue-brand) !important;
	height: auto !important;

}

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


/* ////////////////////////////////////////////////// */
footer {
	padding: 1.88rem 0;
	background: var(--finpoint-gray-30---100);
}

.f_top_wrap {
	display: flex;
	gap: 5.313rem;
	padding-bottom: 4.125rem;
}

.f_col_left {
	min-width: 20.12rem;
}

.logo-footer img {
	width: 18rem;
	margin-bottom: 1.875rem;
}

.f_contacts {
	display: flex;
	align-items: center;
	gap: 0.938rem;
}

.f_mail {
	margin-bottom: 1.5rem;
}

.f_contacts a {
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--black);
	transition: 0.2s;
}

.f_contacts a:hover {
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: var(--finpoint-purple-blue-brand);
}

.f_contacts:hover path {
	transition: 0.2s;
	fill:  var(--finpoint-purple-blue-brand);
}

.f_col_center {
	max-width: 27.38rem;
}

.f_text {
	font-family: var(--second-family);
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--black);
	margin: 1.25rem 0 1.875rem;
}

.bnt_manager {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	border-radius: 1.88rem;
	padding: 0.94rem 1.56rem 1rem;
	background:  var(--finpoint-purple-blue-brand);

	font-family: var(--second-family);
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--white);
	transition: 0.2s;
	margin-bottom: 2.813rem;
}

.bnt_manager img {
	width: 1.25rem;
	transition: 0.3s;
}

.bnt_manager:hover {
	transform: scale(0.95);
}

.bnt_manager:hover img {
	transform: rotate(45deg);
}

.f_social p {
	font-family: var(--second-family);
	font-weight: 500;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--black);
	margin-bottom: 1.25rem;
}

.f_social ul {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.f_social li {
	list-style: none;
}

.f_social li a {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	width: 3.12rem;
	height: 3.12rem;
	background: var(--finpoint-gray-20);
	border-radius: 50%;
	-webkit-transition: background 1s ease-out;
	-moz-transition: background 1s ease-out;
	-o-transition: background 1s ease-out;
	transition: background 1s ease-out;
}

.f_social li img {
	width: 1.875rem;
}

.f_social li a:hover {
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
}

.f_col_right {
	max-width: 19.38rem;
}

.f_location_item {
	display: flex;
	gap: 0.938rem;
	align-items: flex-start;
}

.f_location_item:first-child {
	margin-bottom: 0.938rem;
}

.f_location_item img {
	width: 1.625rem;
}

.f_location_item h6 {
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--black);
	margin-bottom: 0.625rem;
}

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




.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;


}

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

.f_bottom_link {
	display: flex;
	align-content: center;
	gap: 1.875rem;
}

.footer-bottom a {
	font-weight: 400;
	font-size: 0.94rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	transition: 0.2s;
}

.footer-bottom a:hover {
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: var(--finpoint-purple-blue-brand);
}


/* //////////////////////////reviews-page/////////////////////////////////// */
.reviews_tab {
	padding: 3.75rem 0;
	background: url(../images/Bg-gradient-4.webp);
	background-size: contain;
	background-position: center 75%;
	background-repeat: no-repeat;
}


.reviews_tab .tab-content {
	display: none;
}

.reviews_tab .tab-content.active {
	display: block;
}

.reviews-tabs-wrap {
	position: relative;
}

.overflow_arrows {

	overflow: hidden;
}

.reviews-tabs-wrap .swiper-button-prev {
	left: -4.3rem !important;
}

.reviews-tabs-wrap .swiper-button-next {
	right: -4.3rem !important;
}

.reviews_webinar {
	padding: 3.75rem 0 7.5rem;
	background: url(../fin_image/Bg-gradient-4.webp);
	background-size: contain;
	background-position: center 50%;
	background-repeat: no-repeat;
}


/*//////////////////////////////reviews-page-end//////////////////////////*/

/* ////////////////////////Mentors-page////////////////////////////// */
.page-mentor {
	padding: 3.75rem 0;
}

.page-mentor-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 0.938rem;
}

.page-mentor .mentor_item {
	width: calc(33% - 0.45rem);
	margin-bottom: 3.75rem;
}

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

.decide {
	padding: 3.75rem 0 4.375rem;
	margin-bottom: 4.375rem;

	background-image: url(../images/mentors/Bg-gradient-3.webp);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.decide_wrap {
	border-radius: 2.5rem;
	backdrop-filter: blur(50px);
	background: var(--finpoint-white-900);
	padding: 1.875rem 3.75rem;


	display: flex;
	align-items: center;
	gap: 3.75rem;
}

.decide_img {
	width: 18.75rem;
}

.decide_title {
	font-weight: 700;
	font-size: 2.44rem;
	line-height: 110%;
	letter-spacing: -0.03em;
	color: var(--black);
	margin-bottom: 1.25rem;
}

.decide_title span {
	display: block;
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: fit-content;
}

.decide_text {
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	margin-bottom: 2.813rem;
}

/* ////////////////////////Mentors-page-END////////////////////////////// */

/* ////////////////////////About-page////////////////////////////// */
.about_club {
	padding: 3.75rem 0 4.375rem;
	background-image: url(../fin_image/Bg-gradient-1.webp);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom;
}

.about_club .title {
	margin-bottom: 1.25rem;
}

.about_club_text {
	max-width: 31.25rem;
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	margin-bottom: 3.125rem;
}

.about_club_text b {
	font-weight: 700;
	color: var(--black);
}

.about_club_wrap {
	display: flex;
	gap: 0.938rem;
}

.about_club_item {
	position: relative;
	width: calc(33% - 0.4rem);
	min-height: 31rem;
	backdrop-filter: blur(50px);
	background: var(--finpoint-white-900);
	border-radius: 1.88rem;
	padding: 1.88rem 1.875rem 0rem;
	overflow: hidden;
}

.about_club_item h4 {
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 115%;
	letter-spacing: -0.01em;
	color: var(--black);
	margin-bottom: 0.625rem;
}

.about_club_item p {
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	margin-bottom: 0.625rem;
}

.ab_club_img_1 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 27.12rem;
}

.ab_club_img_2 {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 17.5rem;
}

.ab_club_img_3 {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 11.94rem;
}

/* ////////////////////////////////////////// */
.presentation_club {
	padding: 4.375rem 0;
}

.presentation_video iframe {
	border-radius: 1.25rem;
	height: 43.56rem;
}

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

.about_social {
	padding: 1.25rem 0 8.75rem;
	background-image: url(../fin_image/Bg-gradient-6.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.about_social .title {
	max-width: 46.875rem;
}

.about_social_wrap {
	display: flex;
	gap: 0.938rem;
}

.about_social_item {
	width: 20%;
}

.about_social_link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;

	background: var(--finpoint-white-900);
	border-radius: 1.56rem;
	padding: 1.88rem 0.62rem;
	transition: 0.2s;
}


.social_link_img_wrap {
	width: 7.5rem;
	height: 7.5rem;
	margin-bottom: 1.563rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--finpoint-gray-20);
}

.about_social_link img {
	width: 4.5rem;
}

.about_social_link h5 {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	text-align: center;
	color: var(--finpoint-purple-blue-brand);
	margin-bottom: 0.625rem;
}

.about_social_link p {
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	text-align: center;
	color: var(--finpoint-gray-30);
}

.about_social_link:hover {
	transform: scale(1.02);
}

.about_social_link:hover .social_link_img_wrap {
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
}

.about_social_link:hover h5 {
	text-decoration: underline;
	text-decoration-skip-ink: none;
}

.image-forum {
	width: 100%;
	border-radius: 2.5rem 2.5rem 0 0;
	margin-bottom: -0.2rem;
}


/* ////////////////////////About-page-END////////////////////////////// */

/* ////////////////////////Contact-page////////////////////////////// */
.contact_page {
	padding: 3.75rem 0 8.75rem;
}

.contact_page_wrap {
	display: flex;
	gap: 0.938rem;
	flex-wrap: wrap;
}

.contact_p_item {
	width: calc(50% - 3.4rem);
	display: flex;
	align-items: center;
	gap: 1.25rem;
	border-radius: 1.56rem;
	padding: 0.94rem 1.25rem 1.25rem 1.56rem;

	backdrop-filter: blur(50px);
	background: var(--finpoint-gray-30---100)
}


.contact_p_item img {
	width: 3.75rem;
}

.contact_p_item a {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--finpoint-purple-blue-brand);
	transition: 0.2s;
}

.contact_p_item a:hover {
	text-decoration: underline !important;
}

.contact_p_item h5 {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--black);
	margin-bottom: 0.625rem;
}

.contact_p_item p {
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	max-width: 30.5rem;
}

/* ///////////////////////////////////////// */
.contact_form {
	padding-bottom: 8.75rem;
}

.contact_form_wrap {
	display: flex;
	gap: 5.625rem;
	align-items: center;
}

/* .contact_form_item {

} */

.contact_form_item h3 {
	font-weight: 700;
	font-size: 2.44rem;
	line-height: 110%;
	letter-spacing: -0.03em;
	color: var(--black);
	margin-bottom: 1.25rem;
}

.contact_form_item h3 span {
	background: linear-gradient(90deg, #6a00ff 0%, #3cb200 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.contact_form_item_text {
	font-weight: 400;
	font-size: 1rem;
	line-height: 130%;
	color: var(--finpoint-gray-30);
	margin-bottom: 2.5rem;
}

.red_star {
	color: var(--finpoint-red-error);
	
}

.c_form {
	max-width: 38.25rem;
	position: relative;
}

.c_form label {
	font-weight: 600;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-20);

}

.form_flex p {
	display: flex;
	align-items: center;
	gap: 0.938rem;
}

.form_flex p label {
	width: calc(50% - 0.938rem);
}

.c_form input,
.c_form textarea {
	width: -webkit-fill-available;
	background: var(--white);
	border-radius: 1.88rem;
	padding: 1.12rem 1rem 1.25rem 1rem;

	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-65);
	margin-top: 0.625rem;
	border: none;
	margin-bottom: 1.25rem;
}

.c_form input.wpcf7-not-valid,
.c_form textarea.wpcf7-not-valid {
	border: 0.07rem solid var(--finpoint-red-error);
}

.c_form input::placeholder,
.c_form textarea::placeholder {
	font-family: var(--second-family);
	font-weight: 400;
	font-size: 1.06rem;
	line-height: 130%;
	color: var(--finpoint-gray-65);
}

.c_form input.wpcf7-submit {
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 125%;
	letter-spacing: -0.01em;
	color: var(--white);
	background: var(--finpoint-green-orange-brand);
	transition: 0.2s;
	cursor: pointer;
	margin-bottom: 0;
}

.wpcf7-spinner {
	position: absolute;
	right: 0;
	bottom: 1rem;
}

.c_form input.wpcf7-submit:hover {
	background:  var(--finpoint-purple-blue-brand);
}

.c_form .wpcf7-response-output {
	margin: 1rem 0 0 !important;
}

.contact_form_item_img {
	position: relative;
	width: 33.62rem;

}

.contact_form_ivan {
	position: relative;
	width: 100%;
	border-radius: 1.88rem;
	z-index: 1;
}

.contact_form_circle {
	position: absolute;
	width: 43.75rem;
	bottom: -11rem;
	left: -10rem;
	z-index: 0;
	pointer-events: none;
}

.contact_social .title {
	max-width: none;
}




/* ///////////////////////Contact-page-END////////////////////////////// */


@media (max-width: 850px) {
	html {
		font-size: 2.083vw;
	}

	.body_wrap {
		padding-top: 5rem;
	}

	::-webkit-scrollbar,
	::-webkit-scrollbar-track,
	::-webkit-scrollbar-thumb {
		display: none;
	}



	:root {
		--section-padding: 1rem;
		--c-f-padding: 0rem;
	}

	.header_wrap {
		justify-content: space-between;
		padding: 0.938rem 0;
	}

	.header_mob_active {
		position: fixed;
		top: 0;
		left: 0;
		width: -webkit-fill-available;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0.938rem var(--section-padding);

		z-index: 99;
		/* backdrop-filter: blur(50px); */
		/* background: var(--finpoint-white-900); */
		background: var(--white);

	}


	/* /////////////////////////////////////////// */
	.mob-header-account {
		display: block;
		margin: 0;
		width: 100%;
	}

	.header_btn_enter,
	.header_btn_reg {
		width: 100%;
	}


	.desk-header-account {
		display: none;
	}

	.decs-nav {
		gap: 0.313rem;
	}

	.desc_switcher {
		display: none;
	}

	.mob_menu_bottom {
		display: flex;
		gap: 0.625rem;
		/* align-items: center; */
		justify-content: space-between;
	}

	/* .xoo_wsc_cart_wrap {
		order: 2;
		margin-right: 1rem;
	} */

	/* .languages {
		order: 1;
		left: auto;
		transform: none;
		right: 0.4rem;
	} */


	.mob-btn {
		order: 3;
		display: block;
		z-index: 1;
	}

	.nav {
		column-gap: 1.13rem;
	}



	/* .mob_back {
		content: " ";
		background: #171c8f;
		position: absolute;
		left: -1rem;
		top: -2rem;
		width: 110%;
		height: 7rem;
		z-index: -1;
		opacity: 0;
	} */

	.mob_wrap_nav {
		position: absolute;
		left: 0;
		padding: 0 0.938rem;
		top: 4.5rem;
		opacity: 0;
		height: 100vh;
		/* backdrop-filter: blur(50px); */
		/* background: var(--finpoint-white-900); */
		background: var(--white);
		width: -webkit-fill-available;
		/* height: 100%; */
		z-index: -5;
		transform: scaleY(0);
		/* border-bottom-left-radius: 3.125rem;
		border-bottom-right-radius: 3.125rem; */
	}

	.mob_wrap_nav ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding: 1rem 0;
		width: -webkit-fill-available;
		gap: 0;

	}

	.mob_wrap_nav>li {
		width: -webkit-fill-available;
		padding: 0.44rem 0rem;
	}

	.menu li {
		width: 100%;
		display: block;
	}


	.sub-menu {
		position: relative;
		left: 0;
		top: 0;
		height: 0;
		transform-origin: top;
		transform: translateY(-2rem);
		width: -webkit-fill-available;
		padding: 0 !important;
		opacity: 0;
		transition: .5s;
		visibility: hidden;
	}

	.menu-item-has-children.active::after {
		transform: rotate(180deg);
	}

	.sub-menu.active {
		margin-top: 1rem;
		height: max-content;
		transform: translateY(0) !important;
		opacity: 1;
		flex-direction: column;
		visibility: visible;
		background: var(--cartel-bg-light-blue);
	}

	.sub-menu li {
		width: max-content;
		transform: none;
		padding: 0.5rem 1rem !important;
	}

	.nav .sub-menu a {

		margin: 0;
	}

	.mob-nav>li {
		transform: translateY(5rem);
	}

	.menu-item-has-children::after {
		position: absolute;
		right: 2rem;
		top: 1.1rem;
	}

	.decs-nav a.link {
		margin-left: 0;
		padding: 1rem;
		display: block;
	}



	/* .btn_dLabel_main,
	.header__btn--user {
		width: -webkit-fill-available;
	} */

	.header__btn--user {
		width: 100% !important;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.open .dropdown-menu {
		position: relative;
		background: var(--finpoint-bg-light-new-bg-light-blue);
		min-width: 100%;
		margin-top: -2rem;
		opacity: 1 !important;
		border-radius: 1.25rem !important;
	}

	.dropdown-menu {
		opacity: 0 !important;

	}

	.header-account .dropdown-menu li {
		text-align: left;
	}

	.header-account .dropdown-menu li a {
		font-weight: 600;
		font-size: 1.06rem;
		line-height: 130%;
		color: var(--black);
	}

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






	.banner_wrap {
		max-width: max-content;
		display: flex;
		flex-direction: column;
	}

	.banner {
		padding: 1.875rem 0;
	}

	.banner_title {
		font-size: 1.44rem;
		margin-bottom: 1.875rem;
		order: 1;
	}

	.banner_list {
		order: 3;
		margin-top: 2.813rem;
	}

	.archive_top_wrap .banner_list {
		margin-top: 0;
	}

	.tax-stm_lms_course_taxonomy .stm-lms-wrapper .video_wrap {
		top: 0;
		right: 0;
	}




	.banner_list ul {
		gap: 0.75rem;
	}

	.banner_list li {
		border-radius: 1.56rem;
		padding: 0.62rem 0.62rem 1.25rem 0.62rem;
		font-size: 1rem;
		gap: 0.625rem;
	}

	.banner_list li img {
		width: 3.44rem;
	}

	.video_wrap {
		position: relative;
		right: 0;
		width: 100%;
		/* height: 32rem; */
		height: 23.25rem;
		order: 2;
	}

	.v-prev {
		width: 23.25rem;
		height: 23.25rem;
	}

	.v-logo {
		width: 27.25rem;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);


	}

	.v-gradient {
		width: 26.25rem;
		left: 40%;
		top: 60%;
		right: auto;
		transform: translate(-50%, -50%);
	}

	/* /////////////////////////////////////////////////// */
	.score {
		padding-bottom: 3.75rem;
	}

	.score_wrap {
		flex-wrap: wrap;
		gap: 1.25rem;
	}

	.score_item {
		width: calc(50% - 1.25rem);
		max-width: max-content;
	}

	.score_item:last-child {
		width: 100%;
		margin-bottom: 0.625rem;
		order: 1;
	}

	.score_item:first-child {
		order: 2;
	}

	.order_mob_3 {
		order: 3;
	}

	/* .score_item:nth-child(2){
		order: 2;
	}
*/

	.score_separate {
		display: none;
	}

	.score_num {
		font-size: 2.5rem;
	}

	.score_text {
		font-size: 1.06rem;
	}

	/* ////////////////////////////////////////////////////////// */
	.about {
		padding-bottom: 4.375rem;
	}


	.title {
		font-size: 1.62rem;
		margin-bottom: 1.875rem;
	}

	.about_item {
		width: 100%;
		padding: 1.25rem 1rem 10.375rem;
	}

	.about_item h4 {
		font-size: 1.25rem;
		line-height: 125%;
		letter-spacing: -0.01em;
	}

	.about_item p {
		font-size: 1rem;
	}

	.about_item a {
		font-size: 1rem;
	}

	.ab_item_1_img {
		width: 23.25rem;
		left: 50%;
		transform: translateX(-50%);
		bottom: -1.5rem;
	}

	.ab_label {
		width: 6.44rem;
	}

	.ab_mentors {
		width: 60%;
	}

	.ab_item_3 {
		padding-bottom: 15.063rem;
	}

	.ab_item_3 p {
		max-width: max-content;
	}

	.ab_item_3_img {
		right: 50%;
		transform: translateX(50%);
		width: 21.25rem;
		bottom: 1.938rem;
	}

	.ab_item_4 {
		padding-bottom: 12.813rem;
	}

	.ab_item_4_img {
		width: 13.75rem;
		bottom: -1.4rem;
		right: 50%;
		transform: translateX(50%) !important;
	}

	.ab_item_5 {
		padding-bottom: 12.5rem;
	}

	.ab_item_5_img {
		right: 50%;
		transform: translateX(50%);
		width: 13.75rem;
		bottom: -2.4rem;
	}

	.ab_item_6 {
		padding-bottom: 14rem;
	}

	.ab_item_6 p {
		max-width: max-content;
	}

	.ab_item_6_img {
		width: 23.25rem;
		bottom: -2.187rem;
	}

	/* //////////////////////////////////////// */
	.mentor {
		padding-bottom: 4.375rem;
	}

	.mentor_item,
	.slider_course_wrap,
	.course-swiper-wrap {
		padding: 0px 6.25rem;
		/* padding: 0 3.25rem; */
	}


	.btn_white {
		font-size: 1.06rem;
	}

	.mentor_cat_wrap li {
		font-size: 0.88rem;
	}

	.mentor_name {
		font-size: 1.25rem;
	}

	.mentor_text {
		font-size: 1rem;
	}

	.mentor_btn {
		font-size: 1.06rem;
	}

	.swiper-scrollbar {
		width: 94% !important;
	}

	/* ///////////////////////////////////////////// */
	.free_course,
	.all_courses {
		padding-bottom: 4.375rem;
	}




	.free_course .mentor_top_wrap,
	.all_courses .mentor_top_wrap {
		flex-direction: column;
	}

	.free_course .title,
	.all_courses .title {
		margin-bottom: 0.625rem;
	}

	.all_courses .free_course_text,
	.free_course_text {
		max-width: max-content;
		margin: 0 0 1.875rem;
	}

	.free_course .desc_btn_white,
	.all_courses .desc_btn_white {
		display: none;
	}

	.free_course .mob_btn_white,
	.all_courses .mob_btn_white {
		display: flex;
		justify-content: center;
		margin-top: 2rem;
	}

	/* ////////////////////////////////////////////// */
	.slider_course .hover_card_item,
	.c_slider_wrap .hover_card_item {
		display: none;
	}

	.courses_item img,
	.stm_lms_courses__single--image img {
		height: 11.69rem;
	}

	.courses_item .meta,
	.stm_lms_courses__single--inner {
		padding: 1rem !important;
	}

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

	.courses_overflow_scroll {
		overflow-x: scroll;
		padding: 0 0 0 1rem;
	}

	.tabs-title {
		width: max-content;
	}

	.tabs-title .tab {
		font-size: 0.94rem;
		line-height: 130%;
		padding: 0.5rem 0.75rem 0.75rem 0.75rem;
	}

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

	.review {
		padding-bottom: 4.375rem;
	}

	.review_top_wrap img {
		width: 11.25rem;
	}

	.review_item {
		border-radius: 1.56rem;
		padding: 1.25rem 1rem;
	}

	.r_top h5 {
		font-size: 1.06rem;
	}

	.r_text,
	.r_link {
		font-size: 1rem;
	}

	.review_btn {
		width: -webkit-fill-available;
		margin: 1.5rem auto 0;
		justify-content: center;
	}

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

	.cooperate_block_wrap {
		flex-direction: column;
		border-radius: 2.5rem;
		padding: 1.25rem 1rem 2.5rem;
		gap: 1rem;
	}

	.thumb-up {
		width: 13.75rem;
	}

	.cooperate_block_wrap h4 {
		font-size: 1.44rem;
		line-height: 120%;
	}

	.cooperate_block_wrap .mentor_btn {
		width: -webkit-fill-available;
	}


	/* ///////////////////////////// */
	.form {
		padding-bottom: 5.625rem;
	}

	.form .title {
		margin-bottom: 0.625rem;
	}

	.form .title br {
		display: none;
	}

	.form_text {
		max-width: max-content;
		font-size: 1rem;
	}

	.form_book_wrap {
		position: relative;
		width: 18.38rem;
		right: auto;
		top: 1rem;
		left: 50%;
		transform: translateX(-50%);
	}

	.form_book_wrap .v-logo {
		width: 27.25rem;
		transform: translate(-50%, -50%);
	}

	.form_book_wrap .v-gradient {
		top: 70%;
		right: auto;
		left: 40%;
	}


	.form_wrap {
		margin-top: 4.75rem;
		display: flex;
		justify-content: center;
		height: auto;
	}



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

	footer {
		padding: 2.188rem 0 1.875rem;
	}

	.f_top_wrap {
		flex-direction: column;
		gap: 2.188rem;
		padding-bottom: 2.188rem;
	}


	.logo-footer img {
		width: 13.5rem;
	}

	.f_col_left,
	.f_col_center,
	.f_col_right {
		max-width: max-content;
		min-width: auto;
	}

	.f_social {
		padding: 2.188rem 0;
		border-top: 0.14rem solid var(--cartel-gray-30---100);
		border-bottom: 0.14rem solid var(--cartel-gray-30---100);
	}

	.bnt_manager {
		width: -webkit-fill-available;
		font-size: 1.06rem;
		margin: 1rem 0 2.188rem;
		justify-content: center;
	}

	.f_text {
		margin: 0 0 0.75rem;
	}

	.f_text br {
		display: none;
	}

	.footer-bottom {
		flex-wrap: wrap;
		gap: 1.25rem;
		justify-content: center;
		flex-direction: column;
	}

	.footer-bottom .logo {
		order: 1;
	}

	.copy {
		order: 2;
	}

	.f_bottom_link {
		order: 3;
	}


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

	.reviews_tab,
	.reviews_webinar {
		padding: 1.875rem 0 4.375rem;
	}

	.reviews_webinar {
		padding: 0rem 0 4.375rem;
	}

	.reviews_tab .mentor_top_wrap,
	.reviews_webinar .mentor_top_wrap {
		margin-bottom: 1.25rem;
	}

	/* //////////////////////////////////////////////////// */
	.page-mentor {
		padding: 1.875rem 0 0;
	}

	.page-mentor .mentor_item {
		width: 100%;
	}

	.decide {
		padding: 1.875rem 0;
		margin-bottom: 1.875rem;
	}

	.decide_wrap {
		padding: 2.5rem 1rem;
		gap: 1rem;
	}

	.decide_img {
		width: 15.62rem;
	}

	.decide_title {
		font-size: 1.44rem;
		margin-bottom: 0.938rem;
	}

	.decide_text {
		margin-bottom: 1.875rem;
	}

	/* ////////////////////////About-page////////////////////////////// */
	.about_club {
		padding: 1.875rem 0 4.375rem;
		background-position: center;
	}

	.about_club_text {
		font-size: 1rem;
		margin-bottom: 2.5rem;
	}

	.about_club_wrap {
		flex-direction: column;
	}

	.about_club_item {
		display: flex;
		flex-direction: column;
		width: -webkit-fill-available;
		border-radius: 1.88rem;
		padding: 1.25rem 1rem 0;
		min-height: auto;
	}

	.about_club_item h4 {
		font-size: 1.25rem;
	}

	.about_club_item p {
		font-size: 1rem;
	}

	.ab_club_img_1 {
		position: relative;
		margin-top: 1rem;
		width: 21.25rem;
		left: 50%;
		transform: translateX(-50%);
	}

	.ab_club_img_2 {
		position: relative;
		margin-top: 1rem;
		width: 15.62rem;
	}

	.ab_club_img_3 {
		position: relative;
		margin-top: 1rem;
		width: 11.94rem;
	}

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

	.presentation_club {
		padding: 0 0 2.5rem;
	}



	/* //////////////////////////////////// */
	.about_social {
		padding: 1.25rem 0 4.375rem;
		background-position: center;
	}

	.about_social_wrap {
		flex-wrap: wrap;
	}

	.about_social_item {
		width: calc(50% - 0.5rem);
	}

	.about_social_item a {
		border-radius: 1.56rem;
		padding: 1.56rem 0.94rem;
	}

	.social_link_img_wrap {
		width: 6.88rem;
		height: 6.88rem;
		margin-bottom: 1.25rem;
	}

	.social_link_img_wrap img {
		width: 4.125rem;
	}

	.about_social_link h5 {
		font-size: 1.06rem;
	}

	.about_social_link p {
		font-size: 1rem;
	}

	.image-forum {
		border-radius: 0.69rem 0.69rem 0 0;
	}

	/* ////////////////////////About-page-END////////////////////////////// */

	/* ////////////////////////contact-page////////////////////////////// */
	.contact_page {
		padding: 1.875rem 0 4.375rem;
	}

	.contact_page_wrap {
		flex-direction: column;
		gap: 0.938rem;
	}

	.contact_p_item {
		width: -webkit-fill-available;
		gap: 0.638rem;
		border-radius: 1.25rem;
		padding: 0.94rem 0.62rem 1.25rem;
	}

	.contact_p_item img {
		width: 3.12rem;
	}

	.contact_p_item a,
	.contact_p_item h5 {
		font-size: 1.06rem;
	}

	.contact_p_item p {
		font-size: 1rem;
	}

	.contact_form {
		padding-bottom: 4.375rem;
	}

	.contact_form_wrap {
		flex-direction: column;
		gap: 3.75rem;
	}

	.contact_form_item h3 {
		font-size: 1.44rem;
		margin-bottom: 0.938rem;
	}

	.contact_form_item_text {
		margin-bottom: 1.875rem;
	}

	.c_form {
		max-width: 100%;
	}

	.contact_form_item_img,
	.contact_form_item {
		width: 100%;
	}

	.contact_form_circle {
		width: 25.25rem;
		bottom: -5rem;
		left: -6rem;
	}

	/* ////////////////////////contact-page-END////////////////////////////// */


}



@media (max-width: 480px) {

	html {
		font-size: 3.951vw;
	}

	/* .body_wrap {
		padding-top: 12.125rem;
	} */

	.top_header_banner {
		padding: 0.75rem 0 1.12rem;
	}

	.top_banner_wrap {
		flex-direction: column;
		gap: 0.75rem;
		font-size: 0.87rem;
	}

	.top_banner_btn {
		width: -webkit-fill-available;
		text-align: center;
	}

	.about .title span {
		display: block;
	}


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

	/* /////////////////////////////////////////////////// */
	.mentor_top_wrap {
		flex-direction: column;
	}

	.mentor_item,
	.slider_course_wrap,
	.course-swiper-wrap {
		padding: 0 3.25rem;
	}

	.swiper-button-next,
	.swiper-button-prev {
		background-color: transparent !important;
	}

	.swiper-button-next {
		right: 0 !important;
	}

	.swiper-button-prev {
		left: 0 !important;

	}

	/* .swiper-slide {
		width: 18.19rem !important;
	} */

	.desc_btn_white {
		display: none;
	}

	.mob_btn_white {
		display: flex;
		justify-content: center;
		margin-top: 2rem;
	}

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

	.cooperate_block_wrap h4 span {
		display: block;
	}



	/* ///////////////////////////////////////////////// */
	.review_top_wrap {
		flex-direction: column-reverse;
		gap: 0.625rem;
	}

	.review .title br {
		display: none;
	}

	.review_col {
		width: 100%;
	}

	.review_col:last-child {
		display: none;
	}

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

	.form_wrap #sp-form-241382 {
		width: 100%;
	}

	.footer-bottom {
		justify-content: flex-start;
	}

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

	.reviews_tab .mentor_top_wrap,
	.reviews_webinar .mentor_top_wrap {
		margin-bottom: 0;
	}

	.reviews_webinar {
		background: url(../fin_image/Bg-gradient-4-m.webp);
		background-size: contain;
		background-position: center 22%;
		background-repeat: no-repeat;
	}

	.reviews_tab {
		background: url(../images/Bg-gradient-4-m.webp);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}

	.reviews_page .reviews-tabs-wrap .swiper-button-next,
	.reviews_page_webinar .reviews-tabs-wrap .swiper-button-next {
		right: -3.5rem !important;
	}

	.reviews_page .reviews-tabs-wrap .swiper-button-prev,
	.reviews_page_webinar .reviews-tabs-wrap .swiper-button-prev {
		left: -3.5rem !important;
	}

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

	.page-mentor .mentor_item {
		padding: 0;
	}

	.decide {
		background-image: url(../images/mentors/Bg-gradient-3-m.webp);
		background-position: right;
	}

	.decide_wrap {
		flex-direction: column;
		padding: 0rem 1rem 2.5rem;
	}

	.decide_wrap .mentor_btn {
		width: -webkit-fill-available;
		font-size: 1.25rem;
	}

	/* ///////////////////////////////////////// */
	.about_club {
		background-image: url(../images/about/Bg-gradient-5-m.webp);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}

	.presentation_video iframe {
		height: 13.06rem;
	}

	.about_social {
		background-image: url(../fin_image/Bg-gradient-6-m.webp);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
	}

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

	.contact_page .title {
		font-size: 1.4rem;
	}


	.contact_page .title br,
	.form_flex br {
		display: none;
	}

	.form_flex p {
		flex-direction: column;
		gap: 0;
	}

	.form_flex p label {
		width: -webkit-fill-available;
	}



	.contact_social .title span {
		display: block;
	}

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







}