/*	-------------------------------------------------------------------------
	
	Search with ctr(cmd)+f
	
	1) Help classes
		
		text
		
		visibility
		
		media
		
		position
		
		framing
		
	2) Sizes
	
	3) Margins
	
	4) Paddings
	
	5) Columns
	
	6) Blog
	
	7) Forms
		
		7.2) Material forms
		
	8) Icons
	
	9) Lists
	
	10) Typography
	
	11) Colors
		
		11.2) Text colors
		
	12) Sections style
	
	13) section - Background image

-------------------------------------------------------------------------	*/

html, body {
	height: 100%;
	width: 100%;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	font-smooth: always;
}

/* 1) Help classes	---------------------------------------------------------*/


/* text */

.text-left {
	text-align: left
}
.text-right {
	text-align: right
}
.text-center {
	text-align: center
}
@media (max-width: 767px) {
	.text-left-xs {
		text-align: left
	}
	.text-right-xs {
		text-align: right
	}
	.text-center-xs {
		text-align: center
	}
}
.pointer {
	cursor: pointer;
}

/* visibility */

.hide {
	display: none
}
.show {
	display: block
}
.invisible {
	opacity: 0
}

/* media */

img {
	max-width: 100%
}
img+*:not(img) {
	margin-top: 30px
}
.img--original {
	width: auto;
	max-width: none;
}
@media (max-width: 767px) {
	.img--original {
		max-width: 100%;
	}
	.col-xs-1 > .img--original {
		max-width: none;
		transform: translateX(-35%) !important;
	}
}
.img--full-width {
	width: 100%
}
.bg {
	background-size: cover !important;
	background-position: 50% 50% !important;
	height: 100%;
	will-change: transform, top;
	transition: 0.3s linear;
	-webkit-transition: 0.3s linear;
	-moz-transition: 0.3s linear;
}
.img--grayscale, .bg--grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}
.img--multiply, .bg--multiply {
	mix-blend-mode: multiply;
}
@media (min-width: 767px) {
	.bg--fixed {
		background-attachment: fixed !important;
	}
}
.bg--round {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	width: 70%;
	padding-bottom: 70%;
	margin: 0 auto;
}
.bg--round-xs {
	width: 50px;
	height: 50px;
	padding: 0;
	margin: 0 15px 0 0;
	display: inline-block;
}
.bg--round-xs+* {
	display: inline-block;
	line-height: 50px !important;
}

/* position */

.left {
	float: left
}
.right {
	float: right
}
.center {
	margin: 0 auto;
	float: none;
}
.inline {
	float: left;
	clear: right;
}
@media (max-width: 767px) {
	.left-xs {
		float: left
	}
}
@media (min-width: 767px) {
	.flex-center {

		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: row;
		
	}
}
@media (max-width: 767px) {
	.flex-center-xs {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: row;
	}
}
@media (min-width: 767px) {
	.vertical-align {
		position: relative;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
}
@media (max-width: 767px) {
	.vertical-align-xs {
		position: relative;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
}
.absolute-top {
	position: absolute !important;
	top: 0;
	z-index: 2;
}
.absolute-bottom {
	position: absolute !important;
	bottom: 0;
	z-index: 2;
}
.absolute-center {
	position: absolute !important;
	top: 50%;
	z-index: 2;
}
.container.absolute-bottom, .container.absolute-center {
	left: 0;
	right: 0;
}

.flex-equal {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex:1 1 auto;
    
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    align-content: flex-start;
    flex:0;
}

.flex-equal > div[class*='col-'] {
	margin-right:-1px; /* hack adjust for wrapping */
}
/*
.flex-equal {
	display: flex;
	flex-direction: row;
	align-items: strech;
	flex-wrap: wrap;
}
*/
.flex-equal [class ^=col-] [class ^=col-] {
	height: 100%;
}
.flex-baseline {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
}

.flex-inline {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.table {
	display: table
}
.table-row {
	display: table-row;
}
.table-cell {
	display: table-cell;
}
.table-middle {
	vertical-align: middle;
}

/* framing */

.radius-none {
	border-radius: 0 !important;
}
.radius-xs {
	border-radius: 5px;
}
.radius-md {
	border-radius: 10px;
}
.radius-lg {
	border-radius: 35px;
}
.shadow {
	box-shadow: 3px 8px 35px -3px rgba(0, 0, 0, 0.55);
}
.shadow--light {
	box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.12);
}

/* 2) Sizes 		---------------------------------------------------------*/

.vh-50 {
	height: 50vh;
}
@media (max-height: 900px) {
	.vh-50 {
		height: 450px;
	}
}
.vh-70 {
	height: 70vh;
}
.vh-100 {
	height: 100vh;
	min-height: 700px;
}
@media (max-width: 767px) {
	.vh-100, .vh-70, .vh-50 {
		height: calc(100vh);
		min-height: calc(100vh);
	}
	
	nav+.vh-100 {
		height: calc(100vh - 63px);
		min-height: calc(100vh - 63px);
	}
}
.h-300 {
	height: 300px;
}
.h-400 {
	height: 400px;
}
.h-500 {
	height: 500px;
}
.width-100 {
	width: 100%;
}

/* 3) Margins 		---------------------------------------------------------*/

.marg-t-30 {
	margin-top: 30px;
}
.marg-t-60 {
	margin-top: 60px;
}
.marg-t-120 {
	margin-top: 120px;
}
@media (max-width: 767px) {
	.marg-t-120 {
		margin-top: 60px;
	}
}
.marg-t-200 {
	margin-top: 200px;
}
@media (max-width: 767px) {
	.marg-t-200 {
		margin-top: 60px;
	}
}
.marg-b-30 {
	margin-bottom: 30px !important;
}
.marg-b-60 {
	margin-bottom: 60px !important;
}
.marg-b-120 {
	margin-bottom: 120px !important;
}
@media (max-width: 767px) {
	.marg-b-120 {
		margin-bottom: 60px !important;
	}
}
.marg-b-200 {
	margin-bottom: 200px !important;
}
@media (max-width: 767px) {
	.marg-b-200 {
		margin-bottom: 60px !important;
	}
}
.marg-null {
	margin-bottom: 0 !important;
	margin-top: 0px !important;
}

/* 3.2) Offsets 		---------------------------------------------------------*/

.offset-t-15 {
	margin-top: 15px;
}
.offset-t-30 {
	margin-top: 30px;
}
.offset-r-15 {
	margin-right: 15px;
}
.offset-r-30 {
	margin-right: 30px;
}
.offset-b-15 {
	margin-bottom: 15px;
}
.offset-b-30 {
	margin-bottom: 30px;
}
.offset-l-15 {
	margin-left: 15px;
}
.offset-l-30 {
	margin-left: 30px;
}

/* 4) Paddings 		---------------------------------------------------------*/

.padding-null {
	padding: 0;
}

/* 5) Columns		---------------------------------------------------------*/

.col-boxed {
	padding: 30px;
}
.col-boxed-xs {
	padding: 15px;
}
.col-boxed-lg {
	padding: 60px;
}
@media (max-width: 767px) {
	.col-boxed-lg {
		padding: 45px;
	}
	.col-boxed .col-boxed-lg {
		padding: 15px;
	}
	.col-boxed [class*='bg-color'].col-boxed-lg {
		padding: 30px;
	}
}
.col-boxed-top {
	padding: 30px 30px 200px 30px;
}
.col-boxed-bottom {
	padding: 200px 30px 30px 30px;
}
.col-boxed-fixed {
	padding: 30px 30px 56px 30px;
	height: 300px;
	overflow: hidden;
}
.col-boxed-fixed--full {
	height: 600px;
}
@media (max-width: 767px) {
	.col-boxed-fixed--full {
		height: 400px;
	}
}

.col-boxed-fixed.bg .col-boxed-fixed {
	height: 270px;
}
@media (max-width: 767px) {
	.col-boxed-fixed.bg {
		padding-top: 100px;
	}
}
.col-horizontal, .col-vertical {
	overflow: hidden;
	position: relative;
}
.col-img__holder {
	overflow: hidden;
}
.col-img__holder img {
	width: 100%;
}
.col-bg-holder {
	position: absolute;
	height: 100%;
	padding: 0;
}
@media (max-width: 767px) {
	.col-bg-holder {
		position: inherit;
		height: 200px;
		width: 100%;
		padding: 0;
	}
}
.col-vertical .col-bg-holder {
	width: 100%;
	position: relative;
	height: 200px;
}
.col-bg-holder.col-bg-holder--lg {
	height: 300px;
}
.col--border {
	border: 1px solid rgba(0, 0, 0, 0.1);
}
[class*='bg-color-']:not(.bg-color--white) .col--border {
	border: 1px solid rgba(255, 255, 255, 0.25);
}

/* 6) Blog 			---------------------------------------------------------*/

.post-title {}
.post-text {
	height: 81px;
	overflow: hidden;
}
.post-info {
	line-height: 26px;
	height: 26px;
	font-size: 14px;
}
.post-info__item {
	margin-right: 10px;
}
.post-info__item:last-child {
	margin: 0;
}
.post-info__item__by {
	font-weight: 600;
}
.post-info__item__social {
	font-weight: 600;
	margin-right: 15px;
}
.post-info__item__social a {
	color: inherit;
}
.post-info__item__social a:hover {
	color: inherit;
	opacity: .6;
}
.post-info__item__social:last-child {
	margin-right: 0;
}
.post-info__item__social .material-icons {
	font-size: 12px;
	margin-right: 5px;
	cursor: pointer;
	color: inherit;
	opacity: 0.5;
}
.post-info__item-group {
	float: right;
}
.col-boxed-fixed .post-info {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	padding: 0 30px;
}
.post-preview {
	height: 24px;
	line-height: 24px;
}
.post-preview span, .post-next span {
	font-size: 14px;
	color: #212121;
	letter-spacing: 0px;
	line-height: 24px;
	font-weight: 600;
	vertical-align: top;
}
.comment {
	overflow: hidden;
}
.comment__avatar {
	display: inline-block;
	width: 20%;
	float: left;
	text-align: center;
}
.comment__text {
	display: inline-block;
	width: 80%;
	float: left;
}
.comment__text .h6 {
	margin-right: 20px;
}
.comment--reply {
	margin-left: 60px;
}
.comment--reply .comment__text__reply {
	opacity: 0;
}
.comment--reply:hover .comment__text__reply {
	opacity: 1;
}
@media (max-width: 768px) {
	.comment__avatar {
		width: 100%;
		text-align: left;
	}
	.comment__text {
		width: 100%;
	}
	.comment--reply .comment__text__reply {
		opacity: 1 !important;
	}
	.comment--reply {
		margin-left: 15px;
		padding-left: 15px;
		border-left: 1px solid #bebebe
	}
}
@media (min-width: 768px) {
	.comment__avatar {
		width: 15%;
	}
	.comment__text {
		width: 85%;
	}
}
@media (min-width: 1200px) {
	.comment__avatar {
		width: 10%;
	}
	.comment__text {
		width: 90%;
	}
}

/* 7) Forms 		---------------------------------------------------------*/

label {
	font-weight: 600;
	font-size: 14px;
	line-height: 37px;
	color: #212121;
	padding-left: 20px;
	white-space: nowrap;
}
input[type='text'], input[type='address'], input[type='url'], input[type='password'], input[type='email'], input[type="search"], input[type="tel"], textarea, select {
	padding-left: 20px;
	height: 39px;
	width: 100%;
	color: rgba(33, 33, 33, 0.5);
	font-size: 14px;
	line-height: 19px;
	letter-spacing: 0.5px;
	border-radius: 20px;
	border: 1px solid #E0E0E0;
	margin-bottom: 20px;
	background: #fff;
}

.color--white input, textarea, select  {
	background: none;
}
textarea {
	padding-top: 15px;
}
input[type='text']:focus, input[type='address']:focus, input[type='url']:focus, input[type='password']:focus, input[type='email']:focus, input[type="search"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
	outline: none;
	outline-offset: inherit;
	outline-color: none;
	outline-style: none;
	color: rgba(33, 33, 33, 1);
	/* font-weight: 600; */
	border: 1px solid #fff;
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.16);
}
input:-webkit-autofill {
	transition: background-color 5000s ease-in-out 0s;
	opacity: 0.5;
}
.color--white input:-webkit-autofill {
	-webkit-text-fill-color: #fff !important;
}
input[type=submit]:disabled {
	opacity: 0.5;
}
textarea {
	height: 100px;
	resize: none;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	padding: 8px 16px 9px 16px;
}
.select-icon {
	right: 0;
}
.switch {
	position: relative;
	display: inline-block;
	width: 39px;
	height: 23px;
}

/* Hide default HTML checkbox */

.switch input {
	display: none;
}

/* The slider */

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}
.color--white .slider {
	background-color: rgba(255, 255, 255, 0.5);
}
.slider:before {
	position: absolute;
	content: "";
	height: 15px;
	width: 15px;
	left: 4px;
	bottom: 4px;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25);
	background-color: #fff;
	-webkit-transition: .4s;
	transition: .4s;
}
input:checked+.slider {
	background: #304FFE;
}
input:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}
input:checked+.slider:before {
	-webkit-transform: translateX(16px);
	-ms-transform: translateX(16px);
	transform: translateX(16px);
}
.input-error-alert {
	background-color: #f50057;
	color: #fff;
	padding: 0 20px 10px 20px;
	font-size: 14px;
	font-weight: 600;
	position: fixed;
	bottom: 30px;
	right: 30px;
	box-shadow: 3px 8px 35px -3px rgba(0, 0, 0, 0.35);
	z-index: 1000;
	border-radius: 2px;
}

.input-error-alert i {
	margin-left: 15px;
}

/* Rounded sliders */

.slider.round {
	border-radius: 34px;
}
.slider.round:before {
	border-radius: 50%;
}
.input-icon {
	position: absolute;
	margin: 4px 25px;
	width: 24px;
}
.input-with-icon select, .input-with-icon textarea, .input-with-icon input {
	margin-top: -24px;
}
.checkbox, .radio {
	display: none;
}
.checkbox-custom, .radio-custom {
	width: 20px;
	height: 20px;
	border: 2px solid #666666;
	border-radius: 2px;
	position: relative;
}
.checkbox-custom, .radio-custom, .label {
	display: inline-block;
	vertical-align: middle;
}
.label {
	color: rgba(33, 33, 33, 0.5);
	font-size: 14px;
	line-height: 19px;
	letter-spacing: 0.5px;
	margin-left: 5px;
}
.material .label {
	margin-right: 10px;
}
.radio:checked+.radio-custom {
	border-color: #00C853;
}
.radio:checked+.radio-custom::before {
	content: " ";
	display: block;
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 3px;
	left: 3px;
	background: #00C853;
	border-radius: 2px;
}
.radio-custom, .radio:checked+.radio-custom::before {
	border-radius: 50%;
}
.checkbox-custom i {
	opacity: 0 !important;
}
.checkbox:checked+.checkbox-custom {
	background: #00C853;
	border-color: #00C853;
}
.checkbox:checked+.checkbox-custom i {
	content: "";
	display: block;
	position: absolute;
	opacity: 1 !important;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
}
form.inline>input, form.inline>div {
	margin-right: 20px;
	width: auto;
}

/* 7.2) Material forms  	---------------------------------------------------------*/

.material label {
	padding-left: 0;
}
.material input[type='text'], .material input[type='address'], .material input[type='url'], .material input[type='password'], .material input[type='email'], .material input[type="search"], .material input[type="tel"], .material textarea, .material select {
	border: 0;
	border-bottom: 1px solid #E0E0E0;
	padding-left: 0;
	border-radius: 0px;
	background: none;
}
.material select {
	padding: 9px 0px;
}
.material input[type='text']:focus, .material input[type='address']:focus, .material input[type='url']:focus, .material input[type='password']:focus, .material input[type='email']:focus, .material input[type="search"]:focus, .material input[type="tel"]:focus, .material textarea:focus, .material select:focus {
	border: 0;
	border-bottom: 2px solid #304FFE;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
	height: 40px;
	margin-bottom: 19px;
}
.material textarea:focus {
	height: 101px;
}

@media (max-width: 767px) {
	form.inline {
		width: 100%;
		height: auto;
	}
	form.inline input, form.inline .btn {
		width: 100%;
		margin-right: 0;
	}
}


.flex-inline input, 
.flex-inline input:focus, 
.flex-inline .btn, 
.flex-inline [class*="col-"] {
    margin: 0 !important;
}

/* 8) Icons			---------------------------------------------------------*/

.material-icons, .fa, [class *=pe-7s-] {
	color: #212121;
	font-size: 24px;
	opacity: 1;
}
a.material-icons:hover, a.fa:hover, a[class ^=pe-7s-]:hover, a.material-icons:focus, a.fa:focus, a[class ^=pe-7s-]:focus {
	color: inherit;
}
.material-icons+*, .fa+*, [class ^=pe-7s-]+* {
	margin-top: 20px;
}
.material-icons.ico--white, .fa.ico--white {
	color: #fff;
}
a.ico--white:hover, a.ico--white:focus {
	color: #fff;
}
.ico-xs {
	font-size: 14px;
}
.ico-sm {
	font-size: 40px;
}
.ico-md {
	font-size: 55px;
}
.ico-lg {
	font-size: 65px;
}
.ico--radial {
	border-radius: 50px;
	border: 2px solid;
	padding: 5px;
}
.rating i {
	width: 24px;
	margin-bottom: 20px;
	color: #00C853;
}

/* 9) Lists			---------------------------------------------------------*/

ul {
	margin: 0;
	padding: 0;
}
ul.list {
	font-size: 14px;
	line-height: 19px;
	list-style: none;
}
ul.list li {
	padding-bottom: 5px;
}
ul.list li a {
	color: inherit;
	margin: 0;
}
ul.list li a:hover, ul.list li a:focus {
	opacity: 0.8;
}
.ul-clean {
	margin: 30px 0;
}
.ul-clean>li {
	list-style-type: none;
	font-size: 14px;
	line-height: 26px;
}
.ul-clean>li>a {
	font-size: 14px;
	color: rgba(32, 32, 32, 0.50);
	letter-spacing: 0px;
}
.ul-clean>li>a:hover, .ul-clean>li>a:focus {
	color: rgba(32, 32, 32, 1);
}
.li-caption {
	position: absolute;
	margin-top: -20px;
	text-transform: none;
	letter-spacing: normal;
	font-weight: 600;
}

/* 10) Typography 	---------------------------------------------------------*/


html, body {
	font-size: 16px;
	line-height: 26px;
	color: #616161;
}

h1, h2, h3, h4, h5, h6 {
	margin-bottom: 10px;
	margin-top: 0;
	font-weight: 600;
	color: #000433;
}
h1, .h1 {
	font-size: 100px;
	line-height: 98px;
}
h2, .h2 {
	font-size: 48px;
	line-height: 59px;
	font-family: 'Bentham', serif;
}
h3, .h3 {
	font-size: 31px;
	line-height: 39px;
}
h4, .h4 {
	font-size: 22px;
	line-height: 28px;
}
h5, .h5 {
	font-size: 18px;
	line-height: 23px;
}
h6, .h6 {
	font-weight: 700;
	font-size: 12px;
	line-height: 17px;
	letter-spacing: 2.06px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
h6:last-child {
	margin-bottom: 0;
}
h1.light, h2.light, h3.light, h4.light, .h1.light, .h2.light, .h3.light, .h4.light {
	font-weight: 300;
}
h5.light, h6.light, .h5.light, .h6.light {
	font-weight: 700;
}
@media (max-width: 767px) {
	h1, .h1 {
		font-size: 60px;
		line-height: 64px;
	}
	h2, .h2 {
		font-size: 42px;
		line-height: 46px;
	}
	h3, .h3 {
		font-size: 30px;
		line-height: 34px;
	}
	h4, .h4 {
		font-size: 22px;
		line-height: 26px;
	}
	h5, .h4 {
		font-size: 18px;
		line-height: 22px;
	}
}
p {
	font-size: 16px;
	line-height: 26px;
	margin-top: 0;
	font-weight: 400;
	color: #616161;
	margin-bottom: 20px;
}
p.p-lg {
	font-size: 18px;
	line-height: 28px;
}
p.p-xs {
	font-size: 14px;
	line-height: 19px;
}
.p-h-2 {
	height: 50px;
	overflow: hidden;
}
.p-h-3 {
	height: 75px;
	overflow: hidden;
}
.p-h-4 {
	height: 100px;
	overflow: hidden;
}
.p-h-5 {
	height: 125px;
	overflow: hidden;
}
.p-h-6 {
	height: 150px;
	overflow: hidden;
}
span {
	color: #616161;
}
i {
	font-style: italic;
	font-size: 14px;
	line-height: 19px;
	opacity: 0.5;
	color: #212121;
}
b {
	color: #212121;
}
p b, p strong {
	font-size: inherit;
	line-height: inherit;
	margin-top: inherit;
	letter-spacing: inherit;
	color: inherit;
	text-transform: inherit;
}
abbr {
	cursor: help;
}
.nowrap {
	white-space: nowrap;
	/* pre-line */
	text-overflow: ellipsis;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	-moz-binding: url(bindings.xml#ellipsis);
}
.price {
	font-size: 52px;
	line-height: 52px;
	font-weight: 600;
	color: #212121;
}
.price-lg {
	font-size: 78px;
	line-height: 78px;
}
.price-xs {
	font-size: 31px;
	line-height: 31px;
}
.price-xs .price__lower {
	font-size: 16px;
	line-height: 16px;
}
.price__lower {
	font-size: 20px;
	opacity: .3;
	letter-spacing: 0px;
	line-height: 20px;
}
.line-through {
	text-decoration: line-through;
	opacity: 0.5;
}
.underline {
	text-decoration: underline;
}
.uppercase {
	text-transform: uppercase;
}
.uppercase a {
	font-size: 12px;
	line-height: 17px;
	letter-spacing: 2.06px;
	font-weight: 700;
}
a {
	text-decoration: none;
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
	color: #304FFE;
}
a:hover, a:focus {
	text-decoration: none;
	color: #536DFE;
}
[class ^=col-] a {
	margin-bottom: 2px;
}
[class ^=col-] a:last-child, a:last-child {
	margin-right: 0;
}
p a {
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
}
a.fa {
	color: #212121;
	margin: 0 15px 15px 0;
}
a.fa:last-child {
	margin-right: 0;
}
a.fa:hover, a.fa:focus {
	color: #616161;
}
@media (max-width: 767px) {}
@media (max-width: 767px) and (orientation: landscape) {}

/* 11) Colors		 ---------------------------------------------------------*/

.bg-color--second {
	background-color: #FFD54F;
}
.bg-color--second-50 {
	background-color: #FFE57F;
}
.bg-color--main {
	background-color: #304FFE;
}
.bg-color--main-50 {
	background-color: #536DFE;
}
.bg-color--grey {
	background-color: #212121;
}

.bg-color--grey-25 {
	background-color: #F7F7F7;
}
.bg-color--white {
	background-color: #fff !important;
}
[class*='bg-color--main'] *, .bg-color--grey * {
	color: #fff !important;
}
[class*='bg-color--main'] .tabs__links li.active, .bg-color--grey .tabs__links li.active {
	border-color: #fff !important;
}
[class*='bg-color--main'] a:hover, [class*='bg-color--main'] a:focus, .bg-color--grey a:hover, .bg-color--grey a:focus {
	color: #fff;
	opacity: 0.8;
}
[class*='bg-color--second'] * {
	color: #212121;
}
[class*='bg-color--second'] a:hover, [class*='bg-color--second'] a:focus {
	color: #212121;
	opacity: 0.8;
}
.bg-color--grey p, [class*='bg-color--second'] p, .bg-color--grey .post-info * {
	opacity: 0.5;
}
[class*='bg-color--main'] p, [class*='bg-color--second'] p, [class*='bg-color--main'] .post-info *, [class*='bg-color--second'] .post-info * {
	opacity: 0.8;
}
.bg-color--grey hr {
	border-top: 1px solid #383838;
}
[class*='bg-color--second'] hr {
	border-top: 1px solid #212121;
}
.bg-color--grey .progress__bar__progress {
	background-color: #3c3c3c !important;
}
.bg-color--grey-25 .progress__bar__bg {
	background-color: #FFF !important;
}

/* 11.2) Text colors 	---------------------------------------------------------*/

.color--main, .color--main * {
	color: #304FFE !important;
	opacity: 1;
}
.color--black, .color--black * {
	color: #212121 !important;
	opacity: 1;
}
.color--grey, .color--grey * {
	color: #616161 !important;
	opacity: 1;
}
.color--white, .color--white * {
	color: #fff !important;
	opacity: 1;
}

/* 12) Sections style 	--------------------------------------------------------- */

header, section, footer {
	position: relative;
	overflow: hidden;
	z-index: 10;
	padding: 60px 0;
}
section.s-boxed {
	margin-right: auto;
	margin-left: auto;
}
@media (min-width: 1300px) {
	section.s-boxed {
		width: 1250px;
	}
}
@media (min-width: 1500px) {
	section.s-boxed {
		width: 1450px;
	}
}
body>hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 5px solid #F7F7F7;
}
[class ^=col-] {
	margin-bottom: 30px;
}
[class ^=col-] [class ^=col-] {
	margin-bottom: 0;
}
.row--fluid>[class *=col-] {
	margin: 0;
	padding: 0;
}
.container .row--compact {
	padding-left: 15px;
	padding-right: 15px;
}
.container .row--compact>div[class*='col-'], .container-fluid .row--compact>div[class*='col-'] {
	padding: 0;
}
.container .row--compact>div[class*='marg-b-'], .container-fluid .row--compact>div[class*='marg-b-'] {
	margin: 0;
}

/* 13) section - Background image 	--------------------------------------------------------- */

.section-background-image {
	width: 100%;
	padding: 0;
}
.section-background-image .container {
	position: relative;
	z-index: 3;
}
.bg-opacity, .section-background-image .bg {
	position: absolute;
	width: inherit;
	height: 100%;
	z-index: 2;
}
.section-background-image .bg {
	z-index: 0;
}
.section-background-image--right .bg-opacity, .section-background-image--right .bg {
	width: 50%;
	left: 50%;
}
.section-background-image--left .bg-opacity, .section-background-image--left .bg {
	width: 50%;
}
@media (max-width: 767px) {
	.section-background-image--left .container, .section-background-image--right .container {
		padding-top: 300px;
	}
}
@media (max-width: 767px) {
	.section-background-image--left .bg-opacity, .section-background-image--left .bg, .section-background-image--right .bg-opacity, .section-background-image--right .bg {
		height: 300px;
		width: 100%;
		left: 0;
	}
}
.section-background-image--light {}