/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/*! normalize.css v3.0.0 | HTML5 Display Definitions | MIT License | git.io/normalize */
@import url(http://fonts.googleapis.com/css?family=Lato:400,700,700italic);
@import url(http://fonts.googleapis.com/css?family=Oswald:300,400,700);
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

/*! normalize.css v3.0.0 | Base | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

/*! normalize.css v3.0.0 | Links | MIT License | git.io/normalize */
a {
  background: transparent;
}

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

/*! normalize.css v3.0.0 | Typography | MIT License | git.io/normalize */
abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight:700;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.6em 0 0.9em 0;
}

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;
}

/*! normalize.css v3.0.0 | Embedded Content | MIT License | git.io/normalize */
img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

/*! normalize.css v3.0.0 | Figures | MIT License | git.io/normalize */
figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  color: #f3f3f3;
  margin: 30px 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/*! normalize.css v3.0.0 | Forms | MIT License | git.io/normalize */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

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;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/*! normalize.css v3.0.0 | Tables | MIT License | git.io/normalize */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Perform a value into a percentage value.
 * @param {number} $value - The value which should be converted.
 * @returns {number} $value - The percentage.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column-width().
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-column-gutter().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Alias for j-span().
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-shift().
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * Alias for j-unshift().
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 * Aliases for j-edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Alias for j-center().
 */
/**
 * Uncenter an element.
 */
/**
 * Alias for j-uncenter().
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Alias for j-stack().
 */
/**
 * Unstack an element.
 */
/**
 * Alias for j-unstack().
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Alias for j-align().
 */
/**
 * Apply a clearfix to an element.
 */
/**
 * Alias for j-cf().
 */

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-weight: 400;
}

body {
  font-family: Lato, sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
  height: 100%;
}

a {
  text-decoration: none;
  color: #cccccc;      /*#2176C7*/
}

a.presse {
  text-decoration: none;
  color: #878787;      /*#2176C7*/
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

.clear {
  float: none;
  clear: both;
}

.layout {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.font-white {
  color: #fff;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.darken {
  position: fixed;
  background-color: #000;
  height: 100%;
  width: 100%;
  z-index: 998;
  opacity: 0.7;
  display: none;
}

.nfo-box {
  background-color: white;
  width: 90%;
  margin: 80px 0 40px -45%;
  position: absolute;
  z-index: 999;
  left: 50%;
  display: none;
}
.nfo-box .close {
  font-size: 4rem;
  position: relative;
  top: 2px;
  float: right;
  cursor: pointer;
  line-height: 0;
}
.nfo-box .content {
  padding: 60px 40px;
}
@media (min-width: 1080px) {
  .nfo-box {
    width: 1040px;
    margin: 80px 0 40px -520px;
  }
}

.navi {
  background-color: #f1f1f1;
  padding: 18px 2%;
  text-align: center;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.navi .navigation, .navi .navigation-top {
  list-style-type: none;
  margin: 0;
  text-align: center;
  padding: 0;
  display: none;
}
.navi ul {
  display: none;
}
.navi li {
  margin: 0 6px;
}
.navi li > a {
  color: #333333;
  padding: 2px 10px;
  display: inline-block;
  text-align: center;
}

.navi .navigation-top li > a {
  color: #999999;
  padding: 2px 10px;
  display: inline-block;
  text-align: center;
}

.navi li > a:hover, .navi li > a.active {
  color: #777777;
  padding: 2px 10px;
}
.navi .mobile-navi-btn {
  font-size: 4rem;
  color: #000;
  position: absolute;
  left: 2%;
  top: 16px;
}
.navi .mobile-navi {
  margin: 20px 0 0 0;
  display: none;
}
.navi .mobile-navi a {
  display: block;
  color: #000;
  padding: 10px 10px;
  background-color: #ffffff;
  border: 1px solid #f1f1f1;
  margin-top: -1px;
  position: relative;
}
.navi .mobile-navi a:hover, .navi .mobile-navi a.active {
  background-color: #f1f1f1;
  border-color: #ddd;
  z-index: 2;
}
.navi .login {
	font-family: 'Oswald', sans-serif;
	font-weight:300;
	text-transform:uppercase;
	font-size:16px;
	color:#777777;
  display: inline-block;
  float: right;
  position: absolute;
  right: 2%;
  top: 16px;
  opacity: 1;
}
.navi .login a.mobile {
  font-size: 4rem;
  color: #000;
}
.navi .login a.desktop {
  border: 1px solid #989898;
  background-color: transparent;
  color: #777777;
  padding: 6px 22px;
  text-transform: uppercase;
  display: none;
}



.sub-navi {
  background-color: #f7f7f7;
  border-bottom: 1px #efefef;
  padding: 18px 2%;
  text-align: center;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.sub-navi .navigation {
  list-style-type: none;
  margin: 0;
  text-align: center;
  padding: 0;
  display: none;
}
.sub-navi ul {
  display: none;
}
.sub-navi li {
  margin: 0 6px;
  list-style-type: none;
  text-transform: uppercase;
}
.sub-navi li > a {
  color: #333333;
  padding: 2px 10px;
  display: inline-block;
  text-align: center;
  letter-spacing: 1px;
}
.subnavi li > a:hover, .sub-navi li > a.active {
  color: #777777;
  padding: 2px 10px;
}
.sub-navi .mobile-navi-btn {
  font-size: 4rem;
  color: #000;
  position: absolute;
  left: 2%;
  top: 16px;
}
.sub-navi .mobile-navi {
  margin: 20px 0 0 0;
  display: none;
}
.sub-navi .mobile-navi a {
  display: block;
  color: #000;
  padding: 10px 10px;
  background-color: #ffffff;
  border: 1px solid #f1f1f1;
  margin-top: -1px;
  position: relative;
}
.sub-navi .mobile-navi a:hover, .sub-navi .mobile-navi a.active {
  background-color: #f1f1f1;
  border-color: #ddd;
  z-index: 2;
}
.sub-navi .login a.mobile {
  font-size: 4rem;
  color: #000;
}
.sub-navi .login a.desktop {
  border: 1px solid #989898;
  background-color: transparent;
  color: #777777;
  padding: 6px 22px;
  text-transform: uppercase;
  display: none;
}

@media (min-width: 1020px) {
  .navi {
    text-align: right;
  }
  .navi .table {
    display: table;
    width: 100%;
  }
  .navi .logo, .navi .navigation, .navi .navigation-top, .navi .login {
    display: table-cell;
    vertical-align: middle;
  }
  .navi .logo {
    text-align: left;
    width: 230px;    /*statt max-width*/
  }
  .navi .navigation, .navi .navigation-top {
  text-align: left;
  /* padding-right: 40px; */
	font-family: 'Oswald', sans-serif;
	font-weight:400;      /*vorher 300*/
	text-transform:uppercase;
	font-size:16px;
	letter-spacing: 1px;
	vertical-align: bottom;
  }
  
  .navi .navigation-top {vertical-align: top;}
  
  .navi .login {
    text-align: right;
    max-width: 100px;
  }
  .navi ul {
    display: inline-block;
    float: left;
  }
  .navi li {
    display: inline-block;
    margin: 0 0;
  }
  .navi .mobile-navi-btn {
    display: none;
  }
  
  
    .sub-navi {
    text-align: center;
  }
  .sub-navi .table {
    display: table;
    width: 100%;
  }
  .sub-navi .logo, .sub-navi .navigation, .sub-navi .login {
    display: table-cell;
    vertical-align: middle;
  }
  .sub-navi .logo {
    text-align: left;
    max-width: 230px;
  }
  .sub-navi .sub-navigation {
    text-align: center;
    padding-right: 40px;
	font-family: 'Oswald', sans-serif;
	font-weight:300;
	text-transform:uppercase;
	font-size:16px;
  }
  .navi .login {
    text-align: right;
    max-width: 100px;
  }
  .sub-navi ul {
    display: inline-block;
    float: left;
  }
  .sub-navi li {
    display: inline-block;
    margin: 0 0;
  }
  .sub-navi .mobile-navi-btn {
    display: none;
  }
}
@media (min-width: 1140px) {
  .navi .login {
    position: relative;
    top: 2px;
    right: 0;
  }
  .navi .login a.mobile {
    display: none;
  }
  .navi .login a.desktop {
    display: inline-block;
  }
}
@media (min-width: 1260px) {
  .navi {
    padding: 18px 6%;
	background-color: #f1f1f1;
  }
  .navi .navigation {
    padding: 0;
  }
  .navi li {
    margin: 0 6px;
  }
  
  .sub-navi {
    padding: 18px 6%;
	background-color: #f7f7f7;
  border-bottom: 1px #efefef;
  }
  .sub-navi .sub-navigation {
    padding: 0;
  }
  .sub-navi li {
    margin: 0 6px;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}
.container h1 {
  font-size: 4.0rem;
  font-weight: 400;
  text-align: center;
  color: #555555;
}
.container h1 img{
	vertical-align:middle;
}


.container .subpage-copy-large
{
	float:left;
	font-weight:normal;
	font-size:30px;
}
@media (min-width: 920px) {
  .container h1 {
	color: #555555;
  }
}
.container .index1 {
  background: white url("../img/img1b.jpg") no-repeat center center;
  background-size: cover;
  height: 681px;
}
.container .index1 .img {
  position: relative;
  top: 100%;
  text-align: center;
}
.container .index1 img {
  position: relative;
  top: -240px;
  max-width: 80%;
}
.container .index2 {
  box-sizing: border-box;
  background-color: white;
  padding: 20px 2%;
  background: white no-repeat scroll right bottom / contain ;
}
.container .index3 {
  box-sizing: border-box;
  background-color: white;
  padding: 20px 2%;
  /*background: white url("../img/img2.jpg") no-repeat scroll right bottom / contain ;*/
}
.container .index2 p,.container .index3 p, .index2 ul {
  color: #878787;
  margin: 0 10% 2rem 10%;
  font-size: 1.8rem;
  text-align:center;
}

.container p.trans,.container p.trans-presse, .index2 ul {
font-size: 1.8rem;
/* margin-left:7rem;*/
color:#878787;
text-align:center;
}

.container p.trans-presse { text-align: left; font-family: Lato, sans-serif; }

.container .index2 h4 {
color: #878787;
margin: 2rem 10%;
text-align: left;
}

a.presse { color: #878787; font-weight: 700;}

a.f_copy  {
font-size: 1rem;
line-height: 1rem;
color:#cccccc;
font-style:italic;
font-weight: normal;
float:right;
}

h2 {
  color: #878787;
  margin: 2rem 0 4rem 0;
  font-size: 3rem;	
  font-weight:700;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:1px;
  text-align:center;
}
@media (min-width: 920px) {
  .container .index2,.container .index3 {
    padding: 20px 0 40px 20px;
    background-size: contain;
	color: #878787;
	text-align:center;
  }
  .container .index2 p,.container .index3 p, .index2 ul {
    margin: 0 20rem;
	color: #878787;
}
}

@media (min-width: 955px) {
  .container .index2 h4 {
color: #878787;
margin: 2rem 20rem;
text-align: left;
}
}

@media (min-width: 1080px) {
  .container .index2,.container .index3 {
    padding: 20px 0 0 0px;
	color: #878787;
	text-align:center;
  }
  .container .index2 p, .index2 ul {
    max-width: 100%;
	color: #878787;
  }
  .container .index2 h4 {
color: #878787;
margin: 2rem 20rem;
text-align: left;
}
}

@media (min-width: 1440px) {
  .container .index2,.container .index3  {
    padding: 8px 0 0 8px;
	color: #878787;
	text-align:center;
  }
}
.container .blank {
  background-color: white;
  padding: 20px 2%;
}
.container .blank p {
  margin: 0 10% 1.4rem 10%;
  font-size: 1.4rem;
}
.container .four-o-four {
  background-color: white;
  padding: 100px 2%;
  text-align: center;
}
.container .four-o-four h1 {
  font-size: 6rem;
  font-weight: 700;
  text-align: center;
}
.container .four-o-four h2 {
  font-size: 4rem;
  font-weight: 300;
}
.container .freedom {
  background: white url("../img/img1c.jpg") no-repeat center center;
  background-size: cover;
  padding: 74px 20% 20px 6%;
}
.container .freedom p {
  font-size: 2rem;
}
@media (min-width: 600px) {
  .container .freedom {
    padding: 74px 40% 20px 6%;
  }
}
.container .kontakt {
  padding: 40px 0 0 40px;
}
.container .kontakt h3 {
  font-size: 1.8rem;
  padding: 22px 0 22px 0;
  border-bottom: 1px solid #9a9a9a;
  margin: 0 0 22px 0;
  max-width: 86%;
}
.container .kontakt input, .container .kontakt textarea {
  width: 100%;
  border: 1px solid #cecece;
  margin: 0 0 32px 0;
}
.container .kontakt textarea {
  height: 74px;
  margin-bottom: 12px;
}
.container .kontakt .btn {
  display: inline-block;
  color: white;
  background-color: #333;
  font-weight: 700;
  padding: 10px 20px;
  font-style: normal;
  margin: 22px 0 40px 0;
}
.container .kontakt .snd {
  cursor: pointer;
  background-color: black;
}
.container .kontakt .k1 {
  display: inline-block;
  width: 33%;
  vertical-align: top;
}
.container .kontakt .k2 {
  display: inline-block;
  width: 53%;
}
.container .kontakt .icon {
  float: left;
  width: 20px;
  height: 20px;
  position: relative;
  left: -30px;
  margin: 0 0 -20px 0;
  top: 2px;
  color: #cecece;
}
.container .kontakt .error {
  border-color: red;
}
@media (min-width: 920px) {
  .container .kontakt {
    height: 740px;
  }
  .container .kontakt h3 {
    max-width: 50%;
  }
  .container .kontakt .k1 {
    width: 20%;
  }
  .container .kontakt .k2 {
    width: 30%;
  }
}
@media (min-width: 1240px) {
  .container .kontakt {
    padding: 40px 0 0 160px;
  }
}

.privateoffice .col {
  height: 260px;
  margin: 4px 0 0 0;
}
.privateoffice .col1 {
  background: transparent url("../img/img4.jpg") no-repeat center center;
  background-size: cover;
}
.privateoffice .col2 {
  margin: 4px 0 8px 0;
}
.privateoffice .col2 .big-icon {
  background-color:#f1f1f1;
  display: block;
  width: 31.9333%;
  height: 49.3%;
  text-align: center;
  float: left;
  margin: 0 .7% 1.2% .7%;
  padding-top: 18px;
}
.privateoffice .col3 {
  background: transparent url("../img/img3.jpg") no-repeat center center;
  background-size: cover;
}
.privateoffice a.col {
  color: #333;
}
.privateoffice a.col:hover {
  color: #000;
}
.privateoffice .txt {
  height: 50%;
  text-align: center;
  vertical-align: middle;
  background-image: url("../img/bg60.png");
  position: relative;
  top: 50%;
  font-size: 1.8rem;
  line-height: 1.4;
  display: table;
  width: 100%;
}
.privateoffice .txt p {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}
@media (min-width: 700px) {
  .privateoffice .col {
    display: block;
    width: 33.3333%;
    float: left;
    height: 260px;
    margin: 4px 0 0 0;
  }
  .privateoffice .col2 {
    margin: 4px 0 0 0;
  }
}

.swiper-container {
  width: 100%;
}

.footer {
  padding: 40px 2%;
}
.footer .icon {
  display: inline-block;
  font-size: 2rem;
  margin: 0 18px 0 0;
}
.footer .copyright {
  font-size: 1.2rem;
  vertical-align: super;
  margin: 0 0 20px 0;
}
.footer .right, .footer .left, .footer .layout .copyright {
  text-align: center;
}
.footer .right a {
  margin-left: 30px;
}
.footer a {
  color: #000;
}
@media (min-width: 700px) {
  .footer .copyright {
    margin: 0;
    display: inline-block;
  }
  .footer .left {
    display: inline-block;
    width: 50%;
    text-align: left;
  }
  .footer .right {
    display: inline-block;
    width: 49%;
    text-align: right;
    font-size: 1.1rem;
    vertical-align: super;
  }
}
@media (min-width: 1260px) {
  .footer {
    padding: 40px 6%;
	background-color: #f1f1f1;
	margin-top: 8rem;
  }
}

@font-face {
  font-family: "social";
  src: url("../fonts/social.eot");
  src: url("../fonts/sociald41d.eot?#iefix") format("embedded-opentype"), url("../fonts/social.woff") format("woff"), url("../fonts/social.ttf") format("truetype"), url("../fonts/social.svg#social") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "social" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "social" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-social-facebook:before {
  content: "a";
}

.icon-social-twitter:before {
  content: "b";
}

.icon-social-google-plus:before {
  content: "c";
}

.icon-social-linkedin:before {
  content: "d";
}

.icon-home:before {
  content: "e";
}

.icon-enter:before {
  content: "f";
}

.icon-list:before {
  content: "g";
}

.icon-cancel-squared:before {
  content: "h";
}

.icon-letter-mail:before {
  content: "i";
}

.icon-torso:before {
  content: "j";
}

.icon-edit-write:before {
  content: "k";
}

/**
 * Swiper 3.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2015, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: April 25, 2015
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-fles-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active {
  pointer-events: auto;
}

/* Cube */
.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-container-cube.swiper-container-vertical .swiper-cube-shadow {
  z-index: 0;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.form-control {
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #555;
    font-size: 14px;
    height: 34px;
    line-height: 1.42857;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 50%;
}



.box {
  width: 20%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.desktop {
  border: 1px solid #989898;
  background-color: transparent;
  color: #777777;
  padding: 6px 22px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.desktop:hover {
  background: #d9d9d9;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 20%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Lato, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #555555;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}

br .none
	{
    margin-bottom: 0;
  }




.grid-new {
  margin-left:-80px;
  font-size: 1.8rem;
  color: #878787;
}  
.grid-new__item {
  float:left;
  padding-left:80px;
}
.one-half {
  width:50%;
}
 @media screen and (max-width:900px) {
    .grid-new { 
        margin-left:0;
    }
   .one-half {
     width:100%;
     padding:0 1em 3em;
    }
}
.grid-new:after {
    content: "";
    display: table;
    clear: both;
}

.privateoffice > a {
  display:block;
  overflow:hidden;
  width:100%;
}

@media screen and (max-width:1500px) {
 .container .index3 {
    height:auto;
  }
}


.container .index2.auto-height {
  height:auto;
  padding:7rem 0 5rem;
}

.container .index2.auto-height p { 
  width:50% !important;
  text-align:center;
  padding-left:1em;
  padding-right:1em;
  margin:auto;
  margin-bottom:3rem;
}

@media screen and (max-width:900px) {
 .container .index2.auto-height p { 
  float:none !important;
  width:100% !important;
 }
}

body.zebra .bg--grey *, .bg--grey {
  background:#f1f1ef;
}
body.zebra .container:after, body.zebra .container .index2:after {
    content: "";
    display: table;
    clear: both;
}