.page__f-a-q {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.nav__faq {
	width: 100%;
	max-width: 1400px;
	width: 100%;
	height: 50px;
	display: flex;
	padding: 0 50px;
	align-items: center;
}

.nav__faq a {
	padding: 0 5px 5px 0;
	font-size: 14px;
	font-weight: 200;
}


.wrapper__f-a-q {
	width: 100%;
	max-width: 1600px;
	display: flex;
	padding: 0 50px;
	height: 100%;
	position: relative;
	margin-top: 50px;
}

.block__img-faq {
	width: 40%;
	height: auto;
	max-height: 550px;
	position: sticky;
	top: 100px;
}

.block__img-faq img {
	width: 100%;
	height: auto;
}

.block__f-a-q {
	width: 60%;
	font-size: 25px;
}

/*accordeon   =============================*/
.accordion {
	background-color: rgba(255, 255, 255, 0.1);
	cursor: pointer;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 16px;
	font-weight: bold;
	transition: 0.4s;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.accordion:after {
	content: '\002B';
	font-weight: bold;
	float: right;
	margin-left: 5px;
	font-size: 35px;
	color: #3296fa;
	cursor: pointer;
}

.active:after {
	content: "\2212";
}

.panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

/*title   =============================*/
.container__title {
	border-left: solid 3px #fa8200;
	margin-bottom: 50px;
}

.simple__title {
	font-size: 20px;
	font-weight: 100;
	color: #323232;
	margin-left: 10px;
	text-transform: uppercase;
}

.basic__title {
	font-size: 60px;
	font-weight: 900;
	margin-top: 4px;
	color: #323232;
	margin-left: 10px;
	text-transform: uppercase;
}

.container__f-a-q {
	margin-bottom: 75px;
	width: auto;
	height: auto;
}

.details__text {
	font-size: 14px;
	font-weight: 200;
	margin-left: 5px;
	padding-left: 12px;
	padding-right: 50px;
	border-left: solid 1px #323232;
	line-height: 25px;
	color: #323232;
}

.block__image {
	width: 50%;
}

.block__image img {
	object-fit: cover;
	width: 100%;
}

/*@media    =============================800*/
@media (max-width: 800px) {
	.block__img-faq {
		display: none;
	}

	.block__f-a-q {
		width: 100%;
	}
}

/*@media    ============================500*/
@media (max-width: 500px) {
	.basic__title {
		font-size: 50px;
	}
}

/*@media    =============================390*/
@media (max-width: 426px) {
	.nav__faq {
		padding: 0 15px;
	}

	.wrapper__f-a-q {
		padding: 0 15px;
	}
}