.welcome {
	height: 970px !important;
}
.welcome .container {
    align-items: center;
    justify-content: center;
	text-align: center;
}
.welcome h1 {
	padding: 0;
	top: -75px;
}
.welcome h1::before {
	content: '';
	position: absolute;
	top: -10%;
	left: -10%;
	display: block;
	width: 120%;
	height: 120%;
	background: var(--accent);
	border-radius: 50%;
	filter: blur(100px);
	z-index: -1;
}
.welcome video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    object-fit: cover;
}
.welcome .video-filter {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .75;
}


.production__grid {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.production__grid-item img {
	width: 100%;
}
.producion__grid-title {
	margin-top: 16px;
	font-size: 18px;
	font-weight: 700;
	line-height: 130%;
}
.producion__grid-content {
	margin-top: 8px;
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
}

.values {
	margin-top: 64px;
}
.values__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 2.65fr 2.65fr 3.78fr 3fr;
	/*grid-template-columns: minmax(220px, 300px) minmax(220px, 300px) minmax(280px, 428px) minmax(240px, 340px);*/
}
.values__item {
	position: relative;
	padding: 24px;
	background: #0D2451;
	border-radius: 20px;
	overflow: clip;
}
.values__item-value {
	position: relative;
	z-index: 2;
	color: var(--white);
	font-size: 85px;
	font-weight: 600;
	line-height: 100%;
}
.values__item-value span {
	display: block;
	color: var(--white);
	font-size: 35px;
	font-weight: 600;
	line-height: 110%;
}
.values__item-descr {
	position: relative;
	z-index: 2;
	margin-top: 8px;
	color: var(--white);
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
}
.values__item-blur {
	position: absolute;
	top: 15%;
	left: -20%;
	background: var(--accent);
	width: 170px;
	height: 185px;
	filter: blur(40px);
	border-radius: 50%;
}

.reason {
	margin-top: 72px;
}
.reason__grid {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.reason__item {
	position: relative;
	padding: 32px;
	border-radius: 20px;
	overflow: clip;
}
.reason__item.-has-image {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.reason__item *:not(.reason__item-bg) {
	width: 100%;
	position: relative;
	z-index: 2;
}
.reason__item div {
	color: var(--white);
	font-size: 24px;
	font-weight: 600;
	line-height: 120%;
}
.reason__item p {
	margin-top: 16px;
	color: var(--white);
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
}
.reason__item-img{
	width: 100%;
	max-width: 355px;
	margin-top: 35px;
}
.reason__item-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.ecosystem {
	margin-top: 72px;
}
.ecosystem__grid {
	margin-top: 24px;
	height: 650px;
}
.ecosystem__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.ecosystem__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ecosystem__card-title {
  position: absolute;
  top: 32px;
  left: 32px;
  color: var(--white);
	font-size: 36px;
	font-weight: 500;
	line-height: 40px;
  z-index: 2;
}
.ecosystem__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 40%);
  z-index: 1;
}
.ecosystem__swiper--desktop .swiper-slide {
	height: 650px;
}
.ecosystem__grid-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: 100%;
}
.cell-1 {
  grid-column: 1;
  grid-row: 1;
}

.cell-2 {
  grid-column: 1;
  grid-row: 2;
}

.cell-3 {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.ecosystem__swiper--mobile .swiper-slide {
  height: 280px;
}
.ecosystem__swiper--mobile {
  display: none;
}
.ecosystem__swiper--desktop {
  display: block;
	overflow: visible;
}

.support {
	margin-top: 72px;
}
.support__grid {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.supprt__item {
	position: relative;
	padding: 32px;
	background: #0D2451;
	border-radius: 20px;
	aspect-ratio: 1 / 1;
}
.support__title {
	position: relative;
	z-index: 2;
	color: var(--white);
	font-size: 24px;
	font-weight: 600;
	line-height: 120%;
}
.supprt__descr {
	position: relative;
	z-index: 2;
	margin-top: 16px;
	color: var(--white);
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
}
.supprt__item img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.supprt__item-bg {
	position: absolute;
	bottom: 30%;
	right: 20%;
	width: 300px;
	height: 170px;
	background: var(--accent);
	border-radius: 50%;
	filter: blur(50px);
}

.action {
	margin-top: 72px;
}
.action__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 72px;
}
.action__item {
	position: relative;
	min-height: 264px;
	padding: 32px;
	display: flex;
	align-items: center;
	background: #0D2451;
	border-radius: 20px;
	overflow: clip;
}
.action__item.-support {
	cursor: pointer;
}
.action__item.-support img {
	opacity: .6;
	transition: opacity .2s ease;
	z-index: 2;
}
.action__item-content {
	max-width: 380px;
}
.action__item-content .title {
	color: var(--white);
	font-size: 36px;
	font-weight: 500;
	line-height: 40px;
}
.action__item-content p {
	margin-top: 16px;
	color: var(--white);
	font-size: 20px;
	font-weight: 400;
	line-height: 120%;
}

.action__item-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
	z-index: 2;
}
.action__item-links a {
	opacity: .6;
	transition: opacity .2s ease;
}
.action__item-bg {
	position: absolute;
	bottom: -15%;
	right: -10%;
	width: 230px;
	height: 230px;
	background: var(--accent);
	border-radius: 50%;
	filter: blur(50px);
}

@media (hover: hover) {
	.action__item.-support:hover > img {
		opacity: 1;
	}
	.action__item-links a:hover {
		opacity: 1;
	}
}

@media (max-width: 1500px) {
	.values__item-value {
		font-size: 70px;
	}
	.values__item-value span {
		font-size: 30px;
	}
	.supprt__item img {
		width: 80%;
	}
}

@media (max-width: 1240px) {
	.welcome {
		height: 748px !important;
	}
	.values__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.reason__item-bg {
    	object-fit: cover;
	}
	.supprt__item {
    	aspect-ratio: 1 / 1.3;
		overflow: clip;
	}
	.action__grid {
		gap: 32px;
	}
	.action__item.-support img {
		width: 100px;
	}
	.action__item {
		gap: 16px;
	}
	.action__item-links {
		gap: 16px;
	}
	.action__item-links a img {
		width: 48px;
	}
}

@media (max-width: 992px) {
	.production {
		width: 100vw;
		margin-left: -40px;
		padding: 0 40px;
	}
	.production__grid {
		gap: 0;
	}
	.values {
		width: 100vw;
		margin-left: -40px;
		padding: 0 40px;
	}
	.values__grid {
		display: flex;
		gap: 0;
	}
	.values__item {
		height: auto;
		display: flex;
		flex-direction: column;
        justify-content: space-between;
	}
	.reason__grid {
		grid-template-columns: 1fr;
	}
	.reason__item {
		min-height: 320px;
	}
	.ecosystem__grid {
		height: auto;
	}
	.ecosystem__swiper--mobile {
	  display: block;
	}
	.ecosystem__swiper--desktop {
	  display: none;
	}

	.support__grid {
		grid-template-columns: 1fr;
	}
	.supprt__item {
		aspect-ratio: auto;
		min-height: 320px;	
	}
	.supprt__item img {
		width: 30%;
	}
	.action__grid {
		grid-template-columns: 1fr;
	}
	.action__item {
		justify-content: space-evenly;
	}
}

@media (max-width: 768px) {
    .supprt__item img {
        width: 43%;
    }
}
@media (max-width: 480px) {
    .welcome {
        height: 570px !important;
    } 
	.welcome h1 {
		top: -20px;
	}
	.production {
		margin-left: -20px;
		padding: 0 20px;
	}
	.production__grid-item {
		width: 240px;
	}
	.production__grid-item img {
		border-radius: 16px;
	}
	.producion__grid-title {
		margin-top: 8px;
		font-size: 14px;
	}
	.producion__grid-content {
		font-size: 14px;
		line-height: 130%;
	}

	.values {
		margin-left: -20px;
        padding: 0 20px;
	}
	.values__item {
		min-width: 183px;
		max-width: 203px;
		width: auto;
		padding: 10px;
		border-radius: 10px;
	}
	.values__item-value {
		font-size: 46px;
	}
	.values__item-value span {
		font-size: 20px;
	}
	.values__item-descr {
		font-size: 14px;
		font-weight: 400;
		line-height: 130%;
	}
	.reason {
		margin-top: 64px;
	}
	.reason__item {
		padding: 16px;
	}
	.reason__item div {
		font-size: 18px;
		font-weight: 400;
		line-height: 130%;
	}
	.reason__item p {
		margin-top: 8px;
		font-size: 14px;
		font-weight: 400;
		line-height: 130%;
	}
	.reason__item-img {
		margin-top: 16px;
		max-width: 270px;
	}
	.ecosystem {
		margin-top: 64px;
	}
	.ecosystem__swiper--mobile {
		width: 100vw;
        margin-left: -20px;
        padding: 0 20px;
	}
	.ecosystem__swiper--mobile .swiper-slide {
		width: 295px;
		height: 240px;
	}
	.ecosystem__card-title {
		top: 16px;
		left: 16px;
		font-size: 20px;
		font-weight: 400;
		line-height: 130%;
	}
	.support {
		margin-top: 64px;
	}
	.supprt__item {
		padding: 16px;
	}
	.support__title {
		font-size: 18px;
		font-weight: 400;
		line-height: 130%;
	}
	.supprt__descr {
		margin-top: 8px;
		font-size: 14px;
		font-weight: 400;
		line-height: 130%;
	}
    .supprt__item img {
        width: 93%;
    }
	.action {
		margin-top: 64px;
	}
	.action__item {
		min-height: auto;
		padding: 16px;
		flex-direction: column;
		justify-content: flex-start;
	}
	.action__item-content {
		z-index: 2;
	}
	.action__item-content .title {
		font-size: 24px;
		font-weight: 600;
		line-height: 120%;
	}
	.action__item-content p {
		margin-top: 8px;
		font-size: 14px;
		font-weight: 400;
		line-height: 130%;
	}
	.action__item-content br {
		display: none;
	}
	.action__item.-support img {
        width: 120px;
    }
	.action__item-links {
    	grid-template-columns: repeat(4, 1fr);
		gap: 10px;
	}
	.action__item-links a img {
		width: 100%;
		max-width: 64px;
	}
}








