@charset "UTF-8";
/* CSS Document */

body {
	font-family:"Archivo",Lato, Arial, Helvetica, sans-serif;
	line-height:1.8;
	font-size:16px;
	font-weight: 200;
}

.contactbar {
	background-color:#1BA3FF;
	color:#FFF;
	padding:10px 30px 10px 30px;
	font-size:12px;
}

.content {
	margin-bottom:50px;
	z-index:1000;
}
.contactbar a {
	color:#FFF;
}
.contactbar a:hover {
	text-decoration:none;
}



.right {
	float:right;
}

.wrapper {
	width:100%;
	position:relative;
	background-color:#999999;
	height:600px;
}

.wrapper video {
	min-height: 600px;
	min-width: 100%;
	width:100%;
	position: relative;
	top: 50%;
	transform: translateY(-50%);	
}

.fill {
	position:absolute;
	width:100%;
	height:350px;
	left:0;
	top:0;
    display: flex;
    align-items: center;
    overflow: hidden
}

.headingtext {
	margin:0px 0 20px 15px;
	background:url(../images/background.png);
	z-index:5000;
	position:absolute;
	padding:0 30px 0px 20px;
	font-size:60px;
	color:#FFF;
	white-space:nowrap;
	
}
.headingtextsmall {
	margin:20px 0 20px 15px;
	font-weight: 800;
	font-style: italic;
	font-size:50px;
	color:#FFF;
}

.fill img { 
	flex-shrink: 0;
    min-width: 100%;
    min-height: 100% 
}

.container {
	position:relative;
}

.headingbuttons {
	position:absolute;
	z-index:1000;
	top:300px;
	left:30px;
	width:100%;
}

.strap {
	font-size:18px!important;
	background:url(../images/background.png);
	color:#D0DF90;
	margin:110px 50px 0 15px;
	padding:10px;
	text-shadow:0 0 3px #000;
	-moz-text-shadow:0 0 3px #000;
	-webkit-text-shadow:0 0 3px #000;
	-webkit-animation: mymove 0.8s; /* Chrome, Safari, Opera */
    animation: mymove 0.8s;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
.strapsmall {
	font-size:18px!important;
	background:url(../images/background.png);
	color:#FFF;
	margin:80px 50px 0 15px;
	padding:0px 10px 0px 10px;
	text-shadow:0 0 3px #000;
	-moz-text-shadow:0 0 3px #000;
	-webkit-text-shadow:0 0 3px #000;
	-webkit-animation: mymovetoo 0.5s; /* Chrome, Safari, Opera */
    animation: mymovetoo 0.5s;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

.clearall {
	clear:both;
	margin:20px 0 40px 0;
}

.watermark {
	display: block;
	position: absolute;
	bottom:20px;
	right:20px;
	width:90%;
	height:100px;
	background-image: url("../images/jb.svg");
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.3;
	z-index: 9999999999;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
    from {margin-top: 220px; opacity:0}
    to {margin-top: 110px; opacity:1}
}

/* Standard syntax */
@keyframes mymove {
    from {margin-top: 220px; opacity:0}
    to {margin-top: 110px; opacity:1}
}
/* Chrome, Safari, Opera */
@-webkit-keyframes mymovetoo {
    from {margin-top: 150px; opacity:0}
    to {margin-top: 80px; opacity:1}
}

/* Standard syntax */
@keyframes mymovetoo {
    from {margin-top: 150px; opacity:0}
    to {margin-top: 80px; opacity:1}
}

.leftbutton {
	float:left;
	display:block;
	border-right:1px solid #FFF;
	padding:8px 10px 10px 10px;
}

.col-sm-12 {
	padding:0;
}

h1 {
	font-weight:800;
	margin:0;
	padding:0;
	line-height:0.4;
}

.title {
	padding:15px;
}

.headingtext h3 {
	color:#1B9F98;
	margin:0;
	padding:0;
}

h3 {
	margin:0;
	padding:0;
	font-weight:300;
}

h2 {
	font-size:30px;
	line-height:1.6;
	color:#666;
	margin-bottom:30px;
	font-weight:300;
}

.barchart {
	width:100%;
	height:40px;
	position:relative;
	background-color:#EFEFEF;
	margin-bottom:10px;
}

.bar {
	position:absolute;
	padding:7px 0 8px 15px;
	color:#FFF;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

.mapslider {
	background-image:url(../images/mapback4-1024x551.png);
	background-size:cover;
	height:200px;
	padding:25px;
}

h4.panel-title a {
	text-transform:capitalize;
	font-size:13px;
}

.bar-red {
	background-color:#D33;
		animation: loadbar1 1s;
		animation-delay: 0s;
}
.bar-orange {
	background-color:#DD9932;
		animation: loadbar2 1s;
		animation-delay: 0.3s;
}
.bar-mauve {
	background-color:#984FE2;
		animation: loadbar3 1s;
		animation-delay: 0.6s;
}
.bar-brown {
	background-color:#8C3920;
		animation: loadbar4 1s;
		animation-delay: 0.9s;
}
.bar-navy {
	background-color:#1C23B5;
		animation: loadbar5 1s;
		animation-delay: 1.2s;
}
.bar-green {
	background-color:#598220;
		animation: loadbar6 1s;
		animation-delay: 1.5s;
}
.bar-teal {
	background-color:#1AA199;
		animation: loadbar7 1s;
		animation-delay: 1.8s;
}

@-webkit-keyframes loadbar1 {
	from {width:50%}
	to {width:96.1%;}
}
@-webkit-keyframes loadbar2 {
	from {width:50%}
	to {width:80.1%;}
}
@-webkit-keyframes loadbar3 {
	from {width:50%}
	to {width:76.2%;}
}
@-webkit-keyframes loadbar4 {
	from {width:50%}
	to {width:85.9%;}
}
@-webkit-keyframes loadbar5 {
	from {width:50%}
	to {width:75.1%;}
}
@-webkit-keyframes loadbar6 {
	from {width:50%}
	to {width:66.3%;}
}
@-webkit-keyframes loadbar7 {
	from {width:50%}
	to {width:69.2%;}
}

h4 {
	color:#29A6FC;
	display:block;
	margin:10px 0 0 0;
	padding:10px 0 0 0;
	text-transform:uppercase;	
}

.navigation {
	background-color:#06A29C; 
	text-align:center;
	height:30px;
	font-size:12px;
	color:#FFF;
	line-height:30px;
	margin:50px 0 20px 0;
	display:block;
}

a.navigation:hover {
	color:#FFF!important;
}



.shadow {
  position: relative;
  background-color:#FFF;
  height:100px;
}
.shadow:before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 80%;
  left:10%;
  height:80px;
  top: 15px;
  background: #000;
  box-shadow: 0 15px 10px #000;
  border-radius:800px / 50px;
  -moz-border-radius:800px / 50px;
  -webkit-border-radius:800px / 50px;
  opacity:0.7;
}

.bxslider {
	margin:0;
	padding:0;
	list-style-type:none;
	height:600px;
	width:100%;
	z-index:500;
	overflow:hidden;
	z-index:6000;
	margin-bottom:50px;
	position: relative;
}

#gallery {
	clear:both;
}

.image {
	margin: 0;
	padding:0px;
	text-align:center;
}


.short {
	height:300px;
}

.navbar-brand {
	margin:-8px 0px 0 0;
	width:280px;
	padding:0;
	height:100px;
	position:absolute;
	left:0px;
	top:0px;
}
.navbar-brand img {
	width:100%;
}

.adpanel img {
	width:100%;
	margin-top:20px;
}
.adpanel img:hover {
	box-shadow:0 0 10px #666;
}

#footer {
	background-color:#363839;
	bottom:0;
	left:0;
	width:100%;
	z-index:0;
	padding:30px 0 30px 0;
	color:#999;
	font-size:12px;
}



#footer .link {
	display:block;
	padding-top:8px;
	margin-bottom:8px;
	border-top:1px solid #999;
	color:#999;
}

#footer2 {
	background-color:#282A2B;
	padding:20px;
	border-top:1px solid #999;
	color:#666;
	font-size:11px;
}


.navbar-inverse .navbar-nav>.active>a{
	background-image:-webkit-linear-gradient(top,#FFF 0,#FFF 100%);
	background-image:linear-gradient(to bottom,#FFF 0,#FFF 100%);
	background-repeat:repeat-x;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffFFF', endColorstr='#ffFFF', GradientType=0);
	filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);
	box-shadow:none;
	-webkit-box-shadow:none;
	border-top:3px solid #CCC;
}

.navbar-inverse {
  background-image: -webkit-linear-gradient(top, #FFF 0%, #FFF 100%);
  background-image: linear-gradient(to bottom, #FFF 0%, #FFF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffFFF', endColorstr='#ffFFF', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border:none!important; 
  position:relative;
  margin-top:2px;
  margin-bottom:0!important;
  z-index:1000;
}


.navbar-inverse ul li a {
	text-shadow:none!important;
	font-size:15px;
	padding:35px 16px 25px 16px;
	color:#333!important;
	background-image:-webkit-linear-gradient(top,#FFF 0,#FFF 100%);
	background-image:linear-gradient(to bottom,#FFF 0,#FFF 100%);
	background-repeat:repeat-x;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffFFF', endColorstr='#ffFFF', GradientType=0);
	filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);
	box-shadow:none;
	-webkit-box-shadow:none;
	border-top:3px solid #FFF;
	margin-top:-10px;
}
.navbar-inverse ul li a:hover {
	color:#1BA3FF!important;
	background-image:-webkit-linear-gradient(top,#FFF 0,#FFF 100%);
	background-image:linear-gradient(to bottom,#FFF 0,#FFF 100%);
	background-repeat:repeat-x;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffFFF', endColorstr='#ffFFF', GradientType=0);
	filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);
	box-shadow:none;
	-webkit-box-shadow:none;
	border-top:3px solid #1BA3FF;
}

.navbar-inverse .dropdown ul li a {
	color:#666!important;
	font-size:15px;
	padding:10px 16px 10px 16px;
	background-image:-webkit-linear-gradient(top,#FFF 0,#FFF 100%);
	background-image:linear-gradient(to bottom,#FFF 0,#FFF 100%);
	background-repeat:repeat-x;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFF', endColorstr='#FFF', GradientType=0);
	filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);
	border:none;
	border-top:1px solid #CCC!important;
	margin:0;
}

.navbar-inverse .dropdown ul li a:first-child {
	border-top:none!important;	
}

.navbar-inverse .dropdown ul li a:hover {
	background-image:-webkit-linear-gradient(top,#EFEFEF 0,#EFEFEF 100%);
	background-image:linear-gradient(to bottom,#EFEFEF 0,#EFEFEF 100%);
	background-repeat:repeat-x;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#EFEFEF', endColorstr='#EFEFEF', GradientType=0);
	filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);
	border:none;
	border-top:1px solid #999;
}

.navbar-nav {
	margin:0px 0 0px 0;
	float:right;	
}
.navbar {
	z-index:10000000!important;
}
.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: none!important;
  box-shadow: none!important;
  position:absolute;
  top:10px;
  width:100%;
}

.dropdown-menu {
	padding:0;
}

@media (max-width:1024px) {
	.director {
		width:100px;
	}
	.wrapper, .fill, .bxslider {
		height:450px;
		margin-bottom:0;
	}
}


@media (max-width:767px){
	.navbar-brand {
		margin:-55px 0px -30px -30px;
	}
	.navbar-inverse ul li a {
		padding:10px 16px 5px 16px;
		margin:0;
	}
	.shadow {
	  position: relative;
	  background-color:#FFF;
	  height:50px;
	}
	.shadow:before {
	  top: 0px;
	  height:40px;
	}
	
	.director {
		float:right;
	}
	.heading {
		width:80%;
	}
	.heading h1 {
		font-size:36px;
	}
	.heading h3 {
		font-size:14px;
	}
	.headingbuttons {
		margin:130px 0 0 50px;
	}
	.headingtextsmall {
		font-size:40px;
		line-height:1.2;
	}
	.headingtext {
		font-size:40px;
		padding-top:14px;
		margin:-30px 0 20px 15px;
		padding:0 10px 0 10px;
	}
	.headingtext h3 {
		font-size:16px;
	}
	.wrapper, .fill, .bxslider {
		height:300px;
		margin-bottom:0;
	}
	.fill img { 
		margin-left:-150%;
		margin-top:100px
	}
	.strap {
		margin:45px 50px 0 15px;
		padding:0 10px 0 10px;
	}
	/* Chrome, Safari, Opera */
	@-webkit-keyframes mymove {
		from {margin-top: 120px; opacity:0}
		to {margin-top: 45px; opacity:1}
	}
	
	/* Standard syntax */
	@keyframes mymove {
		from {margin-top: 120px; opacity:0}
		to {margin-top: 45px; opacity:1}
	}
	.strapsmall {
		margin:30px 50px 0 15px;
	}
	/* Chrome, Safari, Opera */
	@-webkit-keyframes mymovetoo {
		from {margin-top: 90px; opacity:0}
		to {margin-top: 30px; opacity:1}
	}
	
	/* Standard syntax */
	@keyframes mymovetoo {
		from {margin-top: 90px; opacity:0}
		to {margin-top: 30px; opacity:1}
	}
	

}


@media (max-width:400px){
	.strap {
		font-size:14px!important;
		margin:45px 50px 0 15px;
	}
	.strapsmall {
		padding:10px;	
	}
	.headingtextsmall {
		font-size:30px;
		line-height:1.2;
		padding-top:0px;
		padding-bottom:10px;
	}
	.headingtext {
		font-size:24px;
	}
	.oslogo {
		margin:-0px 10px 0 0;
	}
	.headingtext h3 {
		margin-top:8px;
	}

	.headingbuttons {
		top:200px;
		left:-15px;
	}
	
	
	
	
}

.navbar-inverse .navbar-toggle{ border-color:#FFF}


.icon-bar {
   background-color:#CCC !important;
}

.navbar-inverse .navbar-toggle {
  background-color: #FFF;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #1BA3FF;
}

.navbar-inverse .navbar-toggle:hover .icon-bar,
.navbar-inverse .navbar-toggle:focus .icon-bar {
   background-color:#FFF !important;
}


