@import url('https://fonts.googleapis.com/css?family=Raleway:400,400i,700,700i,900');
@import url("/core/bootstrap/css/bootstrap.min.css");
@import url("/core/fonts/glyphicons/glyphicons.min.css");
@import url("/core/css/global.min.css");

/* Mobile first; then... */  
@media (min-width: 768px) {
	/* small eg iPad portrait */  
}
@media (min-width: 992px) {
	/* medium, e.g iPad landscape, older monitors, laptops  */
}
@media (min-width: 1200px) {
  /* large, e.g newer monitors, laptops */
}
/* optional for larger screens 
@media (min-width: 1400px) {
  .container {
    width: 1370px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1570px;
  }
}



*/

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

NORMALISE AND AUGMENT 

BOOTSTRAP DEFAULTS

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

/* add FLEX to bootstrap columns */

body {
	background: #F0F0F0;
}
.row {
	display:flex;
	flex-wrap: wrap;	
}

.row > div {
	flex-grow: 12;
}

/* safari fix for last column wrapping in flex */
.row:after, .row:before {
  display: none;
}

.container .container {
	width:auto;
	margin:0;
	padding:0;
	background:transparent;
}

img, video { /* all images max out at screen/col width */
	display:inline-block;
	margin:0;
	max-width:100%;
	height:auto;
}

.row img, .row video { /* all column images fill col width */
	width:100%;
}

img.actualsize { /* override above */
	width:auto !important;
	max-width:none;
}

small {
	color:inherit !important;
}

td, th {
	vertical-align:top;
}

label {
	font-weight:normal;
}
legend {
  display: inline;
  margin:0;
  padding: 0 5px;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border:none;
  width:auto;
}
	
.label {
display: inline;
padding: 0;
font-size: 1em;
font-weight: normal;
line-height: inherit;
color: inherit;
text-align: left;
white-space:normal;
vertical-align:auto;

}

blockquote:after {
	/*prevent single quotes in subsequent blockquotes*/
	content: close-quote;
	visibility:hidden;
}



h1 {
	color: #1C3A60;
}
h2 {
	color: #4682B4;
}


a, a:link, a:visited, a:hover, a:active {
	color:inherit;
	outline:none;
}

.btn.btn-primary {
	background-color: #FF8C00;
	border-color: #FF8C00;
	color:rgba(255,255,255,1);
}

.safari-fix {
	/* fixes z-index and font issues in Safari */
      -webkit-transform:translateZ(1px);
      transform:translateZ(1px);
}

* {
	-webkit-text-size-adjust: 100%; /* stops font size changing in iOS */
	
	/*-webkit-font-smoothing: subpixel-antialiased;  makes safaro looks like Firefox */
	-moz-osx-font-smoothing: grayscale; /* fonts don't appear heavier in Firefox */
}  

body, button, input, select, textarea, th, td { }
 i.glyphicon  {
	
	 top:.2em;
 }



::-webkit-input-placeholder { /* WebKit browsers */
    color:    #8d7f6f;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #8d7f6f;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #8d7f6f;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #8d7f6f;
}
input:focus::-webkit-input-placeholder 
{
    color: transparent !important;
}


hr { 
   
    border-style:none;
    border:none;
	border-top:1px solid rgba(204,204,204,1);
}

/**** RE-ORDERING IWTH CSS ******

#wrapper {display:table;}

#first {display:table-caption;}
#second {display:table-header-group;}
#last {display:table-footer-group;}

*/


/* ALWAYS SHOW SCROLL BARS

 ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}


*/




/* Truncate to number of lines */



.truncate {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 400px;
  height: 36px; /* Fallback for non-webkit = font-size x line-height x lines to show */
  margin: 0 auto;
  font-size: 10px;
  line-height: 1.2;
  -webkit-line-clamp: 3; /*lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vertical-center {
 /* centers anything vertically if you don't know dimensions */
  position: relative;/* or absolute*/
  top: 50%;
  
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webit-transform: translateY(-50%);
  transform: translateY(-50%);
  /* note you can do this with absolute on x axis too  */
}

.vertical-center-page {
	 top: 50vh; /* additional for iOS */
}

/* columns of same height styles */
.container-xs-height {
    display:table;
    padding-left:0px;
    padding-right:0px;
}
.row-xs-height {
    display:table-row;
	height:100%; /* firefox fix */
}
.col-xs-height {
    display:table-cell;
    float:none;
	height:100%; /* firefox fix */
}
@media (min-width: 768px) {
    .container-sm-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-sm-height {
        display:table-row;
		height:100%; /* firefox fix */
    }
    .col-sm-height {
        display:table-cell;
        float:none;vertical-align:top;
		height:100%; /* firefox fix */
    }
}
@media (min-width: 992px) {
    .container-md-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
		
    }
    .row-md-height {
        display:table-row;
		height:100%; /* firefox fix */
    }
    .col-md-height {
        display:table-cell;
        float:none;vertical-align:top;
		height:100%; /* firefox fix */
    }
}
@media (min-width: 1200px) {
    .container-lg-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-lg-height {
        display:table-row;
		height:100%; /* firefox fix */
    }
    .col-lg-height {
        display:table-cell;
        float:none;vertical-align:top;
		height:100%; /* firefox fix */
    }
}

/*  to make child div same height as parent make it INLINE BLOCK and 100%

display: inline-block;  height:100%; */



/** BOOTSTRAP COLUMNS EMULATION 

.container {
	width:100%;
	padding: 0 15px;
}

.container, .container * {
	box-sizing:border-box;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
  
}

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


.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%;
}

@media (min-width: 768px) {
  .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%;
  }
 
}

@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%;
  }
}
**/

/* 100
100 = thin
200 = extra-light
300 = light
400 = normal, book
500 = medium
600 = demi-bold
700 = bold
800 = heavy
900 = black
*/

/*GEEZABREAK */
.cycle-wrapper {
		position:relative;
	}
	.cycle-wrapper:before {
		content:"";
		position:absolute;
		left:0;
		top:0;
		bottom:0;
		right:0;
		background:rgba(0,0,0,.3);
		z-index:210;
	}
	.slideshow-text {
		
		z-index:211;
		position:absolute;
		bottom:0;
		left:0;
		padding:15px;
		
		color:rgba(255,255,255,1);
	}
	
	.slideshow-text h1 {
		color:rgba(255,255,255,1);
		margin:0;
		font-size:18px;
		
	}
	.slideshow-text h2 {
		font-size:16px;
		margin: 10px 0 20px 0;
		color:rgba(255,255,255,1);
		
	}
	.slideshow-text p {
		display:none;
	}
	
	.slideshow-text strong {
		font-weight:900;
	}
	@media (min-width: 768px) {
		.slideshow-text {
			padding:30px;
		}
		
		.slideshow-text h1 {
			font-size:48px;
		}
		.slideshow-text h2 {
		font-size:24px;
		}
		.slideshow-text p {
		display:block;
	}
	}
	@media (min-width: 992px) {
		.slideshow-text {
			padding:60px;
			
		}
	}
		
		.highlights .green-bg,
		.highlights .cyan-bg {
			height:100%;
			border-radius: 7px; padding:15px;
			font-weight:bold;
		}
		.highlights .green-bg h3,
		.highlights .cyan-bg h3 {
			margin:0;
		}
		
		.highlights .green-bg hr,
		.highlights .cyan-bg hr {
			border-color: #ffffff;
			margin-top:7px;
			margin-bottom:7px;
		}
		
		.highlights .col-sm-6 {
			margin-bottom:15px;
		}
		.highlights img {
			border-radius: 7px;
		}
			
			.highlights .btn {
				margin-top:7px;
		
}

.tesimonials  {
	padding:30px 0;
}

.tesimonials .container {
	position:relative;
}

.tesimonials .container:before {
	position:absolute;
	top:-150px;
	left:0;
	content:open-quote;
	font-size:400px;
	opacity:.2;
	
}

.tesimonials .container:after {
	position:absolute;
	bottom:-350px;
	right:0;
	content:close-quote;
	font-size:400px;
	opacity:.2;
	
}

.tesimonials li {
	display:block;
	text-align:center;
	font-size: 24px;
	width:100%;
}