.cover {
	display: flex;
	justify-content: center;
}
.cover .content {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	margin: 56px 24px;
    gap: 8px;
}
.cover .content .title {
	font-family: "Dela Gothic One", sans-serif;
	font-size: 100px;
}
.cover .content .subtitle {
	font-size: 36px;
	font-weight: bold;
}
.about {
	display: flex;
	flex-direction: column;
	gap: 56px;
	margin-top: 80px;
}
.about .block {
	display: flex;
	justify-content: center;
	gap: 80px;
	flex-wrap: wrap;
	margin: 0 80px;
}
.about .block .component {
	width: 40%;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 300px;
}
.about .block .component .title {
	font-family: "Dela Gothic One", sans-serif;
	font-size: 50px;
}
.about .block .component .content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.about .block .component .content img {
	padding: 0px 8px;
}

.sign {
	background: #efeded;
	padding: 0 4px;
	border-radius: 5px;
	color: #595858;
	width: fit-content;
}
.service {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 160px;
	align-items: center;
}
.service .title,
.faq .title {
	font-family: "Dela Gothic One", sans-serif;
	font-size: 50px;
	position: relative;
	margin: 0 24px;
	text-align: center;
}
	
.service .content {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
	justify-content: space-evenly;
	margin-top: 48px;
	margin-bottom: 48px;
	width: 90%;
}
.service .content .punct {
	display: flex;
	gap: 10px;
	align-items: center;
}
.usage {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	width: 80%;
	margin: 0 auto;
	margin-top: 160px;
}
.usage .title {
	font-family: "Dela Gothic One", sans-serif;
	font-size: 50px;
	position: relative;
}
.usage .example {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-self: flex-start;
}
.usage .example .col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.usage .example .title {
	font-size: 30px;
	color: #bddeb7;
}
.usage .example .content {
	display: flex;
	gap: 80px;
	flex-wrap: wrap;
}
.usage .descr {
	align-self: flex-start;
}
.faq .content { 
	display: flex;
	flex-direction: column;
	margin: 48px 0;
	width: 80%;
	gap: 16px;
}
.faq .content .item .question {
	background: #747474;
	padding: 20px 30px;
	border-radius: 15px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.faq .content .item .question:hover {
	background: #bddeb7;
	color: #5e5d5d;
}
.faq .content .item .answer {
	display: none;
	padding: 16px;
}
.underline img {
	z-index: -1;
}