/*--------------------------------------------------------
Resets
--------------------------------------------------------*/
html, body, center, table, tbody, tr, td, #amos_id_v, #spring2017, #homespace {
  height: 100%;
}
/*#spring2017, #spring2017, #spring2017 div, #spring2017 span, #spring2017 applet, #spring2017 object, #spring2017 iframe, #spring2017 h1, #spring2017 h2, #spring2017 h3, #spring2017 h4, #spring2017 h5, #spring2017 h6, #spring2017 p, #spring2017 blockquote, #spring2017 pre, #spring2017 a, #spring2017 abbr, #spring2017 acronym, #spring2017 address, #spring2017 big, #spring2017 cite, #spring2017 code, #spring2017 del, #spring2017 dfn, #spring2017 em, #spring2017 img, #spring2017 ins, #spring2017 kbd, #spring2017 q, #spring2017 s, #spring2017 samp, #spring2017 small, #spring2017 strike, #spring2017 strong, #spring2017 sub, #spring2017 sup, #spring2017 tt, #spring2017 var, #spring2017 b, #spring2017 u, #spring2017 i, #spring2017 center, #spring2017 dl, #spring2017 dt, #spring2017 dd, #spring2017 ol, #spring2017 ul, #spring2017 li, #spring2017 fieldset, #spring2017 form, #spring2017 label, #spring2017 legend, #spring2017 table, #spring2017 caption, #spring2017 tbody, #spring2017 tfoot, #spring2017 thead, #spring2017 tr, #spring2017 th, #spring2017 td, #spring2017 article, #spring2017 aside, #spring2017 canvas, #spring2017 details, #spring2017 embed, #spring2017 figure, #spring2017 figcaption, #spring2017 footer, #spring2017 header, #spring2017 hgroup, #spring2017 menu, #spring2017 nav, #spring2017 output, #spring2017 ruby, #spring2017 section, #spring2017 summary, #spring2017 time, #spring2017 mark, #spring2017 audio, #spring2017 video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
#spring2017 article, #spring2017 aside, #spring2017 details, #spring2017 figcaption, #spring2017 figure, #spring2017 footer, #spring2017 header, #spring2017 hgroup, #spring2017 menu, #spring2017 nav, #spring2017 section {
  display: block;
}
#spring2017{
  line-height: 1;
}
#spring2017 ol, #spring2017 ul {
  list-style: none;
}
#spring2017 blockquote, #spring2017 q {
  quotes: none;
}
#spring2017 blockquote:before, #spring2017 blockquote:after,
#spring2017 q:before, #spring2017 q:after {
  content: '';
  content: none;
}
#spring2017 table {
  border-collapse: collapse;
  border-spacing: 0;
}*/
//how many images we have
$slides: 4;

// how much we want each slide to show
$time_per_slide: 4;

// total time needed for full animation
$total_animation_time: $time_per_slide * $slides;

body{
  background:#000;
}
.box{
  margin:50px auto;
  width:500px;
  /* height:300px; */
  overflow:hidden;
  border-top-color:#856036;
  border-left-color:#5d4426;
  border-bottom-color:#856036;
  border-right-color:#5d4426;
  position:relative;

}
.photo{
  position:absolute;
  animation:round #{$total_animation_time}s infinite;
  opacity:0;

}
@keyframes round{
  25%{
    opacity:1;
  }
  40%{
    opacity:0;
  }
}

@for $index from 1 to $slides + 1{
  img:nth-child(#{$index}){
    animation-delay:#{$total_animation_time - $time_per_slide * $index}s
  }
}

/*--------------------------------------------------------
Commons
--------------------------------------------------------*/
@font-face {
  font-family: 'BebasNeueRegular';
  src: url("../fonts/BebasNeue-webfont.eot");
  src: url("../fonts/BebasNeue-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeue-webfont.woff") format("woff"), url("../fonts/BebasNeue-webfont.ttf") format("truetype"), url("../fonts/BebasNeue-webfont.svg#BebasNeueRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}
#spring2017 {
  /*background: white;*/
  font: 13px 'Open Sans', sans-serif;
  color: #1c1f26;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}
#spring2017 ::-moz-selection {
  background: #000000;
  color: white;
}
#spring2017 ::selection {
  background: #000000;
  color: white;
}
#spring2017 .embed-box {
  position: relative;
  padding-bottom: 56.25%;
  /* 16/9 ratio */
  padding-top: 30px;
  /* IE6 workaround*/
  height: 0;
  overflow: hidden;
}
#spring2017 .embed-box iframe,
#spring2017 .embed-box object,
#spring2017 .embed-box embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#spring2017 img.scaleimg {
  width: 100%;
  height: auto;
}
#spring2017 .hidden {
  display: none;
}
#spring2017 .vertical-text {
  display: table-cell;
  vertical-align: middle;
}
#spring2017 .pattern {
  width: 100%;
  position: absolute;
}

/*Buttons------------------------------------------*/
#spring2017 .button {
  width: auto;
  background: #1c1f26;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  outline: none;
  padding: 11px 20px 11px;
  position: relative;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-transition: background-color 0.15s ease-in-out;
  -moz-transition: background-color 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out;
}
#spring2017 .button:hover {
  background-color: #b0b825;
}
#spring2017 .button:active {
  background-color: #666b26;
}
#spring2017 .button:focus {
  background-color: #b0b825;
}
#spring2017 .button.large {
  font-size: 16px;
  padding: 14px 30px 14px;
}
#spring2017 .button.small {
  font-size: 10px;
  padding: 6px 10px 6px;
}

/*Forms------------------------------------------*/
#spring2017 form {
  margin-bottom: 20px;
}
#spring2017 fieldset {
  margin-bottom: 20px;
}
#spring2017 input, #spring2017 textarea {
  border: 1px solid #ccc;
  padding: 10px 10px;
  outline: none;
  color: #868991;
  margin: 5px 0 0 0;
  width: 100%;
  display: block;
  margin-bottom: 20px;
  background: #fafafa;
  font-size: 13px;
  text-transform: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
#spring2017 textarea {
  min-height: 100px;
}
#spring2017 input[type="text"]:focus,
#spring2017 input[type="password"]:focus,
#spring2017 input[type="email"]:focus,
#spring2017 textarea:focus {
  border: 1px solid #868991;
  color: #1c1f26;
  background: white;
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
#spring2017 input.error {
  border: 1px solid #c60f13;
  background: #f9e7e8;
}
#spring2017 input.error[type="text"]:focus,
#spring2017 input.error[type="password"]:focus,
#spring2017 input.error[type="email"]:focus {
  border: 1px solid #c60f13;
}
#spring2017 legend {
  display: block;
  font-weight: 600;
  font-size: 14px;
}

/*--------------------------------------------------------
Typography
--------------------------------------------------------*/
#spring2017 h1, #spring2017 h2, #spring2017 h3, #spring2017 h4 {
  text-transform: uppercase;
  font-weight: lighter;
}
#spring2017 h1 {
  font-family: 'BebasNeueRegular', sans-serif;
  font-size: 66px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 7px;
}
#spring2017 h1.white {
  color: white;
}
#spring2017 h2 {
  font-family: 'BebasNeueRegular', sans-serif;
  font-size: 44px;
  text-transform: uppercase;
  position: relative;
}
#spring2017 h2.white {
  color: white;
}
#spring2017 h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
}
#spring2017 h3.white {
  color: white;
}
#spring2017 h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
}
#spring2017 p a {
  color: #a5ad25;
  text-decoration: none;
}
#spring2017 p a:hover {
  color: #868991;
  transition: color 0.5s;
  -moz-transition: color 0.5s;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
}

/*--------------------------------------------------------
Navigation
--------------------------------------------------------*/

/*--------------------------------------------------------
Parallax
--------------------------------------------------------*/
#spring2017 #parallax1, #spring2017 #parallax2, #spring2017 #parallax3 {
  width: 100%;
  height: 440px;
  background-color: #ddcdba;
  position: relative;
  overflow: hidden;
}
#spring2017 #parallax1 .vertical-text,
#spring2017 #parallax2 .vertical-text,
#spring2017 #parallax3 .vertical-text,
#spring2017 #parallax1 .pattern,
#spring2017 #parallax2 .pattern,
#spring2017 #parallax3 .pattern {
  height: 440px;
}

/*Parallax1------------------------------------------*/
#spring2017 .bg1 {
  background: url(../images/parallax/banner-girls.jpg) 50% 50% fixed repeat-y;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  background-size: 110%;
}
#spring2017 p.prlx-quote {
  font-family: 'essonnes-headline', serif;
  font-size: 90px;
  line-height: 1;
  margin-bottom: 20px;
  color: white;
  text-align: right;
  text-transform: uppercase;
  z-index: 200;
}
#spring2017 .prlx-author {
  height: 24px;
  background: url(../images/quote.png) left no-repeat;
  width: auto;
  padding-left: 40px;
  font-size: 11px;
  font-weight: 100;
  color: white;
  text-transform: uppercase;
  line-height: 0.9;
  position: relative;
  margin-top: 26px;
  left: 42%;
  z-index: 200;
}

/*Parallax2------------------------------------------*/
#spring2017 .bg2 {
  background: url(../images/parallax/teaser2.jpg) top center fixed repeat-y;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  background-size: 120%;
}
#spring2017 .twitter-author {
  text-transform: uppercase;
  font-family: 'BebasNeueRegular', sans-serif;
  font-size: 24px;
}
#spring2017 .tweet {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  color: white;
  line-height: 1.4;
  margin: 7px 0 12px 0;
}
#spring2017 .twitter-date {
  color: #868991;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
}

/*Parallax3------------------------------------------*/
#spring2017 #parallax3 h2 {
  text-align: center;
  margin-bottom: 20px;
}
#spring2017 .bg3 {
  background: url(../images/parallax/teaser3.jpg) 50% 50% fixed repeat-y;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  background-size: 110%;
}
#spring2017 .clients {
  text-align: center;
}
#spring2017 .clients li {
  display: inline;
  margin: 0 15px 0 15px;
  height: 50px;
  opacity: 1;
}
#spring2017 .clients li:hover {
  opacity: 0.7;
}

/*--------------------------------------------------------
Content
--------------------------------------------------------*/
#spring2017 #about, #spring2017 #culture, #spring2017 #services, #spring2017 #portfolio, #spring2017 #graphic, #spring2017 #video {
  padding-top: 64px;
  padding-bottom: 80px;
  position: relative;
  background: white;
}
#spring2017 .one-text {
  font-size: 20px;
  line-height: 1.5;
}
#spring2017 .description {
  font-size: 12px;
  line-height: 18px;
}
#spring2017 .columns .img-wrp {
  position: relative;
}
#spring2017 .img-wrp img {
  display: block;
}
#spring2017 .overlay-wrp {
  position: absolute;
  top: 0px;
  left: 0px;
  display: none;
  height: 100%;
  width: 100%;
}
#spring2017 .overlay-wrp .overlay {
  opacity: 0.5;
  filter: alpha(opacity=50);
  height: 100%;
  width: 100%;
}
#spring2017 .overlay {
  background: #DAA520;
}

/*--------------------------------------------------------
model1
--------------------------------------------------------*/
#spring2017 #model1 {
  position: relative;
}
#spring2017 .one-text {
  font-size: 20px;
  line-height: 1.5;
}
#spring2017 .description {
  font-size: 12px;
  line-height: 18px;
}
#spring2017 .columns .img-wrp {
  position: relative;
}
#spring2017 .img-wrp img {
  display: block;
}
#spring2017 .overlay-wrp {
  position: absolute;
  top: 0px;
  left: 0px;
  display: none;
  height: 100%;
  width: 100%;
}
#spring2017 .overlay-wrp .overlay {
  opacity: 0.5;
  filter: alpha(opacity=50);
  height: 100%;
  width: 100%;
}
#spring2017 .overlay {
  background: #b0b825;
}

/*--------------------------------------------------------
model2
--------------------------------------------------------*/
#spring2017 #model2 {
  position: relative;
  background: #e9e9e9;
}
#spring2017 .one-text {
  font-size: 20px;
  line-height: 1.5;
}
#spring2017 .description {
  font-size: 12px;
  line-height: 18px;
}
.redhead {
  min-width: 57%;
}
#spring2017 .columns .img-wrp {
  position: relative;
}
#spring2017 .img-wrp img {
  display: block;
}
#spring2017 .overlay-wrp {
  position: absolute;
  top: 0px;
  left: 0px;
  display: none;
  height: 100%;
  width: 100%;
}
#spring2017 .overlay-wrp .overlay {
  opacity: 0.5;
  filter: alpha(opacity=50);
  height: 100%;
  width: 100%;
}
#spring2017 .overlay {
  background: #b0b825;
}

/*--------------------------------------------------------
model3
--------------------------------------------------------*/
#spring2017 #model3 {
  position: relative;
  background: #b1d2d5;
}
#spring2017 .one-text {
  font-size: 20px;
  line-height: 1.5;
}
#spring2017 .description {
  font-size: 12px;
  line-height: 18px;
}
#spring2017 .columns .img-wrp {
  position: relative;
}
#spring2017 .img-wrp img {
  display: block;
}
#spring2017 .overlay-wrp {
  position: absolute;
  top: 0px;
  left: 0px;
  display: none;
  height: 100%;
  width: 100%;
}
#spring2017 .overlay-wrp .overlay {
  opacity: 0.5;
  filter: alpha(opacity=50);
  height: 100%;
  width: 100%;
}
#spring2017 .overlay {
  background: #b0b825;
}

/*--------------------------------------------------------
model4
--------------------------------------------------------*/
#spring2017 #model4 {
  position: relative;
  background: #ecdfcc;
}
#spring2017 .one-text {
  font-size: 20px;
  line-height: 1.5;
}
#spring2017 .description {
  font-size: 12px;
  line-height: 18px;
}
#spring2017 .columns .img-wrp {
  position: relative;
}
#spring2017 .img-wrp img {
  display: block;
}
#spring2017 .overlay-wrp {
  position: absolute;
  top: 0px;
  left: 0px;
  display: none;
  height: 100%;
  width: 100%;
}
#spring2017 .overlay-wrp .overlay {
  opacity: 0.5;
  filter: alpha(opacity=50);
  height: 100%;
  width: 100%;
}
#spring2017 .overlay {
  background: #b0b825;
}

/*--------------------------------------------------------
banners
--------------------------------------------------------*/
#spring2017 #banner1 {
  position: relative;
  background: #ecdfcc;
}

#spring2017 .columns .img-wrp {
  position: relative;
}

#spring2017 .img-wrp img {
  display: block;
}

#spring2017 #banner2 {
  position: relative;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ffffff 34%, #a6d8d9 71%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ffffff 34%, #a6d8d9 71%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ffffff 34%, #a6d8d9 71%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#a6d8d9',GradientType=1 );
  /* IE6-9 */
}

#spring2017 .columns .img-wrp {
  position: relative;
}

#spring2017 .img-wrp img {
  display: block;
}

/*--------------------------------------------------------
hero
--------------------------------------------------------*/
#spring2017 #hero {
  position: relative;
  background: #ecdfcc;
  max-height: 800px;
}

#spring2017 .columns .img-wrp {
  position: relative;
}

#spring2017 .img-wrp img {
  display: block;
}

#spring2017 #hero {
  position: relative;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(left, #ffffff 34%, #ffffff 71%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #ffffff 34%, #ffffff 71%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #ffffff 34%, #ffffff 71%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );
  /* IE6-9 */
}

#spring2017 .columns .img-wrp {
  position: relative;
}

#spring2017 .img-wrp img {
  display: block;
}

/*--------------------------------------------------------
flexbox
--------------------------------------------------------*/
#spring2017 {
  color: #404040;
  font: 100 1em/150% "proxima-nova", Helvetica, sans-serif;
}
#spring2017 .wrapper {
  max-width: 1200px;
  margin: auto;
  /*border: 1px solid red;*/
}
#spring2017 h1, #spring2017 h2, #spring2017 h3, #spring2017 h4 {
  font-weight: 900;
  color: #333;
  margin: 1.5em 0 0.5em;
}
#spring2017 h1 {
  font-size: 2em;
}
#spring2017 h2 {
  font-size: 1.8em;
}
#spring2017 h3 {
  font-size: 1.5em;
}
#spring2017 h4 {
  font-size: 1.3em;
}
#spring2017 strong {
  font-weight: 600;
}
#spring2017 hr {
  border: none;
  height: 1px;
}
#spring2017 .img-placeholder {
  background-image: url("http://placehold.it/200x100/CC99CC/ffffff&text=Feature");
  background-size: cover;
  min-height: 100px;
  /*need to specify min-height and min-width*/
  min-width: 100px;
}

/*Basic Grid Styles*/
#spring2017 .Grid {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
}
#spring2017 .u-textCenter {
  text-align: center;
}
#spring2017 .Grid-cell {
  flex: 1;
}
#spring2017 .Demo {
  margin-bottom: 0em;
  transition: background-color 0.3s ease;
  border-radius: 3px;
}

/* Grid Style Modifiers */
/* Justify per row*/
#spring2017 .Grid--right {
  justify-content: flex-end;
}
#spring2017 .Grid--center {
  justify-content: center;
}

/* Alignment per row */
#spring2017 .Grid--top {
  align-items: flex-start;
}
#spring2017 .Grid--bottom {
  align-items: flex-end;
}
#spring2017 .Grid--center {
  align-items: center;
}

/* Alignment per cell */
#spring2017 .Grid-cell--top {
  align-self: flex-start;
}
#spring2017 .Grid-cell--bottom {
  align-self: flex-end;
}
#spring2017 .Grid-cell--center {
  align-self: center;
}
#spring2017 .left {
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
#spring2017 .right {
  margin-left: auto;
}

/*===========================================*/
/* Base classes for all media - Mobile first */
#spring2017 .Grid--cols-2 > .Grid-cell {
  flex: 0 0 100%;
}
#spring2017 .Grid--cols-3 > .Grid-cell {
  flex: 0 0 100%;
}
#spring2017 .Grid--cols-4 > .Grid-cell {
  flex: 0 0 100%;
}

/* One of -- columns*/
#spring2017 .Grid--1of2 > .Grid-cell,
#spring2017 .Grid--1of4 > .Grid-cell:first-of-type,
#spring2017 .Grid--1of3 > .Grid-cell:first-of-type {
  flex: 0 0 100%;
}
#spring2017 .Grid--1of6 > .Grid-cell:first-of-type {
  flex: 0 0 50%;
}
#spring2017 .Grid--fit > .Grid-cell {
  flex: 1;
}
#spring2017 .Grid--full > .Grid-cell {
  flex: 0 0 100%;
}

/* Tablet (medium) screens */
@media (min-width: 30em) {
  #spring2017 .Grid--1of2 > .Grid-cell {
    flex: 0 0 50%;
  }
  #spring2017 .Grid--1of6 > .Grid-cell:first-of-type {
    flex: 0 0 30%;
  }
  #spring2017 .Grid--1of4 > .Grid-cell:first-of-type {
    flex: 0 0 50%;
  }
  #spring2017 .Grid--1of3 > .Grid-cell:first-of-type {
    flex: 0 0 100%;
  }
}

/* Large screens */
@media (min-width: 48em) {
  #spring2017 .Grid--cols-2 > .Grid-cell,
  #spring2017 .Grid--cols-3 > .Grid-cell,
  #spring2017 .Grid--cols-4 > .Grid-cell,
  #spring2017 .Grid--cols-6 > .Grid-cell,
  #spring2017 .Grid--cols-12 > .Grid-cell {
    flex: 1;
  }
  #spring2017 .Grid--1of2 > .Grid-cell {
    flex: 0 0 50%;
  }
  #spring2017 .Grid--1of6 > .Grid-cell:first-of-type {
    flex: 0 0 16.6666%;
  }
  #spring2017 .Grid--1of4 > .Grid-cell:first-of-type {
    flex: 0 0 25%;
  }
  #spring2017 .Grid--1of3 > .Grid-cell:first-of-type {
    flex: 0 0 30%;
  }
}

/* Contents classes*/
/*#spring2017 .content-1of1::before {
  content: "1";
}
#spring2017 .content-1of2::before {
  content: "1/2";
}
#spring2017 .content-1of3::before {
  content: "1/3";
}
#spring2017 .content-1of4::before {
  content: "1/4";
}
#spring2017 .content-1of6::before {
  content: "1/6";
}
#spring2017 .content-1of12::before {
  content: "1/12";
}*/
#spring2017 .wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  font-weight: bold;
  text-align: center;
}
#spring2017 .wrapper > * {
  flex: 1 100%;
}
#spring2017 .header {
  background: tomato;
}
#spring2017 .main {
  text-align: center;
  background: transparent;
}
#spring2017 .aside-1 {
  background: transparent;
}
#spring2017 .aside-2 {
  background: hotpink;
}
@media all and (min-width: 600px) {
  #spring2017 .aside {
    flex: 1 auto;
  }
}
@media all and (min-width: 800px) {
  #spring2017 .main {
    flex: 3 0px;
  }
  #spring2017 .aside-1 {
    order: 1;
  }
  #spring2017 .main {
    order: 2;
  }
  #spring2017 .aside-2 {
    order: 3;
  }
}

/*homespace------------------------------------------*/





#spring2017 #homespace {
  position: relative;
  overflow: hidden;
  margin: 50px 0px;
  height: 100% !important;
  max-height: 800px;
}
#spring2017 #homespace .box {
  height: 100%;
}
#spring2017 .logo {
  position: relative;
}
#spring2017 .slider-text {
  position: relative;
  overflow: hidden;
  margin-top: 21%;
  min-height: 220px;
}
#spring2017 #slidecaption {
  overflow: hidden;
  float: left;
  color: white;
  font: 92px/0.9 'essonnes-headline', serif;
  margin: 0 20px 0 0;
}
#spring2017 .slidedescription {
  font: 600 30px 'essonnes-headline', serif;
  margin: 13px 0 0 0;
}
#spring2017 .line {
  border-bottom: solid white 1px;
  margin-bottom: 36px;
  opacity: 0;
  filter: alpha(opacity=0);
}

/*About------------------------------------------*/
#spring2017 .box .overlay-content.social-icons {
  text-align: center;
  margin-top: -11px;
  position: absolute;
  top: 20%;
  width: 100%;
  z-index: 10;
}
#spring2017 .box .overlay-content.social-icons img {
  background: white;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  opacity: 0.7;
}
#spring2017 .box .overlay-content.social-icons img:hover {
  opacity: 1;
  transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
}
#spring2017 .column .img-wrp {
  position: relative;
  margin: 52px 0 14px 0;
}
#spring2017 .job-position {
  color: #868991;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  margin: -4px 0px 14px 0px;
}

/*Culrute------------------------------------------*/
#spring2017 .culture-full {
  background: #f0f2f5;
  padding: 60px 0px 60px 0px;
  margin: 53px 0px 0px 0px;
}
#spring2017 #culture h4 {
  margin: 54px 0 10px 0;
}

/*Services------------------------------------------*/
#spring2017 #services h3 {
  text-align: center;
  margin-top: 46px;
}
#spring2017 #services .description {
  text-align: center;
}
#spring2017 .icon {
  width: 200px;
  height: 160px;
  margin: 24px auto 24px auto;
  background: #ffffff center center no-repeat;
}

/*Portfolio------------------------------------------*/
#spring2017 #portfolio h1 {
  margin-bottom: 34px;
}
#spring2017 .project-title {
  font-family: 'texgyreadventorregular', sans-serif;
  font-size: .89em;
  line-height: 1.4em;
  font-weight: bold;
  margin: 0 0 7px;
}
#spring2017 .project-description {
  color: #404040;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 20px 0;
}
#spring2017 .columns .overlay-content.loupe {
  width: 34px;
  height: 34px;
  background: url(../images/loupe.png) 0px 0px no-repeat;
  position: absolute;
  top: 22%;
  margin: -17px 0 0 -17px;
  left: 50%;
  z-index: 10;
}

/*Contact------------------------------------------*/
#spring2017 #contact {
  width: 100%;
  height: auto;
  min-height: 100%;
  position: relative;
  background-color: #1c1f26;
  background: url(../images/contacts.jpg) top center fixed;
  background-size: cover;
}
#spring2017 #contact .pattern {
  height: 100%;
}
#spring2017 .card {
  width: 100%;
  background: url(../images/contact-bg.png);
  text-align: center;
  padding: 45px 0 60px 0;
  margin: 15% 0 100px 0;
}
#spring2017 .adress {
  color: #868991;
  font-size: 22px;
  margin-top: 10px;
}
#spring2017 .lines {
  width: 76%;
  border-top: white 1px solid;
  border-bottom: white 1px solid;
  text-transform: uppercase;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  padding: 31px 0 31px 0;
  margin: 12px auto 40px auto;
  line-height: 1.45;
}
#spring2017 .contact-social-icons {
  text-align: center;
}
#spring2017 .contact-social-icons li {
  display: inline;
  margin: 0 7px 0 7px;
}
#spring2017 .contact-social-icons img {
  background: url(../images/social-icons-bg.png);
  width: 60px;
  height: 60px;
  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
}
#spring2017 .contact-social-icons img:hover {
  background-color: #a5ad25;
  transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -webkit-transition: background-color 0.5s;
  -o-transition: wbackground-color 0.5s;
}
#spring2017 .copyright {
  background: url(../images/footer-gr.png);
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
}
#spring2017 .copyright p {
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  font-size: 11px;
  color: white;
  margin-top: 46px;
}
