@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900);


/* general *********************/

body {
  margin: 0;
  padding: 0;
  font: 1em/1.5 "Source Sans Pro", sans-serif;
  color: #808080;
  border-color: #e5e5e5;
}

.bg-pattern {
  background: url("../img/cream_pixels_@2X.png");
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus {
  outline-color: #40c050 ;
  outline-width: 10px;
}

p {
  margin: 0;
}

input {
  font-family: "Source Sans Pro", sans-serif;
}

/* header *********************/

header {
  padding-top: 65px;
  border-bottom: 1px #e5e5e5 solid;
}

#navigation {
  position: fixed;
  top: 0;
  margin-top: 0px;
  text-align: center;
  display: table;
  width: 100%;
  box-sizing: border-box;
  background-color: white;
  z-index: 900;
}

#navigation a {
  letter-spacing: 0.1em;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 300;
  padding: 20px 0;
  width: 25%;
  box-sizing: border-box;
  border-bottom: 1px #d7d7d7 solid;

  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

#navigation a:hover {
  color: white;
}

#navigation a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(48,117,56,0.7);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

#navigation a:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

#navigation a.active{
  border-bottom: 1px #307538 solid;
}

.border-right {
  border-right: 1px #e5e5e5 solid;
}

.logo {
  padding: 100px 0 50px;
}

.logo-koala, .logo-name {
  width: 40%;
  max-width: 400px;
  min-width: 200px;
  display: block;
  margin: 0 auto;
}

.language-choice {
  position: absolute;
  margin-top: 80px;
  border-radius: 0 50px 50px 0 ;
  display: table;
  border: #e5e5e5 solid;
  border-width: 1px 1px 1px 0;
  background: #f0f0f0;
}

.language-choice .switch {
  margin: 7px 20px 7px 20px;
  border-radius: 5px;
  box-sizing: border-box;
  background-color: #dcdcdc;
  box-shadow: 0 1px 0 0px white;
}

.language-choice .switch span {
  display: table-cell;
  padding: 1px 16px;
  color:  #307538;
  text-shadow: 0px 1px 0px white;
  border: 1px #cccccc solid;
  border-bottom-color: transparent;
}

#selected {
  background-color: #307538;
  border-color: #307538;
  text-shadow: 0px 1px 0px black;
  color: white;
  font-weight: 300;
  border-radius: 5px;
}

.language-choice span.right {
  border-radius: 0 5px 5px 0;
  border-left: 0;
}
.language-choice span.left {
  border-radius: 5px 0 0 5px ;
  border-right: 0;
}

.language-choice:hover > .switch span {
  background-color: #cccccc;
}

.language-choice .explenation {
  display: table-cell;
}

/* content *********************/

.centered-content-row {
  padding: 3% 10%;
}

.centered-content-row h1 {
  margin: 0;
  font-size: 1.8em;
  font-weight: 200;
  line-height: 2em;
}

.centered-content-row h1.extra-margin {
  margin-top: 0.83em;
}

.centered-content-row p {
  font-weight: 300;
}

h2 {
  font-size: 1.25em;
  letter-spacing: 0.1em;
  font-weight: 300;
  text-transform: uppercase;
  border-bottom: 1px solid;
  display: inline-block;
  padding: 0 10px 10px;
  margin: 0 0 10px;
}

.content {
  margin: 0.83em auto;
}

.content:not(.projects){
  max-width: 1000px;
}

.bg-one, .bg-tree {
  background-color: #fff;
}

.bg-two {
  background: linear-gradient(rgba(48,117,56,0.4),rgba(48,117,56,0.4)) , #307538 url("../img/Z.jpg") no-repeat center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 100%;
}

.bg-two h2,
.bg-two h1 {
  color: white;
  border-color: white;
}

#content,
#sec-content {
  width: 100%;
}

#sec-content {
  margin-top: 1.5em;
  padding: 1em;
  background-color: #F5F5F5;
  border: 1px #e5e5e5 solid;
  border-radius: 5px;
  text-align: center;
}

.callout, .back-button, input.submit {
  letter-spacing: 0.1em;
  font-weight: 200;
  font-size: 1rem;
  padding: 5px 20px;
  margin-top: 20px;
  display: inline-block;
  border: 1px solid;
  text-transform: uppercase;
  background-color: white;
}

#search input.submit {
  margin: 0;
  float: right;
  border-width: 0 0 0 1px;
  height: 100%;
}

.callout:hover, .callout:focus,
.back-button:hover, .back-button:focus,
input.submit:hover, input.submit:focus{
  background: #eeeeee;
  color: #000000;
  text-decoration: none;
}

.back-button {
  margin-top: 0;
  margin-bottom: 20px;
}

.project {
  display: inline-block;
  margin: 3% auto;
  width: 250px;
  height: 205px;
}

.project a {
  display: block;
}

.project img{
  width: 150px;
  border-radius: 100%;
}

.project h3 {
  letter-spacing: 0.01em;
  font-weight: 400;
  margin: 0 0 -7px;
  padding-top: 1em;
  box-sizing: border-box;
}

.project a:hover > img,
.project a:focus > img{
  border-radius: 0;
}

.project a:hover > h3,
.project a:focus > h3 {
  color: #404040;
}

.blockquote, blockquote {
  background: #F1F1F1;
  padding: 1em 1em 0 1em;
  quotes: "\201C""\201D""\2018""\2019";
  text-align: center;
  margin-bottom: 1em;
}

.blockquote:before, blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  float: left;
  line-height: 20px;
}

.blockquote:after, blockquote:after  {
  color: #ccc;
  content: close-quote;
  font-size: 4em;
  line-height: 0;
  margin-left: 0.25em;
  float: right;
}

.blockquote p, .body blockquote p {
  display: block;
  font-style: italic;
  padding-bottom: 1em;
  margin-bottom: 0;
}

.blockquote + .author {
  text-align: right;
  padding-right: 1em;
}

/* footer ******************/
footer {
  border-top: 1px #e5e5e5 solid;
  box-sizing: border-box;
  margin: 0;
  padding: 5% 10% 0 10%;
  text-align: center;
}

.elephant-group-logo {
  display: block;
  margin-bottom: 15px;
}

.name-logo-small{
  height: 14px;
  margin-right: 5px;
}

.cols p {
  margin: 0;
}

.cols {
  font-weight: 200;
  font-size: 1.25em;
  letter-spacing: 0.05em;
  margin: 1em 0;
}

.cols a:hover {
  background: #eeeeee;
}

.col-1 {
  width: 50%;
  float: left;
  text-align: right;
  padding-right: 2.5%;
  border-right: 1px #e5e5e5 solid;
}

.col-2{
  padding-left: 2.5%;
  width: 50%;
  float: right;
  text-align: left;
}

.copyright {
  font-size: 0.875em;
  font-weight: 200;
  text-align: center;
  margin-top: 5%;
  padding: 7px;
  color: #d0d0d0;
}

.copyright b {
  font-weight: 400;
}

/* transitions ******************/

a, span, .callout, .project img, input.submit {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}

/* Elephant-group ******************/

.elephant-banner {
  width: 100%;
  max-height: 50px;
  overflow: hidden;
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px #e5e5e5 solid;
  position: fixed;
  -webkit-transition: margin 600ms;
  -moz-transition: margin 600ms;
  -o-transition: margin 600ms;
  transition: margin 600ms;
  font-family: Helvetica, sans-serif;
  font-size: 9pt;
  color:#999;
  vertical-align:middle;
  text-decoration: none;
  text-shadow: none;
  line-height: 56px;
}

.elephant1 {
  float:left;
  margin-right: 10px;
}

.elephant-link1 {
  margin-top:9px;
  margin-left:25px;
  margin-right:30px;
  float:left;
}

.elephant2 {
  float:right;
}

.elephant-link2 {
  margin-top:9px;
  margin-right:20px;
  float: right;
  margin-left: 30px
}

.hide-element {
  margin-top: -150px;
}

/* Clearfix ******************/

.group:after,
.clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

.icons {
    display: inline-block;
    float: left;
    width: 64x;
    height: 64px;
}