.list-app .w_thumb i {
	font-size: 32px;
}

.videos {
	background-color: #f0f8ff;
	padding-bottom: 30px;
}

.videos__title {
	margin-bottom: 30px;
	margin-top: 30px;
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	font-family: 'helveticaneue-bold';
}

.videos-slider {
	max-height: 500px;
}

.videos-slider__item {
	text-align: center;
}

.videos-slider__item video {
	max-width: 100%;
	max-height: 500px;
}

@media (max-width: 768px) {
	.videos__title {
		font-size: 26px;
		line-height: 34px;
	}
}

.mob-cta-button {
	padding: 40px;
	text-align: center;
	background-color: aliceblue;
}

@media (min-width: 768px) {
	.mob-cta-button {
		display: none;
	}
}

.sticky-button {
	position: sticky;
	bottom: 0;
	display: none;
	padding: 20px;
	text-align: center;
	background-color: aliceblue;
}

.sticky-button.visible {
	display: block;
}

@media (min-width: 769px) {
	.sticky-button {
		display: none;
	}

	.sticky-button.visible {
		display: none;
	}
}

.top-list {
	margin-top: 15px 0;
	padding-left: 20px;
	list-style-type: disc;
	font-weight: bold;
	font-size: 18px;
}

.editor.special-offer {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 30px;
}

@media (max-width: 768px) {
	.editor.special-offer {
		flex-direction: column;
		justify-content: center;
	}
}

/* faq */
.faq {
	padding: 60px 20px;
}

.faq__title {
	margin-bottom: 60px;
	text-align: center;
	color: #484848;
	font-size: 30px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.faq-inner {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.faq-item {
	overflow: hidden;
	cursor: pointer;
	border-bottom: 1px solid rgb(136, 136, 136);
}

.faq-item__header {
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	font-size: 18px;
	padding-bottom: 20px;
	padding-top: 20px;
}

.faq-item__body {
	max-height: 0;
	transition: 0.2s all;
}

.faq-item.active .faq-item__body {
	max-height: 300px;
	padding-top: 10px;
	padding-bottom: 20px;
}

.faq-item__header i {
	font-size: 24px;
	margin-left: 20px;
}

.faq-item__header .fa-minus-circle {
	display: none;
}

.faq-item.active .fa-plus-circle {
	display: none;
}

.faq-item.active .faq-item__header .fa-minus-circle {
	display: inline-block;
}
.faq-item.active .faq-item__header .fa-plus-circle {
	display: none;
}
/* end faq */
