
.faq-container {
	max-width: 1330px;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0 15px;
}
.faq-title {
	text-align: center;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 56px;
	font-weight: 300;
	line-height: 1.2;
	margin: 0;
	}

.faq {
	width: 100%;
	box-sizing: border-box;
    margin: 50px 0
}
.faq__wrapper {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	border-radius: 5px;
	background-color: #121212;
	margin: 20px 0 0 0;
}
.faq__wrapper-head {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 5px;
	background-color: #242424;
	padding: 30px;
}
.faq__wrapper-head-title {
	font-size: 30px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.3;
}
.faq__wrapper-head-descr {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	color: #9f9f9f;
	text-align: center;
}
.faq__wrapper-list {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.faq__wrapper-list-item {
	box-sizing: border-box;
	width: 100%;
	padding: 30px;
	border-bottom: 1px solid #2c2c2c;
}
.faq__wrapper-list-item:last-child {
	border-bottom: none;
}
.faq__wrapper-list-item-wrapper {
	max-width: 600px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.faq__wrapper-list-item-title {
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.3;
}
.faq__wrapper-list-item-descr {
	font-size: 14px;
	color: #9f9f9f;
	line-height: 1.3;
	font-weight: 400;
}

main.white .faq-title {
	color: #2c2c2c;
}
main.white .faq__wrapper {
	background-color: #f2f2f2;
}
main.white .faq__wrapper-head {
	background-color: #e5e5e5;
}
main.white .faq__wrapper-head-title {
	color: #000000;
}
main.white .faq__wrapper-head-descr {
	color: #242424;
}
main.white .faq__wrapper-list-item {
	border-bottom: 1px solid #e5e5e5;
}
main.white .faq__wrapper-list-item-title {
	color: #000000;
}
main.white .faq__wrapper-list-item-descr {
	color: #000000;
}

@media (max-width: 1024px) {

	.faq-title {
		font-size: 45px;
	}
}

@media (max-width: 767px) {
    .faq {
        margin: 30px 0;
    }
    .faq-container {
		padding: 0 10px;
	}
    .faq-title {
		font-size: 30px;
	}
	.faq__wrapper-head-title {
		font-size: 26px;
	}
	.faq__wrapper-list-item {
		padding: 10px;
	}
	.faq__wrapper-list-item-wrapper {
		gap: 10px;
	}
	.faq__wrapper-list-item-title {
		font-size: 14px;
	}
	.faq__wrapper-list-item-descr {
		font-size: 13px;
	}

}