@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700,800');
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box!important;
	font-family: 'Open Sans', sans-serif;
}
body {
	height: 100%;
	background: #f2f4f6;
	background-size: cover cover;
	background-attachment: fixed;
}
html {
	position: relative;
	min-height: 100%;
}
a {
	text-decoration: none;
}
img {
	border:none!important;
}
b {
	font-weight: bold!important;
}

.relative {position: relative;}

.absolute {position: absolute;}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.no-padding {
	padding:0!important;
}
.no-margin {
	margin:0!important;
}
.no-border {
	border:0!important;
}
.text-center {
	text-align: center;
}
.text-justify {
	text-align: justify;
}
.text-right {
	text-align: right;
}
.text-left {
	text-align: left;
}
.flex-direction-column {
	flex-direction: column;
}
.flex-direction-column-reverse {
	flex-direction: column-reverse;
}
.flex-direction-row {
	flex-direction: row;
}
.flex-direction-row-reverse {
	flex-direction: row-reverse;
}
.display-flex {
	display: flex;
}
.flex-box {
	flex: 1 0 auto;
}
.center-flex {
	display: flex;
	align-items: center;
	justify-content: center;
}
.right {
	float: right
!important
}
.left {
	float: left
!important
}

.vertical-padding {padding:29px 0;}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
.clearfix {
	display: inline-block;
}
.row:before,
.row:after,
.container:before,
.container:after {
	display: table;
	content: " ";
}
.row:after,
.container:after {
	clear: both;
}
.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}


@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}
@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}
@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}
@media (max-width: 992px) {
	.col-2,
	.col-3,
	.col-4,
	.col-6,
	.col-8,
	.col-9,
	.col-10,
	.col-12 {
		width: 100%!important;
	}
}


/*
Columns
*/

.col {
	position: relative;
	min-height: 1px;
}
.col-padding {
	padding-right: 15px;
	padding-left: 15px;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
	float: left;
}
.col-12 {
	width: 100%;
}
.col-11 {
	width: 91.66666667%;
}
.col-10 {
	width: 83.33333333%;
}
.col-9 {
	width: 75%;
}
.col-8 {
	width: 66.66666667%;
}
.col-7 {
	width: 58.33333333%;
}
.col-6 {
	width: 50%;
}
.col-5 {
	width: 41.66666667%;
}
.col-4 {
	width: 33.33333333%;
}
.col-3 {
	width: 25%;
}
.col-2 {
	width: 16.66666667%;
}
.col-1 {
	width: 8.33333333%;
}




.img-render {
	max-width: 100%;
	max-height: 100%;
}
.img-fill {
	height: auto;
	max-height: 100%;
}

/* Alert */
.alert {
	padding:15px;
	margin:10px 0;
	border-radius: 4px;
}
.alert-info {
	background: #BBDEFB;
	border:1px solid #90CAF9;
	color: #0D47A1;
}