/***********************************

  General  CSS

***********************************/

	body {
		/*font-family: 'Raleway', sans-serif;*/
		/*font-family: "Open Sans", sans-serif;*/
		font-family: 'Source Sans Pro', sans-serif;
		background: #000;
	}

	img {max-width: 100%; height: auto;}

	a {transition: all .2s ease-in-out;}

	a:hover img {opacity: 0.7;}

	a:hover, a:focus {text-decoration: none;}

	/* brand link color */
	a, a:link, a:visited {color: #333;}
	a:hover, a:focus {color: #E94E20;}

	.wrapper {
		max-width: 1920px;
		min-width: 320px;
		margin: 0 auto;
		overflow: hidden;
		background: #000;
		position: relative;
		padding: 0 15px;
		background-repeat: no-repeat;
		background-position: 50% top;
		background-size: cover;
	}

	.wrapper-tint {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.5);
		z-index: 1;
	}
	header,
	#header-page,
	#banner,
	footer {
		position: relative;
		z-index: 2;
	}

/***********************************

  Internet Explorer 10 in Windows 8 and Windows Phone 8 Support

***********************************/

	@-webkit-viewport   { width: device-width; }
	@-moz-viewport      { width: device-width; }
	@-ms-viewport       { width: device-width; }
	@-o-viewport        { width: device-width; }
	@viewport           { width: device-width; }

/***********************************

  Printing Support

***********************************/

	@media print {
	  .container {
	    width: auto;
	  }
	}

/***********************************

  Twitter Bootstrap Support CSS

***********************************/

	.row {
		position: relative;
	}

	a.btn {
		border-radius: 100px;
		padding: 5px 11px;
		font-size: 0.65em; /* 1em = 14px */
		font-weight: 700;
		text-transform: uppercase;
		line-height: 110%;
		/*color: #fff !important;
		background-color: #94BD3D;
		border-color: #94BD3D;*/
	}
	a.btn:hover,
	a.btn:focus {
		text-decoration: none;
		/*color: #fff !important;
		background-color: #7A9D34;
		border-color: #7A9D34;*/
	}

	/** Toggle Button **/

	.navbar-toggle {
		background: #333;
		border-radius: 0;
		margin: 18px 0;
		width: 60px;
		height: 40px;
		padding: 6px 12px;
		float: right;
		vertical-align: top;
		transition: all .2s ease-in-out;
	}
	.navbar-toggle .icon-bar {
		background: #FF8000;
		height: 6px;
		width: 34px;
	}
	.navbar-toggle .icon-bar :after {
		content: 'MENU';
		font-size: 17px;
		font-weight: bold;
		color: #FF8000;
		position: absolute;
		left: 70px;
		top: 13px;
	} 
	.navbar-toggle:hover {
		b/*ackground: #fff;*/
	} 
	.navbar-toggle:hover .icon-bar {
		background: #fff;
	}
	.navbar-toggle:hover .icon-bar :after {
		color: #fff;
	}

	/** Dropdown Menu **/

	.dropdown-menu {
		min-width: 170px;
		border-radius: 0;
	}
	.dropdown-submenu {
		position: relative;
	}
	.dropdown-menu>li {
		width: 100%
	}
	nav .dropdown-menu a,
	.dropdown-menu>li>a {
		padding: 3px 20px;
		font-weight: 400;
		color: #fff;
	}

/***********************************

  5 columns layout with Twitter Bootstrap

***********************************/

	@media (max-width: 767px) {
	.col-xs-15 {
		    width: 20%;
	 	    float: left;
		    position: relative;
		    min-height: 1px;
		    padding-right: 10px;
		    padding-left: 10px;
		}
	}
	@media (min-width: 768px) {
	.col-sm-15 {
	        width: 20%;
	        float: left;
	        position: relative;
	        min-height: 1px;
	        padding-right: 10px;
	        padding-left: 10px;
	    }
	}
	@media (min-width: 992px) {
	    .col-md-15 {
	        width: 20%;
	        float: left;
	            position: relative;
	            min-height: 1px;
	            padding-right: 10px;
	            padding-left: 10px;
	    }
	}
	@media (min-width: 1200px) {
	    .col-lg-15 {
	        width: 20%;
	        float: left;
	            position: relative;
	            min-height: 1px;
	            padding-right: 10px;
	            padding-left: 10px;
	    }
	}

/***********************************

  Form CSS

***********************************/

	/*.input-row {
		position: relative;
		margin-bottom: 20px;
	}
	span.wpcf7-form-control-wrap {
		display: block;
	}
	input[type="text"],
	input[type="password"],
	input[type="date"],
	input[type="datetime"],
	input[type="datetime-local"],
	input[type="month"],
	input[type="week"],
	input[type="email"],
	input[type="number"],
	input[type="search"],
	input[type="tel"],
	input[type="time"],
	input[type="url"],
	textarea {
		-webkit-border-radius: 5px;
		border-radius: 5px;
		-webkit-box-shadow: rgba(0,0,0,0.1) -1px -1px 0px 0;
		-moz-box-shadow: rgba(0,0,0,0.1) -1px -1px 0px 0;
		box-shadow: rgba(0,0,0,0.1) -1px -1px 0px 0;
		display: block;
		width: 100%;
		border: 0;
		height: 50px;
		padding-left: 20px;
		padding-right: 45px;
		margin-bottom: 0;
		background: #efefef;
	}
	textarea {
		resize: none;
		line-height: 1.5;
		padding: 15px 20px;
		height: auto;
		min-height: 50px;
		overflow: auto;
		vertical-align: top;
	}
	button,
	input,
	select,
	textarea,
	.search-submit {
		font-family: inherit;
		font-size: 100%;
		margin: 0;
	}
	select {
		width: 100%;
	}
	.demo-button:hover,
	.search-submit:hover {
		color: #fff;
		background: #999;
	}
	button,
	html input[type="button"],
	input[type="reset"],
	input[type="submit"],
	.search-submit {
		-webkit-appearance: button;
		cursor: pointer;
	}
	.demo-button,
	.search-submit {
		color: #fff;
		display: inline-block;
		vertical-align: middle;
		border: 0;
		background: #333;
		-webkit-box-shadow: #eee 0px -2px 0px 0 inset;
		-moz-box-shadow: #eee 0px -2px 0px 0 inset;
		box-shadow: #eee 0px -2px 0px 0 inset;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		height: 50px;
		line-height: 50px;
		text-align: center;
		overflow: hidden;
		font-size: 16px;
		padding-left: 10px;
		padding-right: 10px;
		min-width: 120px;
		font-weight: bold;
	}
	.search-submit {
		margin-bottom: 5px;
	}
	button,
	input {
		line-height: normal;
	}
	.input-row select {
		width: 100%;
		margin: 0;
		font-size: 100%;
		font-family: inherit;
		text-transform: none;
	}
	.captcha-img {
		border-radius: 5px;
		border: 1px solid #eee;
		padding: 10px;
	}*/

/***********************************

  Twitter Bootstrap Carousel Fade

***********************************/

	.carousel.fade {
	  opacity: 1;
	}
	.carousel.fade .item {
	  -moz-transition: opacity ease-in-out .3s;
	  -o-transition: opacity ease-in-out .3s;
	  -webkit-transition: opacity ease-in-out .3s;
	  transition: opacity ease-in-out .3s;
	  left: 0 !important;
	  opacity: 0;
	  top:0;
	  position:absolute;
	  width: 100%;
	  display:block !important;
	  z-index:1;
	}
	.carousel.fade .item:first-child {
	  top:auto;
	  position:relative;
	}
	.carousel.fade .item.active {
	  opacity: 1;
	  -moz-transition: opacity ease-in-out .3s;
	  -o-transition: opacity ease-in-out .3s;
	  -webkit-transition: opacity ease-in-out .3s;
	  transition: opacity ease-in-out .3s;
	  z-index:2;
	}
	.carousel.fade .carousel-control {
	  z-index: 2;
	}

/***********************************

  Header CSS

***********************************/

	header {
		min-height: 100px;
		padding-left: 15px;
		padding-right: 15px;
	}
	nav {
		margin-top: 20px;
	}
	nav>ul {
		margin: 10px 0;
		padding: 0 15px;
		list-style: none;
		font-size: 0;
	}
	nav>ul>li {
		font-size: 15px;
		color: #333;
	}
	nav a {
		color: #333;
	}
	nav a:focus,
	nav a:hover {
		color: #999;
	}

	#brand {
		float: left;
	}
	#logo {
		text-indent: -9999px;
		background-image: url('../images/logo-v2.png');
		background-repeat: no-repeat;
		background-position: left top;
		display: block;
		width: 197px;
		height: 59px;
		margin: 0 10px 0 0;
		float: none;
	}
	#logo:hover {
		opacity: 0.5;
	}

	#main-nav {
		float: right;
		margin-top: 25px;
		padding: 0;
	}
	#main-nav>li {
		margin-left: 25px;
		font-weight: 400;
		text-transform: uppercase;
		display: inline-block;
	}
	#main-nav>li:first-child {
		margin-left: 0;
	}
	#main-nav>li>a {
		color: #fff;
	}
	#main-nav>li>a:hover {
		color: #999;
	}

	#main-nav li.dropdown {
		padding-bottom: 10px;
		border: none;
	}
	#main-nav li.dropdown .dropdown-menu {
	/*    display: block;*/
	    margin-top: -5px;
	    background: #FF8000;
	    box-shadow: none;
	    -webkit-box-shadow: none;
	    padding: 10px 0;
	    border: 1px solid #FF8000;
	}

	.navbar-toggle {
		background-color: transparent;
	}
	.dropdown-menu>li>a:hover,
	.dropdown-menu>li>a:focus {
		background-color: #fff;
		color: #FF8000;
	}

/***********************************

  Footer CSS

***********************************/

	footer {
		padding-top: 30px;
		padding-left: 15px;
		padding-right: 15px;
		padding-bottom: 20px;
		background: rgba(0,0,0,0.5);
		margin-top: 50px;
	}
	footer .col {
		margin-bottom: 20px;
	}
	footer .sitemap {
		list-style: none;
		margin: 0;
		padding: 0;
		font-size: 0;
	}
	footer .sitemap li {
		display: inline-block;
		font-size: 13px;
		font-weight: 600;
		text-transform: uppercase;
		color: #eee;
	}
	footer .sitemap li:after {
		content: '|';
		margin: 0 4px;
	}
	footer .sitemap li .caret {
		display: none;
	}
	footer .sitemap li a {
		color: #eee;
	}
	footer .sitemap li a:hover {
		color: #E94E20;
	}
	footer .sitemap li:last-child:after {
		display: none;
	}
	footer .address {
		font-size: 13px;
		color: #eee;
	}
	footer .links a {
		margin-left: 5px;
	}
	footer .links a.c3i3 {
		margin-left: 10px;
	}

/***********************************

  Page: Home CSS

***********************************/

	#header-page {
		padding-left: 15px;
		padding-right: 15px;
	}

	#banner {
		overflow: hidden;
	}
	#banner .carousel-inner>.item {
		background-position: 50% top;
		background-repeat: no-repeat;
		background-size: cover;
	}
	/*#banner.sub .carousel-inner>.item {
		overflow: auto;
	}*/
	#banner .carousel-inner>.item>img {
		visibility: hidden;
	}
	.home #banner .carousel-inner>.item>img {
		min-height: 300px;
	}
	#banner .banner-content {
		position: absolute;
		top: 0;
		width: 100%;
		/*height: 100%;*/
		margin: 0 auto;
		text-align: center;
		left: 0;
	}
	#banner .inner-wrapper {
		margin: 0 auto;
		max-width: 1280px;
	}
	#banner .banner-content .col-btn {
		margin: 0 auto;
		display: block;
	}
	#banner .banner-content .col img {
		padding: 0 10px;
	}
	#banner .banner-content .col img:first-child {
		padding-left: 0;
	}
	#banner .banner-content .col img:last-child {
		padding-right: 0;
	}
	#banner .col-qmark .desktop {}
	#banner .col-qmark .mobile {
		display: none;
		height: 0;
	}

	#banner .btn-corpspeak,
	#banner .btn-spotdelivery {
		color: #fff;
		font-size: 24px;
		font-weight: bold;
		text-align: center;
		letter-spacing: 1px;
		display: inline-block;
		margin: 0 auto;
		border-radius: 39px;
		padding: 24px 20px;
		line-height: 100%;
		text-transform: uppercase;
		text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
	}
	#banner .btn-corpspeak {
		background: #FF8000;
		background: rgba(255,128,0,0);
	}
	#banner .btn-spotdelivery {
		background: #156C7A;
		background: rgba(21,108,122,0);
	}
	#banner .btn-corpspeak span,
	#banner .btn-spotdelivery span {
		color: #FF8000;
		font-size: 16px;
		display: block;
	}
	#banner .btn-corpspeak:hover {
		background: #FF8000;
		margin-top: 5px;
	}
	#banner .btn-spotdelivery:hover {
		background: #156C7A;
		margin-top: 5px;
	}
	#banner .btn-corpspeak:hover span,
	#banner .btn-spotdelivery:hover span {
		color: #fff;
	}
	#banner .banner-bottom {
		/*border-top: 2px solid #fff;*/
		min-height: 100px;
		position: absolute;
		bottom: 0;
		width: 100%;
		margin: 0;
		text-align: center;
		left: 0;
	}
	#banner .banner-bottom .col {
		padding: 33px 15px;
	}
	#banner .banner-bottom span {
		color: #FF8000;
		font-size: 24px;
		font-weight: bold;
		text-transform: uppercase;
		display: block;
	}
	#banner .banner-bottom .col-spot input {
		max-width: 140px;
		width: 100%;
		font-size: 14px;
		padding: 4px;
	}
	#banner .banner-bottom .col-spot button {
		font-size: 18px;
		color: #fff;
		background: #1A646F;
		border: none;
		padding: 4px 16px 3px;
	    left: -3px;
	    position: relative;
	    top: 2px;
	}
	#banner .banner-bottom .col-spot button:hover {
		background: #FF8000;
		transition: all .2s ease-in-out;
	}
	#banner .banner-bottom .col-login span:hover {
		cursor: pointer;
		color: #fff;
		transition: all .2s ease-in-out;
	}

/***********************************

  Page: Sub CSS

***********************************/

	a.btn-demo {
		font-size: 16px;
		font-weight: 600;
		color: #FDAB01;
		padding: 10px 20px 10px 0;
		border-radius: 30px;
		display: inline-block;
		margin-top: 20px;
		margin-right: 10px;
	}
	a.btn-demo:before {
		content: '';
		background-repeat: no-repeat;
		background-position: left 50%;
		background-image: url('../images/icon-round-play2.png');
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		width: 40px;
		height: 40px;
	}
	a.btn-demo:hover {
		margin-top: 23px;
		color: #fff;
		background: #FDAB01;
		padding: 10px 20px;
		margin-bottom: -3px;
	}

	a.btn-next {
		font-size: 16px;
		font-weight: 600;
		color: #E94E20;
		padding: 10px 20px 10px 0;
		border-radius: 30px;
		display: inline-block;
		margin-top: 20px;
		margin-right: 10px;
	}
	a.btn-next:before {
		content: '';
		background-repeat: no-repeat;
		background-position: left 50%;
		background-image: url('../images/icon-round-arrow2.png');
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		width: 40px;
		height: 40px;
	}
	a.btn-next:hover {
		margin-top: 23px;
		color: #fff;
		background: #E94E20;
		padding: 10px 20px;
		margin-bottom: -3px;
	}

	a.btn-demo2 {
		font-size: 16px;
		font-weight: 600;
		color: #fff;
		padding: 10px 20px 10px 0;
		border-radius: 30px;
		display: inline-block;
		margin-top: 20px;
		margin-right: 10px;
	}
	a.btn-demo2:before {
		content: '';
		background-repeat: no-repeat;
		background-position: left 50%;
		background-image: url('../images/icon-round-play.png');
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		width: 40px;
		height: 40px;
	}
	a.btn-demo2:hover {
		margin-top: 23px;
		color: #fff;
		background: #222;
		padding: 10px 20px;
		margin-bottom: -3px;
	}

	a.btn-next2 {
		font-size: 16px;
		font-weight: 600;
		color: #E94E20;
		padding: 10px 20px 10px 0;
		border-radius: 30px;
		display: inline-block;
		margin-top: 20px;
		margin-right: 10px;
	}
	a.btn-next2:before {
		content: '';
		background-repeat: no-repeat;
		background-position: left 50%;
		background-image: url('../images/icon-round-arrow.png');
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		width: 40px;
		height: 40px;
	}
	a.btn-next2:hover {
		margin-top: 23px;
		color: #fff;
		background: #E94E20;
		padding: 10px 20px;
		margin-bottom: -3px;
	}

	a.btn-next3 {
		font-size: 16px;
		font-weight: 600;
		color: #fff;
		padding: 10px 20px 10px 0;
		border-radius: 30px;
		display: inline-block;
		margin-top: 20px;
		margin-right: 10px;
	}
	a.btn-next3:before {
		content: '';
		background-repeat: no-repeat;
		background-position: left 50%;
		background-image: url('../images/icon-round-arrow2.png');
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		width: 40px;
		height: 40px;
	}
	a.btn-next3:hover {
		margin-top: 23px;
		color: #fff;
		background: #E94E20;
		padding: 10px 20px;
		margin-bottom: -3px;
	}

	a.btn-next4 {
		font-size: 16px;
		font-weight: 600;
		color: #fff;
		padding: 10px 20px 10px 0;
		border-radius: 30px;
		display: inline-block;
		margin-top: 20px;
		margin-right: 10px;
	}
	a.btn-next4:before {
		content: '';
		background-repeat: no-repeat;
		background-position: left 50%;
		background-image: url('../images/icon-round-arrow.png');
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		width: 40px;
		height: 40px;
	}
	a.btn-next4:hover {
		margin-top: 23px;
		color: #fff;
		background: #E94E20;
		padding: 10px 20px;
		margin-bottom: -3px;
	}

	a.btn-reports {
		font-size: 16px;
		font-weight: 600;
		color: #fff;
		padding: 10px 20px 10px 0;
		border-radius: 30px;
		display: inline-block;
		margin-top: 20px;
		margin-right: 10px;
	}
	a.btn-reports:before {
		content: '';
		background-repeat: no-repeat;
		background-position: left 50%;
		background-image: url('../images/icon-round-reports.png');
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		width: 40px;
		height: 40px;
	}
	a.btn-reports:hover {
		margin-top: 23px;
		color: #fff;
		background: #85B200;
		padding: 10px 20px;
		margin-bottom: -3px;
	}

	.sub-banner-content {
		padding: 10px 70px 20px;
	}

	.page-title {
		font-size: 50px;
		font-weight: 300;
		color: #F87426;
		text-align: left;
		margin: 0 auto;
		padding: 20px 0 30px;
	}

	.page-content {
		font-size: 16px;
		font-weight: 300;
		color: #fff;
		text-align: left;
	}
	.page-content>.col {
		margin-bottom: 30px;
	}
	.page-content h1,
	.page-content h2,
	.page-content h3,
	.page-content h4 {
		color: #F87426;
	}

	.page-content .team {
		list-style: none;
		margin: 20px auto;
	}
	.page-content .team li {
		color: #F87426;
		font-size: 18px;
		font-weight: 600;
		margin-bottom: 10px;
	}
	.page-content .team li.bio:hover {
		cursor: pointer;
	}
	.page-content .team li span {
		color: #fff;
	}
	.page-content .team li.active {
		color: #fc0;
	}
	.page-content .col-bios {
		position: absolute;
		display: none;
		opacity: 0;
		left: 0;

	}
	.page-content .col-bios.active {
		position: relative;
		display: block;
		opacity: 1;
	}

	.page-content .side-nav {
		list-style: none;
		margin: 20px 0 0 -8px;
		padding: 0;
	}
	.page-content .side-nav li {
		font-size: 20px;
	}
	.page-content .side-nav li>a:before {
	    position: relative;
	    top: 1px;
	    display: inline-block;
	    font-family: 'Glyphicons Halflings';
	    font-style: normal;
	    font-weight: 400;
	    line-height: 1;
	    -webkit-font-smoothing: antialiased;
	    -moz-osx-font-smoothing: grayscale;
	    content: "\e080";
	    margin-right: 10px;
	    font-size: 14px;
	    color: #fff;
	}
	.page-content .side-nav li>a {
    	padding: 5px 8px;
    	color: #fff;
	}
	.page-content .side-nav li a:hover {
    	color: #fff;
    	background-color: #E94E20;
	}
	.page-content .side-nav li a:hover:before {
		color: #fff;
	}

	#atom-animation {
		max-height: 320px;
		margin-bottom: 20px;
	}

/***********************************

  Wordpress Support CSS

***********************************/

	.posts-list {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.posts-list li {
		text-align: left;
		margin-bottom: 20px;
	}
	.posts-list li h3 a {
		color: #333;
	}
	.posts-list li h3 a:hover {
		color: #FFCC00;
	}

	.widget .widget-title {
		text-align: left;
		background: #FFCC00;
		padding: 10px;
		color: #fff;
	}
	.widget  ul {
		list-style: none;
		padding: 0 10px;
		margin: 0;
	}
	.widget  li {
		text-align: left;
	}

	.search-excerpt {
		background: #FFCC00;
	}
	a:hover .search-excerpt {
		color: #fff;
	}

/***********************************

  Wordpress WooCommerce Support CSS

***********************************/

/***********************************

  Responsive CSS

***********************************/

	/** Mobile Phones and Larger **/
	@media screen and (min-width: 480px) {}

	/** Large Mobile Phones and Larger **/
	@media screen and (min-width: 580px) {
		.home #banner .carousel-inner>.item>img {
			min-height: 600px;
		}
	}

	/** Tablets and Larger **/
	@media screen and (min-width: 768px) {
		.wrapper {
			padding-left: 15px;
			padding-right: 15px;
		}
		header,
		footer,
		#header-page {
			padding-left: 35px;
			padding-right: 35px;
		}

		.sub-banner-content {
			padding-left: 35px;
			padding-right: 35px;
		}

		#banner .banner-bottom .col {
			padding-left: 35px;
			padding-right: 35px;
		}

		#banner .sub-banner-content.case .page-content {
			color: #333;
		}
		#banner .sub-banner-content.competition .page-content {
			/*color: #333;*/
			/*font-size: 23px;*/
		}

		#banner.sub .carousel-inner>.item>img {
			height: 0;
		}
		.home #banner .carousel-inner>.item>img {
			min-height: 800px;
		}

		#banner .sub-banner-content.competition .page-content,
		.page-content {
			font-size: 16px;
		}

		.wrapper.white #main-nav>li>a:hover {
			color: #999;
		}
		.wrapper.white #main-nav>li>a {
			color: #333;
		}
	}

	/** Laptops and Larger **/
	@media screen and (min-width: 992px) {
		footer .address p {
			margin-bottom: 0;
		}
		footer .links {
			text-align: right;
		}
		#banner .banner-bottom {
			/*border-top: 2px solid #fff;*/
		}
		#banner .banner-bottom .col {
			text-align: left;
		}
		#banner .banner-bottom .col:nth-child(2) span {
			float: right;
		}

		.home #banner .carousel-inner>.item>img {
			min-height: 490px;
		}
	}

	/** Desktop and Larger **/
	@media screen and (min-width: 1200px) {
		#banner .banner-bottom span {
			display: inline-block;
		}
		#banner .banner-bottom .col-spot form {
			display: inline-block;
			margin-left: 20px;
		}
		#banner .banner-bottom .col-spot input {
			width: 200px;
		}
		#banner.sub .carousel-inner>.item .col-scroll{
			overflow: auto;
		}
	}

	/** Desktop and Larger **/
	@media screen and (min-width: 1220px) {}

	/** Desktop and Larger **/
	@media screen and (min-width: 1420px) {
		#banner .banner-content .col img {
			padding: 0 20px;
		}
		#banner .btn-corpspeak span,
		#banner .btn-spotdelivery span {
			font-size: 18px;
		}
		#banner .btn-corpspeak,
		#banner .btn-spotdelivery {
			font-size: 24px;
		}

		#banner .sub-banner-content.competition .page-content,
		.page-content {
			font-size: 18px;
		}

		.what.sub-banner-content .page-content {
			font-size: 16px;
		}

		.overview.sub-banner-content .page-content .col,
		.what.sub-banner-content .page-content .col {
			padding-left: 15px;
			padding-right: 45px;
		}
	}

	/** Large Desktop and Larger **/
	@media screen and (min-width: 1600px) {
		.wrapper {
			padding-left: 15px;
			padding-right: 15px;
		}
		header,
		footer,
		#header-page {
			padding-left: 85px;
			padding-right: 85px;
		}
		
		.sub-banner-content {
			padding-left: 85px;
			padding-right: 85px;
		}

		#banner .banner-bottom .col {
			padding-left: 85px;
			padding-right: 85px;
		}
	}

	/** Large Desktop and Larger **/
	@media screen and (min-width: 1900px) {
		.demo.sub-banner-content .page-content,
		.overview.sub-banner-content .page-content,
		#banner .sub-banner-content.competition .page-content {
			font-size: 23px;
		}
	}

	/** Large Desktop and Smaller **/
	@media screen and (max-width: 1599px) {}

	/** Large Desktop and Smaller **/
	@media screen and (max-width: 1419px) {}

	/** Desktop and Smaller **/
	@media screen and (max-width: 1281px) {
		.page-title {
			font-size: 28px;
			padding-top: 20px;
		}
		.sub-banner-content {
			padding-top: 0px;
		}
	}

	/** Desktop and Smaller **/
	@media screen and (max-width: 1219px) {
		/*#brand {
			float: none;
		}*/
		/*#logo {
			margin: 0 auto;
		}*/
		/*#main-nav {
			width: 100%;
			text-align: center;
		}*/
		#main-nav>li {
	    	margin-left: 14px;
	    	font-size: 14px;
		}
	}

	/** Desktop and Smaller **/
	@media screen and (max-width: 1199px) {
		.home #banner .banner-content {
			padding-top: 60px;
		}

		.page-title {
			padding-top: 10px;
			padding-bottom: 20px;
			/*text-align: center;*/
		}

		#banner.sub .carousel-inner>.item {
			overflow: auto;
		}
	}

	/** Laptops and Smaller **/
	@media screen and (max-width: 1200px) and (min-width: 992px) {
		#banner .banner-content .col img {
			width: 10%;
		}
	}

	/** Laptops and Smaller **/
	@media screen and (max-width: 1080px) and (min-width: 992px) {
		.col-qmark p {
			padding: 0 !important;
		}
	}

	/** Laptops and Smaller **/
	@media screen and (max-width: 991px) {
		#brand {
			float: none;
		}
		#logo {
			margin: 0 auto;
		}
		#main-nav {
			width: 100%;
			text-align: center;
		}

		#banner .col-qmark .desktop {
			display: none;
			height: 0;
		}
		#banner .col-qmark .mobile {
			display: inline-block;
			height: auto;
		}

		#banner .banner-content .col-btn {
			margin-bottom: 20px;
		}
	}

	/** Tablets and Smaller **/
	@media screen and (max-width: 830px) and (min-width: 768px) {
		#main-nav>li {
			margin-left: 10px;
			font-size: 13px;
		}
	}

	/** Tablets and Smaller **/
	@media screen and (max-width: 768px) and (min-width: 768px){
		#navbar-toggle {
			display: block;
		}

		#brand {
			float: left;
		}
		#logo {
			margin: 0 10px 0 0;
		}
		header.row {
			z-index: 3;
		}
		header.row > nav {
			position: static !important;
		}
		#main-nav {
			background: rgba(26,100,111,1);
			text-align: left;
			width: 100%;

		    position: absolute;
		    left: 0;
		    top: 100px;
		    margin-top: 10px;
		    padding-top: 15px;
		    padding-bottom: 15px;
		}
		#main-nav li {
			display: block;
			margin: 0;
			font-size: 16px;
			clear: left;
		}
		#main-nav>li> a {
			display: block;
			padding: 15px;
			padding-left: 50px;
		}
		#main-nav>li> a:hover {
			background: #FF8000;
			color: #fff;
		}

		#main-nav .dropdown-menu {
			position: relative;
			box-shadow: none;
			width: 100%;
			border: 0;
			padding: 10px 10px;
			background: none;
		}

		#main-nav.collapse {
			display: none !important;
			height: 0;
		}
		#main-nav.collapse.in {
			display: block !important;
			height: auto;
		}
		#main-nav.collapse.collapsing {
		    -webkit-transition-timing-function: ease;
		    -o-transition-timing-function: ease;
		    transition-timing-function: ease;
		    -webkit-transition-duration: .35s;
		    -o-transition-duration: .35s;
		    transition-duration: .35s;
		    -webkit-transition-property: height,visibility;
		    -o-transition-property: height,visibility;
		    transition-property: height,visibility;
		}

	}

	/** Tablets and Smaller **/
	@media screen and (max-width: 767px) {
		#brand {
			float: left;
		}
		#logo {
			margin: 0 10px 0 0;
		}
		header.row {
			z-index: 3;
		}
		header.row > nav {
			position: static !important;
		}
		#main-nav {
			background: #1A646F;
			background: rgba(26,100,111,1);
			text-align: left;
			width: 100%;

		    position: absolute;
		    left: 0;
		    top: 100px;
		    margin-top: 10px;
		    padding-top: 15px;
		    padding-bottom: 15px;
		}
		#main-nav li {
			display: block;
			margin: 0;
			font-size: 14px;
			text-align: center;
			clear: left;
		}
		#main-nav>li> a {
			display: block;
			padding: 15px;
		}
		#main-nav>li> a:hover {
			background: #FF8000;
			color: #fff;
		}

		#main-nav .dropdown-menu {
			position: relative;
			box-shadow: none;
			width: 100%;
			border: 0;
			padding: 10px 10px;
			background: none;
		}
		#main-nav .dropdown-menu>li>a {
			padding-top: 10px;
			padding-bottom: 10px;
		}

		#banner .banner-bottom {
			position: relative;
			/*background: #000;*/
			text-align: center;
		}
		#banner .banner-bottom .col {
			padding: 33px 0px;
		}
		#banner .banner-bottom span {
			font-size: 16px;
			margin-bottom: 10px;
			display: block;
		}

		#banner .carousel-inner>.item>img {
			/*min-height: 300px;*/
			/*visibility: visible;*/
			height: 0;
		}

		#banner .sub-banner-content {
			position: relative;
			background: rgba(0,0,0,0.5);
			color: #fff;
			padding: 40px 30px 60px;
		}

		.page-content .team {
			padding: 0
		}
		.page-content .team li {
			color: #F87426;
		}

		.page-content .side-nav li>a {
			color: #fff;
		}

		.page-title {
			padding-bottom: 20px;
			text-align: left;
			font-size: 40px;
		}

		#banner>.carousel {
			padding: 0;	
		}
	}

	/** Large Mobile Phones and Smaller **/
	@media screen and (max-width: 579px) {
		#logo {
			margin-top: 10px;
			background-size: contain;
			width: 148px;
			height: 44px;
		}

		#banner .sub-banner-content {
			position: relative;
			padding: 40px 30px 60px;
		}

		#banner .banner-content .col-qmark {
			display: none;
		}
		#banner .btn-corpspeak span,
		#banner .btn-spotdelivery span {
			font-size: 16px;
		}
		#banner .btn-corpspeak,
		#banner .btn-spotdelivery {
			font-size: 20px;
			padding: 10px 20px;
		}
		.home #banner .banner-content {
			padding-top: 50px;
		}
		#banner .banner-content .col-btn {
			margin: 0px auto;
		}
	}

	/** Large Mobile Phones and Smaller **/
	@media screen and (max-width: 479px) {}

	/** Custom Media **/
	@media screen and (min-width: 381px ) and (max-width: 479px ) {}
