@charset "UTF-8";
/*  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.
 */
/**
 * 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.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to 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.
 */
/**
 * 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.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * 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.
 */
/**
 * 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.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * 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.
 */
/**
 *  Alias for 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.
 */
/**
 * Uncenter an element.
 */
/**
 * 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.
 */
/**
 * Unstack an element.
 */
/**
 * 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.
 */
/**
 * Apply a clearfix to an element.
 */
html, body {
  height: 100%;
  -webkit-text-size-adjust: 100%; }

body * {
  box-sizing: border-box; }

body {
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
  text-rendering: optimizeLegibility;
  margin: 0; }

img {
  max-width: 100%;
  height: auto; }
  @media (min-width: 850px) {
    img {
      max-width: 500px;
      width: 100%; } }

.container {
  margin: 0 15px;
  position: relative; }
  @media (min-width: 992px) {
    .container {
      margin: 0 auto;
      max-width: 932px; } }
  .container .container {
    padding-right: 0 !important;
    padding-left: 0 !important; }

html {
  margin-top: 0 !important; }

.green {
  background-color: #8bc662; }

.blue {
  background-color: #66798c; }

.orange {
  background-color: #f39200; }

.dark {
  background-color: #3c3c3c; }

.blue-gradient {
  background-color: #69a6c9;
  background-image: -webkit-linear-gradient(#69a6c9, #4887b9);
  background-image: linear-gradient(#69a6c9, #4887b9); }
  .blue-gradient .slick-loading .slick-list {
    background-color: transparent; }

.orange-gradient {
  background-color: #f39200;
  background-image: -webkit-linear-gradient(#f39200, #f9b233);
  background-image: linear-gradient(#f39200, #f9b233); }
  .orange-gradient .slick-loading .slick-list {
    background-color: transparent; }

.vc_editor .slide:not(:first-child) {
  display: none; }

.single-post .mainHeader,
.tax-topics .mainHeader,
.archive .mainHeader,
.single .mainHeader {
  margin-bottom: 15px; }

@media (max-width: 700px) {
  .blog .col-8.blog-listing {
    margin-bottom: 60px; } }

.blog h1 {
  margin-bottom: 60px; }

.blog h2, .blog h3 {
  color: #3c3c3b; }

.blog h2 {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: 400; }

.blog .breadcrumb {
  margin-bottom: 50px; }

.blog-date {
  font-size: 14px;
  font-weight: 400;
  color: #9d9d9d;
  text-transform: uppercase; }

.blog-headline h1 {
  font-size: 34px;
  line-height: 1.3;
  color: #3c3c3b;
  margin-bottom: 20px; }

.blog p {
  line-height: 1.4;
  letter-spacing: 0.5px; }

.blog .wp-caption-text {
  font-size: 0.8em; }

.blog blockquote {
  padding-left: 20px;
  position: relative; }
  .blog blockquote:before {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    content: "";
    width: 4px;
    float: left;
    background-color: #D8D8D8; }

.blog-aside {
  font-weight: 300; }
  .blog-aside a {
    font-style: normal; }

.blog-more {
  color: #6295BB;
  white-space: nowrap; }

.blog-spacer {
  display: block;
  height: 60px; }

.blog-search {
  margin: 0 0 40px; }
  .blog-search input {
    display: block;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #D7D7D7;
    padding: 10px 10px 10px 0;
    background-image: url(magnifier.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: 97% center; }

.blog-categorySelect select {
  margin: 0 0 40px;
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #D7D7D7;
  padding: 10px;
  border-radius: 0;
  background-color: white;
  background-image: url(select_arrows.svg);
  background-repeat: no-repeat;
  background-size: 14px 20px;
  background-position: 96% center; }

.blog-signup {
  text-align: right; }
  .blog-signup p {
    text-align: left; }
  .blog-signup .email {
    padding: 10px;
    display: block;
    width: 100%;
    border: 1px solid #D7D7D7;
    margin-bottom: 10px; }
  .blog-signup .button, .blog-signup .signup input[type="submit"], .signup .blog-signup input[type="submit"] {
    padding: 5px 10px;
    background-color: #8bc662;
    text-transform: uppercase;
    color: white; }

.blog--index .blog-item-image {
  position: relative; }
  .blog--index .blog-item-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block; }

.blog--index .blog-item-title {
  height: auto;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px; }
  .blog--index .blog-item-title h2 {
    color: white;
    font-size: 32px;
    margin: 0; }
  .blog--index .blog-item-title--small {
    padding: 10px; }
    .blog--index .blog-item-title--small h2 {
      font-size: 20px;
      font-weight: 400; }

.blog--index .blog-date {
  font-size: 16px;
  margin-bottom: 6px; }

.blog--index img {
  margin-bottom: 15px; }

.blog--index article {
  margin-bottom: 20px; }
  .blog--index article a {
    font-style: normal; }

.blog--index .blog-listing article:after {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  background-color: #D8D8D8;
  margin: 30px 0; }

.blog--index .blog-listing article:last-child:after {
  display: none; }

.blog-date {
  display: block;
  margin-bottom: 20px;
  font-style: normal; }

.blogHeader {
  border-bottom: 1px solid #D7D7D7;
  padding-bottom: 10px;
  margin-bottom: 30px; }
  .blogHeader .blogHeader-headline {
    font-size: 26px;
    line-height: 1;
    font-weight: 300;
    margin: 0; }
  .blogHeader .blogHeader-all {
    float: right; }

.breadcrumb a {
  font-size: 12px;
  line-height: 1;
  font-style: normal;
  text-transform: uppercase; }
  .breadcrumb a:after {
    display: inline-block;
    content: ">";
    margin: 0 1px 0 5px; }
  .breadcrumb a:last-child {
    color: grey; }
    .breadcrumb a:last-child:after {
      display: none; }

.socialFooter {
  border-bottom: 1px solid #D7D7D7;
  margin-bottom: 30px; }
  .socialFooter img {
    width: auto; }
  .socialFooter a {
    vertical-align: top; }
  .socialFooter h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: grey; }
  .socialFooter-icon {
    margin-right: 10px; }
  .socialFooter-tags {
    font-size: 12px; }
    .socialFooter-tags a:after {
      content: ", "; }
    .socialFooter-tags a:last-child:after {
      display: none; }

section.section {
  margin-bottom: 60px; }

.authorFooter {
  margin-bottom: 60px; }
  .authorFooter img {
    border-radius: 50%;
    max-width: 126px; }
  .authorFooter h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: grey; }
  .authorFooter h3 {
    font-size: 18px;
    font-weight: 500; }
  .authorFooter p {
    color: #9D9D9C; }

.tagCloud {
  margin-bottom: 40px; }
  .tagCloud-link--1 {
    font-size: 1em; }
  .tagCloud-link--2 {
    font-size: 1.3em;
    line-height: 1em; }
  .tagCloud-link--3 {
    font-size: 1.6em;
    line-height: 1.1em; }
  .tagCloud-link--4 {
    font-size: 1.7em;
    line-height: 1.2em; }
  .tagCloud-link {
    margin: 3px; }
  .tagCloud a:hover {
    text-decoration: underline; }

@font-face {
  font-family: "Klavika";
  src: url("klavika-light.eot");
  src: url("klavika-light.eot?#iefix") format("embedded-opentype"), url("klavika-light.woff") format("woff"), url("klavika-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: "Klavika";
  src: url("klavika-lightitalic.eot");
  src: url("klavika-lightitalic.eot?#iefix") format("embedded-opentype"), url("klavika-lightitalic.woff") format("woff"), url("klavika-lightitalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: "Klavika";
  src: url("klavika-regular.eot");
  src: url("klavika-regular.eot?#iefix") format("embedded-opentype"), url("klavika-regular.woff") format("woff"), url("klavika-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Klavika";
  src: url("klavika-regularitalic.eot");
  src: url("klavika-regularitalic.eot?#iefix") format("embedded-opentype"), url("klavika-regularitalic.woff") format("woff"), url("klavika-regularitalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic; }

@font-face {
  font-family: "Klavika";
  src: url("klavika-medium.eot");
  src: url("klavika-medium.eot?#iefix") format("embedded-opentype"), url("klavika-medium.woff") format("woff"), url("klavika-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: "Klavika";
  src: url("klavika-mediumitalic.eot");
  src: url("klavika-mediumitalic.eot?#iefix") format("embedded-opentype"), url("klavika-mediumitalic.woff") format("woff"), url("klavika-mediumitalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic; }

.row {
  *zoom: 1; }
  .row:before, .row:after {
    content: '';
    display: table; }
  .row:after {
    clear: both; }

@media (min-width: 700px) {
  .col-1 {
    float: left;
    clear: none;
    width: 5.58333%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-1:last-child {
      margin-right: 0%; }
  .col-2 {
    float: left;
    clear: none;
    width: 14.16667%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-2:last-child {
      margin-right: 0%; }
  .col-3 {
    float: left;
    clear: none;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-3:last-child {
      margin-right: 0%; }
  .col-4 {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-4:last-child {
      margin-right: 0%; }
  .col-5 {
    float: left;
    clear: none;
    width: 39.91667%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-5:last-child {
      margin-right: 0%; }
  .col-6 {
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-6:last-child {
      margin-right: 0%; }
  .col-7 {
    float: left;
    clear: none;
    width: 57.08333%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-7:last-child {
      margin-right: 0%; }
  .col-8 {
    float: left;
    clear: none;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-8:last-child {
      margin-right: 0%; }
  .col-9 {
    float: left;
    clear: none;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-9:last-child {
      margin-right: 0%; }
  .col-10 {
    float: left;
    clear: none;
    width: 82.83333%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-10:last-child {
      margin-right: 0%; }
  .col-11 {
    float: left;
    clear: none;
    width: 91.41667%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-11:last-child {
      margin-right: 0%; }
  .col-12 {
    float: left;
    clear: none;
    width: 100%;
    margin-left: 0%;
    margin-right: 3%; }
    .col-12:last-child {
      margin-right: 0%; } }

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

.clearfix:after {
  clear: both; }

.margin-small {
  margin: 20px 0;
  overflow: hidden;
  clear: both;
  display: block; }
  @media (min-width: 850px) {
    .margin-small {
      margin: 30px 0; } }

.margin-big {
  margin: 40px 0;
  overflow: hidden;
  clear: both;
  display: block; }
  @media (min-width: 850px) {
    .margin-big {
      margin: 60px 0; } }

p:empty {
  font-size: 0 !important;
  line-height: 0 !important;
  height: 0 !important;
  display: none !important;
  margin: 0 !important;
  padding: 0 !important; }

.alignleft {
  float: left;
  width: auto;
  max-width: 500px;
  margin: 0 20px 20px 0; }

.alignright {
  float: right;
  width: auto;
  max-width: 500px;
  margin: 0 0 20px 20px; }

@media all and (max-width: 849px) {
  .image-mobile {
    text-align: center;
    padding-top: 40px; }
    .image-mobile img {
      max-width: 210px; } }

.wp-caption {
  width: 100% !important; }

h1, h2, h3 {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal; }

h1 {
  font-size: 44px;
  line-height: 47px;
  color: #5a8fb7;
  margin-bottom: 20px; }

h2 {
  font-size: 34px;
  line-height: 40px;
  color: #5a8fb7;
  margin-bottom: 15px; }

h3 {
  font-size: 26px;
  line-height: 30px;
  color: #3c3c3c;
  margin-bottom: 14px; }

h4 {
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #282727;
  margin-bottom: 18px; }

body, p, li, input {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 20px;
  color: #3c3c3c; }

p {
  margin-bottom: 16px; }
  p.large {
    font-size: 20px;
    line-height: 24px; }

figcaption {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 20px;
  color: #3c3c3c; }

ul, ol {
  padding-left: 22px;
  margin-bottom: 16px; }
  ul li a, ol li a {
    color: #5a8fb7; }
  ul li, ol li {
    margin-bottom: 5px; }

ul {
  list-style-type: circle; }

input {
  outline: none; }

small {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 20px; }

.wp-caption-text {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 20px; }

a {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: italic;
  text-decoration: none;
  color: #5a8fb7;
  border: none;
  outline: none; }
  a:active, a:selected, a:visited {
    border: none;
    outline: none; }
  a:hover, a:active, a.is-active {
    color: #538ab4; }

em {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-style: normal;
  color: #5a8fb7; }

blockquote {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 26px;
  line-height: 26px; }

cite {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  line-height: 21px; }
  cite strong {
    font-family: "Klavika", sans-serif;
    weight: 500;
    style: italic; }

label {
  text-transform: uppercase;
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 18px; }

hr {
  margin-bottom: 30px;
  margin-top: 30px; }
  @media (min-width: 850px) {
    hr {
      margin-bottom: 50px;
      margin-top: 50px; } }

strong {
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #3c3c3c; }
  strong a {
    font-family: "Klavika", sans-serif;
    weight: 500;
    style: italic;
    color: #5a8fb7; }

header h1 {
  font-size: 44px;
  line-height: 44px; }

header h2 {
  font-size: 34px;
  line-height: 46px; }

header h3 {
  font-size: 26px;
  line-height: 48px; }

header h4 {
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 24px; }

nav ul > li,
nav ul > li a {
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 16px;
  color: #3c3c3c; }
  nav ul > li ul li, nav ul > li ul li a,
  nav ul > li a ul li,
  nav ul > li a ul li a {
    font-family: "Klavika", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    color: #3c3c3c; }

nav p {
  font-size: 18px;
  line-height: 24px;
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  color: #3c3c3c; }

.nav-subnav a {
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: 16px !important;
  line-height: 16px !important; }

.nav-dropdown a {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
  text-transform: none; }

footer h1 a, footer h1.shortcuts {
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  color: white; }

footer li a:hover, footer li a:active, footer li a.is-active {
  color: #345a77; }

footer h1:hover a, footer h1:hover span {
  color: #345a77; }

footer .first-level li a {
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  color: white;
  text-transform: none; }
  footer .first-level li a:hover {
    color: #345a77; }

footer .second-level li a, footer p,
footer .footer-bottom li a {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 112%;
  color: white;
  text-transform: none; }

footer .footer-bottom li a:hover {
  color: #a2a2a2; }

.slider a,
.carousel a {
  border-radius: 5px;
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: white;
  padding: 7px 7px 5px;
  display: inline-block; }
  .slider a:hover,
  .carousel a:hover {
    color: white; }

.nav-tabs li {
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 18px;
  color: white;
  text-transform: none; }

.tabs-slider strong {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 20px;
  color: #3c3c3c; }

.tabs-slider p {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 20px;
  color: #3c3c3c; }

.tabs-slider a {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  line-height: 20px; }

.pills a {
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 18px; }

.slider h1, .slider h2, .slider p, .banner h1, .banner h2, .banner p {
  text-shadow: #6291b8 0 0 5px; }

.slider h1, .banner h1 {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 34px;
  line-height: 36px;
  color: white;
  letter-spacing: -0.036em; }
  @media (min-width: 600px) {
    .slider h1, .banner h1 {
      font-size: 58px;
      line-height: 58px; } }

.slider h2, .banner h2 {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: white;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -0.036em; }
  @media (min-width: 850px) {
    .slider h2, .banner h2 {
      font-size: 32px;
      line-height: 34px; } }

.slider p, .banner p {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: white; }
  @media (min-width: 850px) {
    .slider p, .banner p {
      font-size: 20px;
      line-height: 22px; } }

.slider em, .banner em {
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: white;
  text-decoration: underline; }

section.articles {
  padding-top: 0;
  overflow: hidden; }
  section.articles article:before, section.articles article:after {
    content: " ";
    display: table; }
  section.articles article:after {
    clear: both; }
  section.articles article:last-of-type {
    margin-bottom: 60px; }
  section.articles article hr {
    margin: 20px 0; }
    @media (min-width: 850px) {
      section.articles article hr {
        margin: 40px 0 10px; } }
  section.articles article h2 {
    padding-top: 0; }
    @media (min-width: 850px) {
      section.articles article h2 {
        padding-top: 30px; } }
  section.articles article a {
    font-family: "Klavika", sans-serif;
    font-weight: 300;
    font-style: italic; }
  section.articles article h3 + p,
  section.articles article h2 + p {
    margin-bottom: 5px; }
  section.articles article figcaption {
    padding-top: 5px; }
  section.articles article .row {
    margin-bottom: 60px;
    margin-top: 60px; }

footer {
  position: relative; }
  footer h1 {
    margin-bottom: 21px;
    font-size: 0;
    line-height: 0; }
    @media (min-width: 850px) {
      footer h1 {
        margin-top: 0;
        margin-bottom: 19px; } }
  footer a {
    display: block; }
  footer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0; }
    footer ul li a {
      margin-bottom: 19px; }
    footer ul.second-level {
      margin-top: -14px; }
      footer ul.second-level li a {
        margin-bottom: 5px; }
      footer ul.second-level li:last-of-type {
        margin-bottom: 19px; }
  footer hr {
    width: 100%;
    display: block;
    border-color: white;
    margin: 27px 0; }
    @media (min-width: 850px) {
      footer hr {
        display: none; } }
    footer hr.smartphone {
      display: inline-block; }
      @media all and (min-width: 568px) {
        footer hr.smartphone {
          display: none; } }
  footer span {
    font-size: 13px;
    cursor: pointer;
    color: white;
    margin-left: 4px;
    padding-bottom: 2px; }
    footer span:after {
      content: "";
      background-image: url("arrow_footer@2x.png");
      background-size: 13px 7px;
      background-repeat: no-repeat;
      display: inline-block;
      width: 13px;
      height: 7px;
      margin-bottom: 1px;
      margin-left: 1px; }
  footer .footer-top {
    padding-top: 30px;
    padding-bottom: 30px; }
    @media (min-width: 850px) {
      footer .footer-top {
        padding-top: 50px;
        padding-bottom: 50px; } }
    footer .footer-top .first-level li {
      display: block; }
      footer .footer-top .first-level li a {
        display: inline-block; }
  footer h1.dropdown-header {
    margin-top: 0;
    display: inline-block; }
    footer h1.dropdown-header a {
      display: inline; }
    footer h1.dropdown-header.highlighted span, footer h1.dropdown-header.highlighted a {
      color: #345a77; }
    footer h1.dropdown-header.highlighted span:after {
      content: "";
      background-image: url("arrow_footer_active@2x.png"); }
    footer h1.dropdown-header.unhighlighted span, footer h1.dropdown-header.unhighlighted a {
      color: white; }
    @media (min-width: 850px) {
      footer h1.dropdown-header.unhighlighted:hover a, footer h1.dropdown-header.unhighlighted:hover span {
        color: #345a77; } }
  footer .dropdown-content a li:last-of-type {
    background-color: blue; }
  footer .dropdown-content ul li {
    margin-bottom: 0; }
  footer #arrow-top {
    background: url("arrow-top@2x.png") no-repeat bottom right;
    background-size: 44px 44px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: none; }
    footer #arrow-top:focus {
      outline: 0; }
    footer #arrow-top a {
      height: 44px; }
  footer .row {
    position: relative; }
    @media all and (min-width: 568px) and (max-width: 849px) {
      footer .row .col-4 {
        width: 50%; } }
    @media all and (min-width: 568px) and (max-width: 849px) {
      footer .row .col-8 {
        width: 45%; } }
    @media all and (min-width: 568px) and (max-width: 849px) {
      footer .row .col-2, footer .row .col-8 {
        margin-right: 0; } }
  footer .footer-bottom {
    padding: 30px 0;
    position: relative; }
    @media (min-width: 850px) {
      footer .footer-bottom {
        padding: 20px 0; } }
    footer .footer-bottom .copyright {
      margin-bottom: 2px; }
    footer .footer-bottom p:last-of-type {
      margin: 0; }
    footer .footer-bottom nav {
      overflow: hidden;
      position: relative;
      bottom: 0;
      right: 0;
      padding-bottom: 35px; }
      @media (min-width: 850px) {
        footer .footer-bottom nav {
          position: absolute;
          padding-bottom: 0; } }
      footer .footer-bottom nav ul {
        overflow: hidden;
        padding-left: 0;
        margin-bottom: 0; }
        footer .footer-bottom nav ul li {
          display: block; }
          @media (min-width: 850px) {
            footer .footer-bottom nav ul li {
              display: inline-block; } }
          footer .footer-bottom nav ul li a {
            display: inline;
            line-height: 120%; }
          @media (min-width: 850px) {
            footer .footer-bottom nav ul li:before {
              content: "|";
              color: white;
              margin: 0 12px;
              display: inline; }
            footer .footer-bottom nav ul li:first-child:before {
              content: "";
              margin: 0; } }

.footer-socialMedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid white;
  margin-top: 15px;
  padding-top: 30px; }
  @media (min-width: 850px) {
    .footer-socialMedia {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      border: 0;
      padding-top: 60px;
      width: 70%;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; } }

.footer-socialMedia-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (min-width: 850px) {
    .footer-socialMedia-item {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  .footer-socialMedia-item-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: white;
    font-style: normal; }
  .footer-socialMedia-item-image {
    height: 40px;
    width: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 20px; }
    @media (min-width: 850px) {
      .footer-socialMedia-item-image {
        margin-right: 0;
        margin-bottom: 10px; } }
  .footer-socialMedia-item-image--facebook {
    background-image: url("footer-facebook.svg"); }
  .footer-socialMedia-item-image--twitter {
    background-image: url("footer-twitter.svg"); }
  .footer-socialMedia-item-image--linkedin {
    background-image: url("footer-linkedin.svg"); }
  .footer-socialMedia-item-image--youtube {
    background-image: url("footer-youtube.svg"); }
  .footer-socialMedia-item-image--blog {
    background-image: url("footer-blog.svg"); }
  .footer-socialMedia-item-image--forum {
    background-image: url("footer-forum.svg"); }
  .footer-socialMedia-item-image--newsroom {
    background-image: url("footer-newsroom.svg"); }
  .footer-socialMedia-item:hover .footer-socialMedia-item-image--facebook {
    background-image: url("footer-facebook-aktiv.svg"); }
  .footer-socialMedia-item:hover .footer-socialMedia-item-image--twitter {
    background-image: url("footer-twitter-aktiv.svg"); }
  .footer-socialMedia-item:hover .footer-socialMedia-item-image--linkedin {
    background-image: url("footer-linkedin-aktiv.svg"); }
  .footer-socialMedia-item:hover .footer-socialMedia-item-image--youtube {
    background-image: url("footer-youtube-aktiv.svg"); }
  .footer-socialMedia-item:hover .footer-socialMedia-item-image--blog {
    background-image: url("footer-blog-aktiv.svg"); }
  .footer-socialMedia-item:hover .footer-socialMedia-item-image--forum {
    background-image: url("footer-forum-aktiv.svg"); }
  .footer-socialMedia-item:hover .footer-socialMedia-item-image--newsroom {
    background-image: url("footer-newsroom-aktiv.svg"); }

a.svg {
  position: relative;
  display: inline-block;
  cursor: pointer; }
  a.svg:after {
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }

.l-landingpage h1 {
  color: #3c3c3c;
  font-size: 40px;
  line-height: 48px; }
  @media (min-width: 850px) {
    .l-landingpage h1 {
      font-size: 70px;
      line-height: 72px; } }

.l-landingpage h2 {
  font-size: 26px;
  line-height: 30px;
  color: #3c3c3c; }
  @media (min-width: 850px) {
    .l-landingpage h2 {
      font-size: 34px;
      line-height: 1.2; } }

.l-landingpage h3 {
  font-size: 24px;
  line-height: 32px;
  color: #3c3c3c;
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 12px; }

.l-landingpage h4 {
  font-size: 26px;
  line-height: 34px;
  color: #3c3c3c;
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 24px; }

.l-landingpage p {
  font-size: 20px;
  line-height: 30px;
  color: #3c3c3c; }

.l-landingpage .wpb_row {
  margin-bottom: 0; }

.l-landingpage-textButton {
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  color: #5a8fb7;
  text-transform: uppercase;
  line-height: 24px;
  display: block;
  cursor: pointer; }
  .l-landingpage-textButton::after {
    content: "";
    display: inline-block;
    height: 16px;
    width: 10px;
    background-image: url("link_arrow_right.svg");
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 10px; }

.l-landingpage-buttonPill--white {
  display: inline-block;
  width: 250px;
  background-color: white;
  border-radius: 40px;
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 45px;
  color: #8bc662;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  margin: 0 0 20px; }
  @media (min-width: 850px) {
    .l-landingpage-buttonPill--white {
      margin: 0 10px 20px; } }
  .l-landingpage-buttonPill--white:hover {
    background-color: #8bc662;
    color: white; }

.l-landingpage-buttonPill--green {
  display: inline-block;
  width: 250px;
  background-color: #8bc662;
  border-radius: 40px;
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 45px;
  color: white;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  margin: 0 0 20px; }
  @media (min-width: 850px) {
    .l-landingpage-buttonPill--green {
      margin: 0 10px 20px; } }
  .l-landingpage-buttonPill--green:hover {
    background-color: white;
    color: #8bc662; }

.l-landingpage-buttonOutline {
  display: inline-block;
  padding: 0px 40px;
  border: 2px solid #09284a;
  border-radius: 40px;
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 53px;
  color: #09284a;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer; }
  .l-landingpage-buttonOutline:hover {
    background-color: #09284a;
    color: white; }

.l-landingpage-news {
  text-align: center; }

.l-landingpage-social-container {
  text-align: center; }

.l-landingpage-social-icons {
  display: inline-block;
  width: 90px;
  padding: 0 auto 20px; }
  @media (min-width: 850px) {
    .l-landingpage-social-icons {
      margin: 0 10px 20px; } }
  .l-landingpage-social-icons img {
    max-width: 55px; }
  .l-landingpage-social-icons .vc_figure-caption {
    margin-top: 15px;
    font-size: 20px;
    font-style: normal; }

.l-landingpage-trial h2 {
  margin-bottom: 20px;
  text-align: center; }

.l-landingpage-trial p {
  text-align: center; }

.l-landingpage-trial a {
  display: block; }

@media (min-width: 850px) {
  .l-landingpage-trial a {
    display: inline-block;
    margin-right: 60px; }
  .l-landingpage-trial a:last-of-type {
    margin-right: 0; } }

.l-landingpage-trial-button {
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  color: #5a8fb7;
  text-transform: uppercase;
  line-height: 48px; }
  .l-landingpage-trial-button::before {
    content: "";
    vertical-align: middle;
    display: inline-block;
    height: 48px;
    width: 28px;
    background-repeat: no-repeat;
    margin-right: 20px; }
  .l-landingpage-trial-button::after {
    content: "";
    display: inline-block;
    height: 16px;
    width: 10px;
    background-image: url("link_arrow_right.svg");
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 10px; }

.l-landingpage-trial-button--windows::before {
  background-image: url("windows_logo.svg");
  background-position: center 30%; }

.l-landingpage-trial-button--mac::before {
  background-image: url("mac_logo.svg");
  background-position: center 10%; }

.l-landingpage-parallax-full {
  text-align: center;
  overflow: hidden; }
  .l-landingpage-parallax-full h1, .l-landingpage-parallax-full h2 {
    color: white;
    text-align: center; }
  .l-landingpage-parallax-full h2 {
    margin-bottom: 50px; }
  @media (min-width: 850px) {
    .l-landingpage-parallax-full a {
      display: inline-block;
      margin-right: 30px; }
    .l-landingpage-parallax-full a:last-of-type {
      margin-right: 0; } }

.l-landingpage-imageOverlay::before {
  content: "";
  display: block;
  width: 140%;
  height: 160%;
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 46%, transparent 67%, transparent 100%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 46%, transparent 67%, transparent 100%);
  position: absolute;
  top: -30%;
  left: -20%;
  z-index: -1; }

@media (min-width: 850px) {
  .l-landingpage-imageOverlay::before {
    display: none; } }

.l-landingpage-customers figcaption {
  font-size: 16px;
  line-height: 1.2;
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #5a8fb7; }

.l-landingpage-fallbackIntro {
  margin-top: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media (min-width: 1200px) {
    .l-landingpage-fallbackIntro {
      display: none !important; } }
  .l-landingpage-fallbackIntro h1 {
    color: white;
    font-size: 40px;
    line-height: 48px;
    text-transform: uppercase; }
  @media (min-width: 850px) {
    .l-landingpage-fallbackIntro h1 {
      font-size: 56px;
      line-height: 60px; } }

.l-landingpage-fallbackIntro-overlayDarken::before {
  content: "";
  display: block;
  width: 160%;
  height: 200%;
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 46%, transparent 67%, transparent 100%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 46%, transparent 67%, transparent 100%);
  position: absolute;
  top: -50%;
  left: -40%;
  z-index: -1; }

.touch {
  -webkit-tap-highlight-color: transparent; }
  .touch .slick-prev,
  .touch .slick-next,
  .touch .slidesjs-navigation,
  .touch .arrow-navigation {
    display: none !important; }
  .touch .faq-menu ul li {
    margin-bottom: 10px; }
  .touch .language-dropdown.disabled ul {
    display: none; }
  .touch .language-dropdown.disabled .language {
    background-image: url("language_switch@2x.png");
    background-color: transparent;
    border-radius: 0 5px 5px 0; }
  .touch .language-dropdown.enabled ul {
    display: block; }
  .touch .language-dropdown.enabled .language {
    background-image: url("language_switch-hover@2x.png");
    background-color: #eeeeee; }

.banner {
  margin-bottom: 60px;
  margin-top: 0 !important;
  padding: 55px 0 39px; }
  .banner img {
    width: auto;
    max-width: 210px;
    margin: 30px 0 0; }
    @media (min-width: 850px) {
      .banner img {
        margin: 0;
        width: auto;
        max-height: 200px; } }
  .banner h1 {
    margin-bottom: 10px; }
  .banner h2 {
    display: none; }
    @media (min-width: 850px) {
      .banner h2 {
        display: block; } }
  .banner .large a {
    font-family: "Klavika", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white; }
  .banner .col-1, .banner .col-2, .banner .col-3, .banner .col-4, .banner .col-5, .banner .col-6, .banner .col-7, .banner .col-8, .banner .col-9, .banner .col-10, .banner .col-11, .banner .col-12 {
    display: block;
    float: none !important;
    vertical-align: middle; }
    @media (min-width: 850px) {
      .banner .col-1, .banner .col-2, .banner .col-3, .banner .col-4, .banner .col-5, .banner .col-6, .banner .col-7, .banner .col-8, .banner .col-9, .banner .col-10, .banner .col-11, .banner .col-12 {
        display: inline-block; } }
    .banner .col-1:nth-of-type(2), .banner .col-2:nth-of-type(2), .banner .col-3:nth-of-type(2), .banner .col-4:nth-of-type(2), .banner .col-5:nth-of-type(2), .banner .col-6:nth-of-type(2), .banner .col-7:nth-of-type(2), .banner .col-8:nth-of-type(2), .banner .col-9:nth-of-type(2), .banner .col-10:nth-of-type(2), .banner .col-11:nth-of-type(2), .banner .col-12:nth-of-type(2) {
      text-align: center; }

.big-teaser {
  padding: 0 0 20px;
  color: #3c3c3c; }
  .big-teaser:before, .big-teaser:after {
    content: " ";
    display: table; }
  .big-teaser:after {
    clear: both; }
  @media (min-width: 850px) {
    .big-teaser {
      margin-bottom: 60px;
      padding: 20px;
      margin-bottom: 10px; }
      .big-teaser:hover {
        background-image: -webkit-linear-gradient(right, #ededed, white);
        background-image: linear-gradient(to left, #ededed, white);
        cursor: pointer; } }
  .big-teaser img {
    display: block;
    max-width: 120px;
    margin-bottom: 21px; }
    @media (min-width: 850px) {
      .big-teaser img {
        margin-bottom: 0; } }
  .big-teaser h2 {
    margin-bottom: 4px; }
  .big-teaser a {
    display: block; }
  .big-teaser p > a {
    display: inline; }
  .big-teaser .col-1:last-of-type, .big-teaser .col-2:last-of-type, .big-teaser .col-3:last-of-type, .big-teaser .col-4:last-of-type {
    float: left;
    margin-right: 3.10559%; }

input, textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0; }
  input[type="submit"], textarea[type="submit"] {
    border: 0;
    cursor: pointer; }

.button-big a,
a.button-big {
  border-radius: 5px;
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: white;
  display: inline-block;
  width: auto;
  text-align: center;
  padding: 8px 16px 6px 16px;
  position: relative;
  white-space: nowrap; }
  .button-big a:before,
  a.button-big:before {
    content: "";
    display: inline-block;
    background-image: url("arrow-button@2x.png");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    margin-right: 5px; }

.button, .signup input[type="submit"] {
  display: inline-block; }

.button a, .signup input[type="submit"] a,
a.button {
  border-radius: 5px;
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: white;
  padding: 7px 7px 5px;
  display: inline-block;
  text-align: center;
  margin-bottom: 10px;
  line-height: 100%;
  white-space: nowrap; }
  .button a:last-of-type, .signup input[type="submit"] a:last-of-type,
  a.button:last-of-type {
    margin-bottom: 0; }
  .button a:hover, .signup input[type="submit"] a:hover,
  a.button:hover {
    color: white; }

.button-long a,
a.button-long {
  font-size: 18px;
  line-height: 22px;
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  border-radius: 5px;
  text-transform: uppercase;
  color: white;
  width: 100%;
  line-height: 100%;
  padding: 9px 9px 8px;
  display: block;
  margin-bottom: 15px;
  background-image: url("training-arrow-right@2x.png");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 9px 12px;
  margin-bottom: 0;
  white-space: nowrap; }

.button--video, .button--news {
  color: #5a8fb7;
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  border-radius: 5px;
  border: 1px solid currentColor;
  display: block;
  position: relative;
  max-width: 170px;
  margin-bottom: -10px; }
  .button--video:hover, .button--news:hover {
    color: #5a8fb7; }
  .button--video a, .button--news a {
    display: block;
    margin: 0;
    padding: 7px 9px;
    color: currentColor;
    text-align: left;
    font-family: "Klavika", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-top: 9px; }
    .button--video a:hover, .button--news a:hover {
      color: currentColor; }
  .button--video:after, .button--news:after {
    content: "";
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    right: 7px;
    top: 50%;
    pointer-events: none; }

.button--video:after {
  background-image: url("button-video.png");
  background-size: 23px 15px;
  width: 23px;
  height: 15px;
  margin-top: -8px; }

.button--news:after {
  background-image: url("button-news.png");
  background-size: 20px 19px;
  width: 20px;
  height: 19px;
  margin-top: -9px; }

.list-circle .list-item {
  display: block; }
  .list-circle .list-item:before, .list-circle .list-item:after {
    content: " ";
    display: table; }
  .list-circle .list-item:after {
    clear: both; }
  .list-circle .list-item img, .list-circle .list-item h4 {
    display: table-cell;
    vertical-align: middle; }
  .list-circle .list-item h4 {
    padding-left: 25px;
    padding-bottom: 25px; }
    .list-circle .list-item h4:hover {
      -webkit-transition: color 0.4s;
      transition: color 0.4s;
      color: #538ab4; }
  .list-circle .list-item a {
    display: block; }
  .list-circle .list-item img {
    float: left;
    height: 80px;
    width: auto;
    max-width: none; }
  .list-circle .list-item .list-content {
    display: table; }
    .list-circle .list-item .list-content .image-container {
      position: relative;
      overflow: hidden; }

.list-circle .omega {
  margin-right: 0; }
  .list-circle .omega:last-of-type {
    float: left; }

.list-circle .box {
  width: 100%;
  position: absolute;
  padding: 20px 30px;
  z-index: 500;
  background-color: #7aa5c6;
  left: 0; }
  .list-circle .box p, .list-circle .box a, .list-circle .box strong, .list-circle .box li, .list-circle .box em {
    color: white; }
  .list-circle .box a {
    display: inline;
    font-family: "Klavika", sans-serif;
    font-weight: 500;
    font-style: normal; }
  .list-circle .box .close {
    font-family: "Klavika", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    line-height: 20px;
    color: white;
    position: absolute;
    right: 6px;
    top: 6px;
    cursor: pointer; }
    .list-circle .box .close:after {
      content: "╳"; }

.list-circle .box-arrow {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 15px 20px 15px;
  border-color: transparent transparent #7aa5c6 transparent;
  margin: 0 auto;
  position: relative;
  bottom: 0;
  left: 0;
  padding-top: 90px; }
  .list-circle .box-arrow.is-inactive {
    display: block;
    visibility: hidden; }
  .list-circle .box-arrow.is-active {
    visibility: visible; }

.col-custom {
  float: left; }

.customer-list h3, .customer-list a {
  display: inline; }

.customer-list a {
  font-size: 18px;
  padding-left: 5px; }

.customer-list .customer-slider {
  margin-top: 17px;
  height: 400px; }
  .customer-list .customer-slider .customer-container {
    height: inherit !important; }
  .customer-list .customer-slider .slidesjs-container {
    height: inherit !important; }
  .customer-list .customer-slider .slidesjs-slide {
    height: inherit !important; }
  .customer-list .customer-slider .slide p {
    margin-bottom: 0; }
  .customer-list .customer-slider .slide a {
    font-size: 18px;
    line-height: 20px; }

.faq {
  margin-bottom: 30px;
  overflow: hidden;
  clear: both;
  display: block; }
  @media (min-width: 850px) {
    .faq {
      margin-bottom: 60px; } }
  .faq .headline {
    margin-bottom: 30px; }
    .faq .headline a {
      padding-left: 5px;
      font-size: 18px; }
  .faq .accordion {
    position: relative;
    cursor: pointer;
    margin-bottom: 18px; }
    .faq .accordion h3 {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      margin-bottom: 12px; }
    .faq .accordion h3, .faq .accordion p, .faq .accordion h4, .faq .accordion img {
      padding-left: 28px; }
    .faq .accordion p > img {
      padding-left: 0; }
    .faq .accordion h4 {
      font-family: "Klavika", sans-serif;
      font-weight: 300;
      font-style: italic;
      color: #5a8fb7;
      font-size: 16px;
      margin: 0; }
    .faq .accordion ul {
      margin-left: 25px; }
    .faq .accordion:before {
      font-size: 24px;
      position: absolute;
      left: 0;
      top: 3px;
      color: #5a8fb7; }
    .faq .accordion.active:before {
      content: "−"; }
    .faq .accordion.inactive:before {
      content: "+"; }
    .faq .accordion:focus {
      outline: 0;
      border: 0; }
    .faq .accordion .accordion-content {
      padding: 10px 0 33px; }
      .faq .accordion .accordion-content.inactive {
        display: none; }
      .faq .accordion .accordion-content.active {
        display: block; }
  .faq .faq-menu {
    float: none; }
    @media (min-width: 850px) {
      .faq .faq-menu {
        float: right; } }
    .faq .faq-menu ul {
      list-style-type: none;
      padding-left: 0; }
      .faq .faq-menu ul li.active a {
        color: #5a8fb7; }
      .faq .faq-menu ul li a {
        font-family: "Klavika", sans-serif;
        font-weight: 300;
        font-style: normal; }
  .faq .faq-content {
    float: none; }
    @media (min-width: 850px) {
      .faq .faq-content {
        float: left;
        padding-right: 45px; } }
    .faq .faq-content img {
      width: auto !important; }

@media (min-width: 850px) {
  .fixedBackground {
    margin-left: 0; } }

@media (min-width: 1025px) {
  .fixedBackground {
    background-attachment: fixed;
    position: static !important;
    margin-left: 0; } }

@media (min-width: 850px) {
  .fixedBackground--about {
    background-position: top left !important;
    background-size: cover;
    background-repeat: no-repeat; } }

.gform_wrapper label {
  text-transform: none; }

.gform_wrapper .top_label .gfield_label {
  font-weight: 500;
  color: #333; }

.gform_wrapper input, .gform_wrapper textarea {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }

.gform_wrapper img {
  width: auto;
  height: auto; }

.gform_wrapper h2.gsection_title {
  font-size: 34px;
  line-height: 40px;
  color: #5a8fb7;
  margin-bottom: 15px;
  font-family: "Klavika-Light";
  font-weight: normal; }

.gform_button.button, .signup input.gform_button[type="submit"] {
  max-width: 300px;
  padding: 5px 20px 5px 10px;
  color: #fff;
  font-weight: normal;
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: #7aa5c6;
  border: 0;
  text-transform: uppercase; }

.button.gform_button_select_files, .signup input.gform_button_select_files[type="submit"] {
  max-width: 200px;
  padding: 5px 20px 5px  20px;
  font-weight: normal;
  font-family: "Klavika-Medium";
  border: 1px solid #7aa5c6;
  color: #7aa5c6;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  text-transform: uppercase; }

.gfield {
  margin-bottom: 20px; }

.intro-v8 {
  background: -webkit-linear-gradient(left, #c7c7c7 0%, white 100%);
  background: linear-gradient(to right, #c7c7c7 0%, white 100%); }
  .intro-v8-productPage h1 {
    text-transform: uppercase;
    font-size: 76px;
    color: #c8408c;
    line-height: 0.9; }
    @media (max-width: 800px) {
      .intro-v8-productPage h1 {
        font-size: 44px; } }
  .intro-v8-productPage h3 {
    text-transform: uppercase;
    font-size: 34px;
    color: #c8408c;
    line-height: 1.1; }
    @media (max-width: 800px) {
      .intro-v8-productPage h3 {
        font-size: 24px; } }
  .intro-v8-productPage-column {
    padding-top: 60px; }
    @media (min-width: 768px) {
      .intro-v8-productPage-column {
        padding-top: 120px; } }
  .intro-v8 h2 {
    text-transform: uppercase;
    font-size: 28px; }
  .intro-v8-iconRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
    @media (max-width: 600px) {
      .intro-v8-iconRow {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around; } }
    .intro-v8-iconRow-link {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-right: 20px;
      max-width: 85px;
      margin-bottom: 20px; }
    .intro-v8-iconRow-icon {
      height: 66px;
      width: 66px;
      display: block;
      background-repeat: no-repeat;
      background-size: contain;
      margin-bottom: 10px;
      border-radius: 50%;
      box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.3); }
      .intro-v8-iconRow-icon--windows {
        background-image: url(v8-intro-windows.svg); }
      .intro-v8-iconRow-icon--mac {
        background-image: url(v8-intro-apple.svg); }
      .intro-v8-iconRow-icon--android {
        height: 52px;
        width: 52px;
        background-image: url(v8-intro-android.svg); }
      .intro-v8-iconRow-icon--ios {
        height: 52px;
        width: 52px;
        background-image: url(v8-intro-apple.svg); }
    .intro-v8-iconRow-description {
      font-size: 16px;
      color: #787878;
      text-align: center;
      font-family: "Klavika", sans-serif;
      font-weight: 500;
      font-style: normal;
      line-height: 1.1;
      min-width: 85px; }
  .intro-v8-button-pill {
    display: inline-block;
    border-radius: 40px;
    padding: 0 60px;
    font-family: "Klavika", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 45px;
    color: white;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    background-color: #272f7e;
    border: 2px solid #272f7e; }
    .intro-v8-button-pill:hover {
      background-color: #272f7e;
      border: 2px solid #272f7e;
      color: white; }

body.home.en .mainHeader, body.home.de .mainHeader {
  background-color: white;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
  z-index: 999;
  margin-bottom: 0; }
  @media (min-width: 850px) {
    body.home.en .mainHeader, body.home.de .mainHeader {
      position: fixed !important;
      top: 0;
      width: 100%; } }

.scrollmagic-pin-spacer > .container {
  width: 100vw; }

@media (max-width: 1199px) {
  .scrollmagic-pin-spacer {
    padding: 0 !important; } }

@media (max-width: 1199px) {
  .intro-hidden {
    display: none; } }

.vc_row:not(.vc_row-no-padding) {
  z-index: 1; }

@media (max-width: 1175px) {
  .intro-page-content {
    width: 100% !important; } }

.intro--noAnimation .intro-backgroundImage img {
  -webkit-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  transform: scale(1) !important; }

.intro--noAnimation .intro-content-end {
  opacity: 1;
  -webkit-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  transform: scale(1) !important; }

.intro--noAnimation .intro-content--last {
  z-index: 1; }

.intro {
  padding-top: calc(100vh - 100px);
  position: relative;
  background-color: white;
  background: -webkit-linear-gradient(top, white 0%, #f9f9f9 76%, #f0f0f0 100%);
  background: linear-gradient(to bottom, white 0%, #f9f9f9 76%, #f0f0f0 100%);
  max-width: 1920px;
  margin: 0 auto; }
  .intro > .container {
    position: relative; }

.intro-backgroundImage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  overflow: hidden; }
  .intro-backgroundImage img {
    position: absolute;
    max-width: inherit;
    width: 70%;
    height: auto;
    bottom: 20vh;
    right: -5vw;
    -webkit-transform-origin: 58% 60%;
    -ms-transform-origin: 58% 60%;
    transform-origin: 58% 60%;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: scale(4.2);
    transform: scale(4.2); }
    @media (min-height: 1050px) and (min-width: 1700px) {
      .intro-backgroundImage img {
        width: 100%;
        bottom: 10vh;
        right: -17vw; } }
    @media (min-height: 1050px) and (max-width: 1699px) {
      .intro-backgroundImage img {
        bottom: 35vh;
        -webkit-transform-origin: 58% 50%;
        -ms-transform-origin: 58% 50%;
        transform-origin: 58% 50%; } }
    @media (max-height: 860px) {
      .intro-backgroundImage img {
        bottom: 7vh; } }
    @media (min-width: 1400px) {
      .intro-backgroundImage img {
        width: 80%;
        right: -12vw;
        -webkit-transform: scale(5.3);
        -ms-transform: scale(5.3);
        transform: scale(5.3); } }

.intro-backgroundImage.finished .intro-backgroundImage-replacement {
  opacity: 1; }

.intro-backgroundImage-replacement {
  -webkit-transform: scale(1) !important;
  -ms-transform: scale(1) !important;
  transform: scale(1) !important;
  opacity: 0; }

.intro-content {
  position: absolute;
  top: 150px;
  z-index: 1;
  height: calc(100vh - 180px);
  width: 100%; }

.intro-content-left, .intro-content-right, .intro-content-end, .intro-content-background {
  width: 932px;
  margin: 0 auto;
  position: relative;
  height: 100%; }

.intro-content-left {
  -webkit-transform-origin: 30% 0;
  -ms-transform-origin: 30% 0;
  transform-origin: 30% 0;
  margin-top: 10vh; }
  .intro-content-left h1 {
    max-width: 460px;
    font-size: 56px;
    line-height: 60px;
    text-transform: uppercase;
    color: white; }
  .intro-content-left:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 46%, transparent 67%, transparent 100%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 46%, transparent 67%, transparent 100%);
    position: absolute;
    top: -33%;
    left: -27%;
    z-index: -1; }

.intro.loading .intro-content-left {
  display: none; }

.intro-content--last {
  z-index: -1; }
  .intro-content--last.active {
    z-index: 99; }

.intro-content-end {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
  margin-top: 20vh;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  max-height: 500px; }
  @media (min-height: 1050px) and (min-width: 1700px) {
    .intro-content-end {
      margin-top: 40vh; } }
  .intro-content-end h1 {
    max-width: 400px;
    font-size: 38px;
    line-height: 44px;
    color: #3c3c3c;
    text-transform: uppercase; }

.intro-content-right img {
  position: absolute;
  top: auto;
  width: 300px;
  bottom: -10px;
  right: -12vw; }
  @media (min-height: 1050px) and (min-width: 1700px) {
    .intro-content-right img {
      bottom: -3vh;
      right: -20vw; } }
  @media (min-width: 1400px) {
    .intro-content-right img {
      right: -14vw; } }

.intro-content-button {
  display: inline-block;
  background-color: #8bc662;
  border-radius: 40px;
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 45px;
  padding: 0 60px 0 30px;
  color: white;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  margin: 25px 0 0;
  border: 2px solid #8bc662; }
  .intro-content-button--play {
    margin-right: 0 !important; }
    .intro-content-button--play:hover {
      background-color: white;
      color: #8bc662;
      border: 2px solid #8bc662; }
      .intro-content-button--play:hover::after {
        background-image: url(play-button--green.svg); }
    .intro-content-button--play:after {
      content: "";
      background-image: url(play-button.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      position: absolute;
      display: inline-block;
      width: 30px;
      height: 44px;
      vertical-align: middle;
      margin-left: 20px; }
  .intro-content-button--phone {
    background-color: white;
    color: #8bc662; }
    .intro-content-button--phone:after {
      background-image: url(intro-button-phone.svg);
      content: "";
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      position: absolute;
      display: inline-block;
      width: 30px;
      height: 44px;
      vertical-align: middle;
      margin-left: 20px; }
    .intro-content-button--phone:hover {
      background-color: white;
      color: #8bc662;
      border: 2px solid #8bc662; }

.intro-spacer {
  height: 110px; }

header ul, header li {
  padding: 0;
  margin: 0; }

header .top-bar {
  position: relative;
  margin: 0 7px 0 auto;
  padding: 0;
  height: 78px;
  top: 30px;
  text-align: right;
  pointer-events: none; }
  header .top-bar > div {
    pointer-events: auto; }
  @media (min-width: 850px) {
    header .top-bar {
      margin-right: 0;
      top: 0;
      display: none; } }

header .language-dropdown, header .search-icon, header .language {
  display: inline-block;
  margin-left: 15px;
  cursor: pointer;
  position: relative;
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: center;
  width: 42px;
  height: 42px; }

header .language-dropdown ul {
  display: none;
  text-align: left;
  background-color: #eeeeee;
  position: absolute;
  right: 22px;
  top: 0;
  padding: 10px;
  z-index: 9999;
  border-radius: 3px 0 3px 3px;
  width: 100px; }
  header .language-dropdown ul li {
    list-style: none;
    margin-top: 12px; }
    header .language-dropdown ul li:first-child {
      margin-top: 0; }

header .desktop-language {
  display: none; }
  @media (min-width: 850px) {
    header .desktop-language {
      display: inline-block;
      vertical-align: middle;
      margin: 0 10px 0 -30px; } }

header .language {
  background-image: url("language_switch@2x.png"); }

header .search-icon {
  background-image: url("magnifier@2x.png");
  width: 27px;
  background-position: right center; }
  header .search-icon:hover {
    background-image: url("magnifier-hover@2x.png"); }

header .logo {
  position: absolute;
  width: 164px;
  height: 40px;
  margin: 20px 10px 0; }
  @media (min-width: 850px) {
    header .logo {
      margin: 20px 10px 0 0; } }
  header .logo img {
    width: 100%;
    height: 100%; }

header .primary-nav-container {
  height: 56px;
  overflow: hidden; }
  @media (min-width: 850px) {
    header .primary-nav-container {
      height: 76px;
      padding: 15px 0;
      overflow: visible; } }

header .primary-nav {
  height: 66px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }
  @media (min-width: 850px) {
    header .primary-nav {
      text-align: right;
      overflow: visible; } }
  header .primary-nav .order-button {
    display: inline-block;
    margin: 0 5px; }
    @media (min-width: 850px) {
      header .primary-nav .order-button {
        margin: 0 1px; } }
    header .primary-nav .order-button > a {
      display: inline-block;
      height: 56px;
      background-color: #8bc662;
      color: white;
      padding: 9px 15px 8px 15px;
      border: 2px solid #8bc662;
      border-radius: 30px;
      height: auto;
      text-transform: uppercase;
      font-family: "Klavika", sans-serif;
      font-weight: 500;
      font-style: normal; }
      header .primary-nav .order-button > a:after {
        display: none; }
      header .primary-nav .order-button > a:hover {
        background-color: white;
        border: 2px solid #8bc662;
        color: #8bc662; }

header .primary-menu {
  z-index: 999;
  white-space: nowrap;
  display: inline-block;
  height: 61px; }
  header .primary-menu .no--dropdown a {
    background-color: #8bc662 !important;
    color: white;
    padding: 9px 9px 10px;
    border-radius: 5px;
    height: auto; }
    header .primary-menu .no--dropdown a:after {
      display: none; }
  header .primary-menu .primary-menu-content {
    display: inline-block; }
  header .primary-menu .primary-menu-items {
    display: inline-block; }
    header .primary-menu .primary-menu-items:after {
      content: "";
      display: block;
      width: 10000px;
      left: -5000px;
      height: 0;
      z-index: 99;
      position: absolute;
      background-color: #eeeeee;
      -webkit-transition: height 0.3s linear;
      transition: height 0.3s linear; }
    header .primary-menu .primary-menu-items > li {
      display: inline-block;
      margin: 0 5px; }
      @media (min-width: 850px) {
        header .primary-menu .primary-menu-items > li {
          margin: 0 1px; } }
      header .primary-menu .primary-menu-items > li > a {
        display: inline-block;
        height: 56px;
        padding: 15px 13px 0; }
      header .primary-menu .primary-menu-items > li.is-highlighted a {
        background-color: #eeeeee;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px; }
        header .primary-menu .primary-menu-items > li.is-highlighted a:after {
          background-image: url("arrow_nav_hover@2x.png"); }

header .sub-menu {
  z-index: 100;
  position: absolute;
  display: block;
  text-align: left;
  margin: -2px 9px 0;
  padding-left: 4px;
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.3s linear;
  transition: height 0.3s linear;
  background-color: #eeeeee; }
  header .sub-menu > li {
    margin-top: 12px; }
    header .sub-menu > li:first-child {
      margin-top: 20px; }

@media (min-width: 850px) {
  .no-touch header .primary-menu .primary-menu-items > li > a:after {
    content: "";
    background-image: url("arrow_nav_default@2x.png");
    background-repeat: no-repeat;
    background-size: 12px 7px;
    display: inline-block;
    position: relative;
    top: -2px;
    height: 7px;
    width: 12px; } }

.no-touch header .primary-menu .no--dropdown a:after,
.no-touch header .primary-menu .no--dropdown:after {
  display: none !important; }

@media (min-width: 850px) {
  .no-touch header .primary-menu .primary-menu-items:hover:after {
    height: 300px; }
  .no-touch header .primary-menu .primary-menu-items > li:hover:after, .no-touch header .primary-menu .primary-menu-items > li:hover .sub-menu {
    width: 4000px;
    margin-left: -2000px;
    padding-left: 2010px;
    height: 300px; }
  .no-touch header .primary-menu .primary-menu-items > li:hover:after {
    z-index: 101; }
  .no-touch header .primary-menu .primary-menu-items > li:hover .sub-menu {
    z-index: 102; }
  .no-touch header .primary-menu .primary-menu-items > li:hover > a {
    background-color: #eeeeee;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px; }
    .no-touch header .primary-menu .primary-menu-items > li:hover > a:after {
      background-image: url("arrow_nav_hover@2x.png"); } }

.no-touch header .primary-menu .primary-menu-items > li.is-highlighted a:after {
  background-image: url("arrow_nav_hover@2x.png"); }

.no-touch header .language-dropdown:hover ul {
  display: block; }

.no-touch header .language-dropdown:hover .language {
  background-image: url("language_switch-hover@2x.png");
  background-color: #eeeeee;
  border-radius: 0 5px 5px 0; }

.mainHeader {
  margin-bottom: 20px; }
  @media (min-width: 850px) {
    .mainHeader {
      margin-bottom: 40px; } }

.news-overview h2 {
  margin: 0 0 25px;
  line-height: 0; }
  .news-overview h2 > a {
    font-size: 20px;
    line-height: 24px;
    font-family: "Klavika", sans-serif;
    font-weight: 300;
    font-style: normal; }

.news-overview h3 {
  margin: 13px 0 23px; }

.news-overview h5 {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  line-height: 24px;
  color: #3c3c3c; }

.news-detail h1 {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 34px;
  line-height: 37px; }

.news-detail article {
  margin-bottom: 30px; }
  @media (min-width: 850px) {
    .news-detail article {
      margin-bottom: 60px; } }

.news-detail img {
  max-width: 100%;
  float: none; }

.news-slider .slick-prev,
.news-slider .slick-next {
  width: 9px;
  height: 16px;
  margin: 0;
  bottom: 0;
  top: auto;
  right: auto;
  background-color: transparent; }
  .news-slider .slick-prev:before,
  .news-slider .slick-next:before {
    content: ".";
    font-size: 70px;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: 9px 16px;
    width: 9px;
    height: 16px; }

.news-slider .slick-prev {
  left: 0;
  padding: 10px 20px 25px 0; }
  .news-slider .slick-prev:before {
    background-image: url("prev-arrow@2x.png"); }

.news-slider .slick-next {
  left: 25px;
  padding: 10px 20px 25px 5px; }
  .news-slider .slick-next:before {
    background-image: url("next-arrow@2x.png"); }

.news-slider .slide h2:last-of-type {
  padding-bottom: 20px; }

.page-numbers {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: top;
  line-height: 25px;
  text-align: center;
  font-style: normal;
  cursor: pointer; }
  .page-numbers:hover {
    background-color: #8cb1ce;
    color: white; }
  .page-numbers.current {
    color: white;
    background-color: #7aa5c6; }
  .page-numbers.next, .page-numbers.prev {
    font-weight: bold; }

.pills {
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: white;
  padding: 6px 12px;
  display: inline-block;
  margin-right: -4px;
  border: 1px solid white;
  background-color: #5a8fb7; }

.search-results input {
  border: 1px solid #9d9d9c;
  width: 70%;
  padding: 5px 0;
  margin-left: 30px;
  margin-bottom: 8px; }
  @media (min-width: 850px) {
    .search-results input {
      width: 360px; } }
  .search-results input[type="submit"] {
    display: none; }

.search-results h1 {
  margin-bottom: 30px; }

.search-results h3 {
  margin-top: 30px; }

.search-error {
  margin-top: 30px; }

.search {
  width: 100%; }
  .search input {
    height: 39px;
    border-radius: 0;
    box-shadow: 0; }
    .search input:focus, .search input:active {
      outline: none; }
    .search input::-webkit-search-cancel-button {
      display: none !important; }
  .search > .container {
    background-color: #7AA5C6; }

.search-submenu {
  margin-top: 0;
  background-color: #7aa5c6;
  position: relative;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
  overflow: hidden;
  height: 89px; }
  .search-submenu.hidden {
    height: 0; }
  .search-submenu form {
    float: right;
    width: 100%;
    margin: 20px 0; }
    @media (min-width: 850px) {
      .search-submenu form {
        width: 450px; } }
    .search-submenu form .search-container {
      border-radius: 3px;
      background-color: white;
      padding: 5px;
      width: 100%;
      overflow: hidden; }
      @media (min-width: 850px) {
        .search-submenu form .search-container {
          width: 450px; } }
      .search-submenu form .search-container input[type="search"] {
        border: 0;
        background-color: #ededed;
        width: 70%;
        padding-right: 10px;
        float: left; }
        @media (min-width: 850px) {
          .search-submenu form .search-container input[type="search"] {
            width: 360px; } }
      .search-submenu form .search-container input[type="submit"] {
        padding: 3px 5px 3px 8px;
        background: none;
        border: none;
        box-shadow: none;
        cursor: pointer;
        width: 30%;
        float: right; }
        @media (min-width: 850px) {
          .search-submenu form .search-container input[type="submit"] {
            width: 80px; } }

.socialmedia {
  display: inline-block;
  margin-right: 15px;
  width: 25px;
  height: 25px;
  margin-bottom: 30px; }
  @media (min-width: 850px) {
    .socialmedia {
      margin-bottom: 0; } }

.sidenav {
  margin-bottom: 15px;
  margin-top: 50px; }
  .sidenav h2 {
    color: #3c3c3c; }
  .sidenav ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none !important; }
    .sidenav ul li {
      margin-bottom: 0;
      display: block; }
      @media (min-width: 600px) {
        .sidenav ul li {
          display: inline-block;
          margin-right: 20px; } }
      @media (min-width: 700px) {
        .sidenav ul li {
          display: block; } }
      .sidenav ul li.link-icon:not(:first-of-type) {
        margin-bottom: 20px; }
      .sidenav ul li.link-icon img {
        width: 15px;
        height: 15px;
        max-height: none;
        max-width: none;
        margin-left: 4px;
        top: 1px;
        position: relative; }
      .sidenav ul li.link-icon a {
        font-family: "Klavika", sans-serif;
        font-weight: 400;
        font-style: normal; }
      .sidenav ul li a {
        color: #5a8fb7;
        font-family: "Klavika", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 20px;
        line-height: 26px; }
        .sidenav ul li a:hover, .sidenav ul li a:active, .sidenav ul li a.is-active {
          color: #538ab4; }

.signup {
  padding: 13px 0 24px;
  text-align: center; }
  .signup a {
    display: block;
    margin-top: 20px; }
  .signup h2 {
    margin-bottom: 6px; }
  @media (min-width: 850px) {
    .signup form {
      padding-top: 10px; } }
  .signup input {
    display: inline-block;
    margin: 20px 0;
    border-radius: 10px; }
    @media (min-width: 850px) {
      .signup input {
        border-radius: 10px 0 0 10px; } }
    .signup input[type="text"] {
      border: 1px solid rgba(157, 157, 156, 0.4);
      padding: 1px 0 0 16px;
      height: 60px;
      width: 100%; }
      @media (min-width: 850px) {
        .signup input[type="text"] {
          max-width: 400px; } }
    .signup input[type="submit"] {
      font-size: 18px;
      line-height: 60px;
      font-family: "Klavika", sans-serif;
      font-weight: 400;
      font-style: normal;
      padding: 0 45px;
      background-color: #5a8fb7;
      color: white; }
      @media (min-width: 850px) {
        .signup input[type="submit"] {
          border-radius: 0 10px 10px 0; } }

.slider {
  background-color: #69a6c9;
  background-image: -webkit-linear-gradient(#69a6c9, #4887b9);
  background-image: linear-gradient(#69a6c9, #4887b9);
  margin-bottom: 60px;
  overflow: hidden;
  position: relative; }
  .slider .swiper-container {
    max-width: 1600px; }
  .slider .swiper-container {
    padding: 0 !important; }
  .slider .swiper-wrapper {
    overflow: hidden;
    position: relative; }
  .slider .swiper-slide {
    position: relative;
    visibility: hidden; }
    .slider .swiper-slide.swiper-slide-active {
      visibility: visible; }
    .slider .swiper-slide .background-slider-image {
      background-size: cover;
      background-position: center;
      z-index: -1;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      padding: 0 3%;
      display: none; }
      @media (min-width: 600px) {
        .slider .swiper-slide .background-slider-image {
          display: block; } }
    .slider .swiper-slide section .container {
      padding: 0px 10px 50px !important; }
  .slider h1, .slider h2, .slider p, .slider .watchvideo {
    margin-left: 0px; }
  .slider h1 {
    margin-top: 30px;
    margin-bottom: 20px; }
    @media (min-width: 600px) {
      .slider h1 {
        margin-bottom: 15px;
        margin-top: 6vw; } }
    @media (min-width: 1500px) {
      .slider h1 {
        margin-top: 79px; } }
  @media (min-width: 600px) {
    .slider h2 {
      max-width: 50%; } }
  @media (min-width: 850px) {
    .slider h2 {
      margin-bottom: 20px;
      max-width: none; } }
  .slider p:first-of-type {
    display: none; }
    @media (min-width: 850px) {
      .slider p:first-of-type {
        margin-bottom: 25px;
        display: block; } }
  .slider p:last-of-type {
    display: block !important; }
  .slider .pagination {
    bottom: 17px;
    text-align: center;
    padding: 0;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 2000; }
    .slider .pagination .swiper-pagination-switch {
      display: inline-block;
      margin: 8px;
      width: 10px;
      height: 10px;
      background-color: #33536a;
      cursor: pointer;
      border-radius: 50%; }
      @media (min-width: 850px) {
        .slider .pagination .swiper-pagination-switch {
          width: 12px;
          height: 12px; } }
      .slider .pagination .swiper-pagination-switch.swiper-active-switch {
        display: inline-block;
        background-color: white; }
  .slider .arrows-navigation .arrows {
    background-size: 29px 79px;
    background-position: center;
    background-color: transparent;
    background-repeat: no-repeat;
    position: absolute;
    outline: 0;
    height: 70px !important;
    width: 29px;
    top: 50%;
    margin-top: -35px;
    text-indent: -9999px;
    z-index: 9999;
    opacity: 0;
    display: none;
    border-radius: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease; }
    @media (min-width: 850px) {
      .slider .arrows-navigation .arrows {
        display: block; } }
    .slider .arrows-navigation .arrows.previous {
      background-image: url("slider-left@2x.png");
      left: 0; }
    .slider .arrows-navigation .arrows.next {
      background-image: url("slider-right@2x.png");
      background-position: center right;
      right: 0; }

.swiper-container:hover .arrows-navigation .arrows {
  opacity: 1; }

.no-js .slide {
  display: none; }
  .no-js .slide:first-of-type {
    display: block; }

@media (min-width: 600px) {
  .no-textshadow .background-slider-image {
    display: none; } }

.small-slider {
  cursor: pointer; }
  .small-slider h2 {
    margin-bottom: 25px; }
  .small-slider h4 {
    margin-bottom: 6px; }
  .small-slider .small-slide > * {
    padding-left: 10px;
    padding-right: 10px; }
  .small-slider .small-slide {
    margin-top: 40px; }
    .small-slider .small-slide:first-of-type {
      margin-top: 0; }
    @media (min-width: 600px) {
      .small-slider .small-slide {
        margin-top: 0; } }
    .small-slider .small-slide img {
      max-width: 100%; }
      @media (min-width: 600px) {
        .small-slider .small-slide img {
          margin-bottom: 20px; } }
    .small-slider .small-slide .button-big {
      margin-top: 5px; }
  .small-slider .slick-slider {
    margin-bottom: 40px; }
  .small-slider .slick-dots {
    bottom: -45px;
    padding-top: 20px; }
    @media (min-width: 850px) {
      .small-slider .slick-dots {
        bottom: -35px; } }
    .small-slider .slick-dots li a {
      border-radius: 50%;
      display: inline-block;
      width: 10px;
      height: 10px;
      margin-right: 15px;
      background-color: #b2b2b2;
      cursor: pointer; }
      @media (min-width: 850px) {
        .small-slider .slick-dots li a {
          margin-right: 20px;
          width: 12px;
          height: 12px; } }
      .small-slider .slick-dots li a:last-of-type {
        margin-right: 0; }
      .small-slider .slick-dots li a:before {
        font-size: 0;
        opacity: 0; }
    .small-slider .slick-dots li.slick-active a {
      background-color: #5a8fb7; }
  .small-slider .slick-prev,
  .small-slider .slick-next {
    background-size: 41px 41px;
    background-position: center;
    outline: 0;
    height: 41px;
    width: 41px;
    text-indent: -9999px;
    z-index: 9999;
    opacity: 0;
    top: 55px;
    border-radius: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease; }
  .small-slider .slick-prev {
    background-image: url("small-arrow-left@2x.png");
    left: 0; }
    @media (min-width: 850px) {
      .small-slider .slick-prev {
        left: 15px; } }
  .small-slider .slick-next {
    background-image: url("small-arrow-right@2x.png");
    background-position: center right;
    right: 15px; }
  .small-slider:hover .slick-prev,
  .small-slider:hover .slick-next {
    opacity: 1; }
  .small-slider .slick-prev:hover,
  .small-slider .slick-next:hover {
    opacity: 1 !important;
    -webkit-transition: none !important;
    transition: none !important; }

.small-slide {
  display: none; }
  @media (min-width: 850px) {
    .small-slide {
      display: block; } }
  .small-slide:nth-child(1), .small-slide:nth-child(2), .small-slide:nth-child(3) {
    display: block; }

.sticky-nav {
  display: block;
  padding-top: 27px;
  background-color: white;
  overflow: hidden;
  background-color: transparent;
  display: none; }
  @media (min-width: 850px) {
    .sticky-nav {
      display: block; } }
  .sticky-nav::-webkit-scrollbar {
    display: none;
    padding-top: 30px; }
  .sticky-nav ul {
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    width: auto;
    display: inline-block;
    padding-left: 0;
    margin-bottom: 0; }
    .sticky-nav ul:before, .sticky-nav ul:after {
      content: " ";
      display: table; }
    .sticky-nav ul:after {
      clear: both; }
    .sticky-nav ul:after {
      content: "";
      display: inline-block;
      width: 100%; }
  .sticky-nav li {
    border-radius: 5px;
    margin-bottom: 20px;
    border: 2px solid #5a8fb7;
    text-align: center;
    cursor: pointer;
    display: block;
    margin-right: 0; }
    .sticky-nav li:hover, .sticky-nav li.highlighted {
      border-color: #8bc662;
      background-color: #8bc662; }
      .sticky-nav li:hover a, .sticky-nav li.highlighted a {
        color: white; }
    .sticky-nav li a {
      font-family: "Klavika", sans-serif;
      font-weight: 500;
      font-style: normal;
      text-transform: uppercase;
      color: #5a8fb7;
      font-size: 16px;
      display: block;
      padding: 4px 5px 1px; }
      .sticky-nav li a:hover {
        color: white; }
      .sticky-nav li a.highlighted {
        color: red; }
  .sticky-nav h2 {
    color: #3c3c3c;
    margin-bottom: 27px; }

.sticky-small li {
  width: 130px; }

.sticky-big li {
  min-width: 178px; }
  @media (min-width: 985px) {
    .sticky-big li {
      width: 210px;
      min-width: none; } }

.article-wrapper {
  position: relative;
  overflow: hidden; }

.sticky-content {
  padding-top: 20px; }

p.box {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  border-radius: 5px;
  padding: 8px 10px;
  border: 1px solid #3c3c3c;
  display: block; }

.nav-subnav {
  display: none;
  position: relative;
  z-index: 3;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  display: block;
  width: 100%;
  background-color: #eeeeee;
  padding: 21px 0 22px;
  margin-top: -7px; }
  .nav-subnav::-webkit-scrollbar {
    display: none; }
  .nav-subnav ul {
    width: auto;
    line-height: 0;
    font-size: 0;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0; }
    .nav-subnav ul:before, .nav-subnav ul:after {
      content: " ";
      display: table; }
    .nav-subnav ul:after {
      clear: both; }
    @media (min-width: 850px) {
      .nav-subnav ul {
        padding-left: 0;
        padding-right: 0; } }
    .nav-subnav ul:after {
      content: "";
      display: inline-block;
      width: 100%; }
  .nav-subnav li {
    display: inline;
    margin-right: 30px;
    margin-bottom: 0; }
    .nav-subnav li:last-child {
      margin-right: 0; }
    .nav-subnav li a.active {
      color: #5a8fb7; }

.bg-fade {
  position: absolute;
  top: 0;
  height: 100%;
  right: 0;
  width: 100px;
  background-image: -webkit-linear-gradient(left, #eeeeee 10%, rgba(238, 238, 238, 0) 100%);
  background-image: linear-gradient(to right, #eeeeee 10%, rgba(238, 238, 238, 0) 100%);
  pointer-events: none; }

.support-icon-column .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .support-icon-column .wpb_wrapper .col-custom {
    width: 100%; }
  @media (min-width: 600px) {
    .support-icon-column .wpb_wrapper {
      height: 400px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      .support-icon-column .wpb_wrapper .col-custom {
        width: auto; } }

table {
  width: 100%; }
  table tbody {
    width: 100%; }
  table tr {
    background-color: #ededed; }
    table tr:nth-of-type(2n) {
      background-color: white; }
  table td {
    padding: 10px;
    line-height: 100%;
    line-height: 130%; }
  table em {
    color: #3c3c3c; }
  table td {
    font-family: "Klavika", sans-serif;
    font-weight: 300;
    font-style: normal; }
  table th {
    font-family: "Klavika", sans-serif;
    font-weight: 400;
    font-style: normal; }

.tabs-slider {
  margin-bottom: 60px;
  background-color: #ededed;
  margin-top: 0;
  padding: 20px 0; }
  .tabs-slider:before, .tabs-slider:after {
    content: " ";
    display: table; }
  .tabs-slider:after {
    clear: both; }
  .tabs-slider .swiper-container,
  .tabs-slider .tabs-container {
    position: relative; }
  .tabs-slider .swiper-wrapper {
    overflow: hidden;
    position: relative; }
  .tabs-slider .swiper-slide {
    position: relative; }
  @media (min-width: 850px) {
    .tabs-slider {
      margin-top: 0; } }
  .tabs-slider strong {
    margin-bottom: 17px;
    display: block; }
  .tabs-slider img {
    height: auto;
    width: auto;
    max-height: none; }
    @media (min-width: 850px) {
      .tabs-slider img {
        max-height: 270px;
        width: 100%; } }
  .tabs-slider p {
    margin: 0; }
  .tabs-slider h4 {
    margin-bottom: 18px;
    margin-top: 20px; }
    @media (min-width: 850px) {
      .tabs-slider h4 {
        margin-top: 22px; } }
  .tabs-slider .image-container img {
    width: 100%;
    max-width: 385px;
    max-height: none; }
  .tabs-slider .facebook .image-container, .tabs-slider .twitter .image-container {
    background-image: url("facebook_default@2x.png");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    max-height: 270px;
    height: 100%; }
    @media (min-width: 850px) {
      .tabs-slider .facebook .image-container, .tabs-slider .twitter .image-container {
        background-size: cover;
        height: 100%; } }
  .tabs-slider .tabs-content {
    float: left; }
    @media (min-width: 850px) {
      .tabs-slider .tabs-content .content {
        padding-left: 20px; } }
    .tabs-slider .tabs-content .tab {
      overflow: hidden; }
    .tabs-slider .tabs-content .image-container {
      overflow: hidden;
      position: relative; }
  .tabs-slider .controlls {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 20px;
    bottom: 0;
    cursor: pointer; }
    .tabs-slider .controlls .swiper-pagination-switch {
      list-style: none;
      display: inline-block;
      margin-right: 17px;
      border-radius: 50%;
      width: 10px;
      height: 10px;
      margin-right: 15px;
      background-color: #b2b2b2;
      cursor: pointer;
      font-size: 0; }
      @media (min-width: 850px) {
        .tabs-slider .controlls .swiper-pagination-switch {
          margin-right: 20px;
          width: 12px;
          height: 12px; } }
      .tabs-slider .controlls .swiper-pagination-switch.swiper-active-switch {
        background-color: #5a8fb7; }
      .tabs-slider .controlls .swiper-pagination-switch:last-of-type {
        margin-right: 0; }
  .tabs-slider .arrow-navigation .arrows {
    background-size: 41px 41px !important;
    height: 41px !important;
    width: 41px !important;
    position: absolute;
    text-indent: -9999px;
    z-index: 9999;
    opacity: 0;
    outline: 0;
    font-size: 0;
    top: 50%;
    cursor: pointer;
    border-radius: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease; }
    .tabs-slider .arrow-navigation .arrows.previous {
      background-image: url("small-arrow-left@2x.png");
      left: 5px; }
    .tabs-slider .arrow-navigation .arrows.next {
      background-image: url("small-arrow-right@2x.png");
      background-position: center right;
      right: 5px; }
  .tabs-slider .tabs-carousel {
    position: relative;
    overflow: auto !important;
    margin-bottom: 50px; }
  .tabs-slider:hover .arrow-navigation .arrows {
    opacity: 1; }

nav.nav-tabs {
  width: 100%;
  cursor: pointer;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  overflow-y: hidden !important;
  white-space: nowrap; }
  nav.nav-tabs::-webkit-scrollbar {
    display: none; }
  nav.nav-tabs ul {
    width: auto;
    height: 38px;
    line-height: 0;
    padding-left: 0;
    margin-bottom: 0;
    float: right; }
    nav.nav-tabs ul:before, nav.nav-tabs ul:after {
      content: " ";
      display: table; }
    nav.nav-tabs ul:after {
      clear: both; }
    nav.nav-tabs ul::-webkit-scrollbar {
      display: none; }
    nav.nav-tabs ul li {
      border-top-radius: 4px;
      display: inline;
      float: left;
      width: 125px;
      text-align: center;
      margin-right: 10px;
      padding: 10px 20px;
      background-color: #5a8fb7;
      overflow-x: hidden;
      overflow-y: hidden;
      margin-bottom: 0; }
      @media (min-width: 850px) {
        nav.nav-tabs ul li {
          overflow-y: visible; } }
      nav.nav-tabs ul li:last-of-type {
        margin-right: 0; }
      nav.nav-tabs ul li.is-active {
        background-color: #ededed;
        color: #5a8fb7; }
      nav.nav-tabs ul li.facebook:before {
        content: "";
        background-image: url("facebook_white@2x.png");
        background-position: left bottom;
        background-repeat: no-repeat;
        height: 14px;
        width: 7px;
        background-size: 7px 14px;
        padding-right: 9px;
        padding-top: 1px;
        float: left; }
      nav.nav-tabs ul li.facebook.is-active:before {
        background-image: url("facebook@2x.png"); }
      nav.nav-tabs ul li.twitter:before {
        content: "";
        background-image: url("twitter_white@2x.png");
        background-position: left bottom;
        background-repeat: no-repeat;
        height: 14px;
        width: 16px;
        background-size: 16px 14px;
        padding-right: 15px;
        padding-top: 1px;
        float: left; }
      nav.nav-tabs ul li.twitter.is-active:before {
        background-image: url("twitter@2x.png"); }
      nav.nav-tabs ul li.youtube:before {
        content: "";
        background-image: url("youtube_white@2x.png");
        background-position: left bottom;
        background-repeat: no-repeat;
        height: 14px;
        width: 19px;
        background-size: 19px 14px;
        padding-right: 8px;
        padding-top: 2px;
        float: left; }
      nav.nav-tabs ul li.youtube.is-active:before {
        background-image: url("youtube@2x.png"); }

.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  after-content: "";
  after-width: 10px;
  after-height: 10px;
  after-position: absolute; }

.wpb_content_element .wpb_tabs_nav li.ui-tabs-active, .wpb_content_element .wpb_tabs_nav li:hover {
  background-color: #5a8fb7; }
  .wpb_content_element .wpb_tabs_nav li.ui-tabs-active a, .wpb_content_element .wpb_tabs_nav li:hover a {
    color: #fff;
    font-family: "Klavika", sans-serif;
    font-weight: 500;
    font-style: normal; }

.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a, .wpb_content_element .wpb_accordion_header a {
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal; }

.tabs {
  width: 100%;
  position: relative; }
  .tabs ul {
    padding-left: 0;
    margin-bottom: 0; }
    .tabs ul li {
      padding: 0;
      display: inline-block;
      margin-right: -4px;
      border: 1px solid white;
      background-color: transparent;
      cursor: pointer;
      list-style: none;
      margin-bottom: 0; }
      .tabs ul li:last-of-type {
        margin-right: 0; }
      .tabs ul li a {
        cursor: pointer;
        color: white;
        font-family: "Klavika", sans-serif;
        font-weight: 500;
        font-style: normal;
        display: block;
        padding: 6px 12px; }
      .tabs ul li.is-highlighted a {
        background-color: #5a8fb7; }
      .tabs ul li.is-unhighlighted a {
        background-color: #c6c6c6; }
  .tabs .tab {
    padding: 20px 0; }
  .tabs table tbody th {
    padding: 0 5px; }

.tagcloud {
  margin-bottom: 30px;
  background-color: #7aa5c6;
  width: 100%;
  padding: 17px 15px;
  text-align: center; }
  @media (min-width: 850px) {
    .tagcloud {
      margin-bottom: 60px;
      margin-top: 20px; } }
  .tagcloud h1, .tagcloud h2, .tagcloud h3, .tagcloud h4, .tagcloud h5, .tagcloud h6 {
    font-family: "Klavika", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    display: inline;
    text-align: center;
    line-height: 30px; }
    .tagcloud h1 > a, .tagcloud h2 > a, .tagcloud h3 > a, .tagcloud h4 > a, .tagcloud h5 > a, .tagcloud h6 > a {
      color: white; }
  .tagcloud h1 {
    font-size: 32px;
    opacity: 1; }
  .tagcloud h2 {
    font-size: 27px;
    opacity: 0.6; }
  .tagcloud h3 {
    font-size: 26px;
    opacity: 1; }
  .tagcloud h4 {
    font-size: 20px;
    opacity: 0.7; }
  .tagcloud h5 {
    font-size: 18px;
    opacity: 1; }
  .tagcloud h6 {
    font-size: 14px;
    opacity: 0.6; }
  .tagcloud p {
    display: none; }

.testimonial {
  position: relative;
  overflow: hidden;
  text-align: center; }
  .testimonial:before, .testimonial:after {
    content: " ";
    display: table; }
  .testimonial:after {
    clear: both; }
  .testimonial h1 {
    margin-bottom: 30px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase; }
  .testimonial p, .testimonial blockquote {
    display: block;
    position: relative;
    font-size: 26px;
    line-height: 1.3; }
    @media (min-width: 600px) {
      .testimonial p, .testimonial blockquote {
        font-size: 34px; } }
    .testimonial p:last-of-type, .testimonial blockquote:last-of-type {
      font-size: 20px;
      line-height: 24px;
      max-width: 450px;
      margin: 0 auto; }
  .testimonial em {
    font-family: "Klavika", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #5a8fb7;
    font-style: normal;
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
    margin-top: 35px; }
  .testimonial .l-landingpage-textButton {
    margin-bottom: 60px; }

.testimonial-slider {
  padding: 0 60px; }
  @media (min-width: 850px) {
    .testimonial-slider {
      padding: 0 60px; } }
  @media (min-width: 600px) {
    .testimonial-slider .slidesjs-container {
      height: 400px !important; } }
  .testimonial-slider .slidesjs-container .slide-wrapper,
  .testimonial-slider .slidesjs-container .slidesjs-control,
  .testimonial-slider .slidesjs-container .slidesjs-slide {
    height: inherit; }

.slidesjs-next {
  color: transparent; }
  .slidesjs-next::after {
    content: "";
    display: inline-block;
    margin-right: 5px;
    background-color: white;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-image: url("testimonial-right.svg");
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-position: 65% center; }
  .slidesjs-next:hover {
    color: transparent; }
    .slidesjs-next:hover::after {
      background-image: url("testimonial-right-active.svg"); }

.slidesjs-previous {
  color: transparent; }
  .slidesjs-previous::before {
    content: "";
    display: inline-block;
    margin-right: 5px;
    background-color: white;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-image: url("testimonial-left.svg");
    background-size: 50px 50px;
    background-repeat: no-repeat;
    background-position: 60% center; }
  .slidesjs-previous:hover {
    color: transparent; }
    .slidesjs-previous:hover::before {
      background-image: url("testimonial-left-active.svg"); }

.training {
  margin-bottom: 30px;
  margin-top: 30px; }
  @media (min-width: 850px) {
    .training {
      margin-bottom: 60px;
      margin-top: 91px; } }
  .training h1 {
    font-family: "Klavika", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 58px;
    line-height: 58px;
    margin-bottom: 20px; }
    @media (min-width: 850px) {
      .training h1 {
        margin-bottom: 0; } }
  .training h2 {
    font-family: "Klavika", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px; }
    @media (min-width: 850px) {
      .training h2 {
        margin-bottom: 0; } }
  .training hr {
    margin-top: 20px;
    margin-bottom: 20px; }
    @media (min-width: 850px) {
      .training hr {
        margin-top: 35px;
        margin-bottom: 35px; } }

.is-active {
  display: block; }

.is-inactive {
  display: none; }

.is-highlighted {
  color: #5a8fb7; }

.is-inactive-mobile {
  display: none; }
  @media (min-width: 600px) {
    .is-inactive-mobile {
      display: block; } }

.is-visible {
  visibility: visible;
  opacity: 1; }

.is-invisible {
  visibility: hidden;
  opacity: 0; }

.visible-desktop {
  display: none !important; }
  @media (min-width: 850px) {
    .visible-desktop {
      display: block !important; } }

.hidden-desktop {
  display: block !important; }
  @media (min-width: 850px) {
    .hidden-desktop {
      display: none !important; } }

.visible-mobile {
  display: block !important; }
  @media (min-width: 600px) {
    .visible-mobile {
      display: none !important; } }

.visible-mobile-inline {
  display: inline !important; }
  @media (min-width: 850px) {
    .visible-mobile-inline {
      display: none !important; } }

.hidden-mobile {
  display: none !important; }
  @media (min-width: 850px) {
    .hidden-mobile {
      display: block !important; } }

.make-active {
  -webkit-transition: opacity 2s 2s ease;
  transition: opacity 2s 2s ease;
  opacity: 1 !important;
  display: block !important; }

.make-inactive {
  -webkit-transition: opacity 1s 1s ease;
  transition: opacity 1s 1s ease;
  opacity: 0 !important;
  display: none !important; }

.betaSignup-section {
  position: relative;
  margin-top: 30px; }
  @media (min-width: 850px) {
    .betaSignup-section {
      height: 300px; } }
  .betaSignup-section:before {
    background: -webkit-linear-gradient(left, #207cca 0%, #1e5799 0%, #f5f4f5 0%, white 100%);
    background: linear-gradient(to right, #207cca 0%, #1e5799 0%, #f5f4f5 0%, white 100%);
    width: 100%;
    content: "";
    position: absolute;
    height: 500px; }
    @media (min-width: 850px) {
      .betaSignup-section:before {
        height: 280px; } }
  .betaSignup-section:after {
    content: "";
    display: table-cell;
    clear: both; }

.betaSignup-gradient {
  margin: 40px 0; }
  .betaSignup-gradient h2 {
    font-size: 38px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 30px; }

.betaSignup-image {
  display: none; }
  @media (min-width: 850px) {
    .betaSignup-image {
      display: block;
      position: absolute;
      right: 0;
      bottom: -80px;
      width: 249px;
      z-index: 99; } }

.betaSignup-button {
  border: 2px solid #8bc662; }
  .betaSignup-button:hover {
    border: 2px solid #8bc662; }

.blogSpacer {
  display: block;
  height: 60px; }
  .blogSpacer--small {
    height: 30px; }
  .blogSpacer--big {
    height: 120px; }

.breakout {
  position: relative;
  width: 100vw;
  left: -15px; }
  @media (min-width: 992px) {
    .breakout {
      left: calc((100vw - 932px) * -0.5); } }

.form .gform_wrapper .left_label li.field_sublabel_below .gfield_label {
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  background-color: #ebebeb;
  padding: 8px 7px 8px 8px;
  border-radius: 5px;
  display: block;
  width: 100%;
  margin-bottom: 5px; }
  @media (min-width: 850px) {
    .form .gform_wrapper .left_label li.field_sublabel_below .gfield_label {
      display: inline-block;
      width: 34%;
      margin-bottom: 0; } }

.form .gform_wrapper .left_label input.large,
.form .gform_wrapper .left_label select.large {
  width: 100%; }
  @media (min-width: 850px) {
    .form .gform_wrapper .left_label input.large,
    .form .gform_wrapper .left_label select.large {
      width: 60%; } }

.form .gform_wrapper label.gfield_label + div.ginput_container select {
  height: 34px;
  background: white;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal; }

.form .gform_button.button, .form .signup input.gform_button[type="submit"], .signup .form input.gform_button[type="submit"] {
  background-color: #8bc662;
  border: 2px solid #8bc662;
  padding: 0;
  height: auto;
  padding: 18px;
  border-radius: 30px;
  max-width: 289px;
  box-shadow: none; }
  .form .gform_button.button:hover, .form .signup input.gform_button[type="submit"]:hover, .signup .form input.gform_button[type="submit"]:hover {
    background-color: white;
    color: #8bc662; }

.form .gform_wrapper .gform_footer.left_label {
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 0 80px;
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal; }
  @media (min-width: 850px) {
    .form .gform_wrapper .gform_footer.left_label {
      padding: 80px 0; } }

.form .gform_wrapper li.gfield.gfield_error {
  background-color: white;
  border: 0; }

.form .gform_wrapper li.gfield_error input[type=email], .form .gform_wrapper li.gfield_error input[type=number], .form .gform_wrapper li.gfield_error input[type=password], .form .gform_wrapper li.gfield_error input[type=tel], .form .gform_wrapper li.gfield_error input[type=text], .form .gform_wrapper li.gfield_error input[type=url], .form .gform_wrapper li.gfield_error textarea,
.form .gform_wrapper li.gfield_error .gfield_select {
  border: 3px solid rgba(220, 70, 80, 0.15) !important; }

.form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
  margin: 0; }

.form .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
  margin-top: 0;
  margin-left: 0;
  color: black; }
  .form .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label .gfield_required {
    color: #dc4650; }

.form .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  display: none; }

.form .gform_wrapper div.validation_error {
  border-top: 2px solid rgba(220, 70, 80, 0.15);
  border-bottom: 2px solid rgba(220, 70, 80, 0.15);
  font-family: "Klavika", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #dc4650;
  line-height: 1.3; }

.form .gform_confirmation_wrapper {
  margin: 40px 0 100px;
  text-align: center;
  font-size: 24px;
  border: 2px solid #8bc662;
  padding: 30px;
  border-radius: 5px;
  line-height: 1.3; }

.form .divider-headline {
  font-size: 48px;
  color: #4b86b8;
  text-transform: uppercase;
  margin: 60px 0;
  line-height: 1.1; }

.learning-iconHeadline {
  padding-left: 90px; }
  .learning-iconHeadline h2 {
    font-size: 44px;
    color: #23282d;
    text-transform: uppercase; }
  .learning-iconHeadline:before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    height: 63px;
    width: 63px;
    background-position: center center;
    background-size: contain; }
    @media (min-width: 500px) {
      .learning-iconHeadline:before {
        top: calc(-50% + 27px); } }
  .learning-iconHeadline--free:before {
    background-image: url("learning-free-training@2x.png"); }
  .learning-iconHeadline--premium:before {
    background-image: url("learning-premium-training@2x.png"); }
  .learning-iconHeadline--more:before {
    background-image: url("learning-more-training@2x.png"); }

.learning .button-long--lightBlue {
  background-color: #6ebee6; }

.learning .button-long--transparent {
  border: 1px solid #c3c3c3;
  background-color: transparent;
  color: #23282d;
  font-family: "Klavika", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-shadow: 3px 3px 0px 0px #dbdbdb;
  background-image: url("training-arrow-right--dark@2x.png"); }

.learning .button-cta {
  padding: 6px 20px 8px 24px;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid white;
  border-radius: 30px;
  font-family: "Klavika", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  margin-top: 15px;
  display: inline-block; }
  .learning .button-cta:after {
    content: "";
    height: 30px;
    width: 34px;
    margin-left: 15px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat; }
  .learning .button-cta--phone:after {
    background-image: url("learning-phone-icon@2x.png");
    margin-bottom: -7px; }

.newsletterArchive .crArchiveItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 20px; }

.newsletterArchive .crArchiveItemDate {
  display: none; }

.newsletterArchive .crArchiveItemDescription {
  display: none; }

.newsletterArchive .crArchiveItemImage {
  margin-right: 20px; }

.newsletterArchive img {
  width: auto;
  max-width: 60px;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3); }

@media (max-width: 500px) {
  .newsletterSignup {
    display: none; } }

@media (min-width: 992px) {
  .v8-fallback-intro {
    display: none; } }

.parallax {
  display: none; }
  @media (min-width: 850px) {
    .parallax {
      display: block;
      height: 100vh;
      width: 100%;
      position: relative;
      overflow: hidden; }
      .parallax:after {
        display: block;
        content: "";
        position: absolute;
        width: 100%;
        height: 35%;
        left: 0;
        bottom: 0;
        background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        z-index: 1; }
      .parallax .container {
        height: 100vh; }
      .parallax-fullwidth-breakout {
        overflow: visible !important; }
      .parallax-background {
        width: 100%;
        height: 120vh;
        max-width: none;
        -o-object-fit: cover;
        object-fit: cover;
        position: absolute; }
      .parallax-background-video {
        min-width: 100%;
        min-height: 120vh;
        top: -80px;
        position: absolute; }
      .parallax-window {
        width: 100%;
        max-height: calc(90vh - 80px);
        max-width: none;
        position: absolute;
        top: calc(50% - (70vh/2));
        -o-object-fit: contain;
        object-fit: contain;
        z-index: 0; }
      .parallax-image {
        width: 290px;
        height: auto;
        position: absolute;
        bottom: 30px;
        right: 0;
        z-index: 10; }
      .parallax-label {
        color: white;
        position: absolute;
        font-size: 50px;
        z-index: 5;
        margin: 0;
        position: absolute;
        bottom: 30px;
        line-height: 1; } }

.signup--embed {
  padding: 0;
  text-align: left; }
  .signup--embed h2 {
    display: none; }
  .signup--embed form {
    display: inline-block;
    padding: 5px;
    background-color: #F0F0F1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 5px; }
  .signup--embed input {
    margin: 0;
    height: 40px !important;
    border: none !important; }
  .signup--embed input[type="submit"] {
    border-radius: 0 5px 5px 0;
    line-height: 40px !important;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0; }
  .signup--embed input[type="text"] {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: none;
    border-radius: 5px 0 0 5px; }

.vc_editor .swiper-wrapper {
  height: 300px !important; }

.vc_editor .tabs-content, .vc_editor .testimonial-slide, .vc_editor .slide, .vc_slide_small .vc_editor:not(:first-child) {
  display: none; }

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