/* Cross Browser Compatability CSS */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ""; content: none; }

ins { background-color: #ff9; color: #000; text-decoration: none; }

mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }

table { border-collapse: collapse; border-spacing: 0; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

input, select { vertical-align: middle; }


/* Projects and Contacts styles and effects */

html, body { color: #434242; font-family: 'Open Sans', sans-serif !important; height: 100%; }
body { background: #F3EFE0; font-size: 15px; line-height: 1.64; }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, strong, b { font-family: 'Open Sans', sans-serif !important; margin-bottom: 20px; }
h1,h4 { font-weight: 300; margin-bottom: 10px; }
h2,h3 { font-weight: 300; color: #22A39F; }
h2 { font-size: 54px; text-align: center; }
h3 { font-size: 28px; }

p.lead { text-align: center; color: #727878; }
p.lead a { color: #FFFFFF; text-decoration: underline; }
p.lead a:hover { text-decoration: none; }
ul.no-bullets { list-style-type: none; margin: 0px; padding: 0px; }
hr { margin: 40px 0px; border-color: #000; opacity: 0.2; filter:alpha(opacity=20); }

.icon { display: inline-block; background: url(images/sm_icon_sprite.png) no-repeat; height: 32px; width: 32px; }
.icon.icon-twitter { background-position: 0px 0px; }
.icon.icon-linkedin { background-position: 0px -32px; }
.icon.icon-skype { background-position: 0px -64px; }
.icon.icon-email { background-position: 0px -96px; }

.background-white { background: #FFFFFF; }
.background-gray { background: #434242; }
/*.container { max-width: 1280px; padding: 40px 180px; }*/

#container {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.9);
    border-bottom-right-radius: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 5px 0 20px 20px;
    width: 385px;
}

/* #projects .row { margin: 0px; } // bootstrap 3.1- hack */
#projects .row > div { margin-bottom: 30px; }
#projects figure { position: relative; overflow: hidden; }
#projects figure h3 { color: #FFF; font-weight: 600; margin-bottom: 5px; }
#projects figure p > strong { width: 60px; display: inline-block; margin: 0px; }
#projects figure img { width: 110%; }
#projects figure figcaption {
    padding: 20px 30px;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}
#projects figure figcaption p {
  color: #fff;
}
#projects figure a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}
#projects figure .icon {
	background: #22A39F;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 48px;
	height: 48px;
}
#projects figure .icon span {
	font-size: 18px;
	line-height: 18px;
	padding: 15px;
}

#contact { padding-bottom: 100px; }
#contact h2, #contact .row * { color: #FFFFFF; }
#contact a { display: block; line-height: 32px; margin-bottom: 20px; opacity: 0.6; filter:alpha(opacity=60);  }
#contact a .icon { float: left; margin-right: 20px; }
#contact a:hover { opacity: 1; filter:alpha(opacity=100); text-decoration: none; }

@media (max-width: 767px) {
	#contact { padding-bottom: 60px; }
	#contact a .icon { float: left; margin-right: 10px; }
}


/*---------------*/
/***** EFFECT *****/
/*---------------*/

figure.effect {
	background: #22A39F;
	color: #FFF;
}

figure.effect img {
	width: -webkit-calc(100% + 20px);
	width: calc(100% + 20px);
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-10px,0,0);
	transform: translate3d(-10px,0,0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect:hover img {
	opacity: 0.2;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect figcaption {
	text-align: left;
}

figure.effect h3 {
	position: relative;
	overflow: hidden;
	padding-bottom: 20px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect:hover h3 {
	opacity: 1;
}

figure.effect h3::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	content: '';
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(-100%,0,0);
	transform: translate3d(-100%,0,0);
}

figure.effect:hover h3::after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect p {
	padding-top: 10px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
}

figure.effect:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}


/* Custom CSS styles here */

body {
    background: url("../images/cobble.jpg") no-repeat fixed center center / cover rgba(0, 0, 0, 0);
    color: #252525;
    font-family: Georgia,serif;
    font-size: 16.5px;
}
h1 {
    font-size: 65px;
    line-height: 0.8;
    margin: 30px 0 30px 4px;
}

h3 {
    background: none repeat scroll 0 0 rgba(112, 128, 144, 0.7);
    border-bottom-left-radius: 5px;
    color: white;
    font-size: 19px;
    font-weight: lighter;
    letter-spacing: 1.25px;
    margin: 15px 0;
    padding: 10px;
}

.reverse {
    background: none repeat scroll 0 0 white;
    border-bottom-left-radius: 5px;
    color: rgba(112, 128, 144, 0.8);
    font-size: 19px;
    font-weight: lighter;
    letter-spacing: 1.25px;
    margin: 15px 0;
    padding: 10px;
}

h4 {
    font-size: 32px;
    line-height: 0.8;
    margin: 40px 0 0 4px;
}
p {
    color: #3b3b3b;
    line-height: 25px;
    margin: 0;
    padding: 10px 20px 0 7px;
}
a {
    color: #0066cc;
    text-decoration: none;
}

.whitebox {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    width: 30%;
    height: 100px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.this {
  background: none repeat scroll 0 0 rgba(112, 128, 144, 1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
    margin: 0;
}

.social-media ul li {
    float: left;
    padding-top: 12px;
}

#bio {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.9);
    border-bottom-right-radius: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 5px 0 20px 20px;
    width: 385px;
}

.experience {
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #dbdbdb;
    min-height: 400px;
    padding: 20px 20px;
}

.skills {
  background-color: rgba(240, 240, 255, 0.9);
  min-height: 400px;
  padding: 20px 20px;

}

.projects {
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #dbdbdb;
    min-height: 400px;
    padding: 20px 20px;
}

.contact {
    background-color: rgba(55, 55, 55, 0.9);
    border-bottom: 1px solid #dbdbdb;
    min-height: 100px;
    padding: 20px 20px;
}

.contact hr {
  border-color: #fff;
}

.experience h2 {
    color: #393c3d;
    font-size: 24px;
}

.skills h2 {
    color: #393c3d;
    font-size: 24px;
}

.projects h2 {
    color: #393c3d;
    font-size: 24px;
}

.contact h2 {
    color: white;
    font-size: 24px;
}

.skills li {
  font-size: 12px;
  margin-left: 40px;
}

.contacts {
  color: white;
  text-align: center;
}

.contacts a:link {
    text-decoration: none;
    color: white;
}

.contacts a:visited {
    text-decoration: none;
    color: white;
}

.contacts a:hover {
    text-decoration: underline;
}

.contacts a:active {
    text-decoration: underline;
}


/* bubble chart styles here */

a, a:visited, a:active {
  color: #444;
}

.container {
  max-width: 900px;
  margin: auto;
}

#toolbar {
  display: flex;
  justify-content: center;
}

.item {
  flex-grow: 1;
}

.button {
  min-width: 130px;
  padding: 4px 5px;
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.7);
}

.button.active {
  background: rgba(112, 128, 144, 0.7);
  color: #fff;
  opacity: 1;
}


#vis {
  width: 800px;
  height: 600px;
  clear: both;
  margin-bottom: 10px;
}

#toolbar {
  margin-top: 10px;
}

.tooltip {
	position: absolute;
	top: 100px;
	left: 100px;
  -moz-border-radius:5px;
	border-radius: 5px;
  border: 2px solid #000;
  background: #fff;
	opacity: .9;
  color: black;
	padding: 10px;
	width: 300px;
	font-size: 12px;
	z-index: 10;
}

.tooltip .title {
	font-size: 13px;
}

.tooltip .name {
  font-weight:bold;
}
