@charset "utf-8";
/* CSS Document */

body {
    padding-top: 70px;
	/* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
}

html {overflow-y: scroll;
	box-sizing: border-box;
	height: 100%;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}



.banner-img {
	margin-top: 0px;
	border-bottom: solid;
	border-bottom-width: 10px;
	border-bottom-color: #007298;
	
}
.banner-gray {
	background-color:lightgray;
	padding: 1%;
}



.banner-dark-gray {
	background-color:#CCCCCC;
	padding: 1%;
}


.banner-heading {
	font-family: Palatino, "Times New Roman", "serif";
	font-size: 5.7vw;
	color: #777777;
}

.full-row {
	padding: 1%;
	height: 100%;
	border-bottom-width: thick !important;
	border-bottom-style: solid !important;
	border-bottom-color: #cccccc !important;	
}

.full-row-thin {
	padding: 1%;
	height: 100%;
	padding-bottom: 15px;
	border-bottom-width: thin !important;
	border-bottom-style: solid !important;
	border-bottom-color: #cccccc !important;	
}

.full-row-no-line {
	padding: 1%;
	height: 100%;	
}

.full-row-blue {
	padding: 1%;
	height: 100%;
	border-bottom-width: thick !important;
	border-bottom-style: solid !important;
	border-bottom-color: #007298 !important;
	border-top-width: thick !important;
	border-top-style: solid !important;
	border-top-color: #007298 !important;	
}



h1 {
	color: #007298 !important;
}

hr {
	border-width: thick;
	border-color: #cccccc;
	margin: 0px;
}

.jumbotron {
	margin-top: 10px !important;
}


.slide-image {
    width: 100%;
}

.carousel-holder {
    margin-bottom: 30px;
}

.carousel-control,
.item {
    border-radius: 4px;
}

.caption {
    height: 130px;
    overflow: hidden;
}

.caption h4 {
    white-space: nowrap;
}

.thumbnail img {
    width: 100%;
}

.ratings {
    padding-right: 10px;
    padding-left: 10px;
    color: #d17581;
}

.thumbnail {
    padding: 0;
}

.thumbnail .caption-full {
    padding: 9px;
    color: #333;
}

.footer-basic-centered {
	background-color: #292c2f;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	font: normal 18px sans-serif;
	padding: 45px;
	margin-top: 80px;
}

.footer-basic-centered .footer-company-motto{
	color:  #8d9093;
	font-size: 24px;
	margin: 0;
}

.footer-basic-centered .footer-company-name{
	color:  #8f9296;
	font-size: 14px;
	margin: 0;
}

.footer-basic-centered .footer-links{
	list-style: none;
	font-weight: bold;
	color:  #ffffff;
	padding: 35px 0 23px;
	margin: 0;
}

.footer-basic-centered .footer-links a{
	display:inline-block;
	text-decoration: none;
	color: inherit;
}

.icon-bar {
  color: #777777;
  border-color: #777777;
  background-color: #777777;
}

ul {
	margin-top: -10px;
}

/* Main Navbar collaspe */
@media (max-width: 1300px) 
{ .navbar-header { float: none; } 
	.navbar-left,.navbar-right { float: none !important; } 
	.navbar-toggle { display: block; } 
	.navbar-collapse { border-top: 1px solid transparent; box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); } 
	.navbar-fixed-top { top: 0; border-width: 0 0 1px; } 
	.navbar-collapse.collapse { display: none!important; } 
	.navbar-nav { float: none!important; margin-top: 7.5px; } 
	.navbar-nav>li { float: none; } 
	.navbar-nav>li>a { padding-top: 10px; padding-bottom: 10px; } 
	.collapse.in{ display:block !important; } } 

/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 600px) {

	.footer-basic-centered{
		padding: 35px;
	}

	.footer-basic-centered .footer-company-motto{
		font-size: 18px;
	}

	.footer-basic-centered .footer-company-name{
		font-size: 12px;
	}

	.footer-basic-centered .footer-links{
		font-size: 14px;
		padding: 25px 0 20px;
	}

	.footer-basic-centered .footer-links a{
		line-height: 1.8;
	}
}

@mixin fluid-type($properties, $min-screen, $max-screen, $min-value, $max-value) {
  & {
    @each $property in $properties {
      #{$property}: $min-value;
    }

    @media screen and (min-width: $min-screen) {
      @each $property in $properties {
        #{$property}: calc-interpolation($min-screen, $min-value, $max-screen, $max-value); 
      }
    }

    @media screen and (min-width: $max-screen) {
      @each $property in $properties {
        #{$property}: $max-value;
      }
    }
  }
}

// Requires the calc-interpolation function which can also be used independently

@function calc-interpolation($min-screen, $min-value, $max-screen, $max-value) {
		$a: ($max-value - $min-value) / ($max-screen - $min-screen);
	$b: $min-value - $a * $min-screen; 

	$sign: "+";
	@if ($b < 0) {
		$sign: "-";
		$b: abs($b);
	}
	@return calc(#{$a*100}vw #{$sign} #{$b});
}
	
* {
	box-sizing: border-box;
}

$baseline: 1.5rem;

$minScreen: 20rem;
$maxScreen: 50rem;
$minFont: .8rem;
$maxFont: 2rem;

$h1: 2rem;
$h2: 1.5rem;
$h3: 1.25rem;
$h4: 1rem;
$h5: .875rem;


@mixin fluid-type($properties, $min-vw, $max-vw, $min-value, $max-value) {
	& {
		@each $property in $properties {
			#{$property}: $min-value;
		}

		@media screen and (min-width: $min-vw) {
			@each $property in $properties {
				#{$property}: calc(#{$min-value} + #{strip-unit($max-value - $min-value)} * ((100vw - #{$min-vw}) / #{strip-unit($max-vw - $min-vw)}));
			}
		}

		@media screen and (min-width: $max-vw) {
			@each $property in $properties {
				#{$property}: $max-value;
			}
		}
	}
}

@function strip-unit($value) {
	@return $value / ($value * 0 + 1);
}

*{
	box-sizing: border-box;
}


p{	
	line-height: $baseline;
	margin-bottom: $baseline;
}

h1,
h2,
h3,
h4,
h5,

h1 {
	font-size: $h1;
	line-height: $h1;
	margin-top: calc((#{$baseline} - #{$h1}) + #{$baseline});
}

h2 {
	font-size: $h2;
	line-height: $h2;
	margin-top: calc((#{$baseline} - #{$h2}) + #{$baseline}*2);
}

h3 {
	font-size: $h3;
	line-height: $h3;
	margin-top: calc((#{$baseline} - #{$h3}) + #{$baseline}*2);
}

h4 {
	font-size: $h4;
	line-height: $h4;
	margin-top: calc((#{$baseline} - #{$h4}) + #{$baseline}*2);
}

h5 {
	font-size: $h5;
	line-height: $h5;
	margin-top: calc((#{$baseline} - #{$h5}) + #{$baseline}*2);
}