
/*

	I know, I don't know shit about CSS, but hey, I'm learning.

*/


/*

http://urbaninfluence.com/2015/05/make-a-background-image-slider-with-css-keyframes/

*/
/*----------------------------------------------   
--html
1. baseline font-size.
2. Prevent jumps by forcing horizontal scroll
3. Prevent right gaps on mobile
4. Defualt to sans
5. Prevent iOS text size adjust after orientation change, without disabling
*    user zoom.
-----------------------------------------------  */
@import url(https://fonts.googleapis.com/css?family=Lato:300|Playfair+Display:900|Roboto:300);
html {
  font-size: 100%;
  /* 1 */
  overflow-y: scroll;
  /* 2 */
  font-family: sans-serif;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 4 */
  -webkit-text-size-adjust: 100%;
  /* 4 */ }

/*----------------------------------------------   
-body
1. Defualt margins
2. prevent mobile gaps
3. Better font rendering across browsers
-----------------------------------------------  */
body {
  margin: 0;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }
  
  
  body.cv {
	  
	  padding-top: 0;
	  
  }

/*----------------------------------------------   
-body, html
-Set 100% height if needed for full viewport stuff
-Prevent gaps in mobile layout
-----------------------------------------------  */
html, body {
  position: relative;
  overflow-x: hidden; }

/*----------------------------------------------   
-Defualt to border-box
-----------------------------------------------  */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }



/*----------------------------------------------   
LINKS
-Remove the gray background color from active links in IE 10.
-Remove defualt text-decoration
-Improve readability
-----------------------------------------------  */
a {
  background-color: transparent;
  outline: 0;
  text-decoration: none; }

a:active,
a:hover {
  outline: 0; }

/*----------------------------------------------   
TEXT LEVEL
-Abbr: Address styling not present in IE 8/9/10/11, Safari, and Chrome.
-Bold: Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
dfn, mark: Address unset styles
-Small: Address inconsistent and variable font size in all browsers.
-Prevent `sub` and `sup` affecting `line-height` in all browsers.
-----------------------------------------------  */
abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/*----------------------------------------------   
HEADERS
-Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari, and Chrome.
-Remove Margins from headers and type elements to better define in your typographic system
-----------------------------------------------  */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dd, small {
  margin: 0;
  padding: 0; }

/*----------------------------------------------   
IMAGES & EMBEDDED CONTENT
-Responsive defualt
-IE Scaling fix
-----------------------------------------------  */
img, object, embed {
  max-width: 100%;
  height: auto; }

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  outline: none; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
/*----------------------------------------------   
SVG
-Correct overflow not hidden in IE 9/10/11
-----------------------------------------------  */
svg:not(:root) {
  overflow: hidden; }

/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }


/*----------------------------------------------   
FORMS
-----------------------------------------------  */
form {
  margin: 0; }

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  margin: 0;
  /* 3 */
  font-size: 100%;
  vertical-align: middle; }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button, input {
  overflow: visible;
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/* Ensure pointer */
label,
select,
button,
input {
  cursor: pointer; }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input:focus,
select:focus,
textarea:focus,
button:focus,
.btn:focus {
  outline: none; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
  vertical-align: text-bottom;
  width: 100%; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/*----------------------------------------------   
TABLES
-----------------------------------------------  */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/* --Modules
=======================================*/
/*----------------------------------------------   
--Google Fonts Import
-----------------------------------------------  */
/*----------------------------------------------   
--Typography: Body
-----------------------------------------------  */
body {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

/*----------------------------------------------   
--Typography: Fluid body sizing hotness
* Adjust to suit your needs.
-----------------------------------------------  */
body {
  font-size: 100%; }
  @media (min-width: 36em) {
    body {
      font-size: 110%; } }
  @media (min-width: 58em) {
    body {
      font-size: 120%; } }
  @media (min-width: 86em) {
    body {
      font-size: 130%; } }
  @media (min-width: 115em) {
    body {
      font-size: 160%; } }
  @media (min-width: 125em) {
    body {
      font-size: 170%; } }
  @media (min-width: 145em) {
    body {
      font-size: 180%; } }

/*----------------------------------------------   
--Typography: Headers
-----------------------------------------------  */
h1 {
  font-size: 2.75em;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Lato", "playfair display", georgia, times, serif;
  font-weight: 700;
  text-rendering: optimizeLegibility;
  line-height: 1.2; }
  @media (min-width: 58em) {
    h1 {
      font-size: calc(2.75em + 70%); } }

/*----------------------------------------------   
--Typography: paragraph
-----------------------------------------------  */
p {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-weight: 300; }

/*----------------------------------------------   
--Links
-----------------------------------------------  */
a {
  color: #BBBBBB;
  -webkit-transition: color 0.7s ease;
  -moz-transition: color 0.7s ease;
  transition: color 0.7s ease; }
  a:hover {
    color: #EEEEEE;
    -webkit-transition: color 0.7s ease;
    -moz-transition: color 0.7s ease;
    transition: color 0.7s ease; }

/*----------------------------------------------   
--Setup
-----------------------------------------------  */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 100%;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: #7690A4; }

body {
  -webkit-animation: fade-in ease-in-out 1.4s;
  -moz-animation: fade-in ease-in-out 1.4s;
  animation: fade-in ease-in-out 1.4s; }

/*----------------------------------------------   
--Banner
-----------------------------------------------  */
.sect-banner {
  display: table;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  height: 100vh;
  color: rgba(255, 255, 255, 0.9);
  
  
  /*----------------------------------------------   
  -DEMO2: Banner bg
  -----------------------------------------------  */ }
  .sect-banner:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(118, 144, 164, 0.4);
    z-index: 0; }
  .sect-banner .v-center {
    position: relative;
    z-index: 2; }
  .sect-banner .v-center {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 4;
    padding: 0 5%; }
    .sect-banner .v-center h1 {
      -webkit-animation: fade-in ease-in-out 5s 0.5s both;
      -moz-animation: fade-in ease-in-out 5s 0.5s both;
      animation: fade-in ease-in-out 5s 0.5s both; }
    .sect-banner .v-center p {
      font-size: 120%;
      -webkit-animation: fade-in ease-in-out 5s 1s both;
      -moz-animation: fade-in ease-in-out 5s 1s both;
      animation: fade-in ease-in-out 5s 1s both; }
	


	  
	  
	  
	  
	  
	  
/*----------------------------------------------   
-Unordered list MAIN
-----------------------------------------------  */
ul.kf-slider-main li {
  height: 100% !important;
  width: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  z-index: 0;
  opacity: 0;
  -webkit-animation: fade-out 15s infinite both;
  -moz-animation: fade-out 15s infinite both;
  animation: fade-out 15s infinite both;
  background-image: url(../images/1.jpg); }
  @media (min-width: 58em) {
    ul.kf-slider-main li {
      background-image: url(../images/1.jpg); } }
ul.kf-slider-main li:nth-child(2) {
  background-image: url(../images/2.jpg);
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s; }
  @media (min-width: 58em) {
    ul.kf-slider-main li:nth-child(2) {
      background-image: url(../images/2.jpg); } }
ul.kf-slider-main li:nth-child(3) {
  background-image: url(../images/3.jpg);
  -webkit-animation-delay: 10s;
  -moz-animation-delay: 10s;
  animation-delay: 10s; }
  @media (min-width: 58em) {
    ul.kf-slider-main li:nth-child(3) {
      background-image: url(../images/3.jpg); } }
	  
	  
	  
	  
	  
	  
/*----------------------------------------------   
-Unordered list CV
-----------------------------------------------  */
ul.kf-slider-cv li {
  height: 100% !important;
  width: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  z-index: 0;
  opacity: 0;
  -webkit-animation: fade-out 15s infinite both;
  -moz-animation: fade-out 15s infinite both;
  animation: fade-out 15s infinite both;
  background-image: url(../images/4.jpg); }
  @media (min-width: 58em) {
    ul.kf-slider-cv li {
      background-image: url(../images/4.jpg); } }
ul.kf-slider-cv li:nth-child(2) {
  background-image: url(../images/5.jpg);
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s; }
  @media (min-width: 58em) {
    ul.kf-slider-cv li:nth-child(2) {
      background-image: url(../images/5.jpg); } }
ul.kf-slider-cv li:nth-child(3) {
  background-image: url(../images/6.jpg);
  -webkit-animation-delay: 10s;
  -moz-animation-delay: 10s;
  animation-delay: 10s; }
  @media (min-width: 58em) {
    ul.kf-slider-cv li:nth-child(3) {
      background-image: url(../images/6.jpg); } } 
	  
	  
	  
	  

	  
	  
/*----------------------------------------------   
-Unordered list PROJECTS
-----------------------------------------------  */
ul.kf-slider-projects li {
  height: 100% !important;
  width: 100%;
  position: absolute;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  z-index: 0;
  opacity: 0;
  -webkit-animation: fade-out 15s infinite both;
  -moz-animation: fade-out 15s infinite both;
  animation: fade-out 15s infinite both;
  background-image: url(../images/7.jpg); }
  @media (min-width: 58em) {
    ul.kf-slider-projects li {
      background-image: url(../images/7.jpg); } }
ul.kf-slider-projects li:nth-child(2) {
  background-image: url(../images/8.jpg);
  -webkit-animation-delay: 5s;
  -moz-animation-delay: 5s;
  animation-delay: 5s; }
  @media (min-width: 58em) {
    ul.kf-slider-projects li:nth-child(2) {
      background-image: url(../images/8.jpg); } }
ul.kf-slider-projects li:nth-child(3) {
  background-image: url(../images/9.jpg);
  -webkit-animation-delay: 10s;
  -moz-animation-delay: 10s;
  animation-delay: 10s; }
  @media (min-width: 58em) {
    ul.kf-slider-projects li:nth-child(3) {
      background-image: url(../images/9.jpg); } } 	  
	  
	  
	  
	  
	  
	  
	  

/*----------------------------------------------   
-Footer
-----------------------------------------------  */
footer {
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  position: fixed;
  bottom: 1em; }

/*----------------------------------------------   
--Fade ins
-----------------------------------------------  */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-moz-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*----------------------------------------------   
--Fade out for slider
-----------------------------------------------  */
@-webkit-keyframes fade-out {
  33% {
    opacity: 1; }
  66% {
    opacity: 0; } }
@-moz-keyframes fade-out {
  33% {
    opacity: 1; }
  66% {
    opacity: 0; } }
@keyframes fade-out {
  33% {
    opacity: 1; }
  66% {
    opacity: 0; } }

	
	
	
	
	
	
/*http://www.menucool.com/tooltip/css-tooltip	*/
a.tooltip {outline:none; color:#EEEEEE;}
a.tooltip strong {line-height:30px;}
a.tooltip:hover {text-decoration:none; color:#EEEEEE;} 
a.tooltip span {
	
    z-index:10;
	display:none;
	padding:14px 20px;
    margin-top:-20px;
	margin-left:150px;
    width:300px;
	line-height:2;
}
a.tooltip:hover span{
	

	display:inline;
	
    border:1px solid #DDDD;  color:#DDDDDD;

	/* fixed within viewport */
    position: fixed;

    /* set position */
    top: 50px;
    right: 30px;
	
	background:rgba(55, 55, 55, .5);

	
}
.callout {
	
	
	
	z-index:20;position:fixed;border:0;top:-14px;left:120px;
	
	
	

	
	}
    
/*CSS3 extras*/
a.tooltip span
{
    border-radius:2px;        
    box-shadow: 0px 0px 8px 4px #666;
    /*opacity: 0.8;*/
}




	

span.popup {
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: 300;
	font-size: 0.25em;
}
	


	
div.tip {
	
	font-style: italic;
	font-size: 0.5em;
}


div.title {
	
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #FFFFFF;
	font-style: italic;
	font-size: 4em;
	margin-bottom: -40px;
	
}



a.expand {
	
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #CCCCCC;
	font-size: 3.5em;
	text-decoration:none;
	
}

a.expand:active,
a.expand:visited,
a.expand:hover {
	text-decoration:none;
	color:#FFFFFF;
	} 

a.projectlink:active,
a.projectlink:visited,	
a.projectlink {
	
	color: #DDDDAA;
	text-style: italic;
	text-decoration:none;	
}	
a.projectlink:hover {
	text-decoration:none;
	color:#CCCCDD;
	} 

div.project {
	font-size: 120%;
	font-style: italic;
	-webkit-animation: fade-in ease-in-out 1s 0s both;
	-moz-animation: fade-in ease-in-out 1s 0s both;
	animation: fade-in ease-in-out 1s 0s both;
	}	
	
	
	
	
	
	
	
	
	
a.back {
	

	display:inline;
	
    border:1px solid #DDDD;  color:#DDDDDD;

	/* fixed within viewport */
    position: fixed;

    /* set position */
    top: 0px;
    left: 10px;
	
	
	font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #CCCCCC;
	font-size: 1em;
	text-decoration:none;
	
	text-style: italic;
	
}	
	
	
	
	
	
	
	
	
	
	
	