@import "fonts.css";
@import "reset.css";
@import "variables.css";
@import "reused.css";
@import "header.css";
@import "footer.css";

/* main start */

/* performance start */

.performance {
	width: 100%;
	height: 100vh;
	position: relative;
}

.performance__content {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: absolute;
	/* padding: 0 var(--h-edges-padding) var(--v-sections-padding) var(--h-edges-padding); */
	z-index: 1;
}

.performance__text-block {
	display: flex;
	flex-direction: column;
	width: min-content;
	margin-left: 220px;
	padding-bottom: 40px;
}

.performance__title {
	font-size: var(--font-size-extra-large);
	font-weight: 500;
	color: var(--color-white);
}

.performance__lead {
	width: max-content;
	font-size: var(--font-size-extra-small);
	font-weight: 500;
	padding: 3px 10px 5px 10px;
	color: var(--color-white);
	border: 1px solid var(--color-white);
	border-radius: 5%;
	margin-top: 73px;
	text-wrap: nowrap;
}

.performance__video-btn {
	display: flex;
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: var(--font-size-extra-small);
	font-weight: 300;
	padding: 10px 15px;
	background-color: var(--color-black);
	text-wrap: nowrap;
	color: var(--color-white);
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	transition: box-shadow 0.3s ease;
	margin-bottom: 40px;
	margin-right: 40px;
}

/* .performance__video-btn:hover {
	box-shadow: 0px 0px 5px var(--color-white);
} */

.performance__video-btn::before {
	content: "";
	width: var(--font-size-extra-small);
	height: var(--font-size-extra-small);
	margin-right: 10px;
	background-image: url("/assets/img/icons/pause.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.performance__video-btn_active::before {
	content: "";
	background-image: url("/assets/img/icons/play.svg");
}

.performance__video-inner {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.performance__video-inner::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

.performance__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

/* performance end */

/* products start */

.products {
	width: 100%;
	display: flex;
	justify-content: center;
	padding-top: var(--v-sections-padding);
	/* padding: var(--v-sections-padding) var(--h-edges-padding) 0  var(--h-edges-padding); */
}

.products__list {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding-top: 102px;
}

.products__list::before {
	content: "";
	position: absolute;
	bottom: 0;
	margin-bottom: 370px;
	width: 100%;
	border-top: 1px solid var(--color-white);
}

.products__item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 360px;
	width: 25%;
	margin: 0 10px;
}

.products__item:first-child {
	margin-left: 0;
}

.products__item:last-child {
	margin-right: 0;
}

.products__item h3 {
	font-size: var(--font-size-standard);
	font-weight: 900;
	color: var(--color-white);
}

.products__item p {
	font-size: var(--font-size-small);
	font-weight: 500;
	color: var(--color-white);
	padding-top: 10px;
}

.products__item img {
	max-width: 360px;
	width: 100%;
	height: 360px;
	margin-top: 83px;
	object-fit: cover;
}

/* products end */

/* components start */

.components {
	width: 100%;
	display: flex;
	justify-content: center;
	padding-top: var(--v-sections-padding);
	/* padding: var(--v-sections-padding) var(--h-edges-padding) 0  var(--h-edges-padding); */
}

.components__list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-top: 62px;
	list-style: none;
}

.components__item {
	display: flex;
	max-width: 500px;
	width: 32%;
	height: 330px;
	padding: 30px 30px 0 30px;
}

.components__item span {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	font-size: var(--font-size-standard);
	font-weight: 900;
	color: var(--color-white);
}

.components__item span::after {
	content: "";
	width: 30%;
	height: 100px;
	margin-right: 130px;
	margin-bottom: 70px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	align-self: flex-end;
}

.components__item:nth-child(1) span:after {
	background-image: url("/assets/img/components/supervisor-account.svg");
}

.components__item:nth-child(2) span:after {
	background-image: url("/assets/img/components/manufacturing.svg");
}

.components__item:nth-child(3) span:after {
	background-image: url("/assets/img/components/business-center.svg");
}

.components__item:nth-child(4) span:after {
	background-image: url("/assets/img/components/calendar-month-rounded.svg");
}

.components__item:nth-child(5) span:after {
	background-image: url("/assets/img/components/hardware-management.svg");
}

.components__item:nth-child(6) span:after {
	background-image: url("/assets/img/components/analytics.svg");
}

/* components end */

/* stack start */

.stack {}

.stack__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	list-style: none;
}

.stack__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	width: 25%;
	padding: 62px 20px 0 20px;
	flex-shrink: 1;
}

.stack__item h3 {
	font-size: var(--font-size-standard);
	color: var(--color-white);
}

.stack__item img {
	margin-top: 25px;
	width: 50%;
	height: auto;
}

/* stack end */

/* main end */

/* footer start */

/* footer end */

/* mobile start */

@media (max-width: 1550px) {
	.performance__video-btn {
		margin-right: 20px;
	}
}

@media (max-width: 1200px) {
	.performance__text-block {
		margin-left: 50px;
	}

	.products__item img {
		height: 250px;
	}

	.products__list::before {
		margin-bottom: 260px;
	}

	.components__item span::after {
		margin-right: 50px;
	}
}

@media (max-width: 900px) {
	.performance__content {
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}

	.performance__video-btn {
		position: absolute;
		bottom: 0;
		right: 0;
	}

	.products__list {
		justify-content: flex-start;
		align-items: center;
		flex-direction: column;
		padding-top: 0;
	}

	.products__list::before {
		display: none
	}

	.products__item {
		width: 100%;
		max-width: 100%;
		padding: var(--v-sections-padding) 0 0 0;
		text-align: center;
		margin-right: 0;
		margin-left: 0;
	}

	.products__item p {
		padding-top: 25px;
	}

	.products__item img {
		height: 40vh;
		width: min-content;
		align-self: center;
		padding-top: 25px;
		margin-top: 0;
	}

	.components__list {
		flex-direction: column;
	}

	.components__item {
		display: flex;
		justify-content: center;
		width: 100%;
		max-width: 100%;
		height: auto;
		padding: 0;
		padding-top: 50px;
	}

	.components__item span {
		text-align: center;
	}

	.components__item span::after {
		margin: 0;
		align-self: center;
		height: 10vh;
		width: 100%;
		margin-top: var(--v-sections-padding);
	}
}

@media (max-width: 750px) {
	.performance__text-block {
		text-align: center;
		margin: 0;
		padding: 0;
		width: 100%;
	}

	.performance__title {
		text-wrap: wrap;
	}

	.performance__lead {
		width: 100%;
		padding: 0;
		border: 0;
		border-top: 2px solid var(--color-white);
		border-radius: 0;
		margin-top: 15px;
		padding-top: 15px;
		text-wrap: wrap;
	}

	.performance__video-btn {
		font-size: 14px;
		bottom: 0;
		right: 0;
	}

	.stack__item img {
		width: 100%;
		margin-top: 20px;
	}
}

@media (max-width: 420px) {
	.performance__video-btn {
		font-size: var(--font-size-extra-small);
	}

	.products__item img {
		width: 100%;
		height: 30vh;
	}

	.components__item span::after {
		width: 100%;
		height: 10vh;
	}

	.stack__item {
		padding: 5%;
	}
}