/*---- HTML TAGS ----*/

@font-face {
    font-family: 'Open Sans Fallback';
    src: local('Arial');

    /* Overrides for Open Sans (Primary) to match Arial (Fallback) */
    /* These values are estimated to minimize layout shift with Arial */
    ascent-override: 90%;
    descent-override: 21%;
    line-gap-override: 5%;
}

* {
	margin:0; 
	padding:0;
}

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
    --bg-color: #fff;
    --header-bg-color: #f6f6f6;
    --text-color: #000;
    --link-color: #444;
    --header-link-color: #333;
    --section-bg-color:#fff;
    --section-alt-bg-color:rgb(245, 245, 247);
    --section-info-bg-color: #f9f9f9;
    --section-info-color: #555;
}

body.dark {
    --bg-color: #35363a;
    --header-bg-color: #202124;
    --text-color: rgb(232, 234, 237);
    --link-color: #f9f9f9;
    --header-link-color: #ddd;
    --section-bg-color: #35363a;
    --section-alt-bg-color:#4e4f52;
    --section-info-bg-color: #333;
    --section-info-color: white;
}

img {
	border: none;
}

html,
body {
	font-size: 62.5%; 
	-webkit-text-size-adjust: none;
}

body {
	background: var(--bg-color); 
	font-family: 'Open Sans', 'Open Sans Fallback', Arial, sans-serif;
	font-size:14px;
	font-size:1.4em;
}

@media (min-width: 1400px) {
	body
	{
		font-size:16px;
		font-size:1.6rem;
	}
}

@media (min-width: 992px) {
  html, body  {
    height:100%;
  }
}

ol,
ul {
	list-style:none;
}

ul.display-list {
    list-style: disc;
    margin: 5px 30px;
}

a {
	color: var(--link-color);
}

a:hover {
	text-decoration: none;
}

h1 {
  margin: .67em 0;
  font-size: 2.5rem;
}

h2 {
	font-size: 2rem; 
	font-weight: 300; 
	color: #14a5e0; 
	line-height: 30px; 
	text-shadow: 0 1px #fff; 
	padding-bottom: 10px; 
	margin-bottom: 15px;
}
body.dark h2 {
    text-shadow: none;
    color: var(--text-color)
}

h3 {
	font-size: 2.0rem;
	font-weight: 600;
	line-height: 24px;
	margin-bottom: 15px;
}

h4 {
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 20px;
	margin-bottom: 10px;
}
h5
{
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 18px;
	margin-bottom: 10px;
}

p {
	line-height: 20px;
	font-size:inherit;
}

/*---- HEADER ----*/

.header {
	background: var(--header-bg-color);
    transition: background-color 0.2s ease;
    min-height: 117px;
}

.headerBar {
	padding: 20px 0 0 0;
}
 
.logoPanel
{
}

.logoPanel .theme-selector {
    margin-top:-3px;
}
 
.header .logo {
	width: 60px; 
	height: 60px; 
	float: left; 
	margin: 0;
}

.header .logo img {
    width: 100%;
    height: 100%;
}

.header .logo.spin {
    animation: rotate360 4s infinite 0s linear;
    -webkit-animation: rotate360 4s infinite 0s linear;
    -moz-animation: rotate360 4s linear 0s infinite;
    -o-animation: rotate360 4s infinite 0s linear;
    -ms-animation: rotate360 4s infinite 0s linear;
}

@-webkit-keyframes rotate360 {
    0% { -webkit-transform:rotate(0deg); }
    100% { -webkit-transform:rotate(360deg); }
}
@-moz-keyframes rotate360 {
    0% { -moz-transform:rotate(0deg); }
    100% { -moz-transform:rotate(360deg); }
} 
@-o-keyframes rotate360 {
    0% { -o-transform:rotate(0deg); }
    100% { -o-transform:rotate(360deg); }
} 
@-ms-keyframes rotate360 {
    0% { -ms-transform:rotate(0deg); }
    100% { -ms-transform:rotate(360deg); }
} 
@keyframes rotate360 {
    0% { transform:rotate(0deg); }
    100% { transform:rotate(360deg); }
}

/* Reverse 360 animation */
@-webkit-keyframes rotate360-rev {
    0% { -webkit-transform:rotate(360deg); }
    100% { -webkit-transform:rotate(0deg); }
}
@-moz-keyframes rotate360-rev {
    0% { -moz-transform:rotate(360deg); }
    100% { -moz-transform:rotate(0deg); }
} 
@-o-keyframes rotate360-rev {
    0% { -o-transform:rotate(360deg); }
    100% { -o-transform:rotate(0deg); }
} 
@-ms-keyframes rotate360-rev {
    0% { -ms-transform:rotate(360deg); }
    100% { -ms-transform:rotate(0deg); }
}
@keyframes rotate360 {
    0% { transform:rotate(0deg); }
    100% { transform:rotate(360deg); }
}

.header .slogan {
	color: #888;
	width: 230px; 
	float: left; 
	border-left: 1px solid #cdcdcd; 
	padding-left: 15px; 
	text-shadow: 0 1px #fff; 
	padding-top: 5px;
	height:56px;
    margin-left: 13px;
}

.header .title
{
	font-size:18px;
	font-size: 1.8rem;
	color: var(--text-color);
	text-shadow: none;
	font-weight: bold;
}

.centered {
    text-align: center;
    margin: 0 auto;
}

.floatingIcons {
	float:right;
	opacity:.7;
	margin-top:10px;
	cursor:pointer;
}

 .floatingIcons .menu {
	width:24px;
	height:24px;
	float:left;
	background: url(../images/menu-icon.png) no-repeat 0 0;
 }
 
 .floatingIcons .search {
	width:24px;
	height:24px;
	float:left;
	margin-left:10px;
	background: url(../images/search-icon.png) no-repeat 0 0;
 }
 
.header .linksPanel
{
	float: right;
	margin-right: 0;
}

header  ul.navbar {
	clear:both;
	padding-top:5px;
	float:right;
}

.navbar>li {
	position: relative;
	display: block;
	float: left;
}

.navbar > li > a {
	float: none;
	font-size: 1em;
	padding: 10px 5px;
	margin-left: 10px;
	margin-right: 0;
	color: var(--header-link-color);
	text-decoration: none;
	position: relative;
	display: inline-block;
}

.navbar a::before, .navbar a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

.link-flip a {
	font-weight: 500;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 80px;
	perspective: 80px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

.link-flip a:hover,
.link-flip a:focus {
	color: #2980b9;
}

.link-flip a::before,
.link-flip a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

.link-flip a::before {
	background-color: #fff;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

.link-flip a:hover::before,
.link-flip a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

.navbar .dropdown {
	padding-left: 5px;
	height:10px;
	transition-duration: .5s;
}

.navbar .flip .dropdown {
	padding-left: 5px;
	height:10px;
	 -moz-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
    -ms-filter: flipv; 
    filter: flipv; 
}


.header .searchbar
{
	position:relative;
	margin-right:0px;
	margin-bottom:15px;
	float:right;
	width: 240px;
}

.header .searchText
{
	float:right;
	width:100%;
	font-size: .9em;
	background-color: transparent;
	color: #000;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 6px 25px 6px 10px;
	vertical-align: top;
	background-color:white;
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	transition: width 0.15s ease;
	-moz-transition: width 0.15s ease;
	-webkit-transition: width 0.15s ease;
}

.header .searchText:focus
{
	width:100%;
}

.header .searchButton
{
	position: absolute;
	right: 5px;
	top: 5px;
}

@media (min-width: 480px)
{	
	.logoPanel {
		min-width:310px;
	}
}

@media (max-width: 480px) {
	.logoPanel .logo  {
		display:block;
		margin:5px auto;
		float: none;
	}
	
	.header .slogan {
		border-left:none;
		padding-left:0px;
	}
	
	.header .linksPanel {
		float:none;
	}

    .header .searchbar {
        width: 100%;
        margin-top: 10px;
    }
	
	.navbar
	{
		height:170px;
		float:left;
		width:100%;
	}

	.navbar>li {
		position: relative;
		display: block;
		width:100%;
		float: left;
	}

	.navbar > li > a {
		float: none;
		font-size: 1em;
		padding: 10px 10px;
		color: white;
		text-decoration: none;
		width:100%;
		display: block;
		margin:2px 15px 0px 0px;
		background-color: #0060a6;
	}

	.navbar > li > a:hover {
		background-color: #083047;
	}
}

/*---- PRODUCT BAR ----*/
.productBar
{
	background-color:white;
	min-height:5px;
}

#productMenu {
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
	width:100%;
	height:0px;
	overflow:hidden;
    transition: all .2s ease-in-out;
}

#productMenu.visible {
    height: 110px;
}

#productMenu li {
	color: black;
	display: inline-table;
	float: right;
	height: 110px;
	padding: 16px 0px 6px 0px;
	text-align: center;
	width: 12.5%;
	min-width:107px;
	position: relative;
}

#productMenu li:hover {
	background-color:#EEE;
	opacity:.8;
}

#productMenu li img
{
	width:45px;
	height:45px;
}

#productMenu li .color-bar {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	border-bottom:3px solid #144e8c
}

#productMenu li .products-color-bar {
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height:3px;
	overflow:none;
}

#productMenu li .products-color-bar > div
{
	width:25%;
	height:3px;
	background-color:red;
	float:left;
}

#productMenu li  a {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 10;
}

@media (min-width: 1400px) {
    #productMenu.visible {
        height: 120px;
    }
	
	#productMenu li {
		height:120px;
		width:11%;
	}
}

/*---- FOOTER ----*/
.footerHeight
{
	height: 280px;
	clear:both;
}

footer {
	background: #999;
	border-top:4px solid #ccc;
	color: white;
	height: 280px;
	clear: both;
	margin: -280px 0 0;
	position: relative;
	font-weight: 500;
	font-size:14px;
	font-size:1.4rem;
}

@media (max-width: 768px) {
	footer {
		height:auto;
		margin: -280px 0 0;
	}
}

@media (min-width: 1400px) {
	footer {
		font-size:16px;
		font-size:1.6rem;
		height: 285px;
		margin: -285px 0 0;
	}
}

footer .heading
{
	margin-bottom: 1em;
	font-weight:bold;
}

footer a
{
	text-decoration:none;
	color: white;
	display:block;
	position: relative;
	display: inline-block;
	outline: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
footer a:hover {
	color: #D9F548;
	text-decoration:none;
}
footer li {
	line-height: 1.25;
	display: block;
	margin: 0 0 .6em;
	font-size: 1em;
}

footer .row
{
	padding-bottom:10px;
}

footer .productList, footer .pages, footer .latest-posts
{
	margin-top:20px;
}

footer .productList img {
	display: inline-block;
	height: 26px;
	width: 26px;
	margin-bottom: -.45em;
	margin-right: 10px;
}

footer .productList li {
	margin-bottom: .75em;
}

footer .bottom-bar
{
	background: #32393A;
	padding-bottom:10px;
}

.copyright
{
	margin-top:15px;
}

.social
{
	margin-top:20px;
}

ul.social-network {
	float: right;
}

ul.social-network li {
	display: block;
	float:left;
	margin: 0 5px;
	width:30px;
	transition-duration: .5s;
	-webkit-filter: grayscale(100%); 
	 filter: url("data:image/svg+xml;utf8,<svg xmlns=\'//www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
    filter: grayscale(100%); /* future-proof */
}

ul.social-network li:hover {
	-webkit-filter: none;
    filter: none;
}

ul.social-network li  img {
    width: 30px;
    height: 30px;
}

/* Website Template/Layout */

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
blockquote:before,
blockquote:after {
  content: "";
}

#bodyWrapper
{
	min-height: 100%;
}

.clear
{
	clear:both;
}
.clearfix:after
{
	content: " "; /* Older browser do not support empty content */
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.theme-selector {
    background-color: #dbdada;
    display: inline-flex;
    padding: 6px;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}
.theme-selector:hover {
    background-color: #cbc8c8;
}
.theme-selector span {
    background: url(../images/theme-dark.png) no-repeat 0 0;
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
}

/** Dark Theme Styles */

body.dark img {
    filter: brightness(.8) contrast(1.2);
}

body.dark .header .logo {
    opacity: 0.8;
}
body.dark .header .slogan {
    text-shadow: none;
}

body.dark .productBar {
    background-color: #777;
}

body.dark .section-back-ads {
    background-color: rgba(255, 255, 255, 0.7);
}
body.dark .section-back-patr-dst {
    background-image: none;
    background-color: var(--section-bg-color);
}

body.dark .theme-selector {
    background-color: #777;
}
body.dark .theme-selector:hover {
    background-color: #888;
}
body.dark .theme-selector span {
    background-image: url(../images/theme-light.png);
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1370px;
  }
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row-with-padding {
  margin-right: -15px;
  margin-left: -15px;
}
.with-child-padding  > div
{
	margin-top:10px;
}
.row-clearfix
{
	overflow:hidden;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 640px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
table {
  background-color: transparent;
}


@media (max-width: 640px) {
  .hidden-xs {
    display: none;
  }
}
@media (min-width: 640px) and (max-width: 991px) {
  .hidden-sm {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none;
  }
}
.visible-print {
  display: none;
}

.section {
    color: var(--text-color);
	  padding: 35px 0;
    transition: background-color 0.2s ease;
}
.section-short {
	padding: 35px 0 35px;
}
.section-small {
	padding: 15px 0 15px;
}
.section-background {
	background: var(--section-bg-color);
}
.section-background-shadow {
	background: var(--section-bg-color);
	box-shadow: inset 0 0 30px rgba(0,0,0,.1);
}
.section-alt-background {
	background: var(--section-alt-bg-color);
}
.section-background-faded-blue {
	background-color: #ecf4f9;
}
.section-background-blue {
	background: #45a6de;
	color: #fff;
}
.section-background-comments {
	background: #576a75;
	color: #fff;
}
body.dark .section-background-comments { 
    background: #27292a;
}

.section-background-comments .section-heading
{
	color:white;
	text-shadow: 0 1px #333;
}

.link-slideup a:hover::before,
.link-slideup a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.lazyAnim {	
}





