/* ---------------------------------------------------------------------------------------------
	
	1. Reset & Basics
	2. Align, Float, Hide
	3. Typography
	4. Buttons
	5. Forms
	6. Images
	7. Width, Height, Margin, Padding, Offset
	
*/


/*-----------------------------------------------------------------------------------*/
/*	1. Reset & Basics
/*-----------------------------------------------------------------------------------*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, picture, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, picture, section, img {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*-----------------------------------------------------------------------------------*/
/*	2. Align, Float, Hide
/*-----------------------------------------------------------------------------------*/

.text-left {
	text-align: left !important;
}
.text-right {
	text-align: right !important;
}
.text-center {
	text-align: center !important;
}

.float-left {
	float: left !important;
}
.float-right {
	float: right !important;
}
.float-none {
	float: none !important;
}

.hidden-xs-up {
	display: none !important;
}

@media (min-width: 768px) {
	.text-sm-left {
		text-align: left !important;
	}
	.text-sm-right {
		text-align: right !important;
	}
	.text-sm-center {
		text-align: center !important;
	}
	.float-sm-left {
		float: left !important;
	}
	.float-sm-right {
		float: right !important;
	}
	.float-sm-none {
		float: none !important;
	}
	.hidden-sm-up {
		display: none !important;
	}
}
@media (min-width: 992px) {
	.text-md-left {
		text-align: left !important;
	}
	.text-md-right {
		text-align: right !important;
	}
	.text-md-center {
		text-align: center !important;
	}
	.float-md-left {
		float: left !important;
	}
	.float-md-right {
		float: right !important;
	}
	.float-md-none {
		float: none !important;
	}
	.hidden-md-up {
		display: none !important;
	}
}
@media (min-width: 1200px) {
	.text-lg-left {
		text-align: left !important;
	}
	.text-lg-right {
		text-align: right !important;
	}
	.text-lg-center {
		text-align: center !important;
	}
	.float-lg-left {
		float: left !important;
	}
	.float-lg-right {
		float: right !important;
	}
	.float-lg-none {
		float: none !important;
	}
	.hidden-lg-up {
		display: none !important;
	}
}
@media (min-width: 1520px) {
	.text-xl-left {
		text-align: left !important;
	}
	.text-xl-right {
		text-align: right !important;
	}
	.text-xl-center {
		text-align: center !important;
	}
	.float-xl-left {
		float: left !important;
	}
	.float-xl-right {
		float: right !important;
	}
	.float-xl-none {
		float: none !important;
	}
}

.align-center {
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center !important;
}
.aligncenter {
	text-align: center;
}

@media (max-width: 767px) {
	.hidden-only-xs {
		display: none !important;
	}
	.align-only-xs-center {
		float: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}
}
@media (max-width: 991px) {
	.hidden-sm-down {
		display: none !important;
	}
	.align-sm-down-center {
		float: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.hidden-only-sm {
		display: none !important;
	}
	.align-only-sm-center {
		float: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}
}
@media (max-width: 1199px) {
	.hidden-md-down {
		display: none !important;
	}
	.align-md-down-center {
		float: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-only-md {
		display: none !important;
	}
	.align-only-md-center {
		float: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}
}
@media (max-width: 1519px) {
	.hidden-lg-down {
		display: none !important;
	}
	.align-lg-down-center {
		float: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}
}
@media (min-width: 1200px) and (max-width: 1519px) {
	.hidden-only-lg {
		display: none !important;
	}
	.align-only-lg-center {
		float: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}
}
@media (min-width: 1520px) {
	.hidden-only-xl {
		display: none !important;
	}
	.align-only-xl-center {
		float: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: center !important;
	}
}

[class*="float-"],
[class*="align-"][class*="center"] {
	min-height: 5px;
}


/*-----------------------------------------------------------------------------------*/
/*	3. Typography
/*-----------------------------------------------------------------------------------*/

body {
	font-family: Muli, Arial, "Helvetica Neue", Helvetica, sans-serif;
	/* these fonts are also good:
	 - Nunito, font-size: 21px
	 - Nunito Sans, font-size: 21px
	 - Roboto, font-size: 21px
	 - Muli, font-size: 20-21px
	 - Fira Sans, font-size: 21px
	 - Exo 2, font-size: 21px
	*/
	font-size: 21px;
	line-height: 1.75; /* orig: 1.6 */
	color: #0b254b; /* orig: #485c78 */
	font-weight: 400;
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-text-size-adjust: 100%;
	-webkit-overflow-scrolling: auto;
}

.fullwidth-layout .container .columns { /* added */
	font-size: 18px;
}
.sidebar-layout .columns-wrapper {
	font-size: 20px;
}

.text-small {
	font-size: 18px;
}
.text-extra-small {
	font-size: 16px;
}
.lead-text-extra-large {
	font-size: 32px;
	line-height: 1.45;
	font-weight: 400;
}
.lead-text-large {
	font-size: 28px;
	line-height: 1.5;
	font-weight: 400;
}
.lead-text-medium {
	font-size: 25px;
	line-height: 1.5;
	font-weight: 400;
}
.lead-text-extra-large strong,
.lead-text-large strong,
.lead-text-medium strong {
	font-weight: 700;
}

@media (max-width: 991px) {
	body {
		font-size: 20px;
	}
	.lead-text-extra-large {
		font-size: 28px;
	}
	.lead-text-large {
		font-size: 25px;
	}
	.lead-text-medium {
		font-size: 22px;
	}
}
@media (max-width: 570px) {
	.lead-text-extra-large {
		font-size: 26px;
	}
	.lead-text-large {
		font-size: 23px;
	}
	.lead-text-medium {
		font-size: 21px;
	}
}

/* Headings
--------------------------------------------------- */
h1 {
	font-family: Lato, Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #0b254b;
}
h2, h3, h4, h5 {
	font-family: Lato, Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #0b254b;
}
h6 {
	font-family: Muli, Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #0b254b;
}

h1,
#home-intro .intro-text h1,
.single-post h1 {
	font-size: 50px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: 0.02em; /* ~1px (50px * 0.02) */
}
h2 {
	font-size: 34px;
	line-height: 1.2;
	font-weight: 700; /* orig: 900 */
	letter-spacing: 0.02em; /* ~0.68px (34px * 0.02) */
}
h3,
#main-content h2:not(.lead-text-large) {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700; /* orig: 900 */
	letter-spacing: 0.02em; /* ~0.6px (30px * 0.02) */
}
h4,
#main-content h3:not(.lead-text-large):not(.lead-text-medium) {
	font-size: 26px;
	line-height: 1.45;
	font-weight: 900;
	letter-spacing: 0.02em; /* ~0.52px (26px * 0.02em) */
}
h5,
#main-content h4:not(.lead-text-large):not(.lead-text-medium) {
	font-size: 21px;
	line-height: 1.5;
	font-weight: 700; /* orig: 900 */
	letter-spacing: 0.5px;
}
h6 {
	font-size: 19px;
	line-height: 1.5;
	font-weight: 700;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	font-weight: inherit;
	padding: 5px 0;
}
h1 {
	margin-bottom: 30px;
}
h2, h3 {
	margin-bottom: 30px;
}
h4 {
	margin-bottom: 25px;
}
h5, h6 {
	margin-bottom: 15px;
}

h2.lead-text-extra-large,
h2.lead-text-large,
h2.lead-text-medium,
h3.lead-text-extra-large,
h3.lead-text-large,
h3.lead-text-medium,
h4.lead-text-large,
h4.lead-text-medium {
	font-family: inherit;
	letter-spacing: 0;
}

.heading-caps {
	font-size: 16px;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 10px 3px;
}
h2.lead-text-medium.heading-caps,
h3.lead-text-medium.heading-caps,
h4.lead-text-medium.heading-caps {
	font-size: inherit;
	font-weight: 600;
	letter-spacing: 2px;
}

@media (min-width: 1520px) {
	h1,
	#home-intro .intro-text h1,
	.single-post h1 {
		font-size: 54px;
	}
	h2 {
		font-size: 39px; /* orig: 36px */
		margin-bottom: 30px; /* orig: 35px */
	}
	h2:not(:first-child) { /* added */
		margin-top: 56px;
	}
	h3,
	#main-content h2:not(.lead-text-large) {
		font-size: 31px; /* orig: 32px */
		margin-bottom: 30px; /* orig: 35px */
	}
	h3:not(:first-child) { /* added */
		margin-top: 50px;
	}
	h4,
	#main-content h3:not(.lead-text-large):not(.lead-text-medium) {
		margin-bottom: 30px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	h1,
	#home-intro .intro-text h1,
	.single-post h1 {
		font-size: 46px;
	}
	h2 {
		font-size: 32px;
	}
	h3,
	#main-content h2:not(.lead-text-large) {
		font-size: 29px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	h1,
	#home-intro .intro-text h1,
	.single-post h1 {
		font-size: 40px;
		margin-bottom: 25px;
	}
	h2 {
		font-size: 30px;
	}
	h3,
	#main-content h2:not(.lead-text-large) {
		font-size: 27px;
	}
	h4,
	#main-content h3:not(.lead-text-large):not(.lead-text-medium) {
		font-size: 25px;
	}
}
@media (max-width: 767px) {
	h1,
	#home-intro .intro-text h1,
	.single-post h1 {
		font-size: 32px;
		line-height: 1.25;
		margin-bottom: 25px;
	}
	h2 {
		font-size: 28px;
	}
	h3,
	#main-content h2:not(.lead-text-large) {
		font-size: 26px;
	}
	h4,
	#main-content h3:not(.lead-text-large):not(.lead-text-medium) {
		font-size: 24px;
	}
}
@media (max-width: 570px) {
	h2 {
		font-size: 26px;
	}
	h3,
	#main-content h2:not(.lead-text-large) {
		font-size: 24px;
	}
	h4,
	#main-content h3:not(.lead-text-large):not(.lead-text-medium) {
		font-size: 22px;
	}
}
@media (max-width: 479px) {
	h1,
	#home-intro .intro-text h1,
	.single-post h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 24px;
	}
	h3,
	#main-content h2:not(.lead-text-large) {
		font-size: 23px;
	}
	h3 > br {
		display: none;
	}
}
@media (max-width: 360px) {
	h1 {
		font-size: 28px;
	}
}

/* Underline */
h2.underline,
h3.underline {
	position: relative;
	display: inline-block;
}
h4.underline,
h5.underline,
h6.underline {
	position: relative;
	display: inline-block;
	margin-bottom: 30px;
}
h2.underline::after,
h3.underline::after,
h4.underline::after,
h5.underline::after,
h6.underline::after {
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	bottom: -5px;
	height: 3px;
	background-color: #ffc529;
	content: "";
}

/* Basic Tags & Classes
--------------------------------------------------- */
p {
	margin: 0 0 30px 0;
}
p img {
	margin: 0;
}
em {
	font-style: italic;
}
strong, b {
	font-weight: 700;
}

.text-lowercase {
	text-transform: lowercase;
}
.text-uppercase {
	text-transform: uppercase;
}
.text-underline {
	text-decoration: underline;
}

.font-weight-bold {
	font-weight: 700;
}
.font-weight-semibold {
	font-weight: 600;
}
.font-weight-normal {
	font-weight: 400;
}
.font-weight-light {
	font-weight: 300;
}
.font-italic {
	font-style: italic;
}

/* Text color */
.text-black {
	color: #222 !important;
}
.text-dark-grey {
	color: #505050 !important;
}
.text-grey {
	color: #666 !important;
}
.text-light-grey {
	color: #909090 !important;
}
.text-white {
	color: #fff !important;
}
.text-white-muted {
	color: #eee !important;
}

.text-primary-color {
	color: #267ffd !important;
}
.text-body-color {
	color: #485c78 !important;
}
.text-primary-color-muted {
	color: rgba(11, 37, 75, 0.5) !important; /* #0b254b */
}
.text-primary-color-pale {
	color: rgba(11, 37, 75, 0.36) !important; /* #0b254b */
}
.text-primary-color-light {
	color: rgba(11, 37, 75, 0.18) !important; /* #0b254b */
}

.text-secondary-color {
	color: #e5b225 !important;
}
.text-secondary-color-light {
	color: #fffcf4 !important;
}
.dark-colored-bg .text-secondary-color,
.info-box.primary-color-bg .text-secondary-color,
.info-box.primary-color-dark-bg .text-secondary-color {
	color: #ffe294 !important;
}
.stripe-secondary-color-bg .text-secondary-color {
	color: rgba(0, 0, 0, 0.65) !important;
}

hr {
	border: none;
	border-bottom: 1px solid #dedede;
	clear: none;
	height: 0;
	margin: 0 0 30px;
}

code,
kbd {
	display: inline;
	font-family: "Lucida Console", "Lucida Sans Typewriter", "Andale Mono", "Courier New", Courier, monospace;
	font-size: 17px;
	color: #909090;
	white-space: pre-wrap;
}
pre {
	font-family: "Lucida Console", "Lucida Sans Typewriter", "Andale Mono", "Courier New", Courier, monospace;
	font-size: 17px;
	background-color: #f5f5f5;
	border-left: 2px solid #d5d5d5;
	margin: 0 0 30px;
	padding: 25px;
	overflow: auto;
	white-space: pre-wrap;
	word-wrap: break-word;
	-moz-tab-size: 4;
	  -o-tab-size: 4;
	     tab-size: 4;
}

address {
	font-style: italic;
	margin: 0 0 30px;
}
abbr[title],
acronym {
	font-variant: none;
	border-bottom: 1px dotted;
}
ins {
	background-color: #fcfbe2;
	padding: 1px 4px 3px;
	text-decoration: none;
}
var {
	font-style: italic;
}

small {
	font-size: 80%;
}
sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
}
sub {
	bottom: -0.3em;
}
sup {
	top: -0.4em;
}

/* Blockquote
--------------------------------------------------- */
blockquote {
	position: relative;
	font-size: 22px;
	line-height: 1.85;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.3px;
	border-left: 5px solid #ffe294;
	margin-bottom: 40px;
	padding: 0 0 10px 30px;
}
.info-box blockquote {
	border-left: none;
	margin-bottom: 25px;
	padding: 0;
}
blockquote p {
	color: #0b254b;
	margin-bottom: 0;
}
.info-box.pinstriped-bg blockquote p {
	color: inherit;
}
.feature-list blockquote, /* added */
.feature-list .info-box {
	margin: 30px 0 15px;
}
blockquote cite {
	display: block;
	font-size: 17px;
	line-height: 1.5;
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0;
	color: #666;
	margin-top: 15px;
}
blockquote cite strong {
	font-style: normal;
}
blockquote cite::before {
	content: "\2014 \00A0";
}

blockquote p.text-small,
.text-blockquote.text-small {
	font-family: inherit;
	font-style: normal;
	font-weight: 300;
	letter-spacing: 1px;
}
.text-blockquote.text-small {
	font-size: 18px;
}
blockquote p.text-small cite {
	color: #808080;
}

/* the same style as "blockquote" but without border */
.text-blockquote {
	font-size: 22px;
	line-height: 1.85;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.3px;
	color: #0b254b;
}

/* Pullquote
--------------------------------------------------- */
.pullquote {
	display: table;
}
.stripe-bottom:not(.stripe-narrow) .pullquote {
	margin-bottom: 10px;
}
.pullquote .pullquote-stat {
	display: table-cell;
	min-width: 170px;
	vertical-align: middle;
	padding-right: 30px;
}
.pullquote .pullquote-stat .out-of-number {
	font-size: 62px;
	font-weight: 600;
	line-height: 1;
	color: #e5b225;
}
.pullquote .pullquote-statement {
	display: table-cell;
	vertical-align: middle;
}
.pullquote blockquote {
	font-weight: 700;
	font-style: normal;
	border-left: none;
	margin-bottom: 0;
	padding: 0;
}
.pullquote blockquote p {
	color: #666;
}
.pullquote blockquote cite {
	font-size: 20px;
}
.pullquote .pullquote-statement:first-child blockquote {
	font-size: 40px;
	line-height: 1.3;
}
.pullquote .pullquote-statement:first-child blockquote p {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #1f69d1;
}
.pullquote .pullquote-stat + .pullquote-statement blockquote {
	font-size: 30px;
	line-height: 1.5;
}

@media (min-width: 1520px) {
	.pullquote .pullquote-statement:first-child blockquote {
		font-size: 43px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.pullquote .pullquote-statement:first-child blockquote {
		font-size: 37px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.pullquote .pullquote-statement:first-child blockquote {
		font-size: 35px;
	}
	.pullquote .pullquote-stat + .pullquote-statement blockquote {
		font-size: 28px;
	}
}
@media (max-width: 767px) {
	blockquote,
	.text-blockquote {
		font-size: 20px;
	}
	.pullquote .pullquote-statement:first-child blockquote {
		font-size: 32px;
	}
	.pullquote .pullquote-stat + .pullquote-statement blockquote {
		font-size: 23px;
	}
	.pullquote blockquote cite {
		font-size: 18px;
	}
}
@media (max-width: 570px) {
	blockquote {
		border-left-width: 4px;
		padding-left: 24px;
	}
	.pullquote,
	.pullquote .pullquote-stat,
	.pullquote .pullquote-statement {
		display: block;
	}
	.pullquote .pullquote-stat {
		min-width: 0;
		margin-bottom: 15px;
		padding-right: 0;
	}
	.pullquote .pullquote-stat .out-of-number {
		font-size: 56px;
	}
	.pullquote .pullquote-statement:first-child blockquote {
		font-size: 27px;
	}
}

/* Links
--------------------------------------------------- */
a {
	text-decoration: none;
	outline: 0;
	-webkit-transition-property: color, border-color, background-color, opacity;
	     -o-transition-property: color, border-color, background-color, opacity;
	        transition-property: color, border-color, background-color, opacity;
	-webkit-transition-duration: 0.15s;
	     -o-transition-duration: 0.15s;
	        transition-duration: 0.15s;
}

a {
	color: #267ffd;
	background-color: transparent;
}
a:hover {
	color: #1f69d1;
}
p a {
	line-height: inherit;
}

.text-black a,
.text-body-color a,
.text-primary-color a,
.text-secondary-color a {
	color: inherit;
}
.text-primary-color-muted a {
	color: #485c78;
}
.text-black a:hover,
.text-body-color a:hover,
.text-primary-color a:hover,
.text-primary-color-muted a:hover,
.text-secondary-color a:hover {
	color: #1f69d1;
}

a.text-white:hover {
	color: #e6e9ed !important;
}
a.text-secondary-color:hover {
	color: #909090 !important;
}
a.text-secondary-color-light:hover {
	color: #ffe294 !important;
}

p.text-white a {
	color: #ffe294;
}
p.text-white a:hover {
	color: rgba(255, 255, 255, 0.7);
}
p.text-secondary-color a {
	color: #505050;
}
p.text-secondary-color a:hover {
	color: #222;
}

/* for secondary color background */
.stripe-secondary-color-bg p.text-white a {
	color: inherit;
}
.stripe-secondary-color-bg p.text-white a:hover {
	color: #eee;
}
.stripe-secondary-color-bg .text-secondary-color a {
	color: rgba(0, 0, 0, 0.65) !important;
}
.stripe-secondary-color-bg a.text-secondary-color:hover,
.stripe-secondary-color-bg .text-secondary-color a:hover {
	color: rgba(0, 0, 0, 0.5) !important;
}

/* Link for block */
a.block-link,
a.block-link:hover {
	color: inherit;
}

/* Read more link - small size */
a.read-more-link-small {
	position: relative;
	display: inline-block;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	color: #267ffd;
	padding-right: 23px;
	text-decoration: none;
}
a.read-more-link-small::before,
a.read-more-link-small::after {
	position: absolute;
	display: block;
	top: 9px;
	right: 2px;
	width: 14px;
	height: 12px;
	content: "";
	background: url(../images/icons/primary-color/link-arrow-long-primary1.svg) no-repeat left top;
	-webkit-transition: opacity 0.15s ease;
	     -o-transition: opacity 0.15s ease;
			transition: opacity 0.15s ease, right 0.15s ease;
}
a.read-more-link-small::after {
	background-image: url(../images/icons/primary-color/link-arrow-long-primary2.svg);
	opacity: 0;
}
a.read-more-link-small.text-uppercase,
.text-uppercase > a.read-more-link-small,
a.read-more-link-small > .text-uppercase {
	font-size: 15px;
}
a.read-more-link-small.text-uppercase::before,
a.read-more-link-small.text-uppercase::after,
.text-uppercase > a.read-more-link-small::before,
.text-uppercase > a.read-more-link-small::after {
	top: 7px;
}
a.read-more-link-small:hover {
	color: #1f69d1;
}
a.read-more-link-small:hover::after {
	opacity: 1;
}
a.read-more-link-small:hover::before,
a.read-more-link-small:hover::after {
	right: 0;
}
a.read-more-link-small.link-small-secondary-color { /* .link-small-secondary-color is used in WP editor */
	color: #e5b225;
}
a.read-more-link-small.link-small-secondary-color:hover {
	color: #909090;
}
a.read-more-link-small.link-small-secondary-color::before,
a.read-more-link-small.text-secondary-color::before {
	background-image: url(../images/icons/secondary-color/link-arrow-long-secondary1.svg);
}
a.read-more-link-small.link-small-secondary-color::after,
a.read-more-link-small.text-secondary-color::after {
	background-image: url(../images/icons/secondary-color/link-arrow-long-secondary2.svg);
}

/* File type links */
a.pdf-file,
a.word-file,
a.excel-file {
	position: relative;
	display: inline-block;
	font-size: 20px;
	font-weight: 400;
}
a.pdf-file::before,
a.word-file::before,
a.excel-file::before {
	display: inline-block;
	font-family: FontAwesome;
	font-size: 26px;
	line-height: 1;
	padding-right: 10px;
}
a.pdf-file::before { /* PDF file */
	color: #ea4c3a;
	content: "\f1c1";
}
a.word-file::before { /* Word file */
	color: #1c70b8;
	content: "\f1c2";
}
a.excel-file::before { /* Excel file */
	color: #4d9a34;
	content: "\f1c3";
}

/* Lists
--------------------------------------------------- */
ul,
ol {
	margin-bottom: 30px;
}
ul {
	list-style: disc outside;
	padding-left: 20px;
}
ol {
	list-style: decimal;
	padding-left: 26px;
	/*overflow: hidden;*/
}
ul.disc {
	/*overflow: hidden;*/
}
li {
	margin-bottom: 10px;
}
ul li:last-child,
ol li:last-child {
	margin-bottom: 0;
}

ul.tight li,
ol.tight li {
	margin-bottom: 0;
}

ul.list-unstyled {
	list-style: none;
	padding-left: 0;
}
ul.text-small li,
ol.text-small li {
	margin-bottom: 10px;
}

ul ul,
ul ol,
ol ol,
ol ul {
	padding-top: 10px;
	margin-bottom: 0;
}

ol.custom-counter {
	list-style: none;
	padding-left: 48px;
}
ol.custom-counter > li {
	position: relative;
	counter-increment: step-counter;
	margin-bottom: 20px;
}
ol.custom-counter > li::before {
	position: absolute;
	left: -48px;
	top: 0;
	width: 32px;
	height: 32px;
	content: counter(step-counter);
	font-size: 16px;
	font-weight: 700;
	line-height: 30px;
	background-color: rgba(38, 127, 253, 0.07); /* #267ffd */
	border: 1px solid rgba(38, 127, 253, 0.15); /* #267ffd */
	border-radius: 50%;
	text-align: center;
}
ol.custom-counter.text-small > li::before { /* ??? */
	top: 0;
	font-size: 18px;
}

/* Description List */
dt {
	font-weight: bold;
}
dd {
	margin: 0 0 20px;
}

@media (min-width: 1520px) {
	ul,
	ol {
		margin-bottom: 35px;
	}
}

/* Accessibility
--------------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}


/*-----------------------------------------------------------------------------------*/
/*	4. Buttons
/*-----------------------------------------------------------------------------------*/

.button-std,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	position: relative;
	display: inline-block;
	font-family: inherit;
	font-size: 17px;
	line-height: 25px;
	font-weight: 700;
	color: #fff;
	background: #267ffd;
	border: none;
	-webkit-border-radius: 4px;
	        border-radius: 4px;
	padding: 11px 24px 12px;
	outline: none;
	cursor: pointer;
	white-space: nowrap;
	-webkit-appearance: none;
	z-index: 1;
}
.button-std.text-uppercase,
.text-uppercase > .button-std,
.button-std > .text-uppercase {
	font-size: 16px;
}
.button-std::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #1f69d1;
	content: "";
	opacity: 0;
	-webkit-border-radius: 4px;
	        border-radius: 4px;
	-webkit-transition: opacity 0.15s ease;
	     -o-transition: opacity 0.15s ease;
			transition: opacity 0.15s ease;
	z-index: -1;
}

input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner {
	padding: 0;
	border: 0;
	margin: 0;
}

.button-std:hover {
	color: #fff;
	text-decoration: none;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	color: #fff;
	background: #1f69d1;
}
.button-std:hover::before {
	opacity: 1;
}

.button-std.button-medium {
	font-size: 15px;
	line-height: 23px;
	padding: 8px 20px 9px;
	-webkit-border-radius: 20px;
	        border-radius: 20px;
}
.button-std.button-medium.text-uppercase,
.text-uppercase > .button-std.button-medium,
.button-std.button-medium > .text-uppercase {
	font-size: 14px;
}
.button-std.button-medium::before {
	-webkit-border-radius: 20px;
	        border-radius: 20px;
}

/* secondary color button */
.button-std.button-colored {
	background: #ffc529;
	background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
	background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
}
.button-std.button-colored::before {
	background: #e5b225;
}

/* grey button */
.button-std.button-grey {
	background: rgba(11, 37, 75, 0.7); /* #0b254b */
}
.button-std.button-grey::before {
	background: rgba(11, 37, 75, 0.5); /* #0b254b */
}

@media (max-width: 991px) {
	.button-std,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
		font-size: 16px;
		padding-left: 18px;
		padding-right: 18px;
	}
	.button-std.text-uppercase,
	.text-uppercase > .button-std,
	.button-std > .text-uppercase {
		font-size: 15px;
	}
	.button-std.button-medium {
		font-size: 14px;
		padding: 9px 18px 8px;
	}
	.button-std.button-medium.text-uppercase,
	.text-uppercase > .button-std.button-medium,
	.button-std.button-medium > .text-uppercase {
		font-size: 13px;
	}
}


/*-----------------------------------------------------------------------------------*/
/*	5. Forms
/*-----------------------------------------------------------------------------------*/

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
	display: block;
	width: 100%;
	font-family: inherit;
	font-size: 18px;
	line-height: 26px;
	font-weight: 300;
	color: #666;
	background-color: #fff;
	border: 1px solid rgba(11, 37, 75, 0.5); /* #0b254b */
	-webkit-border-radius: 0;
	        border-radius: 0;
	margin: 0 0 20px;
	padding: 8px 15px;
	outline: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
	-webkit-appearance: none;
}
input[type="checkbox"] {
	display: inline;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
textarea {
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 25px;
}
label,
legend {
	display: block;
	font-size: 16px;
}
input,
textarea {
	-webkit-transition-property: color, border-color, background-color, box-shadow;
	     -o-transition-property: color, border-color, background-color, box-shadow;
	        transition-property: color, border-color, background-color, box-shadow;
	-webkit-transition-duration: 0.15s;
	     -o-transition-duration: 0.15s;
	        transition-duration: 0.15s;
}

/* Custom select */
.select-wrapper {
	position: relative;
	display: block;
	margin-bottom: 17px;
}
.select-wrapper::after {
	position: absolute;
	top: 50%;
	right: 15px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 7px solid rgba(11, 37, 75, 0.5); /* #0b254b */
	margin-top: -3px;
	content: "";
	z-index: 2;
	/* These hacks make the select behind the arrow clickable in some browsers */
	pointer-events: none;
}
.select-wrapper select { /* Remove select styling */
	background: none;
	margin: 0;
	padding-right: 32px;
	text-overflow: ellipsis;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

/* For IE10 and higher */
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.select-wrapper select::-ms-expand {
		display: none;
	}
	.select-wrapper select:focus::-ms-value {
		background: transparent;
	}
}
@-moz-document url-prefix() {
	.select-wrapper select {
		padding-left: 12px;
	}
}


/*-----------------------------------------------------------------------------------*/
/*	6. Images
/*-----------------------------------------------------------------------------------*/

img {
	max-width: 100%;
	height: auto;
}
.image-wrapper {
	position: relative;
}
.scale-with-grid {
	display: block;
	max-width: 100%;
	height: auto;
}
.frame-scale-with-grid {
	max-width: 100%;
}

/* Round image */
.img-round {
	-webkit-border-radius: 50%;
	        border-radius: 50%;
}
.img-round.img-shadow.shadow-primary-color {
	-webkit-box-shadow: -7px -6px 0 5px rgba(38, 127, 253, 0.2);
	        box-shadow: -7px -6px 0 5px rgba(38, 127, 253, 0.2); /* #267ffd */
}
.img-round.img-shadow.shadow-secondary-color {
	-webkit-box-shadow: -7px -6px 0 5px rgba(255, 197, 41, 0.2);
	        box-shadow: -7px -6px 0 5px rgba(255, 197, 41, 0.2); /* #ffc529 */
}

/* Centering an image */
.widget-single-image[class*="align-"][class*="center"]:not([class*="width-"]) figure {
	line-height: 0;
}
.widget-single-image[class*="align-"][class*="center"]:not([class*="width-"]) figure img {
	display: inline;
}

.widget-single-image:not([class*="width-"]) figure.overlay-enabled {
	display: inline-block;
	margin-bottom: -10px;
}

/* Image caption */
figure figcaption.item-label {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	text-align: center;
	margin-top: 15px;
}
.mfp-figure figure figcaption {
    font-size: 18px;
	font-weight: 400;
}

/* Image added in post editor
--------------------------------------------------- */
p img[class*="wp-image"] {
	padding: 5px 0 30px;
}
.wp-caption {
	max-width: 100%;
	padding: 5px 0 35px;
}
img[class*="wp-image"].alignleft,
.wp-caption.alignleft {
	float: left;
	padding-right: 30px;
}
img[class*="wp-image"].alignright,
.wp-caption.alignright {
	float: right;
	padding-left: 30px;
}
img[class*="wp-image"].aligncenter,
.wp-caption.aligncenter {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.wp-caption-text {
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
	color: #909090;
	margin-top: 10px;
}
.gallery-caption {
	max-width: 100%;
}
img.wp-smiley {
	display: inline;
}

/* The noscript fallback for image lazy-loading */
.no-js img.lazyload {
	display: none;
}

/* Media queries
--------------------------------------------------- */
@media (min-width: 1921px) {
	/* Image taking the full size of a stripe section */
	.stripe .container-fluid > .row > .col-sm-12 figure.img-narrow.img-xxl-bg {
		background-image: var(--background);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.stripe .container-fluid > .row > .col-sm-12 figure.img-narrow.img-xxl-bg img {
		visibility: hidden;
	}
}
@media (min-width: 571px) and (max-width: 767px) {
	/* Image taking the full size of a stripe section */
	.stripe .container-fluid > .row > .col-sm-12 figure.img-narrow img {
		max-width: 120%;
		margin-left: -10%;
		margin-right: -10%;
	}
}
@media (min-width: 480px) and (max-width: 570px) {
	/* Image taking the full size of a stripe section */
	.stripe .container-fluid > .row > .col-sm-12 figure.img-narrow img {
		max-width: 150%;
		margin-left: -25%;
		margin-right: -25%;
	}
}
@media (max-width: 479px) {
	/* Image taking the full size of a stripe section */
	.stripe .container-fluid > .row > .col-sm-12 figure.img-narrow img {
		max-width: 200%;
		margin-left: -50%;
		margin-right: -50%;
	}
}


/*-----------------------------------------------------------------------------------*/
/*	7. Width, Height, Margin, Padding, Offset
/*-----------------------------------------------------------------------------------*/

/* Margin/padding of element/block
--------------------------------------------------- */
.remove-bottom { margin-bottom: 0 !important; }
.margin-bottom-3px { margin-bottom: 3px !important; }
.margin-bottom-5px { margin-bottom: 5px !important; }
.margin-bottom-7px { margin-bottom: 7px !important; }
.margin-bottom-10px { margin-bottom: 10px !important; }
.margin-bottom-12px { margin-bottom: 12px !important; }
.margin-bottom-15px { margin-bottom: 15px !important; }
.margin-bottom-20px { margin-bottom: 20px !important; }
.margin-bottom-25px { margin-bottom: 25px !important; }
.margin-bottom-30px { margin-bottom: 30px !important; }
.margin-bottom-35px { margin-bottom: 35px !important; }
.margin-bottom-40px { margin-bottom: 40px !important; }
.margin-bottom-45px { margin-bottom: 45px !important; }
.margin-bottom-50px { margin-bottom: 50px !important; }
.margin-bottom-55px { margin-bottom: 55px !important; }
.margin-bottom-60px { margin-bottom: 60px !important; }
.margin-bottom-65px { margin-bottom: 65px !important; }
.margin-bottom-70px { margin-bottom: 70px !important; }
.margin-bottom-75px { margin-bottom: 75px !important; }
.margin-bottom-80px { margin-bottom: 80px !important; }
.margin-bottom-85px { margin-bottom: 85px !important; }
.margin-bottom-90px { margin-bottom: 90px !important; }
.margin-bottom-95px { margin-bottom: 95px !important; }
.margin-bottom-100px { margin-bottom: 100px !important; }

.margin-top-5px { margin-top: 5px; }
.margin-top-10px { margin-top: 10px; }
.margin-top-15px { margin-top: 15px; }
.margin-top-20px { margin-top: 20px; }
.margin-top-25px { margin-top: 25px; }
.margin-top-30px { margin-top: 30px; }
.margin-top-35px { margin-top: 35px; }
.margin-top-40px { margin-top: 40px; }
.margin-top-45px { margin-top: 45px; }
.margin-top-50px { margin-top: 50px; }
.margin-top-55px { margin-top: 55px; }
.margin-top-60px { margin-top: 60px; }
.margin-top-65px { margin-top: 65px; }
.margin-top-70px { margin-top: 70px; }
.margin-top-75px { margin-top: 75px; }
.margin-top-80px { margin-top: 80px; }
.margin-top-85px { margin-top: 85px; }
.margin-top-90px { margin-top: 90px; }
.margin-top-95px { margin-top: 95px; }
.margin-top-100px { margin-top: 100px; }

.padding-top-5px { padding-top: 5px; }
.padding-top-10px { padding-top: 10px; }
.padding-top-15px { padding-top: 15px; }
.padding-top-20px { padding-top: 20px; }
.padding-top-25px { padding-top: 25px; }
.padding-top-30px { padding-top: 30px; }
.padding-top-35px { padding-top: 35px; }
.padding-top-40px { padding-top: 40px; }
.padding-top-45px { padding-top: 45px; }
.padding-top-50px { padding-top: 50px; }
.padding-top-55px { padding-top: 55px; }
.padding-top-60px { padding-top: 60px; }
.padding-top-65px { padding-top: 65px; }
.padding-top-70px { padding-top: 70px; }
.padding-top-75px { padding-top: 75px; }
.padding-top-80px { padding-top: 80px; }
.padding-top-85px { padding-top: 85px; }
.padding-top-90px { padding-top: 90px; }
.padding-top-95px { padding-top: 95px; }
.padding-top-100px { padding-top: 100px; }

.gap[class*="margin-bottom-"] {
	height: 1px; margin-top: -1px;
}

/* Indentation of element/block
--------------------------------------------------- */
.indent-small {
	padding-left: 10px;
}
.indent-medium {
	padding-left: 20px;
}
.indent-large {
	padding-left: 30px;
}
ul.indent-small,
ol.indent-small {
	padding-left: 30px;
}
ul.indent-medium,
ol.indent-medium {
	padding-left: 40px;
}
ul.indent-large,
ol.indent-large {
	padding-left: 50px;
}
ol.custom-counter.indent-small {
	margin-left: 10px;
	padding-left: 48px;
}
ol.custom-counter.indent-medium {
	margin-left: 20px;
	padding-left: 48px;
}
ol.custom-counter.indent-large {
	margin-left: 30px;
	padding-left: 48px;
}

/* Width of element/block
--------------------------------------------------- */
.width-50px  { width: 50px; }
.width-60px  { width: 60px; }
.width-70px  { width: 70px; }
.width-80px  { width: 80px; }
.width-90px  { width: 90px; }
.width-100px { width: 100px; }
.width-110px { width: 110px; }
.width-120px { width: 120px; }
.width-130px { width: 130px; }
.width-140px { width: 140px; }
.width-150px { width: 150px; }
.width-160px { width: 160px; }
.width-170px { width: 170px; }
.width-180px { width: 180px; }
.width-190px { width: 190px; }
.width-200px { width: 200px; }
.width-210px { width: 210px; }
.width-220px { width: 220px; }
.width-230px { width: 230px; }
.width-240px { width: 240px; }
.width-250px { width: 250px; }
.width-260px { width: 260px; }
.width-270px { width: 270px; }
.width-280px { width: 280px; }
.width-290px { width: 290px; }
.width-300px { width: 300px; }
.width-310px { width: 310px; }
.width-320px { width: 320px; }
.width-330px { width: 330px; }
.width-340px { width: 340px; }
.width-350px { width: 350px; }
.width-360px { width: 360px; }
.width-370px { width: 370px; }
.width-380px { width: 380px; }
.width-390px { width: 390px; }
.width-400px { width: 400px; }
.width-410px { width: 410px; }
.width-420px { width: 420px; }
.width-430px { width: 430px; }
.width-440px { width: 440px; }
.width-450px { width: 450px; }
.width-460px { width: 460px; }
.width-470px { width: 470px; }
.width-480px { width: 480px; }
.width-490px { width: 490px; }
.width-500px { width: 500px; }
.width-510px { width: 510px; }
.width-520px { width: 520px; }
.width-530px { width: 530px; }
.width-540px { width: 540px; }
.width-550px { width: 550px; }
.width-560px { width: 560px; }
.width-570px { width: 570px; }
.width-580px { width: 580px; }
.width-590px { width: 590px; }
.width-600px { width: 600px; }
.width-610px { width: 610px; }
.width-620px { width: 620px; }
.width-630px { width: 630px; }
.width-640px { width: 640px; }
.width-650px { width: 650px; }
.width-660px { width: 660px; }
.width-670px { width: 670px; }
.width-680px { width: 680px; }
.width-690px { width: 690px; }
.width-700px { width: 700px; }
.width-710px { width: 710px; }
.width-720px { width: 720px; }
.width-730px { width: 730px; }
.width-740px { width: 740px; }
.width-750px { width: 750px; }
.width-760px { width: 760px; }
.width-770px { width: 770px; }
.width-780px { width: 780px; }
.width-790px { width: 790px; }
.width-800px { width: 800px; }
.width-810px { width: 810px; }
.width-820px { width: 820px; }
.width-830px { width: 830px; }
.width-840px { width: 840px; }
.width-850px { width: 850px; }

[class*="width-"][class*="px"] {
	max-width: 100%;
}

.width-one-fourth { width: 25%; }
.width-one-third { width: 33.333333%; }
.width-one-half { width: 50%; }
.width-two-thirds { width: 66.666666%; }
.width-three-fourths { width: 75%; }

.width-10pct { width: 10%; }
.width-20pct { width: 20%; }
.width-30pct { width: 30%; }
.width-35pct { width: 35%; }
.width-40pct { width: 40%; }
.width-45pct { width: 45%; }
.width-50pct { width: 50%; }
.width-60pct { width: 60%; }
.width-70pct { width: 70%; }
.width-80pct { width: 80%; }
.width-90pct { width: 90%; }
.width-100pct { width: 100%; }

@media (max-width: 767px) {
	.width-auto-only-xs {
		width: auto;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.width-auto-only-sm {
		width: auto;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.width-auto-only-md {
		width: auto;
	}
}
@media (min-width: 1200px) and (max-width: 1519px) {
	.width-auto-only-lg {
		width: auto;
	}
}
@media (min-width: 1520px) {
	.width-auto-only-xl {
		width: auto;
	}
}

/* Centering an element/block with adaptive width
--------------------------------------------------- */
@media (min-width: 1200px) {
	.width-50pct-centered {
		width: 50% !important;
		margin-left: 25%;
		margin-right: 25%;
	}
	.width-60pct-centered {
		width: 60% !important;
		margin-left: 20%;
		margin-right: 20%;
	}
	.width-70pct-centered {
		width: 70% !important;
		margin-left: 15%;
		margin-right: 15%;
	}
	.width-80pct-centered {
		width: 80% !important;
		margin-left: 10%;
		margin-right: 10%;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.width-50pct-centered {
		width: 60% !important;
		margin-left: 20%;
		margin-right: 20%;
	}
	.width-60pct-centered {
		width: 70% !important;
		margin-left: 15%;
		margin-right: 15%;
	}
	.width-70pct-centered {
		width: 76% !important;
		margin-left: 12%;
		margin-right: 12%;
	}
	.width-80pct-centered {
		width: 84% !important;
		margin-left: 8%;
		margin-right: 8%;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.width-50pct-centered {
		width: 70% !important;
		margin-left: 15%;
		margin-right: 15%;
	}
	.width-60pct-centered {
		width: 76% !important;
		margin-left: 12%;
		margin-right: 12%;
	}
	.width-70pct-centered {
		width: 84% !important;
		margin-left: 8%;
		margin-right: 8%;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.width-50pct-centered {
		width: 86% !important;
		margin-left: 7%;
		margin-right: 7%;
	}
	.width-60pct-centered {
		width: 86% !important;
		margin-left: 7%;
		margin-right: 7%;
	}
}

/* Offset left/right for element/block
--------------------------------------------------- */
.offset-left-5px    { margin-left: 5px; }
.offset-right-5px   { margin-right: 5px; }
.offset-left-10px   { margin-left: 10px; }
.offset-right-10px  { margin-right: 10px; }
.offset-left-15px   { margin-left: 15px; }
.offset-right-15px  { margin-right: 15px; }
.offset-left-20px   { margin-left: 20px; }
.offset-right-20px  { margin-right: 20px; }
.offset-left-25px   { margin-left: 25px; }
.offset-right-25px  { margin-right: 25px; }
.offset-left-30px   { margin-left: 30px; }
.offset-right-30px  { margin-right: 30px; }
.offset-left-40px   { margin-left: 40px; }
.offset-right-40px  { margin-right: 40px; }
.offset-left-50px   { margin-left: 50px; }
.offset-right-50px  { margin-right: 50px; }
.offset-left-60px   { margin-left: 60px; }
.offset-right-60px  { margin-right: 60px; }
.offset-left-70px   { margin-left: 70px; }
.offset-right-70px  { margin-right: 70px; }

.offset-left-1col   { margin-left: 8.33333333%; }
.offset-right-1col  { margin-right: 8.33333333%; }
.offset-left-10pct  { margin-left: 10%; }
.offset-right-10pct { margin-right: 10%; }
.offset-left-15pct  { margin-left: 15%; }
.offset-right-15pct { margin-right: 15%; }
.offset-left-20pct  { margin-left: 20%; }
.offset-right-20pct { margin-right: 20%; }
.offset-left-25pct  { margin-left: 25%; }
.offset-right-25pct { margin-right: 25%; }

@media (min-width: 768px) {
	.offset-sm-left-5px    { margin-left: 5px; }
	.offset-sm-right-5px   { margin-right: 5px; }
	.offset-sm-left-10px   { margin-left: 10px; }
	.offset-sm-right-10px  { margin-right: 10px; }
	.offset-sm-left-15px   { margin-left: 15px; }
	.offset-sm-right-15px  { margin-right: 15px; }
	.offset-sm-left-20px   { margin-left: 20px; }
	.offset-sm-right-20px  { margin-right: 20px; }
	.offset-sm-left-25px   { margin-left: 25px; }
	.offset-sm-right-25px  { margin-right: 25px; }
	.offset-sm-left-30px   { margin-left: 30px; }
	.offset-sm-right-30px  { margin-right: 30px; }
	.offset-sm-left-40px   { margin-left: 40px; }
	.offset-sm-right-40px  { margin-right: 40px; }
	.offset-sm-left-50px   { margin-left: 50px; }
	.offset-sm-right-50px  { margin-right: 50px; }
	.offset-sm-left-60px   { margin-left: 60px; }
	.offset-sm-right-60px  { margin-right: 60px; }
	.offset-sm-left-70px   { margin-left: 70px; }
	.offset-sm-right-70px  { margin-right: 70px; }
	
	.offset-sm-left-1col   { margin-left: 8.33333333%; }
	.offset-sm-right-1col  { margin-right: 8.33333333%; }
	.offset-sm-left-10pct  { margin-left: 10%; }
	.offset-sm-right-10pct { margin-right: 10%; }
	.offset-sm-left-15pct  { margin-left: 15%; }
	.offset-sm-right-15pct { margin-right: 15%; }
	.offset-sm-left-20pct  { margin-left: 20%; }
	.offset-sm-right-20pct { margin-right: 20%; }
	.offset-sm-left-25pct  { margin-left: 25%; }
	.offset-sm-right-25pct { margin-right: 25%; }
}

@media (min-width: 992px) {
	.offset-md-left-5px    { margin-left: 5px; }
	.offset-md-right-5px   { margin-right: 5px; }
	.offset-md-left-10px   { margin-left: 10px; }
	.offset-md-right-10px  { margin-right: 10px; }
	.offset-md-left-15px   { margin-left: 15px; }
	.offset-md-right-15px  { margin-right: 15px; }
	.offset-md-left-20px   { margin-left: 20px; }
	.offset-md-right-20px  { margin-right: 20px; }
	.offset-md-left-25px   { margin-left: 25px; }
	.offset-md-right-25px  { margin-right: 25px; }
	.offset-md-left-30px   { margin-left: 30px; }
	.offset-md-right-30px  { margin-right: 30px; }
	.offset-md-left-40px   { margin-left: 40px; }
	.offset-md-right-40px  { margin-right: 40px; }
	.offset-md-left-50px   { margin-left: 50px; }
	.offset-md-right-50px  { margin-right: 50px; }
	.offset-md-left-60px   { margin-left: 60px; }
	.offset-md-right-60px  { margin-right: 60px; }
	.offset-md-left-70px   { margin-left: 70px; }
	.offset-md-right-70px  { margin-right: 70px; }
	
	.offset-md-left-1col   { margin-left: 8.33333333%; }
	.offset-md-right-1col  { margin-right: 8.33333333%; }
	.offset-md-left-10pct  { margin-left: 10%; }
	.offset-md-right-10pct { margin-right: 10%; }
	.offset-md-left-15pct  { margin-left: 15%; }
	.offset-md-right-15pct { margin-right: 15%; }
	.offset-md-left-20pct  { margin-left: 20%; }
	.offset-md-right-20pct { margin-right: 20%; }
	.offset-md-left-25pct  { margin-left: 25%; }
	.offset-md-right-25pct { margin-right: 25%; }
}

@media (min-width: 1200px) {
	.offset-lg-left-5px    { margin-left: 5px; }
	.offset-lg-right-5px   { margin-right: 5px; }
	.offset-lg-left-10px   { margin-left: 10px; }
	.offset-lg-right-10px  { margin-right: 10px; }
	.offset-lg-left-15px   { margin-left: 15px; }
	.offset-lg-right-15px  { margin-right: 15px; }
	.offset-lg-left-20px   { margin-left: 20px; }
	.offset-lg-right-20px  { margin-right: 20px; }
	.offset-lg-left-25px   { margin-left: 25px; }
	.offset-lg-right-25px  { margin-right: 25px; }
	.offset-lg-left-30px   { margin-left: 30px; }
	.offset-lg-right-30px  { margin-right: 30px; }
	.offset-lg-left-40px   { margin-left: 40px; }
	.offset-lg-right-40px  { margin-right: 40px; }
	.offset-lg-left-50px   { margin-left: 50px; }
	.offset-lg-right-50px  { margin-right: 50px; }
	.offset-lg-left-60px   { margin-left: 60px; }
	.offset-lg-right-60px  { margin-right: 60px; }
	.offset-lg-left-70px   { margin-left: 70px; }
	.offset-lg-right-70px  { margin-right: 70px; }
	
	.offset-lg-left-1col   { margin-left: 8.33333333%; }
	.offset-lg-right-1col  { margin-right: 8.33333333%; }
	.offset-lg-left-10pct  { margin-left: 10%; }
	.offset-lg-right-10pct { margin-right: 10%; }
	.offset-lg-left-15pct  { margin-left: 15%; }
	.offset-lg-right-15pct { margin-right: 15%; }
	.offset-lg-left-20pct  { margin-left: 20%; }
	.offset-lg-right-20pct { margin-right: 20%; }
	.offset-lg-left-25pct  { margin-left: 25%; }
	.offset-lg-right-25pct { margin-right: 25%; }
}

@media (min-width: 1520px) {
	.offset-xl-left-5px    { margin-left: 5px; }
	.offset-xl-right-5px   { margin-right: 5px; }
	.offset-xl-left-10px   { margin-left: 10px; }
	.offset-xl-right-10px  { margin-right: 10px; }
	.offset-xl-left-15px   { margin-left: 15px; }
	.offset-xl-right-15px  { margin-right: 15px; }
	.offset-xl-left-20px   { margin-left: 20px; }
	.offset-xl-right-20px  { margin-right: 20px; }
	.offset-xl-left-25px   { margin-left: 25px; }
	.offset-xl-right-25px  { margin-right: 25px; }
	.offset-xl-left-30px   { margin-left: 30px; }
	.offset-xl-right-30px  { margin-right: 30px; }
	.offset-xl-left-40px   { margin-left: 40px; }
	.offset-xl-right-40px  { margin-right: 40px; }
	.offset-xl-left-50px   { margin-left: 50px; }
	.offset-xl-right-50px  { margin-right: 50px; }
	.offset-xl-left-60px   { margin-left: 60px; }
	.offset-xl-right-60px  { margin-right: 60px; }
	.offset-xl-left-70px   { margin-left: 70px; }
	.offset-xl-right-70px  { margin-right: 70px; }
	
	.offset-xl-left-1col   { margin-left: 8.33333333%; }
	.offset-xl-right-1col  { margin-right: 8.33333333%; }
	.offset-xl-left-10pct  { margin-left: 10%; }
	.offset-xl-right-10pct { margin-right: 10%; }
	.offset-xl-left-15pct  { margin-left: 15%; }
	.offset-xl-right-15pct { margin-right: 15%; }
	.offset-xl-left-20pct  { margin-left: 20%; }
	.offset-xl-right-20pct { margin-right: 20%; }
	.offset-xl-left-25pct  { margin-left: 25%; }
	.offset-xl-right-25pct { margin-right: 25%; }
}

/* Height of element/block
--------------------------------------------------- */
.height-15px  { height: 15px !important; }
.height-20px  { height: 20px !important; }
.height-25px  { height: 25px !important; }
.height-30px  { height: 30px !important; }
.height-35px  { height: 35px !important; }
.height-40px  { height: 40px !important; }
.height-45px  { height: 45px !important; }
.height-50px  { height: 50px !important; }
.height-55px  { height: 55px !important; }
.height-60px  { height: 60px !important; }
.height-65px  { height: 65px !important; }
.height-70px  { height: 70px !important; }
.height-75px  { height: 75px !important; }
.height-80px  { height: 80px !important; }
.height-85px  { height: 85px !important; }
.height-90px  { height: 90px !important; }
.height-95px  { height: 95px !important; }
.height-100px { height: 100px !important; }
.height-110px { height: 110px !important; }
.height-120px { height: 120px !important; }
.height-130px { height: 130px !important; }
.height-140px { height: 140px !important; }
.height-150px { height: 150px !important; }
.height-160px { height: 160px !important; }
.height-170px { height: 170px !important; }
.height-180px { height: 180px !important; }
.height-190px { height: 190px !important; }
.height-200px { height: 200px !important; }
.height-210px { height: 210px !important; }
.height-220px { height: 220px !important; }
.height-230px { height: 230px !important; }
.height-240px { height: 240px !important; }
.height-250px { height: 250px !important; }
.height-260px { height: 260px !important; }
.height-270px { height: 270px !important; }
.height-280px { height: 280px !important; }
.height-290px { height: 290px !important; }
.height-300px { height: 300px !important; }
.height-310px { height: 310px !important; }
.height-320px { height: 320px !important; }
.height-330px { height: 330px !important; }
.height-340px { height: 340px !important; }
.height-350px { height: 350px !important; }
.height-360px { height: 360px !important; }
.height-370px { height: 370px !important; }
.height-380px { height: 380px !important; }
.height-390px { height: 390px !important; }
.height-400px { height: 400px !important; }
