/* Slider
	 ========================================================================== */

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	color: #464F5E;
	font-size: 16px;
	background: #FCFCFC;
}
.bg-mask{
	
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);

    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;

}
.home-slider {
	overflow: hidden;
}
.home-slider .swiper-slide {
	position: relative;
	display: flex;
	margin-top: 40px;
	min-height: calc(100vh - 80px);
	justify-content:space-around;
}

.home-slider .swiper-slide:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
}
.hero-bg-video{
    width: 650px;
    height: 650px;
    object-fit: cover;
    padding-top: 20px;
}
/* background: linear-gradient(0deg, rgba(3, 8, 20, 0.5), rgba(3, 8, 20, 0.5)); /* Використовуємо background замість background-color */
 
.home-slider .swiper-slide__container {
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.home-slider .text-group__top {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}

.home-slider .text-group__sub-title {
	font-weight: 800;
	font-size: 28px;
	line-height: 38px;
	text-align: left;
	color: #FFFFFF;

}

.home-slider .text-group__short-descr {
	margin-top: 45px;
}

.home-slider .swiper-slide__link {
	margin-left: auto;
	margin-right: auto;
	margin-top: 45px;
	margin-bottom: 45px;
}


.home-slider .text-group__title,
.home-slider .text-group__sub-title,
.home-slider .text-group__short-descr {
	color: #101F38;
	display: block;
	text-align: left;
	font-weight: 800;
	text-transform: uppercase;
}

.home-slider .swiper-prev {
	left: 4%;
}

.home-slider .swiper-next {
	right: 4%;
}

@media (max-width: 520px) {
	.home-slider .text-group__sub-title {
		font-size: 22px;
		line-height: 1.1;
	}

	.home-slider .text-group__short-descr {
		margin-top: 30px;
	}

	.home-slider .swiper-slide__link {
		margin-top: 30px;
	}

	.home-slider__swiper-slide {
		min-height: 430px;
	}
}

/* Benefits
	 ========================================================================== */

.benefits__list {
	margin-top: 45px;
	display: grid;
	grid-template-columns: repeat(4,auto);
	grid-gap: 0 30px;
}

.benefits__item {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
	align-items: center;
	max-width: 220px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.benefits .item__img {
	display: block;
	width: 80px;
	height: 60px;
	object-fit: contain;
}

.benefits .item__text {
	display: block;
	text-align: center;
	font-size: 14px;
	line-height: 19px;
	color: #101F38;
}

@media (max-width: 767px) {
	.benefits__list {
		grid-gap: 24px;
		grid-template-columns: repeat(2, 1fr);
	}
}


/* Platforms
	 ========================================================================== */
.platforms__swiper-container {
	margin-top: 45px;
	border-bottom: 2px solid #DEE3ED26;
	padding-bottom: 15px;
}


.platforms .swiper-slide__img {
	display: block;
	width: 100%;
	height: 90px;
	object-fit: contain;
	object-position: center;
	transition: 0.3s;
}
.platforms .swiper-slide__img:hover{
	opacity: 0.4;
}

.platforms  .swiper-next,
.platforms  .swiper-prev {
		display: none;
}
.platforms{
	padding-top: 15px;
	border-top: 2px solid #DEE3ED26;
}
.platforms h3{
	color: #CEC8D7;
	transition: 0.3s;
}
.platforms h3:hover{
	color: #803DF3;
}
@media (max-width: 520px) {
	.platforms  .swiper-next,
	.platforms  .swiper-prev {
		display: flex;
	}
}

/* Delivery
	 ========================================================================== */

.delivery__main-block {
	display: grid;
	grid-template-columns: max-content 1fr;
	align-items: center;
	justify-content: space-between;
}

.delivery__thumb-column {
	display: block;
}
.delivery .thumb-column__img {
	max-width: 430px;
	height: auto;
	width: 100%;
	object-fit: contain;
}

.delivery__right-column {
	max-width: 490px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	gap: 24px 0;
	align-items: center;
	flex-direction: column;
}

.delivery__section-title {
	text-transform: uppercase;
}
.delivery__descr {
	display: block;
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	color: #464F5E;
}

@media (max-width: 1080px) {
	.delivery__main-block {
		grid-gap: 0 30px;
	}
	.delivery .thumb-column__img {
		max-width: 320px;
	}
}

@media (max-width: 767px) {
	.delivery__main-block {
		display: block;
	}

	.delivery .thumb-column__img {
		max-width: 100%;
	}
}
.home-slider .text-group__title b, .home-slider .text-group__sub-title b, .home-slider .text-group__short-descr b{
	color: #803DF3;
}