@charset "utf-8";
/* CSS Document */
body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}
a {
	line-height: inherit;
	text-decoration: none;
	transition: all 500ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
	cursor: pointer;
}
ul, li {
	margin: 0;
	padding: 0;
}
h1 {
	font-weight: 600;
}
h1 {
	font-size: 1.7rem;
	text-align: center;
}
h2 {
	font-size: 2rem;
}
h5, .h5 {
    font-size: 1.2rem;
}
label {
	margin: 0;
}
.small {
	font-size: 13px;
}
.text-underline {
	text-decoration: underline; 
}
.lang {
	position: relative;
	left: 100%;
}
.carousel {
    width: 100%;
}
.carousel-item img{
	width: 100%;
}
.carousel-indicators li {
	height: 14px;
	width: 14px;
	border-radius: 14px;
	background-color: #000;
	opacity: 0.6;
	border: 1px solid #000;
}
.carousel-indicators li.active {
	background-color: #fff;
	opacity: 0.8;
	border: 1px solid #fff;
}
.carousel-inner {
    max-height: 300px;
}
.row {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-align-content: space-around;
	-ms-flex-line-pack: distribute;
	align-content: space-around;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.media, .media a {
	color: #fff;
}
.box {
	-webkit-order: 0;
	-ms-flex-order: 0;
	order: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-align-self: auto;
	-ms-flex-item-align: auto;
	align-self: auto;
}
.box, .box-last {
	border-radius: 15px;
	padding: 10px 14px;
}
/*.box-last {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	padding-bottom: 0;
}*/
.bg-blue {
	background-color: #2d5c88;
}
.bg-grey {
	background-color: #616161;
	margin: 0 10px;
}
input {
	border-radius: 5px;
	margin: .3rem 0;
	width: 100%;
	padding: 5px;
}
input[type="text"], input[type="password"] {
	background-color: #ffffff;
	border: 1px solid #ffffff;
}
input[type="submit"], .button {
	background-color: #ffffff;
	border: 1px solid #ffffff;
	font-family: 'Open sans', sans-serif;
	color: #2d5c88;
	border-radius: 5px;
	width: 100%;
	padding: 10px;
	font-weight: 600;
	cursor: pointer;
}
input[type="submit"] {
	width: auto;
	padding: 10px 35px;
	float: right;
	color: #2d5c88;
}
a.button {
	color: #616161 !important;
	margin: 5px;
	text-align: center;
}
a.button:hover {
	text-decoration: none;
}
.button-container {
	display: flex;
}
.big {
	font-size: 1.3rem;
}
.download {
	margin: 0 -20px !important;
	text-align: left !important;
	padding: 10px 10px 0 10px;
	overflow: hidden;
	color: #fff;
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
}
.download img {
	float: left;
	margin-right: 20px;
}
.red {
	color: #ff0000;
	text-transform: uppercase;
	font-weight: 600;
}
/* CAROUSEL FADE */

.carousel-fade .carousel-item {
	opacity: 0;
	transition-duration: .6s;
	transition-property: opacity;
}
.carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right {
	opacity: 1;
}
.carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right {
	opacity: 0;
}
.carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev {
	transform: translateX(0);
	transform: translate3d(0, 0, 0);
}
