/* ==================== [ Root CSS Start ] ==================== */

/* @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
	/* Project Core */
	--white: #ffffff;
	--whitegray: #B2B2B2;
	--white-10: rgba(255, 255, 255, 0.1);
	--white-20: rgba(255, 255, 255, 0.2);
	--black: #000000;
	--gray: #9E9E9E;
	--lightgray: #F5F5F7;
	--lightpink: #F2F0FE;
	--commontextcolor: #5D5D5D;
	--purple: #7454f8;

	/* --font-primary: "Outfit", sans-serif; */
	--font-primary: "Manrope", sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	color: var(--black);
	font-family: var(--font-primary);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	background: var(--white);
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
	margin: 0;
}

strong,
b {
	font-weight: 700 !important;
}

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	color: var(--black);
	word-break: break-word;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

a:hover {
	color: var(--primary);
}

p {
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin-bottom: 20px;
}

ol,
ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
	margin-top: 10px;
	margin-bottom: 10px;
}

ol li,
ul li {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

ol li::marker,
ul li::marker {
	color: var(--black);
}

ul li:has(> ul),
ul li:has(> ol) {
	list-style-type: none;
}

blockquote {
	padding: 0px 0px 0px 20px;
	margin-bottom: 20px;
	background-color: transparent;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	position: relative;
	font-weight: 700;
}

blockquote::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: black;
}

pre {
	background-color: transparent;
	border: 1px solid var(--black);
	padding: 16px;
	overflow: auto;
	font-family: inherit;
	border-radius: 10px;
	position: relative;
	color: var(--black);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

pre code {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	line-height: inherit;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 16px;
	font-size: inherit;
}

th,
td {
	border: 1px solid var(--black);
	padding: 8px 12px;
	text-align: left;
}

th {
	background-color: transparent;
	font-weight: 500;
	font-size: inherit;
	color: var(--primary);
}

td {
	background-color: transparent;
	font-weight: inherit;
	font-size: inherit;
	color: var(--white);
}

h1 span,
.h1 span,
h2 span,
.h2 span,
h3 span,
.h3 span,
h4 span,
.h4 span,
h5 span,
.h5 span,
h6 span,
.h6 span {
	display: inline-block;
	background: linear-gradient(90deg, #FFFFFF -50%, #7454F8 130%);
	font-family: var(--font-primary);
	font-weight: 500 !important;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 0 !important;
}

h1,
.h1 {
	color: var(--white);
	font-family: var(--font-primary);
	font-size: 64px;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 20px;
}

h2,
.h2 {
	color: var(--white);
	font-family: var(--font-primary);
	font-size: 62px;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 20px;
}

h3,
.h3 {
	color: var(--white);
	font-family: var(--font-primary);
	font-size: 50px;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 20px;
}

h4,
.h4 {
	color: var(--white);
	font-family: var(--font-primary);
	font-size: 40px;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 20px;
}

h5,
.h5 {
	color: var(--white);
	font-family: var(--font-primary);
	font-size: 30px;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 20px;
}

h6,
.h6 {
	color: var(--white);
	font-family: var(--font-primary);
	font-size: 20px;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 20px;
}

hr {
	margin-block: 20px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

textarea {
	resize: none;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.sub-title {
	font-weight: 500;
	font-size: 19px;
	line-height: 110%;
	color: var(--gray);
}

.sub-title * {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
}

.row {
	margin-inline: -12px;
	row-gap: 24px;
}

.row>* {
	padding-inline: 12px;
}

.img-cover * {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.common-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	text-align: center;
	font-family: var(--font-primary);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 165%;
	border-radius: 10px;
	border: 1px solid transparent;
	text-decoration: none;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	transition: all 0.6s ease-in-out;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
}


.btn-primary {
	color: var(--black);
	background: var(--white);
	border-color: var(--white);
}

.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-within,
.btn-primary:focus-visible {
	color: var(--white);
	background: none;
	box-shadow: none;
	outline: 0;
}

.btn-secondary {
	color: var(--white);
	background: none;
	border-color: var(--white);
}

.btn-secondary:focus,
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus-within,
.btn-secondary:focus-visible {
	color: var(--black);
	background: var(--white);
	box-shadow: none;
	outline: 0;
}

.btn-secondary-black {
	color: var(--black);
	background: none;
	border-color: var(--black);
}

.btn-secondary-black:focus,
.btn-secondary-black:hover,
.btn-secondary-black:active,
.btn-secondary-black:focus-within,
.btn-secondary-black:focus-visible {
	color: var(--white);
	background: var(--black);
	box-shadow: none;
	outline: 0;
}

.btn-violant {
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
}

.btn-violant:focus,
.btn-violant:hover,
.btn-violant:active,
.btn-violant:focus-within,
.btn-violant:focus-visible {
  color: var(--white);
  background: none;
  box-shadow: none;
  outline: 0;
  border-color: var(--white);
}
/* ==================== [ Button End ] ==================== */

/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
	padding: 80px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100dvh;
}

.error-404 .heading {
	text-align: center;
}

.error-404 .action * {
	width: fit-content;
	margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.container-fluid,
.container {
	padding-inline: 20px;
	margin: 0 auto;
}

.swiper-linear .swiper-wrapper {
	transition-timing-function: linear !important;
}

/* ==================== [ Extra Common End ] ==================== */


/* ==================== [ Header Start ] ==================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(90deg, #000 0%, #000 50%, #292b29 100%);
  z-index: 99999;
}

.navbar {
  padding: 14px 0;
}

.navbar-nav {
  margin: 0;
}

.navbar-nav .nav-item .nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
}

.navbar-nav .nav-item {
  padding: 0 44px 0 0;
}

.navbar-nav .nav-item:last-child {
  padding-right: 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  z-index: 9999999;
}

.navbar-collapse {
  margin: 0 0 0 90px;
  justify-content: space-between;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--purple);
}

.right-header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-inner {
  display: flex;
  align-items: center;
  gap: 44px;
}

.right-header .header-text-link {
  color: var(--white);
  font-size: 16px;
}
.right-header .header-text-link:hover {
  color: var(--purple);
}

.header-shwdow-1 {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.header-shwdow-2 {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.header-shwdow-3 {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
}

.header-shwdow-main {
  /* display: none !important; */
  position: absolute;
  bottom: -170px;
  right: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  z-index: -999;
}

/* ==================== [ Header End ] ==================== */

/* ==================== [ banner section Start ] ==================== */
.banner-section-block {
	background: var(--black);
	overflow: hidden;
}

.banner-section {
	position: relative;
}

.banner-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: calc(100% - 61%);
}

.banner-image>figure,
.banner-image>figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-image::after {
	position: absolute;
	content: "";
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	top: 0;
	left: 0;
	bottom: 0;
	width: calc(100% - 30%);
}

.banner-left {
	position: relative;
	z-index: 999;
	width: 100%;
	max-width: 750px;
	padding: 120px 0 60px 0;
}

.banner-left::before {
	position: absolute;
	content: "";
	background: #2F2F2F;
	width: 10000px;
	height: 1px;
	left: 0;
	bottom: 0;
}

.banner-video-icon {
	width: 470px;
	margin-bottom: 48px;
}

.banner-video-icon video{
	width: 100%;
}

.banner-left .common-detail {
	width: 100%;
	max-width: 665px;
	margin: 35px 0 0;
}

.banner-left .common-detail * {
	font-size: 22px;
	line-height: 136%;
	font-weight: 400;
	color: var(--white);
}

.banner-btn-group {
	display: flex;
	margin: 50px 0 0;
	gap: 18px;
}

.banner-common-list {
	margin: 55px 0 0;
}

.banner-common-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 33px;
}

.banner-common-list ul li {
	position: relative;
	font-size: 16px;
	line-height: 130%;
	font-weight: 400;
	color: var(--white);
	padding-left: 30px;
}

.banner-common-list ul li::after {
	position: absolute;
	content: "";
	background-image: url('../images/check.svg');
	background-repeat: no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
	left: 0;
	top: 0;
}

.banner-absolute-image {
	width: 460px;
	position: absolute;
	top: 50%;
	left: -160px;
	transform: translateY(-40%);
	-webkit-transform: translateY(-40%);
	-moz-transform: translateY(-40%);
	-ms-transform: translateY(-40%);
	-o-transform: translateY(-40%);
	background-color: rgba(255, 255, 255, 0.30);
	backdrop-filter: blur(15px);
	border-radius: 10px;
	border: 1px solid transparent;
	z-index: 9;
	padding: 12px;
}

.banner-bottom-part {
	padding: 50px 0 70px;
}

.banner-wrp-image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 58px;
	height: 58px;
	margin: 0 auto;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	background: #1D1D1D;
}

.banner-wrp-image>figure,
.banner-wrp-image>figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-wrp-icon>figure,
.banner-wrp-icon>figure img {
	width: auto;
	height: auto;
	object-fit: contain;
}

.banner-wrp-icon>figure {
	display: flex;
}

.banner-wrp-image img {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.banner-wrp-icon img {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}

.banner-wrp-detail-block {
	text-align: center;
	margin: 30px 0 0;
}

.banner-wrp-detail-title * {
	margin: 0;
	font-weight: 500;
	font-size: 39px;
	line-height: 100%;
	text-align: center;
	color: var(--white);
}

.banner-wrp {
	width: 100%;
	max-width: 220px;
	text-align: center;
}

.banner-wrp-detail-info {
	margin: 6px 0 0;
}

.banner-wrp-detail-info * {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
	color: var(--whitegray);
}

/* ==================== [ banner section End ] ==================== */

/* ==================== [ plateform section Start ] ==================== */
.plateform-section {
	padding: 100px 0 145px;
}

.plateform-left {
	width: 100%;
	max-width: 650px;
}

.platform-top-part {
	margin: 18px 0 0;
}

.section-black-title * {
	color: var(--black);
}

.platform-right {
	width: 100%;
	max-width: 593px;
	margin-left: auto;
}

.platform-right .common-detail * {
	font-size: 22px;
	line-height: 150%;
	font-weight: 500;
	color: var(--black);
}

.platform-btn-block {
	margin: 35px 0 0;
}

.platform-btn-block a {
	border-color: var(--black);
	color: var(--black);
}

.plateform-bottom-block {
	margin: 100px 0 0;
}

.plateform-bottom-block .row {
	margin: 0 -10px;
	row-gap: 20px;
}

.plateform-bottom-block .row>* {
	padding: 0 10px;
}

.plateform-item {
	display: block;
	height: 100%;
	background: var(--lightgray);
	padding: 40px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.plateform-item:hover {
	background: var(--lightpink);
}

.plateform-item-icon {
	width: 79px;
	height: 79px;
	background: linear-gradient(150.56deg, #7454F8 18.04%, #D9D1FB 92.72%);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.plateform-item-icon figure {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.plateform-item-icon figure img {
	max-height: 100%;
	max-width: 40px;
}

.plateform-item-detail {
	margin: 155px 0 0;
}

.plateform-title * {
	margin: 0;
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	color: var(--black);
}

.plateform-item-detail .common-detail {
	margin: 16px 0 0;
}

.plateform-item-detail .common-detail * {
	color: var(--commontextcolor);
	margin: 0;
}

.plateform-item-detail .common-detail>*:not(:last-child) {
	margin-bottom: 20px;
}

/* ==================== [ plateform section End ] ==================== */

/* ==================== [ location section Start ] ==================== */
.location-section {
	background: var(--black);
	padding: 130px 0 0;
}

.location-top-part {
	margin: 18px 0 0;
}

.location-right {
	width: 100%;
	max-width: 593px;
	margin-left: auto;
}

.location-right .common-detail * {
	margin: 0;
	font-weight: 500;
	font-size: 22px;
	line-height: 150%;
	color: var(--white);
}

.location-right .common-detail>*:not(:last-child) {
	margin-bottom: 20px;
}

.common-btn-block {
	margin: 35px 0 0;
}

.location-bottom-block {
	margin: 100px 0 0;
	display: flex;
	gap: 26px;
}

.location-bottom-image {
	width: 100%;
	max-width: 658px;
	height: 100%;
}

.location-bottom-image figure,
.location-bottom-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.location-bottom-image img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.location-bottom-right {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	max-width: 795px;
	background: #272727;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

/* ==================== [ location section End ] ==================== */

/* ==================== [ private section Start ] ==================== */
.private-group-section {
	position: relative;
	background-image: url('../images/bg-background.png');
	background-repeat: no-repeat;
	background-size: cover;
	padding: 122px 0 142px;
}

.private-group-section::after {
	position: absolute;
	content: "";
	background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.private-group-top-part {
	margin: 17px 0 0;
}

.private-group-left {
	width: 100%;
	max-width: 497px;
}

.private-group-content {
	position: relative;
	z-index: 99;
}

.private-group-right {
	width: 100%;
	max-width: 593px;
	margin-left: auto;
}

.private-group-right .common-detail * {
	margin: 0;
	font-weight: 500;
	font-size: 22px;
	line-height: 150%;
	color: var(--white);
}

.private-group-right .common-detail>*:not(:last-child) {
	margin-bottom: 20px;
}

.private-group-bottom-block {
	margin: 88px 0 0;
}

.private-group-item {
	position: relative;
	padding: 40px 40px 35px;
	display: block;
	height: 100%;
	border-radius: 10px;
	background: linear-gradient(148.54deg, #000000 0%, #252525 100%);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.private-group-item::after {
	position: absolute;
	content: "";
	background: linear-gradient(137.21deg, rgba(255, 255, 255, 0) 41.67%, rgba(255, 255, 255, 0.45) 98.57%), linear-gradient(138.24deg, rgba(255, 255, 255, 0.18) 1.03%, #000000 49.59%);
	top: -1px;
	right: -1px;
	left: -1px;
	bottom: -1px;
	z-index: -1;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.private-group-icon {
	width: 79px;
	height: 79px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(150.56deg, #7454F8 18.04%, #D9D1FB 92.72%);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.private-group-icon figure {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.private-group-icon figure img {
	max-height: 100%;
	max-width: 41px;
}

.private-group-item-detail {
	margin: 45px 0 0;
}

.private-group-item-title * {
	margin: 0;
	font-weight: 500;
	font-size: 24px;
	line-height: 130%;
	color: var(--white);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.private-group-item-detail .common-detail {
	margin: 16px 0 0;
}

.private-group-item-detail .common-detail * {
	margin: 0;
	color: #737373;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.private-group-item-detail .common-detail>*:not(:last-child) {
	margin-bottom: 20px;
}

.members-group-block {
	margin: 35px 0 0;
	display: flex;
	align-items: center;
	gap: 11px;
}

.members-group-block ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

.members-group-block ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 3px solid #000;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	background: var(--white);
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	color: var(--black);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.members-group-block ul li figure,
.members-group-block ul li figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.members-group-block ul li figure img {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.members-group-block ul li:not(:first-child) {
	margin-left: -10px;
}

.members-group-block .members-numer {
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	color: var(--commontextcolor);
}

.location-show-members-block {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 9px 11px;
	background-color: #2C2C2C;
	gap: 10px;
	margin: 20px 0 0;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	transition: all0.3s;
	-webkit-transition: all0.3s;
	-moz-transition: all0.3s;
	-ms-transition: all0.3s;
	-o-transition: all0.3s;
}

.circle-location-block {
	background-color: #00C341;
	min-width: 8px;
	width: 8px;
	max-width: 8px;
	height: 8px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.location-show-members {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--white);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.private-group-item:hover {
	background: var(--white);
}

.private-group-item:hover .private-group-item-title * {
	color: var(--black);
}

.private-group-item:hover .private-group-item-detail .common-detail * {
	color: var(--black);
}

.private-group-item:hover .members-group-block ul li {
	border-color: #F0F0F0;
	background: var(--black);
	color: var(--white);
}

.private-group-item:hover .location-show-members-block {
	background-color: #E4E4E4;
}

.private-group-item:hover .location-show-members {
	color: var(--black);
}

/* ==================== [ private section End ] ==================== */

/* ==================== [ steps section Start ] ==================== */
.steps-section {
	padding: 125px 0 70px;
}

.steps-left .section-black-title {
	margin: 20px 0 0;
}

.steps-right .common-detail * {
	margin: 0;
	font-weight: 500;
	font-size: 22px;
	line-height: 140%;
	color: var(--black);
}

.steps-right .common-detail>*:not(:last-child) {
	margin-bottom: 20px;
}

.steps-bottom-block {
	margin: 75px 0 0;
}

.steps-wrp {
	padding: 60px;
	height: 100%;
	display: block;
	border-radius: 10px;
	background-color: #F5F5F7;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.steps-wrp-number * {
	margin: 0;
	font-weight: 500;
	font-size: 68px;
	line-height: 100%;
	color: var(--black);
}

.steps-wrp-detail-block {
	margin: 170px 0 0;
}

.steps-wrp-detail-title * {
	font-weight: 500;
	font-size: 24px;
	color: var(--black);
}

.steps-wrp-detail-block .common-detail {
	width: 100%;
	max-width: 597px;
	margin: 16px 0 0;
}

.steps-wrp-detail-block .common-detail * {
	margin: 0;
	color: var(--commontextcolor);
}

.steps-wrp-detail-block .common-detail>*:not(:last-child) {
	margin-bottom: 20px;
}

.steps-bottom-block .row {
	margin: 0 -15px;
	row-gap: 30px;
}

.steps-bottom-block .row>* {
	padding: 0 15px;
}

.steps-wrp-image-block {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}

.steps-wrp-image {
	width: 100%;
	height: 100%;
}

.steps-wrp-image figure,
.steps-wrp-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.steps-wrp-image img {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.steps-wrp-chat-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 90px;
	position: absolute;
	left: 0;
	bottom: 0;
}

.steps-wrp-chat-block>* {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 17px 20px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0px 4px 74px rgba(0, 0, 0, 0.25);
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
}

.steps-wrp-chat-block .bg-grdient-chat{
	color: var(--white);
	background: linear-gradient(270deg, #A089FF 0%, #7454F8 100%);
}

.steps-wrp-chat-block .simple-bg-chat{
	background: var(--white);
	color: var(--black);
}
/* ==================== [ steps section End ] ==================== */

/* ==================== [ testimonial section Start ] ==================== */
.testimonial-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 140px 0;
}
.testimonial-left {
  height: 100%;
  width: 100%;
  max-width: 515px;
  margin-left: auto;
  margin-right: 48px;
}
.testimonial-title-block .sub-title {
  margin-bottom: 24px;
}
.testimonial-right {
	padding-left: 48px;
}
.testimonial-title-block {
	margin-bottom: 92px;
}

.testimonial-right .swiper {
	/* overflow: visible; */
	cursor: grab;
}

.slide-main {
  position: relative;
  padding: 138px 54px 43px;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.custom-controls {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.swiper-pagination {
  position: relative;
  width: fit-content !important;
  display: flex;
  align-items: center;
  gap: 8px;
  top: unset !important;
  bottom: unset !important;
}

.swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #e6e6e6;
  opacity: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.swiper-pagination-bullet-active {
  width: 60px;
  height: 11px;
  background: #e6e6e6;
  opacity: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #000;
}

/* active progress animation */
.swiper-pagination-bullet-active::after {
  animation: progress 3s linear forwards;
}

@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* pause button */
.pause-btn {
  margin-left: 10px;
  border: none;
  background: #e6e6e6;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.slide-title {
  color: var(--white);
  font-size: 31px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 22px;
}

.slide-desc {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 23px;
}

.slide-author {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.slide-position {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 0;
}

.slide-backImg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.slide-backImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  content: "";
  inset: 0;
  background: #000;
  opacity: 0.4;
  z-index: -1;
  width: 100%;
  height: 100%;
}
/* ==================== [ testimonial section End ] ==================== */

/* ==================== [ pricing section Start ] ==================== */
.pricing-section {
  position: relative;
  background-color: var(--black);
  padding: 113px 0 180px 0;
}
.pricing-title-box {
  text-align: center;
  margin-bottom: 72px;
}
.pricing-title-box .sub-title {
  margin-bottom: 12px;
}
.pricing-desc {
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
}
.pricing-group-title {
  margin-bottom: 24px;
}

/* Wrapper */
.pricing-wrapper {
  text-align: center;
}
/* Toggle */
.pricing-toggle {
  margin: 0 auto 118px auto;
  width: fit-content;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
  background-color: #222222;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.toggle-btn {
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  color: #aaa;
}
.toggle-btn small {
  color: #00c341;
}
.toggle-btn.active {
  background: #333;
  color: #fff;
}
/* Cards */
.pricing-cards {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.pricing-card {
  flex: 1;
  position: relative;
  padding: 34px 30px 67px 30px;
  border-radius: 10px;
  border: 1px solid #444444;
  background-color: #232323;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.pricing-card.active{
	background: linear-gradient(180.00deg, #282141 0%, #232323 100%);
}

.badge {
  position: absolute;
  top: -36px;
  left: 0;
  right: 0px;
  background: var(--purple);
  padding: 10px 10px 14px 10px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  font-size: 18px;
  font-weight: 400;
}

.pricing-card .pricing-card-title {
  color: var(--white);
  font-size: 23px;
  font-weight: 500;
}
.pricing-card ul {
  margin: 0;
  padding-left: 0;
}
.pricing-card ul li {
  list-style-type: none;
  text-align: start;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 16px;
}
.pricing-card ul li img {
  width: 24px;
  height: 24px;
}
.pricing-card ul li:last-child {
  margin-bottom: 0px;
}

.pricing-upper-box {
  margin-bottom: 34px;
  min-height: 190px;
  text-align: left;
}

.pricing-bottom-title {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 0;
}
.pricing-card .price {
  color: var(--white);
  font-size: 63px;
  font-weight: 500;
  margin-bottom: 16px;
}
.pricing-card sup {
  top: -1.5em;
  color: #6b6b6b;
  font-size: 23px;
  font-weight: 500;
}
.pricing-card sub {
  color: #6b6b6b;
  font-size: 23px;
  font-weight: 500;
}
.pricing-bottom-desc {
  color: #6b6b6b;
  font-size: 18px;
  margin-bottom: 0;
}
.pricing-card-bigtitle {
  color: #ffffff;
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 17px;
}
.pricing-card .common-btn {
  margin-bottom: 30px;
  width: 100%;
}

.pricing-bottom {
  padding-left: 0;
  margin: 44px 0 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 33px;
}
.pricing-bottom li img {
  width: 24px;
  height: 24px;
}
.pricing-bottom li {
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}
/* ==================== [ pricing section End ] ==================== */

/* ==================== [ meet section start ] ==================== */
.meet-section {
  position: relative;
  padding: 175px 0;
}
.meet-main {
  width: 100%;
  max-width: 736px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
.meet-main h2 {
  padding: 0 20px;
  margin-top: 24px;
}
.meet-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 0;
}
.meet-backImg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.meet-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.35);
}

.meet-img-1 {
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  height: 106px;
  width: 106px;
  top: -20px;
  left: -126px;
}
.meet-img-2 {
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  height: 77px;
  width: 77px;
  top: 83px;
  right: -97px;
}
.meet-img-3 {
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  height: 69px;
  width: 69px;
  bottom: -80px;
  left: 20px;
}

.meet-img-1 *,
.meet-img-2 *,
.meet-img-3 * {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
/* ==================== [ meet section end ] ==================== */

/* ==================== [ Footer Start ] ==================== */
.footer {
  position: relative;
  padding: 48px 0;
  background-color: #131313;
}

.footer-brand {
  width: 100%;
  max-width: 116px;
  margin-right: 230px;
}

.footer-top {
  display: flex;
  align-items: center;
  margin-bottom: 72px;
}

.footer-top ul {
  padding-left: 0;
  margin: 0 0 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 100px;
}
.footer-top ul li {
  list-style-type: none;
}

.footer-top .footer-link {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}

.footer-top .footer-link:hover {
  color: var(--purple);
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}

.footer-desc {
  width: 100%;
  max-width: 320px;
  font-size: 14px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer-desc p {
  margin-bottom: 0;
}

.footer-bootom-center {
  height: 100%;
  width: 100%;
  color: #737373;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer-bootom-center p {
  margin-bottom: 0;
}

/* ==================== [ Footer End ] ==================== */