@charset "utf-8";
@import url("fontawesome-all.min.css");
@font-face {
	font-family: 'Open Sans';
	src: url('/webfonts/OpenSans-Regular-webfont.eot');
	src: url('/webfonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
	url('/webfonts/OpenSans-Regular-webfont.woff') format('woff'),
	url('/webfonts/OpenSans-Regular-webfont.ttf') format('truetype'),
	url('/webfonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

.main {
	width: 90%;
	padding: 1em;
	margin: 0 auto;
}

/* for preloading, this is selection class. please look at: menu.js -> preloader */
.panel{

}

/* General grid styles */
.cbp-ig-grid {
	list-style: none;
	padding: 0 0 50px 0;
	margin: 0;
}

/* Clear floats */
.cbp-ig-grid:before,
.cbp-ig-grid:after {
	content: " ";
	display: table;
}

.cbp-ig-grid:after {
	clear: both;
}

/* grid item */
.cbp-ig-grid li {
	width: 33%;
	float: left;
	height: 500px;
	text-align: center;
	padding: 0 10px 10px 10px;
}

/* we are using a combination of borders and box shadows to control the grid lines */
.cbp-ig-grid li:nth-child(-n+3){
	border-top: none;
}

.cbp-ig-grid li:nth-child(3n-1),
.cbp-ig-grid li:nth-child(3n-2) {
}

/* anchor style */
.cbp-ig-grid li > a {
	display: block;
	height: 100%;
	color: #15B5FE;
	-webkit-transition: background 0.2s;
	-moz-transition: background 0.2s;
	transition: background 0.2s;
	border-style: solid;
	border-color: #15B5FE;
	border-width: 1px;
	overflow: hidden;
	border-radius: 10px;
}

/* the icon with pseudo class for icon font */
.cbp-ig-icon {
	padding: 10px 0 0 0;
	display: block;
	-webkit-transition: -webkit-transform 0.2s;
	transition: -moz-transform 0.2s;
	transition: transform 0.2s;
	position: relative;
}

.cbp-ig-icon:before {
	font-family: 'Font Awesome 5 Free';
	font-size: 30px;
	speak: none;
	font-style: normal;
	font-weight: 900;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}

/* start: contact form icons */
.cbp-ig-icon-information:before {
	content: "\f05a";
}
/* end: contact form icons */

/* content element */
.cbp-ig-grid .cbp-ig-content {
	margin: 10px;
	padding: 0 0 0 0;
	font-size: 12px;
	font-family: 'Open Sans', sans-serif;
	color: #15B5FE;
	position: relative;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
}

/* title element */
.cbp-ig-grid .cbp-ig-title {
	margin: 10px 0 10px 0;
	padding: 20px 0 0 0;
	font-size: 13px;
	position: relative;
	font-weight: 600;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
}

.cbp-ig-grid .cbp-ig-title:before {
	content: '';
	position: absolute;
	background: black;
	width: 80%;
	height: 3px;
	top: 0;
	left: 10%;
	-webkit-transition: margin-top 0.2s; /* top or translate does not seem to work in Firefox */
	-moz-transition: margin-top 0.2s;
	transition: margin-top 0.2s;
}

/* category element */
.cbp-ig-grid .cbp-ig-category {
	display: inline-block;
	font-size: 14px;
	letter-spacing: 1px;
	color: red;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform:translateY(0px);
	transform: translateY(0px);
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	-moz-transition: -moz-transform 0.3s, opacity 0.2s;
	-webkit-transition: transform 0.3s, opacity 0.2s;
}

/* svg element */
.cbp-ig-grid .cbp-ig-svg {
	margin: 10px 10px 10px 10px;
	position: relative;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
	height: 15%;
	width: 15%;
}

/* svg element */
.cbp-ig-grid .cbp-ig-svg-icon {
	position: relative;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
	height: 40px;
	/* width: 40px; */
}

/* svg arrow element */
.cbp-ig-grid .cbp-ig-svg-arrow {
	margin: 50px 0 30px 0;
	position: relative;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
	height: 5%;
	width: 5%;
}

/* image element */
.cbp-ig-image {
	border-radius: 50%;
	border-width: 2px;
	border-color: black;
	border-style: dotted;
	-webkit-transition: -webkit-transform 0.2s;
	transition: -moz-transform 0.2s;
	transition: transform 0.2s;
}

/* Hover styles */

.cbp-ig-grid li > a:hover {
	background: #15B5FE;
	border-style: solid;
	border-width: 2px;
	border-color:black;
}

.cbp-ig-grid li > a:hover .cbp-ig-category,
.touch .cbp-ig-grid li .cbp-ig-category {
	opacity: 0;
}

.cbp-ig-grid li > a:hover .cbp-ig-category,
a:hover .touch .cbp-ig-grid li .cbp-ig-category {
	opacity: 1;
	-webkit-transform: translateY(85px);
	-moz-transform: translateY(85px);
	-ms-transform: translateY(85px);
	transform: translateY(85px);
	-o-transform:translateY(85px);
}

.cbp-ig-grid li > a:hover .cbp-ig-icon {
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	-ms-transform: translateY(10px);
	transform: translateY(10px);
	-o-transform:translateY(10px);
}

.cbp-ig-grid li > a:hover .cbp-ig-icon:before{
	color: black;
}

.cbp-ig-grid li > a:hover .cbp-ig-title {
	color:black;
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-o-transform:translateY(20px);
}

.cbp-ig-grid li > a:hover .cbp-ig-title:before {
	background: white;
	margin-top: 10px;
}

.cbp-ig-grid li > a:hover .cbp-ig-content {
	color:white;
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-o-transform:translateY(20px);
}

.cbp-ig-grid li > a:hover .cbp-ig-svg {
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-o-transform:translateY(20px);
}

.cbp-ig-grid li > a:hover .cbp-ig-svg-arrow {
	fill: white;
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-o-transform:translateY(20px);
}

.cbp-ig-grid li > a:hover .cbp-ig-image {
	border-color: white;
	border-style: solid;
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	-o-transform:translateY(20px);
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Create two columns that floats next to each other */
.column1 {
	float: left;
	width: 15%;
}
.column1 .cbp-ig-svg {
	margin: 10px 10px 10px 10px;
	position: relative;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
	height: 100%;
	width: 100%;
}

.column2 {
	float: left;
	width: 80%;
	padding: 5px;
}

/********** START: itembox styling *****/
.itembox {
	display: table;
	margin: 10px;
}
.itembox .col {
	display: table-cell;
	vertical-align: middle;
	padding: 5px;
	font-size: 10px;
	font-family: 'Open Sans', sans-serif;
}
.itembox .col:nth-child(odd) {
	background: transparent;
	color: black;
	width: 20%;
	min-width: 70px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	border-width: 2px;
	border-color: deepskyblue;
	border-style: solid;
}
.itembox .col:nth-child(even) {
	background: transparent;
	border-color: deepskyblue;
	border-width: 2px;
	width: 80%;
	border-block-style: dotted;
}

.itembox-svg {
	margin: 4px;
	position: relative;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
	height: 70%;
	width: 70%;
}

.cbp-ig-grid li > a:hover .itembox {
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
}

.cbp-ig-grid li > a:hover .col:nth-child(odd) {
	border-color: white;
}

.cbp-ig-grid li > a:hover .col:nth-child(even){
	border-color: white;
	color: white;
	border-block-style: solid;
}
/********** END: itembox styling *****/

/********** START: itembox-oval styling *****/
.itembox-oval .col:nth-child(odd) {
	border-radius: 10%;
	border-style: dotted;
}
/********** END: itembox-oval styling *****/
.h3Normal{
	font-size: 11px;
	font-family: 'Open Sans', sans-serif;
}

/********** START: svgCustomClasses ******/
.svgText22FontW{
	font-size: 22px;
}

.svgSizing{
	height: 100%;
	width: auto;
}

.lightPath{
	fill: yellow;
	stroke: yellow;
}
.cbp-ig-grid li > a:hover .lightPath {
	fill: white;
	stroke: yellow;
}
/*********** END: svgCustomClasses *******/


@media screen and (max-width: 80em) {
	.cbp-ig-grid li {
		width: 50%;
		height: 700px;
	}
	.column1{
		width: 100%;
	}
	.column1 .cbp-ig-svg {
		height: 15%;
		width: 15%;
	}
	.column2{
		width: 100%;
		padding: 1px;
	}

	/* reset the grid lines */
	.cbp-ig-grid li:nth-child(-n+3){
		border-top: 1px solid #ddd;
	}

	.cbp-ig-grid li:nth-child(3n-1),
	.cbp-ig-grid li:nth-child(3n-2) {
		box-shadow: none;
	}

	.cbp-ig-grid li:nth-child(-n+2){
		border-top: none;
	}

	.cbp-ig-grid li:nth-child(2n-1) {
		box-shadow: 1px 0 0 #ddd;
	}

	.svgSizing{
		width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 41.6em) {
	.cbp-ig-grid li {
		width: 100%;
	}
	.column1{
		width: 100%;
	}
	.column1 .cbp-ig-svg {
		height: 15%;
		width: 15%;
	}
	.column2{
		width: 100%;
		padding: 1px;
	}

	.cbp-ig-grid li:nth-child(-n+2){
		border-top: 1px solid #ddd;
	}

	.cbp-ig-grid li:nth-child(2n-1) {
		box-shadow: none
	}

	.cbp-ig-grid li:first-child {
		border-top: none;
	}
	.svgSizing{
		width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 25em) {
	.cbp-ig-grid {
		font-size: 80%;
	}

	.cbp-ig-grid .cbp-ig-category {
		margin-top: 20px;
	}
	.svgSizing{
		width: 100%;
		height: auto;
	}
}