html {
	scroll-behavior: smooth;
 }

 *,
body {
    font-family: "Aeonik";
    font-style: normal;
    font-weight: 400;
}

body {
    position: relative;
    background: #FFF;
	
}

/* Wrapper */

.wrapper{
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Container */

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

@media screen  and (max-width:480px){
	.container {
		padding: 0 10px;
	}
}


/* protect */

.protect {
	width: 100%;
	position: absolute;
	top: 2px;
	left: 0;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.protect__item {
	font-size: 8px;
	line-height: 10px;
	color: var(--Black, #fff);
	opacity: 0.8;
}

.protect__item a {
	color: inherit;
	text-decoration: none;
}


.box-bg{
	background-image: url('../images/bl1_bg1-min.jpg');

	background-repeat: no-repeat;
	position: relative;
	background-size: cover;
	background-position: center;
	margin-bottom: 120px;
}

@media screen and (max-width:480px) {
	.box-bg{
		margin-bottom: 52px;
	}
}
 
/* .fade-left{
	display: block;
	width: 100%;
	min-height: 100%;
	position: absolute;
	opacity: 1;
	left: -5%;
	z-index: 999;
	background-color: rgba(0, 0, 0, 1);
	 -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1.0) 20%, rgba(0, 0, 0, 0) 0%);
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0) 20%);
}

.fade-right{
	display: block;
	width: 100%;
	min-height: 100%;
	position: absolute;
	opacity: 1;
	right: -5%;
	z-index: 999;
	background-color: rgba(0, 0, 0, 1);
	 -webkit-mask-image: linear-gradient(-90deg, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0) 20%);
	mask-image: linear-gradient(-90deg, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0) 20%);
} */

.swiper-slide {
	opacity: 0.5; /* Непрозорість для неактивних слайдів */
	transition: opacity 0.5s; /* Плавний перехід для змінювання непрозорості */
}

.swiper-slide-active {
	opacity: 1; /* Повна непрозорість для активного слайду */
}
.swiper-slide-prev,
.swiper-slide-next {
    opacity: 1; /* Зменшена непрозорість для наступних та попередніх слайдів */
}

@media screen and (max-width:991px) {
	.swiper-slide-next {
		opacity: 0.5;
	}
}

@media screen and (max-width:600px) {
	.swiper-slide-prev{
		opacity: 1;
	}

	.swiper-slide-active {
		opacity: 1;
	}
}


/* @media screen and (max-width:480px) {
	.box-bg{
		background-size: 55% auto, cover;
	}
} */



/* header */
.header{
	padding:  50px 0px;
}

@media screen and (max-width:480px) {
	.header{
		padding:  30px 0px;
	}
	
}

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

.header__logo{
	display: flex;
	align-items: center;
	gap: 12px;
}

.header__logo span{
	color: #FFF;
	font-family: Aeonik;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.72px;
}

.header__box-buttons{
	display: flex;
	align-items: center;
	gap: 40px;
}

.header__btn{
	width: auto;
	height: 64px;
	border-radius: 32px;
	background: #FFF;
	box-shadow: 0px 5px 65px 0px rgba(255, 255, 255, 0.55);
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 13px;
	padding:0 8px 0 40px;
}

@media screen and (max-width:400px) {
	.header__btn{
		width: 100%;
		display: flex;
	}

	.header__box-buttons{
		width: 100%;
	}
}

.header__btn span{
	color: #16A180;
	font-family: Aeonik;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.6px;
}

.header__btn-icon{
	width: 48px;
	height: 48px;
	background-color: #16A180;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header__lang.mobile{
	display: none;
}

@media screen and (max-width:768px) {
	.header__lang.mobile{
		display: block;
	}

	.header__lang.pc{
		display: none;
	}
	
	.header__content{
		flex-direction: column;
		gap: 23px;
	}
}

/* lang */


.lang-wrap {
	/*margin-left: auto;*/
	width: 125px;
	flex-shrink: 0;
	height: 40px;
	position: relative;
	color: #FFF;
	font-size: 1rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.25rem; /* 142.857% */
	text-transform: capitalize;
	z-index: 9999;
	border-radius: 10px;
	/*background: #053329;*/
	transition: all 300ms ease;

}

.lang-wrap.ar {
	width: 139px;
}


@media screen and (max-width:1199px) {
	.lang-wrap{
		transition: all 300ms ease;
	}
	.lang-wrap.active {
		/* height: 146px; */
		transition: all 300ms ease;
	}
}

@media screen and (max-width:768px) {
	.lang-wrap.active {
		/* margin: 0 0px 33px; */
		transition: all 300ms ease;
	}
}





.lang-wrap a {
	display: flex;
	flex-direction: row;
	gap: 5px;
	align-items: center;
	flex-wrap: nowrap;
	text-decoration: none;

	text-align: center;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.18px;
}

.lang {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.lang-wrap .lang {
	width: calc(100% + 2px);
	position: absolute;
	top: 7px;
}


.lang-wrap .lang__active {
	height: 100%;
	display: flex;
	padding-inline: 15px;
	align-items: center;
	gap: 8px;
	color: #fff;
	position: relative;
	text-align: center;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.18px;
}

.lang-wrap .lang__active::after {
	content: url('../images/icon/arrow.svg');
	display: flex !important;
	transition: transform 0.3s ease-in-out;
}

.lang-wrap.active .lang .lang__active::after {
	transform: rotate(-180deg);
	transition: transform 0.3s ease-in-out;
}

.lang-wrap .lang__list {
	padding: 10px 10px 15px 15px;
	display: none;
	position: relative;
	z-index: 800;
	width: 100%;

	border-radius: 15px;
	border: 1px solid #16A180;
	background: rgba(18, 18, 18, 0.65);
	backdrop-filter: blur(12.5px);
}
.lang-wrap .lang__list li {
	margin-bottom: 10px;
	list-style: none;
}
.lang-wrap img {
	width: 30px;
	height: 22px;
}
.lang-wrap .lang__list li:last-child {
	margin-bottom: 0;
}

@media (any-hover: hover) {
	.lang-wrap .lang__list a:hover {
		 font-weight: 700;
	}
}

.lang__list li a{
	color:  #FFF;
	text-align: center;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 0.18px;
}

/* people-investing */

.people-investing {
	position: relative;
}

.people-investing .container{
	position: relative;
	 /* Маска з градієнтом для поступового зникнення на краях */
}






.people-investing__content{

}

.people-investing__title{
	color: #FFF;
	text-align: center;
	font-family: Aeonik;
	font-size: 80px;
	font-style: normal;
	font-weight: 500;
	line-height: 82px; /* 102.5% */
	letter-spacing: -2.4px;
	margin-bottom: 63px;
	padding: 0 8px;
}




.people-investing__title span{
	color: #16A180;
	font-weight: 500;
	position: relative;
}




.people-investing__title span::after{
	content:'';
	position: absolute;
	bottom: -18px;
	left: 0;
	width: 100%;
	height: 5px;
	background: #FFF;
}

@media screen and (max-width:1085px) {
	.people-investing__title span::after{
		content: '';
		position: absolute;
		bottom: -97px;
		left: 50%;
		width: 100%;
		height: 5px;
		background: #FFF;
		transform: translateX(-91%);
	}
	
}


@media screen and (max-width:831px) {
	.people-investing__title span::after{
		content: '';
		position: absolute;
		bottom: -97px;
		left: 50%;
		width: 100%;
		height: 5px;
		background: #FFF;
		transform: translateX(-50%);
	}	
}

@media screen and (max-width:560px) {
	.people-investing__title{
		color: #FFF;
		text-align: center;
		font-family: Aeonik;
		font-size: 32px;
		font-style: normal;
		font-weight: 500;
		line-height: 34px; /* 106.25% */
		letter-spacing: -0.96px;
	}

	.people-investing__title span{
		color: #FFF;
	}

	.people-investing__title span::after{
		content: '';
		position: absolute;
		bottom: -10px;
		left: 50%;
		width: 100%;
		height: 5px;
		background: #FFF;
		transform: translateX(-50%);
	}	
}

@media screen and (max-width:480px) {
	.people-investing__title span::after{
		display: none;
	}

	.people-investing__title{
		margin-bottom: 40px;
		position: relative;
	}

	.people-investing__title::after{
		content: '';
		position: absolute;
		bottom: -10px;
		left: 50%;
		width: 70%;
		height: 5px;
		background: #FFF;
		transform: translateX(-50%);
	}
}


.people-investing__info{
	max-width: 576px;
	margin: 0 auto 55px;
}

.people-investing__text-action{
	color: #FFF;
	text-align: center;
	font-family: Aeonik;
	font-size: 80px;
	font-style: normal;
	font-weight: 500;
	line-height: 82px; /* 102.5% */
	letter-spacing: -2.4px;
	margin-bottom: 45px;
}


.people-investing__text{
	color: #FFF;
	text-align: center;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.54px;
	margin-bottom: 12px;
}

.people-investing__free-places{
	color: #00FF38;
	text-align: center;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.54px;
	margin-bottom: 20px;
}



.people-investing__btn{
	width: 384px;
	height: 64px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:0 8px 0 32px;
	margin: 0 auto;
	border-radius: 32px;
	background: #16A180;
	box-shadow: 0px 5px 65px 0px rgba(22, 161, 128, 0.55);
}

.people-investing__btn span{
	color: #FFF;
	font-family: Aeonik;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.6px;
}

.people-investing__btn-icon{
	width: 48px;
	height: 48px;
	background-color: #FFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.people-investing__slider{
	margin-bottom: 60px;
	overflow: visible;
	transform: translateX(34%);
}



@media screen and (max-width:991px) {
	.people-investing__slider{
		transform: translateX(51%);
	}	
}

@media screen and (max-width:600px) {
	.people-investing__slider{
		transform: translateX(0%);
		margin-bottom: 24px;
	}	
}



@media screen and (max-width:480px) {
	.people-investing__text-action{
		color: #FFF;
		text-align: center;
		font-family: Aeonik;
		font-size: 32px;
		font-style: normal;
		font-weight: 500;
		line-height: 34px; /* 106.25% */
		letter-spacing: -0.96px;
		margin-bottom: 24px;
	}

	.people-investing__text{
		color: #FFF;
		text-align: center;
		font-family: Aeonik;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -0.48px;
	}

	.people-investing__btn{
		width: 100%;

	}

	.people-investing__info{
		margin-bottom: 46px;
	}
}



.people-investing__slide-box{
	border-radius: 35px;
	border: 1px solid #16A180;
	background: rgba(18, 18, 18, 0.65);
	backdrop-filter: blur(12.5px);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.people-investing__slide-img{
	display: flex;
	align-items: center;
	gap: 16px;
}

.people-investing__slide-img span{
	color: #FFF;
	font-family: Aeonik;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.6px;
}

.people-investing__slide-info{
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.people-investing__slide-info p{
	display: flex;
	justify-content: space-between;
}

.people-investing__slide-info p > span{
	color: #FFF;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.54px;
}

.people-investing__slide-info p > span+span{
	color: #FFF;
	text-align: right;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.54px;
}

.people-investing__slide-info p:nth-child(1) > span+span{
	color: #00FF38;
}

/* MAIN */

main{
	display: flex;
	flex-direction: column;
	gap: 120px;	
}

@media screen and (max-width:480px) {
	main{
		gap: 52px;
	}
}

/*  Platform Introduction */

.platform-introduction{

}

.platform-introduction__title{
	color: #121212;
	text-align: center;
	font-family: Aeonik;
	font-size: 60px;
	font-style: normal;
	font-weight: 500;
	line-height: 64px; /* 106.667% */
	letter-spacing: -1.8px;
	margin-bottom: 48px;
}

@media screen and (max-width:540px) {
	.platform-introduction__title{
		color: #121212;
		text-align: center;
		font-family: Aeonik;
		font-size: 32px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		letter-spacing: -0.96px;
		margin-bottom: 16px;
	}
}

.platform-introduction__content{
	padding: 60px 105px 60px 309px;
	margin: 0 -105px;
	display: flex;
	align-items: center;
	gap: 126px;
	background-color:  #121212;
	border-radius: 35px;
	background-image:
		url(../images/bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (max-width:1440px) {
	.platform-introduction__content{
		margin: 0;
		padding: 60px;
	}
}

@media screen and (max-width:1199px) {
	.platform-introduction__content{
		gap: 60px;
	}
}

@media screen and (max-width:991px) {
	.platform-introduction__content{
		flex-wrap: wrap;
	}

	.platform-introduction__box-img{
		margin:0 auto;
	}
}

@media screen and (max-width:540px) {
	.platform-introduction__content{
		padding: 0px;
		background-image: none;
		background-color:#fff;
	}

	.platform-introduction__box-img{
		width: 100%;
	}

	.platform-introduction__box-img img{
		width: 100%;
	}
}

.platform-introduction__info-title{
	color: #FFF;
	font-family: Aeonik;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.96px;	
	margin-bottom: 32px;
}



ul.platform-introduction__list{
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-bottom: 32px;
}

.platform-introduction__item-title{
	color: #FFF;
	font-family: Aeonik;
	font-size: 26px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.78px;
	margin-bottom: 8px;
}

.platform-introduction__item-title span{
	color: #16A180;
}

.platform-introduction__item-text{
	color: #A4A4A4;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.54px;
}



.platform-introduction__btn{
	width: 384px;
	height: 64px;
	border-radius: 32px;
	background: #FFF;
	box-shadow: 0px 5px 65px 0px rgba(18, 27, 25, 0.55);
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 13px;
	padding:0 8px 0 20px;
}

.platform-introduction__btn span{
	color: #16A180;
	font-family: Aeonik;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.6px;
}

.platform-introduction__btn-icon{
	width: 48px;
	height: 48px;
	background-color: #16A180;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width:540px) {
	.platform-introduction__info-title{
		color: #121212;
		font-family: Aeonik;
		font-size: 24px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		letter-spacing: -0.72px;
		margin-bottom: 32px;
	}

	.platform-introduction__item-title{
		color: #121212;
		font-family: Aeonik;
		font-size: 24px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		letter-spacing: -0.72px;
	}

	.platform-introduction__item-text{
		color: #A4A4A4;
		font-family: Aeonik;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -0.48px;
	}

	.platform-introduction__btn{
		border-radius: 32px;
		background: #121212;
		box-shadow: 0px 5px 65px 0px rgba(18, 18, 18, 0.55);
	}
		.platform-introduction__btn span{
		color: #FFF;
		font-family: Aeonik;
		font-size: 20px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		letter-spacing: -0.6px;
	}

	.platform-introduction__btn-icon{
		width: 48px;
		height: 48px;
		background-color: #FFF;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.platform-introduction__btn-icon svg path{
		fill: #121212;
	 }
}

@media screen and (max-width:540px) {
	.platform-introduction__btn{
		width: 100%;
	}
}

/* Making Revolution */

.making-revolution__info{
	max-width: 903px;
	margin: 0 auto 48px;
}

.making-revolution__title{
	color: #121212;
	text-align: center;
	font-family: Aeonik;
	font-size: 60px;
	font-style: normal;
	font-weight: 500;
	line-height: 64px; /* 106.667% */
	letter-spacing: -1.8px;
	margin-bottom: 32px;
}

@media screen and (max-width:480px) {
	.making-revolution__title{
		color: #121212;
		text-align: center;
		font-family: Aeonik;
		font-size: 32px;
		font-style: normal;
		font-weight: 500;
		line-height: 34px; /* 106.25% */
		letter-spacing: -0.96px;
		margin-bottom: 16px;
	}
}

.making-revolution__box-text p{
	color: #121212;
	text-align: center;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.54px;
	max-width: 792px;
	margin: 0 auto;
}



.making-revolution__box-text > p{
	margin: 0 auto 24px;
}

@media screen and (max-width:480px) {
	.making-revolution__box-text p{
		color: #121212;
		text-align: center;
		font-family: Aeonik;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -0.48px;
	}

	
.making-revolution__box-text > p{
	margin: 0 auto 43px;
}
}

.making-revolution__box-card{
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	align-items:flex-start;
	justify-content: center;
}

.making-revolution__card{
	flex: 1 1 calc(50% - 12px);
	border-radius: 35px;
	background: #F7F7F6;
	padding: 48px;
}



.making-revolution__card:nth-child(4) {
	position: relative;
	top: -94px;
	height: 620px;
	border-radius: 35px;
	background: #121212;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	transition: all 500ms ease 0s;
}

@media screen and (max-width:991px) {
	.making-revolution__card{
		flex: 0 1 100%;
	}

	.making-revolution__card:nth-child(4) {
		top: 0;
		display: none;
	}
}

.making-revolution__card--last.es{
	top: -140px;
}

.making-revolution__card--last.fr{
	top: -94px;
}


.making-revolution__card--last:hover{
	background: #16A180;
	transition: all 500ms ease 0s;
	position: relative;
}

.making-revolution__card--last:hover .making-revolution__button-text{
	transform: translateY(-372px);
	transition: all 500ms ease 0s;
	color: #FFF;
	font-family: Aeonik;
	font-size: 80px;
	font-style: normal;
	font-weight: 500;
	line-height: 80px; /* 100% */
	letter-spacing: -2.4px;
	max-width: 492px;
}

@media screen and (max-width:1199px) {
	.making-revolution__card--last:hover .making-revolution__button-text{
		font-size: 70px;
	}
}

.making-revolution__card--last:hover .making-revolution__button-text span{
	opacity: 1;
	display: inline;
}


@media screen and (max-width:991px) {
	
}



.making-revolution__number{
	color: #16A180;
	font-family: Aeonik;
	font-size: 150px;
	font-style: normal;
	font-weight: 400;
	line-height: 100px; /* 66.667% */
	letter-spacing: -4.5px;
	margin-bottom: 24px;
}


.making-revolution__card-title{
	color: #121212;
	font-family: Aeonik;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.96px;
	margin-bottom: 16px;
}

.making-revolution__card-text{
	color: #121212;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.54px;	
}

.making-revolution__block-text > p{
	margin-bottom: 16px;
}


@media screen and (max-width:480px) {
	.making-revolution__card{
		padding: 24px;
		border-radius:25px;
	}

	.making-revolution__number{
		color: #16A180;
		font-family: Aeonik;
		font-size: 60px;
		font-style: normal;
		font-weight: 400;
		line-height: 30px; /* 50% */
		letter-spacing: -1.8px;
		margin-bottom: 16px;
	}

	.making-revolution__card-title{
		color: #121212;
		font-family: Aeonik;
		font-size: 24px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -0.72px;
	}

	
	.making-revolution__card-text{
		color: #121212;
		font-family: Aeonik;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -0.48px;
	}

	.making-revolution__block-text > p{
		margin-bottom: 12px;
	}
}

.making-revolution__button-text{
	color: #FFF;
	font-family: Aeonik;
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.96px;
	transition: all 500ms ease 0s;
}

.making-revolution__button-text span{
	opacity: 0;
	display: none;
}

.making-revolution__arrow{
	min-width: 44px;
	min-height: 44px;
	max-width: 44px;
	max-height: 44px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 500ms ease 0s;

	position: absolute;
	right: 48px;
	bottom: 48px;
}

.making-revolution__arrow svg{
	width: 24px;
	height: 24px;
	transition: all 500ms ease 0s;
}

.making-revolution__card--last:hover .making-revolution__arrow{
	position: absolute;
	right: 138px;
	bottom: 176px;
	min-width: 176px;
	min-height: 176px;
	max-width: 176px;
	max-height: 176px;
	transition: all 500ms ease 0s;
}

.making-revolution__card--last:hover .making-revolution__arrow svg{
	width: 96px;
	height: 96px;
	transition: all 500ms ease 0s;
}

/* Investors say  */

@media screen and (max-width:480px) {
	.investors-say .container{
		padding: 0
	}
}


.investors-say__title{
	color: #121212;
	text-align: center;
	font-family: Aeonik;
	font-size: 60px;
	font-style: normal;
	font-weight: 500;
	line-height: 64px; /* 106.667% */
	letter-spacing: -1.8px;
	margin-bottom: 48px;
}

.investors-say__info{
	background-image: url(../images/bg.png);
	background-repeat: no-repeat;
	padding: 200px 105px;
	margin:  0 -105px;
	background-color: #121212;
	border-radius: 35px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	transition: all 0.5s ease;
	max-height: 656px;
}



@media screen and (max-width:1440px) {
	.investors-say__info{
		margin:  0px;
		flex-direction: column;
		justify-content: flex-start;
	}
}

@media screen and (max-width:991px) {
	.investors-say__info{
		padding: 32px 20px 38px;
		height: 100%;
		
	}
}

@media screen and (max-width:768px) {
	.investors-say__info{
		max-height: 500px;
		min-height: 500px;
	}
}

@media screen and (max-width:678px) {
	.investors-say__info{
		max-height: 600px;
		min-height: 600px;
	}
}

@media screen and (max-width:480px) {
	.investors-say__title{
		color: #121212;
		text-align: center;
		font-family: Aeonik;
		font-size: 32px;
		font-style: normal;
		font-weight: 500;
		line-height: 34px; /* 106.25% */
		letter-spacing: -0.96px;
		margin-bottom: 16px;
	}
	.investors-say__info{
		background-image: url(../images/bg-mobile.png);
		background-size: cover;
		gap: 32px;
		max-height: 500px;
		min-height: 500px;
	}
}

.investors-say__box-icon{
	display: flex;
	align-items: center;
	gap: 16px;
}

@media screen and (max-width:1440px) {
	.investors-say__box-icon{
		height: 120px;
	}
}

@media screen and (max-width:768px) {
	.investors-say__box-icon{
		height: 48px;
	}
}

.investors-say__img{
	max-width: 60px;
	max-height: 60px;
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.5s ease
}

.investors-say__icon.active{
	position: relative;
}

.investors-say__icon.active .investors-say__img{
	max-width: 100px;
	max-height: 100px;
	margin: 0 16px;
	transition: all 0.5s ease
}



.investors-say__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: flex;
}

@media screen and (max-width:768px) {
	.investors-say__box-icon{
		gap: 12px;
	}

	.investors-say__img{
		max-width: 32px;
		max-height: 32px;
		border-radius: 50%;
		overflow: hidden;
		transition: all 0.5s ease
	}

	.investors-say__icon.active .investors-say__img{
		max-width: 48px;
		max-height: 48px;
		
		margin: 0 2.5px;
		transition: all 0.5s ease;
		min-width: 48px;
		min-height: 48px;
	}
	
}

.investors-say__icon .circle-animation {
	display: none;
}

/* Контейнер для SVG-анімації */
.investors-say__icon.active .circle-animation {
	position: absolute;
	top: -10px; /* Відступ на 8px від фото */
	left: 50%;
	transform: translateX(-50%);
	width: 120px; /* 100px + 2 * 8px */
	height: 120px;
	display: block;
}

/* Фонова лінія */
.progress-bg {
	fill: none;
	/* stroke: rgba(255, 255, 255, 0.1);  */
	stroke-width: 1;
}

/* Анімована лінія */

.investors-say__icon.active .progress {
	fill: none;
	stroke: #16A180;
	stroke-width: 1;
	stroke-dasharray:  402.12; /* Довжина кола (2 * π * r) */
	stroke-dashoffset:  402.12;
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
	animation: progressAnimation 5s linear forwards;
}


@media screen and (max-width:768px) {
	.investors-say__icon.active .circle-animation {
		position: absolute;
		top: -6px; /* Відступ на 8px від фото */
		left: 50%;
		transform: translateX(-50%);
		width: 60px; /* 100px + 2 * 8px */
		height: 60Spx;
		display: block;
	}
	
}

.progress {
	/* fill: none;
	stroke: #16A180;
	stroke-width: 1;
	stroke-dasharray:  402.12; 
	stroke-dashoffset:  402.12;
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
	animation: progressAnimation 5s linear forwards; */
}

/* Анімація */
@keyframes progressAnimation {
	from {
		 stroke-dashoffset:  402.12;
	}
	to {
		 stroke-dashoffset: 0;
	}
}

.investors-say__box-text{
	flex: 0 1 588px;
	position: relative;
	min-height: 257px;
}

.investors-say__text{
	color: #FFF;
	font-family: Aeonik;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.72px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease
}

@media screen and (max-width:1440px) {
	.investors-say__box-text{
		width: 100%;
		flex: 0 1 auto;
	}	
}

.investors-say__text p{
	margin-bottom: 16px;
}

.investors-say__text.active{
	opacity: 1;
	visibility: visible;
	transition: all 0.5s ease;
	position: relative;
}

.investors-say__text > p+span{
	color: #FFF;
	font-family: Aeonik;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.96px;
}

@media screen and (max-width:480px) {
	.investors-say__text{
		color: #FFF;
		font-family: Aeonik;
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -0.54px;
		margin-bottom: 16px;
	}	

	.investors-say__text > p+span{
		color: #FFF;
		font-family: Aeonik;
		font-size: 24px;
		font-style: normal;
		font-weight: 500;
		line-height: normal;
		letter-spacing: -0.72px;
	}
}

/* investing now  */

.investing-now{
	background: #F7F7F6;
}

.investing-now__content{
	padding:226px 0;
	display: flex;
	gap: 126px;
	align-items: center;
	justify-content: space-between;
}

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

	.investing-now{
		background: #fff;

	}

	.investing-now__content{
		flex-direction: column;
		gap: 24px;
		padding: 0;
	}
}

.investing-now__info{
	max-width: 588px;
}

.investing-now__title{
	color: #121212;
	font-family: Aeonik;
	font-size: 60px;
	font-style: normal;
	font-weight: 500;
	line-height: 64px; /* 106.667% */
	letter-spacing: -1.8px;
	margin-bottom: 24px;
}


.investing-now__text{
	color: #121212;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.54px;
}

@media screen and (max-width:480px) {
	.investing-now__title{
		color: #121212;
		font-family: Aeonik;
		font-size: 32px;
		font-style: normal;
		font-weight: 500;
		line-height: 34px; /* 106.25% */
		letter-spacing: -0.96px;
	}
	
	
	.investing-now__text{
		color: #121212;
		font-family: Aeonik;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -0.48px;
	}
}

.investing-now__cards{
	position: relative;
	border-radius: 35px;
	background: #FFF;
	overflow: hidden;
	width: 486px;
	height: 499px;
	padding: 48px;;
}

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

	.investing-now__cards{
		background: #F7F7F6;
	}
}

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

	.investing-now__cards{
		width: 100%;
		padding: 24px;
	}

	.investing-now__cards br{
		display: none;
	}
}

.investing-now__card{
	height: 100%;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 48px;
	display: none;
}

.investing-now__card.active{
	display: flex;
}


.investing-now__number{
	color: #000;
	font-family: Aeonik;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -1.2px;
	margin-bottom: 16px;
}

.investing-now__card-text{
	color: #121212;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.54px;
	margin-bottom: 16px;
}


.investing-now__card-text:last-child{
	margin-bottom: 0;
}

.investing-now__card-text.red{
	color: #FF0000;
}

.investing-now__text-loader{
	color: #000;
	font-family: Aeonik;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -1.2px;
	position: relative;
}



.dots::after {
	content: "";
	display: inline-block;
	animation: dots 1.5s steps(5, end) infinite; /* Анімація для крапок */
}


/* Анімація для крапок */
@keyframes dots {
	0%, 20% {
		 content: "";
	}
	20% {
		 content: ".";
	}
	40% {
		 content: "..";
	}
	60% {
		 content: "...";
	}
	80%, 100% {
		 content: "....";
	}
}

.investing-now__text-done{
	opacity: 0;
}

.investing-now__text-done.active{
	opacity: 1;
	color: #000;
	font-family: Aeonik;
	font-size: 40px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -1.2px;
	transition: all 0.3s ease;
}


.investing-now__btn{
	border-radius: 32px;
	background: #121212;
	box-shadow: 0px 5px 65px 0px rgba(18, 27, 25, 0.55);

	color: #FFF;
	font-family: Aeonik;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.6px;
	padding:10px 8px 10px 20px ;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: none;
	text-align: left;
	cursor: pointer;
}


@media screen and (max-width:480px) {
	.investing-now__btn{
		gap: 23px;
	}
}


.investing-now__btn > p+span{
	min-width: 48px;
	min-height: 48px;
	background-color: #fff;
	border-radius:50%;
	display: flex;
	align-items: center;
	justify-content: center;
	
}

/* faq */

.faq{

}



.faq__title{
	color: #121212;
	text-align: center;
	font-family: Aeonik;
	font-size: 60px;
	font-style: normal;
	font-weight: 500;
	line-height: 64px; /* 106.667% */
	letter-spacing: -1.8px;
	margin-bottom: 48px;
}

@media screen and (max-width:480px) {
	.faq__title{
		color: #121212;
		text-align: center;
		font-family: Aeonik;
		font-size: 32px;
		font-style: normal;
		font-weight: 500;
		line-height: 34px; /* 106.25% */
		letter-spacing: -0.96px;
		margin-bottom: 16px;
	}
}

ul.faq__list{
	max-width: 995px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq__item{
	padding: 22px 32px 26px;
	border-radius: 20px;
	background: #F7F7F6;
	cursor: pointer;
	transition: all ease 500ms 0s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media screen and (max-width:480px) {
	.faq__item{
		gap: 16px;
	}
}


.faq__item.active{
	transition: all ease 500ms 0s;
}

.faq__item h4{
	color: #121212;
	font-family: Aeonik;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.72px;
	padding-right: 48px;
	position: relative;
}

@media screen and (max-width:480px) {
	.faq__item h4{
		color: #121212;
		font-family: Aeonik;
		font-size: 20px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -0.6px;
	}
}


.faq__item h4::after{
	content:'';
	display: flex;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(-90deg);
	transition: all ease 250ms 0s;
	height: 2px;
	width: 18px;
	background: #000;
	z-index: 5;
}

.faq__item h4::before{
	content:'';
	display: flex;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(180deg);
	transition: all ease 250ms 0s;
	height: 2px;
	width: 18px;
	background: #000;
	z-index: 5;
}

.faq__item.active h4::after{
	transform:translateY(-50%) rotate(0deg);
	transition: all ease 250ms 0s;
}

.faq__item p{
	color: #121212;
	font-family: Aeonik;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.54px;
}


@media screen and (max-width:480px) {
	.faq__item p{
		color: #121212;
		font-family: Aeonik;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -0.48px;
	}
	
}

/* real profits */

.real-profits{
	padding: 110px 0 92px;

	background-image: 
		url('../images/bl7_bg1-min.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

@media screen and (max-width:480px) {
	.real-profits{
		padding: 60px 0 98px;	
		background-size: 361% 189%;
		background-position: 52% -11%;
	}
}

.real-profits__attention{
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(252, 0, 0, 0.50);
	padding: 8px 0;
	color: #FFF;
	width: 100%;
	text-align: center;
	font-family: Aeonik;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.6px;
}

.real-profits__attention strong{
	font-weight: 700;
}


@media screen and (max-width:480px) {
	.real-profits__attention{
		color: #FFF;
		font-family: Aeonik;
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		letter-spacing: -0.54px;
	}
}

.real-profits__title{
	color: #FFF;
	text-align: center;
	font-family: Aeonik;
	font-size: 60px;
	font-style: normal;
	font-weight: 500;
	line-height: 64px; /* 106.667% */
	letter-spacing: -1.8px;
	margin:0 auto 40px;
	max-width: 700px;
}




.real-profits__btn{
	width: 384px;
	height: 64px;
	border-radius: 32px;
	background: #FFF;
	box-shadow: 0px 5px 65px 0px rgba(18, 27, 25, 0.55);
	display:flex;
	align-items: center;
	justify-content: space-between;
	gap: 13px;
	padding:0 8px 0 20px;
	margin: 0 auto;
}

@media screen and (max-width:480px) {
	.real-profits__title{
		color: #FFF;
		text-align: center;
		font-family: Aeonik;
		font-size: 32px;
		font-style: normal;
		font-weight: 500;
		line-height: 34px; /* 106.25% */
		letter-spacing: -0.96px;
		margin:0 auto 30px;
	}

	.real-profits__btn{
		width: 100%;
	}
}

.real-profits__btn span{
	color: #16A180;
	font-family: Aeonik;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.6px;
}

.real-profits__btn-icon{
	width: 48px;
	height: 48px;
	background-color: #16A180;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}


/* footer */

.footer{
	padding: 48px 0;
	border-top: 1px solid #212121;
	background: #121212;
}

.footer__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}

@media screen and (max-width:678px) {
	.footer__top{
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

}


.footer__logo{
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer__name-company{
	color: #FFF;
	font-family: Aeonik;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: -0.72px;
}

.footer__list {
	display: flex;
	gap: 24px;
}

.footer__item a{
	color: #BFBFC8;
	text-align: right;
	font-family: Aeonik;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
	letter-spacing: -0.48px;
}

@media screen and (max-width:678px) {
	.footer__list {
		gap: 16px;
	}
	
	.footer__item a span{
		display: none;
	}
}

.footer__disclaimer{
	color: #BFBFC8;
	font-family: Aeonik;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
	letter-spacing: -0.48px;
}

/* page-form */

#page-form .people-investing__title span::after{
	display: none;
}
	
#page-form .people-investing__title{
	margin-bottom: 90px;
	position: relative;
}

#page-form .people-investing__title::after{
	content: '';
	position: absolute;
	bottom: -45px;
	left: 50%;
	width: 792px;
	height: 5px;
	background: #FFF;
	transform: translateX(-50%);
}

@media screen and (max-width:991px) {
	#page-form .people-investing__title::after{
		content: '';
		position: absolute;
		bottom: -45px;
		left: 50%;
		width: 70%;
		height: 5px;
		background: #FFF;
		transform: translateX(-50%);
	}
}

@media screen and (max-width: 560px) {
	#page-form  .people-investing__title span {
	  color: #16A180;
	}
 }

 
@media screen and (max-width: 480px) {
	#page-form  .people-investing__title {
	  margin-bottom: 57px;
	  color: #FFF;
		text-align: center;
		font-family: Aeonik;
		font-size: 32px;
		font-style: normal;
		font-weight: 500;
		line-height: 34px; /* 106.25% */
		letter-spacing: -0.96px;
		padding: 0;
	}

	#page-form .people-investing__title::after{
		content: '';
		position: absolute;
		bottom: -28px;
		left: 50%;
		width: 60%;
		height: 5px;
		background: #FFF;
		transform: translateX(-50%);
	}
 }

#page-form .box-bg{
	margin-bottom: 0;
}

.form__marquee-container{
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 50px;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 25px;
}