body {
  position: static;
  /* Location of the image */
  background-image:url(../images/background.jpg);
  
  /* Background image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Background image doesn't tile */
  background-repeat: no-repeat;
  
  /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based
     on the container's size */
  background-size: cover;
  
  /* Set a background color that will be displayed
     while the background image is loading */
  background-color: #464646;
}

div.fixed {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    border: 3px solid #8AC007;
}

#main-menu .nav-bar { list-style:none; margin-top: 40px; }
#main-menu .nav-bar li { display:inline; padding:0 10px; }

#main-menu .nav-bar li a {
  text-decoration: none;
  padding-left: 25px;
  color: black;
  font-family: "OpenSans"
}


.arrow-down {
  display: inline-block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #0b7;
}


nav {
  font-family: 'Raleway', sans-serif;
  padding: 0 2em;
  font-size: 18px;
  text-align:right;
}

.navbar-brand {
  float: left;
  position: absolute;
  font-size: 14px;
  font-style: italic;
  font-family: 'OpenSans';
}

.container-head {
  font-family: 'Raleway', sans-serif;
  padding: 0 2em;
  font-size: 18px;
  text-align:center;
  background:none;
}

.container-head .title {
  font-family: 'Raleway', sans-serif;
  padding: 0 2em;
  font-size: 18px;
  text-align:center;
  float:left;
}

.container {
  float: center;
  font-family: 'Raleway', sans-serif;
  padding: 0 2em;
  font-size: 18px;
  text-align:center;
}

.container-rs {
  font-family: 'Raleway', sans-serif;
  padding: center;
  border-right: 2px;
  font-size: 15px;
  text-align:right;
}



h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3em;
  font-weight: 200;
}

p {
   margin: 1.5em 0;
   color: #888;
 }

.italic { font-style: italic; }
.small { font-size: 0.8em; }


.lightbox {

  display: none;

  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
}

.lightbox img {

  max-width: 90%;
  max-height: 80%;
  margin-top: 5%;
}

.lightbox:target {

  outline: none;

  display: block;
}

.box {
  position:relative;
  color: #0b7;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  text-align: center;
  transition: 0.5s;
  padding: 0 20px;
  cursor: pointer;
  padding: 0 2em;
  -webkit-transition:0.5s;
}

.box:hover {
  color: black;
}

.box::before, .box::after {
  width: 100%;
  height:100%;
  z-index: 3;
  content:'';
  position: absolute;
  top:0;
  left:0;
  box-sizing: border-box;
  -webkit-transform: scale(0);
  transition: 0.5s;
}

.facebook::before {   
  border-left: 0;
  -webkit-transform-origin: 0% 100%;
}

.facebook::after {
  border-top: 0;
  border-right: 0;
  -webkit-transform-origin: 50% 50%;
}


.linkedin::before {
  border-left: 0;
  -webkit-transform-origin: 0% 100%;
}

.linkedin::after {
  border-top: 0;
  border-right: 0;
  -webkit-transform-origin: 50% 50%;
}

.twitter::before {
  border-left: 0;
  -webkit-transform-origin: 0% 100%;
}

.twitter::after {
  border-top: 0;
  border-right: 0;
  -webkit-transform-origin: 50% 50%;
}

.box:hover::after, .box:hover::before {
  -webkit-transform: scale(1);
}


div
{
    transition-property: width;
    transition-duration: 1s;
    transition-timing-function: ease;
    transition-delay: 1s;
    /* Firefox 4 */
    -moz-transition-property: width;
    -moz-transition-duration: 1s;
    -moz-transition-timing-function: ease;
    -moz-transition-delay: 1s;
    /* Safari and Chrome */
    -webkit-transition-property: width;
    -webkit-transition-duration: 1s;
    -webkit-transition-timing-function: ease;
    -webkit-transition-delay: 1s;
}

div
{
    transition: width 1s ease 1s;
    /* Firefox 4 */
    -moz-transition:width 1s ease 1s;
    /* Safari and Chrome */
    -webkit-transition:width 1s ease 1s;
}

.pictures
{
    position: relative;
    float: left;  
    margin: 5px 1%;
    padding: 10px 2% 15px;
    text-align: center;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 5;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
 
    box-shadow: 0 0 3px #ccc;
    -moz-box-shadow: 0 0 3px #ccc;
    -webkit-box-shadow: 0 0 3px #ccc;
 
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
 
    transition:
        background-color 1s,
        box-shadow 1s,
        transform 0.5s;
    -moz-transition:
        background-color 1s,
        -moz-box-shadow 1s,
        -moz-transform 0.5s;
    -webkit-transition:
        background-color 1s,
        -webkit-box-shadow 1s,
        -webkit-transform 0.5s;
}
.pictures:hover
{
    background-color: white;
    z-index: 10;
 
    box-shadow: 0 0 15px #333;
    -moz-box-shadow: 0 0 15px #333;
    -webkit-box-shadow: 0 0 15px #333;
 
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
 
.box-1 { 
  width: 200px; 
  height: 200px;
}
.box-2 {   
  width: 200px; 
  height: 200px;
}

.box-3 {   
  width: 650px; 
  height: 200px;
}


.pictures h3
{
    margin: 5px 10px;
    padding: 5px 10px;
    border-bottom: 0 solid #fff;
    color: #777;
    font-size: 15px;
    font-family: 'Arial Narrow', Arial;
    letter-spacing: 1px;
    text-shadow: 0 1px 1px #ccc;
    border-bottom: 0 solid #fff;
 
    transition:
        color 1s,
        text-shadow 1s,
        border-bottom 1s;
    -moz-transition:
        color 1s,
        text-shadow 1s,
        border-bottom 1s;
    -webkit-transition:
        color 1s,
        text-shadow 1s,
        border-bottom 1s;
}
.pictures:hover h3
{
    color: #333;
    border-bottom: 1px solid #aaa;
    text-shadow: 1px 1px 1px #fff, 2px 2px 1px #888;
}

.pictures .image
{
    margin: 10px;
    opacity: 0.5;
 
    transition: opacity 1s;
    -moz-transition: opacity 1s;
    -webkit-transition: opacity 1.5s;
    -o-transition: opacity 1s;
}
.pictures:hover .image
{
    opacity: 1;
}

.pictures .description, .pictures .description a
{
    color: rgb(153,153,153);
    color: rgba(153,153,153,0);
    text-shadow: 0 0 5px #aaa;
    text-align: left;
    font-size: 14px;
 
    transition:
        text-shadow 0.5s ease 0.5s,
        color 0.5s ease 0.5s,
        outline 0.5s ease 0.5s;
    -moz-transition:
        text-shadow 0.5s ease 0.5s,
        color 0.5s ease 0.5s,
        outline 0.5s ease 0.5s;
    -webkit-transition:
        text-shadow 0.5s ease 0.5s,
        color 0.5s ease 0.5s,
        outline 0.5s ease 0.5s;
}
.pictures:hover .description, .pictures:hover .description a
{
    text-shadow: 0 0 0 #fff;
    color: rgb(100,100,100);
}
/* this will create a nice focus effect on Firefox */
.pictures:hover .description a
{
    outline: 1px dotted #777;
}
#footer{
position:static;
bottom:0;
left:0;
width: 100%;
height:100px;
background: none;
}

#footer {
    display: inline-block;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    height: 60px
}

#footer p {
    color: #2f2203;
    font: 6px Arial, Helvetica, sans-serif;
    margin: 0;
    text-shadow: 0 1px #fff;
    width: 960px;
    text-align: right
}

#footer .pied {
    font-family: Arial, Helvetica, sans-serif;
    width: 80%;
    height: 6px;
    margin: auto
}

#footer .pied p {
    text-align: right;
    color: #000
}

#footer .pied table tr td {
    font-size: 6px;
    color: #000
}

#footer .pied table tr td a {
    text-align: center;
    text-align: right
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

button, input {
    line-height: normal
}

button, select {
    text-transform: none
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled], html input[disabled] {
    cursor: default
}

#contact { padding: 100px 100px; 

}

.info {
  display: flex;
  display: -webkit-flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: space-between;
  -webkit-flex-flow: row wrap;
  -webkit-justify-content: space-between;
  -webkit-align-content: space-between;
  margin: 0 0 50px 0;
}

.info div {
  flex: 0 0 31.5%;
  -webkit-flex: 0 0 31.5%;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;  
}

.info div:first-child,
.info div:last-child {
  border: 0;
}

.info .fa {
  font-size: 36px;
  margin: 0 0 10px 0;
}

.info h3 {
  text-decoration: none;
  color: #a67d4a;
  text-align: center;
  margin: 0 0 15px 0;
}

