* {
	box-sizing: border-box;
}

body {
	background-color: #000;
	margin: 0;
	font-family: 'Inter';
	overflow-x: hidden;
	position: relative;
}

body:after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(images/background.png);
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
}

p {
	margin: 0;
}

.l-layout-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	width: 100%;
	margin: 0 auto;
	overflow-x: hidden;
}

.l-page {
	display: flex;
	flex-direction: row;
	/* align-items: center; */
	justify-content: space-between;
	flex-grow: 1;
	flex-shrink: 0;
	color: #fff;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	/* padding: 0 7.917vw 0 10.99vw; */
}

.l-logo {
	margin-right: auto;
	display: flex;
	align-items: center;
	width: 471px;
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	left: 10.99vw;
}

.l-logo svg {
	width: 100%;
}

.swiper {
	width: 100%;
	height: 100vh;
}

.swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.slide-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	max-width: 37.448vw;
	width: 100%;
	margin-left: auto;
	margin-right: 7.917vw;
}

.lead {
	font-family: 'Montserrat';
	/* font-size: 32px; */
	font-size: clamp(18px, 1.667vw, 32px);
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	margin-bottom: 24px;
}

.lead span {
	padding: 2px 17px;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.lead span.lead__marked {
	background-color: #0085FF;
	border-radius: 29px;
	position: relative;
}

.accordion.active .accordion-btn::after {
	transform: translateY(-50%) rotateZ(135deg);
}

.accordion.active .accordion-content {
	max-height: 500px;
}

.accordion-btn {
	position: relative;
	list-style: none;
	list-style-type: none;
	padding: 24px 47px 24px 17px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	font-weight: 500;
}

.accordion-btn::after {
	content: '';
	display: block;
	position: absolute;
	right: 17px;
	top: 50%;
	width: 9px;
	height: 9px;
	border-left: 2px solid white;
	border-bottom: 2px solid white;
	transform: translateY(-50%) rotateZ(-45deg);
	transition: transform 0.5s ease;
}

.accordion-content {
	position: relative;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.accordion-content ul {
	padding-left: 17px;
	margin-top: 8px;
	margin-bottom: 32px;
}

.accordion-content ul li {
	list-style-type: none;
	position: relative;
	padding-left: 56px;
	margin-bottom: 20px;
}

.accordion-content ul li::before {
	content: '';
	display: block;
	width: 32px;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #0085FF;
}

.accordion-content p {
	padding-left: 17px;
	margin-bottom: 20px;
	line-height: 1.5em;
}

.key-list {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
}

.key-list li {
	list-style-type: none;
	padding: 24px 17px;
	border-bottom: 1px solid #0085FF;
	color: #FFFFFF;
	text-align: center;
	font-family: 'Montserrat';
	font-size: 20px;
	font-weight: 400;
	line-height: 150%;
}

.contact-list {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
}

.contact-list li {
	list-style-type: none;
	padding: 24px 17px;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.16px;
}

.contact-mail {
	color: #0085FF;
	height: 16px;
}

.tech-row {
	display: flex;
	flex-wrap: wrap;
}

.tech-col {
	width: 33%;
	height: 168px;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
}

.tech-col:nth-child(1),
.tech-col:nth-child(2),
.tech-col:nth-child(3) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.tech-col:nth-child(1),
.tech-col:nth-child(2),
.tech-col:nth-child(4),
.tech-col:nth-child(5) {
	border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.progress-bar {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 80px;
	height: 80px;
	z-index: 2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: conic-gradient(#0085FF calc(var(--progress-value) * 1%), white 0);
	cursor: pointer;
}

.progress-bar__arrow {
	position: relative;
	background-color: #000;
	width: 78px;
	height: 78px;
	border-radius: 50%;
}

.progress-bar__arrow svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 28px;
	height: 32px;
}

.progress-bar[data-slide="7"] .progress-bar__arrow svg {
	transform: translate(-50%, -50%) rotateZ(180deg);
}

.progress-bar[data-slide="7"] .progress-bar__arrow svg path {
	stroke: #0085FF;
}

@media screen and (max-width: 1366px) {
	/*.l-page {
		padding: 0 5.859vw 0 11.230vw;
	}*/

	.l-logo {
		width: 291px;
		left: 11.230vw;
	}

	.slide-content {
		margin-right: 5.859vw;
	}

	.lead span {
		padding: 2px 8px;
	}

	.lead span.lead__marked {
		border-radius: 16px;
	}

	.accordion-btn {
		padding: 16px 38px 16px 8px;
	}

	.accordion-btn::after {
		right: 8px;
		border-width: 1.5px;
	}

	.accordion-content ul {
		padding-left: 8px;
		margin-bottom: 24px;
	}

	.accordion-content ul li {
		padding-left: 36px;
		margin-bottom: 8px;
	}

	.accordion-content ul li::before {
		width: 24px;
	}

	.key-list li {
		padding: 20px 8px;
		font-size: 18px;
	}

	.contact-list li {
		padding: 20px 8px;
	}

	.progress-bar {
		bottom: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
	}

	.progress-bar__arrow {
		width: 38px;
		height: 38px;
	}

	.progress-bar__arrow svg {
		width: 14px;
		height: 16px;
	}
}

@media (orientation: portrait) {
	.hide-mob {
		display: none;
	}
}

@media (orientation: portrait), (max-width: 1023px) {
	body:after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 482px;
		background-image: url(images/background-mob.png);
		background-repeat: no-repeat;
		background-size: contain;
		z-index: -1;
	}

	.l-page {
		padding: 170px 35px 64px;
		flex-direction: column;
		align-items: center;
		height: auto;
	}

	.l-logo {
		margin-right: 0;
		justify-content: center;
		height: 100%;
		width: 40.995vw;
		margin-bottom: 170px;
		position: static;
		transform: none;
	}

	.swiper {
		height: auto;
	}

	.swiper-wrapper {
		flex-direction: column;
		height: auto;
	}

	.slide-content {
		max-width: none;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 200px;
	}

	.swiper-slide:last-child .slide-content {
		margin-bottom: 0;
	}

	.lead {
		font-size: 28px;
	}

	.lead span {
		padding: 2px 8px;
	}

	.lead span.lead__marked {
		border-radius: 29px;
	}

	.accordion-btn {
		padding: 20px 45px 20px 15px;
		font-size: 18px;
	}

	.accordion-btn::after {
		right: 15px;
	}

	.accordion-content ul {
		padding-left: 15px;
		margin-top: 12px;
		margin-bottom: 32px;
	}

	.accordion-content ul li {
		padding-left: 56px;
		margin-bottom: 12px;
	}

	.accordion-content ul li::before {
		width: 32px;
	}

	.key-list li,
	.contact-list li {
		padding: 20px 15px;
	}

	.progress-bar {
		display: none;
	}
}

@media (max-width: 600px) {
	.l-page {
		padding: 62px 20px 40px;
	}

	.l-logo {
		width: 192px;
		width: 60vw;
		margin-bottom: 52px;
	}

	.slide-content {
		margin-bottom: 96px;
	}

	.lead {
		font-size: 16px;
	}

	.lead span {
		padding: 0px 4px;
	}

	.lead span.lead__marked {
		border-radius: 16px;
	}

	.accordion-btn {
		padding: 12px 36px 12px 6px;
		font-size: 14px;
	}

	.accordion-btn::after {
		right: 6px;
	}

	.accordion-content ul {
		padding-left: 15px;
		margin-top: 12px;
		margin-bottom: 32px;
	}

	.accordion-content ul li {
		padding-left: 44px;
		font-size: 14px;
	}

	.key-list li,
	.contact-list li {
		padding: 12px 6px;
		font-size: 14px;
	}

	.contact-mail {
		height: 14px;
	}

	.tech-col {
		width: 50%;
	}

	.tech-col:nth-child(1),
	.tech-col:nth-child(2),
	.tech-col:nth-child(3),
	.tech-col:nth-child(4) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}

	.tech-col:nth-child(1),
	.tech-col:nth-child(3),
	.tech-col:nth-child(5) {
		border-right: 1px solid rgba(255, 255, 255, 0.3);
	}

	.tech-col:nth-child(2),
	.tech-col:nth-child(4) {
		border-right: none;
	}
}

.hidden {
	visibility: hidden;
}