.static-page-content {
	letter-spacing: 0.3px;
}
.static-page-content h2,
.static-page-content h3,
.static-page-content h4,
.static-page-content h5,
.static-page-content h6 {
	margin-bottom: 8px;
	color: #000;
	/*	font-size: 18px;*/
	text-transform: uppercase;
}
.static-page-content p {
	margin-bottom: 30px;
}
.static-page-content li {
	position: relative;
	padding-left: 17px;
	letter-spacing: 0.1px;
}
.static-page-content li:not(:first-child) {
	margin-top: 5px;
}
.static-page-content li:before {
	content: "";
	position: absolute;
	display: block;
	top: 5px;
	left: 0;
	width: 11px;
	height: 9px;
	background: url("../images/sprite.svg") no-repeat 0 -394px;
}
.static-page-content img {
	max-width: 100%;
}
/* Static page - all brands */
.static-page-full {
	text-align: center;
	padding: 14px 50px 0;
	max-width: 1230px;
	margin: 0 auto;
	min-height: calc(100vh - 354px);
}
.static-page-full h1 {
	text-transform: uppercase;
}
.brands-grid {
	margin-top: 20px;
	text-align: center;
	margin-bottom: -30px;
}
.brand-grid-item {
	display: inline-block;
	vertical-align: top;
	width: 250px;
	margin: 5px 10px;
	text-align: center;
}
.brand-grid-item a,
.brand-grid-item span {
	display: block;
}
.brand-grid-item span {
	color: #000;
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.3px;
	line-height: 75px;
	white-space: nowrap;
	opacity: 0.65;
	-webkit-transition: opacity 0.36s ease-in-out;
	-moz-transition: opacity 0.36s ease-in-out;
	-o-transition: opacity 0.36s ease-in-out;
	transition: opacity 0.36s ease-in-out;
}
.brand-grid-item:hover span {
	opacity: 1;
}
/* Static page - FAQ */
.question-wrapper {
	position: relative;
	overflow: hidden;
	border-top: 1px solid #fff;
}
h2.question-section {
	margin-bottom: 25px;
	color: #90b704;
}
.question-section:nth-child(n + 2) {
	padding-top: 30px;
	border-top: 1px solid #fff;
}
.question-wrapper .question-title {
	position: relative;
	z-index: 1;
	cursor: pointer;
	margin: 0;
	padding: 12px 35px 12px 0;
	text-transform: none;
	-webkit-user-select: none; /* webkit (safari, chrome) browsers */
	-moz-user-select: none; /* mozilla browsers */
	-khtml-user-select: none; /* webkit (konqueror) browsers */
	-ms-user-select: none; /* IE10+ */
}
.question-wrapper .question-title:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 5px;
	display: block;
	width: 25px;
	height: 25px;
	margin-top: -12px;
	background: url("../images/sprite.svg") no-repeat 0 -929px;
}
.question-wrapper.opened .question-title {
	color: #90b704;
}
.question-wrapper.opened .question-title:after {
	background-position-x: -100px;
}
.question-wrapper .question-answer {
	z-index: 0;
	opacity: 0;
	max-height: 0;
	padding-right: 30px;
	-webkit-transform: translate3d(0, -100%, 0);
	-moz-transform: translate3d(0, -100%, 0);
	-ms-transform: translate3d(0, -100%, 0);
	-o-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	-webkit-transition: all 0.36s ease-in-out;
	-moz-transition: all 0.36s ease-in-out;
	-o-transition: all 0.36s ease-in-out;
	transition: all 0.36s ease-in-out;
}
.question-wrapper.opened .question-answer {
	max-height: 500px;
	opacity: 1;
	margin-bottom: 10px;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
