
section {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity .5s ease-out, transform .5s ease-out;
}

section.visible {
	opacity: 1;
	transform: translateY(0);
}

section.border-bottom {
	position: relative;
}

section.border-bottom:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 1316px;
	width: calc(100% - 50px);
	height: 1px;
	background: #e9e9e9;
}

@media screen and (max-width: 576px) {
	section.border-bottom:after {
		width: calc(100% - 32px);
	}
}

.section-container {
	max-width: 1366px;
	padding-inline: 25px;
	margin-inline: auto;
}

@media screen and (max-width: 576px) {
	.section-container {
		padding-inline: 16px;
	}
}

p {
	margin: 0;
}

@media screen and (max-width: 992px) {
	h2 br {
		display: none;
	}
}

.project-hero {
	padding-block: 24px 120px;
}

@media screen and (max-width: 992px) {
	.project-hero {
		padding-block: 32px 64px;
	}
}

@media screen and (max-width: 460px) {
	.project-hero {
		padding-block: 32px;
	}
}

.project-hero__breadcrumbs {
	margin-bottom: 72px;
}

@media screen and (max-width: 992px) {
	.project-hero__breadcrumbs {
		display: none;
	}
}

.project-hero__wrapper {
	display: flex;
	gap: 20px;
}

@media screen and (max-width: 992px) {
	.project-hero__wrapper {
		flex-wrap: wrap;
	}
}

.project-hero__block {
	flex-basis: 60%;
}

@media screen and (max-width: 992px) {
	.project-hero__block {
		flex-basis: 100%;
	}
}

.project-hero__block.block-content h1 {
	font-weight: 500;
	font-size: 45px;
	line-height: 52px;
	letter-spacing: -2px;
	color: #142c56;
	margin-block: 0 24px;
}

@media screen and (max-width: 992px) {
	.project-hero__block.block-content h1 {
		margin-block: 0 16px;
	}
}

.project-hero__block.block-content h3 {
	font-weight: 500;
	font-size: 28px;
	line-height: 36px;
	color: #142c56;
	margin-block: 0 40px;
}

@media screen and (max-width: 576px) {
	.project-hero__block.block-content h3 {
		font-size: 22px;
		line-height: 28px;
		margin-block: 0 24px;
	}
}

.project-hero__block.block-image {
	position: relative;
	height: -moz-fit-content;
	height: fit-content;
}

.project-hero__block.block-image img.hero-image {
	width: 100%;
	height: 400px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 8px;
}

@media screen and (max-width: 768px) {
	.project-hero__block.block-image img.hero-image {
		height: 352px;
	}
}

@media screen and (max-width: 460px) {
	.project-hero__block.block-image img.hero-image {
		height: 192px;
	}
}

.project-hero__block.block-image img.hero-logo {
	position: absolute;
}

@media screen and (max-width: 576px) {
	.project-hero__block.block-image img.hero-logo {
		max-height: 58px;
	}
}

.project-hero__block.block-image h2 {
	position: absolute;
	left: 30px;
	bottom: 30px;
	font-weight: 600;
	font-size: 35px;
	line-height: 33px;
	letter-spacing: -1px;
	color: #fff;
}

@media screen and (max-width: 992px) {
	.project-hero__block.block-image h2 {
		font-size: 26px;
		line-height: 24px;
	}
}

@media screen and (max-width: 460px) {
	.project-hero__block.block-image h2 {
		left: 16px;
		bottom: 16px;
		font-size: 20px;
		line-height: 18px;
	}
}

.project-hero__block.block-image.top-left img.hero-logo {
	top: 30px;
	left: 30px;
}

@media screen and (max-width: 576px) {
	.project-hero__block.block-image.top-left img.hero-logo {
		top: 16px;
		left: 16px;
	}
}

.project-hero__block.block-image.top-right img.hero-logo {
	top: 30px;
	right: 30px;
}

@media screen and (max-width: 576px) {
	.project-hero__block.block-image.top-right img.hero-logo {
		top: 16px;
		right: 16px;
	}
}

.project-hero__block.block-image.bottom-left img.hero-logo {
	bottom: 30px;
	left: 30px;
}

@media screen and (max-width: 576px) {
	.project-hero__block.block-image.bottom-left img.hero-logo {
		bottom: 16px;
		left: 16px;
	}
}

.project-hero__block.block-image.bottom-right img.hero-logo {
	bottom: 30px;
	right: 30px;
}

@media screen and (max-width: 576px) {
	.project-hero__block.block-image.bottom-right img.hero-logo {
		bottom: 16px;
		right: 16px;
	}
}

.project-hero__meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 40px;
	-moz-column-gap: 32px;
	column-gap: 32px;
}

@media screen and (max-width: 992px) {
	.project-hero__meta {
		grid-template-columns: repeat(4, 1fr);
		-moz-column-gap: 16px;
		column-gap: 16px;
		row-gap: 16px;
	}
}

@media screen and (max-width: 576px) {
	.project-hero__meta {
		grid-template-columns: repeat(2, 1fr);
	}
}

.project-hero__meta h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #142c56;
	margin-block: 0 8px;
}

@media screen and (max-width: 992px) {
	.project-hero__meta h4 {
		font-size: 16px;
		line-height: 24px;
	}
}

.project-hero__meta p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #657ba0;
}

@media screen and (max-width: 992px) {
	.project-hero__meta p {
		font-size: 14px;
		line-height: 20px;
	}
}

.project-about {
	padding-block: 0 120px;
}

@media screen and (max-width: 992px) {
	.project-about {
		padding-block: 0 64px;
	}
}

@media screen and (max-width: 460px) {
	.project-about {
		padding-block: 0 32px;
	}
}

.project-about__wrapper {
	display: flex;
	gap: 20px;
}

@media screen and (max-width: 992px) {
	.project-about__wrapper {
		flex-wrap: wrap;
	}
}

.project-about__block {
	flex-basis: 50%;
}

@media screen and (max-width: 992px) {
	.project-about__block {
		flex-basis: 100%;
	}
}

.project-about__block h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	color: #142c56;
}

.project-about__block p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
	margin: 0;
}

.project-about__block p:not(:last-child) {
	margin-bottom: 24px;
}

.project-goals {
	background-color: #f6f6f6;
	padding-block: 120px;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.project-goals {
		padding-block: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-goals {
		padding-block: 32px;
	}
}

.project-goals:has(.swiper-container-initialized) {
	padding-bottom: 64px;
}

@media screen and (max-width: 576px) {
	.project-goals:has(.swiper-container-initialized) {
		padding-bottom: 32px;
	}
}

@media screen and (min-width: 992px) {
	.project-goals:not(:has(.swiper-container-initialized)) .project-goals__slider-arrows {
		display: none;
	}
}

.project-goals__header {
	display: flex;
	gap: 20px;
	padding-bottom: 64px;
	border-bottom: 1px solid rgba(26, 26, 26, .1);
	margin-bottom: 64px;
}

@media screen and (max-width: 992px) {
	.project-goals__header {
		padding-bottom: 40px;
		margin-bottom: 40px;
	}
}

@media screen and (max-width: 576px) {
	.project-goals__header {
		flex-wrap: wrap;
		padding-bottom: 24px;
		margin-bottom: 24px;
	}
}

.project-goals__header-block {
	flex-basis: 50%;
}

@media screen and (max-width: 576px) {
	.project-goals__header-block {
		flex-basis: 100%;
	}
}

.project-goals__header-block h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	color: #142c56;
}

.project-goals__header-block p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
	margin: 0;
}

.project-goals__header-block p:not(:last-child) {
	margin-bottom: 24px;
}

.project-goals__slider h3 {
	font-weight: 600;
	font-size: 22px;
	line-height: 28px;
	letter-spacing: 0;
	padding-bottom: 64px;
	color: #30466d;
	width: 50%;
}

@media screen and (max-width: 992px) {
	.project-goals__slider h3 {
		padding-bottom: 40px;
		width: 100%;
	}
}

@media screen and (max-width: 576px) {
	.project-goals__slider h3 {
		padding-bottom: 24px;
		font-size: 18px;
		line-height: 26px;
	}
}

.project-goals__slider-header {
	display: flex;
	gap: 20px;
	padding-bottom: 64px;
}

@media screen and (max-width: 992px) {
	.project-goals__slider-header {
		padding-bottom: 40px;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 576px) {
	.project-goals__slider-header {
		padding-bottom: 32px;
	}
}

.project-goals__slider-header .slider-header-text {
	flex-basis: 50%;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

@media screen and (max-width: 992px) {
	.project-goals__slider-header .slider-header-text {
		flex-basis: 100%;
	}
}

.project-goals__slider-header .slider-header-text:first-child {
	padding-right: 20px;
}

@media screen and (max-width: 992px) {
	.project-goals__slider-header .slider-header-text:first-child {
		padding-right: 0;
	}
}

.project-goals__slider-list.swiper-container-initialized {
	margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
	.project-goals__slider-list.swiper-container-initialized {
		margin-bottom: 24px;
	}
}

@media screen and (min-width: 992px) {
	.project-goals__slider-list:not(.swiper-container-initialized) .swiper-wrapper {
		display: flex;
		gap: 20px;
	}
}

@media screen and (min-width: 992px) {
	.project-goals__slider-list:not(.swiper-container-initialized) .swiper-wrapper .project-goals__slider-item {
		width: 33.3333333333%;
		flex-shrink: 1;
	}
}

.project-goals__slider-item {
	width: 314px;
	padding: 24px;
	background-color: #fff;
	border-radius: 4px;
	height: auto;
	position: relative;
	overflow: hidden;
}

.project-goals__slider-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #668fd7 50%, transparent 50%);
}

.project-goals__slider-item:nth-child(3n+2)::before {
	background: linear-gradient(135deg, #ffc800 50%, transparent 50%);
}

.project-goals__slider-item:nth-child(3n+3)::before {
	background: linear-gradient(135deg, #39c46e 50%, transparent 50%);
}

@media screen and (max-width: 992px) {
	.project-goals__slider-item {
		width: 376px;
	}
}

@media screen and (max-width: 576px) {
	.project-goals__slider-item {
		width: 344px;
	}
}

.project-goals__slider-item h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 16px;
	color: #30466d;
}

.project-goals__slider-item p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-goals__slider-arrows {
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: center;
}

.project-goals__slider-arrows .arrow-button {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color .3s ease-in-out;
	border: 1px solid rgba(20, 44, 86, .1);
}

.project-goals__slider-arrows .arrow-button:hover {
	background-color: rgba(20, 44, 86, .1);
}

.project-goals__footer {
	display: flex;
	gap: 20px;
	padding-top: 64px;
}

@media screen and (max-width: 992px) {
	.project-goals__footer {
		padding-top: 40px;
	}
}

@media screen and (max-width: 576px) {
	.project-goals__footer {
		padding-top: 32px;
		flex-wrap: wrap;
	}
}

.project-goals__footer p {
	flex-basis: 50%;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

@media screen and (max-width: 576px) {
	.project-goals__footer p {
		flex-basis: 100%;
	}
}

.project-road {
	padding-block: 120px;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.project-road {
		padding-block: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-road {
		padding-block: 32px;
	}
}

.project-road:has(.swiper-container-initialized) {
	padding-bottom: 64px;
}

@media screen and (max-width: 576px) {
	.project-road:has(.swiper-container-initialized) {
		padding-bottom: 32px;
	}
}

@media screen and (min-width: 992px) {
	.project-road:not(:has(.swiper-container-initialized)) .project-road__slider-arrows {
		display: none;
	}
}

.project-road__header {
	display: flex;
	gap: 20px;
	padding-bottom: 120px;
}

@media screen and (max-width: 992px) {
	.project-road__header {
		padding-bottom: 40px;
	}
}

@media screen and (max-width: 576px) {
	.project-road__header {
		flex-wrap: wrap;
		padding-bottom: 24px;
	}
}

.project-road__header-block {
	flex-basis: 50%;
}

@media screen and (max-width: 576px) {
	.project-road__header-block {
		flex-basis: 100%;
	}
}

.project-road__header-block h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	color: #142c56;
}

.project-road__header-block p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-road__slider-list.swiper-container-initialized {
	margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
	.project-road__slider-list.swiper-container-initialized {
		margin-bottom: 24px;
	}
}

@media screen and (min-width: 992px) {
	.project-road__slider-list:not(.swiper-container-initialized) .swiper-wrapper {
		display: flex;
		gap: 20px;
	}
}

@media screen and (min-width: 992px) {
	.project-road__slider-list:not(.swiper-container-initialized) .swiper-wrapper .project-road__slider-item {
		width: 33.3333333333%;
		flex-shrink: 1;
	}
}

.project-road__slider-item {
	width: 314px;
	height: auto;
	position: relative;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.project-road__slider-item {
		width: 376px;
	}
}

@media screen and (max-width: 576px) {
	.project-road__slider-item {
		width: 344px;
	}
}

.project-road__slider-item>span {
	position: relative;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.project-road__slider-item>span:after {
	content: "";
	width: 100%;
	height: 2px;
	background: #ebf0f8;
}

@media screen and (max-width: 576px) {
	.project-road__slider-item>span {
		margin-bottom: 24px;
	}
}

.project-road__slider-item h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 16px;
	color: #30466d;
}

.project-road__slider-item p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-road__slider-arrows {
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: center;
}

.project-road__slider-arrows .arrow-button {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color .3s ease-in-out;
	border: 1px solid rgba(20, 44, 86, .1);
}

.project-road__slider-arrows .arrow-button:hover {
	background-color: rgba(20, 44, 86, .1);
}

.project-roadmap {
	padding-block: 120px;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.project-roadmap {
		padding-block: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-roadmap {
		padding-block: 32px;
	}
}

.project-roadmap__header {
	display: flex;
	gap: 20px;
	padding-bottom: 120px;
}

@media screen and (max-width: 992px) {
	.project-roadmap__header {
		padding-bottom: 40px;
	}
}

@media screen and (max-width: 576px) {
	.project-roadmap__header {
		flex-wrap: wrap;
		padding-bottom: 24px;
	}
}

.project-roadmap__header-block {
	flex-basis: 50%;
}

@media screen and (max-width: 576px) {
	.project-roadmap__header-block {
		flex-basis: 100%;
	}
}

.project-roadmap__header-block h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	color: #142c56;
}

.project-roadmap__header-block p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-roadmap__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	-moz-column-gap: 20px;
	column-gap: 20px;
	row-gap: 120px;
}

@media screen and (max-width: 992px) {
	.project-roadmap__grid {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-roadmap__grid {
		grid-template-columns: 1fr;
		row-gap: 32px;
	}
}

.project-roadmap__item {
	position: relative;
	overflow: hidden;
}

.project-roadmap__item>span {
	position: relative;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.project-roadmap__item>span:after {
	content: "";
	width: 100%;
	height: 2px;
	background: #ebf0f8;
}

@media screen and (max-width: 576px) {
	.project-roadmap__item>span {
		margin-bottom: 24px;
	}
}

.project-roadmap__item h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 16px;
	color: #30466d;
}

.project-roadmap__item p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-techno {
	padding-block: 120px;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.project-techno {
		padding-block: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-techno {
		padding-block: 32px;
	}
}

.project-techno__header {
	display: flex;
	gap: 20px;
	margin-bottom: 48px;
}

@media screen and (max-width: 576px) {
	.project-techno__header {
		flex-wrap: wrap;
	}
}

.project-techno__header h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	color: #142c56;
	flex-basis: 50%;
}

@media screen and (max-width: 576px) {
	.project-techno__header h2 {
		flex-basis: 100%;
	}
}

.project-techno__header>p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
	flex-basis: 50%;
}

@media screen and (max-width: 576px) {
	.project-techno__header>p {
		flex-basis: 100%;
	}
}

.project-techno__wrapper {
	display: flex;
	gap: 20px;
}

@media screen and (max-width: 992px) {
	.project-techno__wrapper {
		flex-wrap: wrap;
		gap: 40px;
	}
}

.project-techno__block {
	flex-basis: 50%;
}

@media screen and (max-width: 992px) {
	.project-techno__block {
		flex-basis: 100%;
	}
}

.project-techno__block>h3 {
	font-weight: 600;
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 24px;
	color: #30466d;
}

.project-techno__list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	padding-right: 20px;
}

@media screen and (max-width: 992px) {
	.project-techno__list {
		padding-right: 0;
	}
}

@media screen and (max-width: 576px) {
	.project-techno__list {
		gap: 8px;
	}
}

.project-techno__item {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #30466d;
	padding: 16px 24px;
	background-color: rgba(28, 28, 28, .03);
	border-radius: 60px;
}

@media screen and (max-width: 576px) {
	.project-techno__item {
		padding: 12px 20px;
		font-size: 16px;
		line-height: 24px;
	}
}

.project-techno__grid {
	padding-right: 24px;
}

@media screen and (max-width: 992px) {
	.project-techno__grid {
		padding-right: 0;
	}
}

.project-techno__grid-item {
	display: grid;
	grid-template-columns: 33.33% 66.66%;
	gap: 16px;
	border-top: 1px solid rgba(28, 28, 28, .1);
	padding-block: 16px;
}

@media screen and (max-width: 992px) {
	.project-techno__grid-item {
		grid-template-columns: 1fr 1fr;
	}
}

.project-techno__grid-item .key {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-techno__grid-item .value {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-techno .accordion-item:not(:first-child) {
	padding-top: 32px;
}

@media screen and (max-width: 992px) {
	.project-techno .accordion-item:not(:first-child) {
		padding-top: 24px;
	}
}

.project-techno .accordion-item:not(:last-child) {
	padding-bottom: 32px;
	border-bottom: 1px solid #e9e9e9;
}

@media screen and (max-width: 992px) {
	.project-techno .accordion-item:not(:last-child) {
		padding-bottom: 24px;
	}
}

.project-techno .accordion-item.active .accordion-item__title:after {
	transform: rotate(180deg);
}

.project-techno .accordion-item__title {
	font-weight: 600;
	font-size: 22px;
	line-height: 28px;
	color: #30466d;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.project-techno .accordion-item__title:after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("https://cdn-cahge.nitrocdn.com/mAPkqokVpTrmAtoawHbGRdGNnCYBNdZh/assets/images/optimized/rev-604eda1/elogic.co/wp-content/themes/elogic/resources/images/svg/arrow-down-sharp.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-left: 16px;
	transition: transform .3s ease-in-out;
}

.project-techno .accordion-item__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease-in-out;
}

.project-techno .accordion-item__content p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
	margin-top: 16px;
}

.project-techno .accordion-item__content p:not(:last-child) {
	margin-bottom: 16px;
}

.project-techno .accordion-item__content ul {
	list-style: disc;
	padding-left: 24px;
}

.project-techno .accordion-item__content ul li {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-techno .accordion-item.active .accordion-item__content {
	max-height: 1000px;
}

.project-ecosystem {
	padding-block: 120px;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.project-ecosystem {
		padding-block: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-ecosystem {
		padding-block: 32px;
	}
}

.project-ecosystem__wrapper {
	display: flex;
	gap: 20px;
	margin-bottom: 48px;
}

@media screen and (max-width: 992px) {
	.project-ecosystem__wrapper {
		flex-wrap: wrap;
	}
}

.project-ecosystem__block {
	flex-basis: 50%;
}

@media screen and (max-width: 992px) {
	.project-ecosystem__block {
		flex-basis: 100%;
	}
}

.project-ecosystem__block.block-title {
	padding-right: 20px;
}

@media screen and (max-width: 992px) {
	.project-ecosystem__block.block-title {
		padding-right: 0;
	}
}

.project-ecosystem__block.block-title h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	color: #142c56;
	flex-basis: 50%;
	margin-bottom: 20px;
}

.project-ecosystem__block.block-title>p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-ecosystem .accordion-item:not(:first-child) {
	padding-top: 32px;
}

@media screen and (max-width: 992px) {
	.project-ecosystem .accordion-item:not(:first-child) {
		padding-top: 24px;
	}
}

.project-ecosystem .accordion-item:not(:last-child) {
	padding-bottom: 32px;
	border-bottom: 1px solid #e9e9e9;
}

@media screen and (max-width: 992px) {
	.project-ecosystem .accordion-item:not(:last-child) {
		padding-bottom: 24px;
	}
}

.project-ecosystem .accordion-item.active .accordion-item__title:after {
	transform: rotate(180deg);
}

.project-ecosystem .accordion-item__title {
	font-weight: 600;
	font-size: 22px;
	line-height: 28px;
	color: #30466d;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.project-ecosystem .accordion-item__title:after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("https://cdn-cahge.nitrocdn.com/mAPkqokVpTrmAtoawHbGRdGNnCYBNdZh/assets/images/optimized/rev-604eda1/elogic.co/wp-content/themes/elogic/resources/images/svg/arrow-down-sharp.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-left: 16px;
	transition: transform .3s ease-in-out;
}

.project-ecosystem .accordion-item__content {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease-in-out;
}

.project-ecosystem .accordion-item__content p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
	margin-top: 16px;
}

.project-ecosystem .accordion-item__content ul {
	list-style: disc;
	padding-left: 24px;
}

.project-ecosystem .accordion-item__content ul li {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-ecosystem .accordion-item.active .accordion-item__content {
	max-height: 1000px;
}

.project-progress {
	padding-block: 120px;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.project-progress {
		padding-block: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-progress {
		padding-block: 32px;
	}
}

.project-progress__wrapper {
	display: flex;
	gap: 88px;
}

@media screen and (max-width: 992px) {
	.project-progress__wrapper {
		flex-wrap: wrap;
		gap: 0;
	}
}

.project-progress__block {
	flex-basis: 50%;
}

@media screen and (max-width: 992px) {
	.project-progress__block {
		flex-basis: 100%;
	}
}

.project-progress__block.block-content h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	margin-bottom: 64px;
	color: #142c56;
}

@media screen and (max-width: 992px) {
	.project-progress__block.block-content h2 {
		margin-bottom: 40px;
	}
	
	.project-progress__block.block-content h2 br {
		display: none;
	}
}

@media screen and (max-width: 576px) {
	.project-progress__block.block-content h2 {
		margin-bottom: 24px;
	}
}

.project-progress__block.block-content ul li {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

@media screen and (max-width: 992px) {
	.project-progress__block.block-content ul li {
		gap: 16px;
	}
}

.project-progress__block.block-content ul li img {
	width: 24px;
	height: 24px;
	display: block;
	padding: 4px;
}

.project-progress__block.block-content ul li:not(:first-child) {
	padding-top: 24px;
}

.project-progress__block.block-content ul li:not(:last-child) {
	padding-bottom: 24px;
	border-bottom: 1px solid #e9e9e9;
}

@media screen and (max-width: 992px) {
	.project-progress__block.block-image {
		display: none;
	}
}

.project-progress__block.block-image img {
	width: 100%;
	height: 100%;
	max-height: 580px;
	aspect-ratio: 1/1;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 4px;
}

.project-results {
	padding-block: 120px;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.project-results {
		padding-block: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-results {
		padding-block: 32px;
	}
}

.project-results__wrapper {
	display: flex;
	gap: 20px;
}

@media screen and (max-width: 992px) {
	.project-results__wrapper {
		flex-wrap: wrap;
		gap: 40px;
	}
}

.project-results__block {
	flex-basis: 50%;
}

@media screen and (max-width: 992px) {
	.project-results__block {
		flex-basis: 100%;
	}
}

.project-results__block.block-title h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	margin-bottom: 20px;
	color: #142c56;
}

@media screen and (max-width: 992px) {
	.project-results__block.block-title h2 br {
		display: none;
	}
}

@media screen and (max-width: 576px) {
	.project-results__block.block-title h2 {
		margin-bottom: 24px;
	}
}

.project-results__block.block-title p {
	font-weight: 500;
	font-size: 22px;
	line-height: 28px;
	color: #30466d;
}

@media screen and (max-width: 576px) {
	.project-results__block.block-title p {
		font-size: 18px;
		line-height: 24px;
	}
}

.project-results__block.block-list>p {
	font-size: 18px;
	line-height: 26px;
	color: #30466d;
}

@media screen and (max-width: 576px) {
	.project-results__block.block-list>p {
		font-size: 16px;
		line-height: 24px;
	}
}

.project-results__block.block-list>p.text-before {
	margin-bottom: 24px;
	font-weight: 600;
}

.project-results__block.block-list>p.text-after {
	margin-top: 24px;
	font-weight: 500;
}

.project-results__block.block-list>p.list-1-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #30466d;
	margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
	.project-results__block.block-list>p.list-1-title {
		margin-bottom: 32px;
	}
}

.project-results__block.block-list>p.list-2-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #30466d;
	margin-top: 40px;
}

@media screen and (max-width: 576px) {
	.project-results__block.block-list>p.list-2-title {
		margin-bottom: 32px;
	}
}

.project-results__block.block-list:has(.text-before) ul li:first-child {
	padding-top: 24px;
	border-top: 1px solid #e9e9e9;
}

.project-results__block.block-list:has(.text-after) ul li:last-child {
	padding-bottom: 24px;
	border-bottom: 1px solid #e9e9e9;
}

.project-results__block.block-list ul.list-2 {
	margin-top: 40px;
}

.project-results__block.block-list ul li {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

@media screen and (max-width: 992px) {
	.project-results__block.block-list ul li {
		gap: 16px;
	}
}

.project-results__block.block-list ul li img {
	width: 24px;
	height: 24px;
	display: block;
	padding: 4px;
}

.project-results__block.block-list ul li:not(:first-child) {
	padding-top: 24px;
}

.project-results__block.block-list ul li:not(:last-child) {
	padding-bottom: 24px;
	border-bottom: 1px solid #e9e9e9;
}

.project-results__block.block-list ul li>span h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 8px;
}

.project-results__block.block-list ul li>span span {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}

.project-impact {
	padding-block: 120px;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.project-impact {
		padding-block: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-impact {
		padding-block: 32px;
	}
}

.project-impact__wrapper {
	display: flex;
	gap: 20px;
}

@media screen and (max-width: 992px) {
	.project-impact__wrapper {
		flex-wrap: wrap;
		gap: 40px;
	}
}

.project-impact__block {
	flex-basis: 50%;
}

@media screen and (max-width: 992px) {
	.project-impact__block {
		flex-basis: 100%;
	}
}

.project-impact__block.block-title h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	margin-bottom: 20px;
	color: #142c56;
}

@media screen and (max-width: 992px) {
	.project-impact__block.block-title h2 br {
		display: none;
	}
}

@media screen and (max-width: 576px) {
	.project-impact__block.block-title h2 {
		margin-bottom: 24px;
	}
}

.project-impact__block.block-title p {
	font-weight: 500;
	font-size: 22px;
	line-height: 28px;
	color: #30466d;
}

@media screen and (max-width: 576px) {
	.project-impact__block.block-title p {
		font-size: 18px;
		line-height: 24px;
	}
}

.project-impact__block.block-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

@media screen and (max-width: 576px) {
	.project-impact__block.block-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.project-impact__item {
	padding: 24px;
	position: relative;
	background-color: #f6f6f6;
	overflow: hidden;
	border-radius: 4px;
}

.project-impact__item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #668fd7 50%, transparent 50%);
}

.project-impact__item:nth-child(4n+2)::before {
	background: linear-gradient(135deg, #ffc800 50%, transparent 50%);
}

.project-impact__item:nth-child(4n+3)::before {
	background: linear-gradient(135deg, #39c46e 50%, transparent 50%);
}

.project-impact__item:nth-child(4n+4)::before {
	background: linear-gradient(135deg, #142c56 50%, transparent 50%);
}

.project-impact__item h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 16px;
	color: #142c56;
}

.project-impact__item p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-growth {
	padding-block: 120px 136px;
	padding-inline: 64px;
	overflow: hidden;
	background-color: #1e1e1e;
	width: calc(100% - 50px);
	max-width: 1556px;
	margin: 0 auto;
	border-radius: 8px;
	color: #fff;
	position: relative;
}

.project-growth.margin-bottom {
	margin-bottom: 120px;
}

@media screen and (max-width: 992px) {
	.project-growth.margin-bottom {
		margin-bottom: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-growth.margin-bottom {
		margin-bottom: 32px;
	}
}

.project-growth:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 16px;
	background: #95a4fc;
}

.project-growth:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 16px;
	background: #c6c7f8;
}

@media screen and (max-width: 992px) {
	.project-growth {
		padding-block: 64px 80px;
	}
}

@media screen and (max-width: 576px) {
	.project-growth {
		padding-block: 16px 32px;
		padding-inline: 16px;
		width: calc(100% - 32px);
	}
}

.project-growth .section-container {
	max-width: 1316px;
	padding-inline: 0;
}

.project-growth__wrapper {
	display: flex;
	gap: 20px;
}

@media screen and (max-width: 992px) {
	.project-growth__wrapper {
		flex-wrap: wrap;
		gap: 24px;
	}
}

.project-growth__block {
	flex-basis: 50%;
}

@media screen and (max-width: 992px) {
	.project-growth__block {
		flex-basis: 100%;
	}
}

.project-growth__block.block-title h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	margin-bottom: 32px;
}

@media screen and (max-width: 992px) {
	.project-growth__block.block-title h2 br {
		display: none;
	}
}

@media screen and (max-width: 576px) {
	.project-growth__block.block-title h2 {
		margin-bottom: 16px;
	}
}

.project-growth__block.block-title h3 {
	font-weight: 500;
	font-size: 28px;
	line-height: 36px;
}

@media screen and (max-width: 576px) {
	.project-growth__block.block-title h3 {
		font-size: 22px;
		line-height: 28px;
	}
}

.project-growth__block.block-content.content-text h3, .project-growth__block.block-content.content-text h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 16px;
}

.project-growth__block.block-content.content-text ul {
	margin-bottom: 32px;
	list-style: disc;
	padding-left: 24px;
}

@media screen and (max-width: 576px) {
	.project-growth__block.block-content.content-text ul {
		margin-bottom: 24px;
	}
}

.project-growth__block.block-content.content-text ul li {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}

.project-growth__block.block-content.content-text p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 16px;
}

.project-growth__block.block-content.content-text p:last-child {
	margin-bottom: 0;
}

.project-growth__block.block-content.content-list .list-wrapper .list-item {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

@media screen and (max-width: 992px) {
	.project-growth__block.block-content.content-list .list-wrapper .list-item {
		gap: 16px;
	}
}

.project-growth__block.block-content.content-list .list-wrapper .list-item img {
	width: 24px;
	height: 24px;
	display: block;
	padding: 4px;
}

.project-growth__block.block-content.content-list .list-wrapper .list-item:not(:first-child) {
	padding-top: 24px;
}

.project-growth__block.block-content.content-list .list-wrapper .list-item:not(:last-child) {
	padding-bottom: 24px;
	border-bottom: 1px solid #424242;
}

.project-growth__block.block-content.content-list .list-wrapper .list-item .item-content h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 8px;
}

.project-growth__block.block-content.content-list .list-wrapper .list-item .item-content p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}

.project-expansion {
	padding-block: 120px;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.project-expansion {
		padding-block: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-expansion {
		padding-block: 32px;
	}
}

.project-expansion:has(.swiper-container-initialized) {
	padding-bottom: 64px;
}

@media screen and (max-width: 576px) {
	.project-expansion:has(.swiper-container-initialized) {
		padding-bottom: 32px;
	}
}

@media screen and (min-width: 576px) {
	.project-expansion:has(:not(.swiper-container-initialized)) .project-expansion__slider-arrows {
		display: none;
	}
}

.project-expansion__header {
	display: flex;
	gap: 20px;
	padding-bottom: 120px;
}

@media screen and (max-width: 992px) {
	.project-expansion__header {
		padding-bottom: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-expansion__header {
		flex-wrap: wrap;
		padding-bottom: 32px;
	}
}

.project-expansion__header-block {
	flex-basis: 50%;
}

@media screen and (max-width: 576px) {
	.project-expansion__header-block {
		flex-basis: 100%;
	}
}

.project-expansion__header-block h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	color: #142c56;
}

.project-expansion__header-block p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
	max-width: 526px;
}

.project-expansion__slider>h3 {
	font-weight: 500;
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
	.project-expansion__slider>h3 {
		margin-bottom: 24px;
	}
}

.project-expansion__slider-list.swiper-container-initialized {
	margin-bottom: 40px;
}

@media screen and (max-width: 576px) {
	.project-expansion__slider-list.swiper-container-initialized {
		margin-bottom: 24px;
	}
}

@media screen and (min-width: 576px) {
	.project-expansion__slider-list:not(.swiper-container-initialized) .swiper-wrapper {
		display: flex;
		gap: 20px;
	}
}

@media screen and (min-width: 576px) {
	.project-expansion__slider-list:not(.swiper-container-initialized) .swiper-wrapper .project-expansion__slider-item {
		width: 25%;
		flex-shrink: 1;
	}
}

.project-expansion__slider-item {
	width: 314px;
	height: auto;
	position: relative;
	overflow: hidden;
}

@media screen and (max-width: 576px) {
	.project-expansion__slider-item {
		width: 280px;
	}
}

.project-expansion__slider-item>span.number {
	position: relative;
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	gap: 24px;
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	color: #95a4fc;
}

.project-expansion__slider-item>span.number:after {
	content: "";
	width: 100%;
	height: 2px;
	background: #ebf0f8;
}

@media screen and (max-width: 576px) {
	.project-expansion__slider-item>span.number {
		margin-bottom: 24px;
	}
}

.project-expansion__slider-item h4 {
	font-weight: 600;
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 16px;
	color: #30466d;
	display: block;
}

.project-expansion__slider-item p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-expansion__slider-item.with-icons span.number {
	margin-bottom: 40px;
}

.project-expansion__slider-item.highlighted .item-content {
	background-color: #95a4fc;
	padding: 24px;
	border-radius: 8px;
}

.project-expansion__slider-item.highlighted .item-content p {
	color: #fff;
}

.project-expansion__slider-arrows {
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: center;
}

.project-expansion__slider-arrows .arrow-button {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color .3s ease-in-out;
	border: 1px solid rgba(20, 44, 86, .1);
}

.project-expansion__slider-arrows .arrow-button:hover {
	background-color: rgba(20, 44, 86, .1);
}

.project-expansion__footer {
	margin-top: 64px;
	padding: 24px;
	background-color: #95a4fc;
	border-radius: 8px;
}

@media screen and (max-width: 576px) {
	.project-expansion__footer {
		margin-top: 32px;
	}
}

.project-expansion__footer p {
	font-weight: 500;
	font-size: 22px;
	line-height: 28px;
	text-align: center;
	color: #fff;
}

@media screen and (max-width: 576px) {
	.project-expansion__footer p {
		font-size: 18px;
		line-height: 24px;
	}
}

.project-partnership {
	padding-block: 120px;
	overflow: hidden;
}

@media screen and (max-width: 992px) {
	.project-partnership {
		padding-block: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-partnership {
		padding-block: 32px;
	}
}

.project-partnership h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	color: #142c56;
	margin-bottom: 64px;
}

@media screen and (max-width: 992px) {
	.project-partnership h2 {
		margin-bottom: 40px;
	}
}

.project-partnership__wrapper {
	display: flex;
	gap: 20px;
}

@media screen and (max-width: 992px) {
	.project-partnership__wrapper {
		flex-wrap: wrap;
	}
}

.project-partnership__block {
	flex-basis: 50%;
}

@media screen and (max-width: 992px) {
	.project-partnership__block {
		flex-basis: 100%;
	}
}

.project-partnership__block p {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-partnership__block p:not(:last-child) {
	margin-bottom: 24px;
}

.project-partnership__block ul {
	list-style: disc;
	padding-left: 24px;
}

.project-partnership__block ul li {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #30466d;
}

.project-partners {
	padding-block: 120px;
	overflow: hidden;
	margin-bottom: 120px;
	background-color: #f6f6f6;
}

@media screen and (max-width: 992px) {
	.project-partners {
		padding-block: 64px;
		margin-bottom: 64px;
	}
}

@media screen and (max-width: 576px) {
	.project-partners {
		padding-block: 32px;
	}
}

.with-partner .project-partners__wrapper {
	display: flex;
}

@media screen and (max-width: 992px) {
	.with-partner .project-partners__wrapper {
		flex-wrap: wrap;
	}
}

.project-partners__wrapper:not(.with-partner .project-partners__wrapper) {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1120px;
	margin: 0 auto;
}

.project-partners__wrapper:not(.with-partner .project-partners__wrapper) .logo-elogic {
	margin-bottom: 52px;
	width: 190px;
}

@media screen and (max-width: 576px) {
	.project-partners__wrapper:not(.with-partner .project-partners__wrapper) .logo-elogic {
		margin-bottom: 32px;
	}
}

.project-partners__wrapper:not(.with-partner .project-partners__wrapper) .logo-elogic img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

.project-partners__wrapper:not(.with-partner .project-partners__wrapper) h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	color: #142c56;
	margin-bottom: 32px;
	text-align: center;
}

@media screen and (max-width: 576px) {
	.project-partners__wrapper:not(.with-partner .project-partners__wrapper) h2 {
		margin-bottom: 20px;
	}
}

.project-partners__wrapper:not(.with-partner .project-partners__wrapper) p {
	font-weight: 500;
	font-size: 22px;
	line-height: 28px;
	color: #30466d;
	text-align: center;
}

@media screen and (max-width: 576px) {
	.project-partners__wrapper:not(.with-partner .project-partners__wrapper) p {
		font-size: 18px;
		line-height: 26px;
	}
}

.with-partner .project-partners__block {
	flex-basis: 50%;
}

@media screen and (max-width: 992px) {
	.with-partner .project-partners__block {
		flex-basis: 100%;
	}
}

.with-partner .project-partners__block.block-title {
	padding-right: 44px;
	border-right: 1px solid rgba(28, 28, 28, .1);
}

@media screen and (max-width: 992px) {
	.with-partner .project-partners__block.block-title {
		padding-right: 0;
		border-right: none;
		padding-bottom: 44px;
		border-bottom: 1px solid rgba(28, 28, 28, .1);
	}
}

@media screen and (max-width: 576px) {
	.with-partner .project-partners__block.block-title {
		padding-bottom: 32px;
	}
}

.with-partner .project-partners__block.block-title h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: -2px;
	color: #142c56;
	margin-bottom: 32px;
}

@media screen and (max-width: 576px) {
	.with-partner .project-partners__block.block-title h2 {
		margin-bottom: 20px;
	}
}

.with-partner .project-partners__block.block-title p {
	font-weight: 500;
	font-size: 22px;
	line-height: 28px;
	color: #30466d;
}

@media screen and (max-width: 576px) {
	.with-partner .project-partners__block.block-title p {
		font-size: 18px;
		line-height: 26px;
	}
}

.with-partner .project-partners__block.block-logos {
	padding-left: 44px;
}

@media screen and (max-width: 992px) {
	.with-partner .project-partners__block.block-logos {
		padding-left: 0;
		border-left: none;
		padding-top: 44px;
	}
}

@media screen and (max-width: 576px) {
	.with-partner .project-partners__block.block-logos {
		padding-top: 32px;
	}
}

.with-partner .project-partners__block.block-logos .logos-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	gap: 64px;
	padding: 18px 0;
}

@media screen and (max-width: 992px) {
	.with-partner .project-partners__block.block-logos .logos-wrapper {
		gap: 60px;
	}
}

@media screen and (max-width: 576px) {
	.with-partner .project-partners__block.block-logos .logos-wrapper {
		gap: 24px;
		padding: 14px 32px;
	}
}

.with-partner .project-partners__block.block-logos .logos-wrapper .logo-partner {
	max-width: 198px;
	flex-shrink: 1;
}

@media screen and (max-width: 576px) {
	.with-partner .project-partners__block.block-logos .logos-wrapper .logo-partner img {
		max-height: 66px;
	}
}

.with-partner .project-partners__block.block-logos .logos-wrapper .logo-elogic {
	max-width: 246px;
	flex-shrink: 1;
}

@media screen and (max-width: 576px) {
	.with-partner .project-partners__block.block-logos .logos-wrapper .logo-elogic {
		max-width: 135px;
	}
}

.with-partner .project-partners__block.block-logos .logos-wrapper img {
	-o-object-fit: contain;
	object-fit: contain;
	height: 100%;
	width: 100%;
}

.with-partner .project-partners__block.block-logos .logos-wrapper img.logos-separator {
	width: 24px;
	height: 24px;
}
