
/** @section Boxes */
.box-default {
	position: relative;
	text-align: left;
	padding: 8% 10% 55px;
	color: #ffffff;
	background: #62bfe6;
	transition: .3s ease;
}

.box-default-1 {
	background: #5bb7de;
}

.box-default-2 {
	background: #55b0d6;
}

.box-default-3 {
	background: #57aacd;
}

.box-default-icon {
	font-size: 62px;
	line-height: 1;
}

.box-default-title {
	color: inherit;
}

.box-default-text {
	width: 100%;
}

.box-default-link {
	position: absolute;
	right: 10%;
	bottom: 8%;
	font-size: 19px;
	line-height: 1;
}

.box-default-link, .box-default-link:focus, .box-default-link:active {
	color: inherit;
}

.box-default-link:hover {
	color: rgba(255, 255, 255, 0.5);
}

.box-default {
	margin-top: 30px;
}


.box-default-text {
	margin-top: 16px;
}

@media (min-width: 992px) {
	.desktop .box-default {
		margin-top: 30px;
		padding-bottom: 8%;
	}
	.desktop .box-default-link {
		opacity: 0;
		visibility: hidden;
		transform: translateX(500%);
		transition: .3s ease;
	}
	.desktop .box-default:hover {
		margin-top: 0;
		padding-bottom: calc(8% + 30px);
	}
	.desktop .box-default:hover .box-default-link {
		opacity: 1;
		visibility: visible;
		transform: none;
	}
}

.box-minimal {
	text-align: left;
}

.box-minimal-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	font-size: 52px;
	line-height: 1;
	color: #ffffff;
	background: #62bfe6;
	transition: .3s ease-in-out;
}

* + .box-minimal-text {
	margin-top: 12px;
}

@media (min-width: 992px) {
	.desktop .box-minimal:hover .box-minimal-icon {
		background: #57aacd;
	}
}

.context-dark .box-minimal-icon, .bg-primary .box-minimal-icon {
	color: #62bfe6;
	background: #ffffff;
}

.context-dark .box-minimal-title a:hover, .bg-primary .box-minimal-title a:hover {
	color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 992px) {
	.desktop .context-dark .box-minimal:hover .box-minimal-icon, .desktop .bg-primary .box-minimal:hover .box-minimal-icon {
		background: rgba(255, 255, 255, 0.9);
	}
}

.bordered {
	margin-bottom: -50px;
}

.bordered > [class*='col-'] {
	margin-bottom: 50px;
}

.bordered > [class*='col-'] > * {
	padding-bottom: 45px;
	border-bottom: 1px solid #e5e5e5;
}

.bordered > [class*='col-']:nth-last-child(1) > * {
	padding-bottom: 0;
	border-bottom: none;
}

@media (min-width: 768px) {
	.bordered > [class*='col-']:nth-last-child(2) > * {
		padding-bottom: 0;
		border-bottom: none;
	}
}

.context-dark .bordered > [class*='col-'] > *, .bg-primary .bordered > [class*='col-'] > * {
	border-bottom-color: rgba(0, 0, 0, 0.1);
}

.info {
	padding: 8%;
	color: #ffffff;
	background: #57aacd;
}

.info-header {
	display: flex;
	align-items: center;
}

.info-header > * {
	color: inherit;
}

.info-header .icon {
	font-size: 50px;
	margin-right: 10px;
}

.info-item {
	border-top: 1px solid;
	padding-top: 20px;
}

.info-title {
	color: inherit;
}

.info-link {
	color: inherit;
	font-size: 1rem;
}

.info-link:hover {
	color: rgba(255, 255, 255, 0.5);
}

.info-header + .info-item {
	margin-top: 16px;
}

* + .info-item {
	margin-top: 22px;
}

* + .info-list {
	margin-top: 6px;
}

.info-classic {
	text-align: left;
}

.info-classic-2 .info-classic-link {
	font-size: 1.5rem;
}

.info-classic-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 70px;
	height: 70px;
	font-size: 31px;
	line-height: 1;
	color: #62bfe6;
	background: rgba(136, 136, 136, 0.1);
}

.info-classic-link {
	display: inline-block;
	font-size: 1rem;
}

.info-classic-link, .info-classic-link:focus, .info-classic-link:active {
	color: inherit;
}

.info-classic-link:hover {
	color: #62bfe6;
}

.info-modern {
	display: inline-flex;
	align-items: flex-end;
}

.info-modern-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	line-height: 1;
	color: #62bfe6;
	margin-right: 20px;
}

.info-modern-link {
	font-size: 1.5rem;
	line-height: 1;
}

.info-modern-link, .info-modern-link:focus, .info-modern-link:active {
	color: #434547;
}

.info-modern-link:hover {
	color: #62bfe6;
}

.info-modern + P {
	margin-top: 4px;
}


/** @section Responsive units */
.unit {
	display: flex;
	flex: 0 1 100%;
	margin-bottom: -20px;
	margin-left: -20px;
}

.unit > * {
	margin-bottom: 20px;
	margin-left: 20px;
}

.unit:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.unit-body {
	flex: 0 1 auto;
}

.unit-left,
.unit-right {
	flex: 0 0 auto;
	max-width: 100%;
}

.unit-spacing-xs {
	margin-bottom: -15px;
	margin-left: -7px;
}

.unit-spacing-xs > * {
	margin-bottom: 15px;
	margin-left: 7px;
}

.unit-spacing-md {
	margin-bottom: -20px;
	margin-left: -30px;
}
.list-marked-1 a, a:focus, a:active {
    color: #d2171b;
}
.unit-spacing-md > * {
	margin-bottom: 20px;
	margin-left: 30px;
	text-align: justify;
}

/** @section Lists */
.list > li + li {
	margin-top: 10px;
}

.list-xs > li + li {
	margin-top: 5px;
}

.list-sm > li + li {
	margin-top: 10px;
}

.list-md > li + li {
	margin-top: 18px;
}

.list-lg > li + li {
	margin-top: 25px;
}

.list-xl > li + li {
	margin-top: 30px;
}

@media (min-width: 768px) {
	.list-xl > li + li {
		margin-top: 60px;
	}
}

.list-inline > li {
	display: inline-block;
}

html .list-inline-md {
	transform: translate3d(0, -8px, 0);
	margin-bottom: -8px;
	margin-left: -10px;
	margin-right: -10px;
}

html .list-inline-md > * {
	margin-top: 8px;
	padding-left: 10px;
	padding-right: 10px;
}

@media (min-width: 992px) {
	html .list-inline-md {
		margin-left: -15px;
		margin-right: -15px;
	}
	html .list-inline-md > * {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.list-terms dt + dd {
	margin-top: 5px;
}

.list-terms dd + dt {
	margin-top: 25px;
}

* + .list-terms {
	margin-top: 25px;
}

.index-list {
	counter-reset: li;
}

.index-list > li .list-index-counter:before {
	content: counter(li, decimal-leading-zero);
	counter-increment: li;
}

.list-marked {
	text-align: left;
}

.list-marked > li {
	position: relative;
	padding-left: 25px;
}

.list-marked > li::before {
	display: inline-block;
	position: absolute;
	left: 0;
	top: 1px;
	min-width: 25px;
	content: '\f105';
	font: 400 14px/24px 'FontAwesome';
	color: #b7b7b7;
}

.list-marked > li + li {
	margin-top: 4px;
}

* + .list-marked {
	margin-top: 15px;
}

p + .list-marked {
	margin-top: 10px;
}

.list-marked-1 {
	text-align: left;
	font-size: 1rem;
}

.list-marked-1 > li {
	padding: 8px 0 8px 40px;
	text-indent: -40px;
}

.list-marked-1 > li:first-child {
	padding-top: 0;
}

.list-marked-1 > li:last-child {
	padding-bottom: 0;
}

.list-marked-1 > li a:hover {
	color: #434547;
}

.list-marked-1 > li a::before {
	display: inline-block;
	vertical-align: middle;
	content: '\f00c';
	font: 400 22px/1 'FontAwesome';
	color: inherit;
	text-indent: 0;
	margin-right: 18px;
}

.list-marked-1 > li + li {
	border-top: 1px solid #e5e5e5;
}

* + .list-marked-1 {
	margin-top: 12px;
}

.list-ordered {
	counter-reset: li;
	text-align: left;
}

.list-ordered > li {
	position: relative;
	padding-left: 25px;
}

.list-ordered > li:before {
	display: inline-block;
	position: absolute;
	content: counter(li, decimal) ".";
	counter-increment: li;
	top: 0;
	left: 0;
	width: 15px;
	color: #b7b7b7;
}

.list-ordered > li + li {
	margin-top: 10px;
}

* + .list-ordered {
	margin-top: 15px;
}

/** @section Images */
img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.img-responsive {
	width: 100%;
}

* + .figure-light {
	margin-top: 30px;
}

/** @section Icons */
.icon {
	display: inline-block;
	font-size: 16px;
	line-height: 1;
}

.icon::before {
	position: relative;
	display: inline-block;
	font-weight: 400;
	font-style: normal;
	speak: none;
	text-transform: none;
}

.icon-circle {
	border-radius: 50%;
}

/** @section Dividers */
hr {
	margin-top: 0;
	margin-bottom: 0;
	border-top: 1px solid #e5e5e5;
}

.divider {
	font-size: 0;
	line-height: 0;
	border-top: 3px solid #62bfe6;
}

.hr-40 {
	margin: 40px 0;
}


/** @section Owl Carousel */
.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden;
	/* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item > img {
	display: block;
	width: 100%;
}

.owl-carousel .owl-nav,
.owl-carousel .owl-dots {
	-webkit-tap-highlight-color: transparent;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next,
.owl-carousel .owl-dot {
	cursor: pointer;
	user-select: none;
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.owl-carousel .owl-nav {
	pointer-events: none;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	pointer-events: auto;
	background: #62bfe6;
	color: #dbdbdb;
}

.owl-carousel .owl-prev::before, .owl-carousel .owl-prev::after,
.owl-carousel .owl-next::before,
.owl-carousel .owl-next::after {
	display: block;
	font-family: "FontAwesome";
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
	text-decoration: none;
	background: #dbdbdb;
	color: #62bfe6;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
	opacity: .5;
	cursor: default;
}

.owl-carousel .owl-prev {
	left: 10px;
}

.owl-carousel .owl-prev::before {
	content: '\f104';
}

.owl-carousel .owl-next {
	right: 10px;
}

.owl-carousel .owl-next::before {
	content: '\f105';
}

.owl-carousel .owl-dots {
	text-align: center;
	font-size: 0;
	line-height: 0;
	margin-top: 20px;
}

.owl-carousel .owl-dot {
	display: inline-block;
	zoom: 1;
	margin: 0 5px;
}

.owl-carousel .owl-dot span {
	width: 12px;
	height: 12px;
	background: #dbdbdb;
	display: block;
	-webkit-backface-visibility: visible;
	transition: .3s ease-in-out;
	border-radius: 50%;
}

.owl-carousel .owl-dot.active span, .owl-carousel .owl-dot:hover span {
	background: #62bfe6;
}

.owl-style-1 {
	padding: 8%;
	background: #f5f5f5;
}

.owl-style-1 .owl-stage-outer {
	margin-top: -15px;
	padding-top: 15px;
}

/** @group Fonts */
/** @section Font Awesome Icons 4.7.0 */
@font-face {
	font-family: 'FontAwesome';
	src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
	src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
	font-weight: normal;
	font-style: normal;
}

.fa {
	display: inline-block;
	font-family: 'FontAwesome';
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

[class*='fa-']:before {
	font-weight: 400;
	font-family: 'FontAwesome';
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
	font-size: 1.33333333em;
	line-height: 0.75em;
	vertical-align: -15%;
}

.fa-2x {
	font-size: 2em;
}

.fa-3x {
	font-size: 3em;
}

.fa-4x {
	font-size: 4em;
}

.fa-5x {
	font-size: 5em;
}

.fa-fw {
	width: 1.28571429em;
	text-align: center;
}

.fa-ul {
	padding-left: 0;
	margin-left: 2.14285714em;
	list-style-type: none;
}

.fa-ul > li {
	position: relative;
}

.fa-li {
	position: absolute;
	left: -2.14285714em;
	width: 2.14285714em;
	top: 0.14285714em;
	text-align: center;
}
.list-marked-1 {
    text-align: left;
    font-size: 16px;
}
.fa-li.fa-lg {
	left: -1.85714286em;
}

.fa-border {
	padding: .2em .25em .15em;
	border: solid 0.08em #eeeeee;
	border-radius: .1em;
}