* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	background: #fff;
}

html,
body {
	height: 100%;
}

a {
	text-decoration: none;
}

.wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0px 20px;
}

.header {
	padding-top: 20px;
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
}

.header__menu-top {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.social-none {
	display: flex;
	gap: 20px;
	margin-right: 90px;
}

.social__img {
	height: 24px;
	width: 24px;
	cursor: pointer;
}


.mails {
	display: flex;
	gap: 30px;
}

.mails-support {
	font-size: 14px;
	max-width: 500;
	line-height: 20px;
	color: #080F4D;
	position: relative;
	transition: 0.5s;
}

.mails-support:hover {
	color: #E255F3;
}

.mails-support::before {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	background-image: url(../img/mail.svg);
	background-repeat: no-repeat;
	background-size: cover;
	left: -35px;
	top: -2px;
}

.mails-admin {
	font-size: 14px;
	max-width: 500;
	line-height: 20px;
	color: #080F4D;
	transition: 0.5s;
}

.mails-admin:hover{
	color: #E255F3;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-link {
	display: block;
	background-image: url(../img/logo.svg);
	width: 150px;
	height: 120px;
	transition: 1s;
}

.logo-link:hover {
	background-image: url(../img/logo-hover.svg);
}

.menu {
	display: flex;
	margin-top: 40px;
}

.menu__list {
	display: flex;
	gap: 50px;
}

.menu__list-link {
	color: #080F4D;
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	transition: 0.3s;
	position: relative;
}

.menu__list-link:hover {
	color: rgba(17, 17, 255, 1);
}

.menu__list-link:hover:before {
	transform: scaleX(1);
	transition: 0.3s;
}

.menu__list-link::before {
	content: '';
	width: 100%;
	height: 1px;
	background-color: rgba(17, 17, 255, 1);
	position: absolute;
	left: 0;
	bottom: -5px;
	transform: scaleX(0);
}

.menu__list-link:hover:before {
	transform: scaleX(1);
	transition: 0.3s;
}

.menu__list-link::before {
	content: '';
	width: 100%;
	height: 1px;
	background-color: #rgba(17, 17, 255, 1);
	position: absolute;
	left: 0;
	bottom: -5px;
	transform: scaleX(0);
}

.menu__link {
	margin-top: 40px;
	transition: 0.7s;
	height: 50px;
}

.button:hover {
	box-shadow: 0px 20px 40px 0px rgba(226, 85, 243, 0.6);
	scale: 101%;
}

.button:active {
	scale: 95%;
}

.button {
	color: rgba(255, 255, 255, 1);
	font-weight: 600;
	background: linear-gradient(94.73deg, #60B7FF 0%, #E255F3 100%);
	border-radius: 40px;
	width: 171px;
	display: flex;
	padding: 12px 24px;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.top {
	padding-top: 225px;
	padding-bottom: 100px;
	display: flex;
	background: url(../img/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	z-index: 5;
	left: 0;
	right: 0;
}

.top__title {
	font-size: 44px;
	font-weight: 600;
	line-height: 61px;
	text-align: center;
	color: #1A1B24;
	max-width: 790px;
	margin-bottom: 30px;
}

.top__text {
	text-align: center;
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	margin-bottom: 40px;
}

.top__btn {
	margin: 0 auto;
	width: 220px;
	padding: 18px 28px;
	transition: 0.7s;
}

.slider {
	position: relative;
}

.slider__item {
	position: relative;
	max-width: 390px;
	height: 340px;
	margin-top: 20px;
	border-radius: 20px;
	box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.25);
	margin-bottom: 60px;
}

.slider__item img {
	text-align: center;
	margin: 0 auto;
	display: block;
	margin-top: 30px;
}

.achive {
	position: absolute;
	font-size: 12px;
	font-weight: 600;
	line-height: 17px;
	color: #fff;
	background: #1111FF;
	border-radius: 20px;
	max-width: 130px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 6px 12px;
	right: 15px;
	top: -15px;
}

.slider__item-title {
	text-align: center;
	font-size: 34px;
	line-height: 48px;
	font-weight: 600;
	color: #1111FF;
	margin-bottom: 10px;
}

.slider__item-subtitle {
	text-align: center;
	margin-bottom: 20px;
	color: #080F4D;
	font-weight: 600;
}

.slider__item-text {
	text-align: center;
	font-weight: 400;
	color: #1A1B24;
}

.slick-list {
	overflow: hidden;
}

/* Лента слайдов */
.slick-track{
	display: flex;
	gap: 20px;
}

/* Стрелка */
.slick-arrow{
	position: absolute;
	top: 40%;
	z-index: 10;
	font-size: 0;
	width: 44px;
	height: 44px;
}

/* Стрелка влево */
.slick-arrow.slick-prev{
	left: 0;
	background: url('../img/arrow-left.svg') 0 0 no-repeat;
	margin-left: -20px;
}

/* Стрелка вправо */
.slick-arrow.slick-next{
	right: 0;
	background: url('../img/arrow-right.svg') 0 0 no-repeat;
	margin-right: -8px;
}

.advantage-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 2fr);
	gap: 30px 20px;
}

.advantage__item {
	background: linear-gradient(rgba(246, 249, 253, 1),rgba(241, 245, 250, 1));
	display: inline-block;
	border-radius: 30px;
	max-width: 430px;
	padding: 20px 44px;
	display: flex;
	flex-direction: column;
}

.advantage__item-title {
	font-weight: 600;
	line-height: 22px;
	color: #1A1B24;
	position: relative;
}

.advantage__item-text {
	font-weight: 400;
}

.advantage__item-text- {
	font-weight: 600;
	line-height: 22px;
	color: #1A1B24;
	position: relative;
}

.advantage__item-title::before {
	content: '';
	width: 14px;
	height: 14px;
	background: url('../img/ok.svg');
	position: absolute;
	left: -25px;
}

.advantage__item-text-::before {
	content: '';
	width: 14px;
	height: 14px;
	background: url('../img/ok.svg');
	position: absolute;
	left: -25px;
}

.activity-wrapper {
	display: flex;
	background: url('../img/lenear.svg');
	background-size: cover;
	color: #fff;
	margin-top: 20px;
}

.activity-img {
	display: block;
	padding-top: 100px;
}

.activity-content {
	padding-top: 280px;
}

.activity-content-title {
	font-weight: 600;
	font-size: 34px;
	line-height: 48px;
	margin-bottom: 10px;
}
.activity-content-text {
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 40px;
}

.activity-content-treid {
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 30px;
}

.activity-content-mining {
	font-weight: 400;
	line-height: 24px;
}

.achievement {
	padding-top: 65px;
	padding-bottom: 120px;
}

.achievement-title {
	text-align: center;
	font-size: 34px;
	font-weight: 600;
	line-height: 48px;
	margin-bottom: 60px;
}

.achievement-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 2fr);
	gap: 100px 20px;
	align-items: center;
	justify-content: center;
}

.achievement__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.achievement__item-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 25px;
	margin-bottom: 0px;
	text-align: center;
	height: 40px;
	max-width: 290px;
}

.achievement__item-text {
	width: 290px;
	text-align: center;
	height: 40px;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
}

.achievement__item-text- {
	padding-top: 10px;
	width: 290px;
	text-align: center;
	height: 40px;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
}

.little-sphere {
	display: block;
	margin-top: 100px;
}

.work {
	padding-bottom: ;
	position: relative;
}

.work-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.work__content-title {
	font-weight: 600;
	font-size: 34px;
	line-height: 48px;
	margin-bottom: 10px;
}

.work__content-subtitle {
	margin-bottom: 45px;
}

.work-item {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 50px;
}

.work__item-number {
	font-weight: 600;
	font-size: 40px;
	line-height: 56px;
	background-image: linear-gradient(rgba(96, 183, 255, 1), rgba(226, 85, 243, 1));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.work__item-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
}

.work__item-text a {
	color: #1111FF;
}

.sphere {
	position: absolute;
	right: 0;
}

.simple {
	padding-top: 100px;
	padding-bottom: 120px;
}

.simple-wrapper {
	display: flex;
	gap: 20px;
}

.simple-title {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-bottom: 90px;
	font-size: 34px;
	font-weight: 600;
	line-height: 48px;
}

.simple-title h2 {
	background-image: linear-gradient(rgba(96, 183, 255, 1), rgba(226, 85, 243, 1));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 600;
}

.simple__item {
	background: linear-gradient(rgba(246, 249, 253, 1), rgba(241, 245, 250, 1));
	width: 390px;
	border-radius: 30px;
	position: relative;
}

.simple__item img {
	position: absolute;
	top: -50px;
}

.simple__text {
	font-weight: 400;
	line-height: 22px;
	padding: 40px 30px;
}

.partner {
	height: 530px;
}

.partner-wrapper {
	background: linear-gradient(180deg, #6989FE 0%, #3C64F4 100%);
	mix-blend-mode: normal;
	border-radius: 40px;
	display: flex;
	justify-content: space-between;
	padding-top: 90px;
	padding-left: 60px;
	padding-right: 80px;

}

.partner {
	margin-bottom: 120px;
}

.partner__content-title {
	font-weight: 600;
	font-size: 34px;
	color: #fff;
	line-height: 48px;
	margin-bottom: 20px;
}

.partner__content-text {
	font-weight: 400;
	line-height: 22px;
	color: #fff;
	opacity: 0.9;
	margin-bottom: 50px;
}

.partner__content-link {
	color: #1111FF;
	background: #fff;
	padding: 12px 24px;
	border-radius: 40px;
	transition: 0.7s;
}

.partner__content-link:hover {
	background: #E255F3;
	color: #fff;
}

.partner-img {
	margin-bottom: 95px;
}

.income {
	padding-bottom: 120px;
}

.income-title {
	display: flex;
	gap: 10px;
	font-weight: 600;
	font-size: 34px;
	line-height: 48px;
	margin-bottom: 30px;
}

.income-title--purple {
	font-weight: 600;
	background-image: linear-gradient(rgba(96, 183, 255, 1), rgba(226, 85, 243, 1));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.income-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.income-wrapper__content {
	background: linear-gradient(180deg, #FAFCFF 0%, #F1F5FA 100%);
	border-radius: 40px;
	padding: 45px 30px 50px 75px;
}
.income-wrapper__content-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 25px;
	margin-bottom: 15px;
	text-transform: uppercase;
	position: relative;
}

.income-wrapper__content-title- {
	font-size: 18px;
	font-weight: 600;
	line-height: 25px;
	margin-bottom: 15px;
	text-transform: uppercase;
	position: relative;
}


.income-wrapper__content-title::before {
	content: '';
	position: absolute;
	background: url('../img/treitding.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 28px;
	height: 28px;
	top: -4px;
	left: -45px;
}

.income-wrapper__content-title-::before {
	content: '';
	position: absolute;
	background: url('../img/mining.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 28px;
	height: 28px;
	top: -4px;
	left: -45px;
}


.income-wrapper__content-text {
	font-weight: 400;
	line-height: 22px;
	max-width: 530px;
}

.about {
	padding-bottom: 120px;
}

.about-wrapper {
	display: flex;
	justify-content: space-between;
}

.about-wrapper__content-title {
	display: flex;
	gap: 10px;
	font-weight: 600;
	font-size: 34px;
	line-height: 48px;
	margin-bottom: 30px;
}

.about-wrapper__content-text {
	font-weight: 400;
	line-height: 22px;
	max-width: 530px;
}

.about-img-2 {
	position: absolute;
	right: 0;
	margin-top: 50px;
}

.faq {
	padding-bottom: 120px;
}

.faq-title {
	font-weight: 600;
	font-size: 34px;
	line-height: 48px;
	margin-bottom: 60px;
}

.faq-wrapper {
	display: flex;
	gap: 20px;
	align-items: center;
}

.faq__block__item {
	border-bottom: 1px solid #C8DAEA;
	margin-bottom: 30px;
	width: 590px;
	position: relative;
}

.faq__block__btn {
	background: inherit;
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
	margin-bottom: 0px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 590px;
}

.faq__block__btn img {
	display: block;
}

.faq__block-text {
	font-weight: 400;
	line-height: 22px;
	margin-bottom: 25px;
	max-height: 0;
	overflow: hidden;
	transition: 0.3s ease-in-out;
}

.company {
	padding-bottom: 140px;
}

.company-list {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.footer {
	padding-bottom: 190px;
}

.footer__top-menu {
	display: flex;
	justify-content: space-between;
}

.footer-btn {
	width: 220px;
	padding: 18px 28px;
	transition: 0.7s;
}

.mails-see-footer {
	margin-left: 100px;
}



.menu__btn {
	width: 27px;
	height: 20px;
	border: none;
	position: relative;
	background: inherit;
	display: none;
	margin-left: 0px;
	z-index: 11;
}

.menu__btn span{
	position: absolute;
	width: 27px;
	height: 3px;
	background: #fff;
	left: 5px;
	border-radius: 25px;
	transition: transform .3s, opacity .3s, background-color .3s;
}

.menu__btn span:nth-child(1) {
	transform: translateY(-10px);
}

.menu__btn span:nth-child(3) {
	transform: translateY(10px);
}

.btn-mobile--active span {
	background-color: #D72323;
}

.btn-mobile--active span:nth-child(1) {
	transform: translateY(0) rotate(45deg);
}

.btn-mobile--active span:nth-child(2) {
	opacity: 0;
}

.btn-mobile--active span:nth-child(3) {
	transform:  translateY(0) rotate(-45deg);
}

.btn-media {
	display: none;
}

.menu__btn span{
	height: 2px;
	background-color: #080F4D;
	width: 100%;
}

.logo-link-media {
	display: none;
}

.menu__list-see {
	display: flex;
	gap: 50px;
}

.mails-see {
	display: flex;
}

.social-none {
	display: flex;
	gap: 15px;
	align-items: center;
}

.menu__mobile {
	background: #fff;
	max-width: 230px;
	padding-bottom: 25px;
	position: absolute;
	top: 0;
	right: -100%;
	transition: 0.5s;
	max-height: 560px;
	display: none;
}

.menu__list-mobile {
	display: flex;
	flex-direction: column;
	gap: 25px;
	padding-left: 20px;
	padding-top: 60px;
	padding-bottom: 50px;
}

.social-mobile {
	display: flex;
	gap: 20px;
	padding-left: 20px;
	padding-bottom: 25px;
}

.mails-mobile {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 20px;
	padding-bottom: 25px;
}
.mails-support-mobile {
	font-size: 14px;
	max-width: 500;
	line-height: 20px;
	color: #080F4D;
	position: relative;
	transition: 0.5s;
}

.btn-mobile {
	margin-left: 20px;
}

.menu__mobile--active {
	right: 0;
	display: flex;
	flex-direction: column;
}

@media (max-width: 1150px) {
	.menu__list {
		display: none;
	}

	.menu__btn {
		display: flex;
		z-index: 10;
	}

	.mails-support {
		display: none;
	}

	.mails-admin {
		display: none;

	}

	.menu__link {
		display: none;
	} 

	.header__menu-top {
		gap: 60px;
	}

	.btn-media {
		display: flex;
	}

	.social {
		margin-right: -40px;
	}

	.logo-link {
		display: none;
	}

	.logo-link-media {
		display: block;
		background-image: url(../img/logo.svg);
		width: 150px;
		height: 120px;
		transition: 1s;
		margin-left: -800px;
	}

	.top {
		padding-top: 160px;
	}

	.slider {
		margin-left: 10px;
	}

	.achievement-wrapper {
		grid-template-columns: repeat(3, 3fr);
	}

	.about-wrapper {
		gap: 20px;
	}

	.faq-wrapper {
		flex-direction: column;
		justify-content: center;

	}

	.company-list {
		justify-content: center;
	}

	.partner-img {
		width: 300px;
		height: 300px;
	}

}

@media (max-width: 1000px) {
	.work-wrapper {
		display: flex;
		flex-direction: column;
	}

	.work__content {
		display: flex;
		flex-direction: column;
		justify-content: start;
	}

	.about-wrapper {
		flex-direction: column;
		justify-content: center;
	}

	.about-img {
		width: 500px;
		height: 500px;
		margin: 0 auto;
	}

	.partner-wrapper {
		flex-direction: column;
		gap: 50px;
		align-items: center;
	}

	.partner-img {
		width: 500px;
		height: 350px;
	}

	.partner {
		margin-bottom: 400px;
	}

	.simple-title {
		display: inline-block;
	}

	.activity-wrapper {
		background: linear-gradient(180deg, #6989FE 0%, #3C64F4 118.53%);;
		flex-direction: column;
		align-items: center;
		padding-bottom: 100px;

	}

	.activity-content {
		padding-top: 0px;
		padding-left: 100px;
	}

	.activity-img {
		width: 400px;
		height: 600px;
	}
}

@media(max-width:950px) {
	.achievement-wrapper {
		grid-template-columns: repeat(2, 6fr);
	}

	.footer__top-menu {
		flex-direction: column;
		justify-content: center;
		gap: 20px;
	}

	.menu__list-see {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		margin-bottom: 10px;
	}

}


@media (max-width: 860px) {
	.advantage-wrapper {
		display: grid;
		grid-template-columns: repeat(2, 3fr);
	}

	.income-wrapper {
		flex-direction: column;
		justify-content: center;
	}

	.simple-wrapper {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.social-none {
		display: none;
	}

	.logo-link-media {
		margin-right: 150px;
	}

	.top__title {
		font-size: 38px;
	}
}

@media (max-width: 700px) {
	.logo-link-media {
		margin-right: 75px;
	}

	.partner {
		margin-bottom: 500px;
	}
}

@media (max-width: 650px) {
	.logo-link-media {
		margin-right: 50px;
	}

	.faq__block__item {
		width: 400px;
	}

	.faq__block__btn {
		width: 400px;
	}

	.about-img {
		width: 350px;
		height: 350px;
	}

	.partner-img {
		width: 350px;
		height: 300px;
	}

	.work img {
		width: 350px;
		height: 350px;
	}
}

@media (max-width: 600px) {
	.advantage-wrapper {
		display: grid;
		grid-template-columns: repeat(1, 6fr);
		margin-left: auto;
		margin-right: auto;
	}

	.faq-wrapper {
		justify-content: center;
	}

	.logo-link-media {
		margin-right: 200px;
	}

	.button.btn-media {
		display: none;
	}

	.achievement-wrapper {
		grid-template-columns: repeat(1, 8fr);
		gap: 55px;
	}
}

@media (max-width: 540px) {
	.logo-link-media {
		margin-right: 150px;
	}

	.top__title {
		font-size: 32px;
		line-height: 45px;
	}

	.slider__item {
		height: 370px;
	}

	.activity-img {
		width: 300px;
		height: 400px;
	}

	.activity-content {
		margin-left: -50px;
	}

	.income-title {
		display: flex;
		flex-direction: column;
	}
	
	.partner-img {
		width: 250px;
		height: 200px;
	}

	.partner__content-title {
		font-size: 24px;
	}

	.partner {
		margin-bottom: 450px;
	}
}

@media (max-width: 490px) {
	.logo-link-media {
		margin-right: 100px;
	}

	.about-img {
		width: 250px;
		height: 250px;
	}
}

@media (max-width: 470px) {
	.logo-link-media {
		margin-right: 50px;
	}

	.top__title {
		font-size: 28px;
	}

	.faq__block__item {
		width: 350px;
	}

	.faq__block__btn {
		width: 350px;
	}

	.simple__item {
		width: 300px;
	}

	.work img {
		width: 250px;
		height: 250px;
	}
}

@media (max-width: 375px) {
	.logo-link-media {
		margin-right: 25px;
		background-image: url(../img/logo-media.svg);
		background-repeat: no-repeat;
	}

	.top__title {
		font-size: 24px;
	}

	.faq__block__item {
		width: 300px;
	}

	.faq__block__btn {
		width: 300px;
	}

	.partner__content-link {
		display: none;
	}

	.activity-content-title {
		font-size: 24px;
	}
}

@media (max-width: 345px) {
	.logo-link-media {
		margin-right: -25px;
	}

	.top__title {
		font-size: 22px;
	}
}
