@charset "UTF-8";
/* 
    DEFAULT.SCSS: Main file; loads other partials
*/
/* 
	SASS.SCSS 
*/
/* grids */
/* font */
/* colours */
/* breakpoints? */
/* transitions: ... allows multiple attributes seperated with a comma */
/* transforms: ... allows multiple attributes seperated with a comma */
/* transform-origin: ... allows multiple attributes seperated with a comma */
/* fitler */
/* animations */
/*
@include keyframes(fadein) {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@include animation('fadein 5s 3');
*/
/*
@mixin bp-large {
  @media only screen and (min-width: 1180px) {
    @content;
  }
}

@mixin bp-medium {
  @media only screen and (max-width: 40px) {
    @content;
  }
}
*/
/* 
	RESET.SCSS 
*/
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/* Make sure videos and embeds fit their containers */
embed, iframe, object {
  max-width: 100%; }

/* reset margin and padding */
* {
  margin: 0;
  padding: 0; }

:focus {
  outline: none; }

html {
  -webkit-text-size-adjust: 100%;
  /* for smartphones */
  -ms-text-size-adjust: 100%; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

input[type=text],
input[type=submit] {
  -webkit-appearance: none;
  /* for smartphone submit buttons */ }

img {
  border: none;
  vertical-align: bottom; }

blockquote,
q {
  quotes: "„" "“" "‚" "‘"; }

blockquote:before,
q:before {
  content: open-quote; }

blockquote:after,
q:after {
  content: close-quote; }

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

sup, sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em; }

sub {
  top: 0.4em; }

/* 
	TYPO.SCSS 
*/
/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/open-sans-v15-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("/fonts/open-sans-v15-latin-regular.eot?#iefix") format("embedded-opentype"), url("/fonts/open-sans-v15-latin-regular.woff2") format("woff2"), url("/fonts/open-sans-v15-latin-regular.woff") format("woff"), url("/fonts/open-sans-v15-latin-regular.ttf") format("truetype"), url("/fonts/open-sans-v15-latin-regular.svg#OpenSans") format("svg");
  /* Legacy iOS */ }
/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/open-sans-v15-latin-600.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"), url("/fonts/open-sans-v15-latin-600.eot?#iefix") format("embedded-opentype"), url("/fonts/open-sans-v15-latin-600.woff2") format("woff2"), url("/fonts/open-sans-v15-latin-600.woff") format("woff"), url("/fonts/open-sans-v15-latin-600.ttf") format("truetype"), url("/fonts/open-sans-v15-latin-600.svg#OpenSans") format("svg");
  /* Legacy iOS */ }
/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/open-sans-v15-latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("/fonts/open-sans-v15-latin-700.eot?#iefix") format("embedded-opentype"), url("/fonts/open-sans-v15-latin-700.woff2") format("woff2"), url("/fonts/open-sans-v15-latin-700.woff") format("woff"), url("/fonts/open-sans-v15-latin-700.ttf") format("truetype"), url("/fonts/open-sans-v15-latin-700.svg#OpenSans") format("svg");
  /* Legacy iOS */ }
/* 
	JIVE.SCSS 
*/
/* box-sizing */
input,
textarea,
.jive-container,
.jive-container-fluid {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

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

.clearfix:after {
  clear: both; }

/* container default */
.jive-container {
  position: relative;
  max-width: 1180px;
  margin: auto;
  padding: 0 25px; }

.jive-grid-col .jive-container {
  width: 100%;
  padding: 0; }

/* container full (fluid) */
.jive-container-fluid {
  position: relative; }

/* colours */
.bg-white {
  background-color: #fff; }

.bg-black {
  background-color: #000; }

/* parallax */
.bg-parallax {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat; }

/* Grid */
.jive-grid-row {
  margin: 0 -25px; }

.jive-grid-col {
  margin: 0 25px;
  float: left;
  position: relative; }

.jive-grid-last-col {
  float: right;
  margin-left: 0;
  clear: right; }

.jive-grid-one-half {
  width: calc(50% - 50px); }

.jive-grid-one-third {
  width: calc(33.3% - 50px); }

.jive-grid-two-third {
  width: calc(66.6% - 50px); }

.jive-grid-one-fourth {
  width: calc(25% - 50px); }

.jive-grid-three-fourth {
  width: calc(75% - 50px); }

.jive-grid-one-fifth {
  width: calc(20% - 50px); }

.jive-grid-two-fifth {
  width: calc(40% - 50px); }

.jive-grid-three-fifth {
  width: calc(60% - 50px); }

.jive-grid-four-fifth {
  width: calc(80% - 50px); }

.jive-grid-one-sixth {
  width: calc(16.6% - 50px); }

.jive-grid-five-sixth {
  width: calc(83.3% - 50px); }

/* CE: HR */
.jive-ce-hr hr {
  border: none;
  height: 1px;
  background: #ccc; }

.jive-ce-hr.invers hr {
  background: #fff; }

/* CE: IMAGE */
.jive-ce-image {
  position: relative; }

.jive-ce-image img {
  max-width: 100%;
  height: auto;
  position: relative;
  left: 0;
  top: 0; }
  #emotion .jive-ce-image img {
    width: 100%;
    max-width: none; }

/*.jive-ce-image.align-center { overflow:hidden; }
.jive-ce-image.align-center img { left:50%; margin-left:-100%; max-width:none; }
.jive-ce-image.clip-circle img { border-radius:50%;  }*/
/* CE: SPACER */
.jive-space-1 {
  height: 1px; }

.jive-space-2 {
  height: 2px; }

.jive-space-3 {
  height: 3px; }

.jive-space-4 {
  height: 4px; }

.jive-space-5 {
  height: 5px; }

.jive-space-6 {
  height: 6px; }

.jive-space-7 {
  height: 7px; }

.jive-space-8 {
  height: 8px; }

.jive-space-9 {
  height: 9px; }

.jive-space-10 {
  height: 10px; }

.jive-space-11 {
  height: 11px; }

.jive-space-12 {
  height: 12px; }

.jive-space-13 {
  height: 13px; }

.jive-space-14 {
  height: 14px; }

.jive-space-15 {
  height: 15px; }

.jive-space-16 {
  height: 16px; }

.jive-space-17 {
  height: 17px; }

.jive-space-18 {
  height: 18px; }

.jive-space-19 {
  height: 19px; }

.jive-space-20 {
  height: 20px; }

.jive-space-21 {
  height: 21px; }

.jive-space-22 {
  height: 22px; }

.jive-space-23 {
  height: 23px; }

.jive-space-24 {
  height: 24px; }

.jive-space-25 {
  height: 25px; }

.jive-space-26 {
  height: 26px; }

.jive-space-27 {
  height: 27px; }

.jive-space-28 {
  height: 28px; }

.jive-space-29 {
  height: 29px; }

.jive-space-30 {
  height: 30px; }

.jive-space-31 {
  height: 31px; }

.jive-space-32 {
  height: 32px; }

.jive-space-33 {
  height: 33px; }

.jive-space-34 {
  height: 34px; }

.jive-space-35 {
  height: 35px; }

.jive-space-36 {
  height: 36px; }

.jive-space-37 {
  height: 37px; }

.jive-space-38 {
  height: 38px; }

.jive-space-39 {
  height: 39px; }

.jive-space-40 {
  height: 40px; }

.jive-space-41 {
  height: 41px; }

.jive-space-42 {
  height: 42px; }

.jive-space-43 {
  height: 43px; }

.jive-space-44 {
  height: 44px; }

.jive-space-45 {
  height: 45px; }

.jive-space-46 {
  height: 46px; }

.jive-space-47 {
  height: 47px; }

.jive-space-48 {
  height: 48px; }

.jive-space-49 {
  height: 49px; }

.jive-space-50 {
  height: 50px; }

.jive-space-51 {
  height: 51px; }

.jive-space-52 {
  height: 52px; }

.jive-space-53 {
  height: 53px; }

.jive-space-54 {
  height: 54px; }

.jive-space-55 {
  height: 55px; }

.jive-space-56 {
  height: 56px; }

.jive-space-57 {
  height: 57px; }

.jive-space-58 {
  height: 58px; }

.jive-space-59 {
  height: 59px; }

.jive-space-60 {
  height: 60px; }

.jive-space-61 {
  height: 61px; }

.jive-space-62 {
  height: 62px; }

.jive-space-63 {
  height: 63px; }

.jive-space-64 {
  height: 64px; }

.jive-space-65 {
  height: 65px; }

.jive-space-66 {
  height: 66px; }

.jive-space-67 {
  height: 67px; }

.jive-space-68 {
  height: 68px; }

.jive-space-69 {
  height: 69px; }

.jive-space-70 {
  height: 70px; }

.jive-space-71 {
  height: 71px; }

.jive-space-72 {
  height: 72px; }

.jive-space-73 {
  height: 73px; }

.jive-space-74 {
  height: 74px; }

.jive-space-75 {
  height: 75px; }

.jive-space-76 {
  height: 76px; }

.jive-space-77 {
  height: 77px; }

.jive-space-78 {
  height: 78px; }

.jive-space-79 {
  height: 79px; }

.jive-space-80 {
  height: 80px; }

.jive-space-81 {
  height: 81px; }

.jive-space-82 {
  height: 82px; }

.jive-space-83 {
  height: 83px; }

.jive-space-84 {
  height: 84px; }

.jive-space-85 {
  height: 85px; }

.jive-space-86 {
  height: 86px; }

.jive-space-87 {
  height: 87px; }

.jive-space-88 {
  height: 88px; }

.jive-space-89 {
  height: 89px; }

.jive-space-90 {
  height: 90px; }

.jive-space-91 {
  height: 91px; }

.jive-space-92 {
  height: 92px; }

.jive-space-93 {
  height: 93px; }

.jive-space-94 {
  height: 94px; }

.jive-space-95 {
  height: 95px; }

.jive-space-96 {
  height: 96px; }

.jive-space-97 {
  height: 97px; }

.jive-space-98 {
  height: 98px; }

.jive-space-99 {
  height: 99px; }

.jive-space-100 {
  height: 100px; }

/* CE: TABS */
.jive-ce-tabs-nav {
  background: #ddddd9;
  width: 25%;
  float: left;
  display: block;
  cursor: pointer;
  border-right: 1px solid #fff;
  -webkit-border-radius: border-box;
  -moz-border-radius: border-box;
  border-radius: border-box;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  -ms-transition: ease 0.4s;
  -o-transition: ease 0.4s;
  transition: ease 0.4s; }

.jive-ce-tabs-nav:last-child {
  border-right: none; }

.jive-ce-tabs-nav:hover {
  background: #ccc; }

.jive-ce-tabs-nav.active {
  background: #f1f1f1; }

.jive-ce-tabs-nav h2 {
  text-align: center;
  text-transform: none;
  margin-top: 10px; }

.jive-ce-tabs-nav h2 a {
  color: #333; }

.jive-ce-tabs-nav h2 > span {
  display: block;
  text-align: center;
  color: #999;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  -ms-transition: ease 0.4s;
  -o-transition: ease 0.4s;
  transition: ease 0.4s; }

.jive-ce-tabs-nav:hover h2 > span,
.jive-ce-tabs-nav.active h2 > span {
  color: #000; }

.jive-ce-tabs-content {
  display: none;
  padding: 20px 0 50px 0; }

.jive-ce-tabs-content.active,
.jive-ce-tabs-content:first-child {
  display: block; }

.jive-ce-tabs-content h4 > span {
  position: absolute;
  top: -.2em;
  left: -.25em;
  color: #000; }

.jive-ce-tabs-content h4 {
  padding-left: 1.75em;
  color: #000;
  margin-top: 1.75em; }

/* CE: ICON */
.jive-ce-icon span {
  font-size: 7em;
  color: #000; }

.jive-ce-icon.variant-1 {
  text-align: center;
  margin-top: 50px; }

.jive-ce-icon.variant-1 span {
  padding: 0px;
  background: #fff; }

.jive-ce-icon.variant-1:before {
  content: '';
  display: block;
  margin: auto;
  border-top: 1px solid #333;
  width: 40%;
  margin-top: 3.5em;
  position: absolute;
  left: 50%;
  margin-left: -20%; }

/* CE: TEASER */
.jive-ce-teaser {
  background: #f1f1f1; }

.teaser-img {
  padding-top: 66%;
  width: 100%;
  overflow: hidden;
  position: relative; }

.teaser-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto; }

.teaser-content {
  padding: 20px 20px 80px 20px;
  min-height: 160px;
  position: relative; }

.teaser-title h3 {
  margin-top: 0; }

.teaser-btn {
  position: absolute;
  bottom: 20px;
  left: 20px; }

.teaser-no-btn .teaser-content {
  padding-bottom: 10px;
  min-height: 190px; }

/* CE: SLIDER */
.slider {
  display: none;
  width: 100%;
  overflow: hidden;
  padding: 110px 0 30px 0;
  position: relative; }

.slider-quote-icon {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  color: #666; }

.slider-quotes {
  margin: 100px 0; }

.slider-quote {
  text-align: center; }

.slider-author {
  text-align: center;
  margin-top: 1.5em; }

.teaser h3 {
  margin-top: 0; }

.jive-ce-image.teaser:after {
  position: absolute;
  top: -5%;
  right: -5%;
  width: 10%;
  height: 110%;
  transform: rotate(5deg);
  background: #fff;
  z-index: 2;
  content: ''; }

/* CE: BANDEROLE */
.jive-ce-banderole {
  background: #000; }

.jive-ce-banderole h2 {
  margin-top: 0; }

.jive-ce-banderole * {
  color: #fff; }

/* BTN */
.btn {
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
  background: #333;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 7px 15px;
  text-align: center;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transition: ease 0.4s;
  -moz-transition: ease 0.4s;
  -ms-transition: ease 0.4s;
  -o-transition: ease 0.4s;
  transition: ease 0.4s;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  vertical-align: middle;
  white-space: nowrap; }

.btn:hover {
  text-decoration: none;
  background: #000;
  color: #fff; }

.btn-lg {
  padding: 15px 20px; }

.btn-primary {
  background: #000;
  color: #fff; }

.btn-primary:hover {
  background: #0f0; }

.btn-secondary {
  background: #0f0;
  color: #fff; }

.btn-secondary:hover {
  background: #000; }

.btn-secondary.cta {
  -webkit-transition: ease 1s;
  -moz-transition: ease 1s;
  -ms-transition: ease 1s;
  -o-transition: ease 1s;
  transition: ease 1s; }

.btn-secondary.cta:hover {
  background: #0f0; }

.btn-ghost {
  border: 2px solid #000;
  color: #000;
  background: transparent; }

.btn-ghost:hover {
  background: #000;
  color: #fff; }

.btn-ghost.btn-invers {
  border-color: #fff;
  color: #fff; }

.btn-ghost.btn-invers:hover {
  background: #fff;
  color: #000; }

.align-right {
  text-align: right; }

.align-center {
  text-align: center; }

.align-left {
  text-align: left; }

.to-uppercase {
  text-transform: uppercase; }

.to-lowercase {
  text-transform: lowercase; }

/* 
	MAIN.SCSS 
*/
html, body {
  font-size: 16px;
  font-size: 1rem;
  /* DO NOT CHANGE - DEFAULT BROWSER SIZE */
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.5em; }

h1, .h1, h2, .h2, h3, .h3, h4, h5, h6 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.2em;
  font-weight: 600; }

h1, .h1 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.2em; }

h2, .h2 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2em; }

h3, .h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2em; }

b, strong {
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }

i, em {
  font-style: italic; }

.btn {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5em; }

.btn-lg {
  font-size: 24px;
  font-size: 1.5rem; }

a {
  text-decoration: none;
  outline: none;
  color: #000; }

@media screen and (min-width: 769px) {
  a:hover {
    text-decoration: underline;
    outline: none; } }
#javahinweis {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 3px;
  background-color: #900; }

#rahmen {
  position: relative; }

/* * * * * * * * * * * * *
 * * *  HEADER
 * * * * * * * * * * * * */
header {
  background: #fff;
  position: relative;
  z-index: 9; }

#logo {
  width: 55vw;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10; }

.head-stoerer {
  position: absolute;
  width: 200px;
  bottom: -100px;
  right: 0; }
  .head-stoerer img {
    width: 100%;
    height: auto; }
  @media all and (max-width: 1200px) {
    .head-stoerer {
      right: 20px; } }
  @media all and (max-width: 768px) {
    .head-stoerer {
      width: 140px;
      bottom: -70px; } }
  @media all and (max-width: 500px) {
    .head-stoerer {
      width: 100px;
      bottom: -50px;
      right: 10px; } }

.scroll2termine {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  display: inline-block;
  padding: .5em 1em;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600; }
  .scroll2termine:hover {
    text-decoration: none; }
  @media all and (max-width: 768px) {
    .scroll2termine {
      display: none; } }

/* * * * * * * * * * * * *
 * * *  EMOTION
 * * * * * * * * * * * * */
#emotion {
  position: relative; }
  #emotion > img {
    width: 100%; }

/* * * * * * * * * * * * *
 * * *  MAIN
 * * * * * * * * * * * * */
main {
  position: relative;
  padding: 0px 0 100px 0; }

p {
  margin: .67em 0; }

em {
  letter-spacing: 0.25px; }

h1, .h1, h2, .h2, h3, .h3, h4, h5, h6 {
  color: #000;
  position: relative;
  text-transform: uppercase; }

h1, .h1 {
  margin: 2em 0 .67em;
  text-align: center; }

h2, .h2 {
  margin: 2.5em 0 2em; }

h3, .h3 {
  margin: 1.34em 0 .34em; }

hr {
  border: none;
  background: transparent;
  border-top: 1px solid #000;
  margin: 1em auto; }

.section {
  position: relative; }

.section-label {
  background-color: #000;
  padding: 15px 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  top: 0;
  z-index: 8; }
  .section-label.l {
    left: 0;
    -webkit-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -o-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: rotate(-90deg) translateX(-100%);
    -moz-transform: rotate(-90deg) translateX(-100%);
    -ms-transform: rotate(-90deg) translateX(-100%);
    -o-transform: rotate(-90deg) translateX(-100%);
    transform: rotate(-90deg) translateX(-100%); }
  .section-label.r {
    right: 0;
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: translateY(-100%) rotate(-90deg);
    -moz-transform: translateY(-100%) rotate(-90deg);
    -ms-transform: translateY(-100%) rotate(-90deg);
    -o-transform: translateY(-100%) rotate(-90deg);
    transform: translateY(-100%) rotate(-90deg); }

.box-fili {
  position: relative;
  margin-bottom: 3em; }
  .box-fili .title {
    background: #000;
    text-align: center;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: .25em;
    margin-bottom: 2em; }
  .box-fili .kontakt {
    padding-left: 2em; }
  .box-fili .stoerer {
    position: absolute;
    width: 130px;
    top: 4em;
    right: 0; }
    .box-fili .stoerer img {
      width: 100%;
      height: auto; }
  @media all and (max-width: 500px) {
    .box-fili .kontakt {
      padding-left: 1em; }
    .box-fili .stoerer {
      width: 100px; } }

.box-banderolen-text {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  padding: 1.5em;
  text-align: center;
  margin-top: 1em; }
  .box-banderolen-text .title {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.2em; }
  .box-banderolen-text .text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2em; }

.impact {
  display: inline-block;
  margin: 3em auto;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  padding: .25em 4em;
  font-weight: 600; }

.text-align--center {
  text-align: center; }

.box-tabs-wrapper .box-tabs__item {
  float: left;
  cursor: pointer;
  border: 1px solid #000;
  border-bottom: none;
  padding: .5em 1em;
  margin-right: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .box-tabs-wrapper .box-tabs__item:hover, .box-tabs-wrapper .box-tabs__item.current {
    background: #000;
    color: #fff; }
.box-tabs-wrapper .box-tabs-content {
  position: relative;
  border: 1px solid #000;
  padding-top: 50%; }
  .box-tabs-wrapper .box-tabs-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; }
  @media all and (max-width: 992px) {
    .box-tabs-wrapper .box-tabs-content {
      padding-top: 100%; } }

.col-half {
  width: 48%;
  float: left; }
  .col-half:last-child {
    float: right; }
  @media all and (max-width: 768px) {
    .col-half {
      float: none;
      width: 100%; }
      .col-half:last-child {
        float: none; } }

/* * * * * * * * * * * * *
 * * *  ASIDE
 * * * * * * * * * * * * */
/* * * * * * * * * * * * *
 * * *  FOOTER
 * * * * * * * * * * * * */
footer {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4em;
  font-weight: 600;
  padding: 30px 0 50px;
  color: #fff;
  background: #000;
  text-transform: uppercase; }
  footer .half {
    width: 50%;
    float: left; }
    footer .half:last-child {
      text-align: right; }
    @media all and (max-width: 768px) {
      footer .half {
        float: none;
        width: 100%; }
        footer .half:last-child {
          text-align: left; } }
  footer a {
    color: #fff;
    margin-right: 20px;
    -webkit-transition: ease 0.2s;
    -moz-transition: ease 0.2s;
    -ms-transition: ease 0.2s;
    -o-transition: ease 0.2s;
    transition: ease 0.2s; }
  @media screen and (min-width: 769px) {
    footer a:hover {
      text-decoration: none;
      color: #fff; } }

/* 
	PLUGINS.SCSS 
*/
/* Slider */
#slider {
  width: 100%;
  overflow: hidden;
  padding: 50px 0; }

#slider li:before {
  display: none; }

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100%; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  height: 100%; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  position: relative; }

.slick-slide img {
  display: inline-block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 80px;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0);
  z-index: 999;
  transition: ease .2s; }

.slick-prev:hover,
.slick-next:hover {
  outline: none;
  background: rgba(0, 0, 0, 0.3); }

.slick-prev {
  left: 0px; }

.slick-next {
  right: 0px; }

.slick-prev:before,
.slick-next:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 30px;
  margin-top: -25px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  opacity: .3; }

.slick-prev:before {
  margin-left: -10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg); }

.slick-next:before {
  margin-left: -25px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.slick-prev:hover:before,
.slick-next:hover:before {
  opacity: 1; }

/* Dots */
.slick-dots {
  position: absolute;
  bottom: 15px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center; }

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer; }

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent; }

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none; }

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1; }

.slick-dots li button:before {
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  content: '';
  opacity: .25;
  border: 3px solid #fff;
  border-radius: 50%; }

.slick-dots li.slick-active button:before {
  opacity: 1;
  background: #fff; }

/* 
	MEDIA.SCSS 
*/
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4em; }

  h2 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4em; }

  h3 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4em; } }

/*# sourceMappingURL=default.css.map */
